From a6f6a10fffb9c6f153af318009c7afa8cfa92ab5 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Sat, 8 Aug 2026 06:07:08 -0400 Subject: [PATCH 001/155] Transform json-snippet blocks into each platform's markup during generation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A ```json-snippet block holds one sample as JSON and becomes this platform's markup as the page is generated, replacing the four or five hand written blocks a topic otherwise carries for the same sample. Purely additive: every other block is left exactly as it was, so a topic can hold both forms and a platform specific snippet with no JSON equivalent keeps working. Verified by generating every platform against the unmodified repo — the platforms whose blocks were not collapsed come out byte identical. The emitter is the locally built renderer, loaded through a CommonJS bundle and only when a page actually contains a json-snippet, so pages without one are untouched. A failure fails the build rather than publishing a page with a hole where a sample should be. Collapses one section of bullet-graph as the first case: three PlatformBlocks and 76 lines become one 22 line block, and Angular, React and Web Components each come out matching what was there before. Co-Authored-By: Claude Opus 5 --- WINUI-UNO-PLAN.md | 1384 + docs/xplat/astro.config.ts | 11 +- docs/xplat/docConfig.json | 1162 + docs/xplat/package.json | 13 + docs/xplat/scripts/add-xaml-snippets.mjs | 631 + docs/xplat/scripts/check-api-map-accuracy.mjs | 217 + docs/xplat/scripts/generate.mjs | 100 +- docs/xplat/scripts/lib/api-map-names.mjs | 146 + .../scripts/lib/extract-xaml-snippet.mjs | 200 + .../scripts/migrate-toc-platform-gating.mjs | 220 + docs/xplat/scripts/port-data-grid.mjs | 450 + .../content/en/components/bullet-graph.mdx | 348 +- .../charts/features/chart-annotations.mdx | 19 + .../features/chart-data-aggregations.mdx | 10 + .../charts/features/chart-markers.mdx | 56 + .../charts/features/chart-overlays.mdx | 20 + .../components/geo-map-binding-data-csv.mdx | 7 + .../geo-map-binding-data-json-points.mdx | 7 + .../geo-map-binding-multiple-shapes.mdx | 92 + .../components/geo-map-binding-shp-file.mdx | 21 + .../geo-map-display-esri-imagery.mdx | 16 + .../geo-map-display-osm-imagery.mdx | 8 + .../geo-map-type-scatter-bubble-series.mdx | 31 + .../geo-map-type-scatter-density-series.mdx | 7 + .../geo-map-type-scatter-symbol-series.mdx | 26 + .../geo-map-type-shape-polygon-series.mdx | 6 + .../geo-map-type-shape-polyline-series.mdx | 19 + .../src/content/en/components/geo-map.mdx | 6 + .../grids/data-grid/accessibility.mdx | 133 + .../grids/data-grid/cell-activation.mdx | 54 + .../grids/data-grid/cell-editing.mdx | 386 + .../grids/data-grid/cell-merging.mdx | 49 + .../grids/data-grid/cell-selection.mdx | 67 + .../grids/data-grid/column-animation.mdx | 106 + .../grids/data-grid/column-chooser.mdx | 329 + .../grids/data-grid/column-filtering.mdx | 71 + .../grids/data-grid/column-moving.mdx | 111 + .../grids/data-grid/column-options.mdx | 242 + .../grids/data-grid/column-pinning.mdx | 533 + .../grids/data-grid/column-resizing.mdx | 185 + .../grids/data-grid/column-sorting.mdx | 161 + .../grids/data-grid/column-summaries.mdx | 457 + .../grids/data-grid/column-types.mdx | 642 + .../grids/data-grid/horizontal-scrolling.mdx | 232 + .../components/grids/data-grid/live-data.mdx | 28 + .../grids/data-grid/load-save-layout.mdx | 44 + .../components/grids/data-grid/local-data.mdx | 490 + .../grids/data-grid/localization.mdx | 162 + .../components/grids/data-grid/overview.mdx | 684 + .../grids/data-grid/performance.mdx | 44 + .../grids/data-grid/remote-data.mdx | 130 + .../grids/data-grid/row-grouping.mdx | 240 + .../grids/data-grid/row-highlighting.mdx | 82 + .../components/grids/data-grid/row-paging.mdx | 67 + .../grids/data-grid/row-pinning.mdx | 102 + .../grids/data-grid/type-comparison-table.mdx | 28 + .../grids/data-grid/type-heatmap-table.mdx | 28 + .../grids/data-grid/type-matrix-table.mdx | 28 + .../grids/data-grid/type-periodic-table.mdx | 28 + .../grids/data-grid/type-sparkline-table.mdx | 176 + .../en/components/inputs/color-editor.mdx | 6 + .../content/en/components/linear-gauge.mdx | 255 + .../content/en/components/menus/toolbar.mdx | 45 + .../content/en/components/radial-gauge.mdx | 251 + docs/xplat/src/content/en/toc.json | 1467 +- .../content/jp/components/bullet-graph.mdx | 249 + .../charts/features/chart-annotations.mdx | 19 + .../features/chart-data-aggregations.mdx | 10 + .../charts/features/chart-markers.mdx | 56 + .../charts/features/chart-overlays.mdx | 20 + .../components/geo-map-binding-data-csv.mdx | 7 + .../geo-map-binding-data-json-points.mdx | 7 + .../geo-map-binding-multiple-shapes.mdx | 92 + .../components/geo-map-binding-shp-file.mdx | 21 + .../geo-map-display-esri-imagery.mdx | 16 + .../geo-map-display-osm-imagery.mdx | 8 + .../geo-map-type-scatter-bubble-series.mdx | 31 + .../geo-map-type-scatter-density-series.mdx | 7 + .../geo-map-type-scatter-symbol-series.mdx | 26 + .../geo-map-type-shape-polygon-series.mdx | 6 + .../geo-map-type-shape-polyline-series.mdx | 19 + .../src/content/jp/components/geo-map.mdx | 6 + .../grids/data-grid/accessibility.mdx | 133 + .../grids/data-grid/cell-activation.mdx | 54 + .../grids/data-grid/cell-editing.mdx | 386 + .../grids/data-grid/cell-merging.mdx | 49 + .../grids/data-grid/cell-selection.mdx | 67 + .../grids/data-grid/column-animation.mdx | 106 + .../grids/data-grid/column-chooser.mdx | 330 + .../grids/data-grid/column-filtering.mdx | 71 + .../grids/data-grid/column-moving.mdx | 111 + .../grids/data-grid/column-options.mdx | 242 + .../grids/data-grid/column-pinning.mdx | 533 + .../grids/data-grid/column-resizing.mdx | 185 + .../grids/data-grid/column-sorting.mdx | 159 + .../grids/data-grid/column-summaries.mdx | 457 + .../grids/data-grid/column-types.mdx | 642 + .../grids/data-grid/horizontal-scrolling.mdx | 232 + .../components/grids/data-grid/live-data.mdx | 28 + .../grids/data-grid/load-save-layout.mdx | 44 + .../components/grids/data-grid/local-data.mdx | 490 + .../grids/data-grid/localization.mdx | 162 + .../components/grids/data-grid/overview.mdx | 684 + .../grids/data-grid/performance.mdx | 44 + .../grids/data-grid/remote-data.mdx | 130 + .../grids/data-grid/row-grouping.mdx | 240 + .../grids/data-grid/row-highlighting.mdx | 82 + .../components/grids/data-grid/row-paging.mdx | 67 + .../grids/data-grid/row-pinning.mdx | 102 + .../grids/data-grid/type-comparison-table.mdx | 28 + .../grids/data-grid/type-heatmap-table.mdx | 28 + .../grids/data-grid/type-matrix-table.mdx | 28 + .../grids/data-grid/type-periodic-table.mdx | 28 + .../grids/data-grid/type-sparkline-table.mdx | 176 + .../jp/components/inputs/color-editor.mdx | 6 + .../content/jp/components/linear-gauge.mdx | 255 + .../content/jp/components/menus/toolbar.mdx | 45 + .../content/jp/components/radial-gauge.mdx | 257 +- docs/xplat/src/content/jp/toc.json | 1467 +- package.json | 16 + .../Angular/CheckboxList.JS.apiMap.json | 107 + .../Angular/ColumnChooser.JS.apiMap.json | 18 + .../Angular/ColumnGrouping.JS.apiMap.json | 23 + .../Angular/ColumnPinning.JS.apiMap.json | 18 + .../DV.DataAdapters.FDC3.JS.apiMap.json | 2 + .../DV.DataAdapters.Financial.JS.apiMap.json | 11 + .../Angular/DV.Shared.CORE.JS.apiMap.json | 1278 + ...DV.Shared.DATASERIESADAPTER.JS.apiMap.json | 553 + .../DV.Shared.DATASOURCE.JS.apiMap.json | 1953 + .../DV.Shared.DESCRIPTION.JS.apiMap.json | 30803 ++++++++++++++++ .../Angular/DV.Shared.GEO.JS.apiMap.json | 142 + .../Angular/DV.Shared.GEOMETRY.JS.apiMap.json | 156 + .../DV.Shared.INTERACTIVITY.JS.apiMap.json | 38 + .../Angular/DV.Shared.POPUP.JS.apiMap.json | 113 + .../Angular/DV.Shared.SCROLLER.JS.apiMap.json | 15 + .../DV.Shared.VISUALDATA.JS.apiMap.json | 2 + .../api-map/Angular/Dashboards.JS.apiMap.json | 302 + .../DataChart.ANNOTATION.JS.apiMap.json | 1301 + .../Angular/DataChart.CATEGORY.JS.apiMap.json | 217 + .../DataChart.CATEGORYCHART.JS.apiMap.json | 88 + .../DataChart.CATEGORYCORE.JS.apiMap.json | 55 + .../Angular/DataChart.DATAPIE.JS.apiMap.json | 105 + .../DataChart.DOUGHNUTCHART.JS.apiMap.json | 136 + .../DataChart.DomainChart.JS.apiMap.json | 738 + .../DataChart.EXTENDEDAXES.JS.apiMap.json | 231 + ...DataChart.EXTENDEDFINANCIAL.JS.apiMap.json | 429 + .../DataChart.FINANCIAL.JS.apiMap.json | 165 + .../DataChart.FUNNELCHART.JS.apiMap.json | 142 + .../DataChart.FinancialChart.JS.apiMap.json | 226 + .../DataChart.INTERACTIVITY.JS.apiMap.json | 2 + .../api-map/Angular/DataChart.JS.apiMap.json | 1949 + .../Angular/DataChart.LEGEND.JS.apiMap.json | 297 + .../Angular/DataChart.PIECHART.JS.apiMap.json | 252 + .../Angular/DataChart.POLAR.JS.apiMap.json | 111 + .../Angular/DataChart.RADIAL.JS.apiMap.json | 145 + .../DataChart.RANGECATEGORY.JS.apiMap.json | 74 + .../Angular/DataChart.SCATTER.JS.apiMap.json | 210 + .../Angular/DataChart.SHAPE.JS.apiMap.json | 230 + .../Angular/DataChart.STACKED.JS.apiMap.json | 442 + .../DataChart.VERTICALCATEGORY.JS.apiMap.json | 68 + .../DataChart.VISUALDATA.JS.apiMap.json | 2 + .../api-map/Angular/DatePicker.JS.apiMap.json | 85 + .../Documents.Core_CORE.JS.apiMap.json | 12 + .../Documents.Core_OPENXML.JS.apiMap.json | 2 + .../api-map/Angular/Excel_CORE.JS.apiMap.json | 5499 +++ .../Angular/Excel_FUNCTIONS.JS.apiMap.json | 2 + .../Excel_SERIALIZATION_BIFF8.JS.apiMap.json | 2 + ...Excel_SERIALIZATION_OPENXML.JS.apiMap.json | 39 + .../Angular/GeographicMap.JS.apiMap.json | 508 + src/data/api-map/Angular/Grid.JS.apiMap.json | 2706 ++ .../Angular/GridColumnOptions.JS.apiMap.json | 211 + .../api-map/Angular/Layouts.JS.apiMap.json | 1253 + .../MultiColumnComboBox.JS.apiMap.json | 177 + .../Angular/PropertyEditor.JS.apiMap.json | 32 + .../Spreadsheet.ChartAdapter.JS.apiMap.json | 14 + .../Angular/Spreadsheet.JS.apiMap.json | 985 + .../Angular/SummaryChooser.JS.apiMap.json | 13 + .../api-map/Angular/Toolbar.JS.apiMap.json | 30 + .../api-map/Angular/TreeMap.JS.apiMap.json | 197 + src/data/api-map/Angular/Undo.JS.apiMap.json | 2 + .../api-map/Angular/WebGrids.JS.apiMap.json | 3404 ++ .../Angular/XamBulletGraph.JS.apiMap.json | 164 + .../Angular/XamLinearGauge.JS.apiMap.json | 170 + .../Angular/XamRadialGauge.JS.apiMap.json | 236 + .../Angular/XamSparkline.JS.apiMap.json | 87 + .../api-map/Angular/ZoomSlider.JS.apiMap.json | 77 + .../api-map/Angular/webInputs.JS.apiMap.json | 2249 ++ .../Blazor/CheckboxList.JS.blazor.apiMap.json | 92 + .../ColumnChooser.JS.blazor.apiMap.json | 16 + .../ColumnGrouping.JS.blazor.apiMap.json | 21 + .../ColumnPinning.JS.blazor.apiMap.json | 16 + ...DV.DataAdapters.FDC3.JS.blazor.apiMap.json | 2 + ...taAdapters.Financial.JS.blazor.apiMap.json | 11 + .../DV.Shared.CORE.JS.blazor.apiMap.json | 637 + ...ed.DATASERIESADAPTER.JS.blazor.apiMap.json | 407 + ...DV.Shared.DATASOURCE.JS.blazor.apiMap.json | 1737 + ...V.Shared.DESCRIPTION.JS.blazor.apiMap.json | 30796 +++++++++++++++ .../DV.Shared.GEO.JS.blazor.apiMap.json | 138 + .../DV.Shared.GEOMETRY.JS.blazor.apiMap.json | 156 + ...Shared.INTERACTIVITY.JS.blazor.apiMap.json | 20 + .../DV.Shared.POPUP.JS.blazor.apiMap.json | 58 + .../DV.Shared.SCROLLER.JS.blazor.apiMap.json | 2 + ...DV.Shared.VISUALDATA.JS.blazor.apiMap.json | 2 + .../Blazor/Dashboards.JS.blazor.apiMap.json | 243 + ...DataChart.ANNOTATION.JS.blazor.apiMap.json | 1159 + .../DataChart.CATEGORY.JS.blazor.apiMap.json | 150 + ...aChart.CATEGORYCHART.JS.blazor.apiMap.json | 58 + ...taChart.CATEGORYCORE.JS.blazor.apiMap.json | 22 + .../DataChart.DATAPIE.JS.blazor.apiMap.json | 73 + ...aChart.DOUGHNUTCHART.JS.blazor.apiMap.json | 132 + ...ataChart.DomainChart.JS.blazor.apiMap.json | 591 + ...taChart.EXTENDEDAXES.JS.blazor.apiMap.json | 185 + ...rt.EXTENDEDFINANCIAL.JS.blazor.apiMap.json | 413 + .../DataChart.FINANCIAL.JS.blazor.apiMap.json | 154 + ...ataChart.FUNNELCHART.JS.blazor.apiMap.json | 116 + ...Chart.FinancialChart.JS.blazor.apiMap.json | 84 + ...aChart.INTERACTIVITY.JS.blazor.apiMap.json | 2 + .../Blazor/DataChart.JS.blazor.apiMap.json | 1154 + .../DataChart.LEGEND.JS.blazor.apiMap.json | 268 + .../DataChart.PIECHART.JS.blazor.apiMap.json | 208 + .../DataChart.POLAR.JS.blazor.apiMap.json | 103 + .../DataChart.RADIAL.JS.blazor.apiMap.json | 134 + ...aChart.RANGECATEGORY.JS.blazor.apiMap.json | 66 + .../DataChart.SCATTER.JS.blazor.apiMap.json | 195 + .../DataChart.SHAPE.JS.blazor.apiMap.json | 203 + .../DataChart.STACKED.JS.blazor.apiMap.json | 389 + ...art.VERTICALCATEGORY.JS.blazor.apiMap.json | 64 + ...DataChart.VISUALDATA.JS.blazor.apiMap.json | 2 + .../Blazor/DatePicker.JS.blazor.apiMap.json | 72 + .../Documents.Core_CORE.JS.blazor.apiMap.json | 2 + ...cuments.Core_OPENXML.JS.blazor.apiMap.json | 2 + .../Blazor/Excel_CORE.JS.blazor.apiMap.json | 2 + .../Excel_FUNCTIONS.JS.blazor.apiMap.json | 2 + ..._SERIALIZATION_BIFF8.JS.blazor.apiMap.json | 2 + ...ERIALIZATION_OPENXML.JS.blazor.apiMap.json | 2 + .../GeographicMap.JS.blazor.apiMap.json | 425 + .../api-map/Blazor/Grid.JS.blazor.apiMap.json | 1919 + .../GridColumnOptions.JS.blazor.apiMap.json | 191 + .../Blazor/Layouts.JS.blazor.apiMap.json | 1114 + .../MultiColumnComboBox.JS.blazor.apiMap.json | 136 + .../PropertyEditor.JS.blazor.apiMap.json | 30 + ...adsheet.ChartAdapter.JS.blazor.apiMap.json | 2 + .../Blazor/Spreadsheet.JS.blazor.apiMap.json | 2 + .../SummaryChooser.JS.blazor.apiMap.json | 11 + .../Blazor/Toolbar.JS.blazor.apiMap.json | 28 + .../Blazor/TreeMap.JS.blazor.apiMap.json | 181 + .../api-map/Blazor/Undo.JS.blazor.apiMap.json | 2 + .../Blazor/WebGrids.JS.blazor.apiMap.json | 3232 ++ .../XamBulletGraph.JS.blazor.apiMap.json | 120 + .../XamLinearGauge.JS.blazor.apiMap.json | 126 + .../XamRadialGauge.JS.blazor.apiMap.json | 158 + .../Blazor/XamSparkline.JS.blazor.apiMap.json | 68 + .../Blazor/ZoomSlider.JS.blazor.apiMap.json | 71 + .../Blazor/webInputs.JS.blazor.apiMap.json | 2193 ++ src/data/api-map/README.md | 60 + .../React/CheckboxList.JS.r.apiMap.json | 107 + .../React/ColumnChooser.JS.r.apiMap.json | 18 + .../React/ColumnGrouping.JS.r.apiMap.json | 23 + .../React/ColumnPinning.JS.r.apiMap.json | 18 + .../DV.DataAdapters.FDC3.JS.r.apiMap.json | 2 + ...DV.DataAdapters.Financial.JS.r.apiMap.json | 11 + .../React/DV.Shared.CORE.JS.r.apiMap.json | 1278 + ....Shared.DATASERIESADAPTER.JS.r.apiMap.json | 553 + .../DV.Shared.DATASOURCE.JS.r.apiMap.json | 1953 + .../DV.Shared.DESCRIPTION.JS.r.apiMap.json | 30802 +++++++++++++++ .../React/DV.Shared.GEO.JS.r.apiMap.json | 142 + .../React/DV.Shared.GEOMETRY.JS.r.apiMap.json | 156 + .../DV.Shared.INTERACTIVITY.JS.r.apiMap.json | 38 + .../React/DV.Shared.POPUP.JS.r.apiMap.json | 113 + .../React/DV.Shared.SCROLLER.JS.r.apiMap.json | 15 + .../DV.Shared.VISUALDATA.JS.r.apiMap.json | 2 + .../api-map/React/Dashboards.JS.r.apiMap.json | 302 + .../DataChart.ANNOTATION.JS.r.apiMap.json | 1301 + .../React/DataChart.CATEGORY.JS.r.apiMap.json | 217 + .../DataChart.CATEGORYCHART.JS.r.apiMap.json | 88 + .../DataChart.CATEGORYCORE.JS.r.apiMap.json | 55 + .../React/DataChart.DATAPIE.JS.r.apiMap.json | 105 + .../DataChart.DOUGHNUTCHART.JS.r.apiMap.json | 136 + .../DataChart.DomainChart.JS.r.apiMap.json | 738 + .../DataChart.EXTENDEDAXES.JS.r.apiMap.json | 231 + ...taChart.EXTENDEDFINANCIAL.JS.r.apiMap.json | 429 + .../DataChart.FINANCIAL.JS.r.apiMap.json | 162 + .../DataChart.FUNNELCHART.JS.r.apiMap.json | 142 + .../DataChart.FinancialChart.JS.r.apiMap.json | 226 + .../DataChart.INTERACTIVITY.JS.r.apiMap.json | 2 + .../api-map/React/DataChart.JS.r.apiMap.json | 1949 + .../React/DataChart.LEGEND.JS.r.apiMap.json | 297 + .../React/DataChart.PIECHART.JS.r.apiMap.json | 252 + .../React/DataChart.POLAR.JS.r.apiMap.json | 111 + .../React/DataChart.RADIAL.JS.r.apiMap.json | 145 + .../DataChart.RANGECATEGORY.JS.r.apiMap.json | 74 + .../React/DataChart.SCATTER.JS.r.apiMap.json | 210 + .../React/DataChart.SHAPE.JS.r.apiMap.json | 230 + .../React/DataChart.STACKED.JS.r.apiMap.json | 442 + ...ataChart.VERTICALCATEGORY.JS.r.apiMap.json | 68 + .../DataChart.VISUALDATA.JS.r.apiMap.json | 2 + .../api-map/React/DatePicker.JS.r.apiMap.json | 85 + .../Documents.Core_CORE.JS.r.apiMap.json | 12 + .../Documents.Core_OPENXML.JS.r.apiMap.json | 2 + .../api-map/React/Excel_CORE.JS.r.apiMap.json | 5499 +++ .../React/Excel_FUNCTIONS.JS.r.apiMap.json | 2 + ...Excel_SERIALIZATION_BIFF8.JS.r.apiMap.json | 2 + ...cel_SERIALIZATION_OPENXML.JS.r.apiMap.json | 39 + .../React/GeographicMap.JS.r.apiMap.json | 508 + src/data/api-map/React/Grid.JS.r.apiMap.json | 2706 ++ .../React/Grid.JS.r.apiMap.overrides.json | 14 + .../React/GridColumnOptions.JS.r.apiMap.json | 211 + .../api-map/React/Layouts.JS.r.apiMap.json | 1253 + .../MultiColumnComboBox.JS.r.apiMap.json | 177 + .../React/PropertyEditor.JS.r.apiMap.json | 32 + .../Spreadsheet.ChartAdapter.JS.r.apiMap.json | 14 + .../React/Spreadsheet.JS.r.apiMap.json | 985 + .../React/SummaryChooser.JS.r.apiMap.json | 13 + .../api-map/React/Toolbar.JS.r.apiMap.json | 30 + .../api-map/React/TreeMap.JS.r.apiMap.json | 197 + src/data/api-map/React/Undo.JS.r.apiMap.json | 2 + .../api-map/React/WebGrids.JS.r.apiMap.json | 2976 ++ .../React/WebGrids.JS.r.apiMap.overrides.json | 10 + .../React/XamBulletGraph.JS.r.apiMap.json | 164 + .../React/XamLinearGauge.JS.r.apiMap.json | 170 + .../React/XamRadialGauge.JS.r.apiMap.json | 236 + .../React/XamSparkline.JS.r.apiMap.json | 87 + .../api-map/React/ZoomSlider.JS.r.apiMap.json | 77 + .../api-map/React/webInputs.JS.r.apiMap.json | 2249 ++ .../webInputs.JS.r.apiMap.overrides.json | 191 + .../CheckboxList.JS.wc.apiMap.json | 107 + .../ColumnChooser.JS.wc.apiMap.json | 18 + .../ColumnGrouping.JS.wc.apiMap.json | 23 + .../ColumnPinning.JS.wc.apiMap.json | 18 + .../DV.DataAdapters.FDC3.JS.wc.apiMap.json | 2 + ...V.DataAdapters.Financial.JS.wc.apiMap.json | 11 + .../DV.Shared.CORE.JS.wc.apiMap.json | 1278 + ...Shared.DATASERIESADAPTER.JS.wc.apiMap.json | 553 + .../DV.Shared.DATASOURCE.JS.wc.apiMap.json | 1953 + .../DV.Shared.DESCRIPTION.JS.wc.apiMap.json | 30802 +++++++++++++++ .../DV.Shared.GEO.JS.wc.apiMap.json | 142 + .../DV.Shared.GEOMETRY.JS.wc.apiMap.json | 156 + .../DV.Shared.INTERACTIVITY.JS.wc.apiMap.json | 38 + .../DV.Shared.POPUP.JS.wc.apiMap.json | 113 + .../DV.Shared.SCROLLER.JS.wc.apiMap.json | 15 + .../DV.Shared.VISUALDATA.JS.wc.apiMap.json | 2 + .../Dashboards.JS.wc.apiMap.json | 302 + .../DataChart.ANNOTATION.JS.wc.apiMap.json | 1301 + .../DataChart.CATEGORY.JS.wc.apiMap.json | 217 + .../DataChart.CATEGORYCHART.JS.wc.apiMap.json | 88 + .../DataChart.CATEGORYCORE.JS.wc.apiMap.json | 55 + .../DataChart.DATAPIE.JS.wc.apiMap.json | 105 + .../DataChart.DOUGHNUTCHART.JS.wc.apiMap.json | 136 + .../DataChart.DomainChart.JS.wc.apiMap.json | 738 + .../DataChart.EXTENDEDAXES.JS.wc.apiMap.json | 231 + ...aChart.EXTENDEDFINANCIAL.JS.wc.apiMap.json | 429 + .../DataChart.FINANCIAL.JS.wc.apiMap.json | 162 + .../DataChart.FUNNELCHART.JS.wc.apiMap.json | 142 + ...DataChart.FinancialChart.JS.wc.apiMap.json | 226 + .../DataChart.INTERACTIVITY.JS.wc.apiMap.json | 2 + .../WebComponents/DataChart.JS.wc.apiMap.json | 1949 + .../DataChart.LEGEND.JS.wc.apiMap.json | 297 + .../DataChart.PIECHART.JS.wc.apiMap.json | 252 + .../DataChart.POLAR.JS.wc.apiMap.json | 111 + .../DataChart.RADIAL.JS.wc.apiMap.json | 145 + .../DataChart.RANGECATEGORY.JS.wc.apiMap.json | 74 + .../DataChart.SCATTER.JS.wc.apiMap.json | 210 + .../DataChart.SHAPE.JS.wc.apiMap.json | 230 + .../DataChart.STACKED.JS.wc.apiMap.json | 442 + ...taChart.VERTICALCATEGORY.JS.wc.apiMap.json | 68 + .../DataChart.VISUALDATA.JS.wc.apiMap.json | 2 + .../DatePicker.JS.wc.apiMap.json | 85 + .../Documents.Core_CORE.JS.wc.apiMap.json | 12 + .../Documents.Core_OPENXML.JS.wc.apiMap.json | 2 + .../Excel_CORE.JS.wc.apiMap.json | 5499 +++ .../Excel_FUNCTIONS.JS.wc.apiMap.json | 2 + ...xcel_SERIALIZATION_BIFF8.JS.wc.apiMap.json | 2 + ...el_SERIALIZATION_OPENXML.JS.wc.apiMap.json | 39 + .../GeographicMap.JS.wc.apiMap.json | 508 + .../WebComponents/Grid.JS.wc.apiMap.json | 2706 ++ .../Grid.JS.wc.apiMap.overrides.json | 14 + .../GridColumnOptions.JS.wc.apiMap.json | 211 + .../WebComponents/Layouts.JS.wc.apiMap.json | 1253 + .../MultiColumnComboBox.JS.wc.apiMap.json | 177 + .../PropertyEditor.JS.wc.apiMap.json | 32 + ...Spreadsheet.ChartAdapter.JS.wc.apiMap.json | 14 + .../Spreadsheet.JS.wc.apiMap.json | 985 + .../SummaryChooser.JS.wc.apiMap.json | 13 + .../WebComponents/Toolbar.JS.wc.apiMap.json | 30 + .../WebComponents/TreeMap.JS.wc.apiMap.json | 197 + .../WebComponents/Undo.JS.wc.apiMap.json | 2 + .../WebComponents/WebGrids.JS.wc.apiMap.json | 3404 ++ .../WebGrids.JS.wc.apiMap.overrides.json | 91 + .../XamBulletGraph.JS.wc.apiMap.json | 164 + .../XamLinearGauge.JS.wc.apiMap.json | 170 + .../XamRadialGauge.JS.wc.apiMap.json | 236 + .../XamSparkline.JS.wc.apiMap.json | 87 + .../ZoomSlider.JS.wc.apiMap.json | 77 + .../WebComponents/webInputs.JS.wc.apiMap.json | 2259 ++ .../webInputs.JS.wc.apiMap.overrides.json | 268 + src/integration.ts | 6 + src/lib/api-platform-config.ts | 57 +- src/lib/platform-context.ts | 62 +- src/lib/platform-groups.ts | 197 + src/llms.ts | 2 +- src/platform.ts | 22 + src/plugins/remark-env-vars.ts | 2 + src/virtual-modules.d.ts | 2 +- 403 files changed, 256336 insertions(+), 663 deletions(-) create mode 100644 WINUI-UNO-PLAN.md create mode 100644 docs/xplat/scripts/add-xaml-snippets.mjs create mode 100644 docs/xplat/scripts/check-api-map-accuracy.mjs create mode 100644 docs/xplat/scripts/lib/api-map-names.mjs create mode 100644 docs/xplat/scripts/lib/extract-xaml-snippet.mjs create mode 100644 docs/xplat/scripts/migrate-toc-platform-gating.mjs create mode 100644 docs/xplat/scripts/port-data-grid.mjs create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/accessibility.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/cell-activation.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/cell-merging.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/cell-selection.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-filtering.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/live-data.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/load-save-layout.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/localization.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/overview.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/performance.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/row-paging.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/type-comparison-table.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/type-heatmap-table.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/type-matrix-table.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/type-periodic-table.mdx create mode 100644 docs/xplat/src/content/en/components/grids/data-grid/type-sparkline-table.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/accessibility.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/cell-activation.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/cell-merging.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/cell-selection.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-filtering.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/live-data.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/load-save-layout.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/localization.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/performance.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/row-paging.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/type-comparison-table.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/type-heatmap-table.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/type-matrix-table.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/type-periodic-table.mdx create mode 100644 docs/xplat/src/content/jp/components/grids/data-grid/type-sparkline-table.mdx create mode 100644 src/data/api-map/Angular/CheckboxList.JS.apiMap.json create mode 100644 src/data/api-map/Angular/ColumnChooser.JS.apiMap.json create mode 100644 src/data/api-map/Angular/ColumnGrouping.JS.apiMap.json create mode 100644 src/data/api-map/Angular/ColumnPinning.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.DataAdapters.FDC3.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.DataAdapters.Financial.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.CORE.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.DATASERIESADAPTER.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.DATASOURCE.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.DESCRIPTION.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.GEO.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.GEOMETRY.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.INTERACTIVITY.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.POPUP.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.SCROLLER.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DV.Shared.VISUALDATA.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Dashboards.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.ANNOTATION.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.CATEGORY.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.CATEGORYCHART.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.CATEGORYCORE.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.DATAPIE.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.DOUGHNUTCHART.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.DomainChart.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.EXTENDEDAXES.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.EXTENDEDFINANCIAL.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.FINANCIAL.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.FUNNELCHART.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.FinancialChart.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.INTERACTIVITY.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.LEGEND.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.PIECHART.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.POLAR.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.RADIAL.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.RANGECATEGORY.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.SCATTER.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.SHAPE.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.STACKED.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.VERTICALCATEGORY.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DataChart.VISUALDATA.JS.apiMap.json create mode 100644 src/data/api-map/Angular/DatePicker.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Documents.Core_CORE.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Documents.Core_OPENXML.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Excel_CORE.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Excel_FUNCTIONS.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Excel_SERIALIZATION_BIFF8.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Excel_SERIALIZATION_OPENXML.JS.apiMap.json create mode 100644 src/data/api-map/Angular/GeographicMap.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Grid.JS.apiMap.json create mode 100644 src/data/api-map/Angular/GridColumnOptions.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Layouts.JS.apiMap.json create mode 100644 src/data/api-map/Angular/MultiColumnComboBox.JS.apiMap.json create mode 100644 src/data/api-map/Angular/PropertyEditor.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Spreadsheet.ChartAdapter.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Spreadsheet.JS.apiMap.json create mode 100644 src/data/api-map/Angular/SummaryChooser.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Toolbar.JS.apiMap.json create mode 100644 src/data/api-map/Angular/TreeMap.JS.apiMap.json create mode 100644 src/data/api-map/Angular/Undo.JS.apiMap.json create mode 100644 src/data/api-map/Angular/WebGrids.JS.apiMap.json create mode 100644 src/data/api-map/Angular/XamBulletGraph.JS.apiMap.json create mode 100644 src/data/api-map/Angular/XamLinearGauge.JS.apiMap.json create mode 100644 src/data/api-map/Angular/XamRadialGauge.JS.apiMap.json create mode 100644 src/data/api-map/Angular/XamSparkline.JS.apiMap.json create mode 100644 src/data/api-map/Angular/ZoomSlider.JS.apiMap.json create mode 100644 src/data/api-map/Angular/webInputs.JS.apiMap.json create mode 100644 src/data/api-map/Blazor/CheckboxList.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/ColumnChooser.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/ColumnGrouping.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/ColumnPinning.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.DataAdapters.FDC3.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.DataAdapters.Financial.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.CORE.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.DATASERIESADAPTER.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.DATASOURCE.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.DESCRIPTION.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.GEO.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.GEOMETRY.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.INTERACTIVITY.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.POPUP.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.SCROLLER.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DV.Shared.VISUALDATA.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Dashboards.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.ANNOTATION.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.CATEGORY.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.CATEGORYCHART.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.CATEGORYCORE.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.DATAPIE.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.DOUGHNUTCHART.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.DomainChart.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.EXTENDEDAXES.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.EXTENDEDFINANCIAL.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.FINANCIAL.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.FUNNELCHART.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.FinancialChart.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.INTERACTIVITY.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.LEGEND.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.PIECHART.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.POLAR.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.RADIAL.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.RANGECATEGORY.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.SCATTER.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.SHAPE.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.STACKED.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.VERTICALCATEGORY.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DataChart.VISUALDATA.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/DatePicker.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Documents.Core_CORE.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Documents.Core_OPENXML.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Excel_CORE.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Excel_FUNCTIONS.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Excel_SERIALIZATION_BIFF8.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Excel_SERIALIZATION_OPENXML.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/GeographicMap.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Grid.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/GridColumnOptions.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Layouts.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/MultiColumnComboBox.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/PropertyEditor.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Spreadsheet.ChartAdapter.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Spreadsheet.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/SummaryChooser.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Toolbar.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/TreeMap.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/Undo.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/WebGrids.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/XamBulletGraph.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/XamLinearGauge.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/XamRadialGauge.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/XamSparkline.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/ZoomSlider.JS.blazor.apiMap.json create mode 100644 src/data/api-map/Blazor/webInputs.JS.blazor.apiMap.json create mode 100644 src/data/api-map/README.md create mode 100644 src/data/api-map/React/CheckboxList.JS.r.apiMap.json create mode 100644 src/data/api-map/React/ColumnChooser.JS.r.apiMap.json create mode 100644 src/data/api-map/React/ColumnGrouping.JS.r.apiMap.json create mode 100644 src/data/api-map/React/ColumnPinning.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.DataAdapters.FDC3.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.DataAdapters.Financial.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.CORE.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.DATASERIESADAPTER.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.DATASOURCE.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.DESCRIPTION.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.GEO.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.GEOMETRY.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.INTERACTIVITY.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.POPUP.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.SCROLLER.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DV.Shared.VISUALDATA.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Dashboards.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.ANNOTATION.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.CATEGORY.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.CATEGORYCHART.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.CATEGORYCORE.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.DATAPIE.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.DOUGHNUTCHART.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.DomainChart.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.EXTENDEDAXES.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.EXTENDEDFINANCIAL.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.FINANCIAL.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.FUNNELCHART.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.FinancialChart.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.INTERACTIVITY.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.LEGEND.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.PIECHART.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.POLAR.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.RADIAL.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.RANGECATEGORY.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.SCATTER.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.SHAPE.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.STACKED.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.VERTICALCATEGORY.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DataChart.VISUALDATA.JS.r.apiMap.json create mode 100644 src/data/api-map/React/DatePicker.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Documents.Core_CORE.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Documents.Core_OPENXML.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Excel_CORE.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Excel_FUNCTIONS.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Excel_SERIALIZATION_BIFF8.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Excel_SERIALIZATION_OPENXML.JS.r.apiMap.json create mode 100644 src/data/api-map/React/GeographicMap.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Grid.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Grid.JS.r.apiMap.overrides.json create mode 100644 src/data/api-map/React/GridColumnOptions.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Layouts.JS.r.apiMap.json create mode 100644 src/data/api-map/React/MultiColumnComboBox.JS.r.apiMap.json create mode 100644 src/data/api-map/React/PropertyEditor.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Spreadsheet.ChartAdapter.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Spreadsheet.JS.r.apiMap.json create mode 100644 src/data/api-map/React/SummaryChooser.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Toolbar.JS.r.apiMap.json create mode 100644 src/data/api-map/React/TreeMap.JS.r.apiMap.json create mode 100644 src/data/api-map/React/Undo.JS.r.apiMap.json create mode 100644 src/data/api-map/React/WebGrids.JS.r.apiMap.json create mode 100644 src/data/api-map/React/WebGrids.JS.r.apiMap.overrides.json create mode 100644 src/data/api-map/React/XamBulletGraph.JS.r.apiMap.json create mode 100644 src/data/api-map/React/XamLinearGauge.JS.r.apiMap.json create mode 100644 src/data/api-map/React/XamRadialGauge.JS.r.apiMap.json create mode 100644 src/data/api-map/React/XamSparkline.JS.r.apiMap.json create mode 100644 src/data/api-map/React/ZoomSlider.JS.r.apiMap.json create mode 100644 src/data/api-map/React/webInputs.JS.r.apiMap.json create mode 100644 src/data/api-map/React/webInputs.JS.r.apiMap.overrides.json create mode 100644 src/data/api-map/WebComponents/CheckboxList.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/ColumnChooser.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/ColumnGrouping.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/ColumnPinning.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.DataAdapters.FDC3.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.DataAdapters.Financial.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.CORE.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.DATASERIESADAPTER.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.DATASOURCE.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.DESCRIPTION.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.GEO.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.GEOMETRY.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.INTERACTIVITY.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.POPUP.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.SCROLLER.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DV.Shared.VISUALDATA.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Dashboards.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.ANNOTATION.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.CATEGORY.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.CATEGORYCHART.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.CATEGORYCORE.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.DATAPIE.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.DOUGHNUTCHART.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.DomainChart.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.EXTENDEDAXES.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.EXTENDEDFINANCIAL.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.FINANCIAL.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.FUNNELCHART.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.FinancialChart.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.INTERACTIVITY.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.LEGEND.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.PIECHART.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.POLAR.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.RADIAL.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.RANGECATEGORY.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.SCATTER.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.SHAPE.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.STACKED.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.VERTICALCATEGORY.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DataChart.VISUALDATA.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/DatePicker.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Documents.Core_CORE.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Documents.Core_OPENXML.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Excel_CORE.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Excel_FUNCTIONS.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Excel_SERIALIZATION_BIFF8.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Excel_SERIALIZATION_OPENXML.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/GeographicMap.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Grid.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Grid.JS.wc.apiMap.overrides.json create mode 100644 src/data/api-map/WebComponents/GridColumnOptions.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Layouts.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/MultiColumnComboBox.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/PropertyEditor.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Spreadsheet.ChartAdapter.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Spreadsheet.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/SummaryChooser.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Toolbar.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/TreeMap.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/Undo.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/WebGrids.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/WebGrids.JS.wc.apiMap.overrides.json create mode 100644 src/data/api-map/WebComponents/XamBulletGraph.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/XamLinearGauge.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/XamRadialGauge.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/XamSparkline.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/ZoomSlider.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/webInputs.JS.wc.apiMap.json create mode 100644 src/data/api-map/WebComponents/webInputs.JS.wc.apiMap.overrides.json create mode 100644 src/lib/platform-groups.ts diff --git a/WINUI-UNO-PLAN.md b/WINUI-UNO-PLAN.md new file mode 100644 index 0000000000..31d14d2d45 --- /dev/null +++ b/WINUI-UNO-PLAN.md @@ -0,0 +1,1384 @@ +# WinUI & Uno Documentation Emission — Work Plan + +**Status:** planning complete, not started +**Owner:** _unassigned_ +**Repos in play:** `igniteui-documentation` (target), `igniteui-xplat-docs` (source of un-ported Data Grid content), `winui-samples` (sample sources) +**Last updated:** 2026-08-05 + +This document is self-contained: it records the current architecture, the locked +decisions, the measured content inventory, and a phased task list. Anyone picking +this up should be able to start at Phase 0 without re-deriving the analysis. + +--- + +## 1. Goal + +Emit Ignite UI documentation for two new platforms — **WinUI** and **Uno** — from the +existing xplat MDX source in `docs/xplat/`, alongside the four current platforms +(Angular, React, Web Components, Blazor). This requires: + +1. Registering the two platforms in the Astro build (new sites, new build matrix). +2. A platform-filtering model that scales past four platforms, so web-only topics + stop emitting for WinUI/Uno (and for the mobile platforms that come later). +3. XAML + C# snippets for every in-scope topic, sourced from `winui-samples`. +4. Porting the **Data Grid** topic set, which was never carried from + `igniteui-xplat-docs` into the Astro docs, and marking it non-web-only. +5. A live sample host that serves the shared samples to both new doc sites. + +--- + +## 2. Locked decisions + +| # | Decision | Rationale / consequence | +|---|---|---| +| D1 | **Samples are served live from an Uno WASM host.** One samples browser, compiled from the shared sample sources via Uno to WebAssembly, hosted like the existing `*-demos` sites. Both WinUI and Uno docs embed the live iframe. | Reuses the existing `` / `code-view` iframe contract with no doc-side component change. WinUI pages additionally link to the WinUI source in `winui-samples`. | +| D2 | **Platform *groups* plus an `include` allowlist.** Group aliases resolve at build time; the non-web group is named **`NonWeb`** (not `Xaml`), because mobile and other non-web platforms will join it. `include` is added alongside `exclude` and wins over it. | Group naming stays valid as platforms are added. `include: ["Web"]` on a web-only topic means every future non-web platform is excluded automatically — no repeat migration. | +| D3 | **Two separate sites.** WinUI and Uno each get their own `PLATFORM` build, base URL, dev port and `dist/` output, symmetric with React/WC/Blazor. | Per-product URLs and product-switcher entries; doubles the build matrix. | +| D4 | **Scope = components that have WinUI samples.** A component's doc set emits for WinUI/Uno if `winui-samples` has **any** sample for that component. | See §4 for the measured matrix. | +| D5 | **An individual missing sample never excludes a topic.** Only a component with *zero* WinUI samples is excluded wholesale (e.g. Financial Chart, most inputs). Individual unmatched sample routes are a backfill/triage item, not a suppression trigger. | Set by review of the coverage data; some doc sample references are hand-built one-offs rather than entries in the examples repos, so an unmatched route is not evidence the component is unsupported. | +| D7 | **OPEN — translation vs common-JSON emission for snippet generation.** Translation has 84/149 groups covered today but cannot serve the 33 code-only groups at all. Emission removes the guesswork and gets code-behind for free, at the cost of a subsetting mechanism, bolstered forced-code-behind, and back-conversion. **The deciding factor: both paths require the same prerequisite** — see §6.5.2. | Comparison and the decision criterion in **§6.5**. Not to be settled by default; the next increment of translation work is the part that gets thrown away if emission wins. | +| D6 | **API name resolution: ship on the existing heuristic for now, but re-incorporate the apiMaps as a committed follow-up.** The apiMaps are the correct mechanism — the product builds already generate the authoritative canonical ↔ platform name mapping for every type and member. Prefix-plus-casing guessing is a stopgap, accepted only to unblock the launch. | Interim posture in §6.3.2; the committed workstream is **§6.4** and **Phase 7**. Interim rule: do not hand-patch MDX at scale to work around resolution failures — that debt would have to be unpicked. | + +--- + +## 3. How platform emission works today + +Understanding these five mechanisms is a prerequisite for Phase 0–1. + +### 3.1 Platform selection + +One Astro build per platform per locale. `PLATFORM` env var (or `.platform.json`) +selects it — [docs/xplat/astro.config.ts:36](docs/xplat/astro.config.ts#L36). Scripts in +[docs/xplat/package.json](docs/xplat/package.json) wrap this per platform +(`dev:react`, `build:blazor`, …), and the root [package.json](package.json) re-exports +convenience aliases. + +### 3.2 Token substitution + +`vitePluginPlatformTokens` — [docs/xplat/astro.config.ts:197](docs/xplat/astro.config.ts#L197) +— rewrites `{Platform}`, `{ProductName}`, `{GridSample}`, `{environment:*}` etc. in +`.mdx` before the MDX compiler runs. Values come from the per-platform +`replacements` array in [docs/xplat/docConfig.json](docs/xplat/docConfig.json) +(148 entries for React alone). + +### 3.3 Conditional content — `PlatformBlock` + +`` is **inlined at build time** by +`inlinePlatformBlocks` — [docs/xplat/astro.config.ts:121](docs/xplat/astro.config.ts#L121) +— a depth-aware parser that keeps matching content and strips the rest. The +component import is then removed by regex. This logic lives in this repo, so +group-alias support (D2) can be added here. Authoring rules: +[docs/xplat/AI-AGENT-PLATFORM-BLOCK.md](docs/xplat/AI-AGENT-PLATFORM-BLOCK.md). + +### 3.4 Conditional navigation — `toc.json` + +`buildFilteredToc` — [docs/xplat/astro.config.ts:271](docs/xplat/astro.config.ts#L271) +— reads `src/content/{lang}/toc.json`, drops nodes whose `exclude` array contains the +active platform, merges `platforms.` badge overrides, and writes +`generated/{Platform}/{lang}/components/toc.json`. Badge override rules: +[docs/xplat/PLATFORM-LABELS.md](docs/xplat/PLATFORM-LABELS.md). + +**This is blacklist-only today** — there is no `include`. Nearly every entry that is +not Angular-relevant already carries `"exclude": ["Angular"]`. + +### 3.5 Samples + +`` renders a +`code-view` custom element that iframes the platform's hosted samples browser and +pulls code tabs from `/code-viewer/*.json` on the same host. The host URL per +platform and per environment comes from `docConfig.json → .samplesBrowsers` +(e.g. React → `https://www.infragistics.com/react-demos`); dev builds proxy +`/code-viewer` — [src/integration.ts:701](src/integration.ts#L701). + +> `Sample.astro`, `ApiLink.astro`, `PlatformBlock.astro` and `DocsAside.astro` are +> imported from the **external npm package `igniteui-astro-components@0.0.27`**, not +> from this repo. See risk R3. + +--- + +## 4. Content inventory (measured) + +Counted against `docs/xplat/src/content/en/components` (280 MDX topics, 769 `` +usages) and `winui-samples/samples` (**279** samples across 15 components). + +### 4.1 Components that emit for WinUI/Uno — have WinUI samples + +| Sample component | WinUI samples | Doc topics referencing it | +|---|---|---| +| `charts/data-chart` | 66 | 34 | +| `charts/category-chart` | 60 | 25 | +| `maps/geo-map` | 24 | 22 | +| `grids/data-grid` | 37 | 1 (+32 to port, §5.4) | +| `gauges/radial-gauge` | 20 | 1 | +| `gauges/linear-gauge` | 17 | 1 | +| `gauges/bullet-graph` | 13 | 1 | +| `charts/sparkline` | 8 | 2 | +| `charts/data-pie-chart` | 8 | 1 | +| `charts/toolbar` | 7 | 1 | +| `charts/tree-map` | 5 | 2 | +| `charts/dashboard-tile` | 5 | 1 | +| `charts/pie-chart` | 4 | 2 | +| `charts/doughnut-chart` | 3 | 2 | +| `inputs/color-editor` | 1 | 1 | + +**59 existing topics** reference at least one sample that already exists for WinUI. +168 distinct sample routes already match between the docs and `winui-samples`. + +### 4.2 Components suppressed for WinUI/Uno — zero WinUI samples + +`charts/financial-chart` (8 topics) · `excel/excel-library` (8) · +`excel/spreadsheet` (9) · `grids/grid`, `grids/list`, `grids/tree`, Grid Lite and the +`{GridSample}` / `{TreeGridSample}` / `{PivotGridSample}` / `{HierarchicalGridSample}` / +`{ComponentSample}` web-grid families (~150 topic references) · all `inputs/*` except +`color-editor` · all `layouts/*` (incl. Dock Manager) · all `notifications/*` · +all `scheduling/*` · `menus/nav-bar`, `menus/nav-drawer` · `interactions/chat`, +`interactions/query-builder` · `themes/*` · `ai/*`. + +`menus/toolbar.mdx` **does** emit — its samples are `charts/toolbar`. + +**Zoom Slider is an exception to the zero-samples rule:** `charts/zoomslider` has no +WinUI sample folder today, but the control is coming, so `zoomslider-overview.mdx` +emits and the sample is a Phase 2/4 backfill item. + +### 4.3 Sample routes referenced by in-scope topics with no matching WinUI folder + +42 routes — a **triage list, not an exclusion list** (D5). Some are expected to be +hand-authored samples that never existed in the examples repos; the rest are +genuine backfill candidates for `winui-samples`. Full list in Appendix C. + +Distribution: `charts/data-chart` 19 · `charts/financial-chart` 9 (component is +excluded anyway) · `charts/category-chart` 7 · `charts/pie-chart` 3 · +`charts/sparkline` 2 · `charts/doughnut-chart` 1 · `grids/data-grid` 1. + +### 4.4 WinUI samples with no doc reference + +110 of 279 — including **36 of the 37 `grids/data-grid` samples**, which is a direct +consequence of the Data Grid topics never being ported (§5.4). The remainder +(data-chart 17, category-chart 15, radial-gauge 11, geo-map 9, linear-gauge 8, +bullet-graph 5, sparkline 4, …) are candidates for new sections in existing topics. + +--- + +## 5. Phased work plan + +Phases 0–2 are sequential and blocking. Phases 3–4 are the content bulk and can run +in parallel per component family once Phase 1 lands. Phase 5 is required for the +sites to have an entry point. Phase 6 gates merge. **Phase 7 is committed, not +optional** — it replaces the heuristic name resolution the launch ships on. + +### Phase 0 — Register the platforms + +Goal: `PLATFORM=WinUI npm run dev:winui` boots and serves the existing xplat content +unfiltered. No content correctness yet. + +| File | Change | +|---|---| +| [src/platform.ts:29](src/platform.ts#L29) | `PlatformKey` += `'winui' \| 'uno'` | +| [src/platform.ts:165](src/platform.ts#L165) | `PLATFORM_DEFS` entries — `navType: 'infragistics'`, shared `IG_STYLES` / `IG_SCRIPTS` | +| [src/platform.ts:182](src/platform.ts#L182) | `IGDOCS_PLATFORMS` += `WinUI` / `Uno`: `base` (§8 Q1), `devPort` 4335 / 4336, `root: '/general-getting-started'`, title, description | +| [src/platform.ts:271](src/platform.ts#L271) | `getNavConfig` case list += both keys | +| [src/lib/api-platform-config.ts:1](src/lib/api-platform-config.ts#L1) | `PlatformName` += `'WinUI' \| 'Uno'`; `PLATFORM_MAP` += `winui`, `uno`; `API_PLATFORM_CONFIGS` entries (`folder`, prefix, `pascalCaseMembers: true`, `apiPackages` → `Infragistics.WinUI.*`) | +| [src/lib/platform-context.ts:17](src/lib/platform-context.ts#L17) | `PLATFORMS` entries: `productName`, `productSpinal`, `packages`, `links.github` / `forums` / `repoSamples` → `winui-samples` | +| [src/lib/platform-context.ts:11](src/lib/platform-context.ts#L11) | **Blocker:** `PlatformName` is re-exported from `igniteui-astro-components/lib/types`. Switch this import to the local `api-platform-config.ts` type (already a duplicate definition) or bump the package — see R3 | +| [src/integration.ts:118](src/integration.ts#L118) | `API_DOCS_FOLDER_BY_PLATFORM` += entries, or intentionally omit so no `api/*/llms.txt` URL is emitted (§8 Q2) | +| [src/llms.ts:197](src/llms.ts#L197) | `IGDOCS_PLATFORMS` set += `'winui'`, `'uno'` | +| [src/virtual-modules.d.ts:28](src/virtual-modules.d.ts#L28) | platform union += both | +| [src/plugins/remark-env-vars.ts:26](src/plugins/remark-env-vars.ts#L26) | key→name map += both | +| [docs/xplat/docConfig.json](docs/xplat/docConfig.json) | New `WinUI` / `Uno` blocks: `replacements` (`{Platform}`, `{ProductName}`, `{PackageCore}`, `{RepoSamples}`, sample-path tokens), `samplesBrowsers` (Phase 2 host), `samplesGithubFile` / `samplesGithubTree` → `winui-samples`, `apiDocRoot` | +| [docs/xplat/package.json](docs/xplat/package.json) | `generate:` / `dev:` / `build:` / `build-staging:` / `build-production:` / `preview:` scripts for both platforms | +| [package.json](package.json) | Root `xplat:*:winui` / `:uno` aliases | +| [docs/xplat/scripts/generate.mjs](docs/xplat/scripts/generate.mjs) | Code-fence language → platform map (`xaml`, `csharp`) and content-detection regexes for XAML/`Xam*` types | + +**Acceptance:** dev server boots for both platforms; `{Platform}` renders as `WinUI` / +`Uno`; no unresolved `{Token}` leaks into output; sidebar renders. + +**Status: done and verified.** `npm run generate:winui` emits 365 MDX files; the dev +server boots on 4335; `/radial-gauge` and `/charts/types/area-chart` return 200 with +``, title *"…| Ignite UI for WinUI"*, +`

WinUI Radial Gauge Overview

`, zero unresolved `{Token}`s, and no +cross-platform name leakage (0 `Igr`/`Igb`/`Igx`; the single `Igc` hit is the docs UI's +own `IgcTabsComponent`). + +> ⚠️ **Defect this exposed — unresolved `ApiLink`s fabricate type names.** +> `ApiLink.astro` sets `displayLabel = label ?? (member ? `${baseType}.${member}` : +> baseType)` where `baseType = prefixed ? prefix + type : type`. With no WinUI registry +> yet, **every** link falls through to code text — and that text has `Xam` prepended. +> For controls this is correct (`RadialGauge` → `XamRadialGauge`). For the unprefixed +> helper types it renders a type **that does not exist**: +> +> | Doc stem | Renders | Real WinUI name | +> |---|---|---| +> | `RadialGaugeRange` | `XamRadialGaugeRange` | `RadialGaugeRange` | +> | `LinearGraphRange` | `XamLinearGraphRange` | `LinearGraphRange` | +> | `DataGridToolbar` | `XamDataGridToolbar` | `DataGridToolbar` | +> | `ColumnSortDescription` | `XamColumnSortDescription` | `ColumnSortDescription` | +> | `RangeBarSeries`, `TreeMap` | `Xam…` | not present in `winui-samples` — confirm | +> +> This is R7 in visible output: not a dead link but **wrong prose**. Keeping +> `prefixed: true` is still the right call on volume — the correctly-prefixed controls +> account for ≈506 refs (`DataChart` 295, `DataLegend` 80, `RadialGauge` 56, +> `GeographicMap` 40, `PieChart` 13, `BulletGraph` 12, `LinearGauge` 10) against ≈5–10 +> mislabelled helper refs. The registry (§6.2) fixes it properly by resolving the bare +> form when no `Xam` form exists. Until then, treat the table above as a known-wrong +> list; per-usage `prefixed={false}` is available but counts as the debt §6.3.2 +> guardrail 4 warns about. + +### Phase 1 — Platform groups + `include` + +Goal: web-only content stops emitting for WinUI/Uno, and the model survives adding +mobile platforms. + +1. **New shared module** `src/lib/platform-groups.ts`: + ```ts + export const PLATFORM_GROUPS = { + Web: ['Angular', 'React', 'WebComponents', 'Blazor'], + NonWeb: ['WinUI', 'Uno'], // mobile joins here + }; + export function resolvePlatformList(names: string[]): string[]; // expands aliases + export function emitsFor(platform: string, node: { include?: string[]; exclude?: string[] }): boolean; + ``` + Semantics: expand aliases in `include`, `exclude` and `PlatformBlock for=`. If + `include` is present and the active platform is not in the resolved set → drop. + Otherwise apply `exclude`. `include` wins on conflict. + +2. **Consumers** — all four must use the shared resolver, or filtering diverges + between dev, generated output and the link checkers: + - `buildFilteredToc` — [docs/xplat/astro.config.ts:281](docs/xplat/astro.config.ts#L281) + (also strip `include` from generated output alongside `exclude` / `platforms`) + - `inlinePlatformBlocks` — [docs/xplat/astro.config.ts:121](docs/xplat/astro.config.ts#L121) + - [docs/xplat/scripts/generate.mjs](docs/xplat/scripts/generate.mjs) (docfx-style + comment blocks and toc filtering) + - [scripts/check-relative-links.mjs:58](scripts/check-relative-links.mjs#L58) and + `:178`, [docs/xplat/scripts/resolve-api-links.mjs:66](docs/xplat/scripts/resolve-api-links.mjs#L66), + `scripts/check-mdx-links.mjs` platform args, + [scripts/apply-react-platform-fixes.mjs:131](scripts/apply-react-platform-fixes.mjs#L131) + +3. **Migrate `toc.json`** ([docs/xplat/src/content/en/toc.json](docs/xplat/src/content/en/toc.json) + and the `jp` copy) using the §4.2 matrix. Policy: + - Web-only entry → `"include": ["Web"]` (future-proof; supersedes the need to name + each new non-web platform). Existing `"exclude": ["Angular"]` can stay for + Angular-specific suppression within the Web group. + - Shared DV entry (charts / gauges / maps) → leave as is. + - WinUI/Uno-only entry (Data Grid family) → `"include": ["NonWeb"]`, replacing the + current `"exclude": ["Angular","Blazor","WebComponents","React"]` idiom. + Do this with a scripted migration driven by a checked-in component→group table, then + review the diff — this touches ~250 entries. + +4. **Docs:** update [docs/xplat/AI-AGENT-PLATFORM-BLOCK.md](docs/xplat/AI-AGENT-PLATFORM-BLOCK.md) + (valid platform names, group aliases, `for="NonWeb"`) and + [docs/xplat/PLATFORM-LABELS.md](docs/xplat/PLATFORM-LABELS.md) (`include` semantics, + new platform names for badge overrides). + +**Acceptance:** a WinUI build's sidebar contains only §4.1 components plus General; +a React/WC/Blazor/Angular build's sidebar and page count are **byte-identical to +before** (this is the regression that matters most). + +### Phase 2 — Uno WASM sample host + +Goal: `` renders a live sample and code tabs on both new sites, with no change +to the MDX or to the `Sample` component. + +1. Stand up an Uno WASM samples browser over the shared sample sources + (`winui-samples/samples` — 279 samples, each a `Sample.xaml` + `Sample.xaml.cs` + pair plus data files). Model the ingest on + [winui-samples/scripts/ingest-samples.ps1](../winui-samples/scripts/ingest-samples.ps1), + which already produces a route table (`charts/category-chart/annotations-all`) that + matches the doc `sample=` paths exactly. +2. **Reproduce the samples-browser contract** so the existing component works unchanged: + an iframe route per sample path, and `/code-viewer/.json` returning the file + list for the code tabs. Confirm the JSON shape against an existing host + (`react-demos`) before building. +3. Deploy to a stable staging + production URL; wire both into + `docConfig.json → WinUI.samplesBrowsers` and `Uno.samplesBrowsers`. +4. WinUI-specific affordance: a "view the WinUI source" link to the matching + `winui-samples` folder (via `samplesGithubFile` / `samplesGithubTree`), plus a short + note that the embedded preview is the Uno WASM build of the same sample. +5. Decide the fallback for a doc sample route with no sample on the host (the §4.3 + triage list) — recommended: the component renders a neutral "sample not available + for this platform" placeholder rather than a broken iframe, and the route is logged + at build time so the backfill list stays current. + +**Acceptance:** `geo-map.mdx` and `radial-gauge.mdx` built for WinUI show a live +sample and XAML/C# code tabs; a known-missing route degrades without a console error. + +### Phase 3 — Port the Data Grid topic set + +**Source:** `igniteui-xplat-docs/doc/en/components/grids/data-grid/*.md` — 32 topics, +4,533 lines. **Target:** `docs/xplat/src/content/en/components/grids/data-grid/*.mdx`. + +The Astro toc **already contains** these 32 entries under "Table / Grid" pointing at +`grids/data-grid/*.mdx` — the files were never created, so those nodes currently +reference nothing. Only the landing page `grids/data-grid.mdx` exists. + +Per topic: +- docfx `` … `` comments → `` +- `` `sample="/grids/data-grid/x", height="600", alt="…"` `` → `` +- frontmatter → Astro schema (`title`, `description`, `keywords`, `license`, + `mentionedTypes`, `namespace`, `llms.description`); `_description` / `_keywords` / + `_canonicalLink` are docfx-era names +- backticked type names → `` where a target exists (see R1) +- `../data-grid.md` style links → `.mdx` +- toc entries → `"include": ["NonWeb"]` +- **Suppress the web deprecation banner.** These topics open with a "this control has + been deprecated, migrate to Grid" note scoped to Blazor/WebComponents. The Data Grid + is the *primary* grid on WinUI/Uno — the note must not leak into their output. +- Add XAML/C# snippets: **32 of the 38** referenced sample routes already exist in + `winui-samples`, so snippets can be lifted from `Sample.xaml` / `Sample.xaml.cs`. + +Sizeable topics to schedule first: `overview` (475 lines), `column-pinning` (400), +`column-types` (365), `cell-editing` (333), `column-summaries` (306), +`column-chooser` (293). + +**Acceptance:** all 32 pages build for WinUI and Uno, appear in the sidebar, are absent +from all four web builds, and pass the relative-link and MDX-link checkers. + +### Phase 4 — XAML/C# snippets for the 59 in-scope existing topics + +For each topic in §4.1, add WinUI/Uno code alongside the existing four platforms, +inside `` (or `for="WinUI"` / `for="Uno"` where the two +genuinely differ — package names and `using` directives most likely). + +- Source of truth: `Sample.xaml` (markup) and `Sample.xaml.cs` (code-behind) in the + matching `winui-samples` folder. +- **Trim the harness.** Sample XAML wraps the control in `XamPropertyEditorPanel` / + `PropertyEditorPropertyDescription` scaffolding and layout `Grid`s that must not + appear in a doc snippet; the code-behind carries a `ComponentRenderer` / + `…DescriptionModule.Register` block for the same reason. Snippets should show the + control element and the relevant handler only. +- Type naming is **not uniformly prefixed**: `igGauges:XamRadialGauge`, + `igDataGrids:XamDataGrid`, but `ig:DataGridToolbar`. Do not machine-derive names from + a prefix rule. +- Suggested batching, largest first: `charts/types/*` (17 topics) → + `charts/features/*` (16) → `geo-map-*` (16) → gauges (3) → `dashboard-tile`, + `menus/toolbar`, `inputs/color-editor`, `charts/chart-overview`, `charts/chart-features`. +- Where a section's only sample is on the §4.3 triage list, keep the prose and + snippet and let the sample placeholder handle it (D5) — do not suppress the section. + +**Acceptance:** every in-scope topic has non-empty WinUI/Uno code for each section +that has code for the web platforms; `PlatformBlock` open/close counts balance +(`grep -c` check documented in the authoring guide). + +### Phase 5 — General / setup topics + +Strictly outside "components with samples" (D4), but the sites cannot ship without +them: `IGDOCS_PLATFORMS.root` points at `/general-getting-started`. + +Minimum set, WinUI- and Uno-specific language (Visual Studio / project templates / +`PackageReference` / licensed NuGet feed), modelled on the existing Blazor +installation topics ([general-nuget-feed.mdx](docs/xplat/src/content/en/components/general-nuget-feed.mdx), +[general-installing-blazor.mdx](docs/xplat/src/content/en/components/general-installing-blazor.mdx)): + +- Getting Started (WinUI) / Getting Started (Uno) +- Adding the licensed NuGet feed (can likely be shared with Blazor via group) +- Licensing +- Changelog (new per-platform topic, mirroring `general-changelog-dv-*.mdx`) + +Everything else under General (CLI, MCP, OSS vs premium, Next.js, update guide) is +web-only → `include: ["Web"]`. + +### Phase 6 — Validation & CI + +- `npm run check-relative-links:ci` — extend the generate chain and the platform lists + to cover WinUI/Uno. +- `npm run check-mdx-links:winui` / `:uno` — needs an API link index or an explicit + skip (R1). +- `npm run check:llms-metadata`, `npm run lint:md`, `npm run spellcheck` — add + `WinUI`, `Uno`, `XamDataGrid`, `XamRadialGauge`, `igGauges`, `igDataGrids`, + `SkiaSharp`, etc. to [cspell.json](cspell.json). +- CI/CD: add both platforms to [.github/workflows/ci.yml](.github/workflows/ci.yml), + [cd-xplat-en.yml](.github/workflows/cd-xplat-en.yml) and + [_cd-deploy.yml](.github/workflows/_cd-deploy.yml). +- Regression gate: web-platform page inventories unchanged before/after Phase 1. + +### Phase 7 — Re-incorporate the apiMaps (committed follow-up) + +Specified in full in **§6.4**. Replaces prefix-plus-casing guessing with the +product-generated canonical ↔ platform name mapping, by making the registry generator +alias-aware. Scheduled after the WinUI/Uno launch; **not optional** — it is the +mechanism the docs are supposed to use, and it also fixes the ≈460 `ApiLink`s already +failing on React. + +Blocking dependencies to raise now, since they sit outside this repo: +- product builds must emit `WinUI` and `Uno` entries in apiMap `names[]` +- the apiMaps need a durable home once `igniteui-xplat-docs` is retired + +Interim work must not create debt that this phase has to unpick — see §6.3.2 guardrail 4. + +--- + +## 6. Emission matrix (source of truth for Phase 1 migration) + +| Doc area | WinUI / Uno | Mechanism | +|---|---|---| +| Charts — types, features, overview, API | **emit** | default (shared) | +| Gauges — radial, linear, bullet | **emit** | default | +| Maps — `geo-map*`, `maps/map-api` | **emit** | default | +| Data Grid — `grids/data-grid/*` (32, ported) | **emit, exclusively** | `include: ["NonWeb"]` | +| `grids/grids.mdx` + `grids/theming.mdx` — the legacy DataGrid landing/theming pages, dead today (excluded for all four web platforms) | **emit, exclusively** — becomes the WinUI/Uno grid landing page. Provisional reading, revisit during Phase 3 | `include: ["NonWeb"]` | +| `grids/data-grid.mdx` — despite the name, the **web** Grid landing page (`{GridSample}`) | hide | `include: ["Web"]` | +| `dashboard-tile`, `menus/toolbar`, `inputs/color-editor` | **emit** | default | +| Zoom Slider — control is coming; no WinUI sample yet | **emit** | default; sample is a backfill item | +| General — Getting Started / NuGet / Licensing / Changelog | **emit** (new, Phase 5) | new topics | +| Financial / Stock Chart | hide | `include: ["Web"]` | +| Grid, Tree Grid, Hierarchical Grid, Pivot Grid, Grid Lite, List, Tree | hide | `include: ["Web"]` | +| Spreadsheet, Excel Library, Excel Utility | hide **for now — deferred, see §6.1** | `include: ["Web"]` | +| Inputs (except Color Editor), Layouts, Notifications, Scheduling, Menus (navbar / drawer) | hide | `include: ["Web"]` | +| Chat, Query Builder, Dock Manager, Tile Manager | hide | `include: ["Web"]` | +| AI-Assisted Development (Agent Workflow, Skills, CLI MCP, Theming MCP, Maker Framework) | hide **for now — deferred, see §6.1** | `include: ["Web"]` | +| Themes / Styling, CLI, Next.js, Update Guide, Localization(i18n) | hide | `include: ["Web"]` | + +### 6.1 Deferred, not rejected + +Two areas are excluded in this pass but are expected back. **Adapt the existing +topics rather than authoring new ones** when they return — the prose is largely +platform-neutral and the exclusion is a scoping decision, not a content judgement. + +| Area | Why deferred | When it returns | +|---|---|---| +| **Excel Library / Spreadsheet / Excel Utility** (18 topics) | No WinUI samples yet | Re-include by relaxing `include: ["Web"]` on those toc entries and adding `NonWeb` snippets; the Excel document API is largely platform-agnostic so most prose survives as is | +| **AI-Assisted Development** (5 topics) | Web-tooling framing (npm/CLI/MCP setup) | Same mechanism; needs the setup language re-cut for Visual Studio / NuGet before it emits | + +Keep both out of the Phase 1 `include: ["Web"]` migration script's "permanent" bucket +so re-inclusion is a one-line toc change per entry, not a re-port. + +--- + +## 6.2 API link registry — how it is produced, and what WinUI/Uno needs + +Assumption for this plan: **WinUI and Uno will have an API link index.** The chain +below is traced end to end; the one genuinely missing piece is called out in step 5. + +### The chain today (Blazor — the exact template for a .NET platform) + +| Step | Where | What happens | +|---|---|---| +| 1 | `api-docs/scripts/blazor.js fetch` | Restores `IgniteUI.Blazor.Trial` NuGet packages (feed in `api-docs/scripts/Nuget.Config`) and extracts the DLLs into `blazor_build/temp/` | +| 2 | `dotnet tool run docfx blazor_build/docfx-build-IgniteUI.Blazor.json` | docfx metadata over `temp/IgniteUI.Blazor.dll`, filtered by `IgniteUI.Blazor.filterConfig.yml` → `temp/api/*.yml` → `temp/api-json` (+ `temp/api-raw`) | +| 3 | `blazor_build/blazor-merge-toc.js` | Merges to one per-package JSON under `api-docs/src/data//` (gitignored — fetched, not committed), registered in `api-docs/src/data/platforms-config.json` with a version entry and `jsonFile` | +| 4 | api-docs Astro site | Renders `/api/blazor/IgniteUI.Blazor/latest/classes/IgbDataGrid`; `src/data/api-search-index.ts` walks the same JSON for the site's own search index | +| 5 | **nothing** | ⚠️ **The ApiLink registry has no generator.** The four snapshots in this repo were added by hand in PR #256 (Jun 2026, "Add local ApiLink registry snapshots"). `api-docs` produces a *search* index (`u/n/k/v/p/g/m`), which is a **different shape** from the ApiLink registry (`p/k/u/s/m` keyed by symbol name) | +| 6 | `igniteui-documentation` | Snapshots committed at `src/data/api-link-index//{staging,prod}-latest.json` + `manifest.json`; loaded by `loadApiLinkIndex()` — [src/lib/platform-context.ts](src/lib/platform-context.ts) | +| 7 | `igniteui-astro-components/src/components/mdx/ApiLink/ApiLink.astro` + `api-link-index.ts` | Resolves symbol → URL at render time | + +### Registry contract (from a working snapshot) + +```jsonc +{ + "platform": "blazor", "version": "latest", "generatedAt": "2026-06-03T…", + "packages": ["IgniteUI.Blazor", "IgniteUI.Blazor.Documents.Excel", …], + "symbols": { + "IgbDataGrid": [{ + "p": "IgniteUI.Blazor", // package id + "u": "/api/blazor/IgniteUI.Blazor/latest/classes/IgbDataGrid", // URL path + "k": "class", "s": "classes", // kind, url segment + "m": { "ResolveEventBehavior()": "ResolveEventBehavior()", … } // member → anchor + }] + } +} +``` +Angular ≈ 7.6 MB / Blazor ≈ 13.1 MB / React ≈ 6.6 MB (2,619 symbols) / WC ≈ 5.5 MB. + +**The resolver is already platform-agnostic** — [api-link-index.ts](../igniteui-astro-components/src/components/mdx/ApiLink/api-link-index.ts) +takes `prefix` / `prefixed` / `suffix` / `classSuffix` from platform context and only +requires a `symbols` map. No resolver change is needed for WinUI/Uno; the single +package-side blocker is the `PlatformName` union at +`igniteui-astro-components/src/lib/types.ts:1`. + +### Work required + +1. **`api-docs`: a `winui_build/` docfx pipeline** mirroring `blazor_build/`. Metadata + inputs are the assemblies the samples reference — + `Infragistics.WinUI.{Charts,DataGrid,Gauges,Maps,Layouts,Inputs,DataVisualization}` + plus `Infragistics.Core{,.Charts,.DataGrid,.DataVisualization,.Maps}` and + `Infragistics.Core.Platform.WinUI`. Needs a `filterConfig.yml`, a fetch step, and + `platforms-config.json` entries for `winui` (and `uno`). **Open:** is there a + `Infragistics.WinUI.*.Trial` NuGet package to fetch, or must this build from the + `dev-tools/XPlatform` output that `winui-samples/**/Sample.csproj` references by + `HintPath`? +2. **Write the missing registry generator** (step 5) — best placed in `api-docs`, which + already holds the source JSON and the URL-shaping logic. Model it on + `src/data/api-search-index.ts`, which walks exactly the right data and reuses + `api-sections.ts` for member categorization; emit the `p/k/u/s/m` shape instead. + This also retires the hand-maintained snapshots for the four existing platforms. +3. **`igniteui-astro-components`:** extend `PlatformName` (public repo, branchable). +4. **`igniteui-documentation`:** commit `src/data/api-link-index/{winui,uno}/*.json`, + add both to `manifest.json`, and add `winui` / `uno` to + `API_DOCS_FOLDER_BY_PLATFORM` — [src/integration.ts:118](src/integration.ts#L118). + +--- + +## 6.3 Platform name divergence — what affordance exists + +Short answer: **there is no rename map at render time.** Unlike the +`igniteui-xplat-docs` gulpfile, which resolved canonical → platform names through the +product-generated `apiMap/` JSON on every build, the Astro `ApiLink` resolves +*mechanically* against the registry. The affordances are: + +| Affordance | Handles | Does not handle | +|---|---|---| +| `prefix` + `prefixed` prop (default `true`) | `Igx` / `Igr` / `Igc` / `Igb` prefixing. `buildCandidateNames()` tries **both** `${prefix}${type}` and the bare `type` | — | +| `classSuffix` + `suffix` prop | Angular/WC `…Component` suffix | — | +| Case-insensitive member match (`member`, `upperFirst`, `lowercase`, then normalized scan) | Blazor `SuspendNotifications()` ↔ React `suspendNotifications` | genuine renames | +| `pkg`, `kind` props | ambiguity between packages/kinds | renames | +| `label` prop | rendered text only | resolution | +| `PlatformBlock` around the whole `ApiLink` | anything, by hand | scale | +| Statuses `resolved / ambiguous / member-missing / missing / unavailable` | unresolved renders as highlighted code text + checker report | — | + +The apiMap knowledge **is** used in this repo, but only at **authoring time**: +[docs/xplat/scripts/resolve-api-links.mjs](docs/xplat/scripts/resolve-api-links.mjs) +reads the `apiMap/*/*.apiMap.json` files (sibling `igniteui-xplat-docs` clone, else +fetched from GitHub raw) plus each topic's `mentionedTypes` frontmatter to convert +backticked names into ``. It is **not wired into any npm script or workflow** — +a one-shot migration tool, not a build step. + +### Measured exposure for the in-scope WinUI/Uno topics + +| `` — 2,150 refs | count | +|---|---| +| canonical name identical to the doc name | 1,611 | +| doc uses the **unprefixed stem** (`RadialGauge`, `DataChart`, `DataLegend`, `GeographicMap`, `BulletGraph`, `LinearGauge`, `PieChart`, …) | 525 (18 distinct) | +| true divergence — `DataSource` → `IDataSource` | 14 (1 distinct) | + +| `` — 1,034 refs | count | +|---|---| +| identical to canonical modulo casing | 1,002 | +| absent from the apiMap | 32 | +| **true rename** | **0** | + +The apiMap contains 7,418 non-casing member renames (`ItemsSource` → `dataSource`, +`HighlightedItemsSource` → `highlightedDataSource`, `XAxis` → `barFragmentXAxis`, +`.ctor` → `init`), but they sit on members these DV topics never reference. **The +rename problem is real in the data and almost absent in the content we need.** + +### Consequence — use the prefix mechanism, not an alias table + +Verified against the actual WinUI sources (1,913 files in `winui-samples`): the +**controls** are `Xam`-prefixed (`XamRadialGauge`, `XamDataChart`, `XamDataGrid`, +`XamGeographicMap`, `XamBulletGraph`, `XamLinearGauge`, `XamPieChart`, `XamSparkline`, +`XamDoughnutChart`, `XamDataLegend`), while **helper types are not** — real WinUI uses +`RadialGaugeRange` and `LinearGraphRange`, even though the apiMap's legacy +`originalName` for those is `XamRadialGaugeRange` / `XamLinearGraphRange`. So the +apiMap originals are legacy-XAML canonical and are **not** a reliable source of modern +WinUI names. + +Because `buildCandidateNames()` already tries the prefixed **and** bare form, setting +`prefix: 'Xam'` with `prefixed: true` (no `classSuffix`) resolves both shapes with no +new machinery: `RadialGauge` → tries `XamRadialGauge`, `RadialGauge`; `RadialGaugeRange` +→ tries `XamRadialGaugeRange`, `RadialGaugeRange`. Whichever the registry actually +contains wins. *(This supersedes an earlier `prefixed: false` note.)* + +### 6.3.1 The mechanism is heuristic, and it fails silently + +Two structural weaknesses, both confirmed by reading `findIndexedSymbol()` and by +measurement. **Neither is acceptable to rely on for a new platform**, so the mitigation +in §6.3.2 is part of the plan, not an optional extra. + +**(a) "Which classes don't take a prefix?" — it does not know.** It brute-forces the +candidate list `[Igr+Type+Suffix, Igr+Type, Type+Suffix, Type]` and returns the **first +candidate name that yields exactly one match**. Unprefixed classes work only by the +*absence* of the prefixed name from the registry. When **both** exist with different +URLs, the prefixed one silently wins and the bare type is unreachable — and no +ambiguity is reported, because ambiguity is only detected *within* a single candidate +name, never across candidates: + +| Platform | Shadowed bare names | Examples | +|---|---|---| +| React | 8 | `Calendar`, `Axis`, `Legend`, `Series`, `SeriesCollection`, `Sparkline`, `AxisCollection` | +| Blazor | 7 | `Axis`, `Legend`, `Series`, `SeriesCollection`, `Size`, `Sparkline` | +| Web Components | 4 | `SortingExpression`, `RenderFunction`, `AxisCollection`, `SeriesCollection` | +| Angular | 3 | `TransactionService`, `AxisCollection`, `SeriesCollection` | + +The only per-type opt-out is writing `prefixed={false}` by hand in the MDX. + +**(b) Per-platform member renames have no affordance at all.** Only casing variants are +tried (`member`, `upperFirst`, `lowercase`, then a normalized scan). A genuine rename +returns `member-missing`, the link degrades to highlighted code text, and nothing but +the checker notices. + +**Current state for a shipping platform** — the resolver re-implemented faithfully and +run over all 280 English xplat topics for React, with `PlatformBlock` filtering applied +and `{Token}` types excluded (n = 6,182): + +| Outcome | Count | Share | +|---|---|---| +| resolved | 5,722 | 92.6% | +| `missing` | 270 | 4.4% | +| `member-missing` | 190 | 3.1% | + +≈460 `ApiLink`s already fail on React. The failures are exactly the categories in +question — `GeographicMap.WindowRect`, `SeriesViewer.Legend`, `CrosshairLayer.fill`, +`PolarLineSeries.line` (renames); `DataGrid`, `DataGridColumn`, `DataSource` (the legacy +DataGrid types — **the ones the Phase 3 port depends on**, absent from the React +registry today); and hardcoded cross-platform names leaking into shared content +(`IgbDataChart`, `IgcGrid`, `IgxDataChart`). + +### 6.3.2 Interim posture — proceed on the heuristic, with eyes open + +**Decision (D6): ship WinUI/Uno on the existing mechanism for now.** Set +`prefix: 'Xam'` with `prefixed: true` and no `classSuffix`; the resolver's +prefixed-then-bare candidate order covers `RadialGauge` → `XamRadialGauge` and +`RadialGaugeRange` → `RadialGaugeRange`. Accept that a share of links will not resolve +and will render as highlighted code text. + +This is explicitly a **stopgap**, accepted to unblock Phases 0–5, not the intended end +state. The proper mechanism is §6.4 and is a committed follow-up, not a contingency. + +Interim guardrails: + +1. **Emit exact names, not stems,** in the generated registry — keep both the `Xam` and + bare forms as real keys wherever both types exist. +2. **Make cross-candidate collisions visible.** Have `check-mdx-links` report when more + than one candidate name matches with different URLs; today that resolves silently to + the prefixed one. Benefits all four existing platforms immediately. +3. **Treat `member-missing` as a CI signal, not noise** — it is currently the only + automated detector of a rename. Triage the ≈190 existing React cases before the new + platforms add their own. +4. **Do not hand-patch MDX at scale** to work around resolution failures. Per-type + `prefixed={false}` props and `PlatformBlock`-wrapped `ApiLink`s are debt that §6.4 + would then have to unpick. Cap hand fixes to the bounded set: the 32 unmapped + members and the 14 `DataSource` → `IDataSource` refs. + +--- + +## 6.4 Planned: restore apiMap-driven name resolution + +**Position: the apiMaps are the correct mechanism for cross-platform name resolution, +and prefix-plus-casing guessing is not.** The product builds already generate the +authoritative canonical ↔ platform-specific mapping for every type and every member; +`igniteui-xplat-docs` consumed it on every build. The Astro docs dropped that and +substituted a heuristic, which is why ≈460 `ApiLink`s silently fail on React today +(§6.3.1). This section is a committed workstream to put it back — scheduled after the +WinUI/Uno launch, but planned and specified now so the interim work does not obstruct it. + +### What the apiMaps provide + +`igniteui-xplat-docs/apiMap//*.apiMap.json`, generated by the product builds: + +```jsonc +{ + "types": [{ + "originalName": "PropertyEditor", // canonical (legacy XAML) + "originalNamespace": "Infragistics.Controls.Description", + "packageName": "igniteui-core", + "names": [{ "platform": "WebComponents", "mappedName": "IgcPropertyEditor", "fileName": "…" }], + "members": [{ "originalName": "ActualProperties", + "names": [{ "platform": "WebComponents", + "mappedName": "actualDataSource", "mappedType": "…" }] }] + }] +} +``` + +Coverage today: ~3,008 types per web platform (Blazor 2,349) and **7,418 non-casing +member renames** — `ItemsSource` → `dataSource`, `HighlightedItemsSource` → +`highlightedDataSource`, `XAxis` → `barFragmentXAxis`, `.ctor` → `init`. None of these +are recoverable by any prefix or casing rule. + +### Design — bake the mapping into the registry, not the resolver + +Preferred approach, because it needs **no** change to `igniteui-astro-components` and +**no** change to MDX: + +1. The registry generator (§6.2 step 2) takes the apiMaps as a second input alongside + the docfx/TypeDoc JSON. +2. For each symbol it emits, it adds **alias `symbols` keys** for every platform's + `mappedName`, and **alias entries inside `m`** pointing at the canonical member's + anchor. `` then resolves against WinUI's `ItemsSource` + anchor on the WinUI build, and against `dataSource` on the WC build. +3. Aliases carry provenance so the checker can distinguish "resolved via alias" from + "resolved directly" and report alias coverage per platform. +4. **Precedence, not replacement.** The existing fuzzy matching (platform prefix, + class suffix, case-insensitive members) **stays in place as the fallback**. An + apiMap direct hit is authoritative and wins; where the apiMap has no entry, the + current heuristic still applies. This keeps every link that resolves today + working, and confines the change to adding correctness where the map knows better + — rather than a flag-day switch to registry-only resolution. + + Resolution order becomes: **apiMap direct hit → registry exact name → prefixed / + suffixed / case-folded candidates (today's behaviour)**. + +Alternative, if aliasing in the registry proves insufficient: restore an authoring-time +resolution pass — extend +[docs/xplat/scripts/resolve-api-links.mjs](docs/xplat/scripts/resolve-api-links.mjs) +from a one-shot into a build step that rewrites canonical names to per-platform names in +generated output. Rejected as the primary approach because it re-introduces a build-time +content rewrite and cannot help the `ApiLink` runtime. + +### Upstream dependency — apiMaps must cover WinUI and Uno + +`names[]` currently carries only `Angular`, `React`, `WebComponents`, `Blazor`. **The +product builds must emit `WinUI` and `Uno` platform entries.** Do **not** substitute +`originalName`: it is legacy XAML and diverges from shipping WinUI — the map says +`XamRadialGaugeRange` / `XamLinearGraphRange` where real WinUI has `RadialGaugeRange` / +`LinearGraphRange` (verified against 1,913 files in `winui-samples`). Without real WinUI +entries the alias table is one-directional: usable to translate *web* names onto a WinUI +registry keyed by canonical names, but not authoritative for what WinUI actually calls +things. + +Also to settle: where the apiMaps live once `igniteui-xplat-docs` is retired. Today the +only consumer resolves them from a sibling clone or GitHub raw +(`resolve-api-links.mjs`). They need a durable home — published artifact from the +product build, or vendored into `api-docs` beside the docfx output. + +### Acceptance criteria + +- Registry generator emits aliases; alias coverage reported per platform. +- React `ApiLink` resolution ≥ 99% (from 92.6%), `member-missing` → near zero. +- Fuzzy matching retained as the fallback; **no link that resolves today regresses**. +- Cross-candidate shadowing (`Calendar`, `Axis`, `Legend`, `Series`, …) reported by the + checker, and resolved by an apiMap direct hit wherever the map covers the symbol. +- `DataGrid`, `DataGridColumn`, `DataSource` resolve on every platform that documents + them. +- No `prefixed={false}` or `PlatformBlock`-wrapped `ApiLink` remains as a workaround for + a name that the apiMap could have resolved. + +--- + +## 6.5 Snippet generation: translation now, common-JSON emission later + +### Where Phase 4 got to + +The implemented pass ([add-xaml-snippets.mjs](docs/xplat/scripts/add-xaml-snippets.mjs)) +*translates*: it reads the sibling web snippet in each group, maps names through the +apiMap, and sources element/attribute spellings and values from the real +`winui-samples` markup. Result: **84 of 149 snippet groups** covered, 168 blocks +across both locales, all well-formed, zero element names absent from the sample +corpus. + +Every remaining gap and every bug found along the way traces to the same root cause — +translation has to *infer* what the target platform needs: + +| Found by | Issue | +|---|---| +| review | children dropped (31 groups flattened away the nested structure the topic taught) | +| review | `*Name` properties are string references on the web, object bindings in XAML | +| review | data-chart series↔axis wiring differs structurally from web | +| accuracy test | apiMap inversion is ambiguous (`dataSource` → `ItemsSource` *or* `DataSource`) | +| accuracy test | dotted canonicals (`shapeStyle.strokeThickness`) are paths, not property names | +| XML check | 32 code-only groups cannot be served at all — no markup to translate | + +### The better foundation + +`igniteui-xplat-examples` already has the facility to take a **common JSON syntax and +emit the markup and code-behind for a sample, per platform**. Pointing that at snippets +removes the inference entirely: + +- no web→XAML translation, so no apiMap inversion and no invention risk +- nesting is correct by construction — the emitter knows that XAML needs + `` where the web platforms take plain children +- **code-behind comes free**, which is the only way the 32 code-only groups get served +- **a snippet can force something into code-behind** rather than markup, per platform. + This is not a nicety: the same concept is markup on one platform and imperative on + another (a XAML `{Binding ElementName=…}` versus a web `xAxisName="xAxis"` string; + a collection built in `OnLoaded` versus declared inline), and the doc often wants + the imperative form shown deliberately. Translation cannot decide this — it only + sees the shape the web snippet happens to have. +- one mechanism serves every platform, including WPF and MAUI when they arrive +- the `*Name` / axis-binding classes of bug stop being possible + +**The missing capability is subsetting**: taking just the portion of a sample that a +given snippet should show. Today a sample is all-or-nothing, which is why the doc body +carries hand-sculpted minimal illustrations while the sample widget serves the full +source. Snippet-level regions in the JSON (named, referenced from MDX) would close it. + +### Sandbox checking + +Worth building either way, and it is what makes "all snippets check" enforceable rather +than aspirational. Two tiers, because they have different reach: + +1. **Static validation — runs anywhere, including CI on Linux.** Verify every element, + property and enum value against the apiMap plus the sample corpus, and parse each + XAML block as XML. This is what Phase 4 already does; it catches names and shape but + not types or bindings. +2. **Compile validation — requires Windows for WinUI.** Emit a project per snippet (or + one project with many snippet `UserControl`s), build it, and attribute errors back to + the originating snippet. This catches wrong types, wrong enum members, and broken + bindings — the classes static checking cannot see. **It cannot run on macOS**, so it + belongs in a Windows CI job. + +The hard part is the ancillary binding requirements, and `LibraryProjectEmitter` +(`dev-tools/XPlatform/Main/Source/LibraryProjectEmitter/`) is the natural home: a mode +that emits all library items for WinUI at all required xmlns aliases, **exposing every +data alias on one common data context**, so any snippet resolves without per-snippet +scaffolding. + +Measured against the 84 blocks currently emitted, that context is small: + +| Requirement | Count | Values | +|---|---|---| +| Data-context properties bound | 11 | `EmployeesSalesData` (17), `ProductOrders` (4), `WorldCities`, `TemperatureAnnotatedData`, `CountryRenewableElectricity`, `CountryNames`, `WorldCapitals`, `SalesData`, `CountryRenewableCallouts`, `RealEstateData`, `NorthwindOrders` | +| `ElementName` targets | 4 | `grid`, `chart`, `xAxis`, `yAxis` | +| Distinct XAML elements | 38 | `XamDataGrid`, `TextColumn`, `ColumnWidth`, `GeographicSymbolSeries`, `CategoryXAxis`, … | + +The same two-tier approach generalises to the other platforms — a React/WC/Blazor +snippet can be type-checked or compiled by the equivalent harness, which would catch +the pre-existing web-side defects this work already surfaced by accident (the jp +`IgbLinearGauge`, the unterminated tag, `IgbDataChart` leaking into shared content). + +### 6.5.2 Decision — OPEN, and it should not be settled by default + +Both paths converge on the **same prerequisite**, which is what makes this worth +deciding now rather than drifting: + +> The 33 code-only groups (22%) are the ones translation **cannot serve at all** — there +> is no markup to translate, so they need C# either lifted from `Sample.xaml.cs` by hand- +> rolled extraction, or emitted by forcing code-behind. Either way, code-behind +> generation is the next piece of work. + +That symmetry is the decision criterion: + +| | Translation (continue) | Common-JSON emission | +|---|---|---| +| Covered today | 84/149 (56%) | 0, but the resolution table seeds it (§6.5.1) | +| Code-only groups | hand-rolled C# extraction from `Sample.xaml.cs` | forced code-behind, per platform | +| Verifiability | markup provable (copy + name-check + XML parse); **C# not locally verifiable** | three tiers: generated JSON schema validates the definition, emitter is deterministic, compile sandbox proves the output builds | +| Nesting / `*Name` / axis wiring | per-class guards, indefinitely | correct by construction | +| Other platforms, WPF/MAUI later | re-translate each time | same mechanism | +| Needs | nothing new | subsetting mechanism, bolstered forced-code-behind, back-conversion, emitter run environment | + +**Consequence: the next increment of translation work is precisely the part that gets +thrown away if emission wins** — and it is also the least verifiable part, since there is +no local compile check for generated C#. Spending it twice is the avoidable outcome. + +**A generated JSON validation schema closes the verification gap.** A schema can be +emitted for the input JSON, derived from the same component metadata the renderer uses — +so it stays in sync with the API surface instead of being hand-maintained. That matters +more than it first appears: + +- **It replaces approximation with authority.** The translation path had to *infer* + whether a name was real, via apiMap lookup plus a 279-sample corpus check — which is + why absence from the corpus was only weak evidence. A generated schema validates + element names, property names and enum values against the actual API surface. +- **It catches errors at authoring time**, in the editor, before emission — and in CI as + a cheap gate that runs anywhere, no Windows needed. +- **It makes the subsetting syntax discoverable and validated**, which answers the + earlier objection that a prefix-based marker would be ad hoc: whatever the selector + shape, the schema documents and enforces it. +- Combined with the compile sandbox it gives two independent tiers — the schema proves + the *definition* is well-formed and references real API, the sandbox proves the + *emitted output* builds and binds. + +**Feasibility — the honest read.** The pieces all exist; none of it is speculative: +`CodeGeneratingComponentRenderer` already emits samples and can pick markup or code; +the sample JSON already exists, so back-conversion is *mapping*, not authoring; +`LibraryProjectEmitter` is the natural home for the sandbox project and the common data +context, which the measurements show is small (11 bound properties, 4 `ElementName` +targets). The two genuine unknowns are: + +1. **How universally forced code-behind can be made to work**, per platform — 22% of + groups depend on it, and support is currently partial. This is the main feasibility + risk and should be spiked first, because it gates the emitter path *and* is needed by + the translation path anyway. +2. **Where the emitter runs.** Node against the latest WC npm packages is cheap but + exercises the already-working platform; the WinUI alpha/released packages test the + platform that actually needs proving, at the cost of a Windows job. + +**Suggested way to settle it:** spike (1) against a handful of the 33 code-only groups — +one grid, one chart, one gauge. If forced code-behind can produce those three, emission +is feasible and translation should stop where it is (84 groups stand as-is, no C# +extraction written). If it cannot, that is decisive too: the translator continues and the +sandbox becomes the way to keep its output honest. + +Either way, the static checks stay: apiMap + corpus name verification, XML +well-formedness, en/jp lockstep, and the byte-identical web-platform regression. They +caught every defect in this work so far and are independent of which path wins. + +When the emitter path is picked up, the sequence is: sample subsetting in the common +JSON → per-platform snippet emission (with forced code-behind) → +`LibraryProjectEmitter` sandbox mode exposing the common data context → compile check in +Windows CI, static check retained as the fast gate. The requirement tables above are the +starting spec. + +### 6.5.1 Design notes for the deferred work + +**What subsetting actually has to express.** Measured over the 149 snippet groups in +non-suppressed topics: + +| Share | Case | Consequence for the design | +|---|---|---| +| 93 (62%) | component **with its children shown** | the dominant case: "root element + the children under discussion", not arbitrary fragment extraction | +| 33 (22%) | element + properties mutated from **code-behind** | forced code-behind is load-bearing, not an edge case — see the prerequisite below | +| 9 (6%) | anemic full component definition | falls out of the dominant case with an empty child selection | +| 2 (1%) | individual child, surrounding scope implied | rare; a "root + implied ancestors" flag rather than its own mechanism | +| 12 (8%) | install commands / prose-only code | out of emitter scope; authored by hand | + +So the mechanism needs: pick a root, pick which of its properties to show, pick which +children to include, and force any of it to code-behind. Arbitrary slicing is not +required. + +**Prerequisite: forced code-behind needs bolstering before this path is viable.** +`CodeGeneratingComponentRenderer` supports forcing code in some cases, but not +universally, and coverage differs by platform. At 22% of all groups — the second-largest +case, and the one the translation pass cannot serve at all — this is not a detail to +discover late. Scope it as explicit work in its own right: audit which +element/property/platform combinations can currently be forced to code-behind, then +close the gaps, per platform. Until that holds, the emitter path cannot replace +hand-authored snippets for a fifth of the corpus, and any migration would stall exactly +where the translator already stalls. + +**Marker syntax — a name prefix is probably not enough.** A prefix on property or type +names (stripped at emit time) keeps the sample JSON valid and colocates the intent, but +it cannot express *per-snippet* membership, and one sample commonly backs several +snippets — `grids/data-grid/overview.mdx` alone draws four groups from one sample. A +property in snippet A but not snippet B has no single prefix. Options that do scale: + +- **Named snippet regions declared beside the sample definition** — each names a root, + an include list of properties, a child selection and an `emitAs: markup | code-behind`. + The sample definition stays pristine and MDX references `sample=X#snippet=sorting`. + Costs a small schema. +- **Tags on elements/properties**, with a snippet selecting by tag. Colocated and + supports many snippets per sample, at the price of verbosity in the sample JSON. + +**Back-conversion is cheaper than it looks.** Converting today's snippets to shared JSON +is *not* authoring from scratch: the sample JSON already exists (it is what emits the +samples), so back-conversion means mapping each doc snippet to a subset selector over an +existing sample. Phase 4 already computed that mapping — `add-xaml-snippets.mjs` resolves +each group to a concrete (sample, element) pair, and 84 groups resolve today. That +resolution table is the seed for back-conversion, and the residual gaps are already +enumerated by class. + +**Where to run the emitter.** Node against the latest Web Components npm packages is the +cheaper CI path but exercises the platform that already works; running the emitter from +the alpha/released **WinUI** packages tests the platform whose output is least proven and +is the only way to validate XAML-specific shapes (property-element collections, element +bindings). Suggested split: WinUI emitter run as the correctness gate in Windows CI, +node/WC as a fast smoke check everywhere else. + +--- + +## 6.6 Spike findings — emitter path is more feasible than assumed + +Researched against `dev-tools` on branch **`gmurray/winui`**, which already carries WinUI +emission work. Three questions, three answers. + +### 1. Forced imperative code emission — in better shape than feared + +There are **two** granularities, not one: + +| Mechanism | Scope | State | +|---|---|---| +| `CodeGenerationRendererOptions.ForceCodeBehind` | whole emission | implemented for every doc-relevant platform | +| `MustSetInCode(context, val)` | **per property**, virtual | implemented, and already overridden by the WinUI emitter | + +Markup *and* code-behind emitters both exist for Angular, React, WebComponents, WPF, +WinUI/Uno and Blazor. Code-behind-only platforms (WindowsForms, Kotlin, Swift) are +irrelevant to this doc set. + +Two details that matter: + +- `CodeGenerationTargetPlatforms.WinUI` **and `.Uno` already exist**, dispatching to + `WinUIXamlCodeGeneratingComponentRendererCodeEmitter : WPFXamlCodeGeneratingComponentRendererCodeEmitter`. + The subclass exists specifically to handle where WinUI XAML cannot do what WPF can — + `string[]` and typed enum collections have no property-level TypeConverter and a null + getter, and `x:Static` is WPF-only — so it routes those through `MustSetInCode` instead. + That is real, considered work, not a stub. +- **"Cheat and use WPF" is already the implemented design for code-behind.** WinUI/Uno + `ForceCodeBehind` deliberately returns the *WPF* code-behind emitter, which already + rewrites namespaces on the way out: `System.Windows.Media` → + `Microsoft.UI.Xaml.Media` + `Windows.UI` + `Microsoft.UI`, and + `System.Windows.Controls` → `Microsoft.UI.Xaml.Controls`. + +**So the gap is not in the C# mechanism.** Per-property routing to code already exists, +which is what case (c) — "show how to mutate properties from code-behind" — needs. + +### 2. Node + public packages, or .NET? + +The emitters **are transpiled and ship in `igniteui-core`**. Present in the built TS +surface: Angular (template + code-behind), React (markup + code-behind), WebComponents +(markup + code-behind), Blazor (razor + code-behind), GTK, Kotlin, Swift, WindowsForms, +and — importantly — **`WPFXamlCodeGeneratingComponentRendererCodeEmitter` and +`WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter`**. + +Not shipped: the **WinUI subclass**, because it is new on this branch and has not been +transpiled yet. + +The one genuinely missing JS capability is **loading the code-gen library from disk**: + +| | .NET | JS/TS | +|---|---|---| +| `FromJson(string)` / `fromJson` | yes | yes | +| `ToJson()` / `toJson` | yes | yes | +| Load from disk (`File.ReadAllText`, `-CONFIG.json`) | yes — several paths | **no** | + +So JS needs a **prebaked JSON of the library**, exactly as suspected. + +#### Preferred fix: make `CodeGenerationLibrary` usable from web, via injected file access + +Since the product will need amending anyway for subsetting, the better move is to make the +library loadable from JS rather than to reimplement its behaviour — the categorization and +partitioning rules are the valuable part and must not be duplicated or allowed to drift. + +**The product must never reference node.** The dependency is injected inward: + +``` +CodeGenerationLibrary.FromFolder(path, fileAccess) // fileAccess passed in + │ + ├── .NET caller → System.IO-backed implementation (stays behind #if WPF || PCL) + └── node caller → fs-backed implementation written in TS/JS, outside the product +``` + +The interface itself is plain and transpiles; only the *System.IO implementation* stays +guarded. The product gains no knowledge of node, and the JS build carries no `System.IO` +reference. + +**The required surface is small** — 7 call sites over 4 APIs: + +| API | Call sites | +|---|---| +| `File.ReadAllText` | 6 | +| `File.Exists` | 5 | +| `Directory.Exists` | 3 | +| `Path.*` (`GetFileNameWithoutExtension`, `GetExtension`, `GetDirectoryName`, `Combine`) | 5 | +| `DirectoryInfo.GetDirectories()` / `.GetFiles()` | 2 | + +so roughly `fileExists`, `directoryExists`, `readAllText`, `getFiles`, `getDirectories`, +plus pure-string path helpers. + +**What then stays shared, in one place** — this is the behaviour worth protecting: +`GetItemType`'s data/template/event-handler categorization; `AddPlatformsFromFile`'s +per-type dispatch; the region extraction regexes (`begin template`, `begin content`, +`begin imports`, `begin styles`, `begin supportingMethods`, `begin supportingTypes`, +`begin eventHandler`, `begin emitterOnly`, `begin data`, `begin async data`); +`LoadConfig`'s `-CONFIG.json` handling; the `INFO.txt` / `SOURCE.txt` skips; and the +`Tests` folder recursion in `ProcessFolders`. + +**One non-IO blocker to fix in the same change.** `GetPlatformFromFile` resolves a +filename to a platform by reflection (`typeof(CodeGenerationLibraryItemPlatform).GetFields()`), +which will not transpile. `ParsePlatform` next door does the same job with +`Enum.TryParse(val, true, out p)` and sits *outside* the guards — so it already transpiles. +Rewriting `GetPlatformFromFile` to use that removes the last platform-specific dependency, +after which there is little reason for the `#if WPF || PCL` guard around the loading logic +to exist at all. + +**Note the build implication:** node needs the *rebuilt* `igniteui-core` TS, not the +currently published npm package — the disk-loading gap persists until the product change +is transpiled. + +#### Verified build facts (spike, `dev-tools` branch `gmurray/json-snippets`) + +| Check | Result | +|---|---| +| Local transpile on **macOS** — `dotnet build DV.Shared.DESCRIPTION.JS.csproj` | **works**: 0 errors, ~72s (dotnet 8.0.414; `Translator/bin/buildNC` is prebuilt) | +| TS emitted | `TS/igniteui-core/CodeGenerationLibrary.ts` + `…Item`, `…ItemType`, `…ItemPlatform`, `…ItemContentConfiguration` | +| Emitters emitted | all, including **`WPFXamlCodeGeneratingComponentRendererCodeEmitter.ts`** and `WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter.ts` | +| Disk loading in the JS surface | **absent** — built TS exposes only `fromJson` / `toJson` / `hasItem` / `getKeys` / `getItem`, confirming the `#if WPF \|\| PCL` guard is what excludes it | +| WinUI emitter on this branch | **absent** — that work is on `gmurray/winui`; so XAML emission here means the **WPF** emitter, which is consistent with snippets omitting `xmlns` | + +**Ingestion pattern to copy** — `XSharpTestHost.WC` already does exactly what the spike +needs, so it is a proven mechanism rather than a new one: + +- `gulp productSource` copies local TS from `Source/*.JS/**/bin/**/TS/**/*.ts` (plus + `Translator/bin//TS`, `WCCore`, `TSCore`) into `src/ig/igniteui-core`, synthesising + an `index.ts` per directory. +- `tsconfig.json` `paths` map `igniteui-core/*` → `src/ig/igniteui-core/*` **first**, with + `node_modules/igniteui-webcomponents-core` as fallback — so a local build shadows the + published package without any other change. + +#### Product change — done, plus one blocker found by doing it + +Applied to `CodeGenerationLibrary.cs` on `gmurray/json-snippets`: + +- **`ICodeGenerationLibraryFileAccess`** — 5 members (`FileExists`, `DirectoryExists`, + `ReadAllText`, `GetFiles`, `GetDirectories`), marked `[DontHide]` / `[DontObfuscate]`, + passed *into* `CodeGenerationLibrary`. The product references no host file API. +- **`SystemIOCodeGenerationLibraryFileAccess`** — the System.IO implementation, left + behind `#if WPF || PCL`; `FromFolder(path)` keeps working on .NET by delegating to + `FromFolder(path, fileAccess)`. +- **Guard narrowed** so the shared loading logic (categorization, partitioning, + region extraction, `-CONFIG.json`, `INFO.txt`/`SOURCE.txt` skips, `Tests` recursion) + compiles on every platform. +- **Path helpers** added as pure string operations, handling both separators, rather than + widening the interface. +- **Reflection removed** from `GetPlatformFromFile` in favour of `Enum.TryParse`, matching + what `ParsePlatform` already does. + +`CodeGenerationLibrary` was already `[DontHide]` / `[DontObfuscate]` at class level. +**A release build still needs checking for obfuscation issues.** + +**⚠️ Blocker: the JS build has no working regex, so region extraction cannot run there.** + +| Finding | Detail | +|---|---| +| `System.Text.RegularExpressions` | not available in the JS build; the codebase aliases `Regex = System.RegExp` under `TINYCLR` | +| `System.RegExp` mock surface | `Exec(string): string`, `Test`, `Compile` — **no capture-group or match-index access**, and the loading path needs group 4 in 10 places across 11 patterns | +| `CodeGeneratingRegexHelper.Execute` | its `TINYCLR` branch **returns `input` unchanged — a no-op** | + +That last point is a latent product issue well beyond this spike: the **Angular** emitter +uses `CodeGeneratingRegexHelper` in ~9 places (`import {…} from …` rewriting, `Ig[crx]` +renaming, `CodeGenHelper.getDescription<…>` / `findByName<…>` substitution, event-arg +rewriting), so **Angular emission from a JS/WC build is silently degraded today**. + +**There is an established fix, and it needs no translator change.** `Script.Literal` is +already used to reach native JS regex: + +```csharp +#if JS + _exp = (RegExp)Script.Literal("new RegExp(patt_)"); // DataSeriesDataProviderAnalyzer +#elif JAVA || SWIFT || KOTLIN + _exp = new RegExp(patt_); +#else + _exp = new Regex(patt_); +#endif +``` + +(also in `RevealCore/BaseRendererComponent.cs`). So `CodeGeneratingRegexHelper`'s JS branch +can be implemented with `Script.Literal` to run a global regex and expose group values, +match index and length — reproducing the .NET branch's reverse-and-splice semantics — +without touching the corelib mock. Fixing it there benefits every JS-built consumer, not +just snippet emission. + +**Next steps in order:** implement the JS branch of `CodeGeneratingRegexHelper` → rebuild +`DV.Shared.DESCRIPTION.JS` and confirm `fromFolder` appears in the emitted TS → write the +node-side `ICodeGenerationLibraryFileAccess` over `fs` → ingest local TS the way +`XSharpTestHost.WC` does → round-trip against the 84 existing XAML blocks. + +Two ways to bridge it in the meantime, the second avoiding .NET in the loop: + +- **Bake with .NET**: run `ToJson()` once and commit/publish the result; node consumes it + via `fromJson()`. Simplest, but puts a .NET step in the pipeline. +- **Reimplement the library parse in node** — likely the better option. The disk-loading + side is not complex: it walks the `igniteui-xplat-examples` code-gen library files and + the adjacent `-CONFIG.json`, then hands the result to the same `FromJson` shape the JS + `CodeGenerationLibrary` already accepts. Since `fromJson` is public on the TS side, a + node-side loader only has to *produce that JSON* — it does not need to replicate any of + the emitter logic. That keeps the whole prototype in node with public packages and no + .NET in the loop. + +**Recommended prototype: node + the public packages, using the WPF XAML emitter.** This +works because of a decision already taken for other reasons — snippets omit the `xmlns` +declaration (§6.3 / D-WPF), and that declaration is the principal WPF↔WinUI XAML +divergence. The residual delta is the enumerable `MustSetInCode` set above. + +Fallback if the WPF emitter proves too divergent: .NET with the **`.Core` assemblies** +from the WinUI NuGets. Emission is netstandard code, so this likely does **not** need +Windows — only the *compile sandbox* does. + +### 3. Marking include/exclude in the JSON + +- The library and template JSON are read through a generic dictionary model + (`JsonDictionaryItem`, `FromJson`/`ToJson` throughout), so **additive marker keys are + feasible** without disturbing existing parsing. +- **No JSON-schema emitter exists yet** in the DV shared source — emitting one is new + work, which matches how it was raised. That is also the reason a marker convention need + not be constrained by an existing schema: the emitter can be extended alongside it. +- On ergonomics: a **name prefix cannot express per-snippet membership** (§6.5.1 — one + sample commonly backs several snippets, and a property may be in one and not another). + A sibling key (`"$snippet": ["sorting"]`) or a separate `snippets` section keyed by name + both scale, keep the sample definition valid, and are straightforward to describe in a + generated schema. + +### Verification: round-trip against what already exists + +The 84 XAML blocks currently in the content are the comparison corpus. If the emitter can +reproduce them — same element, same property set, same nesting — the path is proven on +real cases rather than on a toy. The resolution table from Phase 4 supplies each block's +(sample, element) pair, so the comparison is mechanical. + +**Verdict: worth doing the spike.** The pieces that exist are further along than assumed +(WinUI/Uno target platforms, a WinUI emitter subclass, per-property code routing, +transpiled WPF XAML emitter). The genuinely new work is narrow: prebake the library JSON, +choose a marker convention, and extend the schema emitter. + +--- + +## 6.7 Snippet marker design — recording zones + +Settled direction: **the sample JSON stays complete and runnable**, and snippets are cut +from it by marking regions. Keeping the definition whole is what makes automated snippet +tests and screenshot capture possible later, so nothing here may reduce a sample to a +fragment. + +### Why recording, not filtering + +A subset *selector* cannot express the important cases. Consider wanting to show only two +property assignments on a `LineSeries` — no construction of the series, no chart. Filtering +the definition would remove the context the emitter needs; recording does not: + +> The emitter walks the entire runnable definition as usual. Output is only **recorded** +> while inside an inclusion zone (or outside an exclusion zone). The two assignments are +> captured; the constructor lines are walked but discarded. + +**This has a single place to live.** `CodeGeneratingCodeWriter` holds one `StringBuilder` +and every emitter writes through `Write` / `WriteLine` / `WriteCode` / `NewLine`. Gating +those four is the whole mechanism — no per-emitter changes. + +### Markers + +Prefix the *name* of an element type or property in the JSON. The prefix is stripped before +the description model sees the name, and retained as metadata the emitters consult: + +| Part | Meaning | +|---|---| +| `+` / `-` | begin an inclusion zone / an exclusion zone | +| id | which snippet the zone belongs to — one runnable sample can back several snippets, which is the common case (the Data Grid overview topic draws four) | +| channel | which output the snippet wants (below) | + +### Channels — and two different mechanisms + +Default is the **main markup**. Two other channels are needed, and only one of them is a +recording zone: + +| Channel | Wanted output | Mechanism | +|---|---|---| +| markup *(default)* | the platform's markup form | recording gate over emission | +| code-behind | the imperative form — e.g. property assignment rather than an attribute | recording gate over emission, with `ForceCodeBehind` / `MustSetInCode` for that region | +| handler | a library event handler, **essentially verbatim** | **not emission at all** — read directly from the library | + +That last row matters for scoping: the handler text already exists as extracted content on +the library item (`CodeGenerationLibraryItem.getContentForPlatform(...)` → the `handler` +field that `ExtractEventHandlerContent` produced from `WinUI.cs`/`Web.ts`/…). A snippet +asking for a handler needs a *lookup*, not a code-generation pass — so the marker's job +there is only to name which library item and which channel. + +### Open points for the syntax + +- **Delimiting.** The prefix must be strippable without ambiguity against real names, and + must keep the JSON valid. A delimited token — `~+sorting:code~HeaderClickAction` — is + unambiguous and easy to strip; a bare sigil (`+HeaderClickAction`) reads better but + cannot carry an id or channel. +- **Schema.** The generated JSON schema (§6.5) must accept marked names, i.e. property + names become pattern-based rather than a fixed enumeration. This is the extension already + anticipated for the schema emitter. +- **Indentation rebasing.** The writer tracks indent through `IncreaseIndent` / + `DecreaseIndent`. Recording that opens six levels deep would emit a deeply indented + snippet; the gate should capture the indent at record-start and subtract it. +- **Line granularity.** `Write` emits partial lines, so toggling mid-line could split + output. Markers sit on element/property boundaries, so the gate should open and close at + line boundaries. +- **Zone nesting.** Inclusion inside exclusion (and vice versa) needs defined precedence; + a small stack in the writer covers it, consistent with how `PlatformBlock` nesting is + handled in the docs pipeline. + +--- + +## 7. Risks + +| # | Risk | Mitigation | +|---|---|---| +| R1 | **API links.** 7,383 `` usages across 232 topics need a WinUI/Uno registry. The chain is understood (§6.2) but **no registry generator exists in any repo** — the four current snapshots are hand-made, so this is net-new tooling plus a new docfx pipeline, on a repo (`api-docs`) this plan does not own. | Build the generator early (§6.2 step 2) — it is the long-lead item and it also de-risks the existing four platforms. Until it lands, `ApiLink` renders highlighted text and the checker reports unresolved, so content work in Phases 3–4 is **not blocked**, only its CI gate is. | +| R2 | **Filtering migration blast radius.** ~250 toc entries plus many `PlatformBlock`s change in Phase 1; a mistake silently drops content from a *shipping* web platform. | Script the migration from a checked-in table; gate on a before/after page-inventory diff per web platform. | +| R3 | **`igniteui-astro-components@0.0.27` is external.** It owns `PlatformName`, `Sample.astro`, `ApiLink.astro` and the sidebar types. Adding platforms may require a package release outside this repo. | `PlatformName` is already duplicated locally in `api-platform-config.ts` — import from there. For `Sample` / `ApiLink` behaviour, decide package bump vs. local override early (§8 Q3); it gates Phase 2 and R1. | +| R4 | **Snippet quality.** Raw `Sample.xaml` includes property-editor and layout scaffolding; naive extraction produces noisy, misleading snippets. | Manual or template-driven extraction of the control element + relevant handler; treat generated snippets as drafts. | +| R5 | **Web-grid token machinery.** `{ComponentSample}`, `_componentKey` frontmatter and the `grids/_shared/` templates exist for the four web grids. A WinUI build must not expand them. | Covered by `include: ["Web"]` on those topics; verify `generate.mjs` shared-file expansion is skipped for the new platforms. | +| R7 | **The `ApiLink` resolver is heuristic and fails silently** (§6.3.1). It brute-forces prefixed/bare candidates and takes the first single match, so it cannot know which classes are unprefixed and silently shadows bare names when both forms exist (8 in React, 7 Blazor, 4 WC, 3 Angular). Per-platform member renames have no affordance at all. **≈460 `ApiLink`s already fail on React (92.6% resolved)** — including `DataGrid` / `DataGridColumn` / `DataSource`, which the Phase 3 port depends on. WinUI/Uno is the worst case: shared MDX carries web-mapped names, the registry will carry canonical XAML names. **Accepted for the launch** (D6, §6.3.2) with guardrails: exact names in the registry, cross-candidate collisions reported by `check-mdx-links`, `member-missing` treated as a CI signal, and no large-scale hand-patching of MDX. **Fixed properly by Phase 7 / §6.4** — the apiMaps re-incorporated as the resolution mechanism. Do **not** treat apiMap `originalName` as the modern WinUI name — it is legacy XAML (`XamRadialGaugeRange` vs the real `RadialGaugeRange`). | +| R6 | **Uno ≠ WinUI in packages/namespaces.** Snippets authored as `for="NonWeb"` may be wrong for Uno where assembly or `using` lines differ. | Establish the Uno package/namespace story before Phase 4 (§8 Q5); split blocks where they differ. | + +--- + +## 8. Open questions (need answers from outside this repo) + +1. ~~**Branding & URLs**~~ — **settled.** These ship under the **Ultimate UI** brand, + not Ignite UI: + | | WinUI | Uno | + |---|---|---| + | `productName` / `title` | Infragistics Ultimate UI for WinUI | Infragistics Ultimate UI for Uno Platform | + | `{ProductNameShort}` | Ultimate UI | Ultimate UI | + | switcher `label` | WinUI | Uno Platform | + | `base` | `/products/ultimate-ui-winui/winui/components` | `/products/ultimate-ui-uno/uno/components` | + | `productSpinal` | `ultimate-ui-winui` | `ultimate-ui-uno` | + + No `ignite-ui` in either slug. The `{ProductLink*}` tokens keep their `ignite-ui-*` + slugs — they are cross-links to the Ignite UI products, not to these. + Still open: whether these appear in the existing Infragistics nav / product switcher. +2. **API reference** — resolved into concrete work in §6.2. Remaining unknowns: + (a) is there an `Infragistics.WinUI.*.Trial` NuGet package for the docfx fetch step, + or does it build from the `dev-tools/XPlatform` output? (b) who owns adding the + `winui`/`uno` pipeline to `api-docs`? (c) what are the Uno assembly names? +3. **`igniteui-astro-components`** — public repo, so branchable. Only `PlatformName` + (`src/lib/types.ts:1`) blocks Phase 0; the ApiLink resolver needs no change. Confirm + release cadence so this repo can consume a version rather than pin a fork. +4. **Uno WASM host** — owner, build pipeline, and staging/production URLs. Does it + reproduce the `/code-viewer/*.json` contract, or does `Sample` need a new mode? +5. **Uno samples** — shared source with `winui-samples` plus an Uno head project, or a + separate repo? What are the Uno package IDs and namespaces? +6. **Locales** — assume `en` only for v1; confirm whether `jp` is expected, since + `toc.json` exists per locale and the migration would need to cover both. +7. **Mobile platforms** — names and grouping, so `PLATFORM_GROUPS` is right the first + time (`NonWeb` chosen over `Xaml` specifically to accommodate them). + +--- + +## Appendix A — key files + +| Concern | File | +|---|---| +| Platform registry, nav, ports, base URLs | [src/platform.ts](src/platform.ts) | +| API package config, `PlatformName`, `PLATFORM_MAP` | [src/lib/api-platform-config.ts](src/lib/api-platform-config.ts) | +| Per-platform product metadata, api-link index loading | [src/lib/platform-context.ts](src/lib/platform-context.ts) | +| Token substitution, `PlatformBlock` inlining, toc filtering | [docs/xplat/astro.config.ts](docs/xplat/astro.config.ts) | +| Per-platform tokens, sample hosts, api roots | [docs/xplat/docConfig.json](docs/xplat/docConfig.json) | +| Navigation source | [docs/xplat/src/content/en/toc.json](docs/xplat/src/content/en/toc.json) | +| docfx-era generator (platform blocks, shared expansion) | [docs/xplat/scripts/generate.mjs](docs/xplat/scripts/generate.mjs) | +| Authoring rules for conditional content | [docs/xplat/AI-AGENT-PLATFORM-BLOCK.md](docs/xplat/AI-AGENT-PLATFORM-BLOCK.md), [docs/xplat/PLATFORM-LABELS.md](docs/xplat/PLATFORM-LABELS.md) | +| Un-ported Data Grid source | `igniteui-xplat-docs/doc/en/components/grids/data-grid/` | +| WinUI sample sources + route table generator | `winui-samples/samples/`, `winui-samples/scripts/ingest-samples.ps1` | +| API doc generation, docfx pipeline, platform registry | `api-docs` (private, default branch `vnext`) — `blazor_build/`, `scripts/blazor.js`, `src/data/platforms-config.json`, `src/data/api-search-index.ts` | +| `ApiLink` runtime + resolver + `PlatformName` | `igniteui-astro-components` (public, `master`) — `src/components/mdx/ApiLink/`, `src/lib/types.ts` | +| Committed registry snapshots | [src/data/api-link-index/](src/data/api-link-index/) + `manifest.json` | + +## Appendix B — useful commands + +```bash +# per-platform dev (existing platforms) +npm run xplat:dev:react + +# full link-check chain as CI runs it +npm run check-relative-links:ci + +# metadata / lint / spelling +npm run check:llms-metadata && npm run lint:md && npm run spellcheck + +# PlatformBlock balance check on a file +grep -c '' file.mdx +``` + +## Appendix C — sample-route triage list (42) + +Referenced by in-scope topics, no matching folder in `winui-samples`. Per D5 these do +**not** suppress any topic — triage each as (a) hand-authored sample that never +existed in the examples repos, (b) route-name drift, or (c) genuine backfill. + +``` +charts/category-chart/column-chart-with-highlighting +charts/category-chart/high-frequency +charts/category-chart/high-volume +charts/category-chart/line-chart-with-animations +charts/category-chart/line-chart-with-annotations +charts/category-chart/marker-templates +charts/category-chart/tooltip-template +charts/data-chart/axis-crossing +charts/data-chart/axis-sharing +charts/data-chart/chart-navigation +charts/data-chart/composite-chart +charts/data-chart/crosshair-layer-styling +charts/data-chart/dash-array-axes +charts/data-chart/dash-array-series +charts/data-chart/final-value-layer-styling +charts/data-chart/radial-proportional-category-angle-axis +charts/data-chart/range-bar-chart +charts/data-chart/scatter-marker-options +charts/data-chart/series-value-overlay +charts/data-chart/stacked-chart-types +charts/data-chart/timeline-axis-type +charts/data-chart/tooltip-template +charts/data-chart/type-scatter-area-series +charts/data-chart/type-scatter-contour-series +charts/data-chart/type-scatter-hd-series +charts/data-chart/type-scatter-polygon-series +charts/doughnut-chart/selection +charts/financial-chart/axis-types # component excluded (no WinUI samples) +charts/financial-chart/data-legend # ” +charts/financial-chart/data-legend-formatting-currency # ” +charts/financial-chart/data-legend-styling-props # ” +charts/financial-chart/data-tooltip # ” +charts/financial-chart/data-tooltip-formatting-currency# ” +charts/financial-chart/data-tooltip-styling-props # ” +charts/financial-chart/multiple-data # ” +charts/financial-chart/trendlines # ” +charts/pie-chart/animation +charts/pie-chart/explosion +charts/pie-chart/selection +charts/sparkline/display-types +charts/sparkline/grid +charts/zoomslider/overview # control coming; sample needed +grids/data-grid/type-marketing-table +``` diff --git a/docs/xplat/astro.config.ts b/docs/xplat/astro.config.ts index 10ddb93898..ac0ada9410 100644 --- a/docs/xplat/astro.config.ts +++ b/docs/xplat/astro.config.ts @@ -4,6 +4,7 @@ import { fileURLToPath } from 'node:url'; import { createDocsSite, type DocsMode } from 'docs-template/integration'; import { IGDOCS_PLATFORMS, type NavLang } from 'docs-template/platform'; import { SIDEBAR_BADGE_VARIANTS } from 'docs-template/sidebar'; +import { emitsFor, forMatches } from 'docs-template/lib/platform-groups'; import mdx from '@astrojs/mdx'; // --------------------------------------------------------------------------- @@ -147,8 +148,8 @@ function inlinePlatformBlocks(content: string, plat: string): string { // Opener comes first — append literal text up to it result += content.slice(pos, openPos); - const platforms = openMatch![1].split(',').map((s: string) => s.trim()); - const keep = platforms.includes(plat); + // `for` accepts platform names and group aliases (Web, NonWeb) alike. + const keep = forMatches(plat, openMatch![1]); const bodyStart = openPos + openMatch![0].length; // Walk forward to find the correctly nested closing tag @@ -281,9 +282,11 @@ function buildFilteredToc(): string { function filterNodes(nodes: any[]): any[] { if (!Array.isArray(nodes)) return []; return nodes - .filter(n => !Array.isArray(n.exclude) || !n.exclude.includes(platform)) + // `include` (allowlist, wins) and `exclude` (blacklist); both accept + // group aliases such as Web / NonWeb. See src/lib/platform-groups.ts. + .filter(n => emitsFor(platform, n)) // eslint-disable-next-line @typescript-eslint/no-unused-vars - .map(({ exclude, platforms, ...rest }) => { + .map(({ exclude, include, platforms, ...rest }) => { // Apply platform-specific badge overrides, e.g.: // "platforms": { "Blazor": { "new": false, "preview": true } } if (platforms && typeof platforms === 'object' && platforms[platform]) { diff --git a/docs/xplat/docConfig.json b/docs/xplat/docConfig.json index 81c2caa44a..fdb056e6ce 100644 --- a/docs/xplat/docConfig.json +++ b/docs/xplat/docConfig.json @@ -719,5 +719,1167 @@ "apiDocRoot": "{environment:dvApiBaseUrl}/blazor/docs/api/api/", "Main": "https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/{CONTROL_NAME}.html", "Overview": "https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/{CONTROL_NAME}.html" + }, + "WinUI": { + "isFirstRelease": false, + "samplesGithubFile": "Sample.xaml", + "samplesGithubTree": "github/IgniteUI/winui-samples/tree/main/samples/", + "samplesDisplayStackblitz": false, + "codeSandboxButtonInject": false, + "replacements": [ + { + "name": "{ProductLinkAngular}", + "value": "https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started" + }, + { + "name": "{ProductLinkBlazor}", + "value": "https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started" + }, + { + "name": "{ProductLinkReact}", + "value": "https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started" + }, + { + "name": "{ProductLinkWC}", + "value": "https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/general-getting-started" + }, + { + "name": "{ApiClass}", + "value": "{environment:wcApiUrl}/classes" + }, + { + "name": "{ApiIndex}", + "value": "{environment:wcApiUrl}/index.html" + }, + { + "name": "{ProductSpinal}", + "value": "ultimate-ui-winui" + }, + { + "name": "{ProductName}", + "value": "Infragistics Ultimate UI for WinUI" + }, + { + "name": "{ProductNameShort}", + "value": "Ultimate UI" + }, + { + "name": "{PlatformLower}", + "value": "winui" + }, + { + "name": "{PlatformLowerNoHyphen}", + "value": "winui" + }, + { + "name": "{Platform}", + "value": "WinUI" + }, + { + "name": "{IgPrefix}", + "value": "Xam" + }, + { + "name": "{PackageComponents}", + "value": "igniteui-webcomponents" + }, + { + "name": "{PackageCommon}", + "value": "Infragistics.Core" + }, + { + "name": "{PackageCore}", + "value": "Infragistics.Core" + }, + { + "name": "{PackageCharts}", + "value": "Infragistics.WinUI.Charts" + }, + { + "name": "{PackageDataSources}", + "value": "IgniteUI.Blazor" + }, + { + "name": "{PackageDashboards}", + "value": "Infragistics.WinUI.DataVisualization" + }, + { + "name": "{PackageExcel}", + "value": "Infragistics.Documents.Excel" + }, + { + "name": "{PackageGauges}", + "value": "Infragistics.WinUI.Gauges" + }, + { + "name": "{PackageGrids}", + "value": "Infragistics.WinUI.DataGrid" + }, + { + "name": "{PackageInputs}", + "value": "Infragistics.WinUI.Inputs" + }, + { + "name": "{PackageLayouts}", + "value": "Infragistics.WinUI.Layouts" + }, + { + "name": "{PackageMaps}", + "value": "Infragistics.WinUI.Maps" + }, + { + "name": "{PackageSpreadsheet}", + "value": "Infragistics.WinUI.Spreadsheet" + }, + { + "name": "{PackageDockManager}", + "value": "IgniteUI.Blazor" + }, + { + "name": "{PackageWebsite}", + "value": "https://www.npmjs.com/package/" + }, + { + "name": "{PackageVerChangedImports}", + "value": "1.0.6" + }, + { + "name": "{PackageVerChanges-21-1}", + "value": "21.1.52 (April 2021)" + }, + { + "name": "{PackageVerChanges-21-2}", + "value": "21.2.22 (November 2021)" + }, + { + "name": "{PackageVerChanges-21-2.1}", + "value": "21.2.52 (December 2021)" + }, + { + "name": "{PackageVerChanges-22-1}", + "value": "22.1.41 (June 2022)" + }, + { + "name": "{PackageVerChanges-22-2}", + "value": "22.1.76 (November 2022)" + }, + { + "name": "{PackageVerChanges-22-2.50}", + "value": "22.2.50 (December 2022)" + }, + { + "name": "{PackageVerChanges-22-2.65}", + "value": "22.2.65 (April 2023)" + }, + { + "name": "{PackageVerChanges-23-1}", + "value": "23.1.37 (June 2023)" + }, + { + "name": "{PackageVerChanges-23-2}", + "value": "23.2.97 (December 2023)" + }, + { + "name": "{PackageVerChanges-23-2-JAN}", + "value": "23.2.110 (January 2024)" + }, + { + "name": "{PackageVerChanges-23-2-MAR}", + "value": "23.2.189 (March 2024)" + }, + { + "name": "{PackageVerChanges-23-2-APR}", + "value": "23.2.191 (April 2024)" + }, + { + "name": "{PackageVerChanges-23-2-APR2}", + "value": "23.2.204 (March 2024)" + }, + { + "name": "{PackageVerChanges-24-1-JUN}", + "value": "23.2.257 (June 2024)" + }, + { + "name": "{PackageVerChanges-24-1-SEP}", + "value": "24.1.46 (September 2024)" + }, + { + "name": "{PackageVerChanges-24-2-NOV}", + "value": "24.2.19 (November 2024)" + }, + { + "name": "{PackageVerChanges-24-2-DEC}", + "value": "24.2.52 (December 2024)" + }, + { + "name": "{PackageVerChanges-24-2-JAN}", + "value": "24.2.71 (January 2025)" + }, + { + "name": "{PackageVerChanges-24-2-FEB}", + "value": "24.2.85 (February 2025)" + }, + { + "name": "{PackageVerChanges-24-2-MAR}", + "value": "24.2.92 (March 2025)" + }, + { + "name": "{PackageVerChanges-24-2-APR}", + "value": "24.2.111 (April 2025)" + }, + { + "name": "{PackageVerChanges-24-2-MAY}", + "value": "24.2.122 (May 2025)" + }, + { + "name": "{PackageVerChanges-25-1-JUNE}", + "value": "25.1.19 (June 2025)" + }, + { + "name": "{PackageVerChanges-25-1-JULY}", + "value": "25.1.46 (July 2025)" + }, + { + "name": "{PackageVerChanges-25-1-AUG}", + "value": "25.1.63 (August 2025)" + }, + { + "name": "{PackageVerChanges-25-1-SEP}", + "value": "25.1.82 (September 2025)" + }, + { + "name": "{PackageVerChanges-25-2-NOV}", + "value": "25.2.32 (November 2025)" + }, + { + "name": "{PackageVerChanges-25-2-DEC}", + "value": "25.2.38 (December 2025)" + }, + { + "name": "{PackageVerChanges-25-2-MAR}", + "value": "25.2.77 (March 2026)" + }, + { + "name": "{PackageVerChanges-25-2-MAR2}", + "value": "25.2.83 (March 2026)" + }, + { + "name": "{PackageVerChanges-25-2-MAY}", + "value": "25.2.102 (May 2026)" + }, + { + "name": "{PackageVerLatest}", + "value": "26.1.51 (June 2026)" + }, + { + "name": "{PackageVerLatestShort}", + "value": "26.1.51" + }, + { + "name": "{RepoSamples}", + "value": "https://github.com/IgniteUI/winui-samples/tree/main/samples" + }, + { + "name": "{RepoBrowser}", + "value": "https://github.com/IgniteUI/igniteui-blazor-examples/tree/master/browser" + }, + { + "name": "{GithubLink}", + "value": "https://github.com/IgniteUI/winui-samples" + }, + { + "name": "{GithubLinkLite}", + "value": "https://github.com/IgniteUI/IgniteUI.Grid.OSS" + }, + { + "name": "{ForumsLink}", + "value": "https://www.infragistics.com/community/forums/" + }, + { + "note": "in shared topics, these variables are mapped from {Component*} and auto-replaced with actual values, e.g." + }, + { + "note": "{ComponentTitle} -> {TreeGridTitle} -> 'Tree Grid' in /tree-grid/*.md " + }, + { + "note": "{ComponentName} -> {TreeGridName} -> 'IgbTreeGrid' in /tree-grid/*.md " + }, + { + "note": "{ComponentTitle} -> {PivotGridTitle} -> 'Pivot Grid' in /pivot-grid/*.md " + }, + { + "note": "{ComponentName} -> {PivotGridName} -> 'IgbPivotGrid' in /pivot-grid/*.md " + }, + { + "name": "{GridTitle}", + "value": "Grid" + }, + { + "name": "{GridKeywords}", + "value": "Grid, IgbGrid" + }, + { + "name": "{GridName}", + "value": "IgbGrid" + }, + { + "name": "{GridModule}", + "value": "IgbGridModule" + }, + { + "name": "{GridSelector}", + "value": "IgbGrid" + }, + { + "name": "{GridSample}", + "value": "grids/grid" + }, + { + "name": "{GridApiMembers}", + "value": "\"Infragistics.Controls.Grid\", \"Infragistics.Controls.GridCell\", \"Infragistics.Controls.GridRow\", \"Infragistics.Controls.Column\"" + }, + { + "name": "{TreeGridTitle}", + "value": "Tree Grid" + }, + { + "name": "{TreeGridKeywords}", + "value": "Tree Grid, IgbTreeGrid" + }, + { + "name": "{TreeGridName}", + "value": "IgbTreeGrid" + }, + { + "name": "{TreeGridModule}", + "value": "IgbTreeGridModule" + }, + { + "name": "{TreeGridSelector}", + "value": "IgbTreeGrid" + }, + { + "name": "{TreeGridSample}", + "value": "grids/tree-grid" + }, + { + "name": "{TreeGridApiMembers}", + "value": "\"Infragistics.Controls.TreeGrid\", \"Infragistics.Controls.GridCell\", \"Infragistics.Controls.TreeGridRow\", \"Infragistics.Controls.Column\"" + }, + { + "name": "{GridLiteTitle}", + "value": "Grid Lite" + }, + { + "name": "{GridLiteKeywords}", + "value": "Grid Lite, IgbGridLite" + }, + { + "name": "{GridLiteName}", + "value": "IgbGridLite" + }, + { + "name": "{GridLiteSelector}", + "value": "IgbGridLite" + }, + { + "name": "{GridLitePackage}", + "value": "igc-grid-lite" + }, + { + "name": "{GridLiteSample}", + "value": "grids/grid-lite" + }, + { + "name": "{GridLiteApiMembers}", + "value": "\"Infragistics.Controls.GridLite\"" + }, + { + "name": "{PivotGridTitle}", + "value": "Pivot Grid" + }, + { + "name": "{PivotGridKeywords}", + "value": "Pivot Grid, IgbPivotGrid" + }, + { + "name": "{PivotGridName}", + "value": "IgbPivotGrid" + }, + { + "name": "{PivotGridModule}", + "value": "IgbPivotGridModule" + }, + { + "name": "{PivotGridSelector}", + "value": "IgbPivotGrid" + }, + { + "name": "{PivotGridSample}", + "value": "grids/pivot-grid" + }, + { + "name": "{PivotGridApiMembers}", + "value": "\"Infragistics.Controls.PivotGrid\"" + }, + { + "name": "{HierarchicalGridTitle}", + "value": "Hierarchical Grid" + }, + { + "name": "{HierarchicalGridKeywords}", + "value": "Hierarchical Grid, IgbHierarchicalGrid" + }, + { + "name": "{HierarchicalGridName}", + "value": "IgbHierarchicalGrid" + }, + { + "name": "{HierarchicalGridModule}", + "value": "IgbHierarchicalGridModule" + }, + { + "name": "{HierarchicalGridSelector}", + "value": "IgbHierarchicalGrid" + }, + { + "name": "{HierarchicalGridSample}", + "value": "grids/hierarchical-grid" + }, + { + "name": "{HierarchicalGridApiMembers}", + "value": "\"Infragistics.Controls.HierarchicalGrid\", \"Infragistics.Controls.HierarchicalGridRow\", \"Infragistics.Controls.GridCell\", \"Infragistics.Controls.Column\"" + }, + { + "name": "{RowIslandSelector}", + "value": "IgbRowIsland" + }, + { + "name": "{BannerSelector}", + "value": "IgbBanner" + }, + { + "name": "{CanonicalLinkToGridMain}", + "value": "grids/data-grid", + "note": "data-grid is really grid overview topic" + }, + { + "name": "{CanonicalLinkToGridCellEditing}", + "value": "grids/grid/cell-editing" + }, + { + "name": "{CanonicalLinkToGridCellSelection}", + "value": "grids/grid/cell-selection" + }, + { + "name": "{CanonicalLinkToGridColumnMoving}", + "value": "grids/grid/column-moving" + }, + { + "name": "{CanonicalLinkToGridColumnPinning}", + "value": "grids/grid/column-pinning" + }, + { + "name": "{CanonicalLinkToGridColumnResizing}", + "value": "grids/grid/column-resizing" + }, + { + "name": "{CanonicalLinkToGridColumnTypes}", + "value": "grids/grid/column-types" + }, + { + "name": "{CanonicalLinkToGridFiltering}", + "value": "grids/grid/filtering" + }, + { + "name": "{CanonicalLinkToGridGroupBy}", + "value": "grids/grid/groupby" + }, + { + "name": "{CanonicalLinkToGridPaging}", + "value": "grids/grid/paging" + }, + { + "name": "{CanonicalLinkToGridRowPinning}", + "value": "grids/grid/row-pinning" + }, + { + "name": "{CanonicalLinkToGridSorting}", + "value": "grids/grid/sorting" + }, + { + "name": "{CanonicalLinkToGridSummaries}", + "value": "grids/grid/summaries" + }, + { + "name": "{CanonicalLinkToGridAdvancedFiltering}", + "value": "grids/grid/advanced-filtering" + }, + { + "name": "{CanonicalLinkToGridClipboardInteractions}", + "value": "grids/grid/clipboard-interactions" + }, + { + "name": "{CanonicalLinkToGridCollapsibleColumnGroups}", + "value": "grids/grid/collapsible-column-groups" + }, + { + "name": "{CanonicalLinkToGridColumnHiding}", + "value": "grids/grid/column-hiding" + }, + { + "name": "{CanonicalLinkToGridColumnSelection}", + "value": "grids/grid/column-selection" + }, + { + "name": "{CanonicalLinkToGridConditionalCellStyling}", + "value": "grids/grid/conditional-cell-styling" + }, + { + "name": "{CanonicalLinkToGridEditing}", + "value": "grids/grid/editing" + }, + { + "name": "{CanonicalLinkToGridExportExcel}", + "value": "grids/grid/export-excel" + }, + { + "name": "{CanonicalLinkToGridMultiColumnHeaders}", + "value": "grids/grid/multi-column-headers" + }, + { + "name": "{CanonicalLinkToGridRowActions}", + "value": "grids/grid/row-actions" + }, + { + "name": "{CanonicalLinkToGridRowAdding}", + "value": "grids/grid/row-adding" + }, + { + "name": "{CanonicalLinkToGridRowDrag}", + "value": "grids/grid/row-drag" + }, + { + "name": "{CanonicalLinkToGridRowEditing}", + "value": "grids/grid/row-editing" + }, + { + "name": "{CanonicalLinkToGridRowSelection}", + "value": "grids/grid/row-selection" + }, + { + "name": "{CanonicalLinkToGridSelection}", + "value": "grids/grid/selection" + }, + { + "name": "{CanonicalLinkToGridSize}", + "value": "grids/grid/size" + }, + { + "name": "{CanonicalLinkToGridStatePersistence}", + "value": "grids/grid/state-persistence" + }, + { + "name": "{CanonicalLinkToGridToolbar}", + "value": "grids/grid/toolbar" + }, + { + "name": "{CanonicalLinkToGridVirtualization}", + "value": "grids/grid/virtualization" + }, + { + "name": "{PackageDataGrids}", + "value": "Infragistics.WinUI.DataGrid" + } + ], + "samplesBrowsers": { + "development": "http://localhost:5000", + "staging": "https://staging.infragistics.com/uno-wasm-demos", + "production": "https://www.infragistics.com/uno-wasm-demos" + }, + "apiDocRoot": "{environment:dvApiBaseUrl}/winui/docs/api/api/", + "Main": "https://www.infragistics.com/products/ultimate-ui-winui/winui/components/{CONTROL_NAME}.html", + "Overview": "https://www.infragistics.com/products/ultimate-ui-winui/winui/components/{CONTROL_NAME}.html" + }, + "Uno": { + "isFirstRelease": false, + "samplesGithubFile": "Sample.xaml", + "samplesGithubTree": "github/IgniteUI/winui-samples/tree/main/samples/", + "samplesDisplayStackblitz": false, + "codeSandboxButtonInject": false, + "replacements": [ + { + "name": "{ProductLinkAngular}", + "value": "https://www.infragistics.com/products/ignite-ui-angular/angular/components/general-getting-started" + }, + { + "name": "{ProductLinkBlazor}", + "value": "https://www.infragistics.com/products/ignite-ui-blazor/blazor/components/general-getting-started" + }, + { + "name": "{ProductLinkReact}", + "value": "https://www.infragistics.com/products/ignite-ui-react/react/components/general-getting-started" + }, + { + "name": "{ProductLinkWC}", + "value": "https://www.infragistics.com/products/ignite-ui-web-components/web-components/components/general-getting-started" + }, + { + "name": "{ApiClass}", + "value": "{environment:wcApiUrl}/classes" + }, + { + "name": "{ApiIndex}", + "value": "{environment:wcApiUrl}/index.html" + }, + { + "name": "{ProductSpinal}", + "value": "ultimate-ui-uno" + }, + { + "name": "{ProductName}", + "value": "Infragistics Ultimate UI for Uno Platform" + }, + { + "name": "{ProductNameShort}", + "value": "Ultimate UI" + }, + { + "name": "{PlatformLower}", + "value": "uno" + }, + { + "name": "{PlatformLowerNoHyphen}", + "value": "uno" + }, + { + "name": "{Platform}", + "value": "Uno" + }, + { + "name": "{IgPrefix}", + "value": "Xam" + }, + { + "name": "{PackageComponents}", + "value": "igniteui-webcomponents" + }, + { + "name": "{PackageCommon}", + "value": "Infragistics.Core" + }, + { + "name": "{PackageCore}", + "value": "Infragistics.Core" + }, + { + "name": "{PackageCharts}", + "value": "Infragistics.Uno.Charts" + }, + { + "name": "{PackageDataSources}", + "value": "IgniteUI.Blazor" + }, + { + "name": "{PackageDashboards}", + "value": "Infragistics.Uno.DataVisualization" + }, + { + "name": "{PackageExcel}", + "value": "Infragistics.Documents.Excel" + }, + { + "name": "{PackageGauges}", + "value": "Infragistics.Uno.Gauges" + }, + { + "name": "{PackageGrids}", + "value": "Infragistics.Uno.DataGrid" + }, + { + "name": "{PackageInputs}", + "value": "Infragistics.Uno.Inputs" + }, + { + "name": "{PackageLayouts}", + "value": "Infragistics.Uno.Layouts" + }, + { + "name": "{PackageMaps}", + "value": "Infragistics.Uno.Maps" + }, + { + "name": "{PackageSpreadsheet}", + "value": "Infragistics.Uno.Spreadsheet" + }, + { + "name": "{PackageDockManager}", + "value": "IgniteUI.Blazor" + }, + { + "name": "{PackageWebsite}", + "value": "https://www.npmjs.com/package/" + }, + { + "name": "{PackageVerChangedImports}", + "value": "1.0.6" + }, + { + "name": "{PackageVerChanges-21-1}", + "value": "21.1.52 (April 2021)" + }, + { + "name": "{PackageVerChanges-21-2}", + "value": "21.2.22 (November 2021)" + }, + { + "name": "{PackageVerChanges-21-2.1}", + "value": "21.2.52 (December 2021)" + }, + { + "name": "{PackageVerChanges-22-1}", + "value": "22.1.41 (June 2022)" + }, + { + "name": "{PackageVerChanges-22-2}", + "value": "22.1.76 (November 2022)" + }, + { + "name": "{PackageVerChanges-22-2.50}", + "value": "22.2.50 (December 2022)" + }, + { + "name": "{PackageVerChanges-22-2.65}", + "value": "22.2.65 (April 2023)" + }, + { + "name": "{PackageVerChanges-23-1}", + "value": "23.1.37 (June 2023)" + }, + { + "name": "{PackageVerChanges-23-2}", + "value": "23.2.97 (December 2023)" + }, + { + "name": "{PackageVerChanges-23-2-JAN}", + "value": "23.2.110 (January 2024)" + }, + { + "name": "{PackageVerChanges-23-2-MAR}", + "value": "23.2.189 (March 2024)" + }, + { + "name": "{PackageVerChanges-23-2-APR}", + "value": "23.2.191 (April 2024)" + }, + { + "name": "{PackageVerChanges-23-2-APR2}", + "value": "23.2.204 (March 2024)" + }, + { + "name": "{PackageVerChanges-24-1-JUN}", + "value": "23.2.257 (June 2024)" + }, + { + "name": "{PackageVerChanges-24-1-SEP}", + "value": "24.1.46 (September 2024)" + }, + { + "name": "{PackageVerChanges-24-2-NOV}", + "value": "24.2.19 (November 2024)" + }, + { + "name": "{PackageVerChanges-24-2-DEC}", + "value": "24.2.52 (December 2024)" + }, + { + "name": "{PackageVerChanges-24-2-JAN}", + "value": "24.2.71 (January 2025)" + }, + { + "name": "{PackageVerChanges-24-2-FEB}", + "value": "24.2.85 (February 2025)" + }, + { + "name": "{PackageVerChanges-24-2-MAR}", + "value": "24.2.92 (March 2025)" + }, + { + "name": "{PackageVerChanges-24-2-APR}", + "value": "24.2.111 (April 2025)" + }, + { + "name": "{PackageVerChanges-24-2-MAY}", + "value": "24.2.122 (May 2025)" + }, + { + "name": "{PackageVerChanges-25-1-JUNE}", + "value": "25.1.19 (June 2025)" + }, + { + "name": "{PackageVerChanges-25-1-JULY}", + "value": "25.1.46 (July 2025)" + }, + { + "name": "{PackageVerChanges-25-1-AUG}", + "value": "25.1.63 (August 2025)" + }, + { + "name": "{PackageVerChanges-25-1-SEP}", + "value": "25.1.82 (September 2025)" + }, + { + "name": "{PackageVerChanges-25-2-NOV}", + "value": "25.2.32 (November 2025)" + }, + { + "name": "{PackageVerChanges-25-2-DEC}", + "value": "25.2.38 (December 2025)" + }, + { + "name": "{PackageVerChanges-25-2-MAR}", + "value": "25.2.77 (March 2026)" + }, + { + "name": "{PackageVerChanges-25-2-MAR2}", + "value": "25.2.83 (March 2026)" + }, + { + "name": "{PackageVerChanges-25-2-MAY}", + "value": "25.2.102 (May 2026)" + }, + { + "name": "{PackageVerLatest}", + "value": "26.1.51 (June 2026)" + }, + { + "name": "{PackageVerLatestShort}", + "value": "26.1.51" + }, + { + "name": "{RepoSamples}", + "value": "https://github.com/IgniteUI/winui-samples/tree/main/samples" + }, + { + "name": "{RepoBrowser}", + "value": "https://github.com/IgniteUI/igniteui-blazor-examples/tree/master/browser" + }, + { + "name": "{GithubLink}", + "value": "https://github.com/IgniteUI/winui-samples" + }, + { + "name": "{GithubLinkLite}", + "value": "https://github.com/IgniteUI/IgniteUI.Grid.OSS" + }, + { + "name": "{ForumsLink}", + "value": "https://www.infragistics.com/community/forums/" + }, + { + "note": "in shared topics, these variables are mapped from {Component*} and auto-replaced with actual values, e.g." + }, + { + "note": "{ComponentTitle} -> {TreeGridTitle} -> 'Tree Grid' in /tree-grid/*.md " + }, + { + "note": "{ComponentName} -> {TreeGridName} -> 'IgbTreeGrid' in /tree-grid/*.md " + }, + { + "note": "{ComponentTitle} -> {PivotGridTitle} -> 'Pivot Grid' in /pivot-grid/*.md " + }, + { + "note": "{ComponentName} -> {PivotGridName} -> 'IgbPivotGrid' in /pivot-grid/*.md " + }, + { + "name": "{GridTitle}", + "value": "Grid" + }, + { + "name": "{GridKeywords}", + "value": "Grid, IgbGrid" + }, + { + "name": "{GridName}", + "value": "IgbGrid" + }, + { + "name": "{GridModule}", + "value": "IgbGridModule" + }, + { + "name": "{GridSelector}", + "value": "IgbGrid" + }, + { + "name": "{GridSample}", + "value": "grids/grid" + }, + { + "name": "{GridApiMembers}", + "value": "\"Infragistics.Controls.Grid\", \"Infragistics.Controls.GridCell\", \"Infragistics.Controls.GridRow\", \"Infragistics.Controls.Column\"" + }, + { + "name": "{TreeGridTitle}", + "value": "Tree Grid" + }, + { + "name": "{TreeGridKeywords}", + "value": "Tree Grid, IgbTreeGrid" + }, + { + "name": "{TreeGridName}", + "value": "IgbTreeGrid" + }, + { + "name": "{TreeGridModule}", + "value": "IgbTreeGridModule" + }, + { + "name": "{TreeGridSelector}", + "value": "IgbTreeGrid" + }, + { + "name": "{TreeGridSample}", + "value": "grids/tree-grid" + }, + { + "name": "{TreeGridApiMembers}", + "value": "\"Infragistics.Controls.TreeGrid\", \"Infragistics.Controls.GridCell\", \"Infragistics.Controls.TreeGridRow\", \"Infragistics.Controls.Column\"" + }, + { + "name": "{GridLiteTitle}", + "value": "Grid Lite" + }, + { + "name": "{GridLiteKeywords}", + "value": "Grid Lite, IgbGridLite" + }, + { + "name": "{GridLiteName}", + "value": "IgbGridLite" + }, + { + "name": "{GridLiteSelector}", + "value": "IgbGridLite" + }, + { + "name": "{GridLitePackage}", + "value": "igc-grid-lite" + }, + { + "name": "{GridLiteSample}", + "value": "grids/grid-lite" + }, + { + "name": "{GridLiteApiMembers}", + "value": "\"Infragistics.Controls.GridLite\"" + }, + { + "name": "{PivotGridTitle}", + "value": "Pivot Grid" + }, + { + "name": "{PivotGridKeywords}", + "value": "Pivot Grid, IgbPivotGrid" + }, + { + "name": "{PivotGridName}", + "value": "IgbPivotGrid" + }, + { + "name": "{PivotGridModule}", + "value": "IgbPivotGridModule" + }, + { + "name": "{PivotGridSelector}", + "value": "IgbPivotGrid" + }, + { + "name": "{PivotGridSample}", + "value": "grids/pivot-grid" + }, + { + "name": "{PivotGridApiMembers}", + "value": "\"Infragistics.Controls.PivotGrid\"" + }, + { + "name": "{HierarchicalGridTitle}", + "value": "Hierarchical Grid" + }, + { + "name": "{HierarchicalGridKeywords}", + "value": "Hierarchical Grid, IgbHierarchicalGrid" + }, + { + "name": "{HierarchicalGridName}", + "value": "IgbHierarchicalGrid" + }, + { + "name": "{HierarchicalGridModule}", + "value": "IgbHierarchicalGridModule" + }, + { + "name": "{HierarchicalGridSelector}", + "value": "IgbHierarchicalGrid" + }, + { + "name": "{HierarchicalGridSample}", + "value": "grids/hierarchical-grid" + }, + { + "name": "{HierarchicalGridApiMembers}", + "value": "\"Infragistics.Controls.HierarchicalGrid\", \"Infragistics.Controls.HierarchicalGridRow\", \"Infragistics.Controls.GridCell\", \"Infragistics.Controls.Column\"" + }, + { + "name": "{RowIslandSelector}", + "value": "IgbRowIsland" + }, + { + "name": "{BannerSelector}", + "value": "IgbBanner" + }, + { + "name": "{CanonicalLinkToGridMain}", + "value": "grids/data-grid", + "note": "data-grid is really grid overview topic" + }, + { + "name": "{CanonicalLinkToGridCellEditing}", + "value": "grids/grid/cell-editing" + }, + { + "name": "{CanonicalLinkToGridCellSelection}", + "value": "grids/grid/cell-selection" + }, + { + "name": "{CanonicalLinkToGridColumnMoving}", + "value": "grids/grid/column-moving" + }, + { + "name": "{CanonicalLinkToGridColumnPinning}", + "value": "grids/grid/column-pinning" + }, + { + "name": "{CanonicalLinkToGridColumnResizing}", + "value": "grids/grid/column-resizing" + }, + { + "name": "{CanonicalLinkToGridColumnTypes}", + "value": "grids/grid/column-types" + }, + { + "name": "{CanonicalLinkToGridFiltering}", + "value": "grids/grid/filtering" + }, + { + "name": "{CanonicalLinkToGridGroupBy}", + "value": "grids/grid/groupby" + }, + { + "name": "{CanonicalLinkToGridPaging}", + "value": "grids/grid/paging" + }, + { + "name": "{CanonicalLinkToGridRowPinning}", + "value": "grids/grid/row-pinning" + }, + { + "name": "{CanonicalLinkToGridSorting}", + "value": "grids/grid/sorting" + }, + { + "name": "{CanonicalLinkToGridSummaries}", + "value": "grids/grid/summaries" + }, + { + "name": "{CanonicalLinkToGridAdvancedFiltering}", + "value": "grids/grid/advanced-filtering" + }, + { + "name": "{CanonicalLinkToGridClipboardInteractions}", + "value": "grids/grid/clipboard-interactions" + }, + { + "name": "{CanonicalLinkToGridCollapsibleColumnGroups}", + "value": "grids/grid/collapsible-column-groups" + }, + { + "name": "{CanonicalLinkToGridColumnHiding}", + "value": "grids/grid/column-hiding" + }, + { + "name": "{CanonicalLinkToGridColumnSelection}", + "value": "grids/grid/column-selection" + }, + { + "name": "{CanonicalLinkToGridConditionalCellStyling}", + "value": "grids/grid/conditional-cell-styling" + }, + { + "name": "{CanonicalLinkToGridEditing}", + "value": "grids/grid/editing" + }, + { + "name": "{CanonicalLinkToGridExportExcel}", + "value": "grids/grid/export-excel" + }, + { + "name": "{CanonicalLinkToGridMultiColumnHeaders}", + "value": "grids/grid/multi-column-headers" + }, + { + "name": "{CanonicalLinkToGridRowActions}", + "value": "grids/grid/row-actions" + }, + { + "name": "{CanonicalLinkToGridRowAdding}", + "value": "grids/grid/row-adding" + }, + { + "name": "{CanonicalLinkToGridRowDrag}", + "value": "grids/grid/row-drag" + }, + { + "name": "{CanonicalLinkToGridRowEditing}", + "value": "grids/grid/row-editing" + }, + { + "name": "{CanonicalLinkToGridRowSelection}", + "value": "grids/grid/row-selection" + }, + { + "name": "{CanonicalLinkToGridSelection}", + "value": "grids/grid/selection" + }, + { + "name": "{CanonicalLinkToGridSize}", + "value": "grids/grid/size" + }, + { + "name": "{CanonicalLinkToGridStatePersistence}", + "value": "grids/grid/state-persistence" + }, + { + "name": "{CanonicalLinkToGridToolbar}", + "value": "grids/grid/toolbar" + }, + { + "name": "{CanonicalLinkToGridVirtualization}", + "value": "grids/grid/virtualization" + }, + { + "name": "{PackageDataGrids}", + "value": "Infragistics.Uno.DataGrid" + } + ], + "samplesBrowsers": { + "development": "http://localhost:5000", + "staging": "https://staging.infragistics.com/uno-wasm-demos", + "production": "https://www.infragistics.com/uno-wasm-demos" + }, + "apiDocRoot": "{environment:dvApiBaseUrl}/uno/docs/api/api/", + "Main": "https://www.infragistics.com/products/ultimate-ui-uno/uno/components/{CONTROL_NAME}.html", + "Overview": "https://www.infragistics.com/products/ultimate-ui-uno/uno/components/{CONTROL_NAME}.html" } } diff --git a/docs/xplat/package.json b/docs/xplat/package.json index 4bac430430..f0684abd0c 100644 --- a/docs/xplat/package.json +++ b/docs/xplat/package.json @@ -13,6 +13,8 @@ "generate:react": "node scripts/generate.mjs --platform=React", "generate:webcomponents": "node scripts/generate.mjs --platform=WebComponents", "generate:blazor": "node scripts/generate.mjs --platform=Blazor", + "generate:winui": "node scripts/generate.mjs --platform=WinUI", + "generate:uno": "node scripts/generate.mjs --platform=Uno", "generate:angular:jp": "node scripts/generate.mjs --platform=Angular --lang=jp", "generate:react:jp": "node scripts/generate.mjs --platform=React --lang=jp", "generate:webcomponents:jp": "node scripts/generate.mjs --platform=WebComponents --lang=jp", @@ -21,6 +23,8 @@ "dev:react": "npm run generate:react && cross-env PLATFORM=React astro dev --port 4332", "dev:webcomponents": "npm run generate:webcomponents && cross-env PLATFORM=WebComponents astro dev --port 4333", "dev:blazor": "npm run generate:blazor && cross-env PLATFORM=Blazor astro dev --port 4334", + "dev:winui": "npm run generate:winui && cross-env PLATFORM=WinUI astro dev --port 4335", + "dev:uno": "npm run generate:uno && cross-env PLATFORM=Uno astro dev --port 4336", "dev:angular:jp": "npm run generate:angular:jp && cross-env PLATFORM=Angular astro dev --port 4331", "dev:react:jp": "npm run generate:react:jp && cross-env PLATFORM=React astro dev --port 4332", "dev:webcomponents:jp": "npm run generate:webcomponents:jp && cross-env PLATFORM=WebComponents astro dev --port 4333", @@ -30,6 +34,8 @@ "build:react": "npm run generate:react && cross-env PLATFORM=React NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/react", "build:webcomponents": "npm run generate:webcomponents && cross-env PLATFORM=WebComponents NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/wc", "build:blazor": "npm run generate:blazor && cross-env PLATFORM=Blazor NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/blazor", + "build:winui": "npm run generate:winui && cross-env PLATFORM=WinUI NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/winui", + "build:uno": "npm run generate:uno && cross-env PLATFORM=Uno NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/uno", "build:angular:jp": "npm run generate:angular:jp && cross-env PLATFORM=Angular NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/angular-jp", "build:react:jp": "npm run generate:react:jp && cross-env PLATFORM=React NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/react-jp", "build:webcomponents:jp": "npm run generate:webcomponents:jp && cross-env PLATFORM=WebComponents NODE_OPTIONS=--max-old-space-size=4096 astro build --outDir=../../dist/wc-jp", @@ -39,14 +45,19 @@ "build-staging:react": "cross-env PLATFORM=React DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:react", "build-staging:webcomponents": "cross-env PLATFORM=WebComponents DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:webcomponents", "build-staging:blazor": "cross-env PLATFORM=Blazor DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:blazor", + "build-staging:winui": "cross-env PLATFORM=WinUI DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:winui", + "build-staging:uno": "cross-env PLATFORM=Uno DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:uno", "build-staging:angular:jp": "cross-env PLATFORM=Angular DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:angular:jp", "build-staging:react:jp": "cross-env PLATFORM=React DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:react:jp", "build-staging:webcomponents:jp": "cross-env PLATFORM=WebComponents DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:webcomponents:jp", "build-staging:blazor:jp": "cross-env PLATFORM=Blazor DOCS_ENV=staging NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 npm run build:blazor:jp", + "build-production:angular": "cross-env PLATFORM=Angular NODE_ENV=production npm run build:angular", "build-production:react": "cross-env PLATFORM=React NODE_ENV=production npm run build:react", "build-production:webcomponents": "cross-env PLATFORM=WebComponents NODE_ENV=production npm run build:webcomponents", "build-production:blazor": "cross-env PLATFORM=Blazor NODE_ENV=production npm run build:blazor", + "build-production:winui": "cross-env PLATFORM=WinUI NODE_ENV=production npm run build:winui", + "build-production:uno": "cross-env PLATFORM=Uno NODE_ENV=production npm run build:uno", "build-production:angular:jp": "cross-env PLATFORM=Angular NODE_ENV=production npm run build:angular:jp", "build-production:react:jp": "cross-env PLATFORM=React NODE_ENV=production npm run build:react:jp", "build-production:webcomponents:jp": "cross-env PLATFORM=WebComponents NODE_ENV=production npm run build:webcomponents:jp", @@ -56,6 +67,8 @@ "preview:react": "cross-env PLATFORM=React astro preview --outDir=../../dist/react --port 4332", "preview:webcomponents": "cross-env PLATFORM=WebComponents astro preview --outDir=../../dist/wc --port 4333", "preview:blazor": "cross-env PLATFORM=Blazor astro preview --outDir=../../dist/blazor --port 4334", + "preview:winui": "cross-env PLATFORM=WinUI astro preview --outDir=../../dist/winui --port 4335", + "preview:uno": "cross-env PLATFORM=Uno astro preview --outDir=../../dist/uno --port 4336", "preview:angular:jp": "cross-env PLATFORM=Angular LANG_CODE=jp astro preview --outDir=../../dist/angular-jp --port 4331", "preview:react:jp": "cross-env PLATFORM=React LANG_CODE=jp astro preview --outDir=../../dist/react-jp --port 4332", "preview:webcomponents:jp": "cross-env PLATFORM=WebComponents LANG_CODE=jp astro preview --outDir=../../dist/wc-jp --port 4333", diff --git a/docs/xplat/scripts/add-xaml-snippets.mjs b/docs/xplat/scripts/add-xaml-snippets.mjs new file mode 100644 index 0000000000..4b80c80c60 --- /dev/null +++ b/docs/xplat/scripts/add-xaml-snippets.mjs @@ -0,0 +1,631 @@ +#!/usr/bin/env node +/** + * add-xaml-snippets.mjs + * + * Adds XAML snippets to topics, alongside the existing per-platform snippets. + * + * The snippets are *sculpted*, not dumped: the doc body carries minimal, + * feature-focused illustrations (Blazor's column-sorting snippet is 3 lines), + * while the full sample source is what the sample widget serves in its code + * tabs. So for each existing snippet group this reads the sibling web snippet, + * maps its attribute names to their canonical XAML form, and emits only those + * attributes — taking values from the real winui-samples markup wherever + * possible so they are accurate rather than invented. + * + * Name resolution is apiMap-authoritative with a fuzzy fallback + * (`dataSource` → `ItemsSource` from the map; `headerClickAction` → + * `HeaderClickAction` by convention). See WINUI-UNO-PLAN.md §6.4. + * + * **Lockstep is enforced, not assumed.** A topic is edited only when its en and + * jp copies agree on the *sequence* of snippet groups — same count, same + * reference platform per group. 47 of 292 topics are already structurally + * divergent between locales, and inserting into each independently would deepen + * that. Divergent topics are skipped and reported for manual handling, so this + * pass never widens the gap between locales. + * + * Usage: + * node scripts/add-xaml-snippets.mjs --dry-run + * node scripts/add-xaml-snippets.mjs --only grids/data-grid + * node scripts/add-xaml-snippets.mjs + */ + +import { readFileSync, writeFileSync, readdirSync, existsSync, statSync } from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { extractXamlSnippet, formatXaml, readXmlnsMap, findPrimaryElement } from './lib/extract-xaml-snippet.mjs'; +import { loadApiMap, resolveApiMapRoot, resolveMemberName, resolveTypeName, fuzzyToPascal } from './lib/api-map-names.mjs'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const ROOT = path.join(__dirname, '..'); +const REPO_ROOT = path.resolve(ROOT, '..', '..'); + +const args = process.argv.slice(2); +const DRY = args.includes('--dry-run'); +const VERBOSE = args.includes('--verbose'); +const ONLY = (() => { + const i = args.indexOf('--only'); + return i >= 0 ? args[i + 1] : null; +})(); +const LANGS = ['en', 'jp']; + +const SAMPLES = process.env.WINUI_SAMPLES_ROOT ?? path.resolve(REPO_ROOT, '..', 'winui-samples', 'samples'); + +/** Platform plumbing, never part of a XAML snippet. */ +const DROP_ATTRS = new Set([ + 'ref', 'id', 'class', 'style', 'key', 'slot', + // The WinUI samples size via the layout container, not on the control. + 'height', 'width', +]); + +/** Preference order for the snippet we mirror: closest to XAML first. */ +const REFERENCE_ORDER = ['Blazor', 'React', 'WebComponents', 'Angular']; + +const apiMapRoot = resolveApiMapRoot(null, REPO_ROOT); +if (!apiMapRoot) { + console.error('[xaml] apiMap not found'); + process.exit(1); +} +const apiMap = loadApiMap(apiMapRoot); + +/** + * Every property name used anywhere in the WinUI sample corpus. + * + * Second line of defence: when a web attribute has no counterpart on *this* + * sample's element, the mapped name is still trustworthy if it appears in real + * WinUI code elsewhere. A name that appears nowhere in the corpus is most + * likely web-only and is dropped rather than published. + */ +const corpusNames = (() => { + const names = new Set(); + const walk = d => { + for (const e of readdirSync(d, { withFileTypes: true })) { + const p = path.join(d, e.name); + if (e.isDirectory()) walk(p); + else if (e.name.endsWith('.xaml')) { + const t = readFileSync(p, 'utf8'); + for (const m of t.matchAll(/([\w]+)\s*=\s*"/g)) names.add(m[1].toLowerCase()); + for (const m of t.matchAll(/<\w+:\w+\.(\w+)>/g)) names.add(m[1].toLowerCase()); + } else if (e.name.endsWith('.cs')) { + const t = readFileSync(p, 'utf8'); + for (const m of t.matchAll(/\.(\w+)\s*[=(]/g)) names.add(m[1].toLowerCase()); + } + } + }; + if (existsSync(SAMPLES) && statSync(SAMPLES).isDirectory()) walk(SAMPLES); + return names; +})(); + +// --------------------------------------------------------------------------- +// Parsing the existing snippet groups +// --------------------------------------------------------------------------- + +/** + * A "group" is a run of PlatformBlocks separated only by blank lines. The XAML + * block is appended at the end of the run, where a reader expects the next + * platform's variant. + */ +function findSnippetGroups(text) { + const blocks = []; + const re = /\s*([\s\S]*?)\s*<\/PlatformBlock>/g; + let m; + while ((m = re.exec(text))) { + blocks.push({ platforms: m[1], body: m[2], start: m.index, end: m.index + m[0].length }); + } + const groups = []; + for (const b of blocks) { + const last = groups[groups.length - 1]; + if (last && text.slice(last.end, b.start).trim() === '') last.blocks.push(b), (last.end = b.end); + else groups.push({ blocks: [b], end: b.end }); + } + // Only groups that actually contain a fenced code block are snippet groups. + return groups.filter(g => g.blocks.some(b => /```/.test(b.body))); +} + +/** + * Pulls the element name and attributes out of a web snippet. + * + * `elementCount` is how many product elements the snippet contains: more than + * one means it demonstrates nested structure, which must not be flattened away. + */ +function parseWebElement(code) { + const el = code.match(/<((?:Ig[rbcx]|igc-)[\w-]*)([\s\S]*?)\/?>/); + if (!el) return null; + const attrs = []; + for (const a of el[2].matchAll(/([@a-zA-Z][\w-]*)\s*=\s*(?:"([^"]*)"|\{([^}]*)\}|'([^']*)')/g)) { + attrs.push({ name: a[1], value: a[2] ?? a[3] ?? a[4] ?? '' }); + } + const opens = [...code.matchAll(/<((?:Ig[rbcx]|igc-)[\w-]*)/g)].map(m => m[1]); + const distinct = new Set(opens); + return { type: el[1], attrs, elementCount: distinct.size, openCount: opens.length }; +} + +/** + * The sample's real element subtree — children, property-element wrappers and all. + * Used whenever the reference snippet shows nested structure. + * + * Children are never touched: the nested shape is the thing being documented. + * The *root* element's attributes are pruned to those the reference snippet + * actually illustrates, so the snippet stays focused instead of reproducing + * every property the runnable sample happens to set. An attribute is kept when + * it is in the sculpted set, when it is `Name`/`ItemsSource` (the identity and + * data the children depend on), or when a child binds to it by `ElementName`. + */ +function buildSubtreeSnippet(sampleDir, preferredLocalName, keepNames = null) { + const file = path.join(sampleDir, 'Sample.xaml'); + if (!existsSync(file)) return null; + const xaml = readFileSync(file, 'utf8'); + const r = + extractXamlSnippet(xaml, { localName: `Xam${preferredLocalName}` }) || + extractXamlSnippet(xaml, { localName: preferredLocalName }); + if (!r) return null; + + let snippet = r.snippet; + if (keepNames && keepNames.size) { + const nl = snippet.indexOf('\n'); + // End of the root's open tag: the first `>` outside a quoted value. + // Must be the index *after* it, so a self-closing `/>` is consumed whole + // and its `>` is not left behind to duplicate the re-attached tail. + let openEnd = -1; + let inQuote = false; + for (let i = 0; i < snippet.length; i++) { + const c = snippet[i]; + if (c === '"') inQuote = !inQuote; + else if (c === '>' && !inQuote) { openEnd = i + 1; break; } + } + if (nl !== -1 && openEnd !== -1) { + const openTag = snippet.slice(0, openEnd); + const rest = snippet.slice(openEnd); + const lines = openTag.split('\n'); + const head = lines[0]; + const attrLines = lines.slice(1); + const referenced = new Set( + [...snippet.matchAll(/ElementName=(\w+)/g)].map(m => m[1].toLowerCase()), + ); + // `formatXaml` hangs the closing `>` off the last attribute line, so + // strip it while filtering and re-attach it to whatever ends up last. + const tail = openTag.trimEnd().endsWith('/>') ? ' />' : '>'; + const bare = attrLines + .map(l => l.replace(/\s*\/?>\s*$/, '')) + .filter(l => l.trim()); + const kept = bare.filter(l => { + const m = l.match(/^\s*([\w:.]+)\s*=/); + if (!m) return false; + const name = m[1].toLowerCase(); + if (keepNames.has(name)) return true; + if (name === 'itemssource') return true; + if (name === 'name') { + const v = l.match(/="([^"]*)"/); + return v ? referenced.has(v[1].toLowerCase()) : false; + } + return false; + }); + if (kept.length) { + kept[kept.length - 1] += tail; + snippet = [head, ...kept].join('\n') + rest; + } + } + } + return { snippet, emitted: [{ name: '(subtree)', via: 'sample-subtree' }], skipped: [] }; +} + +/** Normalises a web attribute value into XAML attribute syntax. */ +function normaliseValue(raw) { + let v = String(raw).trim(); + if (!v) return null; + // `HeaderClickAction.SortByMultipleColumns` → `SortByMultipleColumns` + const enumMatch = v.match(/^[A-Za-z][\w]*\.([A-Za-z][\w]*)$/); + if (enumMatch) return enumMatch[1]; + // Expressions we cannot faithfully translate. + if (/^(this\.|\{|=>|\(|new\s)/.test(v) || v.includes('=>')) return null; + if (/^(true|false)$/i.test(v)) return v.toLowerCase(); + if (/^-?[\d.]+$/.test(v)) return v; + if (/^[A-Za-z][\w]*$/.test(v)) return v; // bare identifier, e.g. DataSource="DataSource" + if (/^#[0-9a-fA-F]{3,8}$/.test(v)) return v; + return v.includes('"') ? null : v; +} + +// --------------------------------------------------------------------------- +// Building the XAML snippet +// --------------------------------------------------------------------------- + +/** `IgbDataGridToolbar` → `DataGridToolbar`; `igc-data-grid` → `DataGrid`. */ +function webTypeToXamlLocalName(webType) { + const stem = webType.startsWith('igc-') + ? webType + .slice(4) + .replace(/[-_](\w)/g, (_m, c) => c.toUpperCase()) + .replace(/^(\w)/, (_m, c) => c.toUpperCase()) + : webType.replace(/^(Igr|Igc|Igb|Igx)/, ''); + return stem; +} + +/** + * Chooses which of a topic's samples to source a group from. + * + * A topic's groups can document different controls — chart-markers mixes + * CategoryChart and DataChart, chart-performance spans three chart types — so + * binding one sample per topic silently drops every group whose control that + * sample does not contain. Search the topic's own `` refs for one that + * actually has the element, preferring an exact `Xam` match. + */ +function pickSampleFor(sampleRefs, localName) { + const wanted = [`Xam${localName}`, localName]; + for (const want of wanted) { + for (const ref of sampleRefs) { + const file = path.join(SAMPLES, ref, 'Sample.xaml'); + if (!existsSync(file)) continue; + const xaml = readFileSync(file, 'utf8'); + if (new RegExp(`<\\w+:${want}(?=[\\s/>.])`).test(xaml)) return ref; + } + } + return null; +} + +/** + * Index of every XAML element in the corpus: local name → { prefix, sample ref }. + * + * A topic's own samples are the first choice, but a doc for an in-scope component + * must be processed whether or not *that* sample exists yet. This lets a group + * fall back to any sample in the corpus that uses the element, and — failing that + * — supplies the correct prefix so a snippet can still be emitted from the web + * reference alone. + */ +const corpusElements = (() => { + const byName = new Map(); + const walk = d => { + for (const e of readdirSync(d, { withFileTypes: true })) { + const p = path.join(d, e.name); + if (e.isDirectory()) { walk(p); continue; } + if (e.name !== 'Sample.xaml') continue; + const rel = path.relative(SAMPLES, path.dirname(p)); + const xaml = readFileSync(p, 'utf8'); + for (const m of xaml.matchAll(/<(\w+):(\w+)(?=[\s/>.])/g)) { + if (!byName.has(m[2])) byName.set(m[2], { prefix: m[1], ref: rel }); + } + } + }; + if (existsSync(SAMPLES) && statSync(SAMPLES).isDirectory()) walk(SAMPLES); + return byName; +})(); + +/** + * Resolves the XAML element for a web type, and where to source it from. + * + * Controls are `Xam`-prefixed in WinUI while helper types are not, so the corpus + * is consulted rather than a prefix rule guessed (`RadialGaugeRange` is bare even + * though the apiMap's legacy canonical says `XamRadialGaugeRange`). + */ +function resolveXamlElement(sampleRefs, webType) { + const localName = webTypeToXamlLocalName(webType); + const inTopic = pickSampleFor(sampleRefs, localName); + if (inTopic) { + const preferred = existsSync(path.join(SAMPLES, inTopic, 'Sample.xaml')) && + new RegExp(`<\\w+:Xam${localName}(?=[\\s/>.])`).test(readFileSync(path.join(SAMPLES, inTopic, 'Sample.xaml'), 'utf8')) + ? `Xam${localName}` : localName; + return { localName: preferred, ref: inTopic, via: 'topic-sample' }; + } + for (const cand of [`Xam${localName}`, localName]) { + const hit = corpusElements.get(cand); + if (hit) return { localName: cand, ref: hit.ref, prefix: hit.prefix, via: 'corpus-sample' }; + } + // Not in the corpus at all: emit from the web reference, prefixing only the + // control-shaped names (that is the WinUI convention for controls). + const isControl = /(?:Chart|Grid|Gauge|Graph|Map|Toolbar|Spreadsheet|Sparkline|Editor)$/.test(localName); + return { localName: isControl ? `Xam${localName}` : localName, ref: null, via: 'web-derived' }; +} + +/** + * Attribute values as they appear on a specific element of the real sample. + * + * `preferred` is the element the web snippet is about — a topic's snippet group + * may target the toolbar or a column rather than the grid itself, and putting + * those attributes on the grid element would be wrong. Tries `Xam` then + * ``, and returns null when the sample has no such element so the caller + * can skip rather than invent. + */ +function sampleAttributes(sampleDir, preferred = null) { + const file = path.join(sampleDir, 'Sample.xaml'); + if (!existsSync(file)) return null; + const xaml = readFileSync(file, 'utf8'); + const found = + (preferred && (findPrimaryElement(xaml, `Xam${preferred}`) || findPrimaryElement(xaml, preferred))) || + (preferred ? null : findPrimaryElement(xaml)); + if (!found) return null; + const tagEnd = xaml.indexOf('>', found.start); + const head = xaml.slice(found.start, tagEnd); + // Keyed case-insensitively, but the literal spelling is retained: the + // sample is compiled code, so its attribute names are the authoritative + // WinUI names and are what gets emitted. + const attrs = new Map(); + for (const a of head.matchAll(/([\w:.]+)\s*=\s*"([^"]*)"/g)) { + attrs.set(a[1].toLowerCase(), { name: a[1], value: a[2] }); + } + return { + prefix: found.prefix, + localName: found.localName, + attrs, + xmlns: readXmlnsMap(xaml).get(found.prefix) ?? null, + }; +} + +/** + * Sculpts a XAML snippet mirroring `web`'s attribute set. + * + * Direction matters: the apiMap is authored canonical → platform, so it is used + * here only to work out *which* sample attribute a web attribute corresponds to. + * The emitted name and value then come from the sample — compiled code, and + * therefore authoritative for WinUI — rather than from an inverted map lookup, + * which is ambiguous for renamed members (`dataSource` inverts to both + * `ItemsSource` and `DataSource`). + * + * Returns null when nothing trustworthy can be emitted. + */ +function buildSnippet(web, sample, target = null) { + const canonicalType = resolveTypeName(apiMap, web.type.replace(/^igc-/, '')).name; + if (!sample) { + // No sample element to source from: synthesise from the web reference. + const prefix = target?.prefix ?? corpusElements.get(target?.localName)?.prefix ?? 'ig'; + sample = { prefix, localName: target?.localName ?? webTypeToXamlLocalName(web.type), attrs: new Map(), xmlns: null }; + } + const emitted = []; + const skipped = []; + + for (const { name, value } of web.attrs) { + const bare = name.replace(/^@/, ''); + if (DROP_ATTRS.has(bare.toLowerCase())) continue; + if (/^on[A-Z]/.test(bare) || bare.startsWith('@bind')) continue; + + // Candidate canonical spellings, best first, used purely to locate the + // corresponding attribute on the sample element. + const resolved = resolveMemberName(apiMap, bare, canonicalType); + const candidates = [resolved.name, ...(resolved.ambiguous ?? []), fuzzyToPascal(bare)]; + + const hit = candidates.map(c => sample.attrs.get(c.toLowerCase())).find(Boolean); + if (hit) { + // Authoritative: name and value both straight from the sample. + emitted.push({ name: hit.name, value: hit.value, via: `sample/${resolved.via}` }); + continue; + } + + // `*Name` properties are a known trap: on the web they are *string* + // references to a named element (`xAxisName="xAxis"`, + // `targetGridName="grid"`), whereas XAML binds the object itself + // (`XAxis="{Binding ElementName=xAxis}"`, `TargetGrid="{Binding …}"`). + // The value shapes are therefore incompatible, so these may only be + // emitted when the sample element supplies the value — never through the + // corpus fallback below, which would carry the web string across. + if (/Name$/.test(bare) && bare !== 'Name') { + skipped.push(`${bare} (*Name property — needs an element binding, not on sample)`); + continue; + } + + // Not on this sample's element. Fall back in order of authority: + // corpus hit — the name is used in real WinUI code + // apiMap hit — the map is the authority on naming, and its coverage + // is far wider than the 279-sample corpus, so a direct + // hit stands on its own + // fuzzy only — PascalCase convention; emitted so an in-scope doc is + // still processed, but recorded as the weakest source + const v = normaliseValue(value); + if (v === null || v === undefined) { + skipped.push(`${bare} (no usable value)`); + continue; + } + const inCorpus = candidates.find(c => corpusNames.has(c.toLowerCase())); + if (inCorpus) { + emitted.push({ name: inCorpus, value: v, via: `corpus/${resolved.via}` }); + } else if (resolved.via.startsWith('apimap')) { + emitted.push({ name: resolved.name, value: v, via: `apimap-only/${resolved.via}` }); + } else { + emitted.push({ name: resolved.name, value: v, via: 'fuzzy-only' }); + } + } + + if (!emitted.length) return null; + + // Two web attributes can resolve to the same XAML property (the web surface + // sometimes splits what XAML exposes once). Emitting both would produce a + // duplicate attribute and invalid markup, so keep the first. + const seenAttr = new Set(); + const deduped = emitted.filter(a => { + const k = a.name.toLowerCase(); + if (seenAttr.has(k)) { + skipped.push(`${a.name} (duplicate of an already-mapped property)`); + return false; + } + seenAttr.add(k); + return true; + }); + emitted.length = 0; + emitted.push(...deduped); + + // Bare prefix, no xmlns declaration. The declaration is the one part of a + // XAML snippet that differs by dialect — `using:` on WinUI/UWP and Uno, + // `clr-namespace:…;assembly=…` on WPF — so emitting it would make the + // snippet wrong for a platform we intend to add later. Real pages declare + // prefixes once at the top of the file, which is what these assume. + const tag = `${sample.prefix}:${sample.localName}`; + const attrText = emitted.map(a => `${a.name}="${a.value}"`).join(' '); + return { + snippet: formatXaml(`<${tag} ${attrText} />`), + emitted, + skipped, + }; +} + +// --------------------------------------------------------------------------- +// Walking topics +// --------------------------------------------------------------------------- + +function topicFiles(lang) { + const base = path.join(ROOT, 'src', 'content', lang, 'components'); + const out = []; + const walk = d => { + for (const e of readdirSync(d, { withFileTypes: true })) { + const p = path.join(d, e.name); + if (e.isDirectory()) walk(p); + else if (e.name.endsWith('.mdx')) out.push(p); + } + }; + if (existsSync(base)) walk(base); + return out.filter(f => !ONLY || f.includes(ONLY)); +} + +const stats = { + topics: 0, + changed: 0, + groups: 0, + inserted: 0, + skippedGroups: 0, + skippedDivergent: 0, + skippedNoJp: 0, +}; +const detail = []; +const divergent = []; +const gaps = []; + +/** + * Plans the insertions for one locale's copy of a topic. + * Returns `{ inserts, signature }`; the signature is what the locales must agree + * on for the edit to be lockstep-safe. + */ +function planTopic(file, text, sampleRefs, sampleRef) { + const groups = findSnippetGroups(text); + const inserts = []; + const signature = []; + for (const g of groups) { + let web = null; + for (const pref of REFERENCE_ORDER) { + const b = g.blocks.find(x => x.platforms.includes(pref) && /```/.test(x.body)); + if (!b) continue; + const code = b.body.match(/```\w*\n([\s\S]*?)\n```/); + if (!code) continue; + const parsed = parseWebElement(code[1]); + if (parsed) { web = parsed; break; } + } + if (!web) { signature.push('-'); continue; } + + // Resolve the element and where to source it. An in-scope component's doc + // is processed even when its sample does not exist yet — the chain falls + // back topic-sample → corpus-sample → web-derived rather than skipping. + const target = resolveXamlElement(sampleRefs, web.type); + const sampleDirForGroup = target.ref ? path.join(SAMPLES, target.ref) : null; + const sample = sampleDirForGroup ? sampleAttributes(sampleDirForGroup, target.localName.replace(/^Xam/, '')) : null; + if (!sample && target.via !== 'web-derived') { + signature.push(`${web.type}:no-element`); + gaps.push({ file: path.relative(REPO_ROOT, file), web: web.type, reason: `element ${target.localName} not readable` }); + continue; + } + if (target.via !== 'topic-sample') { + gaps.push({ file: path.relative(REPO_ROOT, file), web: web.type, reason: `sourced ${target.via}` }); + } + + // When the reference snippet contains child elements, the section is + // about that nested structure (column definitions, gauge ranges, geo + // series). A flat attribute-only snippet would silently drop it and read + // as if the feature needed no markup, so take the sample's real subtree — + // which also carries the property-element wrappers XAML requires + // (`XamDataGrid.Columns`, `XamRadialGauge.Ranges`) and that the web + // platforms express as plain children. + const refHasChildren = (web.elementCount ?? 1) > 1; + const flat = buildSnippet(web, sample, target); + const built = refHasChildren && sampleDirForGroup + ? buildSubtreeSnippet( + sampleDirForGroup, + webTypeToXamlLocalName(web.type), + new Set((flat?.emitted ?? []).map(e => e.name.toLowerCase())), + ) ?? flat + : flat; + if (!built) { signature.push(`${web.type}:no-snippet`); continue; } + + signature.push(`${web.type}->${sample.localName}`); + inserts.push({ + at: g.end, + block: `\n\n\n\`\`\`xaml\n${built.snippet}\n\`\`\`\n`, + built, + web, + sample, + }); + } + return { inserts, signature: signature.join('|') }; +} + +function applyInserts(text, inserts) { + for (let i = inserts.length - 1; i >= 0; i--) { + text = text.slice(0, inserts[i].at) + inserts[i].block + text.slice(inserts[i].at); + } + if (!/^import PlatformBlock /m.test(text)) { + text = text.replace( + /^(---\n[\s\S]*?\n---\n\n)/, + `$1import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro';\n`, + ); + } + return text; +} + +// Drive from en, requiring a matching jp copy: both are edited together or neither is. +const EN = 'en'; +const OTHER = LANGS.filter(l => l !== EN); + +for (const enFile of topicFiles(EN)) { + const rel = path.relative(path.join(ROOT, 'src', 'content', EN, 'components'), enFile); + const texts = { [EN]: readFileSync(enFile, 'utf8') }; + const files = { [EN]: enFile }; + + let missing = false; + for (const lang of OTHER) { + const f = path.join(ROOT, 'src', 'content', lang, 'components', rel); + if (!existsSync(f)) { missing = true; break; } + files[lang] = f; + texts[lang] = readFileSync(f, 'utf8'); + } + if (missing) { stats.skippedNoJp++; continue; } + if (Object.values(texts).some(t => / m[1]))] + .filter(s => !s.includes('{') && existsSync(path.join(SAMPLES, s))); + if (!sampleRefs.length) continue; + const sampleRef = sampleRefs[0]; + + stats.topics++; + const plans = {}; + for (const lang of LANGS) plans[lang] = planTopic(files[lang], texts[lang], sampleRefs, sampleRef); + stats.groups += plans[EN].signature.split('|').filter(s => s !== '').length; + + // Lockstep gate: every locale must plan the same sequence of insertions. + const sigs = new Set(LANGS.map(l => plans[l].signature)); + if (sigs.size > 1) { + stats.skippedDivergent++; + divergent.push({ rel, sigs: LANGS.map(l => `${l}:${plans[l].signature || '(none)'}`) }); + continue; + } + if (!plans[EN].inserts.length) continue; + + for (const lang of LANGS) { + const out = applyInserts(texts[lang], plans[lang].inserts); + if (!DRY) writeFileSync(files[lang], out, 'utf8'); + } + stats.changed += LANGS.length; + stats.inserted += plans[EN].inserts.length * LANGS.length; + for (const ins of plans[EN].inserts) { + if (!VERBOSE) continue; + detail.push(` ${rel} ${ins.web.type} → ${ins.sample.localName}` + + ` [${ins.built.emitted.map(e => `${e.name}:${e.via}`).join(', ')}]` + + (ins.built.skipped.length ? ` skipped: ${ins.built.skipped.join(', ')}` : '')); + } +} + +if (VERBOSE) for (const d of detail.slice(0, 80)) console.log(d); +if (divergent.length) { + console.log(`\n skipped — en/jp plan differently (manual handling needed):`); + for (const d of divergent.slice(0, 15)) { + console.log(` ${d.rel}`); + for (const s of d.sigs) console.log(` ${s.slice(0, 150)}`); + } + if (divergent.length > 15) console.log(` … ${divergent.length - 15} more`); +} +console.log(`\n topics considered: ${stats.topics} snippet groups: ${stats.groups}`); +console.log(` skipped: ${stats.skippedDivergent} divergent between locales, ${stats.skippedNoJp} with no jp counterpart`); +console.log(` XAML blocks per locale: ${stats.inserted / LANGS.length} files written: ${stats.changed}`); +console.log(` lockstep: enforced by construction (identical plans required across ${LANGS.join('/')})`); +console.log(`\n[xaml] ${DRY ? 'would insert' : 'inserted'} ${stats.inserted} block(s) across ${LANGS.length} locale(s)\n`); diff --git a/docs/xplat/scripts/check-api-map-accuracy.mjs b/docs/xplat/scripts/check-api-map-accuracy.mjs new file mode 100644 index 0000000000..25fe9c63cc --- /dev/null +++ b/docs/xplat/scripts/check-api-map-accuracy.mjs @@ -0,0 +1,217 @@ +#!/usr/bin/env node +/** + * check-api-map-accuracy.mjs + * + * Regression test for apiMap-authoritative name resolution. + * + * Establishes that switching from fuzzy (PascalCase/prefix) resolution to + * "apiMap first, fuzzy fallback" moves *only* toward accuracy. It does this + * against an independent ground truth — the real WinUI sample sources in + * winui-samples, which are compiled code and therefore use names that actually + * exist on the controls. + * + * For every property name appearing in the web platforms' doc snippets: + * - compute the fuzzy candidate and the apiMap candidate + * - look up both in the WinUI sources + * - classify the outcome + * + * A run is a PASS when no case is classified `fuzzy-better`. + * + * Usage: + * node scripts/check-api-map-accuracy.mjs + * node scripts/check-api-map-accuracy.mjs --verbose + */ + +import { readFileSync, readdirSync, existsSync, statSync } from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { + loadApiMap, + resolveApiMapRoot, + resolveMemberName, + resolveTypeName, + fuzzyToPascal, +} from './lib/api-map-names.mjs'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const ROOT = path.join(__dirname, '..'); +const REPO_ROOT = path.resolve(ROOT, '..', '..'); +const VERBOSE = process.argv.includes('--verbose'); + +const WINUI_SAMPLES = + process.env.WINUI_SAMPLES_ROOT ?? path.resolve(REPO_ROOT, '..', 'winui-samples', 'samples'); + +// --------------------------------------------------------------------------- +// Ground truth: every attribute / property name used in the WinUI samples +// --------------------------------------------------------------------------- + +function collectWinUINames(dir) { + const attrs = new Set(); + /** XAML element local names present in the samples, e.g. XamDataGrid, TextColumn. */ + const elements = new Set(); + const walk = d => { + for (const entry of readdirSync(d, { withFileTypes: true })) { + const p = path.join(d, entry.name); + if (entry.isDirectory()) { + walk(p); + } else if (entry.name.endsWith('.xaml')) { + const t = readFileSync(p, 'utf8'); + for (const m of t.matchAll(/(\w+)\s*=\s*"/g)) attrs.add(m[1]); + for (const m of t.matchAll(/<\w+:(\w+)\.(\w+)>/g)) attrs.add(m[2]); + for (const m of t.matchAll(/<\/?\w+:(\w+)[\s/>.]/g)) elements.add(m[1]); + } else if (entry.name.endsWith('.cs')) { + const t = readFileSync(p, 'utf8'); + for (const m of t.matchAll(/\.(\w+)\s*=/g)) attrs.add(m[1]); + for (const m of t.matchAll(/\b(\w+)\s*=\s*(?:new|"|\d|true|false)/g)) attrs.add(m[1]); + for (const m of t.matchAll(/\bnew\s+(\w+)\s*[({]/g)) elements.add(m[1]); + } + } + }; + walk(dir); + return { attrs, elements }; +} + +/** + * Whether a doc type has a WinUI counterpart at all. + * + * The ground truth is name *presence*, not type-scoped membership, so a + * web-only component (Divider, Input, …) would otherwise be judged against + * incidental matches from unrelated samples. Restricting to types WinUI + * actually ships keeps the comparison meaningful. + */ +function hasWinUICounterpart(docType, elements) { + const stem = docType.replace(/^igc-/, '').replace(/^(Igr|Igc|Igb|Igx)/, ''); + const pascal = stem.replace(/[-_](\w)/g, (_m, c) => c.toUpperCase()).replace(/^(\w)/, (_m, c) => c.toUpperCase()); + return elements.has(pascal) || elements.has(`Xam${pascal}`); +} + +// --------------------------------------------------------------------------- +// Web doc snippets: platform property names, with their owning type +// --------------------------------------------------------------------------- + +/** Pulls `` / `` / `` usages. */ +function collectDocUsages(contentDir) { + const usages = []; + const walk = d => { + for (const entry of readdirSync(d, { withFileTypes: true })) { + const p = path.join(d, entry.name); + if (entry.isDirectory()) { + walk(p); + continue; + } + if (!entry.name.endsWith('.mdx')) continue; + const text = readFileSync(p, 'utf8'); + for (const block of text.matchAll(/```(?:tsx|html|razor)\n([\s\S]*?)\n```/g)) { + const code = block[1]; + // JSX / Razor elements: , + for (const el of code.matchAll(/<(Ig[rbcx]\w+)([\s\S]*?)\/?>/g)) { + const type = el[1]; + for (const a of el[2].matchAll(/(?:^|\s)([a-zA-Z][\w-]*)\s*=/g)) { + usages.push({ file: p, type, attr: a[1] }); + } + } + // Custom elements: + for (const el of code.matchAll(/<(igc-[\w-]+)([\s\S]*?)\/?>/g)) { + const type = el[1]; + for (const a of el[2].matchAll(/(?:^|\s)([a-zA-Z][\w-]*)\s*=/g)) { + usages.push({ file: p, type, attr: a[1] }); + } + } + } + } + }; + walk(contentDir); + return usages; +} + +// --------------------------------------------------------------------------- +// Main +// --------------------------------------------------------------------------- + +const apiMapRoot = resolveApiMapRoot(null, REPO_ROOT); +if (!apiMapRoot) { + console.error('[accuracy] apiMap not found — clone igniteui-xplat-docs beside this repo'); + process.exit(1); +} +if (!existsSync(WINUI_SAMPLES) || !statSync(WINUI_SAMPLES).isDirectory()) { + console.error(`[accuracy] winui-samples not found at ${WINUI_SAMPLES}`); + process.exit(1); +} + +const apiMap = loadApiMap(apiMapRoot); +const { attrs: winuiNames, elements: winuiElements } = collectWinUINames(WINUI_SAMPLES); +const usages = collectDocUsages(path.join(ROOT, 'src', 'content', 'en', 'components')); + +// Attributes that are platform plumbing, not API surface. +const IGNORED = new Set(['ref', 'id', 'class', 'style', 'key', 'height', 'width', 'slot', 'name']); + +const buckets = { + agree: [], + 'apimap-better': [], + 'fuzzy-better': [], + 'both-unknown': [], + 'both-known': [], +}; + +const seen = new Set(); +let skippedNoCounterpart = 0; +for (const { type, attr } of usages) { + if (IGNORED.has(attr.toLowerCase()) || attr.startsWith('@')) continue; + if (!hasWinUICounterpart(type, winuiElements)) { + skippedNoCounterpart++; + continue; + } + const key = `${type}::${attr}`; + if (seen.has(key)) continue; + seen.add(key); + + const canonicalType = resolveTypeName(apiMap, type.replace(/^igc-/, '')).name; + const viaApiMap = resolveMemberName(apiMap, attr, canonicalType); + const fuzzy = fuzzyToPascal(attr); + + if (viaApiMap.name === fuzzy) { + buckets.agree.push({ type, attr, name: fuzzy }); + continue; + } + const apiKnown = winuiNames.has(viaApiMap.name); + const fuzzyKnown = winuiNames.has(fuzzy); + const row = { type, attr, apiMap: viaApiMap.name, fuzzy, via: viaApiMap.via }; + if (apiKnown && !fuzzyKnown) buckets['apimap-better'].push(row); + else if (!apiKnown && fuzzyKnown) buckets['fuzzy-better'].push(row); + else if (apiKnown && fuzzyKnown) buckets['both-known'].push(row); + else buckets['both-unknown'].push(row); +} + +const total = seen.size; +console.log(`\n apiMap accuracy regression — ground truth: ${winuiNames.size} names from the WinUI samples`); +console.log(` distinct type::property usages in web doc snippets: ${total}`); +console.log(` usages skipped (component has no WinUI counterpart): ${skippedNoCounterpart}\n`); +const label = { + agree: 'identical (apiMap and fuzzy agree)', + 'apimap-better': 'apiMap correct, fuzzy WRONG → improvement', + 'fuzzy-better': 'fuzzy correct, apiMap WRONG → REGRESSION', + 'both-known': 'both names exist in WinUI → review', + 'both-unknown': 'neither name seen in samples → unverifiable', +}; +for (const k of ['agree', 'apimap-better', 'both-known', 'both-unknown', 'fuzzy-better']) { + console.log(` ${String(buckets[k].length).padStart(5)} ${label[k]}`); +} + +const show = (k, limit) => { + if (!buckets[k].length) return; + console.log(`\n ${label[k]}:`); + for (const r of buckets[k].slice(0, limit)) { + console.log(` ${r.type}.${r.attr} apiMap="${r.apiMap}" fuzzy="${r.fuzzy}" (${r.via})`); + } + if (buckets[k].length > limit) console.log(` … ${buckets[k].length - limit} more`); +}; +show('apimap-better', VERBOSE ? 200 : 12); +show('both-known', VERBOSE ? 200 : 8); +show('fuzzy-better', 200); +if (VERBOSE) show('both-unknown', 40); + +const regressions = buckets['fuzzy-better'].length; +console.log( + `\n ${regressions === 0 ? 'PASS' : 'FAIL'} — ${buckets['apimap-better'].length} improvement(s), ${regressions} regression(s)\n`, +); +process.exit(regressions === 0 ? 0 : 1); diff --git a/docs/xplat/scripts/generate.mjs b/docs/xplat/scripts/generate.mjs index 94a1d1961c..d9f098de4b 100644 --- a/docs/xplat/scripts/generate.mjs +++ b/docs/xplat/scripts/generate.mjs @@ -24,6 +24,11 @@ import { } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; +// The snippet emitter is a CommonJS bundle of the locally built renderer; see transformJsonSnippets. +import { createRequire } from 'node:module'; +// Canonical platform-visibility rules, shared with astro.config.ts and the +// link checkers. Node strips the TS types on import (CI runs Node 24). +import { emitsFor, forMatches } from '../../../src/lib/platform-groups.ts'; // --------------------------------------------------------------------------- // CLI arguments @@ -77,7 +82,7 @@ if (!platformConfig) { function collectExcludedSlugs(nodes, excluded = new Set()) { for (const node of nodes || []) { - const isExcluded = Array.isArray(node.exclude) && node.exclude.includes(PLATFORM); + const isExcluded = !emitsFor(PLATFORM, node); if (isExcluded && node.href) { excluded.add(node.href.replace(/\.(mdx?)?$/, '').replace(/\\/g, '/')); } @@ -104,7 +109,7 @@ function collectAllSlugs(nodes, excluded) { // e.g. general-getting-started.md appears under a React node AND a Blazor-only node. function collectIncludedSlugs(nodes, included = new Set()) { for (const node of nodes || []) { - const isExcluded = Array.isArray(node.exclude) && node.exclude.includes(PLATFORM); + const isExcluded = !emitsFor(PLATFORM, node); if (!isExcluded && node.href) { included.add(node.href.replace(/\.(mdx?)?$/, '').replace(/\\/g, '/')); } @@ -204,8 +209,8 @@ function applyReplacements(content, extraReplacements = []) { function filterPlatformBlocks(content) { return content.replace( /([\s\S]*?)/g, - (_m, platforms, body) => - platforms.split(',').map(p => p.trim()).includes(PLATFORM) ? body : '', + // Accepts platform names and group aliases (Web, NonWeb) alike. + (_m, platforms, body) => (forMatches(PLATFORM, platforms) ? body : ''), ); } @@ -262,15 +267,19 @@ function filterComponentBlocks(content, componentKey) { // 4. Code block filtering (language tag + content detection) // --------------------------------------------------------------------------- -// Languages that belong exclusively to one platform +// Languages that belong exclusively to one platform, or to one platform group. +// A value may be a platform name or a group alias (see src/lib/platform-groups.ts). +// `xaml` maps to the Xaml group — NOT NonWeb, which will also cover non-XAML +// platforms such as mobile. const EXCLUSIVE_LANG = { razor: 'Blazor', cshtml: 'Blazor', tsx: 'React', jsx: 'React', + xaml: 'Xaml', }; -// Content patterns for generic languages (ts / html) +// Content patterns for generic languages (ts / html / cs) const CONTENT_PATTERNS = { Angular: [/igx-\w+/, /\bIgx[A-Z]/], React: [/\bIgr[A-Z]/], @@ -289,9 +298,9 @@ function detectPlatformFromContent(lang, code) { function filterCodeBlocks(content) { return content.replace(/```(\w+)([\s\S]*?)```/g, (match, lang, body) => { - // Exclusive language check + // Exclusive language check. `owner` may be a platform or a group alias. const owner = EXCLUSIVE_LANG[lang.toLowerCase()]; - if (owner && owner !== PLATFORM) return ''; + if (owner && !forMatches(PLATFORM, owner)) return ''; // Content-based detection for ts / html const detected = detectPlatformFromContent(lang, body); @@ -337,8 +346,7 @@ function inlinePlatformBlocks(content) { } result += content.slice(pos, openPos); - const platforms = openMatch[1].split(',').map(s => s.trim()); - const keep = platforms.includes(PLATFORM); + const keep = forMatches(PLATFORM, openMatch[1]); const bodyStart = openPos + openMatch[0].length; let depth = 1, searchPos = bodyStart; @@ -379,7 +387,78 @@ function inlinePlatformBlocks(content) { return result; } +// --------------------------------------------------------------------------- +// 5c. json-snippet blocks +// +// A ```json-snippet block holds one sample as JSON, and is turned into this platform's markup +// here, during generation. That replaces the four or five hand written blocks a topic would +// otherwise carry for the same sample — one per platform — with a single definition. +// +// Purely additive. Every other block is left exactly as it was, so a topic can hold both forms +// and a platform specific snippet that has no JSON equivalent keeps working unchanged. +// +// The emitter is the locally built one from the renderer work, loaded through a CommonJS bundle. +// When that work is published this becomes an ordinary package import and the paths below go away. +// --------------------------------------------------------------------------- + +const SNIPPET_API_PATH = process.env.IG_SNIPPET_API + || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'; +const SNIPPET_DOM_SHIM = process.env.IG_SNIPPET_DOM_SHIM + || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'; +const SNIPPET_EXAMPLES = process.env.XPLAT_EXAMPLES; + +// The fence language each platform's markup is written in, which is what the topic would have +// hand written for it. +const SNIPPET_FENCE_LANG = { + Angular: 'html', + WebComponents: 'html', + React: 'tsx', + Blazor: 'razor', + WPF: 'xaml', + WinUI: 'xaml', + Uno: 'xaml', +}; + +let snippetApi = null; +function loadSnippetApi() { + if (snippetApi !== null) return snippetApi; + const require = createRequire(import.meta.url); + // The renderer drags in Web Components classes that touch window/document at module scope. + // Code generation never renders, so the stub is only there to let the modules load. + require(SNIPPET_DOM_SHIM); + snippetApi = require(SNIPPET_API_PATH); + return snippetApi; +} + +function transformJsonSnippets(content) { + if (!content.includes('```json-snippet')) return content; + + const lang = SNIPPET_FENCE_LANG[PLATFORM]; + const api = loadSnippetApi(); + + return content.replace(/```json-snippet\n([\s\S]*?)```/g, (match, body) => { + // A platform this sample cannot be emitted for drops out, the same way a code block + // belonging to another platform does. + if (!lang || !api.isSupportedPlatform(PLATFORM)) return ''; + + let markup; + try { + markup = api.emitSingleSnippet(body, PLATFORM, { + examplesRoot: SNIPPET_EXAMPLES, + defaultSnippetId: 'main', + }); + } catch (e) { + // Failing the build beats publishing a page with a hole where a sample should be. + throw new Error(`json-snippet failed for ${PLATFORM}: ${e.message}\n${body}`); + } + if (markup === null) return ''; + return '```' + lang + '\n' + markup + '\n```'; + }); +} + function transformMdxFile(content) { + // 0. Turn any json-snippet block into this platform's markup + content = transformJsonSnippets(content); // 1. Resolve tags — keep only this platform's content content = inlinePlatformBlocks(content); // 2. Remove the now-unused PlatformBlock import (if any) @@ -414,6 +493,7 @@ function normalizeImagePaths(content) { } function transformRegularFile(content, componentKey = null) { + content = transformJsonSnippets(content); content = filterPlatformBlocks(content); content = filterComponentBlocks(content, componentKey); content = filterCodeBlocks(content); diff --git a/docs/xplat/scripts/lib/api-map-names.mjs b/docs/xplat/scripts/lib/api-map-names.mjs new file mode 100644 index 0000000000..ef2cffa328 --- /dev/null +++ b/docs/xplat/scripts/lib/api-map-names.mjs @@ -0,0 +1,146 @@ +/** + * api-map-names.mjs + * + * Resolves platform-specific API names to their canonical (XAML) form using the + * product-generated apiMap JSON from igniteui-xplat-docs. + * + * Precedence — an apiMap direct hit is authoritative; otherwise the existing + * fuzzy convention applies: + * + * 1. apiMap direct hit `dataSource` → `ItemsSource` (a genuine rename) + * 2. fuzzy fallback `headerClickAction` → `HeaderClickAction` (PascalCase) + * + * This is deliberately additive: names the map does not cover keep resolving the + * way they do today. See WINUI-UNO-PLAN.md §6.4. + */ + +import { existsSync, readFileSync, readdirSync } from 'node:fs'; +import path from 'node:path'; + +/** + * Locates the apiMap directory. + * + * The vendored copy under `src/data/api-map/` is the primary source: the + * originating repo (igniteui-xplat-docs) is archived, so the maps live here now. + * The sibling-clone and env-var paths remain as an escape hatch for regenerating + * or diffing against the original. + */ +export function resolveApiMapRoot(explicit = null, repoRoot = process.cwd()) { + const candidates = [ + explicit, + path.join(repoRoot, 'src', 'data', 'api-map'), + process.env.XPLAT_DOCS_ROOT ? path.join(process.env.XPLAT_DOCS_ROOT, 'apiMap') : null, + path.resolve(repoRoot, '..', 'igniteui-xplat-docs', 'apiMap'), + ].filter(Boolean); + return candidates.find(c => existsSync(c)) ?? null; +} + +/** + * Builds lookup tables from the apiMap files. + * + * Returns: + * memberToCanonical: Map> + * typeToCanonical: Map> + * memberByType: Map<`${canonicalType}::${lowercased member}`, canonical member> + * + * Counts are retained so an ambiguous name can be reported rather than guessed. + */ +export function loadApiMap(apiMapRoot) { + const memberToCanonical = new Map(); + const typeToCanonical = new Map(); + const memberByType = new Map(); + + const add = (map, key, value) => { + const k = key.toLowerCase(); + if (!map.has(k)) map.set(k, new Map()); + const inner = map.get(k); + inner.set(value, (inner.get(value) ?? 0) + 1); + }; + + for (const platformDir of readdirSync(apiMapRoot)) { + const dir = path.join(apiMapRoot, platformDir); + let files; + try { + files = readdirSync(dir).filter(f => f.endsWith('.apiMap.json')); + } catch { + continue; + } + for (const file of files) { + let json; + try { + json = JSON.parse(readFileSync(path.join(dir, file), 'utf8')); + } catch { + continue; + } + for (const type of json.types ?? []) { + const canonicalType = type.originalName; + if (!canonicalType) continue; + for (const n of type.names ?? []) { + if (n.mappedName) add(typeToCanonical, n.mappedName, canonicalType); + } + for (const member of type.members ?? []) { + const canonicalMember = (member.originalName ?? '').replace(/\(\)$/, ''); + if (!canonicalMember || canonicalMember === '.ctor') continue; + for (const n of member.names ?? []) { + if (!n.mappedName) continue; + add(memberToCanonical, n.mappedName, canonicalMember); + memberByType.set( + `${canonicalType}::${n.mappedName.toLowerCase()}`, + canonicalMember, + ); + } + } + } + } + } + return { memberToCanonical, typeToCanonical, memberByType }; +} + +/** `headerClickAction` → `HeaderClickAction`; `header-click-action` → `HeaderClickAction`. */ +export function fuzzyToPascal(name) { + return name + .replace(/[-_](\w)/g, (_m, c) => c.toUpperCase()) + .replace(/^(\w)/, (_m, c) => c.toUpperCase()); +} + +/** + * Resolves a platform-specific member name to its canonical XAML name. + * + * @returns {{ name: string, via: 'apimap'|'apimap-type'|'fuzzy', ambiguous?: string[] }} + */ +export function resolveMemberName(apiMap, memberName, canonicalType = null) { + // A dotted canonical is a *path* into a nested object, not a property name. + // The web platforms flatten those (`shapeStyle.strokeThickness` surfaces as + // `shapeStrokeThickness`), and XAML keeps the flattened property too, so the + // fuzzy form is the accurate one. Treat dotted hits as no-hit. + const usable = n => typeof n === 'string' && n.length > 0 && !n.includes('.'); + + if (canonicalType) { + const scoped = apiMap.memberByType.get(`${canonicalType}::${memberName.toLowerCase()}`); + if (usable(scoped)) return { name: scoped, via: 'apimap-type' }; + if (scoped) return { name: fuzzyToPascal(memberName), via: 'fuzzy-nested' }; + } + const all = apiMap.memberToCanonical.get(memberName.toLowerCase()); + const hits = all && new Map([...all].filter(([n]) => usable(n))); + if (hits && hits.size) { + // Most frequently attested canonical wins; report the rest as ambiguous. + const ranked = [...hits.entries()].sort((a, b) => b[1] - a[1]); + const [best] = ranked[0]; + return { + name: best, + via: 'apimap', + ...(ranked.length > 1 ? { ambiguous: ranked.map(([n]) => n) } : {}), + }; + } + return { name: fuzzyToPascal(memberName), via: 'fuzzy' }; +} + +/** Resolves a platform-specific type name (e.g. `IgrDataGrid`) to its canonical form. */ +export function resolveTypeName(apiMap, typeName) { + const hits = apiMap.typeToCanonical.get(typeName.toLowerCase()); + if (hits && hits.size) { + const ranked = [...hits.entries()].sort((a, b) => b[1] - a[1]); + return { name: ranked[0][0], via: 'apimap', ...(ranked.length > 1 ? { ambiguous: ranked.map(([n]) => n) } : {}) }; + } + return { name: typeName.replace(/^(Igr|Igc|Igb|Igx)/, ''), via: 'fuzzy' }; +} diff --git a/docs/xplat/scripts/lib/extract-xaml-snippet.mjs b/docs/xplat/scripts/lib/extract-xaml-snippet.mjs new file mode 100644 index 0000000000..9ec3479f00 --- /dev/null +++ b/docs/xplat/scripts/lib/extract-xaml-snippet.mjs @@ -0,0 +1,200 @@ +/** + * extract-xaml-snippet.mjs + * + * Pulls a documentation-ready XAML snippet out of a winui-samples `Sample.xaml`. + * + * The sample files are runnable apps, not snippets: the control of interest is + * buried inside layout `Grid`/`StackPanel` scaffolding and sits next to an + * `XamPropertyEditorPanel` that drives the sample's interactive controls. None + * of that belongs in a doc, so this extracts just the primary `Xam*` element + * (with its full subtree), de-indents it, and re-declares the xmlns prefixes it + * actually uses so the result is copy-pasteable. + */ + +/** Harness elements that are part of the sample app, never part of the docs. */ +const HARNESS = new Set(['XamPropertyEditorPanel', 'PropertyEditorPropertyDescription']); + +/** Reads `xmlns:prefix="value"` declarations from the sample root. */ +export function readXmlnsMap(xaml) { + const map = new Map(); + for (const m of xaml.matchAll(/xmlns:(\w+)="([^"]+)"/g)) map.set(m[1], m[2]); + return map; +} + +/** + * Finds the primary control element: the first `Xam*` element that is not + * harness. Returns `{ prefix, localName, start, end }` byte offsets covering + * the whole element including its closing tag, or null. + */ +export function findPrimaryElement(xaml, preferredLocalName = null) { + const openRe = /<(\w+):(\w+)(\s|\/|>)/g; + let m; + while ((m = openRe.exec(xaml))) { + const [, prefix, localName] = m; + if (HARNESS.has(localName)) continue; + if (preferredLocalName ? localName !== preferredLocalName : !localName.startsWith('Xam')) continue; + + const start = m.index; + const tagEnd = xaml.indexOf('>', start); + if (tagEnd === -1) return null; + + // Self-closing element. + if (xaml[tagEnd - 1] === '/') return { prefix, localName, start, end: tagEnd + 1 }; + + // Walk forward counting same-name open/close tags. Property-element + // children (``) share the prefix but are not the element, + // so match on the exact `])`, 'g'); + const closeTag = new RegExp(``, 'g'); + let depth = 0; + let pos = start; + while (pos < xaml.length) { + openTag.lastIndex = pos; + closeTag.lastIndex = pos; + const o = openTag.exec(xaml); + const c = closeTag.exec(xaml); + const op = o ? o.index : Infinity; + const cp = c ? c.index : Infinity; + if (op === Infinity && cp === Infinity) break; + if (op < cp) { + depth++; + pos = op + 1; + } else { + depth--; + if (depth === 0) return { prefix, localName, start, end: cp + c[0].length }; + pos = cp + 1; + } + } + return null; + } + return null; +} + +/** + * Splits a tag's inner text into its element name and attribute strings, + * respecting quoted values (so `Binding {ElementName=x}` stays intact). + */ +function splitTag(inner) { + const nameMatch = inner.match(/^\/?\s*([\w:.]+)/); + const name = nameMatch ? nameMatch[1] : inner.trim(); + const rest = inner.slice(nameMatch ? nameMatch[0].length : 0); + const attrs = []; + const re = /([\w:.]+)\s*=\s*("([^"]*)"|'([^']*)')/g; + let m; + while ((m = re.exec(rest))) attrs.push(`${m[1]}=${m[2]}`); + return { name, attrs }; +} + +/** + * Re-indents a XAML fragment: one attribute per line, children nested by depth, + * childless elements collapsed to self-closing. + * + * The sample files are machine-generated with irregular indentation (attributes + * at one level, children at another), which reads badly in a doc. The fragments + * here carry no meaningful text content — everything is attributes — so a + * token-level reformat is safe without a full XML parse. + */ +export function formatXaml(fragment, indentUnit = ' ') { + const tokens = []; + const re = /<[^>]+>/g; + let m; + while ((m = re.exec(fragment))) { + const raw = m[0]; + const inner = raw.slice(1, -1); + if (inner.startsWith('/')) tokens.push({ kind: 'close', ...splitTag(inner) }); + else if (inner.endsWith('/')) tokens.push({ kind: 'self', ...splitTag(inner.slice(0, -1)) }); + else tokens.push({ kind: 'open', ...splitTag(inner) }); + } + + // Collapse `` to ``. + const merged = []; + for (let i = 0; i < tokens.length; i++) { + const t = tokens[i]; + const next = tokens[i + 1]; + if (t.kind === 'open' && next && next.kind === 'close' && next.name === t.name) { + merged.push({ ...t, kind: 'self' }); + i++; + } else { + merged.push(t); + } + } + + const out = []; + let depth = 0; + for (const t of merged) { + if (t.kind === 'close') depth = Math.max(0, depth - 1); + const pad = indentUnit.repeat(depth); + if (t.kind === 'close') { + out.push(`${pad}`); + continue; + } + // `>` / `/>` hangs off the last attribute line, per usual XAML style. + const tail = t.kind === 'self' ? ' />' : '>'; + if (!t.attrs.length) { + out.push(`${pad}<${t.name}${tail}`); + } else if (t.attrs.length === 1) { + out.push(`${pad}<${t.name} ${t.attrs[0]}${tail}`); + } else { + out.push(`${pad}<${t.name}`); + t.attrs.forEach((a, i) => { + const last = i === t.attrs.length - 1; + out.push(`${pad}${indentUnit}${a}${last ? tail : ''}`); + }); + } + if (t.kind === 'open') depth++; + } + return out.join('\n'); +} + +/** Removes the common leading indentation from a block. */ +function deindent(text) { + const lines = text.split('\n'); + const indents = lines + .filter(l => l.trim()) + .map(l => l.match(/^\s*/)[0].length); + const min = indents.length ? Math.min(...indents) : 0; + return lines.map(l => (l.trim() ? l.slice(min) : '')).join('\n').trim(); +} + +/** + * Extracts a doc-ready snippet. + * + * @param {string} xaml - contents of Sample.xaml + * @param {object} [opts] + * @param {string|null} [opts.localName] - target element name; defaults to the first `Xam*` + * @param {boolean} [opts.includeXmlns=false] - re-declare used prefixes on the snippet root. + * Off by default: the declaration syntax is the one part of a XAML snippet that is + * *not* portable across dialects (`using:` for WinUI/UWP and Uno vs + * `clr-namespace:…;assembly=…` for WPF). Snippets therefore carry a bare prefix and + * assume it is declared further up the file, which is how a real page is written. + * @returns {{ snippet: string, localName: string, prefixes: string[] } | null} + */ +export function extractXamlSnippet(xaml, opts = {}) { + const { localName = null, includeXmlns = false } = opts; + const found = findPrimaryElement(xaml, localName); + if (!found) return null; + + let body = deindent(xaml.slice(found.start, found.end)); + + // Drop any harness element that ended up nested inside the control. + for (const h of HARNESS) { + body = body.replace(new RegExp(`\\s*<\\w+:${h}[\\s\\S]*?`, 'g'), ''); + } + + const prefixes = [...new Set([...body.matchAll(/<\/?(\w+):/g)].map(m => m[1]))]; + + if (includeXmlns) { + // Declare the prefixes on the snippet root so it is copy-pasteable. + const xmlnsMap = readXmlnsMap(xaml); + const decls = prefixes + .filter(p => xmlnsMap.has(p)) + .map(p => ` xmlns:${p}="${xmlnsMap.get(p)}"`) + .join(''); + if (decls) { + const tagEnd = body.search(/\s|\/?>/); + body = body.slice(0, tagEnd) + decls + body.slice(tagEnd); + } + } + + return { snippet: formatXaml(body), localName: found.localName, prefixes }; +} diff --git a/docs/xplat/scripts/migrate-toc-platform-gating.mjs b/docs/xplat/scripts/migrate-toc-platform-gating.mjs new file mode 100644 index 0000000000..a206a40837 --- /dev/null +++ b/docs/xplat/scripts/migrate-toc-platform-gating.mjs @@ -0,0 +1,220 @@ +#!/usr/bin/env node +/** + * migrate-toc-platform-gating.mjs + * + * Applies platform gating to `toc.json` so the XAML platforms (WinUI, Uno) see + * only the topics that apply to them, and future non-web platforms inherit the + * same treatment for free. + * + * The rules are derived, not hand-listed: a topic is in scope for the non-web + * platforms when it embeds a sample from a component that `winui-samples` + * actually ships. Everything else is gated `include: ["Web"]` — an allowlist, so + * adding a platform never requires revisiting these entries. + * + * web-only topic / section / header → include: ["Web"] + * Data Grid family → include: ["NonWeb"] (+ redundant + * four-platform `exclude` dropped) + * shared DV topic → untouched + * + * Idempotent: existing `include` values are never overwritten, so re-running is + * safe. Per-locale indentation is preserved (en uses 2 spaces, jp uses 4). + * + * Usage: + * node scripts/migrate-toc-platform-gating.mjs --dry-run + * node scripts/migrate-toc-platform-gating.mjs + */ + +import { readFileSync, writeFileSync, existsSync, readdirSync, statSync } from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { emitsFor, PLATFORM_GROUPS } from '../../../src/lib/platform-groups.ts'; + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const ROOT = path.join(__dirname, '..'); +const REPO_ROOT = path.resolve(ROOT, '..', '..'); +const DRY = process.argv.includes('--dry-run'); + +const SAMPLES = process.env.WINUI_SAMPLES_ROOT ?? path.resolve(REPO_ROOT, '..', 'winui-samples', 'samples'); + +/** Locale → indentation width, matching what each file already uses. */ +const LOCALES = { en: 2, jp: 4 }; + +/** Grid variants generated from `grids/_shared/` templates. */ +const GRID_VARIANTS = ['grid', 'tree-grid', 'hierarchical-grid', 'pivot-grid']; + +const WEB = new Set(PLATFORM_GROUPS.Web); + +/** + * Sample-path prefixes (`group/component`) that winui-samples ships, plus the + * Zoom Slider — its control is coming, so the topic is kept in scope and the + * sample is a backfill item. + */ +const NONWEB_COMPONENTS = (() => { + const set = new Set(['charts/zoomslider']); + if (!existsSync(SAMPLES)) return set; + + for (const group of readdirSync(SAMPLES)) { + const gp = path.join(SAMPLES, group); + if (!statSync(gp).isDirectory()) continue; + for (const component of readdirSync(gp)) { + if (statSync(path.join(gp, component)).isDirectory()) set.add(`${group}/${component}`); + } + } + return set; +})(); + +const contentDir = lang => path.join(ROOT, 'src', 'content', lang, 'components'); + +/** Maps a toc href to its source file, accounting for `_shared` expansion. */ +function resolveHref(lang, href) { + const base = contentDir(lang); + const f = href.replace(/\\/g, '/'); + if (existsSync(path.join(base, f))) return f; + const m = f.match(new RegExp(`^grids/(${GRID_VARIANTS.join('|')})/(.+\\.mdx)$`)); + if (m && existsSync(path.join(base, `grids/_shared/${m[2]}`))) return `grids/_shared/${m[2]}`; + return null; +} + +const sampleCache = new Map(); +/** Whether a topic embeds a sample from a component the XAML platforms ship. */ +function referencesNonWebSample(lang, file) { + const key = `${lang}/${file}`; + if (!sampleCache.has(key)) { + const text = readFileSync(path.join(contentDir(lang), file), 'utf8'); + const prefixes = new Set( + [...text.matchAll(/ m[1].split('/').slice(0, 2).join('/')), + ); + sampleCache.set(key, [...prefixes].some(p => NONWEB_COMPONENTS.has(p))); + } + return sampleCache.get(key); +} + +const stats = {}; +const bump = k => (stats[k] = (stats[k] ?? 0) + 1); + +function classify(lang, node) { + const href = node.href.replace(/\\/g, '/'); + if (href.startsWith('grids/data-grid/')) return 'datagrid'; + const file = resolveHref(lang, href); + if (!file) return 'web'; // stale entry: keep off the new platforms + return referencesNonWebSample(lang, file) ? 'nonweb' : 'web'; +} + +function dropRedundantWebExclude(node) { + if (Array.isArray(node.exclude) && WEB.size && [...WEB].every(p => node.exclude.includes(p))) { + delete node.exclude; + bump('dropped-redundant-web-exclude'); + } +} + +/** Pass 1 — leaves, nested sections, and the Data Grid family. */ +function gateNodes(lang, nodes) { + let allWeb = true; + for (const node of nodes) { + const kids = Array.isArray(node.items) && node.items.length ? node.items : null; + const kidsWeb = kids ? gateNodes(lang, kids) : true; + + if (node.href) { + const kind = classify(lang, node); + if (kind === 'datagrid') { + if (!('include' in node)) { node.include = ['NonWeb']; bump('datagrid->NonWeb'); } + dropRedundantWebExclude(node); + allWeb = false; + } else if (kind === 'nonweb') { + bump('left-shared'); + allWeb = false; + } else if (!('include' in node)) { + node.include = ['Web']; + bump('leaf->Web'); + } + if (!('include' in node)) allWeb = false; + } else if (kids) { + if (kidsWeb && !('include' in node)) { node.include = ['Web']; bump('section->Web'); } + allWeb = allWeb && kidsWeb; + } + if (kids && !kidsWeb) allWeb = false; + } + return allWeb; +} + +/** Pass 2 — a node whose children are Data Grid topics is the Data Grid parent. */ +function gateDataGridParents(nodes) { + for (const node of nodes) { + const kids = node.items; + if (!Array.isArray(kids)) continue; + if (kids.some(k => typeof k.href === 'string' && k.href.startsWith('grids/data-grid/'))) { + if (!('include' in node)) { node.include = ['NonWeb']; bump('datagrid-parent->NonWeb'); } + dropRedundantWebExclude(node); + } + gateDataGridParents(kids); + } +} + +/** + * Pass 3 — the toc is largely flat: a header row governs the sibling run up to + * the next header. Gate the header when nothing in its run survives for the + * non-web platforms, so their sidebar shows no empty sections. + */ +function gateHeaders(nodes) { + const isHeader = n => n.header === true || (!('href' in n) && !(Array.isArray(n.items) && n.items.length)); + for (let i = 0; i < nodes.length; i++) { + const node = nodes[i]; + if (Array.isArray(node.items)) gateHeaders(node.items); + if (!isHeader(node) || 'include' in node) continue; + const run = []; + for (const next of nodes.slice(i + 1)) { + if (isHeader(next)) break; + run.push(next); + } + if (!run.length) continue; + const survives = run.some(n => PLATFORM_GROUPS.NonWeb.some(p => emitsFor(p, n))); + if (!survives) { node.include = ['Web']; bump('header->Web'); } + } +} + +/** Pass 4 — ensure every ported Data Grid topic has a toc entry. */ +const EXTRA_ENTRIES = [ + { href: 'grids/data-grid/cell-merging.mdx', names: { en: 'Cell Merging', jp: 'セル結合' }, after: 'grids/data-grid/cell-activation.mdx' }, +]; + +function addMissingEntries(lang, nodes) { + for (const spec of EXTRA_ENTRIES) { + let found = false; + const scan = ns => ns.forEach(n => { if (n.href === spec.href) found = true; if (Array.isArray(n.items)) scan(n.items); }); + scan(nodes); + if (found) continue; + const place = ns => { + for (const n of ns) { + const kids = n.items; + if (!Array.isArray(kids)) continue; + const at = kids.findIndex(k => k.href === spec.after); + if (at >= 0) { + kids.splice(at, 0, { name: spec.names[lang], href: spec.href, include: ['NonWeb'] }); + bump('added-missing-toc-entry'); + return true; + } + if (place(kids)) return true; + } + return false; + }; + place(nodes); + } +} + +for (const [lang, indent] of Object.entries(LOCALES)) { + const file = path.join(ROOT, 'src', 'content', lang, 'toc.json'); + if (!existsSync(file)) continue; + const original = readFileSync(file, 'utf8'); + const toc = JSON.parse(original); + + addMissingEntries(lang, toc); + gateDataGridParents(toc); + gateNodes(lang, toc); + gateHeaders(toc); + + const out = JSON.stringify(toc, null, indent) + (original.endsWith('\n') ? '\n' : ''); + if (!DRY) writeFileSync(file, out, 'utf8'); + console.log(` ${lang}: ${DRY ? 'would write' : 'wrote'} toc.json (indent ${indent})`); +} + +for (const [k, v] of Object.entries(stats).sort()) console.log(` ${k}: ${v}`); diff --git a/docs/xplat/scripts/port-data-grid.mjs b/docs/xplat/scripts/port-data-grid.mjs new file mode 100644 index 0000000000..b52e7c0617 --- /dev/null +++ b/docs/xplat/scripts/port-data-grid.mjs @@ -0,0 +1,450 @@ +#!/usr/bin/env node +/** + * port-data-grid.mjs + * + * One-shot port of the Data Grid topic set from the docfx-era repo + * (igniteui-xplat-docs) into this repo's Astro MDX content. + * + * These 32 topics were never carried over during the MDX migration, and their + * toc entries have been pointing at non-existent files ever since. The Data + * Grid is the primary grid on the XAML platforms, so the ported topics are + * gated `include: ["NonWeb"]` in toc.json. + * + * **All web snippets are retained.** The toc gates these topics to `NonWeb` + * today, but that is a navigation decision, not a content one — the Data Grid + * doc may be generated for the web platforms again. Every React / Web + * Components / Blazor snippet is preserved, and the previously-inert + * `` markers are converted into real PlatformBlocks, so a future + * web build filters them correctly instead of showing all variants at once. + * + * Conversions performed: + * 1. frontmatter docfx `_description` / `_keywords` → schema names, + * `license` and the required `llms.description` added + * 2. platform blocks `` → + * 3. samples `sample="/x", height="600", alt="y"` → + * 4. notes `> [!Note]` → + * 5. links `./x.md` → `./x.mdx` + * 6. imports added for exactly the components each file uses + * + * Usage: + * node scripts/port-data-grid.mjs --dry-run + * node scripts/port-data-grid.mjs + * node scripts/port-data-grid.mjs --src + */ + +import { readFileSync, writeFileSync, mkdirSync, existsSync, readdirSync } from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { PLATFORMS } from '../../../src/lib/platform-groups.ts'; + +/** Only these names are treated as platform markers; anything else is prose. */ +const KNOWN_PLATFORMS = new Set(PLATFORMS); + +const __dirname = path.dirname(fileURLToPath(import.meta.url)); +const ROOT = path.join(__dirname, '..'); +const REPO_ROOT = path.resolve(ROOT, '..', '..'); + +const args = process.argv.slice(2); +const DRY = args.includes('--dry-run'); +const argSrc = (() => { + const i = args.indexOf('--src'); + return i >= 0 ? args[i + 1] : null; +})(); +/** + * Locales to port. en and jp are kept in lockstep — the toc is shared in shape + * across locales, so porting one without the other leaves dead sidebar links. + */ +const LANGS = (() => { + const i = args.indexOf('--lang'); + return i >= 0 ? [args[i + 1]] : ['en', 'jp']; +})(); + +const XPLAT_DOCS = + argSrc ?? + process.env.XPLAT_DOCS_ROOT ?? + path.resolve(REPO_ROOT, '..', 'igniteui-xplat-docs'); + +const srcDirFor = lang => path.join(XPLAT_DOCS, 'doc', lang, 'components', 'grids', 'data-grid'); +const outDirFor = lang => path.join(ROOT, 'src', 'content', lang, 'components', 'grids', 'data-grid'); + +for (const lang of LANGS) { + if (!existsSync(srcDirFor(lang))) { + console.error(`[port] source not found: ${srcDirFor(lang)}`); + console.error('[port] pass --src or set XPLAT_DOCS_ROOT'); + process.exit(1); + } +} + +// --------------------------------------------------------------------------- +// Frontmatter +// --------------------------------------------------------------------------- + +/** Quote a YAML scalar that contains `{`, `:`, `|`, `#` or leading/trailing space. */ +function yamlQuote(v) { + const s = String(v).trim(); + return `"${s.replace(/\\/g, '\\\\').replace(/"/g, '\\"')}"`; +} + +/** + * Derives the `llms.description` one-liner required by check:llms-metadata. + * Prefers the first body sentence, which is written for humans and is the most + * accurate summary available; falls back to the topic description. + */ +function deriveLlmsDescription(body, description, title, lang = 'en') { + const prose = body + // Drop platform-gated regions first. Every one of these topics opens + // with a Blazor/WebComponents deprecation aside; without this, all 32 + // would take that aside as their summary. + .replace(/[\s\S]*?/g, ' ') + .replace(//g, ' ') + .replace(/^\s*>\s*\[![\s\S]*?(?:\n\s*\n|$)/gm, ' ') + .replace(/^#.*$/gm, ' ') + .replace(/^>.*$/gm, ' ') + .replace(/```[\s\S]*?```/g, ' ') + .replace(/`sample="[^`]*`/g, ' ') + .replace(/<[^>]+>/g, ' ') + // Flatten markdown links to their text — a description is plain prose, + // and a link target here would also dodge the .md → .mdx conversion. + .replace(/\[([^\]]+)\]\([^)]*\)/g, '$1') + .replace(/`([^`]+)`/g, '$1') + .replace(/\s+/g, ' ') + .trim(); + // Mirrors scripts/check-llms-metadata.mjs: minimum length is locale-specific, + // Japanese descriptions must contain Japanese text, and none may open with + // page-oriented wording. + const GENERIC_OPENING = /^(?:the following|this (?:example|topic|section)|in this example|below\b|here,)/i; + const JAPANESE_TEXT = /[぀-ヿ㐀-鿿]/; + const minLen = lang === 'jp' ? 20 : 40; + const isUsable = s => + s.length >= minLen && + s.length <= 240 && + !GENERIC_OPENING.test(s) && + (lang !== 'jp' || JAPANESE_TEXT.test(s)); + + // Japanese prose uses `。` as the sentence terminator. + for (const sentence of prose.split(lang === 'jp' ? /(?<=[。.!])\s*/ : /(?<=[.!])\s+/)) { + const s = sentence.trim(); + if (isUsable(s)) return s; + } + if (description) { + const d = description.replace(/\s+/g, ' ').trim(); + const trimmed = d.length > 240 ? `${d.slice(0, 237).trimEnd()}...` : d; + if (isUsable(trimmed) || (!GENERIC_OPENING.test(trimmed) && trimmed.length >= minLen)) return trimmed; + } + return title.replace(/\s*\|.*$/, '').trim(); +} + +function convertFrontmatter(raw, body, lang = 'en') { + const lines = raw.split('\n'); + const out = new Map(); + let key = null; + for (const line of lines) { + const m = line.match(/^([A-Za-z_][\w]*):\s*(.*)$/); + if (m) { + key = m[1]; + out.set(key, m[2]); + } else if (key && line.trim()) { + out.set(key, `${out.get(key)} ${line.trim()}`); + } + } + + const title = out.get('title') ?? ''; + const description = out.get('_description') ?? out.get('description') ?? ''; + const keywords = out.get('_keywords') ?? out.get('keywords') ?? ''; + + const fm = []; + fm.push(`title: ${yamlQuote(title)}`); + if (description) fm.push(`description: ${yamlQuote(description)}`); + if (keywords) fm.push(`keywords: ${yamlQuote(keywords)}`); + fm.push('license: commercial'); + if (out.has('mentionedTypes')) fm.push(`mentionedTypes: ${out.get('mentionedTypes').trim()}`); + if (out.has('namespace')) fm.push(`namespace: ${out.get('namespace').trim()}`); + if (out.has('_canonicalLink')) fm.push(`_canonicalLink: ${yamlQuote(out.get('_canonicalLink'))}`); + fm.push('llms:'); + fm.push(` description: ${yamlQuote(deriveLlmsDescription(body, description, title, lang))}`); + return fm.join('\n'); +} + +// --------------------------------------------------------------------------- +// Body +// --------------------------------------------------------------------------- + +/** + * Drops the deprecation notice that opens every source topic. + * + * The docfx originals carried a Blazor/WebComponents-scoped note saying the + * Data Grid is deprecated in favour of the Grid. It is not wanted in this doc + * set at all — the Data Grid is the primary grid on the XAML platforms — so the + * whole notice is removed rather than platform-gated. + * + * Removes the enclosing platform-comment region when the notice is all it + * contained, so no empty PlatformBlock is left behind. + */ +const DEPRECATION_TEXT = /has been deprecated|非推奨/; + +function removeDeprecationNotices(body) { + // Notice wrapped in a platform-comment region. + body = body.replace( + /\s*([\s\S]*?)\s*/g, + (whole, inner) => { + if (!DEPRECATION_TEXT.test(inner)) return whole; + const withoutNote = inner.replace(/^\s*>\s*\[!\w+\]\s*\n[\s\S]*?(?=\n\s*\n|$)/m, '').trim(); + // Region held more than the notice — keep the region, drop the notice. + if (withoutNote) return whole.replace(inner, `${withoutNote}\n\n`); + return ''; + }, + ); + // Bare notice with no enclosing region. + body = body.replace(/^\s*>\s*\[!\w+\]\s*\n(?:.*\n)*?(?=\s*\n)/gm, m => + DEPRECATION_TEXT.test(m) ? '' : m, + ); + return body; +} + +/** `` … `` → . */ +function convertPlatformBlocks(body) { + return body.replace( + /([\s\S]*?)/g, + (_m, platforms, inner) => { + const list = platforms.split(',').map(s => s.trim()).filter(Boolean).join(', '); + return `\n${inner.trim()}\n`; + }, + ); +} + +/** + * Unpaired `` markers immediately preceding a fenced code block. + * + * These were inert HTML comments in the docfx pipeline — the gulpfile never + * processed them — so both the React and the Web Components variant of an + * import snippet rendered on every platform. Turning each into a PlatformBlock + * around the block it annotates makes the author's intent real, which matters + * here because these `ts` blocks carry no `Igr`/`Igc` token for generate.mjs's + * content detection to catch, and would otherwise survive into the XAML output. + */ +function convertMarkedCodeBlocks(body, knownPlatforms) { + const re = /\s*\n(```[\s\S]*?\n```)/g; + return body.replace(re, (m, platforms, block) => { + const list = platforms.split(',').map(s => s.trim()).filter(Boolean); + if (!list.length || !list.every(p => knownPlatforms.has(p))) return m; + return `\n${block}\n`; + }); +} + +/** + * Wraps every remaining platform-specific code fence in a PlatformBlock. + * + * The docfx pipeline filtered code blocks by language and content at build time + * (`filterCodeBlocks` in generate.mjs), but that step runs only for `.md` files — + * `transformMdxFile` does not call it. The MDX convention is that platform- + * specific snippets are wrapped explicitly. Without this pass the React `tsx`, + * Blazor `razor` and `Igr`/`Igc`-bearing `ts` snippets all render on every + * platform, which is what the docfx output effectively did. + * + * Blocks whose platform cannot be determined are left unwrapped — they are + * genuinely shared (JSON data, CSS, plain TypeScript). + */ +const EXCLUSIVE_LANG = { razor: 'Blazor', cshtml: 'Blazor', tsx: 'React', jsx: 'React' }; +const CONTENT_PATTERNS = [ + ['Angular', [/igx-\w+/, /\bIgx[A-Z]/]], + ['React', [/\bIgr[A-Z]/]], + ['WebComponents', [/igc-\w+/, /\bIgc[A-Z]/]], + ['Blazor', [/\bIgb[A-Z]/]], +]; + +function detectBlockPlatform(lang, code) { + const owner = EXCLUSIVE_LANG[lang.toLowerCase()]; + if (owner) return owner; + if (!['ts', 'typescript', 'html', 'css'].includes(lang.toLowerCase())) return null; + for (const [platform, patterns] of CONTENT_PATTERNS) { + if (patterns.some(p => p.test(code))) return platform; + } + return null; +} + +/** Byte ranges already inside a PlatformBlock, so blocks are not double-wrapped. */ +function protectedRanges(body) { + const ranges = []; + const openRe = //g; + let m; + while ((m = openRe.exec(body))) { + const close = body.indexOf('', m.index); + if (close === -1) continue; + ranges.push([m.index, close + ''.length]); + } + return ranges; +} + +function wrapPlatformCodeBlocks(body) { + const ranges = protectedRanges(body); + const inside = i => ranges.some(([a, b]) => i >= a && i < b); + const fence = /^```(\w+)\n([\s\S]*?)\n```$/gm; + const edits = []; + let m; + while ((m = fence.exec(body))) { + if (inside(m.index)) continue; + const platform = detectBlockPlatform(m[1], m[2]); + if (!platform) continue; + edits.push([m.index, m.index + m[0].length, platform, m[0]]); + } + for (let i = edits.length - 1; i >= 0; i--) { + const [start, end, platform, block] = edits[i]; + body = `${body.slice(0, start)}\n${block}\n${body.slice(end)}`; + } + return body; +} + +/** MDX rejects HTML comments; author notes become MDX expression comments. */ +function convertComments(body) { + return body.replace(//g, (_m, inner) => `{/*${inner.replace(/\*\//g, '*\\/')}*/}`); +} + +/** `sample="/path", height="600", alt="text"` (in backticks) → . */ +function convertSamples(body) { + return body.replace( + /`sample="([^"]+)"(?:,\s*height="(\d+)")?(?:,\s*alt="([^"]*)")?`/g, + (_m, src, height, alt) => { + const parts = [`src="${src}"`]; + if (height) parts.push(`height={${height}}`); + if (alt) parts.push(`alt="${alt}"`); + return ``; + }, + ); +} + +/** + * `> [!Note]` blocks → . + * The docfx form puts the marker on its own quoted line and the text either on + * following quoted lines or on plain lines directly beneath. + */ +function convertNotes(body) { + const lines = body.split('\n'); + const out = []; + for (let i = 0; i < lines.length; i++) { + const m = lines[i].match(/^>\s*\[!(Note|Warning|Tip|Important|Caution)\]\s*$/i); + if (!m) { + out.push(lines[i]); + continue; + } + const kind = m[1].toLowerCase(); + const type = kind === 'warning' || kind === 'caution' ? 'warning' : 'info'; + const buf = []; + let j = i + 1; + for (; j < lines.length; j++) { + const l = lines[j]; + if (!l.trim()) break; + // Stop at a heading, a comment, or any JSX/HTML tag boundary — a + // closing tag swallowed into the note body produces interleaved + // tags (`` inside ``), which MDX rejects. + if (l.startsWith('#') || /^\s*<\/?[A-Za-z!]/.test(l)) break; + buf.push(l.replace(/^>\s?/, '')); + } + out.push(``, ...buf, ''); + i = j - 1; + } + return out.join('\n'); +} + +/** + * Link targets corrected on the way through. + * + * The deprecation notice at the top of every topic points at the Data Grid's + * own overview. The sources disagreed and neither target was right for this + * repo: English used `../data-grid.md`, which is the *web Grid* landing page + * here (it drives {GridSample} and is what the toc's "Grid" entry points at), + * while Japanese used `grid/overview.md`, resolving to + * `grids/data-grid/grid/overview.mdx`, which has never existed and fails the + * CI-gated relative-link checker. + */ +const LINK_FIXES = [ + [/\]\(grid\/overview\.md(#[^)]*)?\)/g, '](overview.md$1)'], + [/\]\(\.\.\/data-grid\.md(#[^)]*)?\)/g, '](overview.md$1)'], +]; + +/** Relative cross-page links must carry the `.mdx` extension in this repo. */ +function convertLinks(body) { + for (const [re, to] of LINK_FIXES) body = body.replace(re, to); + return body + .replace(/\]\(([^)\s]+?)\.md(#[^)]*)?\)/g, (_m, p, hash) => `](${p}.mdx${hash ?? ''})`) + // `$1` above leaves an empty group as literal `undefined` when absent + .replace(/\.mdx\)undefined/g, '.mdx)'); +} + +const IMPORTS = [ + ['PlatformBlock', "import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro';"], + ['Sample', "import Sample from 'igniteui-astro-components/components/mdx/Sample.astro';"], + ['DocsAside', "import DocsAside from 'igniteui-astro-components/components/mdx/DocsAside.astro';"], + ['ApiLink', "import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro';"], +]; + +function buildImports(body) { + return IMPORTS.filter(([name]) => new RegExp(`<${name}[\\s/>]`).test(body)) + .map(([, stmt]) => stmt) + .join('\n'); +} + +// --------------------------------------------------------------------------- +// Main +// --------------------------------------------------------------------------- + +let written = 0; +const report = []; +const perLang = {}; + +for (const lang of LANGS) { +const SRC_DIR = srcDirFor(lang); +const OUT_DIR = outDirFor(lang); +const files = readdirSync(SRC_DIR).filter(f => f.endsWith('.md')).sort(); +if (!DRY) mkdirSync(OUT_DIR, { recursive: true }); +perLang[lang] = 0; + +for (const file of files) { + const raw = readFileSync(path.join(SRC_DIR, file), 'utf8'); + const m = raw.match(/^---\n([\s\S]*?)\n---\n([\s\S]*)$/); + if (!m) { + report.push([`${lang}/${file}`, 'SKIPPED — no frontmatter']); + continue; + } + + let body = m[2]; + // Deprecation notices are dropped outright, before anything else looks at + // the body — including the llms.description derivation below. + body = removeDeprecationNotices(body); + // Notes first: converting them before the platform comments become JSX + // keeps each aside wholly inside its region, so the tags cannot interleave. + body = convertNotes(body); + body = convertPlatformBlocks(body); + body = convertMarkedCodeBlocks(body, KNOWN_PLATFORMS); + body = wrapPlatformCodeBlocks(body); + body = convertSamples(body); + body = convertLinks(body); + // Last: any comment still present is author prose, and MDX cannot parse the + // HTML form. Must run after the platform-comment conversions above. + body = convertComments(body); + + const fm = convertFrontmatter(m[1], removeDeprecationNotices(m[2]), lang); + const imports = buildImports(body); + const doc = `---\n${fm}\n---\n\n${imports ? `${imports}\n\n` : ''}${body.replace(/^\n+/, '').trimEnd()}\n`; + + const outFile = path.join(OUT_DIR, file.replace(/\.md$/, '.mdx')); + if (!DRY) writeFileSync(outFile, doc, 'utf8'); + written++; + perLang[lang]++; + + const opens = (doc.match(//g) || []).length; + const stray = (doc.match(/ - - - - - - - - - - -``` - - - - - -```ts -// index.ts -import { - IgcGeographicMapComponent, - IgcGeographicTileSeriesComponent, - IgcAzureMapsImagery, - AzureMapsImageryStyle, - IgcGeographicMapModule -} from 'igniteui-webcomponents-maps'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -ModuleManager.register(IgcGeographicMapModule); - -const azureKey = ""; - -window.addEventListener("load", () => { - const map = document.getElementById("map") as IgcGeographicMapComponent; - const tileSeries = document.getElementById("tileSeries") as IgcGeographicTileSeriesComponent; - - // Update TileSeries - const overlay = new IgcAzureMapsImagery(); - overlay.apiKey = azureKey; - overlay.imageryStyle = AzureMapsImageryStyle.TrafficAbsoluteOverlay; - tileSeries.tileImagery = overlay; - - // Update Map Background - const background = new IgcAzureMapsImagery(); - background.apiKey = azureKey; - background.imageryStyle = AzureMapsImageryStyle.DarkGrey; - map.backgroundContent = background; -}); -``` - - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - - -@code { - - private IgbGeographicMap AzureMap; - private IgbAzureMapsImagery AzureImagery { get; set; } - private IgbGeographicTileSeries ImagerySeries; - - protected override async Task OnAfterRenderAsync(bool firstRender) - { - await base.OnAfterRenderAsync(firstRender); - - //Update TileSeries - var imagery = new IgbAzureMapsImagery +```json-snippet exclude="Xaml,Blazor" channel="bindingImports...bindingFields,bindingInit,bindingCode" +{ + "type": "GeographicMap", + "name": "azureMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "AzureMapsImagery", + "name": "azureImagery", + "apiKey": "YOUR_AZURE_MAPS_API_KEY", + "imageryStyle": "DarkGrey" + }, + "series": [ { - ApiKey = AzureKey, - ImageryStyle = AzureMapsImageryStyle.TrafficAbsoluteOverlay - }; - - ImagerySeries.TileImagery = imagery; - - //Update Map Background - AzureImagery = new IgbAzureMapsImagery - { - ApiKey = AzureKey, - ImageryStyle = AzureMapsImageryStyle.DarkGrey - }; - } + "type": "GeographicTileSeries", + "name": "imagerySeries", + "$setInCode": { + "tileImagery": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "tileImagery": [ + "angular", + "react", + "webComponents" + ] + }, + "tileImagery": { + "type": "AzureMapsImagery", + "name": "trafficImagery", + "apiKey": "YOUR_AZURE_MAPS_API_KEY", + "imageryStyle": "TrafficAbsoluteOverlay" + } + } + ], + "$type": [ + "+doc:bindingImports", + "+doc:bindingFields", + "+doc:bindingInit", + "+doc:bindingCode" + ] } ``` - - ## Properties The following table summarizes properties of the class: diff --git a/docs/xplat/src/content/en/components/geo-map-display-esri-imagery.mdx b/docs/xplat/src/content/en/components/geo-map-display-esri-imagery.mdx index 2dd6dc4a2b..197f9bd847 100644 --- a/docs/xplat/src/content/en/components/geo-map-display-esri-imagery.mdx +++ b/docs/xplat/src/content/en/components/geo-map-display-esri-imagery.mdx @@ -29,16 +29,67 @@ The following code snippet shows how to display {Platform} geographic imagery ti ```json-snippet source="/maps/geo-map/display-esri-imagery" { "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "oceansMap", "height": "100%", "width": "100%", "zoomable": true, "backgroundContent": { "type": "ArcGISOnlineMapImagery", - "mapServerUri": "https://services.arcgisonline.com/ArcGIS/rest/services/Ocean_Basemap/MapServer" - } + "name": "oceansMapImagery", + "mapServerUri": "https://services.arcgisonline.com/arcgis/rest/services/Ocean/World_Ocean_Base/MapServer" + }, + "$type": "+doc:markup" } ``` +```json-snippet source="/maps/geo-map/display-esri-imagery" channel="bindingImports...bindingFields,bindingInit,bindingCode" exclude="Blazor,Xaml" +{ + "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "oceansMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "ArcGISOnlineMapImagery", + "name": "oceansMapImagery", + "mapServerUri": "https://services.arcgisonline.com/arcgis/rest/services/Ocean/World_Ocean_Base/MapServer" + }, + "$type": [ + "+doc:bindingImports", + "+doc:bindingFields", + "+doc:bindingInit", + "+doc:bindingCode" + ] +} +``` ## Esri Utility Alternatively, you can use the [EsriUtility](./geo-map-resources-esri.mdx) which defines all styles provided by Esri imagery servers. diff --git a/docs/xplat/src/content/en/components/geo-map-display-heat-imagery.mdx b/docs/xplat/src/content/en/components/geo-map-display-heat-imagery.mdx index 7ae3f279d4..9ef3b4bcf9 100644 --- a/docs/xplat/src/content/en/components/geo-map-display-heat-imagery.mdx +++ b/docs/xplat/src/content/en/components/geo-map-display-heat-imagery.mdx @@ -90,321 +90,66 @@ export default {} as typeof Worker & (new () => Worker); ``` -## Dependencies - - - - - - - - - - - -```ts -import Worker from "./heatworker.worker" - -import { IgrGeographicMapImagery } from 'igniteui-react-maps'; -import { IgrHeatTileGenerator } from 'igniteui-react-core'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicTileSeries } from 'igniteui-react-maps'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; -import { IgrTileGeneratorMapImagery } from 'igniteui-react-maps'; -import { IgrShapeDataSource } from 'igniteui-react-core'; -// ... -IgrDataChartInteractivityModule.register(); -IgrGeographicMapModule.register(); -``` - - - - - - - - - -```ts -import { IgxHeatTileGenerator } from 'igniteui-angular-core'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxTileGeneratorMapImagery } from 'igniteui-angular-maps'; -``` - - - - - - +## Dependencies -```ts -import Worker from "./heatworker.worker" - -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcGeographicMapComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicTileSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -import { IgcHeatTileGenerator } from 'igniteui-webcomponents-core'; -import { IgcTileGeneratorMapImagery } from 'igniteui-webcomponents-maps'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -ModuleManager.register( - IgcDataChartInteractivityModule, - IgcGeographicMapModule -); +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/display-heat-imagery" channel="bindingImports,handlersImports" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map", + "height": "100%", + "width": "100%", + "zoomable": true + } + }, + "onViewInit": [ + "MapDisplayHeatImageryOnViewInit" + ] +} ``` - - ## Creating Heatmap The following code snippet shows how to display a population based heat-map in the {ProductName} map component: - - - - - - -```html - - - -``` - - - - - -```ts -@ViewChild("map", { static: true }) -public map: IgxGeographicMapComponent; -public data: any[]; -public tileImagery: IgxTileGeneratorMapImagery; -// ... -constructor() { - this.data = this.initData(); - - this.tileImagery = new IgxTileGeneratorMapImagery(); - - const con: IgxShapeDataSource = new IgxShapeDataSource(); - con.importCompleted.subscribe((s, e) => { - const data = con.getPointData(); - const lat: number[] = []; - const lon: number[] = []; - const val: number[] = []; - for (let i = 0; i < data.length; i++) { - const item = data[i]; - for (let j = 0; j < item.points.length; j++) { - const pointsList = item.points[j]; - for (let k = 0; k < pointsList.length; k++) { - lat.push(pointsList[k].y); - lon.push(pointsList[k].x); - } - } - const value = item.fieldValues["POP_2010"]; - if (value >= 0) { - val.push(value); - } else { - val.push(0); - } +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/display-heat-imagery" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map", + "$type": "+doc:markup", + "height": "100%", + "width": "100%", + "zoomable": true } - - const gen = new IgxHeatTileGenerator(); - gen.xValues = lon; - gen.yValues = lat; - gen.values = val; - gen.blurRadius = 6; - gen.maxBlurRadius = 20; - gen.useBlurRadiusAdjustedForZoom = true; - gen.minimumColor = "rgba(100,255, 0, 0.3922)"; - gen.maximumColor = "rgba(255, 255, 0, 0.9412)"; - gen.useGlobalMinMax = true; - gen.useGlobalMinMaxAdjustedForZoom = true; - gen.useLogarithmicScale = true; - gen.useWebWorkers = true; - gen.webWorkerInstance = new Worker("../heatworker.worker", { type: "module" }); - gen.scaleColors = [ - "rgba(0, 0, 255, 64)", - "rgba(0, 255, 255, 96)", - "rgba(0, 255, 0, 160)", - "rgba(255, 255, 0, 180)", - "rgba(255, 0, 0, 200)" - ]; - - this.tileImagery.tileGenerator = gen; - }); - con.shapefileSource = "assets/Shapes/AmericanCities.shp"; - con.databaseSource = "assets/Shapes/AmericanCities.dbf"; - con.dataBind(); + }, + "onViewInit": [ + "MapDisplayHeatImageryOnViewInit" + ] } ``` - - - - - - - - - -```ts -public map: IgrGeographicMap; -public tileImagery: IgrTileGeneratorMapImagery = null; -// ... -constructor(props: any) { - super(props); - this.onMapReferenced = this.onMapReferenced.bind(this); - this.onDataLoaded = this.onDataLoaded.bind(this); - this.tileImagery = new IgrTileGeneratorMapImagery(); - this.state = { tileImagery: null } -} - -public onMapReferenced(map: IgrGeographicMap) { - this.map = map; - - const url = process.env.PUBLIC_URL; - const sds: IgrShapeDataSource = new IgrShapeDataSource(); - sds.importCompleted = this.onDataLoaded; - sds.shapefileSource = url + "/Shapes/AmericanCities.shp"; - sds.databaseSource = url + "/Shapes/AmericanCities.dbf"; - sds.dataBind(); -} - -public onDataLoaded(sds: IgrShapeDataSource, e: any) { - let records = sds.getPointData(); - let latArray: number[] = []; - let lonArray: number[] = []; - let popArray: number[] = []; - - for (let r = 0; r < records.length; r++) { - let record = records[r]; - for (let j = 0; j < record.points.length; j++) { - let points = record.points[j]; - for (let k = 0; k < points.length; k++) { - latArray.push(points[k].y); - lonArray.push(points[k].x); - } +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/display-heat-imagery" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map", + "height": "100%", + "width": "100%", + "zoomable": true } - let value = parseInt(record.fieldValues["POP2010"], 10); - if (value >= 0) { - popArray.push(value); - } else { - popArray.push(0); - } - } - - const gen = new IgrHeatTileGenerator(); - gen.xValues = lonArray; - gen.yValues = latArray; - gen.values = popArray; - gen.blurRadius = 6; - gen.maxBlurRadius = 20; - gen.useBlurRadiusAdjustedForZoom = true; - gen.minimumColor = "rgba(100, 255, 0, 0.4)"; - gen.maximumColor = "rgba(255, 255, 0, 0.95)"; - gen.scaleColors = ["rgba(0, 0, 255, 64)", "rgba(0, 255, 255, 96)", "rgba(0, 255, 0, 160)", "rgba(255, 255, 0, 180)", "rgba(255, 0, 0, 200)"]; - gen.useGlobalMinMax = true; - gen.useGlobalMinMaxAdjustedForZoom = true; - gen.useLogarithmicScale = true; - gen.useWebWorkers = true; - gen.webWorkerInstance = new Worker(); - - this.tileImagery.tileGenerator = gen; - this.setState({ tileImagery: this.tileImagery }); + }, + "onViewInit": [ + "MapDisplayHeatImageryOnViewInit" + ] } ``` - - - - -```tsx - - - -``` - - - - - -```ts -private geoMap: IgcGeographicMapComponent; -public tileImagery: IgcTileGeneratorMapImagery; - -constructor() { - super(); - this.tileImagery = new IgcTileGeneratorMapImagery(); - this.onDataLoaded = this.onDataLoaded.bind(this); -} - -connectedCallback() { - this.innerHTML = templateHTML; - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - this.geoMap.zoomToGeographic({ left: -134.5, top: 16.0, width: 70.0, height: 37.0 }); - - const url = AssetsUtils.getAssetsPath() + "/data/UsaCitiesPopulation.csv"; - console.log("SB loading " + url); - fetch(url) - .then((response) => response.text()) - .then(data => this.onDataLoaded(data)); -} - -public onDataLoaded(csvData: string) { - const csvLines = csvData.split("\n"); - console.log("loaded UsaCitiesPopulation.csv " + csvLines.length); - const latitudes: number[] = []; - const longitudes: number[] = []; - const populations: number[] = []; - // parsing CSV data and creating geographic locations - for (let i = 1; i < csvLines.length; i++) { - const columns = csvLines[i].split(","); - latitudes.push(Number(columns[1])); - longitudes.push(Number(columns[2])); - populations.push(Number(columns[3])); - } - // generating heat map imagery tiles - const gen = new IgcHeatTileGenerator(); - gen.xValues = longitudes; - gen.yValues = latitudes; - gen.values = populations; - gen.blurRadius = 6; - gen.maxBlurRadius = 20; - gen.useBlurRadiusAdjustedForZoom = true; - gen.minimumColor = "rgba(100, 255, 0, 0.5)"; - gen.maximumColor = "rgba(255, 255, 0, 0.5)"; - gen.useGlobalMinMax = true; - gen.useGlobalMinMaxAdjustedForZoom = true; - gen.useLogarithmicScale = true; - gen.useWebWorkers = true; - gen.webWorkerInstance = new Worker(); - gen.scaleColors = [ - "rgba(0, 0, 255, .251)", "rgba(0, 255, 255, .3765)", - "rgba(50,205,50, .2675)", "rgba(255, 255, 0, .7059)", - "rgba(255, 0, 0, .7843)" - ]; - this.tileImagery.tileGenerator = gen; - // generating heat map series - const series = new IgcGeographicTileSeriesComponent(); - series.tileImagery = this.tileImagery; - // add heat map series to the map - this.geoMap.series.add(series); -} -``` - - - ## API References diff --git a/docs/xplat/src/content/en/components/geo-map-display-osm-imagery.mdx b/docs/xplat/src/content/en/components/geo-map-display-osm-imagery.mdx index 02aaf956d6..08668175ae 100644 --- a/docs/xplat/src/content/en/components/geo-map-display-osm-imagery.mdx +++ b/docs/xplat/src/content/en/components/geo-map-display-osm-imagery.mdx @@ -30,12 +30,63 @@ This code example explicitly sets to triangulation data representing surface temperatures in the world. - - - - - - -```tsx -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicScatterAreaSeries } from 'igniteui-react-maps'; -import { IgrCustomPaletteColorScale } from 'igniteui-react-charts'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; -import { IgrShapeDataSource } from 'igniteui-react-core'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); -// ... - -public render() { - return ( - - ); -} -``` - - - - - -```ts -public onMapReferenced(map: IgrGeographicMap) { - this.geoMap = map; - - const sds = new IgrShapeDataSource(); - sds.importCompleted = this.onDataLoaded; - sds.shapefileSource = "/Shapes/WorldTemperatures.shp"; - sds.databaseSource = "/Shapes/WorldTemperatures.dbf"; - sds.dataBind(); -} - -public onDataLoaded(sds: IgrShapeDataSource, e: any) { - const contourPoints: any[] = []; - for (const record of sds.getPointData()) { - const temp = record.fieldValues.Contour; - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.length; i++) { - if (i % 5 === 0) { - const point = shapes[i]; - const item = { lon: point.x, lat: point.y, value: temp}; - contourPoints.push(item); - } - } - } - } - } - - this.createAreaSeries(contourPoints); -} - -public createAreaSeries(data: any[]) +```json-snippet channel="code" source="/maps/geo-map/type-scatter-area-series" { - const brushes = [ - "rgba(32, 146, 252, 0.5)", - "rgba(14, 194, 14, 0.5)", - "rgba(252, 120, 32, 0.5)", - "rgba(252, 32, 32, 0.5)", - ]; - - const colorScale = new IgrCustomPaletteColorScale({}); - colorScale.palette = brushes; - colorScale.minimumValue = 0; - colorScale.maximumValue = 30; - - const areaSeries = new IgrGeographicScatterAreaSeries( { name: "areaSeries" }); - areaSeries.dataSource = data; - areaSeries.longitudeMemberPath = "lon"; - areaSeries.latitudeMemberPath = "lat"; - areaSeries.colorMemberPath = "value"; - areaSeries.colorScale = colorScale; - - this.geoMap.series.add(areaSeries); -} -``` - - - - - - - - - -```html -
- - -
- - -
- - Degrees: {{item.value}} "°F" - -
- - Longitude: {{item.lon}} - -
- - Latitude: {{item.lat}} - -
-
-``` - -
- - - -```ts -import { AfterViewInit, Component, TemplateRef, ViewChild } from "@angular/core"; -import { IgxCustomPaletteColorScaleComponent } from 'igniteui-angular-charts'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxGeographicScatterAreaSeriesComponent } from 'igniteui-angular-maps'; - -@Component({ - selector: "app-map-geographic-scatter-area-series", - styleUrls: ["./map-geographic-scatter-area-series.component.scss"], - templateUrl: "./map-geographic-scatter-area-series.component.html" -}) -export class MapTypeScatterAreaSeriesComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - @ViewChild ("template") - public tooltipTemplate: TemplateRef; - constructor() { - } - - public ngAfterViewInit(): void { - const sds = new IgxShapeDataSource(); - sds.shapefileSource = "assets/Shapes/WorldTemperatures.shp"; - sds.databaseSource = "assets/Shapes/WorldTemperatures.dbf"; - sds.dataBind(); - sds.importCompleted.subscribe(() => this.onDataLoaded(sds, "")); -} - - public onDataLoaded(sds: IgxShapeDataSource, e: any) { - const shapeRecords = sds.getPointData(); - const contourPoints: any[] = []; - for (const record of shapeRecords) { - const temp = record.fieldValues.Contour; - // using only major contours (every 10th degrees Celsius) - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.length; i++) { - if (i % 5 === 0) { - const p = shapes[i]; - const item = { lon: p.x, lat: p.y, value: temp}; - contourPoints.push(item); - } - } - } - } - } - this.createContourSeries(contourPoints); -} - - public createContourSeries(data: any[]) { - const brushes = [ - "rgba(32, 146, 252, 0.5)", // semi-transparent blue - "rgba(14, 194, 14, 0.5)", // semi-transparent green - "rgba(252, 120, 32, 0.5)", // semi-transparent orange - "rgba(252, 32, 32, 0.5)" // semi-transparent red - ]; - - const colorScale = new IgxCustomPaletteColorScaleComponent(); - colorScale.palette = brushes; - colorScale.minimumValue = 0; - colorScale.maximumValue = 30; - - const areaSeries = new IgxGeographicScatterAreaSeriesComponent(); - areaSeries.dataSource = data; - areaSeries.longitudeMemberPath = "lon"; - areaSeries.latitudeMemberPath = "lat"; - areaSeries.colorMemberPath = "value"; - areaSeries.colorScale = colorScale; - areaSeries.tooltipTemplate = this.tooltipTemplate; - areaSeries.thickness = 4; - - this.map.series.add(areaSeries); -} -} -``` - - - - - -```html - - - -``` - - - - - -```ts -import { IgcCustomPaletteColorScaleComponent } from 'igniteui-webcomponents-charts'; -import { IgcGeographicScatterAreaSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -//... -connectedCallback() { - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - - const sds = new IgcShapeDataSource(); - sfc.importCompleted = this.onDataLoaded; - sfc.shapefileSource = "../shapes/WorldTemperatures.shp"; - sfc.databaseSource = "../shapes/WorldTemperatures.dbf"; -} - -onDataLoaded(sds: IgcShapeDataSource, e: any) { - const shapeRecords = sds.getPointData(); - const contourPoints: any[] = []; - for (const record of shapeRecords) { - const temp = record.fieldValues.Contour; - // using only major contours (every 10th degrees Celsius) - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.count; i++) { - if (i % 5 === 0) { - const point = shapes[i]; - const item = { lon: point.x, lat: point.y, value: temp }; - contourPoints.push(item); - } - } + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicScatterAreaSeries", + "name": "areaSeries", + "dataSourceRef": "WorldTemperatures", + "longitudeMemberPath": "Lon", + "latitudeMemberPath": "Lat", + "colorMemberPath": "Value", + "colorScale": { + "type": "CustomPaletteColorScale", + "palette": [ + "rgba(32, 146, 252, 0.5)", + "rgba(14, 194, 14, 0.5)", + "rgba(252, 120, 32, 0.5)", + "rgba(252, 32, 32, 0.5)" + ], + "minimumValue": 0, + "maximumValue": 30 } } - } - - this.createAreaSeries(contourPoints); -} - -createAreaSeries(data: any[]) { - const brushes = [ - "rgba(32, 146, 252, 0.5)", // semi-transparent blue - "rgba(14, 194, 14, 0.5)", // semi-transparent green - "rgba(252, 120, 32, 0.5)", // semi-transparent orange - "rgba(252, 32, 32, 0.5)", // semi-transparent red - ]; - - const colorScale = new IgcCustomPaletteColorScaleComponent(); - colorScale.palette = brushes; - colorScale.minimumValue = 0; - colorScale.maximumValue = 30; - - const areaSeries = new IgcGeographicScatterAreaSeriesComponent(); - areaSeries.dataSource = data; - areaSeries.longitudeMemberPath = "lon"; - areaSeries.latitudeMemberPath = "lat"; - areaSeries.colorMemberPath = "value"; - areaSeries.colorScale = colorScale; - - this.geoMap.series.add(areaSeries); + ] } ``` - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - - - - -@code { - - private List Data; - private CustomPaletteColorScale ColorScale; - - protected override void OnInitialized() - { - var brushes = ""; - brushes += "rgba(32, 146, 252, 0.5) "; // semi-transparent blue - brushes += "rgba(14, 194, 14, 0.5) "; // semi-transparent green - brushes += "rgba(252, 120, 32, 0.5) "; // semi-transparent orange - brushes += "rgba(252, 32, 32, 0.5) "; // semi-transparent red - - this.ColorScale = new CustomPaletteColorScale(); - this.ColorScale.Palette = brushes; - this.ColorScale.MinimumValue = 0; - this.ColorScale.MaximumValue = 30; - - this.Data = WorldTemperatures.Load(); - } -} -``` - - - ## API References diff --git a/docs/xplat/src/content/en/components/geo-map-type-scatter-contour-series.mdx b/docs/xplat/src/content/en/components/geo-map-type-scatter-contour-series.mdx index f67dcc84db..2457f94853 100644 --- a/docs/xplat/src/content/en/components/geo-map-type-scatter-contour-series.mdx +++ b/docs/xplat/src/content/en/components/geo-map-type-scatter-contour-series.mdx @@ -58,322 +58,38 @@ The following table list properties of the CustomPaletteColorScale affecting the The following code shows how to bind the to triangulation data representing surface temperatures in the world. - - - - - - -```tsx -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicContourLineSeries } from 'igniteui-react-maps'; -import { IgrValueBrushScale } from 'igniteui-react-charts'; -import { IgrCustomPaletteColorScale } from 'igniteui-react-charts'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; -import { IgrShapeDataSource } from 'igniteui-react-core'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); -// ... - -public render() { - return ( - - ); -} -``` - - - - - -```ts -public onMapReferenced(map: IgrGeographicMap) { - this.geoMap = map; - this.geoMap.windowRect = { left: 0.2, top: 0.1, width: 0.6, height: 0.6 }; - const sds = new IgrShapeDataSource(); - sds.importCompleted = this.onDataLoaded; - sds.shapefileSource = "/Shapes/WorldTemperatures.shp"; - sds.databaseSource = "/Shapes/WorldTemperatures.dbf"; - sds.dataBind(); -} - -public onDataLoaded(sds: IgrShapeDataSource, e: any) { - const contourPoints: any[] = []; - for (const record of sds.getPointData()) { - const temp = record.fieldValues.Contour; - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.length; i++) { - if (i % 5 === 0) { - const p = shapes[i]; - const item = { lon: p.x, lat: p.y, value: temp}; - contourPoints.push(item); - } - } - } - } - } - - this.createContourSeries(contourPoints); -} - -public createContourSeries(data: any[]) +```json-snippet channel="code" source="/maps/geo-map/type-scatter-contour-series" { - const brushes = [ - "rgba(32, 146, 252, 0.5)", - "rgba(14, 194, 14, 0.5)", - "rgba(252, 120, 32, 0.5)", - "rgba(252, 32, 32, 0.5)", - ]; - - const brushScale = new IgrValueBrushScale({}); - brushScale.brushes = brushes; - brushScale.minimumValue = 0; - brushScale.maximumValue = 30; - - const contourSeries = new IgrGeographicContourLineSeries( { name: "contourSeries" }); - contourSeries.dataSource = data; - contourSeries.longitudeMemberPath = "lon"; - contourSeries.latitudeMemberPath = "lat"; - contourSeries.valueMemberPath = "value"; - contourSeries.fillScale = brushScale; - contourSeries.thickness = 4; - - this.geoMap.series.add(contourSeries); -} -``` - - - - - - - - -```html -
- - -
- - - - {{item | number: 2}} "°C" - - -``` - -
- - - -```ts -import { AfterViewInit, Component, TemplateRef, ViewChild } from "@angular/core"; -import { IgxValueBrushScaleComponent } from 'igniteui-angular-charts'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -import { IgxGeographicContourLineSeriesComponent } from 'igniteui-angular-maps'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; - -@Component({ - selector: "app-map-geographic-scatter-contour-series", - styleUrls: ["./map-geographic-scatter-contour-series.component.scss"], - templateUrl: "./map-geographic-scatter-contour-series.component.html" -}) - -export class MapTypeScatterContourSeriesComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - - @ViewChild ("template") - public tooltip: TemplateRef; - constructor() { - } - - public ngAfterViewInit(): void { - const sds = new IgxShapeDataSource(); - sds.shapefileSource = "assets/Shapes/WorldTemperatures.shp"; - sds.databaseSource = "assets/Shapes/WorldTemperatures.dbf"; - sds.dataBind(); - sds.importCompleted.subscribe(() => this.onDataLoaded(sds, "")); - } - - public onDataLoaded(sds: IgxShapeDataSource, e: any) { - const shapeRecords = sds.getPointData(); - - const contourPoints: any[] = []; - for (const record of shapeRecords) { - const temp = record.fieldValues.Contour; - // using only major contours (every 10th degrees Celsius) - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.length; i++) { - if (i % 5 === 0) { - const p = shapes[i]; - const item = { lon: p.x, lat: p.y, value: temp}; - contourPoints.push(item); - } - } - } + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicContourLineSeries", + "name": "contourSeries", + "dataSourceRef": "WorldTemperatures", + "longitudeMemberPath": "Lon", + "latitudeMemberPath": "Lat", + "valueMemberPath": "Value", + "thickness": 4, + "fillScale": { + "type": "ValueBrushScale", + "brushes": [ + "rgba(32, 146, 252, 0.5)", + "rgba(14, 194, 14, 0.5)", + "rgba(252, 120, 32, 0.5)", + "rgba(252, 32, 32, 0.5)" + ], + "minimumValue": 0, + "maximumValue": 30 } } - - this.createContourSeries(contourPoints); - } - - public createContourSeries(data: any[]) { - const brushes = [ - "rgba(32, 146, 252, 0.5)", // semi-transparent blue - "rgba(14, 194, 14, 0.5)", // semi-transparent green - "rgba(252, 120, 32, 0.5)", // semi-transparent orange - "rgba(252, 32, 32, 0.5)" // semi-transparent red - ]; - - const brushScale = new IgxValueBrushScaleComponent(); - brushScale.brushes = brushes; - brushScale.minimumValue = 0; - brushScale.maximumValue = 30; - - const contourSeries = new IgxGeographicContourLineSeriesComponent(); - contourSeries.dataSource = data; - contourSeries.longitudeMemberPath = "lon"; - contourSeries.latitudeMemberPath = "lat"; - contourSeries.valueMemberPath = "value"; - contourSeries.fillScale = brushScale; - contourSeries.tooltipTemplate = this.tooltip; - contourSeries.thickness = 4; - - this.map.series.add(contourSeries); - } -} -``` - - - - - -```html - - - -``` - - - - - -```ts -import { IgcGeographicContourLineSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcValueBrushScaleComponent } from 'igniteui-webcomponents-charts'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -//... -connectedCallback() { - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - - const sfc = new IgcShapeDataSource(); - sfc.importCompleted = this.onDataLoaded; - sfc.shapefileSource = "../shapes/WorldTemperatures.shp"); - sfc.databaseSource = "../shapes/WorldTemperatures.dbf"); -} - -onDataLoaded(sds: IgcShapeDataSource, e: any) { - const shapeRecords = sds.getPointData(); - const contourPoints: any[] = []; - for (const record of shapeRecords) { - const temp = record.fieldValues.Contour; - // using only major contours (every 10th degrees Celsius) - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.count; i++) { - if (i % 5 === 0) { - const point = shapes[i]; - const item = { lon: point.x, lat: point.y, value: temp }; - contourPoints.push(item); - } - } - } - } - } - this.createContourSeries(contourPoints); -} - -createContourSeries(data: any[]) -{ - const brushes = [ - "rgba(32, 146, 252, 0.5)", // semi-transparent blue - "rgba(14, 194, 14, 0.5)", // semi-transparent green - "rgba(252, 120, 32, 0.5)", // semi-transparent orange - "rgba(252, 32, 32, 0.5)", // semi-transparent red - ]; - - const brushScale = new IgcValueBrushScaleComponent(); - brushScale.brushes = brushes; - brushScale.minimumValue = 0; - brushScale.maximumValue = 30; - - const contourSeries = new IgcGeographicContourLineSeriesComponent(); - contourSeries.dataSource = data; - contourSeries.longitudeMemberPath = "lon"; - contourSeries.latitudeMemberPath = "lat"; - contourSeries.valueMemberPath = "value"; - contourSeries.fillScale = brushScale; - contourSeries.thickness = 4; - - this.geoMap.series.add(contourSeries); + ] } ``` - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - - - - -@code { - private List Data; - private ValueBrushScale BrushScale; - - protected override void OnInitialized() - { - var brushes = ""; - brushes += "rgba(32, 146, 252, 0.5) "; // semi-transparent blue - brushes += "rgba(14, 194, 14, 0.5) "; // semi-transparent green - brushes += "rgba(252, 120, 32, 0.5) "; // semi-transparent orange - brushes += "rgba(252, 32, 32, 0.5) "; // semi-transparent red - - this.BrushScale = new ValueBrushScale(); - this.BrushScale.Brushes = brushes; - this.BrushScale.MinimumValue = 0; - this.BrushScale.MaximumValue = 30; - - this.Data = WorldTemperatures.Load(); - } -} -``` - - - ## API References diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-markers.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-markers.mdx index 8cc25e1fdf..2ce41298c7 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-markers.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-markers.mdx @@ -66,9 +66,26 @@ import PlatformBlock from 'docs-template/components/mdx/PlatformBlock.astro'; ```json-snippet { - "type": "LineSeries", - "markerType": "Circle", - "markerSize": null + "type": "DataChart", + "axes": [ + { "type": "CategoryXAxis", "name": "xAxis", "dataSourceRef": "CountryRenewableElectricity", "label": "Year" }, + { "type": "NumericYAxis", "name": "yAxis" } + ], + "series": [ + { + "type": "LineSeries", + "$type": "+doc:markup", + "$comment": "...", + "$markerType": "+doc:markup", + "$markerSize": "+doc:markup", + "xAxisRef": "xAxis", + "yAxisRef": "yAxis", + "dataSourceRef": "CountryRenewableElectricity", + "valueMemberPath": "America", + "markerType": "Circle", + "markerSize": null + } + ] } ``` diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-overlays.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-overlays.mdx index 8cae2cd87a..4a9fa19eb9 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-overlays.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-overlays.mdx @@ -84,27 +84,92 @@ import Badge from 'igniteui-astro-components/components/mdx/Badge.astro'; このコード例は、、および 上のオーバーレイ テキストのスタイルを設定およびカスタマイズする方法を示しています。 -```json-snippet +```json-snippet channel="auto" source="/charts/data-chart/data-annotation-multiple-with-overlay-text" { - "type": "DataAnnotationSliceLayer", - "name": "AnnoLayer", - "brush": "green", - "thickness": 2, - "annotationTextColor": "white", - "annotationLabelMemberPath": "Label", - "annotationValueMemberPath": "Value", - "overlayText": "OverlayText on DataAnnotationSliceLayer", - "overlayTextMemberPath": "Label", - "overlayTextLocation": "OutsideBottomCenter", - "overlayTextColor": "red", - "overlayTextBackground": "green", - "overlayTextBorderColor": "black", - "overlayTextBorderThickness": 1, - "overlayTextBorderRadius": 4, - "overlayTextHorizontalMargin": 0, - "overlayTextHorizontalPadding": 2, - "overlayTextVerticalMargin": 20, - "overlayTextVerticalPadding": 2 + "type": "DataChart", + "name": "chart", + "plotAreaMarginBottom": 50, + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "dataSourceRef": "StockTesla", + "label": "Date", + "labelTopMargin": 5, + "labelBottomMargin": 15 + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "labelExtent": 60, + "labelHorizontalAlignment": "Center", + "labelRightMargin": 5, + "minimumValue": 0, + "maximumValue": 550 + } + ], + "series": [ + { + "type": "LineSeries", + "name": "series1", + "title": "Stock Price", + "xAxisRef": "xAxis", + "yAxisRef": "yAxis", + "dataSourceRef": "StockTesla", + "valueMemberPath": "Open", + "showDefaultTooltip": true, + "markerType": "None", + "brush": "black" + }, + { + "type": "ValueOverlay", + "name": "valueOverlay", + "value": 435, + "brush": "green", + "isAxisAnnotationEnabled": true, + "thickness": 2, + "dashArray": [ 2, 4 ], + "axisRef": "yAxis", + "overlayText": "OverlayText on ValueOverlay", + "overlayTextLocation": "OutsideBottomCenter" + }, + { + "type": "ValueLayer", + "name": "valueLayer", + "valueMode": "Average", + "brush": "purple", + "thickness": 2, + "dashArray": [ 2, 4 ], + "targetAxisRef": "yAxis", + "isAxisAnnotationEnabled": true, + "overlayText": "OverlayText on ValueLayer (Average)", + "overlayTextLocation": "OutsideBottomCenter" + }, + { + "type": "DataAnnotationSliceLayer", + "$type": { "blazor": "+doc:code", "default": "+doc:markup" }, + "name": "AnnoLayer", + "dataSourceRef": "AnnotationSliceMultiOverlayData", + "targetAxisRef": "yAxis", + "brush": "green", + "thickness": 2, + "annotationTextColor": "white", + "annotationLabelMemberPath": "Label", + "annotationValueMemberPath": "Value", + "overlayText": "OverlayText on DataAnnotationSliceLayer", + "overlayTextMemberPath": "Label", + "overlayTextLocation": "OutsideBottomCenter", + "overlayTextColor": "red", + "overlayTextBackground": "green", + "overlayTextBorderColor": "black", + "overlayTextBorderThickness": 1, + "overlayTextBorderRadius": 4, + "overlayTextHorizontalMargin": 0, + "overlayTextHorizontalPadding": 2, + "overlayTextVerticalMargin": 20, + "overlayTextVerticalPadding": 2 + } + ] } ``` diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-data-model.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-data-model.mdx index 94e3579e83..08ae648699 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-data-model.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-data-model.mdx @@ -41,394 +41,48 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## コード スニペット 以下のコードは、 を、経度と緯度の座標を使用して格納された世界の一部の都市の地理的位置を含むカスタム データ モデルにバインドする方法を示します。また、[WorldUtility](./geo-map-resources-world-util.mdx) を使用してこれらの場所間の最短の地理的経路をプロットするために を使用します。 - - -```html -
- - -
- - -
- - {{item.country}} - -
-
- - -
- - Departure: {{item.origin.country}} - -
- - Arrival: {{item.dest.country}} - -
-
-``` - -
- - - -```ts -import { IgrGeographicSymbolSeries } from 'igniteui-react-maps'; -import { IgrGeographicPolylineSeries } from 'igniteui-react-maps'; -import WorldUtils from "./WorldUtils" ; -// ... - -constructor(props: any) { - super(props); - - const cityDAL = { lat: 32.763, lon: -96.663, country: "US", name: "Dallas" }; - const cityNZL = { lat: -36.848, lon: 174.763, country: "New Zealand", name:"Auckland" }; - const cityCHL = { lat: -33.475, lon: -70.647, country: "Chile", name:"Santiago" }; - const cityJAP = { lat: 35.683, lon: 139.809, country: "Japan", name: "Tokyo" } - const citySNG = { lat: 1.229, lon: 104.177, country: "Singapore", name:"Singapore" }; - const cityMOS = { lat: 55.750, lon: 37.700, country: "Russia", name: "Moscow"}; - - this.flights = [ - { origin: cityDAL, dest: citySNG, color: "Green" }, - { origin: cityMOS, dest: cityNZL, color: "Red" }, - { origin: cityCHL, dest: cityJAP, color: "Blue" }, - ]; - - for (const flight of this.flights) { - this.createPolylineSeries(flight); - this.createSymbolSeries(flight); - } -} - -public createSymbolSeries(flight: any) +```json-snippet source="/maps/geo-map/binding-data-model" { - const geoLocations = [flight.origin, flight.dest ]; - const symbolSeries = new IgrGeographicSymbolSeries ( { name: "symbolSeries" }); - symbolSeries.dataSource = geoLocations; - symbolSeries.markerType = MarkerType.Circle; - symbolSeries.latitudeMemberPath = "lat"; - symbolSeries.longitudeMemberPath = "lon"; - symbolSeries.markerBrush = "White"; - symbolSeries.markerOutline = flight.color; - symbolSeries.thickness = 1; - this.geoMap.series.add(symbolSeries); -} - -public createPolylineSeries(flight: any) -{ - const geoPath = WorldUtils.calcPaths(flight.origin, flight.dest); - const geoDistance = WorldUtils.calcDistance(flight.origin, flight.dest); - const geoRoutes = [ { points: geoPath } ]; - const lineSeries = new IgrGeographicPolylineSeries ( { name: "lineSeries" }); - lineSeries.dataSource = geoRoutes; - lineSeries.shapeMemberPath = "points"; - lineSeries.shapeStrokeThickness = 9; - lineSeries.shapeOpacity = 0.5; - lineSeries.shapeStroke = flight.color; - this.geoMap.series.add(lineSeries); -} -``` - - - - - -```ts -import { AfterViewInit, Component, TemplateRef, ViewChild } from "@angular/core"; -import { MarkerType } from 'igniteui-angular-charts'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxGeographicPolylineSeriesComponent } from "igniteui-angular-maps"; -import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps'; -import { WorldUtils } from "../../utilities/WorldUtils"; - -@Component({ - selector: "app-map-binding-geographic-data-models", - styleUrls: ["./map-binding-geographic-data-models.component.scss"], - templateUrl: "./map-binding-geographic-data-models.component.html" -}) - -export class MapBindingDataModelComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - @ViewChild("pointSeriesTemplate") - public pointSeriesTemplate: TemplateRef; - @ViewChild("polylineSeriesTooltipTemplate") - public polylineSeriesTooltipTemplate: TemplateRef; - public flights: any[]; - constructor() { - } - - public ngAfterViewInit(): void { - const cityDAL = { lat: 32.763, lon: -96.663, country: "US", name: "Dallas" }; - const citySYD = { lat: -33.889, lon: 151.028, country: "Australia", name: "Sydney" }; - const cityNZL = { lat: -36.848, lon: 174.763, country: "New Zealand", name: "Auckland" }; - const cityQTR = { lat: 25.285, lon: 51.531, country: "Qatar", name: "Doha" }; - const cityPAN = { lat: 8.949, lon: -79.400, country: "Panama", name: "Panama" }; - const cityCHL = { lat: -33.475, lon: -70.647, country: "Chile", name: "Santiago" }; - const cityJAP = { lat: 35.683, lon: 139.809, country: "Japan", name: "Tokyo" }; - const cityALT = { lat: 33.795, lon: -84.349, country: "US", name: "Atlanta" }; - const cityJOH = { lat: -26.178, lon: 28.004, country: "South Africa", name: "Johannesburg" }; - const cityNYC = { lat: 40.750, lon: -74.0999, country: "US", name: "New York" }; - const citySNG = { lat: 1.229, lon: 104.177, country: "Singapore", name: "Singapore" }; - const cityMOS = { lat: 55.750, lon: 37.700, country: "Russia", name: "Moscow" }; - const cityROM = { lat: 41.880, lon: 12.520, country: "Italy", name: "Roma" }; - const cityLAX = { lat: 34.000, lon: -118.25, country: "US", name: "Los Angeles" }; - - this.flights = [ - { origin: cityDAL, dest: citySNG, color: "Green" }, - { origin: cityMOS, dest: cityNZL, color: "Red" }, - { origin: cityCHL, dest: cityJAP, color: "Blue" }, - { origin: cityPAN, dest: cityROM, color: "Orange" }, - { origin: cityALT, dest: cityJOH, color: "Black" }, - { origin: cityNYC, dest: cityQTR, color: "Purple" }, - { origin: cityLAX, dest: citySYD, color: "Gray" } - ]; - - for (const flight of this.flights) { - this.createPolylineSeries(flight); - this.createSymbolSeries(flight); + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "$type": "+doc:markup", + "height": "100%", + "width": "100%", + "zoomable": true } - } - - public createSymbolSeries(flight: any) { - const geoLocations = [flight.origin, flight.dest ]; - const symbolSeries = new IgxGeographicSymbolSeriesComponent (); - symbolSeries.dataSource = geoLocations; - symbolSeries.markerType = MarkerType.Circle; - symbolSeries.latitudeMemberPath = "lat"; - symbolSeries.longitudeMemberPath = "lon"; - symbolSeries.markerBrush = "White"; - symbolSeries.markerOutline = flight.color; - symbolSeries.thickness = 1; - symbolSeries.tooltipTemplate = this.pointSeriesTemplate; - - this.map.series.add(symbolSeries); - } - - public createPolylineSeries(flight: any) { - const geoPath = WorldUtils.calcPaths(flight.origin, flight.dest); - const geoDistance = WorldUtils.calcDistance(flight.origin, flight.dest); - const geoRoutes = [ - { - dest: flight.dest, - distance: geoDistance, - origin: flight.origin, - points: geoPath, - time: geoDistance / 850 - }]; - - const lineSeries = new IgxGeographicPolylineSeriesComponent (); - lineSeries.dataSource = geoRoutes; - lineSeries.shapeMemberPath = "points"; - lineSeries.shapeStrokeThickness = 9; - lineSeries.shapeOpacity = 0.5; - lineSeries.shapeStroke = flight.color; - lineSeries.tooltipTemplate = this.polylineSeriesTooltipTemplate; - this.map.series.add(lineSeries); - } + }, + "onViewInit": [ + "MapGeodesicsOnViewInit", + "MapBindingDataModelOnViewInit" + ] } ``` - - - - -```html - - - -``` - - - - - - -```ts -public flights: any[]; - -constructor() { - super(); - - const cityDAL = { lat: 32.763, lon: -96.663, country: "US", name: "Dallas" }; - const citySYD = { lat: -33.889, lon: 151.028, country: "Australia", name: "Sydney" }; - const cityNZL = { lat: -36.848, lon: 174.763, country: "New Zealand", name: "Auckland" }; - const cityQTR = { lat: 25.285, lon: 51.531, country: "Qatar", name: "Doha" }; - const cityPAN = { lat: 8.949, lon: -79.400, country: "Panama", name: "Panama" }; - const cityCHL = { lat: -33.475, lon: -70.647, country: "Chile", name: "Santiago" }; - const cityJAP = { lat: 35.683, lon: 139.809, country: "Japan", name: "Tokyo" }; - const cityALT = { lat: 33.795, lon: -84.349, country: "US", name: "Atlanta" }; - const cityJOH = { lat: -26.178, lon: 28.004, country: "South Africa", name: "Johannesburg" }; - const cityNYC = { lat: 40.750, lon: -74.0999, country: "US", name: "New York" }; - const citySNG = { lat: 1.229, lon: 104.177, country: "Singapore", name: "Singapore" }; - const cityMOS = { lat: 55.750, lon: 37.700, country: "Russia", name: "Moscow" }; - const cityROM = { lat: 41.880, lon: 12.520, country: "Italy", name: "Roma" }; - const cityLAX = { lat: 34.000, lon: -118.25, country: "US", name: "Los Angeles" }; - - this.flights = [ - { origin: cityDAL, dest: citySNG, color: "Green" }, - { origin: cityMOS, dest: cityNZL, color: "Red" }, - { origin: cityCHL, dest: cityJAP, color: "Blue" }, - { origin: cityPAN, dest: cityROM, color: "Orange" }, - { origin: cityALT, dest: cityJOH, color: "Black" }, - { origin: cityNYC, dest: cityQTR, color: "Purple" }, - { origin: cityLAX, dest: citySYD, color: "Gray" }, - ]; -} - -connectedCallback() { - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - - for (const flight of this.flights) { - this.createPolylineSeries(flight); - this.createSymbolSeries(flight); - } -} - -createSymbolSeries(flight: any) +```json-snippet source="/maps/geo-map/binding-data-model" channel="handler" item="MapBindingDataModelOnViewInit" { - const geoLocations = [flight.origin, flight.dest ]; - const symbolSeries = new IgcGeographicSymbolSeriesComponent(); - symbolSeries.dataSource = geoLocations; - symbolSeries.markerType = MarkerType.Circle; - symbolSeries.latitudeMemberPath = "lat"; - symbolSeries.longitudeMemberPath = "lon"; - symbolSeries.markerBrush = "White"; - symbolSeries.markerOutline = flight.color; - symbolSeries.thickness = 1; - this.geoMap.series.add(symbolSeries); -} - -createPolylineSeries(flight: any) -{ - const geoPath = WorldUtils.calcPaths(flight.origin, flight.dest); - const geoDistance = WorldUtils.calcDistance(flight.origin, flight.dest); - - const geoRoutes = [ - { points: geoPath , - origin: flight.origin, - dest: flight.dest, - distance: geoDistance, - time: geoDistance / 850, - }]; - - const lineSeries = new IgcGeographicPolylineSeriesComponent(); - lineSeries.dataSource = geoRoutes; - lineSeries.shapeMemberPath = "points"; - lineSeries.shapeStrokeThickness = 9; - lineSeries.shapeOpacity = 0.5; - lineSeries.shapeStroke = flight.color; - - this.geoMap.series.add(lineSeries); + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true + } + }, + "$onViewInit": "+doc:handler", + "onViewInit": [ + "MapGeodesicsOnViewInit", + "MapBindingDataModelOnViewInit" + ] } ``` - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - @for (int i = 0; i < this.DataSource.Count; i++) - { - FlightInfo info = this.DataSource[i]; - List symbolData = new List() { info.Origin, info.Dest }; - - GeoLocation geoOrigin = new GeoLocation() { Lat = info.Origin.Lat, Lon = info.Origin.Lon }; - GeoLocation geoDest = new GeoLocation() { Lat = info.Dest.Lat, Lon = info.Dest.Lon }; - - List> geoPath = WorldUtils.CalcPaths(geoOrigin, geoDest); - double geoDistance = WorldUtils.CalcDistance(geoOrigin, geoDest); - FlightInfo route = new FlightInfo() - { - Points = geoPath, - Origin = info.Origin, - Dest = info.Dest, - Distance = geoDistance, - Time = geoDistance / 850 - }; - List geoRoute = new List() { route }; - - - - - } - - -@code { - - private List DataSource; - - protected override void OnInitialized() - { - WorldCity cityDAL = new WorldCity() { Lat = 32.763, Lon = -96.663, Country = "US", Name = "Dallas" }; - WorldCity citySYD = new WorldCity() { Lat = -33.889, Lon = 151.028, Country = "Australia", Name = "Sydney" }; - WorldCity cityNZL = new WorldCity() { Lat = -36.848, Lon = 174.763, Country = "New Zealand", Name = "Auckland" }; - WorldCity cityQTR = new WorldCity() { Lat = 25.285, Lon = 51.531, Country = "Qatar", Name = "Doha" }; - WorldCity cityPAN = new WorldCity() { Lat = 8.949, Lon = -79.400, Country = "Panama", Name = "Panama" }; - WorldCity cityCHL = new WorldCity() { Lat = -33.475, Lon = -70.647, Country = "Chile", Name = "Santiago" }; - WorldCity cityJAP = new WorldCity() { Lat = 35.683, Lon = 139.809, Country = "Japan", Name = "Tokyo" }; - WorldCity cityALT = new WorldCity() { Lat = 33.795, Lon = -84.349, Country = "US", Name = "Atlanta" }; - WorldCity cityJOH = new WorldCity() { Lat = -26.178, Lon = 28.004, Country = "South Africa", Name = "Johannesburg" }; - WorldCity cityNYC = new WorldCity() { Lat = 40.750, Lon = -74.0999, Country = "US", Name = "New York" }; - WorldCity citySNG = new WorldCity() { Lat = 1.229, Lon = 104.177, Country = "Singapore", Name = "Singapore" }; - WorldCity cityMOS = new WorldCity() { Lat = 55.750, Lon = 37.700, Country = "Russia", Name = "Moscow" }; - WorldCity cityROM = new WorldCity() { Lat = 41.880, Lon = 12.520, Country = "Italy", Name = "Roma" }; - WorldCity cityLAX = new WorldCity() { Lat = 34.000, Lon = -118.25, Country = "US", Name = "Los Angeles" }; - - this.DataSource = new List() { - new FlightInfo() { Origin = cityDAL, Dest = citySNG, Color = "Green" }, - new FlightInfo() { Origin = cityMOS, Dest = cityNZL, Color = "Red" }, - new FlightInfo() { Origin = cityCHL, Dest = cityJAP, Color = "Blue" }, - new FlightInfo() { Origin = cityPAN, Dest = cityROM, Color = "Orange" }, - new FlightInfo() { Origin = cityALT, Dest = cityJOH, Color = "Black" }, - new FlightInfo() { Origin = cityNYC, Dest = cityQTR, Color = "Purple" }, - new FlightInfo() { Origin = cityLAX, Dest = citySYD, Color = "Gray" }, - }; - } - - public class WorldCity - { - public string Name { get; set; } - public double Lat { get; set; } - public double Lon { get; set; } - public double Pop { get; set; } - public string Country { get; set; } - public bool Cap { get; set; } - } - - public class FlightInfo - { - public string ID { get; set; } - public WorldCity Origin { get; set; } - public WorldCity Dest { get; set; } - public double Time { get; set; } - public double Passengers { get; set; } - public double Distance { get; set; } - public List> Points { get; set; } - public string Color { get; set; } - } -} -``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx index 370606fb7d..2c88943243 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx @@ -501,7 +501,7 @@ public onPointsLoaded(sds: IgcShapeDataSource, e: any) { また形状ファイルがアプリケーションのために十分な地理的文脈 (国の形状など) を提供した際に、地図背景コンテンツで地理的画像を非表示にしたい場合があります。 -```json-snippet +```json-snippet channel="code" { "type": "GeographicMap", "name": "geoMap", diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-sources.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-sources.mdx index b3e68fc226..9047833e0c 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-sources.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-sources.mdx @@ -39,343 +39,261 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; {ProductName} マップに表示するすべての地理的シリーズのデータ​​ソースを作成します。たとえば、[WorldConnections](./geo-map-resources-world-connections.mdx) スクリプトを使用できます。 - - -```html -
- - -
- - -
- - Arrival: {{item.origin.country}} - -
- - Destination: {{item.dest.country}} - -
- - Distance: {{item.distance}} miles - -
-
- - -
- - {{item?.country}} - -
- - {{item?.name}} - -
- - Population: {{item.pop}} M - -
- - Flights: {{item.flights}} - -
-
-``` - -
- - - -```ts -import WorldConnections from "./WorldConnections"; -// .. - -public onMapReferenced(map: IgrGeographicMap) { - this.geoMap = map; - - const worldFlights: any[] = WorldConnections.getFlights(); - const worldAirports: any[] = WorldConnections.getAirports(); - const worldGridlines: any[] = WorldConnections.getGridlines(); - - // create and overlay geographic series here -} -``` - - - - - -```razor -@code { - - public List Airports; - public List Flights; - public List Coordinates; - - protected override void OnInitialized() - { - Airports = WorldConnections.GetAirports(); - Flights = WorldConnections.GetFlights(); - Coordinates = WorldConnections.GetGridlines(); - } +```json-snippet source="/maps/geo-map/binding-multiple-sources" +{ + "type": "GeographicMap", + "name": "geoMap", + "$type": ["+doc:markup", "+doc:bindingCode"], + "$series": "-doc:markup", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "shapeMemberPath": "Points", + "shapeStroke": "rgba(196, 14, 14, 0.05)", + "shapeStrokeThickness": 4 + }, + { + "type": "GeographicPolylineSeries", + "name": "gridSeries", + "dataSourceRef": "WorldGridlines", + "shapeMemberPath": "Points", + "shapeStroke": "Gray", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "dataSourceRef": "WorldAirports", + "latitudeMemberPath": "Lat", + "longitudeMemberPath": "Lon", + "markerType": "Circle", + "markerBrush": "#aad3df", + "markerOutline": "rgb(73, 73, 73)", + "thickness": 1 + } + ] } ``` - - ## フライトのオーバーレイ 主要空港間のフライト接続を持つ最初の オブジェクトを作成し、{ProductName} マップの Series コレクションに追加します。 - - -```html - - -``` - - - - - -```ts -const lineSeries = new IgrGeographicPolylineSeries ( { name: "lineSeries" }); -lineSeries.dataSource = worldFlights; -lineSeries.shapeMemberPath = "points"; -lineSeries.shapeStroke = "rgba(196, 14, 14,0.05)"; -lineSeries.shapeStrokeThickness = 4; -this.geoMap.series.add(lineSeries); -``` - - - - - -```razor - - - +```json-snippet source="/maps/geo-map/binding-multiple-sources" +{ + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "$type": "+doc:markup", + "dataSourceRef": "WorldFlights", + "shapeMemberPath": "Points", + "shapeStroke": "rgba(196, 14, 14, 0.05)", + "shapeStrokeThickness": 4 + }, + { + "type": "GeographicPolylineSeries", + "name": "gridSeries", + "dataSourceRef": "WorldGridlines", + "shapeMemberPath": "Points", + "shapeStroke": "Gray", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "dataSourceRef": "WorldAirports", + "latitudeMemberPath": "Lat", + "longitudeMemberPath": "Lon", + "markerType": "Circle", + "markerBrush": "#aad3df", + "markerOutline": "rgb(73, 73, 73)", + "thickness": 1 + } + ] +} ``` - - ## グリッド線のオーバーレイ 地理グリッド線を使用して2番目の オブジェクトを作成し、それを GeographicMap の Series コレクションに追加します。 - - -```html - - -``` - - - - - -```ts -const gridSeries = new IgrGeographicPolylineSeries( { name: "gridSeries" }); -gridSeries.dataSource = worldGridlines; -gridSeries.shapeMemberPath = "points"; -gridSeries.shapeStroke = "Gray"; -gridSeries.shapeStrokeThickness = 1; -this.geoMap.series.add(gridSeries); -``` - - - - - -```razor - - - +```json-snippet source="/maps/geo-map/binding-multiple-sources" +{ + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "shapeMemberPath": "Points", + "shapeStroke": "rgba(196, 14, 14, 0.05)", + "shapeStrokeThickness": 4 + }, + { + "type": "GeographicPolylineSeries", + "name": "gridSeries", + "$type": "+doc:markup", + "dataSourceRef": "WorldGridlines", + "shapeMemberPath": "Points", + "shapeStroke": "Gray", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "dataSourceRef": "WorldAirports", + "latitudeMemberPath": "Lat", + "longitudeMemberPath": "Lon", + "markerType": "Circle", + "markerBrush": "#aad3df", + "markerOutline": "rgb(73, 73, 73)", + "thickness": 1 + } + ] +} ``` - - ## 空港のオーバーレイ 空港ポイントを使用して オブジェクトを作成し、それを {ProductName} 地理マップの Series コレクションに追加します。 - - -```html - - -``` - - - - - -```ts -const symbolSeries = new IgrGeographicSymbolSeries ( { name: "symbolSeries" }); -symbolSeries.dataSource = worldAirports; -symbolSeries.markerType = MarkerType.Circle; -symbolSeries.latitudeMemberPath = "lat"; -symbolSeries.longitudeMemberPath = "lon"; -symbolSeries.markerBrush = "#aad3df"; -symbolSeries.markerOutline = "rgb(73, 73, 73)"; -this.geoMap.series.add(symbolSeries); -``` - - - - - -```razor - - - +```json-snippet source="/maps/geo-map/binding-multiple-sources" +{ + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "shapeMemberPath": "Points", + "shapeStroke": "rgba(196, 14, 14, 0.05)", + "shapeStrokeThickness": 4 + }, + { + "type": "GeographicPolylineSeries", + "name": "gridSeries", + "dataSourceRef": "WorldGridlines", + "shapeMemberPath": "Points", + "shapeStroke": "Gray", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "$type": "+doc:markup", + "dataSourceRef": "WorldAirports", + "latitudeMemberPath": "Lat", + "longitudeMemberPath": "Lon", + "markerType": "Circle", + "markerBrush": "#aad3df", + "markerOutline": "rgb(73, 73, 73)", + "thickness": 1 + } + ] +} ``` - - ## まとめ 上記すべてのコード スニペットを以下のコード ブロックにまとめて、プロジェクトに簡単にコピーできます。 - - -```ts -import { AfterViewInit, Component, TemplateRef, ViewChild } from "@angular/core"; -import { MarkerType } from 'igniteui-angular-charts'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxGeographicPolylineSeriesComponent } from "igniteui-angular-maps"; -import { IgxGeographicSymbolSeriesComponent } from "igniteui-angular-maps"; -import { WorldConnections } from "../../utilities/WorldConnections"; - -@Component({ - selector: "app-map-binding-multiple-data-sources", - styleUrls: ["./map-binding-multiple-data-sources.component.scss"], - templateUrl: "./map-binding-multiple--data-sources.component.html" -}) - -export class MapBindingMultipleSourcesComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - - @ViewChild("polylineTooltipTemplate") - public polylineTooltipTemplate: TemplateRef; - - @ViewChild("pointTooltipTemplate") - public pointTooltipTemplate: TemplateRef; - - public data: any; - constructor() { - } - - public ngAfterViewInit(): void { - this.map.windowRect = { left: 0.195, top: 0.1, width: 0.5, height: 0.5 }; - - const worldFlights = WorldConnections.getFlights(); - const worldAirports = WorldConnections.getAirports(); - const worldGridlines = WorldConnections.getGridlines(); - - this.addPolylineSeriesWith(worldFlights); - this.addGridlineSeriesWith(worldGridlines); - this.addSymbolSeriesWith(worldAirports); - } - - public addGridlineSeriesWith(data: any[]) { - const gridSeries = new IgxGeographicPolylineSeriesComponent(); - gridSeries.dataSource = data; - gridSeries.shapeMemberPath = "points"; - gridSeries.shapeStroke = "Gray"; - gridSeries.shapeStrokeThickness = 1; - this.map.series.add(gridSeries); - } - - public addPolylineSeriesWith(data: any[]) { - const lineSeries = new IgxGeographicPolylineSeriesComponent (); - lineSeries.dataSource = data; - lineSeries.shapeMemberPath = "points"; - lineSeries.shapeStroke = "rgba(196, 14, 14,0.05)"; - lineSeries.shapeStrokeThickness = 4; - lineSeries.tooltipTemplate = this.polylineTooltipTemplate; - this.map.series.add(lineSeries); - } - - public addSymbolSeriesWith(data: any[]) { - const symbolSeries = new IgxGeographicSymbolSeriesComponent (); - symbolSeries.dataSource = data; - symbolSeries.markerType = MarkerType.Circle; - symbolSeries.latitudeMemberPath = "lat"; - symbolSeries.longitudeMemberPath = "lon"; - symbolSeries.markerBrush = "#aad3df"; - symbolSeries.markerOutline = "rgb(73, 73, 73)"; - symbolSeries.thickness = 1; - symbolSeries.tooltipTemplate = this.pointTooltipTemplate; - this.map.series.add(symbolSeries); - } +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="bindingImports" +{ + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "shapeMemberPath": "Points", + "shapeStroke": "rgba(196, 14, 14, 0.05)", + "shapeStrokeThickness": 4 + }, + { + "type": "GeographicPolylineSeries", + "name": "gridSeries", + "dataSourceRef": "WorldGridlines", + "shapeMemberPath": "Points", + "shapeStroke": "Gray", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "dataSourceRef": "WorldAirports", + "latitudeMemberPath": "Lat", + "longitudeMemberPath": "Lon", + "markerType": "Circle", + "markerBrush": "#aad3df", + "markerOutline": "rgb(73, 73, 73)", + "thickness": 1 + } + ] } ``` - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - - - - - - -@code { - - private List Airports; - private List Flights; - private List Coordinates; - - protected override void OnInitialized() - { - Airports = WorldConnections.GetAirports(); - Flights = WorldConnections.GetFlights(); - Coordinates = WorldConnections.GetGridlines(); - } +```json-snippet source="/maps/geo-map/binding-multiple-sources" code="allCode" +{ + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "shapeMemberPath": "Points", + "shapeStroke": "rgba(196, 14, 14, 0.05)", + "shapeStrokeThickness": 4 + }, + { + "type": "GeographicPolylineSeries", + "name": "gridSeries", + "dataSourceRef": "WorldGridlines", + "shapeMemberPath": "Points", + "shapeStroke": "Gray", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "dataSourceRef": "WorldAirports", + "latitudeMemberPath": "Lat", + "longitudeMemberPath": "Lon", + "markerType": "Circle", + "markerBrush": "#aad3df", + "markerOutline": "rgb(73, 73, 73)", + "thickness": 1 + } + ] } ``` - - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/geo-map-display-azure-imagery.mdx b/docs/xplat/src/content/jp/components/geo-map-display-azure-imagery.mdx index 50ae68c6ab..e716ff9f13 100644 --- a/docs/xplat/src/content/jp/components/geo-map-display-azure-imagery.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-display-azure-imagery.mdx @@ -32,99 +32,74 @@ import Badge from 'igniteui-astro-components/components/mdx/Badge.astro'; ## {Platform} Azure Maps からの画像の表示 - コード例 以下のコード スニペットは、 クラスを使用して {Platform} で Azure Maps からの地理的画像タイルを表示する方法を示します。 - - -```html - - -``` - - - - - -```ts -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxAzureMapsImagery } from 'igniteui-angular-maps'; -// ... -const tileSource = new IgxAzureMapsImagery(); -tileSource.apiKey = "YOUR_Azure_MAPS_API_KEY"; -tileSource.imageryStyle = AzureMapsImageryStyle.Satellite; // or -tileSource.imageryStyle = AzureMapsImageryStyle.TerraOverlay; // or -tileSource.imageryStyle = AzureMapsImageryStyle.Road; //or Traffic & Weather etc. - -this.map.backgroundContent = tileSource; -``` - - - - - -```ts -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrAzureMapsImagery } from 'igniteui-react-maps'; -import { AzureMapsImageryStyle } from 'igniteui-react-maps'; -// ... -const tileSource = new IgrAzureMapsImagery(); -tileSource.apiKey = "YOUR_Azure_MAPS_API_KEY"; -tileSource.imageryStyle = AzureMapsImageryStyle.Satellite; // or -tileSource.imageryStyle = AzureMapsImageryStyle.Road; // or -tileSource.imageryStyle = AzureMapsImageryStyle.DarkGrey; // Traffic, Weather etc. - -const geoMap = new IgrGeographicMap({ name: "geoMap" }); -geoMap.backgroundContent = tileSource; -``` - - - - - -```ts -const tileSource = new IgcAzureMapsImagery(); -tileSource.apiKey = "YOUR_Azure_MAPS_API_KEY"; -tileSource.imageryStyle = AzureMapsImageryStyle.Satellite; // or -tileSource.imageryStyle = AzureMapsImageryStyle.Road; // or -tileSource.imageryStyle = AzureMapsImageryStyle.DarkGrey; // Traffic, Weather etc. - -map.backgroundContent = tileSource; +```json-snippet exclude="Xaml" +{ + "type": "GeographicMap", + "name": "azureMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "AzureMapsImagery", + "name": "azureImagery", + "apiKey": "YOUR_AZURE_MAPS_API_KEY", + "imageryStyle": "Satellite" + }, + "$type": "+doc:markup" +} ``` - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - -@code { - - private IgbGeographicMap AzureMap; - private IgbAzureMapsImagery AzureImagery { get; set; } - - protected override async Task OnAfterRenderAsync(bool firstRender) - { - await base.OnAfterRenderAsync(firstRender); - - //Update Map Background - AzureImagery = new IgbAzureMapsImagery - { - ApiKey = AzureKey, - ImageryStyle = AzureMapsImageryStyle.Satellite - }; - } +```json-snippet exclude="Xaml,Blazor" channel="bindingImports...bindingFields,bindingInit,bindingCode" +{ + "type": "GeographicMap", + "name": "azureMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "AzureMapsImagery", + "name": "azureImagery", + "apiKey": "YOUR_AZURE_MAPS_API_KEY", + "imageryStyle": "Satellite" + }, + "$type": [ + "+doc:bindingImports", + "+doc:bindingFields", + "+doc:bindingInit", + "+doc:bindingCode" + ] } ``` - + ## Azure Maps からの画像オーバーレイ - 概要 @@ -145,191 +120,128 @@ map.backgroundContent = tileSource; ## Azure Maps からの画像オーバーレイ - コード例 次のコード スニペットは、 クラスと クラスを使用して、{Platform} の交通情報と濃い灰色のマップを結合した背景画像の上に地理画像タイルを表示する方法を示しています。 - - -```html - - - -``` - - - - - -```ts -export class AppComponent implements AfterViewInit { - @ViewChild('map', { static: true }) public map!: IgxGeographicMapComponent; - @ViewChild('tileSeries', { static: true }) public tileSeries!: IgxGeographicTileSeriesComponent; - - public azureImagery!: IgxAzureMapsImagery; - public azureKey: string = ""; - - ngAfterViewInit(): void { - // Update TileSeries - const overlay = new IgxAzureMapsImagery(); - overlay.apiKey = this.azureKey; - overlay.imageryStyle = AzureMapsImageryStyle.TrafficAbsoluteOverlay; - this.tileSeries.tileImagery = overlay; - - // Update Map Background - this.azureImagery = new IgxAzureMapsImagery(); - this.azureImagery.apiKey = this.azureKey; - this.azureImagery.imageryStyle = AzureMapsImageryStyle.DarkGrey; - this.map.backgroundContent = this.azureImagery; - } +```json-snippet exclude="Xaml" +{ + "type": "GeographicMap", + "name": "azureMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "AzureMapsImagery", + "name": "azureImagery", + "apiKey": "YOUR_AZURE_MAPS_API_KEY", + "imageryStyle": "DarkGrey" + }, + "series": [ + { + "type": "GeographicTileSeries", + "name": "imagerySeries", + "$setInCode": { + "tileImagery": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "tileImagery": [ + "angular", + "react", + "webComponents" + ] + }, + "tileImagery": { + "type": "AzureMapsImagery", + "name": "trafficImagery", + "apiKey": "YOUR_AZURE_MAPS_API_KEY", + "imageryStyle": "TrafficAbsoluteOverlay" + } + } + ], + "$type": "+doc:markup" } ``` - - - - -```ts -// App.tsx -import React, { useEffect, useRef } from 'react'; -import { - IgrGeographicMap, - IgrGeographicTileSeries, - IgrAzureMapsImagery, - AzureMapsImageryStyle -} from 'igniteui-react-maps'; - -export default function App() { - const mapRef = useRef(null); - const tileSeriesRef = useRef(null); - const azureKey = ""; - - // Update TileSeries - const series = new IgrGeographicTileSeries({ - name: "AzureTileSeries", - }); - - const overlay = new IgrAzureMapsImagery({}); - overlay.apiKey = azureKey; - overlay.imageryStyle = AzureMapsImageryStyle.TrafficAbsoluteOverlay; - series.tileImagery = overlay; - - // Update Map Background - const background = new IgrAzureMapsImagery({}); - background.apiKey = azureKey; - background.imageryStyle = AzureMapsImageryStyle.DarkGrey; - this.geoMap.backgroundContent = background; - - this.geoMap.series.add(series); - - return ( -
- - - -
- ); +```json-snippet exclude="Xaml,Blazor" channel="bindingImports...bindingFields,bindingInit,bindingCode" +{ + "type": "GeographicMap", + "name": "azureMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "AzureMapsImagery", + "name": "azureImagery", + "apiKey": "YOUR_AZURE_MAPS_API_KEY", + "imageryStyle": "DarkGrey" + }, + "series": [ + { + "type": "GeographicTileSeries", + "name": "imagerySeries", + "$setInCode": { + "tileImagery": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "tileImagery": [ + "angular", + "react", + "webComponents" + ] + }, + "tileImagery": { + "type": "AzureMapsImagery", + "name": "trafficImagery", + "apiKey": "YOUR_AZURE_MAPS_API_KEY", + "imageryStyle": "TrafficAbsoluteOverlay" + } + } + ], + "$type": [ + "+doc:bindingImports", + "+doc:bindingFields", + "+doc:bindingInit", + "+doc:bindingCode" + ] } ``` -
- - - -```html - - - - - - - - - - - -``` - - - - - -```ts -// index.ts -import { - IgcGeographicMapComponent, - IgcGeographicTileSeriesComponent, - IgcAzureMapsImagery, - AzureMapsImageryStyle, - IgcGeographicMapModule -} from 'igniteui-webcomponents-maps'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -ModuleManager.register(IgcGeographicMapModule); - -const azureKey = ""; - -window.addEventListener("load", () => { - const map = document.getElementById("map") as IgcGeographicMapComponent; - const tileSeries = document.getElementById("tileSeries") as IgcGeographicTileSeriesComponent; - - // Update TileSeries - const overlay = new IgcAzureMapsImagery(); - overlay.apiKey = azureKey; - overlay.imageryStyle = AzureMapsImageryStyle.TrafficAbsoluteOverlay; - tileSeries.tileImagery = overlay; - - // Update Map Background - const background = new IgcAzureMapsImagery(); - background.apiKey = azureKey; - background.imageryStyle = AzureMapsImageryStyle.DarkGrey; - map.backgroundContent = background; -}); -``` - - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - -@code { - private IgbGeographicMap AzureMap; - private IgbAzureMapsImagery AzureImagery { get; set; } - private IgbGeographicTileSeries ImagerySeries; - - protected override async Task OnAfterRenderAsync(bool firstRender) - { - await base.OnAfterRenderAsync(firstRender); - - //Update TileSeries - var imagery = new IgbAzureMapsImagery - { - ApiKey = AzureKey, - ImageryStyle = AzureMapsImageryStyle.TrafficAbsoluteOverlay - }; - - ImagerySeries.TileImagery = imagery; - - //Update Map Background - AzureImagery = new IgbAzureMapsImagery - { - ApiKey = AzureKey, - ImageryStyle = AzureMapsImageryStyle.DarkGrey - }; - } -} -``` - ## プロパティ 以下の表で、 クラスのプロパティを説明します。 diff --git a/docs/xplat/src/content/jp/components/geo-map-display-esri-imagery.mdx b/docs/xplat/src/content/jp/components/geo-map-display-esri-imagery.mdx index f4e0aa1ae4..2b1808d3ac 100644 --- a/docs/xplat/src/content/jp/components/geo-map-display-esri-imagery.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-display-esri-imagery.mdx @@ -31,13 +31,65 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ```json-snippet source="/maps/geo-map/display-esri-imagery" { "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "oceansMap", "height": "100%", "width": "100%", "zoomable": true, "backgroundContent": { "type": "ArcGISOnlineMapImagery", - "mapServerUri": "https://services.arcgisonline.com/ArcGIS/rest/services/Ocean_Basemap/MapServer" - } + "name": "oceansMapImagery", + "mapServerUri": "https://services.arcgisonline.com/arcgis/rest/services/Ocean/World_Ocean_Base/MapServer" + }, + "$type": "+doc:markup" +} +``` + +```json-snippet source="/maps/geo-map/display-esri-imagery" channel="bindingImports...bindingFields,bindingInit,bindingCode" exclude="Blazor,Xaml" +{ + "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "oceansMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "ArcGISOnlineMapImagery", + "name": "oceansMapImagery", + "mapServerUri": "https://services.arcgisonline.com/arcgis/rest/services/Ocean/World_Ocean_Base/MapServer" + }, + "$type": [ + "+doc:bindingImports", + "+doc:bindingFields", + "+doc:bindingInit", + "+doc:bindingCode" + ] } ``` diff --git a/docs/xplat/src/content/jp/components/geo-map-display-heat-imagery.mdx b/docs/xplat/src/content/jp/components/geo-map-display-heat-imagery.mdx index cd0e01216d..37f88d7f6f 100644 --- a/docs/xplat/src/content/jp/components/geo-map-display-heat-imagery.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-display-heat-imagery.mdx @@ -94,318 +94,67 @@ export default {} as typeof Worker & (new () => Worker); ``` -## 依存関係 - - - - - - - - - - - -```ts -import Worker from "./heatworker.worker" - -import { IgrGeographicMapImagery } from 'igniteui-react-maps'; -import { IgrHeatTileGenerator } from 'igniteui-react-core'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicTileSeries } from 'igniteui-react-maps'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; -import { IgrTileGeneratorMapImagery } from 'igniteui-react-maps'; -import { IgrShapeDataSource } from 'igniteui-react-core'; -// ... -IgrDataChartInteractivityModule.register(); -IgrGeographicMapModule.register(); -``` - - - - - - - - - -```ts -import { IgxHeatTileGenerator } from 'igniteui-angular-core'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxTileGeneratorMapImagery } from 'igniteui-angular-maps'; -``` - - - - - - +## 依存関係 -```ts -import Worker from "./heatworker.worker" - -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcGeographicMapComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicTileSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -import { IgcHeatTileGenerator } from 'igniteui-webcomponents-core'; -import { IgcTileGeneratorMapImagery } from 'igniteui-webcomponents-maps'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -ModuleManager.register( - IgcDataChartInteractivityModule, - IgcGeographicMapModule -); +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/display-heat-imagery" channel="bindingImports,handlersImports" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map", + "height": "100%", + "width": "100%", + "zoomable": true + } + }, + "onViewInit": [ + "MapDisplayHeatImageryOnViewInit" + ] +} ``` - - ## ヒートマップの作成 以下のコード スニペットは、人口ベースのヒートマップを {ProductName} マップ コンポーネントに表示する方法を示しています。 - - - - - - -```html - - - -``` - - - - - -```ts -@ViewChild("map", { static: true }) -public map: IgxGeographicMapComponent; -public data: any[]; -public tileImagery: IgxTileGeneratorMapImagery; -// ... -constructor() { - this.data = this.initData(); - - this.tileImagery = new IgxTileGeneratorMapImagery(); - - const con: IgxShapeDataSource = new IgxShapeDataSource(); - con.importCompleted.subscribe((s, e) => { - const data = con.getPointData(); - const lat: number[] = []; - const lon: number[] = []; - const val: number[] = []; - for (let i = 0; i < data.length; i++) { - const item = data[i]; - for (let j = 0; j < item.points.length; j++) { - const pointsList = item.points[j]; - for (let k = 0; k < pointsList.length; k++) { - lat.push(pointsList[k].y); - lon.push(pointsList[k].x); - } - } - const value = item.fieldValues["POP_2010"]; - if (value >= 0) { - val.push(value); - } else { - val.push(0); - } +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/display-heat-imagery" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map", + "$type": "+doc:markup", + "height": "100%", + "width": "100%", + "zoomable": true } - - const gen = new IgxHeatTileGenerator(); - gen.xValues = lon; - gen.yValues = lat; - gen.values = val; - gen.blurRadius = 6; - gen.maxBlurRadius = 20; - gen.useBlurRadiusAdjustedForZoom = true; - gen.minimumColor = "rgba(100,255, 0, 0.3922)"; - gen.maximumColor = "rgba(255, 255, 0, 0.9412)"; - gen.useGlobalMinMax = true; - gen.useGlobalMinMaxAdjustedForZoom = true; - gen.useLogarithmicScale = true; - gen.useWebWorkers = true; - gen.webWorkerInstance = new Worker("../heatworker.worker", { type: "module" }); - gen.scaleColors = [ - "rgba(0, 0, 255, 64)", - "rgba(0, 255, 255, 96)", - "rgba(0, 255, 0, 160)", - "rgba(255, 255, 0, 180)", - "rgba(255, 0, 0, 200)" - ]; - - this.tileImagery.tileGenerator = gen; - }); - con.shapefileSource = "assets/Shapes/AmericanCities.shp"; - con.databaseSource = "assets/Shapes/AmericanCities.dbf"; - con.dataBind(); + }, + "onViewInit": [ + "MapDisplayHeatImageryOnViewInit" + ] } ``` - - - - - - - -```ts -public map: IgrGeographicMap; -public tileImagery: IgrTileGeneratorMapImagery = null; -// ... -constructor(props: any) { - super(props); - this.onMapReferenced = this.onMapReferenced.bind(this); - this.onDataLoaded = this.onDataLoaded.bind(this); - this.tileImagery = new IgrTileGeneratorMapImagery(); - this.state = { tileImagery: null } -} - -public onMapReferenced(map: IgrGeographicMap) { - this.map = map; - - const url = process.env.PUBLIC_URL; - const sds: IgrShapeDataSource = new IgrShapeDataSource(); - sds.importCompleted = this.onDataLoaded; - sds.shapefileSource = url + "/Shapes/AmericanCities.shp"; - sds.databaseSource = url + "/Shapes/AmericanCities.dbf"; - sds.dataBind(); -} - -public onDataLoaded(sds: IgrShapeDataSource, e: any) { - let records = sds.getPointData(); - let latArray: number[] = []; - let lonArray: number[] = []; - let popArray: number[] = []; - - for (let r = 0; r < records.length; r++) { - let record = records[r]; - for (let j = 0; j < record.points.length; j++) { - let points = record.points[j]; - for (let k = 0; k < points.length; k++) { - latArray.push(points[k].y); - lonArray.push(points[k].x); - } +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/display-heat-imagery" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map", + "height": "100%", + "width": "100%", + "zoomable": true } - let value = parseInt(record.fieldValues["POP2010"], 10); - if (value >= 0) { - popArray.push(value); - } else { - popArray.push(0); - } - } - - const gen = new IgrHeatTileGenerator(); - gen.xValues = lonArray; - gen.yValues = latArray; - gen.values = popArray; - gen.blurRadius = 6; - gen.maxBlurRadius = 20; - gen.useBlurRadiusAdjustedForZoom = true; - gen.minimumColor = "rgba(100, 255, 0, 0.4)"; - gen.maximumColor = "rgba(255, 255, 0, 0.95)"; - gen.scaleColors = ["rgba(0, 0, 255, 64)", "rgba(0, 255, 255, 96)", "rgba(0, 255, 0, 160)", "rgba(255, 255, 0, 180)", "rgba(255, 0, 0, 200)"]; - gen.useGlobalMinMax = true; - gen.useGlobalMinMaxAdjustedForZoom = true; - gen.useLogarithmicScale = true; - gen.useWebWorkers = true; - gen.webWorkerInstance = new Worker(); - - this.tileImagery.tileGenerator = gen; - this.setState({ tileImagery: this.tileImagery }); + }, + "onViewInit": [ + "MapDisplayHeatImageryOnViewInit" + ] } ``` - - - - -```tsx - - - -``` - - - - -```ts -private geoMap: IgcGeographicMapComponent; -public tileImagery: IgcTileGeneratorMapImagery; - -constructor() { - super(); - this.tileImagery = new IgcTileGeneratorMapImagery(); - this.onDataLoaded = this.onDataLoaded.bind(this); -} - -connectedCallback() { - this.innerHTML = templateHTML; - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - this.geoMap.zoomToGeographic({ left: -134.5, top: 16.0, width: 70.0, height: 37.0 }); - - const url = AssetsUtils.getAssetsPath() + "/data/UsaCitiesPopulation.csv"; - console.log("SB loading " + url); - fetch(url) - .then((response) => response.text()) - .then(data => this.onDataLoaded(data)); -} - -public onDataLoaded(csvData: string) { - const csvLines = csvData.split("\n"); - console.log("loaded UsaCitiesPopulation.csv " + csvLines.length); - const latitudes: number[] = []; - const longitudes: number[] = []; - const populations: number[] = []; - // parsing CSV data and creating geographic locations - for (let i = 1; i < csvLines.length; i++) { - const columns = csvLines[i].split(","); - latitudes.push(Number(columns[1])); - longitudes.push(Number(columns[2])); - populations.push(Number(columns[3])); - } - // generating heat map imagery tiles - const gen = new IgcHeatTileGenerator(); - gen.xValues = longitudes; - gen.yValues = latitudes; - gen.values = populations; - gen.blurRadius = 6; - gen.maxBlurRadius = 20; - gen.useBlurRadiusAdjustedForZoom = true; - gen.minimumColor = "rgba(100, 255, 0, 0.5)"; - gen.maximumColor = "rgba(255, 255, 0, 0.5)"; - gen.useGlobalMinMax = true; - gen.useGlobalMinMaxAdjustedForZoom = true; - gen.useLogarithmicScale = true; - gen.useWebWorkers = true; - gen.webWorkerInstance = new Worker(); - gen.scaleColors = [ - "rgba(0, 0, 255, .251)", "rgba(0, 255, 255, .3765)", - "rgba(50,205,50, .2675)", "rgba(255, 255, 0, .7059)", - "rgba(255, 0, 0, .7843)" - ]; - this.tileImagery.tileGenerator = gen; - // generating heat map series - const series = new IgcGeographicTileSeriesComponent(); - series.tileImagery = this.tileImagery; - // add heat map series to the map - this.geoMap.series.add(series); -} -``` - - ## API リファレンス
diff --git a/docs/xplat/src/content/jp/components/geo-map-display-osm-imagery.mdx b/docs/xplat/src/content/jp/components/geo-map-display-osm-imagery.mdx index be82ee3fed..afea11ce30 100644 --- a/docs/xplat/src/content/jp/components/geo-map-display-osm-imagery.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-display-osm-imagery.mdx @@ -32,12 +32,63 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ```json-snippet source="/maps/geo-map/display-osm-imagery" { "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "map", "height": "100%", "width": "100%", "zoomable": true, "backgroundContent": { - "type": "OpenStreetMapImagery" - } + "type": "OpenStreetMapImagery", + "name": "osmImagery" + }, + "$type": "+doc:markup" +} +``` + +```json-snippet source="/maps/geo-map/display-osm-imagery" channel="bindingImports...bindingFields,bindingInit,bindingCode" exclude="Blazor,Xaml" +{ + "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "map", + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "OpenStreetMapImagery", + "name": "osmImagery" + }, + "$type": [ + "+doc:bindingImports", + "+doc:bindingFields", + "+doc:bindingInit", + "+doc:bindingCode" + ] } ``` diff --git a/docs/xplat/src/content/jp/components/geo-map-navigation.mdx b/docs/xplat/src/content/jp/components/geo-map-navigation.mdx index bd8ad6880d..ea3d46daef 100644 --- a/docs/xplat/src/content/jp/components/geo-map-navigation.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-navigation.mdx @@ -51,7 +51,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; このコード スニペットは、相対ウィンドウ座標を使用してマップをナビゲートする方法を示しています。 -```json-snippet +```json-snippet channel="code" { "type": "GeographicMap", "windowRect": { "left": 0.1, "top": 0.1, "width": 0.5, "height": 0.5 } @@ -60,7 +60,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; または -```json-snippet +```json-snippet channel="code" { "type": "GeographicMap", "windowPositionHorizontal": 0.1, diff --git a/docs/xplat/src/content/jp/components/geo-map-type-scatter-area-series.mdx b/docs/xplat/src/content/jp/components/geo-map-type-scatter-area-series.mdx index b5d48b397b..55c3b4becb 100644 --- a/docs/xplat/src/content/jp/components/geo-map-type-scatter-area-series.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-type-scatter-area-series.mdx @@ -61,324 +61,37 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## コード スニペット 以下のコードは、 を世界の表面温度を表す三角測量データにバインドする方法を示しています。 - - - - - - -```tsx -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicScatterAreaSeries } from 'igniteui-react-maps'; -import { IgrCustomPaletteColorScale } from 'igniteui-react-charts'; -import { IgrShapeDataSource } from 'igniteui-react-core'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); -// ... - -public render() { - return ( - - ); -} -``` - - - - - -```ts -public onMapReferenced(map: IgrGeographicMap) { - this.geoMap = map; - - const sds = new IgrShapeDataSource(); - sds.importCompleted = this.onDataLoaded; - sds.shapefileSource = "/Shapes/WorldTemperatures.shp"; - sds.databaseSource = "/Shapes/WorldTemperatures.dbf"; - sds.dataBind(); -} - -public onDataLoaded(sds: IgrShapeDataSource, e: any) { - const contourPoints: any[] = []; - for (const record of sds.getPointData()) { - const temp = record.fieldValues.Contour; - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.length; i++) { - if (i % 5 === 0) { - const point = shapes[i]; - const item = { lon: point.x, lat: point.y, value: temp}; - contourPoints.push(item); - } - } - } - } - } - - this.createAreaSeries(contourPoints); -} - -public createAreaSeries(data: any[]) +```json-snippet channel="code" source="/maps/geo-map/type-scatter-area-series" { - const brushes = [ - "rgba(32, 146, 252, 0.5)", - "rgba(14, 194, 14, 0.5)", - "rgba(252, 120, 32, 0.5)", - "rgba(252, 32, 32, 0.5)", - ]; - - const colorScale = new IgrCustomPaletteColorScale({}); - colorScale.palette = brushes; - colorScale.minimumValue = 0; - colorScale.maximumValue = 30; - - const areaSeries = new IgrGeographicScatterAreaSeries( { name: "areaSeries" }); - areaSeries.dataSource = data; - areaSeries.longitudeMemberPath = "lon"; - areaSeries.latitudeMemberPath = "lat"; - areaSeries.colorMemberPath = "value"; - areaSeries.colorScale = colorScale; - - this.geoMap.series.add(areaSeries); -} -``` - - - - - - - - - -```html -
- - -
- - -
- - Degrees: {{item.value}} "°F" - -
- - Longitude: {{item.lon}} - -
- - Latitude: {{item.lat}} - -
-
-``` - -
- - - -```ts -import { AfterViewInit, Component, TemplateRef, ViewChild } from "@angular/core"; -import { IgxCustomPaletteColorScaleComponent } from 'igniteui-angular-charts'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxGeographicScatterAreaSeriesComponent } from 'igniteui-angular-maps'; - -@Component({ - selector: "app-map-geographic-scatter-area-series", - styleUrls: ["./map-geographic-scatter-area-series.component.scss"], - templateUrl: "./map-geographic-scatter-area-series.component.html" -}) -export class MapTypeScatterAreaSeriesComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - @ViewChild ("template") - public tooltipTemplate: TemplateRef; - constructor() { - } - - public ngAfterViewInit(): void { - const sds = new IgxShapeDataSource(); - sds.shapefileSource = "assets/Shapes/WorldTemperatures.shp"; - sds.databaseSource = "assets/Shapes/WorldTemperatures.dbf"; - sds.dataBind(); - sds.importCompleted.subscribe(() => this.onDataLoaded(sds, "")); -} - - public onDataLoaded(sds: IgxShapeDataSource, e: any) { - const shapeRecords = sds.getPointData(); - const contourPoints: any[] = []; - for (const record of shapeRecords) { - const temp = record.fieldValues.Contour; - // using only major contours (every 10th degrees Celsius) - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.length; i++) { - if (i % 5 === 0) { - const p = shapes[i]; - const item = { lon: p.x, lat: p.y, value: temp}; - contourPoints.push(item); - } - } + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicScatterAreaSeries", + "name": "areaSeries", + "dataSourceRef": "WorldTemperatures", + "longitudeMemberPath": "Lon", + "latitudeMemberPath": "Lat", + "colorMemberPath": "Value", + "colorScale": { + "type": "CustomPaletteColorScale", + "palette": [ + "rgba(32, 146, 252, 0.5)", + "rgba(14, 194, 14, 0.5)", + "rgba(252, 120, 32, 0.5)", + "rgba(252, 32, 32, 0.5)" + ], + "minimumValue": 0, + "maximumValue": 30 } } - } - this.createContourSeries(contourPoints); -} - - public createContourSeries(data: any[]) { - const brushes = [ - "rgba(32, 146, 252, 0.5)", // semi-transparent blue - "rgba(14, 194, 14, 0.5)", // semi-transparent green - "rgba(252, 120, 32, 0.5)", // semi-transparent orange - "rgba(252, 32, 32, 0.5)" // semi-transparent red - ]; - - const colorScale = new IgxCustomPaletteColorScaleComponent(); - colorScale.palette = brushes; - colorScale.minimumValue = 0; - colorScale.maximumValue = 30; - - const areaSeries = new IgxGeographicScatterAreaSeriesComponent(); - areaSeries.dataSource = data; - areaSeries.longitudeMemberPath = "lon"; - areaSeries.latitudeMemberPath = "lat"; - areaSeries.colorMemberPath = "value"; - areaSeries.colorScale = colorScale; - areaSeries.tooltipTemplate = this.tooltipTemplate; - areaSeries.thickness = 4; - - this.map.series.add(areaSeries); -} -} -``` - - - - - -```html - - - -``` - - - - - -```ts -import { IgcCustomPaletteColorScaleComponent } from 'igniteui-webcomponents-charts'; -import { IgcGeographicScatterAreaSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -//... -connectedCallback() { - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - - const sds = new IgcShapeDataSource(); - sfc.importCompleted = this.onDataLoaded; - sfc.shapefileSource = "../shapes/WorldTemperatures.shp"; - sfc.databaseSource = "../shapes/WorldTemperatures.dbf"; -} - -onDataLoaded(sds: IgcShapeDataSource, e: any) { - const shapeRecords = sds.getPointData(); - const contourPoints: any[] = []; - for (const record of shapeRecords) { - const temp = record.fieldValues.Contour; - // using only major contours (every 10th degrees Celsius) - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.count; i++) { - if (i % 5 === 0) { - const point = shapes[i]; - const item = { lon: point.x, lat: point.y, value: temp }; - contourPoints.push(item); - } - } - } - } - } - - this.createAreaSeries(contourPoints); -} - -createAreaSeries(data: any[]) { - const brushes = [ - "rgba(32, 146, 252, 0.5)", // semi-transparent blue - "rgba(14, 194, 14, 0.5)", // semi-transparent green - "rgba(252, 120, 32, 0.5)", // semi-transparent orange - "rgba(252, 32, 32, 0.5)", // semi-transparent red - ]; - - const colorScale = new IgcCustomPaletteColorScaleComponent(); - colorScale.palette = brushes; - colorScale.minimumValue = 0; - colorScale.maximumValue = 30; - - const areaSeries = new IgcGeographicScatterAreaSeriesComponent(); - areaSeries.dataSource = data; - areaSeries.longitudeMemberPath = "lon"; - areaSeries.latitudeMemberPath = "lat"; - areaSeries.colorMemberPath = "value"; - areaSeries.colorScale = colorScale; - - this.geoMap.series.add(areaSeries); -} -``` - - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - - - - -@code { - - private List Data; - private CustomPaletteColorScale ColorScale; - - protected override void OnInitialized() - { - var brushes = ""; - brushes += "rgba(32, 146, 252, 0.5) "; // semi-transparent blue - brushes += "rgba(14, 194, 14, 0.5) "; // semi-transparent green - brushes += "rgba(252, 120, 32, 0.5) "; // semi-transparent orange - brushes += "rgba(252, 32, 32, 0.5) "; // semi-transparent red - - this.ColorScale = new CustomPaletteColorScale(); - this.ColorScale.Palette = brushes; - this.ColorScale.MinimumValue = 0; - this.ColorScale.MaximumValue = 30; - - this.Data = WorldTemperatures.Load(); - } + ] } ``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/geo-map-type-scatter-contour-series.mdx b/docs/xplat/src/content/jp/components/geo-map-type-scatter-contour-series.mdx index a7e9f65362..c06953acb1 100644 --- a/docs/xplat/src/content/jp/components/geo-map-type-scatter-contour-series.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-type-scatter-contour-series.mdx @@ -60,321 +60,38 @@ ValueBrushScale クラスは、ユーザーの色分けのニーズもほとん 以下のコードは、 を世界の表面温度を表す三角測量データにバインドする方法を示しています。 - - - - - - -```tsx -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicContourLineSeries } from 'igniteui-react-maps'; -import { IgrValueBrushScale } from 'igniteui-react-charts'; -import { IgrCustomPaletteColorScale } from 'igniteui-react-charts'; -import { IgrShapeDataSource } from 'igniteui-react-core'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); -// ... - -public render() { - return ( - - ); -} -``` - - - - - -```ts -public onMapReferenced(map: IgrGeographicMap) { - this.geoMap = map; - this.geoMap.windowRect = { left: 0.2, top: 0.1, width: 0.6, height: 0.6 }; - const sds = new IgrShapeDataSource(); - sds.importCompleted = this.onDataLoaded; - sds.shapefileSource = "/Shapes/WorldTemperatures.shp"; - sds.databaseSource = "/Shapes/WorldTemperatures.dbf"; - sds.dataBind(); -} - -public onDataLoaded(sds: IgrShapeDataSource, e: any) { - const contourPoints: any[] = []; - for (const record of sds.getPointData()) { - const temp = record.fieldValues.Contour; - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.length; i++) { - if (i % 5 === 0) { - const p = shapes[i]; - const item = { lon: p.x, lat: p.y, value: temp}; - contourPoints.push(item); - } - } - } - } - } - - this.createContourSeries(contourPoints); -} - -public createContourSeries(data: any[]) +```json-snippet channel="code" source="/maps/geo-map/type-scatter-contour-series" { - const brushes = [ - "rgba(32, 146, 252, 0.5)", - "rgba(14, 194, 14, 0.5)", - "rgba(252, 120, 32, 0.5)", - "rgba(252, 32, 32, 0.5)", - ]; - - const brushScale = new IgrValueBrushScale({}); - brushScale.brushes = brushes; - brushScale.minimumValue = 0; - brushScale.maximumValue = 30; - - const contourSeries = new IgrGeographicContourLineSeries( { name: "contourSeries" }); - contourSeries.dataSource = data; - contourSeries.longitudeMemberPath = "lon"; - contourSeries.latitudeMemberPath = "lat"; - contourSeries.valueMemberPath = "value"; - contourSeries.fillScale = brushScale; - contourSeries.thickness = 4; - - this.geoMap.series.add(contourSeries); -} -``` - - - - - - - - -```html -
- - -
- - - - {{item | number: 2}} "°C" - - -``` - -
- - - -```ts -import { AfterViewInit, Component, TemplateRef, ViewChild } from "@angular/core"; -import { IgxValueBrushScaleComponent } from 'igniteui-angular-charts'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -import { IgxGeographicContourLineSeriesComponent } from 'igniteui-angular-maps'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; - -@Component({ - selector: "app-map-geographic-scatter-contour-series", - styleUrls: ["./map-geographic-scatter-contour-series.component.scss"], - templateUrl: "./map-geographic-scatter-contour-series.component.html" -}) - -export class MapTypeScatterContourSeriesComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - - @ViewChild ("template") - public tooltip: TemplateRef; - constructor() { - } - - public ngAfterViewInit(): void { - const sds = new IgxShapeDataSource(); - sds.shapefileSource = "assets/Shapes/WorldTemperatures.shp"; - sds.databaseSource = "assets/Shapes/WorldTemperatures.dbf"; - sds.dataBind(); - sds.importCompleted.subscribe(() => this.onDataLoaded(sds, "")); - } - - public onDataLoaded(sds: IgxShapeDataSource, e: any) { - const shapeRecords = sds.getPointData(); - - const contourPoints: any[] = []; - for (const record of shapeRecords) { - const temp = record.fieldValues.Contour; - // using only major contours (every 10th degrees Celsius) - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.length; i++) { - if (i % 5 === 0) { - const p = shapes[i]; - const item = { lon: p.x, lat: p.y, value: temp}; - contourPoints.push(item); - } - } - } + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicContourLineSeries", + "name": "contourSeries", + "dataSourceRef": "WorldTemperatures", + "longitudeMemberPath": "Lon", + "latitudeMemberPath": "Lat", + "valueMemberPath": "Value", + "thickness": 4, + "fillScale": { + "type": "ValueBrushScale", + "brushes": [ + "rgba(32, 146, 252, 0.5)", + "rgba(14, 194, 14, 0.5)", + "rgba(252, 120, 32, 0.5)", + "rgba(252, 32, 32, 0.5)" + ], + "minimumValue": 0, + "maximumValue": 30 } } - - this.createContourSeries(contourPoints); - } - - public createContourSeries(data: any[]) { - const brushes = [ - "rgba(32, 146, 252, 0.5)", // semi-transparent blue - "rgba(14, 194, 14, 0.5)", // semi-transparent green - "rgba(252, 120, 32, 0.5)", // semi-transparent orange - "rgba(252, 32, 32, 0.5)" // semi-transparent red - ]; - - const brushScale = new IgxValueBrushScaleComponent(); - brushScale.brushes = brushes; - brushScale.minimumValue = 0; - brushScale.maximumValue = 30; - - const contourSeries = new IgxGeographicContourLineSeriesComponent(); - contourSeries.dataSource = data; - contourSeries.longitudeMemberPath = "lon"; - contourSeries.latitudeMemberPath = "lat"; - contourSeries.valueMemberPath = "value"; - contourSeries.fillScale = brushScale; - contourSeries.tooltipTemplate = this.tooltip; - contourSeries.thickness = 4; - - this.map.series.add(contourSeries); - } -} -``` - - - - - -```html - - - -``` - - - - - -```ts -import { IgcGeographicContourLineSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcValueBrushScaleComponent } from 'igniteui-webcomponents-charts'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -//... -connectedCallback() { - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - - const sfc = new IgcShapeDataSource(); - sfc.importCompleted = this.onDataLoaded; - sfc.shapefileSource = "../shapes/WorldTemperatures.shp"); - sfc.databaseSource = "../shapes/WorldTemperatures.dbf"); -} - -onDataLoaded(sds: IgcShapeDataSource, e: any) { - const shapeRecords = sds.getPointData(); - const contourPoints: any[] = []; - for (const record of shapeRecords) { - const temp = record.fieldValues.Contour; - // using only major contours (every 10th degrees Celsius) - if (temp % 10 === 0 && temp >= 0) { - for (const shapes of record.points) { - for (let i = 0; i < shapes.count; i++) { - if (i % 5 === 0) { - const point = shapes[i]; - const item = { lon: point.x, lat: point.y, value: temp }; - contourPoints.push(item); - } - } - } - } - } - this.createContourSeries(contourPoints); -} - -createContourSeries(data: any[]) -{ - const brushes = [ - "rgba(32, 146, 252, 0.5)", // semi-transparent blue - "rgba(14, 194, 14, 0.5)", // semi-transparent green - "rgba(252, 120, 32, 0.5)", // semi-transparent orange - "rgba(252, 32, 32, 0.5)", // semi-transparent red - ]; - - const brushScale = new IgcValueBrushScaleComponent(); - brushScale.brushes = brushes; - brushScale.minimumValue = 0; - brushScale.maximumValue = 30; - - const contourSeries = new IgcGeographicContourLineSeriesComponent(); - contourSeries.dataSource = data; - contourSeries.longitudeMemberPath = "lon"; - contourSeries.latitudeMemberPath = "lat"; - contourSeries.valueMemberPath = "value"; - contourSeries.fillScale = brushScale; - contourSeries.thickness = 4; - - this.geoMap.series.add(contourSeries); + ] } ``` - - - - -```razor -@using IgniteUI.Blazor.Controls - - - - - - - -@code { - private List Data; - private ValueBrushScale BrushScale; - - protected override void OnInitialized() - { - var brushes = ""; - brushes += "rgba(32, 146, 252, 0.5) "; // semi-transparent blue - brushes += "rgba(14, 194, 14, 0.5) "; // semi-transparent green - brushes += "rgba(252, 120, 32, 0.5) "; // semi-transparent orange - brushes += "rgba(252, 32, 32, 0.5) "; // semi-transparent red - - this.BrushScale = new ValueBrushScale(); - this.BrushScale.Brushes = brushes; - this.BrushScale.MinimumValue = 0; - this.BrushScale.MaximumValue = 30; - - this.Data = WorldTemperatures.Load(); - } -} -``` - - - ## API リファレンス From 700b53c33483f3430734704bad34b1b3d0aea764 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 11:40:04 -0400 Subject: [PATCH 036/155] Make the snippet tooling read platform blocks by depth, and settle their boundaries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit nests — a Web Components block inside an Angular one is ordinary in the grid topics — and every tool here paired an opener with the first closer after it, which takes the inner block's closer. The body then stops halfway and the tail looks like it belongs to no block at all. That mistake deleted three sections from a Japanese topic before it was understood, so the reading now lives in one place, platform-blocks.mjs and platform_blocks.py, documented with what goes wrong without it. Rewired: the Japanese mirror, which writes files, and the imperative audit, the group dossier, the divergence check, the collapse planner and the code channel probe, which inform decisions. The mirror is idempotent on every page it has already done, the imperative audit's findings are unchanged, and the trapped heading audit rises from 66 to 72 — the blind reading had been under-reporting. Two boundary fixes alongside it. A fence with no body, which is what a ref= fence is, ran on and swallowed everything up to the next fence's close, because the optional body group is greedy: both delimiters are now anchored to a line start, in the mirror and in the generator's code block filter. And normalize-platform-blocks.py moves everything that is not a snippet out of a snippet block, into a block of its own with the same platform list, so a grouping is unambiguously one thing or the other. 158 blocks in 96 files, with generated output byte identical on all five platforms — the check that makes it safe, and the check that caught the nesting bug when the first version of it was wrong. geo-map-binding-multiple-shapes' five remaining sections are collapsed onto the ported sample, one handler each through item=, with the definition stated once and referenced. Its three record-processing sections keep the platform scoping they had: they teach the web platforms' way of reading shapefile records, and the collapse had dropped the wrapper, leaving Blazor three empty headings. Co-Authored-By: Claude Opus 5 --- docs/xplat/scripts/audit-imperative.py | 11 +- docs/xplat/scripts/audit-trapped-headings.py | 106 ++++ .../scripts/check-snippet-code-channels.mjs | 6 +- .../scripts/check-snippet-divergence.mjs | 8 +- docs/xplat/scripts/generate.mjs | 5 +- docs/xplat/scripts/mirror-collapse-to-jp.mjs | 20 +- .../scripts/normalize-platform-blocks.py | 130 +++++ docs/xplat/scripts/plan-snippet-collapse.mjs | 8 +- docs/xplat/scripts/platform-blocks.mjs | 62 +++ docs/xplat/scripts/platform_blocks.py | 34 ++ docs/xplat/scripts/snippet-group-dossier.mjs | 8 +- .../content/en/components/bullet-graph.mdx | 5 +- .../components/excel-library-using-cells.mdx | 5 +- .../content/en/components/excel-library.mdx | 40 +- .../en/components/general-cli-overview.mdx | 54 +- .../en/components/general-getting-started.mdx | 208 +++++++- .../general-step-by-step-guide-using-cli.mdx | 4 +- .../geo-map-binding-multiple-shapes.mdx | 447 +++------------- .../src/content/en/components/geo-map.mdx | 5 +- .../grid-lite/column-configuration.mdx | 17 +- .../en/components/grid-lite/overview.mdx | 35 +- .../grids/_shared/advanced-filtering.mdx | 37 +- .../components/grids/_shared/cell-editing.mdx | 21 +- .../components/grids/_shared/cell-merging.mdx | 2 + .../grids/_shared/cell-selection.mdx | 19 +- .../_shared/collapsible-column-groups.mdx | 7 +- .../grids/_shared/column-hiding.mdx | 57 ++- .../grids/_shared/column-moving.mdx | 34 +- .../grids/_shared/column-pinning.mdx | 29 ++ .../grids/_shared/column-resizing.mdx | 31 +- .../grids/_shared/column-selection.mdx | 24 +- .../grids/_shared/excel-style-filtering.mdx | 37 +- .../components/grids/_shared/export-excel.mdx | 24 +- .../en/components/grids/_shared/filtering.mdx | 42 +- .../en/components/grids/_shared/live-data.mdx | 9 +- .../grids/_shared/multi-column-headers.mdx | 32 +- .../grids/_shared/multi-row-layout.mdx | 30 +- .../en/components/grids/_shared/paging.mdx | 40 +- .../grids/_shared/remote-data-operations.mdx | 59 ++- .../components/grids/_shared/row-adding.mdx | 4 + .../en/components/grids/_shared/row-drag.mdx | 76 ++- .../components/grids/_shared/row-editing.mdx | 26 +- .../components/grids/_shared/row-pinning.mdx | 26 +- .../en/components/grids/_shared/search.mdx | 3 +- .../en/components/grids/_shared/sorting.mdx | 30 +- .../en/components/grids/_shared/summaries.mdx | 31 +- .../en/components/grids/_shared/toolbar.mdx | 33 +- .../grids/_shared/virtualization.mdx | 9 +- .../content/en/components/grids/data-grid.mdx | 18 +- .../grids/data-grid/column-summaries.mdx | 2 + .../en/components/grids/grid/groupby.mdx | 35 +- .../en/components/grids/grid/paste-excel.mdx | 9 +- .../grids/hierarchical-grid/overview.mdx | 33 +- .../components/grids/pivot-grid/features.mdx | 5 +- .../content/en/components/inputs/select.mdx | 6 +- .../content/en/components/linear-gauge.mdx | 5 +- .../content/en/components/radial-gauge.mdx | 5 +- .../spreadsheet-conditional-formatting.mdx | 9 +- .../spreadsheet-data-validation.mdx | 6 +- .../en/components/spreadsheet-hyperlinks.mdx | 9 +- .../content/en/components/themes/overview.mdx | 6 +- .../en/components/zoomslider-overview.mdx | 5 +- .../content/jp/components/bullet-graph.mdx | 5 +- .../components/excel-library-using-cells.mdx | 5 +- .../content/jp/components/excel-library.mdx | 40 +- .../jp/components/general-getting-started.mdx | 189 ++++++- .../geo-map-binding-multiple-shapes.mdx | 482 +++--------------- .../src/content/jp/components/geo-map.mdx | 4 +- .../grid-lite/column-configuration.mdx | 13 +- .../jp/components/grid-lite/overview.mdx | 34 +- .../grids/_shared/advanced-filtering.mdx | 39 +- .../components/grids/_shared/cell-editing.mdx | 21 +- .../components/grids/_shared/cell-merging.mdx | 2 + .../grids/_shared/cell-selection.mdx | 19 +- .../_shared/collapsible-column-groups.mdx | 7 +- .../grids/_shared/column-hiding.mdx | 57 ++- .../grids/_shared/column-moving.mdx | 36 +- .../grids/_shared/column-pinning.mdx | 29 ++ .../grids/_shared/column-resizing.mdx | 31 +- .../grids/_shared/column-selection.mdx | 25 +- .../grids/_shared/excel-style-filtering.mdx | 37 +- .../components/grids/_shared/export-excel.mdx | 25 +- .../jp/components/grids/_shared/filtering.mdx | 42 +- .../jp/components/grids/_shared/live-data.mdx | 9 +- .../grids/_shared/multi-column-headers.mdx | 32 +- .../grids/_shared/multi-row-layout.mdx | 30 +- .../jp/components/grids/_shared/paging.mdx | 38 +- .../grids/_shared/remote-data-operations.mdx | 59 ++- .../components/grids/_shared/row-adding.mdx | 4 + .../jp/components/grids/_shared/row-drag.mdx | 76 ++- .../components/grids/_shared/row-editing.mdx | 26 +- .../components/grids/_shared/row-pinning.mdx | 26 +- .../jp/components/grids/_shared/search.mdx | 3 +- .../jp/components/grids/_shared/sorting.mdx | 31 +- .../jp/components/grids/_shared/summaries.mdx | 31 +- .../jp/components/grids/_shared/toolbar.mdx | 33 +- .../grids/_shared/virtualization.mdx | 9 +- .../content/jp/components/grids/data-grid.mdx | 18 +- .../grids/data-grid/column-summaries.mdx | 2 + .../jp/components/grids/grid/groupby.mdx | 35 +- .../jp/components/grids/grid/paste-excel.mdx | 9 +- .../grids/hierarchical-grid/overview.mdx | 31 +- .../components/grids/pivot-grid/features.mdx | 5 +- .../content/jp/components/inputs/select.mdx | 10 +- .../content/jp/components/linear-gauge.mdx | 5 +- .../content/jp/components/radial-gauge.mdx | 5 +- .../spreadsheet-conditional-formatting.mdx | 9 +- .../spreadsheet-data-validation.mdx | 6 +- .../jp/components/spreadsheet-hyperlinks.mdx | 9 +- .../content/jp/components/themes/overview.mdx | 5 +- .../jp/components/zoomslider-overview.mdx | 5 +- 111 files changed, 2697 insertions(+), 1149 deletions(-) create mode 100644 docs/xplat/scripts/audit-trapped-headings.py create mode 100644 docs/xplat/scripts/normalize-platform-blocks.py create mode 100644 docs/xplat/scripts/platform-blocks.mjs create mode 100644 docs/xplat/scripts/platform_blocks.py diff --git a/docs/xplat/scripts/audit-imperative.py b/docs/xplat/scripts/audit-imperative.py index ff80686a50..d38d2a736f 100644 --- a/docs/xplat/scripts/audit-imperative.py +++ b/docs/xplat/scripts/audit-imperative.py @@ -12,6 +12,8 @@ import subprocess import sys +from platform_blocks import leaf_blocks_of + BASE = 'bc240f0a6' DOCS = 'docs/xplat/src/content/en/components' @@ -41,8 +43,9 @@ def sections(text): def block_kinds(section): """What each platform's block in this section looks like: markup, code, or both.""" kinds = {} - for m in re.finditer(r'([\s\S]*?)', section): - for f in re.finditer(r'```(\w+)\n([\s\S]*?)```', m.group(2)): + for b in leaf_blocks_of(section): + body = section[b['body_start']:b['body_end']] + for f in re.finditer(r'```(\w+)\n([\s\S]*?)```', body): lang, body = f.group(1), f.group(2) if lang in MARKUP_LANGS and re.search(r'^\s*<', body, re.M): kind = 'markup' @@ -51,8 +54,8 @@ def block_kinds(section): kind = 'code' else: kind = 'markup' - for platform in m.group(1).split(','): - kinds.setdefault(platform.strip(), set()).add(kind) + for platform in b['platforms']: + kinds.setdefault(platform, set()).add(kind) # A section with no platform blocks may still have bare fences if not kinds: for f in re.finditer(r'```(\w+)\n([\s\S]*?)```', section): diff --git a/docs/xplat/scripts/audit-trapped-headings.py b/docs/xplat/scripts/audit-trapped-headings.py new file mode 100644 index 0000000000..c206ac8782 --- /dev/null +++ b/docs/xplat/scripts/audit-trapped-headings.py @@ -0,0 +1,106 @@ +"""Finds headings that sit inside a platform block they should not be inside. + +A heading inside a is often deliberate: a section that only applies to one platform +is written that way, heading and all. The accidental case is a block that was left open, which +swallows the headings after it — so those readers never see the heading, and anything working in +spans, like the Japanese mirror, deletes whole sections when it replaces the block. + +The two are told apart by what the heading's own section holds. If the section carries content for +platforms the enclosing block excludes, then the heading belongs to all of them and is trapped: + + + ```ts + ... + ``` + ## Dependencies <-- every platform has content under this + + ... + +Bare fences are not evidence either way: the generator tells those apart by their content, so a +section of them inside a platform block is filtered anyway. What is reported is a section holding +blocks for platforms the enclosing block shuts out, which nothing can reconcile. + + python3 audit-trapped-headings.py [path ...] +""" + +import glob +import re +import sys + +from platform_blocks import blocks_of + +PATHS = sys.argv[1:] or ['src/content/*/components/**/*.mdx'] + +BLOCK = re.compile(r'|') +HEADING = re.compile(r'^#{1,6} .+$', re.M) +FENCE = re.compile(r'^```(\w+)', re.M) + + +def enclosing_blocks(text): + """For each heading, the platform sets of the blocks it sits inside.""" + open_stack = [] + events = [] + for m in BLOCK.finditer(text): + events.append((m.start(), m.group(1))) + inside = {} + for h in HEADING.finditer(text): + stack = [] + for at, platforms in events: + if at > h.start(): + break + if platforms is None: + if stack: + stack.pop() + else: + stack.append({p.strip() for p in platforms.split(',')}) + if stack: + inside[h.start()] = (h.group(0), stack[-1]) + return inside + + +def section_platforms(text, start, end): + """Which platforms have content under this heading, and whether any of it is unfiltered.""" + section = text[start:end] + platforms = set() + found = blocks_of(section) + for b in found: + if FENCE.search(section[b['body_start']:b['body_end']]): + platforms |= set(b['platforms']) + covered = [(b['start'], b['end']) for b in found] + bare = any(not any(s <= m.start() < e for s, e in covered) + for m in FENCE.finditer(section) + if m.group(1) != 'json-snippet') + return platforms, bare + + +files = [] +for pattern in PATHS: + files.extend(sorted(glob.glob(pattern, recursive=True))) + +found = 0 +for path in files: + text = open(path, encoding='utf-8').read() + if '([\s\S]*?)<\/PlatformBlock>/g)) { + // Depth aware: these blocks nest, and a lazily paired closer is the inner block's. + for (const b of leafBlocksOf(text)) { + const m = { 1: b.platforms.join(', '), 2: text.slice(b.bodyStart, b.bodyEnd), + 0: text.slice(b.start, b.end), index: b.start }; if (!/```(ts|typescript|razor|csharp)\n/.test(m[2])) continue; for (const p of m[1].split(',')) found.add(p.trim()); } diff --git a/docs/xplat/scripts/check-snippet-divergence.mjs b/docs/xplat/scripts/check-snippet-divergence.mjs index b8fab3d7e2..134b7bc175 100644 --- a/docs/xplat/scripts/check-snippet-divergence.mjs +++ b/docs/xplat/scripts/check-snippet-divergence.mjs @@ -28,6 +28,7 @@ * node scripts/check-snippet-divergence.mjs [--lang=en] [--file=bullet-graph.mdx] [--verbose] */ +import { leafBlocksOf } from './platform-blocks.mjs'; import { readFileSync, readdirSync, statSync } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; @@ -352,10 +353,11 @@ function isOutOfScopeComponent(tag) { * block. A run is broken by prose, so two unrelated samples are not compared with each other. */ function findGroups(text) { - const blockRe = /([\s\S]*?)<\/PlatformBlock>/g; const found = []; - let m; - while ((m = blockRe.exec(text)) !== null) { + // Depth aware: these blocks nest, and a lazily paired closer is the inner block's. + for (const b of leafBlocksOf(text)) { + const m = { 1: b.platforms.join(', '), 2: text.slice(b.bodyStart, b.bodyEnd), + 0: text.slice(b.start, b.end), index: b.start }; const fence = /```(html|tsx|razor|xaml)\n([\s\S]*?)```/.exec(m[2]); if (!fence) continue; // Prose between one block and the next means a new group. diff --git a/docs/xplat/scripts/generate.mjs b/docs/xplat/scripts/generate.mjs index 1584d1cefd..6f171aab4c 100644 --- a/docs/xplat/scripts/generate.mjs +++ b/docs/xplat/scripts/generate.mjs @@ -299,7 +299,10 @@ function detectPlatformFromContent(lang, code) { } function filterCodeBlocks(content) { - return content.replace(/```(\w+)([\s\S]*?)```/g, (match, lang, body) => { + // Both delimiters anchored to a line start: pairing them loosely makes the result depend on + // where the surrounding platform blocks happen to open and close, because a fence whose closer + // is not recognised runs on and takes the next fence with it. + return content.replace(/^```(\w+)[^\n]*\n([\s\S]*?)^```[ \t]*$/gm, (match, lang, body) => { // Exclusive language check. `owner` may be a platform or a group alias. const owner = EXCLUSIVE_LANG[lang.toLowerCase()]; if (owner && !forMatches(PLATFORM, owner)) return ''; diff --git a/docs/xplat/scripts/mirror-collapse-to-jp.mjs b/docs/xplat/scripts/mirror-collapse-to-jp.mjs index d02762efb6..463825b067 100644 --- a/docs/xplat/scripts/mirror-collapse-to-jp.mjs +++ b/docs/xplat/scripts/mirror-collapse-to-jp.mjs @@ -17,6 +17,7 @@ * node scripts/mirror-collapse-to-jp.mjs --file=radial-gauge.mdx [--dry-run] */ +import { leafBlocksOf } from './platform-blocks.mjs'; import { readFileSync, writeFileSync, readdirSync, statSync } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; @@ -68,18 +69,21 @@ const jp = readFileSync(jpFile, 'utf8'); */ function groupsOf(text) { const blocks = []; - for (const m of text.matchAll(/([\s\S]*?)<\/PlatformBlock>/g)) { - if (!/```(html|tsx|razor|xaml|ts|typescript|csharp|js|javascript)\n/.test(m[2])) continue; - const fence = /```(?:html|tsx|razor|xaml|ts|typescript|csharp|js|javascript)\n([\s\S]*?)```/.exec(m[2]); - blocks.push({ platforms: m[1].split(',').map(s => s.trim()), body: fence ? fence[1] : '', - start: m.index, end: m.index + m[0].length }); + // Depth aware: pairing an opener with the first closer after it takes an inner block's closer, + // and a group whose extent is wrong takes whatever sits between with it when it is replaced. + for (const b of leafBlocksOf(text)) { + const body = text.slice(b.bodyStart, b.bodyEnd); + if (!/```(html|tsx|razor|xaml|ts|typescript|csharp|js|javascript)\n/.test(body)) continue; + const fence = /```(?:html|tsx|razor|xaml|ts|typescript|csharp|js|javascript)\n([\s\S]*?)```/.exec(body); + blocks.push({ platforms: b.platforms, body: fence ? fence[1] : '', + start: b.start, end: b.end }); } const groups = []; let current = [], seen = new Set(); for (const b of blocks) { const previousEnd = current.length ? current[current.length - 1].end : -1; const intervening = previousEnd >= 0 && text.slice(previousEnd, b.start).trim().length > 0; - if (current.length && (intervening || b.platforms.some(p => seen.has(p)))) { +if (current.length && (intervening || b.platforms.some(p => seen.has(p)))) { groups.push(current); current = []; seen = new Set(); } current.push(b); @@ -106,7 +110,9 @@ function sectionIndexer(text) { const enSection = sectionIndexer(en); const jpSection = sectionIndexer(jp); -const enFences = [...en.matchAll(/```json-snippet[^\n]*\n(?:[\s\S]*?\n)?```/g)] +// The closing fence has to be the first one at a line start, or a fence with no body — which is +// what a ref= fence is — runs on and swallows everything up to the next fence's close. +const enFences = [...en.matchAll(/```json-snippet[^\n]*\n[\s\S]*?^```/gm)] .map(m => ({ section: enSection(m.index), fence: m[0] })); const jpGroups = groupsOf(jp); diff --git a/docs/xplat/scripts/normalize-platform-blocks.py b/docs/xplat/scripts/normalize-platform-blocks.py new file mode 100644 index 0000000000..e6e9cb23a3 --- /dev/null +++ b/docs/xplat/scripts/normalize-platform-blocks.py @@ -0,0 +1,130 @@ +"""Splits platform blocks so that one never scopes both prose and snippets. + +A block that wraps a heading, its prose and then the code for it is doing two jobs at once, and +every tool that works in spans then has to guess where one ends and the other begins. The Japanese +mirror deleted three sections that way, and a collapse that replaced "the blocks in this section" +dropped the scoping around them. + +Splitting it costs nothing and settles the ambiguity, because visibility is preserved: the prose and +the snippets keep the same `for=` list, they simply stop sharing a block. + + + ## Processing Polygons ## Processing Polygons + Some prose. => Some prose. + ```ts + ... + ``` ```ts + ... + ``` + + +The generated output must not change: run generate.mjs before and after and compare. + + python3 normalize-platform-blocks.py [--write] [path ...] +""" + +import glob +import re +import sys + +WRITE = '--write' in sys.argv +PATTERNS = [a for a in sys.argv[1:] if not a.startswith('--')] or \ + ['src/content/*/components/**/*.mdx'] + +OPEN = re.compile(r'') +CLOSE = re.compile(r'') +FENCE = re.compile(r'^```[^\n]*\n[\s\S]*?^```[ \t]*$', re.M) +HEADING = re.compile(r'^#{1,6} .+$', re.M) + + +def segments(body): + """The block's contents as alternating prose and snippet runs, in order.""" + fences = [(m.start(), m.end()) for m in FENCE.finditer(body)] + if not fences: + return [('prose', body)] + + out, at = [], 0 + run_start = None + for i, (start, end) in enumerate(fences): + if run_start is None: + if body[at:start].strip(): + out.append(('prose', body[at:start])) + run_start = start + # a run continues while only whitespace separates one fence from the next + last = i + 1 == len(fences) or body[end:fences[i + 1][0]].strip() + if last: + out.append(('snippets', body[run_start:end])) + at = end + run_start = None + if body[at:].strip(): + out.append(('prose', body[at:])) + return out + + +def leaf_blocks(text): + """ + Every block that holds no other block, with its platform list and body. + + Depth aware, because these do nest — a Web Components block inside an Angular one — and pairing + an opener with the first closer after it takes the inner block's closer, which mangles the body + and leaves the outer block's tail outside any block at all. A block with something nested in it + is left alone: what it holds is another block, not loose prose. + """ + events = sorted([(m.start(), m.end(), 'open', m.group(1)) for m in OPEN.finditer(text)] + + [(m.start(), m.end(), 'close', None) for m in CLOSE.finditer(text)]) + stack, leaves = [], [] + for start, end, kind, platforms in events: + if kind == 'open': + stack.append({'start': start, 'body_at': end, 'platforms': platforms, 'children': 0}) + elif stack: + frame = stack.pop() + if frame['children'] == 0: + leaves.append((frame['start'], end, frame['platforms'], + text[frame['body_at']:start])) + if stack: + stack[-1]['children'] += 1 + return sorted(leaves) + + +def normalized(text): + out, last, splits = '', 0, 0 + for start, end, platforms, body in leaf_blocks(text): + parts = segments(body) + # Only worth splitting when a heading shares the block with snippets: that is the shape that + # makes a grouping ambiguous. Prose alone, or snippets alone, is already unambiguous. + if len(parts) < 2 or not HEADING.search(body) or \ + not any(kind == 'snippets' for kind, _ in parts): + continue + # Everything that is not a snippet moves out of the snippet block, into a block of its own + # with the same platform list, so visibility is untouched. + rebuilt = '\n\n'.join(f'\n{part.strip()}\n' + for _, part in parts if part.strip()) + out += text[last:start] + rebuilt + last = end + splits += 1 + out += text[last:] + return out, splits + + +files = [] +for pattern in PATTERNS: + files.extend(sorted(glob.glob(pattern, recursive=True))) + +touched, total = 0, 0 +for path in files: + text = open(path, encoding='utf-8').read() + if '([\s\S]*?)<\/PlatformBlock>/g; const found = []; - let m; - while ((m = blockRe.exec(text)) !== null) { + // Depth aware: these blocks nest, and a lazily paired closer is the inner block's. + for (const b of leafBlocksOf(text)) { + const m = { 1: b.platforms.join(', '), 2: text.slice(b.bodyStart, b.bodyEnd), + 0: text.slice(b.start, b.end), index: b.start }; const fence = /```(html|tsx|razor|xaml)\n([\s\S]*?)```/.exec(m[2]); if (!fence) continue; found.push({ platforms: m[1], body: fence[2], start: m.index, end: m.index + m[0].length }); diff --git a/docs/xplat/scripts/platform-blocks.mjs b/docs/xplat/scripts/platform-blocks.mjs new file mode 100644 index 0000000000..2c7d5f2526 --- /dev/null +++ b/docs/xplat/scripts/platform-blocks.mjs @@ -0,0 +1,62 @@ +/** + * Depth-aware reading of spans. + * + * These nest — a Web Components block inside an Angular one is common in the grid topics — so + * pairing an opener with the first closer after it takes the *inner* block's closer. Everything + * downstream is then working with a body that stops halfway and a tail that looks like it belongs to + * no block at all. That mistake silently deleted three sections from a Japanese topic before this + * existed, so anything that needs a block's extent uses this rather than a regex of its own. + */ + +const OPEN = //g; +const CLOSE = /<\/PlatformBlock>/g; + +/** + * Every block in the text, innermost first, each with: + * start, end the whole element, opening tag through closing tag + * bodyStart, bodyEnd what is between the tags + * platforms the for= list, split and trimmed + * depth 1 for a top level block + * children how many blocks it directly contains + */ +export function blocksOf(text) { + const events = []; + for (const m of text.matchAll(OPEN)) { + events.push({ at: m.index, after: m.index + m[0].length, kind: 'open', list: m[1] }); + } + for (const m of text.matchAll(CLOSE)) { + events.push({ at: m.index, after: m.index + m[0].length, kind: 'close' }); + } + events.sort((a, b) => a.at - b.at); + + const stack = [], blocks = []; + for (const e of events) { + if (e.kind === 'open') { + stack.push({ start: e.at, bodyStart: e.after, list: e.list, children: 0 }); + continue; + } + const frame = stack.pop(); + if (!frame) continue; // a stray closer; the page is unbalanced + blocks.push({ + start: frame.start, end: e.after, + bodyStart: frame.bodyStart, bodyEnd: e.at, + platforms: frame.list.split(',').map(s => s.trim()), + depth: stack.length + 1, + children: frame.children, + }); + if (stack.length) stack[stack.length - 1].children++; + } + return blocks.sort((a, b) => a.start - b.start); +} + +/** The blocks that contain no other block, which is where a topic's content actually lives. */ +export function leafBlocksOf(text) { + return blocksOf(text).filter(b => b.children === 0); +} + +/** Whether the text's blocks are balanced, which every reader here assumes. */ +export function isBalanced(text) { + const opens = (text.match(//g) || []).length; + const closes = (text.match(/<\/PlatformBlock>/g) || []).length; + return opens === closes; +} diff --git a/docs/xplat/scripts/platform_blocks.py b/docs/xplat/scripts/platform_blocks.py new file mode 100644 index 0000000000..d87eb00c3d --- /dev/null +++ b/docs/xplat/scripts/platform_blocks.py @@ -0,0 +1,34 @@ +"""Depth-aware reading of spans. + +These nest, so pairing an opener with the first closer after it takes the inner block's closer — the +body then stops halfway and the tail looks like it belongs to no block at all. +""" +import re + +_OPEN = re.compile(r'') +_CLOSE = re.compile(r'') + + +def blocks_of(text): + """(start, end, body_start, body_end, platforms, children) for every block, in order.""" + events = sorted([(m.start(), m.end(), 'open', m.group(1)) for m in _OPEN.finditer(text)] + + [(m.start(), m.end(), 'close', None) for m in _CLOSE.finditer(text)]) + stack, out = [], [] + for start, end, kind, platforms in events: + if kind == 'open': + stack.append([start, end, platforms, 0]) + continue + if not stack: + continue # a stray closer; the page is unbalanced + opened = stack.pop() + out.append({'start': opened[0], 'end': end, 'body_start': opened[1], 'body_end': start, + 'platforms': [p.strip() for p in opened[2].split(',')], + 'children': opened[3]}) + if stack: + stack[-1][3] += 1 + return sorted(out, key=lambda b: b['start']) + + +def leaf_blocks_of(text): + """The blocks holding no other block, which is where a topic's content lives.""" + return [b for b in blocks_of(text) if b['children'] == 0] diff --git a/docs/xplat/scripts/snippet-group-dossier.mjs b/docs/xplat/scripts/snippet-group-dossier.mjs index ad0f553bc5..628494fd6d 100644 --- a/docs/xplat/scripts/snippet-group-dossier.mjs +++ b/docs/xplat/scripts/snippet-group-dossier.mjs @@ -22,6 +22,7 @@ * node scripts/snippet-group-dossier.mjs --file=bullet-graph.mdx [--group=2] */ +import { leafBlocksOf } from './platform-blocks.mjs'; import { readFileSync, readdirSync, statSync, existsSync } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; @@ -66,9 +67,10 @@ const text = readFileSync(topic, 'utf8'); // --------------------------------------------------------------------------- const blocks = []; -const blockRe = /([\s\S]*?)<\/PlatformBlock>/g; -let m; -while ((m = blockRe.exec(text)) !== null) { +// Depth aware: these blocks nest, and a lazily paired closer is the inner block's. +for (const b of leafBlocksOf(text)) { + const m = { 1: b.platforms.join(', '), 2: text.slice(b.bodyStart, b.bodyEnd), + 0: text.slice(b.start, b.end), index: b.start }; const fence = /```(html|tsx|razor|xaml)\n([\s\S]*?)```/.exec(m[2]); if (!fence) continue; blocks.push({ platforms: m[1], lang: fence[1], body: fence[2], diff --git a/docs/xplat/src/content/en/components/bullet-graph.mdx b/docs/xplat/src/content/en/components/bullet-graph.mdx index 9c9750e02d..e941fae9eb 100644 --- a/docs/xplat/src/content/en/components/bullet-graph.mdx +++ b/docs/xplat/src/content/en/components/bullet-graph.mdx @@ -32,16 +32,15 @@ The features of the bullet graph include configurable orientation and direction, - - ## Dependencies When installing the gauge package, the core package must also be installed. + + ```cmd npm install --save {PackageCore} npm install --save {PackageGauges} ``` - diff --git a/docs/xplat/src/content/en/components/excel-library-using-cells.mdx b/docs/xplat/src/content/en/components/excel-library-using-cells.mdx index f50cc69c82..29d7603daf 100644 --- a/docs/xplat/src/content/en/components/excel-library-using-cells.mdx +++ b/docs/xplat/src/content/en/components/excel-library-using-cells.mdx @@ -24,12 +24,12 @@ The objects in an Excel worksheet is the object - - ## References The following code shows the imports needed to use the code-snippets below: + + ```ts import { Workbook } from "{PackageExcel}"; import { WorkbookFormat } from "{PackageExcel}"; @@ -39,7 +39,6 @@ import { NamedReference } from "{PackageExcel}"; import { WorksheetCellComment } from "{PackageExcel}"; import { FormattedString } from "{PackageExcel}"; ``` - diff --git a/docs/xplat/src/content/en/components/excel-library.mdx b/docs/xplat/src/content/en/components/excel-library.mdx index 8784ac2d9c..c6930f5cdd 100644 --- a/docs/xplat/src/content/en/components/excel-library.mdx +++ b/docs/xplat/src/content/en/components/excel-library.mdx @@ -25,24 +25,24 @@ The Infragistics {Platform} Excel Library allows you to work with spreadsheet da - - ## Dependencies When installing the excel package, the core package must also be installed. + + ```cmd npm install --save {PackageCore} npm install --save {PackageExcel} ``` - - ## Component Modules The {Platform} excel library requires the following modules: + + ```ts // app.module.ts import { IgxExcelModule } from 'igniteui-angular-excel'; @@ -56,29 +56,29 @@ import { IgxExcelModule } from 'igniteui-angular-excel'; }) export class AppModule {} ``` - - ## Component Modules The {Platform} excel library requires the following modules: + + ```ts import { IgrExcelModule } from 'igniteui-react-excel'; IgrExcelModule.register(); ``` - - ## Component Modules The {Platform} excel library requires the following modules: + + ```ts // Module Manager for registering the modules of the excel library import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -89,7 +89,6 @@ ModuleManager.register( IgcExcelModule ); ``` - @@ -109,33 +108,44 @@ ModuleManager.register( - - - ## Requirements In order to use the {Platform} excel library, you need to add the Excel Library NuGet package like this: + + ```cmd > dotnet add package IgniteUI.Blazor.Documents.Excel ``` + + Add the following using statement: + + ```razor @using Infragistics.Documents.Excel ``` + + If you are using a Blazor WebAssembly (WASM) project, there are a couple of extra steps: - Add a reference to the following script in the wwwroot/index.html file: + + ```razor ``` + + - Set the static to the current runtime. This can be done by using the following code: + + ```razor @using Microsoft.JSInterop @@ -151,8 +161,6 @@ If you are using a Blazor WebAssembly (WASM) project, there are a couple of extr } } ``` - - @@ -237,13 +245,14 @@ private void SaveFile(byte[] bytes, string fileName, string mime) - ## Managing Heap Due to the size of the Excel Library, it's recommended to disable the source map generation. Modify `angular.json` by setting the `vendorSourceMap` option under architect => build => options and under serve => options: + + ```ts "architect": { "build": { @@ -269,7 +278,6 @@ Modify `angular.json` by setting the `vendorSourceMap` option under architect => // ... } ``` - diff --git a/docs/xplat/src/content/en/components/general-cli-overview.mdx b/docs/xplat/src/content/en/components/general-cli-overview.mdx index 17a1019b2a..80d24c8c65 100644 --- a/docs/xplat/src/content/en/components/general-cli-overview.mdx +++ b/docs/xplat/src/content/en/components/general-cli-overview.mdx @@ -115,22 +115,29 @@ When using the interactive wizard, selecting `side-nav` or `side-nav-mini` trigg - Blazor projects are scaffolded through the **.NET CLI**, so a **.NET SDK 10.0 or newer** is required. On first use the CLI automatically installs the [`IgniteUI.Blazor.Templates`](https://www.nuget.org/packages/IgniteUI.Blazor.Templates) package if it isn't already present. To create a Blazor project non-interactively, provide `blazor` as the framework and choose a hosting model: + + ```cmd ig new --framework blazor --hosting Server ``` + + A more complete example that also sets the theme, the theme variant and skips package restore: + + ```cmd ig new MyApp --framework blazor --hosting Auto --theme material --variant dark --skip-install ``` + + ### Blazor options | Option | Alias | Values | Default | Description | @@ -153,12 +160,13 @@ The following base project templates are available for Blazor: | empty | Minimal Blazor Web App scaffolded via the `IgniteUI.Blazor.Templates` package. | Once the project is created, run it with the standard .NET tooling: + + ```cmd cd dotnet run ``` - The following arguments are available when creating a project: @@ -175,11 +183,12 @@ The following arguments are available when creating a project: | `--agents` | | Copies Agent Skill files into the specified agents' skill directories. Values: `generic`, `claude`, `copilot`, `cursor`, `codex`, `windsurf`, `gemini`, `junie`, `none`. | - ### AI Configuration During Project Creation When `--agents` and `--assistants` flags are not provided, `ig new` prompts you to configure AI tooling as part of the project creation flow. After scaffolding the project, the wizard displays the following prompts: + + ```bash ? Which AI coding assistants do you want to configure MCP servers for? (Press to select) ❯◉ VS Code (GitHub Copilot) @@ -201,21 +210,28 @@ When `--agents` and `--assistants` flags are not provided, `ig new` prompts you ◯ JetBrains Junie (.junie/guidelines/) ◯ None ``` + + Navigate through the options using the arrow keys, toggle selections with SPACE, and confirm with ENTER. To skip the AI configuration prompts entirely during project creation, pass `--assistants none --agents none`: + + ```cmd ig new my-app --framework=react --template=side-nav --assistants none --agents none ``` + + To auto-configure AI tools without prompting, specify the desired values: + + ```cmd ig new my-app --framework=react --template=side-nav --assistants vscode --agents copilot claude ``` - ## Add a Component Template @@ -311,11 +327,15 @@ ig start ### Using Vite The React application generated by Ignite UI CLI uses [Vite](https://vitejs.dev/) as the build tool and supports fast development builds and hot module replacement (HMR). To start the Vite development server directly without the CLI wrapper: + + ```cmd npm run dev ``` + + The Vite dev server starts on `http://localhost:5173` by default. Use `ig start` when you want the CLI to handle building and launching in a single command. @@ -338,21 +358,28 @@ ig mcp ``` - ### Quick Setup with `ig ai-config` The `ai-config` command configures MCP servers, copies framework-specific skill files into each agent's skills directory, and sets up instruction files - all in a single step. Run it from your project root: + + ```cmd npx igniteui-cli ai-config ``` + + If you have the CLI installed globally: + + ```cmd ig ai-config ``` + + Without a version pin, `npx` may pull an older CLI version that does not recognize the `ai-config` subcommand and will instead launch an interactive project-creation prompt, scaffolding a new project inside your existing one. Make sure that you have installed CLI version 16.x. @@ -360,7 +387,9 @@ Without a version pin, `npx` may pull an older CLI version that does not recogni #### Interactive Mode If no parameters are provided, the command enters interactive mode. You are first prompted to select which AI coding assistants should receive MCP server configuration: + + ```bash ? Which AI coding assistants do you want to configure MCP servers for? (Press to select) ❯◉ VS Code (GitHub Copilot) - writes .vscode/mcp.json @@ -370,9 +399,13 @@ If no parameters are provided, the command enters interactive mode. You are firs ◯ JetBrains (AI Assistant) - writes .junie/mcp.json ◯ None ``` + + Next, you are prompted to select which AI agents should receive skill files: + + ```bash ? Which AI agents should receive skill files? (Press to select) ❯◉ GitHub Copilot (.agents/skills/) - copies skills to .agents/skills/ @@ -384,23 +417,33 @@ Next, you are prompted to select which AI agents should receive skill files: ◯ JetBrains Junie (.junie/) - copies skills to .junie/guidelines/ ◯ None ``` + + Navigate through the options using the arrow keys, toggle selections with SPACE, and confirm with ENTER. #### Non-Interactive Mode Use `--assistants` to choose which coding assistants receive MCP config and `--agents` to choose which agents receive skill files: + + ```cmd ig ai-config --assistants vscode --agents copilot ``` + + Target multiple assistants and agents in a single run: + + ```cmd ig ai-config --assistants generic vscode --agents claude copilot cursor ``` + + | Flag | Values | Default | |:-----|:-------|:--------| | `--assistants` | `generic`, `vscode`, `cursor`, `gemini`, `junie`, `none` | Prompted interactively | @@ -413,7 +456,6 @@ After the command finishes, start the MCP servers in your AI client. The servers **VS Code with GitHub Copilot:** Open `.vscode/mcp.json`. VS Code displays an inline **Start** button above each server entry. Click **Start** for both `igniteui` and `igniteui-theming`. Once started, VS Code shows the available tool count next to each server (for example, _"13 tools | 1 prompt"_). Alternatively, run **MCP: List Servers** from the Command Palette (`Ctrl+Shift+P` / `Cmd+Shift+P`), select each server, and choose **Start**. For full setup instructions across all AI clients and Agent Skills wiring, see [Agent Skills](./ai/skills.mdx) and [Ignite UI CLI MCP](./ai/cli-mcp.mdx). - Configure your AI client to use the CLI MCP server manually. Most teams connect both the CLI MCP and the Theming MCP together - CLI MCP handles project and component workflows while Theming MCP handles palettes, themes, and design tokens. diff --git a/docs/xplat/src/content/en/components/general-getting-started.mdx b/docs/xplat/src/content/en/components/general-getting-started.mdx index 660e388039..d88e6f699d 100644 --- a/docs/xplat/src/content/en/components/general-getting-started.mdx +++ b/docs/xplat/src/content/en/components/general-getting-started.mdx @@ -45,9 +45,6 @@ import gettingStartedBlazorCard from '@xplat-images/general/getting-started-blaz - - - ## Prerequisites 1. Install NodeJS. @@ -61,25 +58,37 @@ import gettingStartedBlazorCard from '@xplat-images/general/getting-started-blaz ## Using Ignite UI CLI To create an application from scratch and configure it to use Ignite UI React you can use the Ignite UI CLI. The first step is to install the respective package globally as follows: + + ```cmd npm install -g igniteui-cli ``` + + If you want to get a guided experience through the available options, you can initialize the step-by-step mode that will help you create and set up your new application. To start the guide, simply run the `ig` command: + + ```cmd ig ``` + + Then choose `React` as the framework and `Ignite UI for React TS` as the project type. Select **Side Navigation** or **Side Navigation Mini** to start with a navigation layout. After either navigation template is selected, the wizard asks whether to add authentication. The **Empty** template does not show the authentication option. You can then add a specific component/view or select `Complete & Run`. Or create a project directly in one command, for example: + + ```cmd ig new --framework=react --type=igr-ts --template=side-nav ``` + + For a step-by-step walkthrough of the wizard and the authentication add-on flow, see [Step-by-Step Guide Using Ignite UI CLI](./general-step-by-step-guide-using-cli.mdx). For a full reference of all CLI commands, template IDs, and direct authentication template usage, see the [CLI Overview](./general-cli-overview.mdx). If you added a Grid component during the prompts, once the application is running you should see something similar to the following: @@ -101,36 +110,49 @@ All popular frameworks for React development provide powerful CLI tools for scaf 1 - Open **VS Code**, select **Terminal** menu and then **New Terminal** option. 2 - Type the following command in the terminal window: + + ```cmd npm create vite@latest ``` + + Then follow the prompts to choose a name for the project, React as the framework, whether to use TypeScript, and various other options provided by Vite. Please refer to this topic for more information on the different ways to boilerplate a React application. ### Adding an Ignite UI React Grid Component #### Package Installation To add the Ignite UI React [**Grid**](./grids/data-grid.mdx) component to the app you need to install the `igniteui-react-grids` package: + + ```cmd npm install igniteui-react-grids --save ``` + + #### Importing Component Modules Then we can import the required modules of the components we want to use. Let's do this for the Grid and Column components that we will also use in the template. We also need to import one of the themes. + - + ```ts import { IgrGrid, IgrColumn } from 'igniteui-react-grids'; import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; ``` + + #### Using Components We are now ready to use the {ProductName} grid component in our markup! Let's go ahead and define it: + + ```tsx // App.tsx function App() { @@ -160,147 +182,210 @@ function App() { ); } ``` + + ### Running Application Finally, we can run our new application: + + ```cmd npm run dev ``` + + After executing this command, your project will be built and served locally on your computer. It will automatically open in your default browser and you will be able to use {ProductName} components in your project. The final result should show a data grid with sample data: - - - - - ## Using Ignite UI CLI To create an application from scratch and configure it to use the Ignite UI Web Components you can use the Ignite UI CLI. The first step is to install the respective package globally as follows: + + ```cmd npm install -g igniteui-cli ``` + + If you want to get a guided experience through the available options, you can initialize the step-by-step mode that will help you create and set up your new application. To start the guide, simply run the `ig` command: + + ```cmd ig ``` + + Then choose Web Components as framework. Select **Side Navigation** or **Side Navigation Mini** to start with a navigation layout. After either navigation template is selected, the wizard asks whether to add authentication. The **Empty** template does not show the authentication option. You can then add a specific component/view or select `Complete & Run`. Or create a project directly in one command, for example: + + ```cmd ig new --framework=webcomponents --type=igc-ts --template=side-nav ``` + + For a step-by-step walkthrough of the wizard and the authentication add-on flow, see [Step-by-Step Guide Using Ignite UI CLI](./general-step-by-step-guide-using-cli.mdx). For a full reference of all CLI commands, template IDs, and direct authentication template usage, see the [CLI Overview](./general-cli-overview.mdx). ## Install Polyfills Run this command to install the web component polyfills: + + ```bash npm install @webcomponents/custom-elements ``` + + Then import the web component polyfills into index.js: + + ```ts import '@webcomponents/custom-elements/custom-elements.min'; import '@webcomponents/custom-elements/src/native-shim.js'; ``` + + ## Install Ignite UI for Web Components In order to use the Ignite UI Web Components in your application you should install the `igniteui-webcomponents` package: + + ```cmd npm install igniteui-webcomponents ``` + + Next you will need to import the components that you want to use in your `index.ts` file. You could import one or more components using the function like this: + + ```ts import { defineComponents, IgcAvatarComponent, IgcBadgeComponent } from 'igniteui-webcomponents'; defineComponents(IgcAvatarComponent, IgcBadgeComponent); ``` + + You could also import all of the components using the function: + + ```ts import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); ``` + + Importing all of the components will increase the bundle size of your application. That's why we recommend you to import only the components that you are actually using. The last step is to import the necessary CSS for our components so that they are styled properly: + + ```ts import 'igniteui-webcomponents/themes/light/bootstrap.css'; ``` + + After the components are imported you can use them in your html: + + ```html ``` + + ## Install Charts and Map Packages ### Step 1 - Create the Web Component Project 1 - Open a command line and create a directory named **wc-html** + + ```cmd mkdir wc-html ``` + + 2 - Change the command line path to the newly created directory + + ```cmd cd wc-html ``` + + 3 - Initialize **npm** in the directory + + ```cmd npm init -y ``` + + 4 - Install the **webpack** bundler and the **webpack cli** as a developer dependency + + ```cmd npm install webpack webpack-cli --save-dev ``` + + Webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset. 5 - Open the project in **VS Code** + + ```cmd code . ``` + + 6 - Create a new file named **index.html** with this code: + + ```html @@ -311,100 +396,140 @@ code . ``` + + 7 - Create a new folder named **src**, and within that folder create a new file named **index.js**. Your project structure should look like this: wc-project 8 - Update the **package.json** file to include a build script using **webpack** + + ```json "scripts": { "build": "webpack ./src/index.js -o ./dist/ --output-filename index.bundle.js" }, ``` + + This script will use webpack to bundle the **index.js** file into another file called **index.bundle.js** and place it into a folder named **dist**. If a **JavaScript heap out of memory** issue occurs while building you can increase the heap size by using this build command instead: + + ```json "scripts": { "build": "node --max_old_space_size=8192 node_modules/webpack/bin/webpack src/index.js -o dist/index.bundle.js" }, ``` + + ### Step 2 - Install Polyfills 1 - Open a terminal in **VS Code** (**View** -> **Terminal** menu or press CTRL + ` keys) 2 - Type this command to install the web component polyfills: + + ```cmd npm install @webcomponents/custom-elements ``` + + 3 - Import the web component polyfills into **index.js** + + ```ts import '@webcomponents/custom-elements/custom-elements.min'; import '@webcomponents/custom-elements/src/native-shim.js'; ``` + + ### Step 3 - Install Ignite UI for Web Components and lit-html 1 - Install the Ignite UI for Web Component using **npm**. In this example, we will install the Map web component: + + ```cmd npm install --save {PackageCore} npm install --save {PackageCharts} npm install --save {PackageMaps} npm install lit-html ``` + + 2 - Import the Geographic Map modules and **ModuleManager** in **index.js** file: + + ```ts import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; // module manager for registering the modules import { ModuleManager } from 'igniteui-webcomponents-core'; ``` + + 3 - Register the Geographic Map modules using the **ModuleManager** + + ```ts ModuleManager.register( IgcGeographicMapModule, IgcDataChartInteractivityModule ); ``` + + 4 - Add the Geographic Map web component to the body of **index.html** file + + ```html ``` + + ### Step 4 - Build and Run the Web Component Project 1 - Open a terminal in **VS Code** and execute the **build** script + + ```cmd npm run build ``` + + This command will run the build script we created earlier. The build script will generate a file named **index.bundle.js** in a folder named **dist** 2 - Add the **index.bundle.js** script to the end of **body** element in **index.html** file. + + ```html @@ -413,7 +538,9 @@ This command will run the build script we created earlier. The build script will ``` + + 3 - To run the project, launch a local development server. In this example, we are using Live Server. Right-click within the editor of **index.html** and select **Open with Live Server** {/*wc-live-server*/} @@ -427,22 +554,17 @@ Live Server is an extension to Visual Studio Code that allows you to launch a lo {/*geo-map*/} - - - - - - - ## Updating Existing Apps If you want to use {ProductName} in an existing {Platform} CLI project, we have you covered! All you have to do is execute these commands: + + ```cmd npm install --save {PackageCommon} npm install --save {PackageCharts} {PackageCore} @@ -452,9 +574,13 @@ npm install --save {PackageGrids} {PackageCore} npm install --save {PackageMaps} {PackageCore} npm install --save {PackageSpreadsheet} {PackageCore} ``` + + Or + + ```cmd yarn add {PackageCharts} {PackageCore} yarn add {PackageExcel} {PackageCore} @@ -463,24 +589,27 @@ yarn add {PackageGrids} {PackageCore} yarn add {PackageMaps} {PackageCore} yarn add {PackageSpreadsheet} {PackageCore} ``` + + This will automatically install packages for {ProductName}, along with all of their dependencies, font imports and styles references to the existing project. - - - ## Upgrade from Trial to Licensed The Ignite UI CLI installs the trial version of {ProductName} by default. To upgrade from the trial package to the licensed version, run the upgrade command in your project root: + + ```bash ig upgrade-packages ``` + + You will be prompted to log in to the Infragistics private npm registry if not already configured. For details on the license model, see [License FAQ and Installation](./general-licensing.mdx) and [Open Source vs Premium](./general-open-source-vs-premium.mdx). ## AI-Assisted Development @@ -491,7 +620,6 @@ Run `ig ai-config` from your project root to copy {ProductName} Agent Skills and UI MCP server configuration to `.vscode/mcp.json` in a single step. For an overview of all three layers and setup instructions, see [AI-Assisted Development with Ignite UI](./ai/ai-assisted-development-overview.mdx). For the full CLI MCP client setup guide, see [Ignite UI CLI MCP](./ai/cli-mcp.mdx). For an end-to-end walkthrough using both MCP servers, see [Build an App End-to-End with CLI MCP and Theming MCP](./general-how-to-mcp-e2e.mdx). - @@ -545,8 +673,6 @@ The {ProductName} [Geographic Map](./geo-map.mdx) component brings the ability t - - # Getting Started With {ProductName} This topic provides step-by-step instructions for creating Blazor Server applications with Ignite UI for Blazor using Visual Studio. @@ -579,7 +705,9 @@ For more information on installing Ignite UI for Blazor using NuGet, read the [I ### .NET 6 and Later Applications 1 - Open the **Program.cs** file and register the Ignite UI for Blazor Service by calling **builder.Services.AddIgniteUIBlazor** function: + + ```razor var builder = WebApplication.CreateBuilder(args); @@ -591,32 +719,48 @@ builder.Services.AddIgniteUIBlazor(); var app = builder.Build(); ``` + + 2 - Add the **IgniteUI.Blazor.Controls** namespace in the **_Imports.razor** file: + + ```razor @using IgniteUI.Blazor.Controls ``` + + 3a - Add the Style Sheet in the **``** element of the **Pages/_Layout.cshtml** or **Pages/_Host.cshtml** file: + + ```razor ``` + + 3b - Add Script References: + + ```razor ``` + + ### .NET 5 Applications 1 - Open the **Startup.cs** file and register the Ignite UI for Blazor Service by calling **services.AddIgniteUIBlazor()**: + + ```razor public void ConfigureServices(IServiceCollection services) { @@ -624,32 +768,48 @@ public void ConfigureServices(IServiceCollection services) services.AddIgniteUIBlazor(); } ``` + + 2 - Add the **IgniteUI.Blazor.Controls** namespace in the **_Imports.razor** file: + + ```razor @using IgniteUI.Blazor.Controls ``` + + 3a - Add the Style Sheet in the **``** element of the **Pages/_Host.cshtml** file: + + ```razor ``` + + 3b - Add Script Reference to the **Pages/_Host.cshtml** file: + + ```razor ``` + + ## Add Ignite UI for Blazor Component Add an Ignite UI for Blazor component to your razor page: + + ```razor @@ -669,10 +829,10 @@ Add an Ignite UI for Blazor component to your razor page: ``` + + Build and run the Blazor app. getting-started-blazor-card - - diff --git a/docs/xplat/src/content/en/components/general-step-by-step-guide-using-cli.mdx b/docs/xplat/src/content/en/components/general-step-by-step-guide-using-cli.mdx index f513cab953..d6b48962e8 100644 --- a/docs/xplat/src/content/en/components/general-step-by-step-guide-using-cli.mdx +++ b/docs/xplat/src/content/en/components/general-step-by-step-guide-using-cli.mdx @@ -100,11 +100,12 @@ Choose a theme for your application: - The **custom** option generates a Sass-based color palette and theme configuration using the [Theming API](./themes/overview.mdx). - ### Choose a hosting Model Choose a hosting model for your application: + + ```bash ? Choose the hosting model: (Use arrow keys) ❯ Server @@ -121,7 +122,6 @@ Choose a theme variant for your application: ❯ light dark ``` - ### Configure AI Tooling diff --git a/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx index c46c956f34..1638b243f3 100644 --- a/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx @@ -36,56 +36,52 @@ You can use geographic series in above or other combinations to plot desired dat First, let's import required components and modules: - - -```ts -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicShapeSeries } from 'igniteui-react-maps'; -import { IgrGeographicPolylineSeries } from 'igniteui-react-maps'; -import { IgrGeographicSymbolSeries } from 'igniteui-react-maps'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; -import { IgrDataContext } from 'igniteui-react-core'; -import { IgrShapeDataSource } from 'igniteui-react-core'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); -``` - - - - - -```ts -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -import { IgcGeographicMapComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicPolylineSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicSymbolSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -ModuleManager.register( - IgcDataChartInteractivityModule, - IgcGeographicMapModule -); -``` - - - - - -```ts -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps'; -import { IgxGeographicShapeSeriesComponent } from 'igniteui-angular-maps'; -import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; +```json-snippet id="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="bindingImports,handlersImports" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicShapeSeries", + "name": "polygonSeries", + "shapeMemberPath": "points", + "shapeFill": "rgb(150, 150, 150)", + "shapeStroke": "Black", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "shapeMemberPath": "points", + "shapeStroke": "rgba(147, 15, 180, 0.5)", + "thickness": 3 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "longitudeMemberPath": "longitude", + "latitudeMemberPath": "latitude", + "markerType": "Circle", + "markerOutline": "rgb(2, 102, 196)", + "markerBrush": "White" + } + ] + } + }, + "onViewInit": [ + "MapMultipleShapesPolygons", + "MapMultipleShapesPolylines", + "MapMultipleShapesPoints", + "MapMultipleShapesLoad" + ] +} ``` - - ```csharp @@ -103,40 +99,7 @@ builder.Services.AddIgniteUIBlazor( Next, we need to create a map with a few Geographic Series that will later load different type of shapefile. -```json-snippet source="/maps/geo-map/binding-multiple-shapes" -{ - "type": "GeographicMap", - "name": "map", - "height": "500px", - "width": "700px", - "zoomable": true, - "series": [ - { - "type": "GeographicShapeSeries", - "name": "polygonSeries", - "shapeMemberPath": "points", - "shapeFill": "rgb(150, 150, 150)", - "shapeStroke": "Black", - "shapeStrokeThickness": 1 - }, - { - "type": "GeographicPolylineSeries", - "name": "polylineSeries", - "shapeMemberPath": "points", - "shapeStroke": "rgba(147, 15, 180, 0.5)", - "thickness": 3 - }, - { - "type": "GeographicSymbolSeries", - "name": "symbolSeries", - "longitudeMemberPath": "longitude", - "latitudeMemberPath": "latitude", - "markerType": "Circle", - "markerOutline": "rgb(2, 102, 196)", - "markerBrush": "White" - } - ] -} +```json-snippet ref="shapes" source="/maps/geo-map/binding-multiple-shapes" ``` @@ -144,72 +107,9 @@ Next, we need to create a map with a few Geographic Series that will later load Next, in constructor of your page, add a for each shapefile that you want to display in the geographic map component. - - -```ts -const sdsPolygons = new IgrShapeDataSource(); -sdsPolygons.importCompleted = this.onPolygonsLoaded; -sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; -sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; -sdsPolygons.dataBind(); -const sdsPolylines = new IgrShapeDataSource(); -sdsPolylines.importCompleted = this.onPolylinesLoaded; -sdsPolylines.shapefileSource = url + "/shapes/WorldConnections.shp"; -sdsPolylines.databaseSource = url + "/shapes/WorldConnections.dbf"; -sdsPolylines.dataBind(); -const sdsLocations = new IgrShapeDataSource(); -sdsLocations.importCompleted = this.onPointsLoaded; -sdsLocations.shapefileSource = url + "/Shapes/WorldCities.shp"; -sdsLocations.databaseSource = url + "/Shapes/WorldCities.dbf"; -sdsLocations.dataBind(); +```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesLoad" ``` - - - - -```ts -const sdsPolygons = new IgxShapeDataSource(); -sdsPolygons.importCompleted = this.onPolygonsLoaded; -sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; -sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; -sdsPolygons.dataBind(); -const sdsPolylines = new IgxShapeDataSource(); -sdsPolylines.importCompleted = this.onPolylinesLoaded; -sdsPolylines.shapefileSource = url + "/shapes/WorldConnections.shp"; -sdsPolylines.databaseSource = url + "/shapes/WorldConnections.dbf"; -sdsPolylines.dataBind(); -const sdsLocations = new IgxShapeDataSource(); -sdsLocations.importCompleted = this.onPointsLoaded; -sdsLocations.shapefileSource = url + "/Shapes/WorldCities.shp"; -sdsLocations.databaseSource = url + "/Shapes/WorldCities.dbf"; -sdsLocations.dataBind(); -``` - - - - - -```ts -const sdsPolygons = new IgcShapeDataSource(); -sdsPolygons.importCompleted = this.onPolygonsLoaded; -sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; -sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; -sdsPolygons.dataBind(); -const sdsPolylines = new IgcShapeDataSource(); -sdsPolylines.importCompleted = this.onPolylinesLoaded; -sdsPolylines.shapefileSource = url + "/shapes/WorldConnections.shp"; -sdsPolylines.databaseSource = url + "/shapes/WorldConnections.dbf"; -sdsPolylines.dataBind(); -const sdsLocations = new IgcShapeDataSource(); -sdsLocations.importCompleted = this.onPointsLoaded; -sdsLocations.shapefileSource = url + "/Shapes/WorldCities.shp"; -sdsLocations.databaseSource = url + "/Shapes/WorldCities.dbf"; -sdsLocations.dataBind(); -``` - - - ```razor @@ -234,268 +134,39 @@ protected override void OnInitialized() - - - - - ## Processing Polygons Process shapes data loaded in with of countries of the world and assign it to object. + -```ts -import { IgrGeographicShapeSeries } from 'igniteui-react-maps'; -import { IgrShapeDataSource } from 'igniteui-react-core'; -// ... -public onPolygonsLoaded(sds: IgrShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }; - - const shapeSeries = this.geoMap.series[0] as IgrGeographicShapeSeries; - shapeSeries.dataSource = geoPolygons; -} -``` - -```ts -import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -// ... -public onPolygonsLoaded(sds: IgxShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }; - - const shapeSeries = this.geoMap.series[0] as IgxGeographicShapeSeries; - shapeSeries.dataSource = geoPolygons; -} -``` - -```ts -import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -// ... -public onPolygonsLoaded(sds: IgcShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }; - let polygonSeries = (document.getElementById("polygonSeries") as IgcGeographicShapeSeriesComponent); - polygonSeries.dataSource = geoPolygons; - polygonSeries.renderSeries(false); -} + +```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolygons" ``` + + ## Processing Polyline Process shapes data loaded in with communication routes between major cities and assign it to object. + -```ts -import { IgrGeographicPolylineSeries } from 'igniteui-react-maps'; -import { IgrShapeDataSource } from 'igniteui-react-core'; -// ... -public onPolylinesLoaded(sds: IgrShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); - } - const lineSeries = this.geoMap.series[1] as IgrGeographicPolylineSeries; - lineSeries.dataSource = geoPolylines; -} -``` - -```ts -import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -// ... -public onPolylinesLoaded(sds: IgxShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); - } - const lineSeries = this.geoMap.series[1] as IgxGeographicPolylineSeries; - lineSeries.dataSource = geoPolylines; -} -``` - -```ts -import { IgcGeographicPolylineSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -// ... -public onPolylinesLoaded(sds: IgcShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); - } - - let lineSeries = (document.getElementById("lineSeries") as IgcGeographicPolylineSeriesComponent); - lineSeries.dataSource = geoPolylines; - lineSeries.renderSeries(false); -} + +```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolylines" ``` + + ## Processing Points Process shapes data loaded in with locations of major cities and assign it to object. + -```ts -import { IgrGeographicSymbolSeries } from 'igniteui-react-maps'; -import { MarkerType } from 'igniteui-react-charts'; -// ... -public onPointsLoaded(sds: IgrShapeDataSource, e: any) { - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - const symbolSeries = this.geoMap.series[2] as IgrGeographicSymbolSeries; - symbolSeries.dataSource = geoLocations; -} -``` - -```ts -import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -// ... -public onPointsLoaded(sds: IgxShapeDataSource, e: any) { - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - const symbolSeries = this.geoMap.series[2] as IgxGeographicSymbolSeries; - symbolSeries.dataSource = geoLocations; -} -``` - -```ts -import { IgcGeographicSymbolSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -// ... -public onPointsLoaded(sds: IgcShapeDataSource, e: any) { - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - let symbolSeries = (document.getElementById("symbolSeries") as IgcGeographicSymbolSeriesComponent); - symbolSeries.dataSource = geoLocations; - symbolSeries.renderSeries(false); -} + +```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPoints" ``` - - - ## Map Background Also, you might want to hide geographic imagery from the map background content if your shape files provided sufficient geographic context (e.g. shape of countries) for your application. diff --git a/docs/xplat/src/content/en/components/geo-map.mdx b/docs/xplat/src/content/en/components/geo-map.mdx index 606c1703fd..bd9a1266f5 100644 --- a/docs/xplat/src/content/en/components/geo-map.mdx +++ b/docs/xplat/src/content/en/components/geo-map.mdx @@ -38,18 +38,17 @@ For more details please visit: - - ## Dependencies The {Platform} geographic map component, you need to first install these packages: + + ```cmd npm install --save {PackageCore} npm install --save {PackageCharts} npm install --save {PackageMaps} ``` - diff --git a/docs/xplat/src/content/en/components/grid-lite/column-configuration.mdx b/docs/xplat/src/content/en/components/grid-lite/column-configuration.mdx index 2c1af1dbd1..d03c0df1c4 100644 --- a/docs/xplat/src/content/en/components/grid-lite/column-configuration.mdx +++ b/docs/xplat/src/content/en/components/grid-lite/column-configuration.mdx @@ -63,11 +63,10 @@ return ( - - - Columns are defined declaratively using `` child elements within the grid. The property is the only required for a column, as it serves as the column identifier. It is also the property that is used to map and render the relevant data in the grid rows. + + ```razor ` child elements wit ``` + + ## Configuration Based on the Data Source The grid supports inferring the column configuration based on the provided data source when `AutoGenerate` is set to true. It tries to infer the appropriate and properties based on records in the data. + + ```razor @code { @@ -104,27 +107,23 @@ The grid supports inferring the column configuration based on the provided data } } ``` - - - - - ## Configuration Based on the Data Source The grid supports inferring the column configuration based on the provided data source when `autoGenerate` is set to true. It tries to infer the appropriate `field` and `dataType` based on records in the data. + + ```typescript const data: Record[] = [ { entryId: "1234", source: "https://example.com", ts: 1373521917579 }, ... ]; ``` - diff --git a/docs/xplat/src/content/en/components/grid-lite/overview.mdx b/docs/xplat/src/content/en/components/grid-lite/overview.mdx index 74350fb16c..eb007a43f4 100644 --- a/docs/xplat/src/content/en/components/grid-lite/overview.mdx +++ b/docs/xplat/src/content/en/components/grid-lite/overview.mdx @@ -48,32 +48,42 @@ Our free, open-source {Platform} Grid Lite comes with the following column-based ### Installation To install {GridLiteTitle}, go to the root folder of your project (where `package.json` is located) and run the following command using npm: + + ```cmd npm install igniteui-grid-lite --save ``` + + Or using yarn: + + ```cmd yarn add igniteui-grid-lite ``` - ### Installation To install {GridLiteTitle}, go to the root folder of your project (where `package.json` is located) and run the following command using npm: + + ```cmd npm install igniteui-react --save ``` + + Or using yarn: + + ```cmd yarn add igniteui-react ``` - ### Using the Grid Lite in your {Platform} code @@ -137,42 +147,58 @@ return ( - - ### Install IgniteUI.Blazor.GridLite In Visual Studio, open the NuGet package manager by selecting **Tools** → **NuGet Package Manager** → **Manage NuGet Packages for Solution**. Search for and install the **IgniteUI.Blazor.GridLite** NuGet package. Or install via the Package Manager Console: + + ```cmd Install-Package IgniteUI.Blazor.GridLite ``` + + Or via .NET CLI: + + ```cmd dotnet add package IgniteUI.Blazor.GridLite ``` + + ### Using Grid Lite 1 - Add the **IgniteUI.Blazor.Controls** namespace in the **_Imports.razor** file: + + ```razor @using IgniteUI.Blazor.Controls ``` + + 2 - Add the Style Sheet in the appropriate location based on your project type: + + ```razor ``` + + 3 - Add the Grid Lite component to your razor page: + + ```razor @@ -186,7 +212,6 @@ dotnet add package IgniteUI.Blazor.GridLite }; } ``` - diff --git a/docs/xplat/src/content/en/components/grids/_shared/advanced-filtering.mdx b/docs/xplat/src/content/en/components/grids/_shared/advanced-filtering.mdx index ca4967854b..8ebda7dc11 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/advanced-filtering.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/advanced-filtering.mdx @@ -311,24 +311,34 @@ It's super easy to configure the advanced filtering to work outside of the + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + The advanced filtering dialog takes its background color from the grid's theme, using the **filtering-row-background** parameter. In order to change the background we need to create a custom theme: + + ```scss $custom-grid: grid-theme( $filtering-row-background: #FFCD0F ); ``` + + Since we have other components inside the advanced filtering dialog, such as buttons, chips, dropdowns and inputs, we need to create a separate theme for each one: + + ```scss $custom-button: button-theme( $disabled-color: gray, @@ -355,11 +365,15 @@ $custom-drop-down: drop-down-theme( ); ``` + + In this example we only changed some of the parameters for the listed components, but the , , , , themes provide way more parameters to control their respective styling. The last step is to **include** the component mixins, each with its respective theme. We will also add some styles for other elements inside the advanced filtering dialog. + + ```scss @include grid($custom-grid); igx-advanced-filtering-dialog { @@ -396,7 +410,9 @@ igx-advanced-filtering-dialog { } } ``` + + We scope most of the components' mixins within `igx-advanced-filtering-dialog`, so that these custom themes will affect only components nested in the advanced filtering dialog. Otherwise, other buttons, chips, inputs and dropdowns in the application would be affected too. @@ -404,7 +420,9 @@ We scope most of the components' mixins within `igx-advanced-filtering-dialog`, If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -445,21 +463,29 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) } } ``` + + ### Defining a Color Palette Instead of hardcoding the color values like we just did, we can achieve greater flexibility in terms of colors by using the and functions. `igx-palette` generates a color palette based on the primary and secondary colors that are passed: + + ```scss $yellow-color: #FFCD0F; $black-color: #292826; $dark-palette: palette($primary: $yellow-color, $secondary: $black-color); ``` + + And then with we can easily retrieve color from the palette. + + ```scss $custom-grid: grid-theme( $filtering-row-background: color($dark-palette, "secondary", 400) @@ -490,7 +516,9 @@ $custom-drop-down: drop-down-theme( ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/sass/palettes.mdx) topic for detailed guidance on how to use them. @@ -500,7 +528,9 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr Going further with the theming engine, you can build a robust and flexible structure that benefits from [**schemas**](../themes/sass/schemas.mdx). A **schema** is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - , , , , and schemas: + + ```scss $grid-dark-palette: palette($primary: #11bd7b, $secondary: #e32057, $info: $black-color); @@ -557,9 +587,13 @@ $custom-drop-down-schema: extend($_light-drop-down, ) ); ``` + + In order to apply our custom schemas we have to **extend** one of the globals ( or ), which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss $custom-light-schema: extend($light-schema,( igx-grid: $custom-grid-schema, @@ -600,7 +634,9 @@ $custom-drop-down: drop-down-theme( $schema: $custom-light-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. ### Demo @@ -612,7 +648,6 @@ Don't forget to include the themes in the same way as it was demonstrated above. The sample will not be affected by the selected global theme from **Change Theme**. - diff --git a/docs/xplat/src/content/en/components/grids/_shared/cell-editing.mdx b/docs/xplat/src/content/en/components/grids/_shared/cell-editing.mdx index 7d017006a2..36d358af65 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/cell-editing.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/cell-editing.mdx @@ -1440,31 +1440,41 @@ In order to use the [Ignite UI Theming Library](../themes/styles.mdx), we must f ### Importing Style Library + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Now we can make use of all of the functions exposed by the {ProductName} theme engine. ### Defining a Palette After we've properly imported the index file, we create a custom palette that we can use. Let's define two colors that we like and use them to build a palette with [igx-palette](../themes/palettes.mdx): + + ```scss $white: #fff; $blue: #4567bb; $color-palette: palette($primary: $white, $secondary: $blue); ``` + + ### Defining Themes We can now define the theme using our palette. The cells are styled by the , so we can use that to generate a theme for our : + + ```scss $custom-grid-theme: grid-theme( $cell-editing-background: $blue, @@ -1473,15 +1483,21 @@ $custom-grid-theme: grid-theme( $edit-mode-color: color($color-palette, "secondary", 200) ); ``` + + ### Applying the Theme The easiest way to apply our theme is with a `sass` `@include` statement in the global styles file: + + ```scss @include grid($custom-grid-theme); ``` + + This way, the theme will apply to **all** grids in our application. If we wish to apply this custom styling only to a specific component, we need to scope the theme. ### Scoped Component Theme @@ -1497,7 +1513,9 @@ This way, due to {Platform}'s [ViewEncapsulation](https://angular.io/api/core/Co We wrap the statement inside of a `:host` selector to prevent our styles from affecting elements outside of our component: + + ```scss :host { ::ng-deep { @@ -1506,7 +1524,9 @@ This way, due to {Platform}'s [ViewEncapsulation](https://angular.io/api/core/Co } } ``` + + ### Styling Demo In addition to the steps above, we can also style the controls that are used for the cells' editing templates: [igx-input-group](../input-group.mdx#styling), [igx-datepicker](../date-picker.mdx#styling) & [igx-checkbox](../checkbox.mdx#styling) @@ -1516,7 +1536,6 @@ In addition to the steps above, we can also style the controls that are used for The sample will not be affected by the selected global theme from **Change Theme**. - ## API References diff --git a/docs/xplat/src/content/en/components/grids/_shared/cell-merging.mdx b/docs/xplat/src/content/en/components/grids/_shared/cell-merging.mdx index 610de16269..9d2b82f3d5 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/cell-merging.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/cell-merging.mdx @@ -304,7 +304,9 @@ constructor() { } ``` + + ### Demo diff --git a/docs/xplat/src/content/en/components/grids/_shared/cell-selection.mdx b/docs/xplat/src/content/en/components/grids/_shared/cell-selection.mdx index 6a308844f1..ca5e9d6180 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/cell-selection.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/cell-selection.mdx @@ -400,28 +400,38 @@ The theme engine exposes properties that allows us to style the **range of selec ### Import Theme To get started with styling the selection, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + ### Define Colors Once done, we can make use of the and functions. With them, we define the colors we would like to use for our selection range: + + ```scss $text-color:contrast-color($default-palette, 'primary', 900); $background-color: color($default-palette, "primary", 900); $border-yellow: #f2c43c; ``` + + ### Create Custom Theme Next we create a new theme that extends the passing our `text-color`, `background-color` and `border-yellow` variables as `$cell-selected-text-color`, `$cell-selected-background` and `$cell-active-border-color`, respectively: + + ```scss $custom-grid-theme: grid-theme( $cell-selected-text-color: $text-color, @@ -429,16 +439,22 @@ $custom-grid-theme: grid-theme( $cell-selected-background: $background-color ); ``` + + ### Apply Theme Afterwards, all we need to do is include the mixin in our component's style (could also be in the app styles), so that our @@igSelector uses the newly created theme instead of the default one: + + ```scss @include grid($custom-grid-theme); ``` + - + + If the component is using an [Emulated ViewEncapsulation](../themes/styles.mdx#view-encapsulation), it is necessary to penetrate this encapsulation using `::ng-deep`. We scope the style under `:host` selector so as not to affect any other grids we might have in our application. @@ -462,7 +478,6 @@ With the custom theme applied, the selected grid cells are highlighted with our The sample will not be affected by the selected global theme from **Change Theme**. - ## API References diff --git a/docs/xplat/src/content/en/components/grids/_shared/collapsible-column-groups.mdx b/docs/xplat/src/content/en/components/grids/_shared/collapsible-column-groups.mdx index 948a6d30e2..80288b1db6 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/collapsible-column-groups.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/collapsible-column-groups.mdx @@ -264,7 +264,9 @@ const collapsibleIndicatorTemplate = (ctx: IgrColumnTemplateContext) => { ### Using Property You can define custom expand/collapse template and provide it to each of the collapsible column groups using property. Check the markup below: + + ```html {{column.expanded ? 'remove' : 'add'}} @@ -278,11 +280,15 @@ You can define custom expand/collapse template and provide it to each of the col ``` + + ### Using igxCollapsibleIndicator Directive Another way to achieve this behavior is to use the igxCollapsibleIndicator directive as shown in the example below: + + ```html @@ -296,7 +302,6 @@ Another way to achieve this behavior is to use the igxCollapsibleIndicator direc ``` - > **Note** diff --git a/docs/xplat/src/content/en/components/grids/_shared/column-hiding.mdx b/docs/xplat/src/content/en/components/grids/_shared/column-hiding.mdx index a590b285a4..067a01a0c8 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/column-hiding.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/column-hiding.mdx @@ -621,7 +621,9 @@ You can see the result of the code from above at the beginning of this article i ## Custom Column Hiding UI Let's say we want to manually define our , add the `ColumnHidingDirective`so that it knows what its purpose would be and put it anywhere on the page. First, however, we need to import the `IgxColumnActionsModule`. + + ```typescript // app.module.ts @@ -636,9 +638,13 @@ import { }) export class AppModule {} ``` + + Now let's create our . In our application, we will place it next to the grid (which is not the case with the toolbar's column hiding UI, where the component is inside a dropdown by design). We will also set the `Columns` property of the component to the columns of our and include some custom styles to make our application look even better! + + ```html
@@ -685,11 +691,15 @@ Now let's create our . In our applicati margin-left: 30px; } ``` + + ### Add title and filter prompt A couple more things we can do in order to enrich the user experience of our column hiding component is to set the and the `FilterColumnsPrompt` properties. The is displayed on the top and the `FilterColumnsPrompt` is the prompt text that is displayed in the filter input of our column hiding UI. + + ```html
``` +
- + ### Add Column Display Order Options We can also allow the user to choose the display order of the columns in the column hiding UI. For this purpose we will use the `ColumnDisplayOrder` property, which is an enumeration type property and has the following options: @@ -707,7 +718,9 @@ We can also allow the user to choose the display order of the columns in the col - **DisplayOrder** (order the columns according to the way they are displayed in the {ComponentTitle}) Let's create a couple of nicely designed radio buttons for our options! We just have to go ahead and get the [**IgxRadio**](../radio-button.mdx) module. + + ```typescript import { IgxRadioModule @@ -718,9 +731,13 @@ import { }) export class AppModule {} ``` + + Now all we have to do is bind the `Checked` property of both radio buttons respectively with different conditions and handle their click events. + + ```html
@@ -735,7 +752,6 @@ Now all we have to do is bind the `Checked` property of both radio buttons respe
``` -
### Disable hiding of a column @@ -880,46 +896,64 @@ If all went well, this is how our column hiding UI component should look like: ## Styling To get started with styling the column actions component, we need to import the index file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + By using the simplest approach, we create a new theme that extends the `column-actions-theme` and accepts the `$title-color` and the `$background-color` parameters. + + ```scss $custom-column-actions-theme: column-actions-theme( $background-color: steelblue, $title-color: gold ); ``` + + As seen, the `column-actions-theme` only controls colors for the column actions container, but does not affect the buttons, checkboxes and the input-group inside of it. Let's say we want to style the buttons as well, so we will create a new button theme: + + ```scss $custom-button: button-theme($flat-text-color: gold, $disabled-color: black); ``` + + In this example we only changed the text-color of the flat buttons and the button disabled color, but the `button-theme` provides way more parameters to control the button style. The last step is to **include** the component mixins, each with its respective theme: + + ```scss @include column-actions($custom-column-actions-theme); .igx-column-actions { @include button($custom-button); } ``` + + > **Note** >We scope the **igx-button** mixin within `.igx-column-actions`, so that only the column hiding buttons would be styled. Otherwise other buttons in the grid would be affected too. > **Note** >If the component is using an `Emulated`ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -930,22 +964,30 @@ The last step is to **include** the component mixins, each with its respective t } } ``` + + ### Defining a Color Palette Instead of hardcoding the color values like we just did, we can achieve greater flexibility in terms of colors by using the `igx-palette` and `igx-color` functions. `igx-palette` generates a color palette based on the primary and secondary colors that are passed: + + ```scss $yellow-color: gold; $blue-color: steelblue; $custom-palette: palette($primary: $blue-color, $secondary: $yellow-color); ``` + + And then with `igx-color` we can easily retrieve color from the palette. + + ```scss $custom-column-actions-theme: column-actions-theme( $palette: $custom-palette, @@ -959,14 +1001,18 @@ $custom-button: button-theme( $disabled-color: black ); ``` + + > **Note** >The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to `Palettes](themes/sass/palettes.mdx) topic for detailed guidance on how to use them. ### Using Schemas Going further with the theming engine, you can build a robust and flexible structure that benefits from [**schemas**](themes/sass/schemas.mdx). A **schema** is a recipe of a theme. + + ```scss // Extending the dark column actions schema $custom-column-actions-schema: extend($_dark-column-actions, @@ -991,9 +1037,13 @@ $custom-button-schema: extend($_dark-button, ) ); ``` + + In order to apply our custom schemas we have to **extend** one of the globals `light` or `dark`, which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss // Extending the global dark-schema $custom-dark-schema: extend($dark-schema,( @@ -1013,13 +1063,14 @@ $custom-button: button-theme( $schema: $custom-dark-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. ### Demo - diff --git a/docs/xplat/src/content/en/components/grids/_shared/column-moving.mdx b/docs/xplat/src/content/en/components/grids/_shared/column-moving.mdx index 37d1fb55bd..48f5ac5662 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/column-moving.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/column-moving.mdx @@ -294,16 +294,22 @@ igRegisterScript("onColumnMovingEnd", (event) => { ## Styling To get started with styling the column moving headers, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + Following the simplest approach, we create a new theme that extends the and accepts the `$ghost-header-background`, `$ghost-header-text-color` and the `$ghost-header-icon-color` parameters. + + ```scss // Define dark theme for the column moving $dark-grid-column-moving-theme: grid-theme( @@ -312,17 +318,25 @@ $dark-grid-column-moving-theme: grid-theme( $ghost-header-icon-color: #f4bb5c ); ``` + + The last step is to **include** the component mixins with its respective theme: + + ```scss @include grid($dark-grid-column-moving-theme); ``` + + Depending on the component [**View Encapsulation**](/components/themes/sass/component-themes.html#view-encapsulation) strategy, it may be necessary to `penetrate` this encapsulation using `::ng-deep` + + ```scss :host { ::ng-deep { @@ -330,23 +344,31 @@ Depending on the component [**View Encapsulation**](/components/themes/sass/comp } } ``` + + ### Defining a Color Palette Instead of hardcoding the color values like we just did, we can achieve greater flexibility in terms of colors by using the and functions. **igx-palette** generates a color palette based on the primary and secondary colors that are passed: + + ```scss $yellow-color: #F4D45C; $black-color: #575757; $dark-palette: palette($primary: $yellow-color, $secondary: $black-color); ``` + + And then with we can easily retrieve color from the palette. + + ```scss $dark-grid-column-moving-theme: grid-theme( $palette: $dark-palette, @@ -355,8 +377,9 @@ $dark-grid-column-moving-theme: grid-theme( $ghost-header-icon-color: color($dark-palette, "primary", 500) ); ``` + - + The color and palette are powerful functions for generating and retrieving colors. Please refer to [Palettes](/components/themes/palettes.html) topic for detailed guidance on how to use them. @@ -366,7 +389,9 @@ The color and palette are powerful functions for generating and retrieving color Going further with the theming engine, you can build a robust and flexible structure that benefits from [schemas](/components/themes/sass/schemas.html). A **schema** is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - . + + ```scss // Extending the dark grid schema $dark-grid-column-moving-schema: extend($_light-grid, @@ -383,9 +408,13 @@ $dark-grid-column-moving-schema: extend($_light-grid, ) ); ``` + + In order to apply our custom schema we have to **extend** one of the globals ( or ), which is basically pointing out the components with a custom schema, and after that add it to the respective component theme: + + ```scss // Extending the global dark-schema $custom-light-schema: extend($light-schema,( @@ -398,7 +427,9 @@ $dark-grid-column-moving-theme: grid-theme( $schema: $custom-light-schema ); ``` + + Don't forget to include the theme in the same way as it was demonstrated above. ### Demo @@ -411,7 +442,6 @@ Don't forget to include the theme in the same way as it was demonstrated above. The sample will not be affected by the selected global theme from **Change Theme**. - diff --git a/docs/xplat/src/content/en/components/grids/_shared/column-pinning.mdx b/docs/xplat/src/content/en/components/grids/_shared/column-pinning.mdx index 329977dbfe..dde1539bc6 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/column-pinning.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/column-pinning.mdx @@ -830,17 +830,23 @@ In the below steps, we are going through the steps of customizing the grid's Pin ### Importing Global Theme To begin the customization of the Pinning feature, you need to import the `index` file, where all styling functions and mixins are located. + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + ### Defining Custom Theme Next, create a new theme, that extends the and accepts the parameters, required to customize the Pinning feature as desired. + + ```scss $custom-theme: grid-theme( /* Pinning properties that affect styling */ @@ -851,7 +857,9 @@ $custom-theme: grid-theme( /* add other features properties here... */ ); ``` + + ### Defining a Custom Color Palette In the approach, that was described above, the color values were hardcoded. Alternatively, you can achieve greater flexibility, using the and functions. `igx-palette` generates a color palette, based on provided primary and secondary colors. @@ -864,6 +872,9 @@ $custom-palette: palette( $primary: $primary-color, $secondary: $secondary-color ); + + + ``` After a custom palette has been generated, the `igx-color` function can be used to obtain different varieties of the primary and the secondary colors. @@ -877,13 +888,17 @@ $custom-theme: grid-theme( $cell-active-border-color: color($custom-palette, "secondary", 500) ); ``` + + The `$custom-theme` contains the same properties as the one in the previous section, but this time the colors are not hardcoded. Instead, the custom `igx-palette` was used and the colors were obtained through its primary and secondary colors, with a given color variant. ### Defining Custom Schemas You can go even further and build flexible structure that has all the benefits of a [**schema**](../themes/sass/schemas.mdx). The **schema** is the recipe of a theme. Extend one of the two predefined schemas, that are provided for every component. In our case, we would use `$_light_grid`. + + ```scss $custom-grid-schema: extend($_light-grid,( pinned-border-width: 5px, @@ -892,9 +907,13 @@ $custom-grid-schema: extend($_light-grid,( cell-active-border-color: color: ("secondary", 500) )); ``` + + In order for the custom schema to be applied, either `light`, or `dark` globals has to be extended. The whole process is actually supplying a component with a custom schema and adding it to the respective component theme afterwards. + + ```scss $my-custom-schema: extend($light-schema, ( igx-grid: $custom-grid-schema @@ -904,14 +923,20 @@ $custom-theme: grid-theme( $schema: $my-custom-schema ); ``` + + ### Applying the Custom Theme The easiest way to apply your theme is with a `sass` `@include` statement in the global styles file: + + ```scss @include grid($custom-theme); ``` + + ### Scoped Component Theme In order for the custom theme to affect only specific component, you can move all of the styles you just defined from the global styles file to the custom component's style file (including the import of the `index` file). @@ -924,7 +949,9 @@ This way, due to Angular's [ViewEncapsulation](https://angular.io/api/core/Compo Wrap the statement inside of a `:host` selector to prevent your styles from affecting elements outside of our component: + + ```scss :host { ::ng-deep { @@ -932,7 +959,9 @@ This way, due to Angular's [ViewEncapsulation](https://angular.io/api/core/Compo } } ``` + + ### Demo diff --git a/docs/xplat/src/content/en/components/grids/_shared/column-resizing.mdx b/docs/xplat/src/content/en/components/grids/_shared/column-resizing.mdx index 1a37502dfa..044eb60078 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/column-resizing.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/column-resizing.mdx @@ -762,26 +762,36 @@ This approach is more performance optimized than auto-sizing post initialization ## Styling To get started with the styling of the column resize line, we need to import the index file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + The simplest approach to achieve this is to create a new theme that extends the and accepts many parameters as well as the `$resize-line-color` parameter. + + ```scss $custom-grid-theme: grid-theme( $resize-line-color: #0288D1 ); ``` + - + + If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`. + + ```scss :host { ::ng-deep { @@ -789,28 +799,38 @@ $custom-grid-theme: grid-theme( } } ``` + + ### Defining a Color Palette Instead of hard-coding the color values, we can achieve greater flexibility in terms of colors by using the and functions. `igx-palette` generates a color palette based on the specified primary and secondary color: + + ```scss $primary-color: #0288D1; $secondary-color: #BDBDBD; $custom-theme-palette: palette($primary: $primary-color, $secondary: $secondary-color); ``` + + And then, with , we can easily retrieve the color from the palette. + + ```scss $custom-grid-theme: grid-theme( $palette: $custom-theme-palette, $resize-line-color: color($custom-theme-palette, 'secondary', 500) ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please, refer to [Palettes](../themes/sass/palettes.mdx) topic for detailed guidance on how to use them. @@ -819,7 +839,9 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr Going further with the theming engine, you can build a robust and flexible structure that benefits from [**schemas**](../themes/sass/schemas.mdx). A **schema** is a recipe of a theme. Extend the predefined schema provided for every component, in this case - schema: + + ```scss // Extending the light grid schema $light-grid-schema: extend($_light-grid, @@ -836,9 +858,13 @@ $light-grid-schema: extend($_light-grid, ) ); ``` + + In order to apply our custom schema, we have to **extend** one of the globals ( or ), which is basically pointing out the components with a custom schema, and after that add it to the respective component theme: + + ```scss // Extending the global light-schema $custom-light-grid-schema: extend($light-schema,( @@ -851,7 +877,9 @@ $custom-grid-theme: grid-theme( $schema: $custom-light-grid-schema ); ``` + + Don't forget to include the theme in the same way as it was demonstrated above. ### Demo @@ -862,7 +890,6 @@ Don't forget to include the theme in the same way as it was demonstrated above. The sample will not be affected by the selected global theme from **Change Theme**. - diff --git a/docs/xplat/src/content/en/components/grids/_shared/column-selection.mdx b/docs/xplat/src/content/en/components/grids/_shared/column-selection.mdx index 9c7fe43934..20e77b011e 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/column-selection.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/column-selection.mdx @@ -142,15 +142,18 @@ Then set the related CSS properties to this class: ## Styling Before diving into the styling options, the core module and all component mixins need to be imported. + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + - + >Please note that [row selection](row-selection.mdx) and [column selection](column-selection.mdx) can't be manipulated independently. They depend on the same `variables`. @@ -160,6 +163,9 @@ With that being said, let's move on and change the **selection** and **hover** s Following the simplest approach, let's define our custom **theme**. + + + ```scss $custom-grid-theme: grid-theme( $row-selected-background: #011627, @@ -171,10 +177,15 @@ $custom-grid-theme: grid-theme( $expand-icon-hover-color: #B64B80 ); ``` + + + + + ```scss $custom-grid-theme: grid-theme( $row-selected-background: #011627, @@ -184,7 +195,9 @@ $custom-grid-theme: grid-theme( $header-selected-background: #011627 ); ``` + + accepts several parameters but those are the five responsible for changing the appearance of all selected columns: @@ -197,18 +210,24 @@ $custom-grid-theme: grid-theme( ### Using CSS Variables The last step is to include the custom `{ComponentSelector}` theme. + + ```scss @include css-vars($custom-grid-theme) ``` + + ### Overriding the Base Theme In order to style components for Internet Explorer 11, we have to use a different approach, since it doesn't support CSS variables. If the component is using the [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`. In order to prevent the custom theme from leaking into other components, be sure that you have included the `:host` selector before `::ng-deep`. + + ```scss :host { ::ng-deep { @@ -216,7 +235,9 @@ If the component is using the [Emulated](../themes/styles.mdx#view-encapsulation } } ``` + + ### Demo @@ -225,7 +246,6 @@ If the component is using the [Emulated](../themes/styles.mdx#view-encapsulation The sample will not be affected by the selected global theme from **Change Theme**. - ## API References diff --git a/docs/xplat/src/content/en/components/grids/_shared/excel-style-filtering.mdx b/docs/xplat/src/content/en/components/grids/_shared/excel-style-filtering.mdx index 6b94de15aa..bdff6e3595 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/excel-style-filtering.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/excel-style-filtering.mdx @@ -757,24 +757,34 @@ However, elements that go outside of the grid (e.g. Excel Style filter) will con ## Styling To get started with styling the Excel Style Filtering dialog, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + The excel style filtering dialog takes its background color from the grid's theme, using the `filtering-row-background` parameter. In order to change the background we need to create a custom theme: + + ```scss $custom-grid: grid-theme( $filtering-row-background: #FFCD0F ); ``` + + We obviously have a lot more components inside the excel like filtering dialog, such as buttons, checkboxes, a list and even a drop-down. In order to style them, we need to create a separate theme for each one: + + ```scss $dark-button: button-theme( $background: #FFCD0F, @@ -808,11 +818,15 @@ $custom-drop-down: drop-down-theme( $hover-item-text-color: #FFCD0F ); ``` + + In this example we only changed some of the parameters for the listed components, but the , , , , themes provide way more parameters to control their respective styling. The last step is to **include** the component mixins, each with its respective theme. We will also set the color property for the input's placeholder. + + ```scss @include drop-down($custom-drop-down); @include grid($custom-grid); @@ -826,7 +840,9 @@ The last step is to **include** the component mixins, each with its respective t } } ``` + + We scope most of the components' mixins within `.igx-excel-filter` and `.igx-excel-filter__secondary`, so that these custom themes will affect only components nested in the excel style filtering dialog and all of its sub-dialogs. Otherwise other buttons, checkboxes, input-groups and lists would be affected too. @@ -834,7 +850,9 @@ We scope most of the components' mixins within `.igx-excel-filter` and `.igx-exc If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -852,22 +870,30 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) } } ``` + + ### Defining a Color Palette Instead of hardcoding the color values like we just did, we can achieve greater flexibility in terms of colors by using the and functions. `igx-palette` generates a color palette based on the primary and secondary colors that are passed: + + ```scss $yellow-color: #FFCD0F; $black-color: #292826; $dark-palette: palette($primary: $black-color, $secondary: $yellow-color); ``` + + And then with we can easily retrieve color from the palette. + + ```scss $custom-grid: grid-theme( $filtering-row-background: #FFCD0F @@ -905,7 +931,9 @@ $custom-drop-down:drop-down-theme( $hover-item-text-color: color($dark-palette, "secondary", 400) ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/sass/palettes.mdx) topic for detailed guidance on how to use them. @@ -915,7 +943,9 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr Going further with the theming engine, you can build a robust and flexible structure that benefits from [**schemas**](../themes/sass/schemas.mdx). A **schema** is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - , , , , and schemas: + + ```scss $custom-grid-schema: extend($_light-grid, ( @@ -1014,9 +1044,13 @@ $custom-drop-down-schema: extend($_light-drop-down, ) ); ``` + + In order to apply our custom schemas we have to **extend** one of the globals ( or ), which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss $custom-light-schema: extend($light-schema,( grid: $custom-grid-schema, @@ -1057,7 +1091,9 @@ $custom-drop-down: drop-down-theme( $schema: $custom-light-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. ### Demo @@ -1068,7 +1104,6 @@ Don't forget to include the themes in the same way as it was demonstrated above. The sample will not be affected by the selected global theme from **Change Theme**. - diff --git a/docs/xplat/src/content/en/components/grids/_shared/export-excel.mdx b/docs/xplat/src/content/en/components/grids/_shared/export-excel.mdx index dcf378f5d0..0ae4a550d8 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/export-excel.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/export-excel.mdx @@ -35,7 +35,9 @@ The {ProductName} export services in {Platform} {ComponentTitle} can export data ## Exporting {ComponentTitle} Data To start using the IgniteUI Excel and PDF exporters, first import the and/or in the app.module.ts file and add the services to the `providers` array: + + ```ts // app.module.ts import { ExcelExporterService, PdfExporterService } from 'igniteui-{Platform}'; @@ -46,23 +48,31 @@ import { ExcelExporterService, PdfExporterService } from 'igniteui-{Platform}'; export class AppModule {} ``` + + In v12.2.1 and later, the exporter services are provided in root, which means you no longer need to declare them in the AppModule providers. To initiate an export, you can use the handler of a button in your component's template. + + ```html <{ComponentTitle} #{ComponentTitle} [data]="localData" [autoGenerate]="true"> ``` + + You can access the exporter services by defining constructor arguments of type or , and the {Platform} framework will provide instances of the services. To export data to Excel or PDF, invoke the `Export` method and pass the {ComponentTitle} component as the first argument. The following code executes the export processes in the component file: + + ```ts // component.ts import { ExcelExporterService, ExcelExporterOptions, PdfExporterService, PdfExporterOptions } from 'igniteui-{Platform}'; @@ -81,7 +91,9 @@ public exportPdfButtonHandler() { this.pdfExportService.export(this.{ComponentName}, new PdfExporterOptions('ExportedDataFile')); } ``` + + If all went well, you should see the {ComponentTitle} component and the two export buttons. When you press the respective button, it triggers the export process and the browser downloads a file named "ExportedDataFile.xlsx" or "ExportedDataFile.pdf" containing the data from the component in Excel or PDF format. @@ -89,28 +101,32 @@ If all went well, you should see the {ComponentTitle} component and the two expo ## Exporting {ComponentTitle} Data To initiate an export, you can use the handler of a button in your component's template. + + ```Razor ``` - ## Export All Data When you use remote operations like **paging**, the Grid might not have access to the full data set at once. In these cases, we recommend using the [Excel Export Service](../exporter-excel.mdx) and passing the entire data collection, if available. Example: + + ```ts public exportButtonHandler() { this.excelExportService.exportData(this.localData, new ExcelExporterOptions('ExportedDataFile')); } ``` + + When offering PDF downloads for remote data, consider fetching the complete data set first and then calling `export` so the document mirrors what users expect to see. - @@ -260,7 +276,9 @@ igRegisterScript("WebHierarchicalGridExportEventFreezeHeaders", (ev) => { In the examples above, the Excel Exporter service exports all available data. There are situations in which you may want to skip exporting a row or even an entire column. To achieve this, subscribe to the and/or events, which are fired for each column and each row respectively, and cancel the event by setting the event argument object's `cancel` property to `true`. The following example will exclude a column from the export if its header is "Age" and if its index is 1: + + ```ts // component.ts @@ -271,7 +289,9 @@ this.excelExportService.columnExporting.subscribe((args: IColumnExportingEventAr }); this.excelExportService.export(this.{ComponentTitle}, new ExcelExporterOptions('ExportedDataFile')); ``` + + When you are exporting data from the component, the export process takes into account features like row filtering and column hiding and exports only the data visible in the . You can configure the exporter service to include filtered rows or hidden columns by setting properties on the or object. diff --git a/docs/xplat/src/content/en/components/grids/_shared/filtering.mdx b/docs/xplat/src/content/en/components/grids/_shared/filtering.mdx index 56388902c3..ce57c2509e 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/filtering.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/filtering.mdx @@ -739,7 +739,9 @@ You can add a template marked with component displays the records matching the criterion that have been set and their parents in a grayed-out fashion to provide additional context. However, in some cases, you may want to display only the records matching particular filtering condition without any trace for their parents. This can be achieved by using the `TreeGridMatchingRecordsOnlyFilteringStrategy`: + + ```html @@ -750,9 +752,10 @@ import { TreeGridMatchingRecordsOnlyFilteringStrategy } from "igniteui-angular"; public matchingRecordsOnlyStrategy = new TreeGridMatchingRecordsOnlyFilteringStrategy(); ``` + + - @@ -801,16 +804,22 @@ Then set the related CSS properties for that class: ## Styling To get started with styling the filtering row, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Following the simplest approach, we create a new theme that extends the `grid-theme` and accepts the `$filtering-row-text-color`, `$filtering-row-background`, `$filtering-header-text-color` and the `$filtering-header-background` parameters. + + ```scss $custom-grid: grid-theme( $filtering-row-text-color: #292826, @@ -819,9 +828,13 @@ $custom-grid: grid-theme( $filtering-header-background: #FFCD0F ); ``` + + As seen, the `grid-theme` only controls colors for the filtering row and the respective column header that is being filtered. We obviously have a lot more components inside the filtering row, such as an input group, chips, buttons and others. In order to style them, we need to create a separate theme for each one, so let's create a new input group theme and a new button theme: + + ```scss $dark-input-group: input-group-theme( $box-background: #FFCD0F, @@ -837,11 +850,15 @@ $dark-button: button-theme( $flat-hover-text-color: #FFCD0F ); ``` + + In this example we only changed some of the parameters for the input group and the button, but the `input-group-theme` and the `button-theme` provide way more parameters to control their respective styling. The last step is to **include** the component mixins, each with its respective theme. We will also set the color property for the input's placeholder. + + ```scss @include grid($custom-grid); .igx-grid__filtering-row { @@ -853,7 +870,9 @@ The last step is to **include** the component mixins, each with its respective t } } ``` + + We scope the **igx-button** and the **igx-input-group** mixins within `.igx-grid__filtering-row`, so that only the filtering row buttons and its input group would be styled. Otherwise other buttons and input groups in the grid would be affected too. @@ -861,7 +880,9 @@ We scope the **igx-button** and the **igx-input-group** mixins within `.igx-grid If the component is using an `Emulated` ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -877,22 +898,30 @@ We scope the **igx-button** and the **igx-input-group** mixins within `.igx-grid } } ``` + + ### Defining a color palette Instead of hardcoding the color values like we just did, we can achieve greater flexibility in terms of colors by using the `igx-palette` and `igx-color` functions. `igx-palette` generates a color palette based on the primary and secondary colors that are passed: + + ```scss $yellow-color: #FFCD0F; $black-color: #292826; $dark-palette: palette($primary: $black-color, $secondary: $yellow-color); ``` + + And then with `igx-color` we can easily retrieve color from the palette. + + ```scss $custom-grid: grid-theme( $filtering-row-text-color: color($dark-palette, "primary", 400), @@ -915,7 +944,9 @@ $dark-button: button-theme( $flat-hover-text-color: color($dark-palette, "secondary", 400) ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/sass/palettes.mdx) topic for detailed guidance on how to use them. @@ -925,7 +956,9 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr Going further with the theming engine, you can build a robust and flexible structure that benefits from [Schemas](../themes/sass/schemas.mdx). A **schema** is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - `light-grid`, `light-input-group` and `light-button` schemas: + + ```scss // Extending the light grid schema $custom-grid-schema: extend($_light-grid, @@ -981,9 +1014,13 @@ $custom-button-schema: extend($_light-button, ) ); ``` + + In order to apply our custom schemas we have to **extend** one of the globals (`light` or `dark`), which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss // Extending the global light-schema $custom-light-schema: extend($light-schema,( @@ -1010,7 +1047,9 @@ $custom-input-group: input-group-theme( $schema: $custom-light-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. ### Demo @@ -1022,7 +1061,6 @@ Don't forget to include the themes in the same way as it was demonstrated above. The sample will not be affected by the selected global theme from **Change Theme**. - ## Known Limitations diff --git a/docs/xplat/src/content/en/components/grids/_shared/live-data.mdx b/docs/xplat/src/content/en/components/grids/_shared/live-data.mdx index 6b1e2dc777..f7d4e87945 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/live-data.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/live-data.mdx @@ -186,7 +186,9 @@ As you can see the igxGrid component handles with ease the high-frequency update ### Start the hub connection The signal-r.service handles the connectivity and updates of the exposed manageable parameters **frequency**, **volume** and **live-update state toggle** (Start/Stop). + + ```ts this.hubConnection = new signalR.HubConnectionBuilder() .configureLogging(signalR.LogLevel.Trace) @@ -201,7 +203,9 @@ this.hubConnection = new signalR.HubConnectionBuilder() }) .catch(() => {}); ``` + + Based on the specified frequency a total of 30 new updates will be received by the Grids from the server. A specific cellStyle classes are applied to the three columns that are handling the changes (Price, Change and Change in percent). ### Update frequency and data volume @@ -209,7 +213,9 @@ Based on the specified frequency a total of 30 new updates will be received by t By using the Action panel on the left, you can manage the frequency of the data feed and the volume of the requested data. All grids use the same data source. Feel free to use the other action elements to **stop the data feed**, change the **application theme** or add **dynamically a DockSlot container** with a igxGrid. We use the `updateParameters` method to request a new set of data with certain frequency. This method is part of the SignalR [stream hub implementation](https://github.com/IgniteUI/finjs-web-api/blob/master/WebAPI/Models/StreamHub.cs#L18). + + ```ts this.hubConnection.invoke('updateparameters', frequency, volume, live, updateAll) .then(() => console.log('requestLiveData', volume)) @@ -217,14 +223,15 @@ this.hubConnection.invoke('updateparameters', frequency, volume, live, updateAll console.error(err); }); ``` + + ### Dynamically create DockSlot and Grid components By using the [ComponentFactoryResolver](https://angular.io/api/core/ComponentFactoryResolver) we are able to create DockSlot and Grid components on the fly. ### DockManager component Take leverage of the [Dock Manager](../../layouts/dock-manager.mdx) WebComponent and build your own webview by using the docket or floating panels. In order to add a new floating panel, go ahead and open the Action pane on the right and click the 'Add floating pane' button. Drag and drop the new pane at the desired location. - diff --git a/docs/xplat/src/content/en/components/grids/_shared/multi-column-headers.mdx b/docs/xplat/src/content/en/components/grids/_shared/multi-column-headers.mdx index a007fdd679..9cb2773b3b 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/multi-column-headers.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/multi-column-headers.mdx @@ -764,13 +764,19 @@ The following sample demonstrates how to implement collapsible column groups usi ## Styling To get started with styling the sorting behavior, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Following the simplest approach, we create a new theme that extends the and accepts the `$header-background`, `$header-text-color`, `$header-border-width`, `$header-border-style` and `$header-border-color` parameters. + + ```scss $custom-theme: igx-grid-theme( $header-background: #e0f3ff, @@ -780,13 +786,19 @@ $custom-theme: igx-grid-theme( $header-border-color: rgba(0, 0, 0, 0.08) ); ``` + + The last step is to **include** the component mixins: + + ```scss @include igx-grid($custom-theme); ``` + + If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: @@ -797,6 +809,9 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) @include igx-grid($custom-theme); } } + + + ``` ### Defining a Color Palette @@ -811,9 +826,13 @@ $deep-pink-color: #e41c77; $custom-palette: igx-palette($primary: $light-blue-color, $deep-pink-color); ``` + + And then with `igx-color` we can easily retrieve color from the palette. + + ```scss $custom-theme: igx-grid-theme( $header-background: igx-color($custom-palette, "primary", 500), @@ -823,7 +842,9 @@ $custom-theme: igx-grid-theme( $header-border-color: igx-color($custom-palette, "grays", 200) ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/palette.mdx) topic for detailed guidance on how to use them. @@ -833,7 +854,9 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr Going further with the theming engine, you can build a robust and flexible structure that benefits from [schemas](../themes/schemas.mdx). A schema is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - `_light-grid`: + + ```scss // Extending the light grid schema $custom-grid-schema: extend($_light-grid, @@ -846,9 +869,13 @@ $custom-grid-schema: extend($_light-grid, ) ); ``` + + In order to apply our custom schema we have to **extend** one of the globals `light` or `dark`, which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss Extending the global light-schema $my-custom-schema: extend($light-schema, @@ -863,7 +890,9 @@ $custom-theme: igx-grid-theme( $schema: $my-custom-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. ### Demo @@ -876,11 +905,12 @@ Don't forget to include the themes in the same way as it was demonstrated above. ## Known Issues and Limitations - Using Grid with multi-column headers on IE11 requires the explicit import of the array polyfill in polyfill.ts of the angular application. + + ```typescript import 'core-js/es7/array'; ``` - diff --git a/docs/xplat/src/content/en/components/grids/_shared/multi-row-layout.mdx b/docs/xplat/src/content/en/components/grids/_shared/multi-row-layout.mdx index 1ef84d07df..cd9406340f 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/multi-row-layout.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/multi-row-layout.mdx @@ -232,18 +232,24 @@ In the below steps, we are going through the steps of customizing the grid's Mul ### Importing Global Theme To begin the customization of the Multi-row Layout feature, you need to import the file, where all styling functions and mixins are located. + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + ### Defining Custom Theme Next, create a new theme, that extends the `GridTheme` and accepts the parameters, required to customize the feature layout as desired. + + ```scss $custom-theme: grid-theme( $cell-active-border-color: #ffcd0f, @@ -256,7 +262,9 @@ $custom-theme: grid-theme( $sortable-header-icon-hover-color: #e9bd0d ); ``` + + ### Defining a Custom Color Palette In the approach, that was described above, the color values were hardcoded. Alternatively, you can achieve greater flexibility, using the `Palette` and functions. @@ -271,6 +279,9 @@ $custom-palette: palette( $primary: $black-color, $secondary: $yellow-color ); + + + ``` After a custom palette has been generated, the function can be used to obtain different varieties of the primary and the secondary colors. @@ -287,13 +298,17 @@ $custom-theme: grid-theme( $sortable-header-icon-hover-color: color($custom-palette, "secondary", 600) ); ``` + + ### Defining Custom Schemas You can go even further and build flexible structure that has all the benefits of a [**schema**](../themes/sass/schemas.mdx). The **schema** is the recipe of a theme. Extend one of the two predefined schemas, that are provided for every component. In our case, we would use `$_light_grid`. + + ```scss $custom-grid-schema: extend($_light-grid,( cell-active-border-color: (igx-color:('secondary', 500)), @@ -306,9 +321,13 @@ $custom-grid-schema: extend($_light-grid,( sortable-header-icon-hover-color: (igx-color:('secondary', 600)) )); ``` + + In order for the custom schema to be applied, either `Light`, or `Dark` globals has to be extended. The whole process is actually supplying a component with a custom schema and adding it to the respective component theme afterwards. + + ```scss $my-custom-schema: extend($light-schema, ( igx-grid: $custom-grid-schema @@ -318,15 +337,21 @@ $my-custom-schema: extend($light-schema, ( $schema: $my-custom-schema ); ``` + + ### Applying the Custom Theme The easiest way to apply your theme is with a `sass` `@include` statement in the global styles file: + + ```scss @include grid($custom-theme); ``` + + ### Scoped Component Theme In order for the custom theme do affect only specific component, you can move all of the styles you just defined from the global styles file to the custom component's style file (including the import of the `index` file). @@ -340,7 +365,9 @@ This way, due to {Platform}'s [ViewEncapsulation](https://angular.io/api/core/Co Wrap the statement inside of a `:host` selector to prevent your styles from affecting elements outside of our component: + + ```scss :host { ::ng-deep { @@ -348,7 +375,9 @@ This way, due to {Platform}'s [ViewEncapsulation](https://angular.io/api/core/Co } } ``` + + ### Demo @@ -358,7 +387,6 @@ This way, due to {Platform}'s [ViewEncapsulation](https://angular.io/api/core/Co The sample will not be affected by the selected global theme from **Change Theme**. - diff --git a/docs/xplat/src/content/en/components/grids/_shared/paging.mdx b/docs/xplat/src/content/en/components/grids/_shared/paging.mdx index ce44412e02..6d185f13b7 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/paging.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/paging.mdx @@ -238,16 +238,22 @@ In some cases you may want to define your own paging behavior and this is when w ## Pagination Styling in {Platform} To get started with styling the paginator, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Following the simplest approach, we create a new theme that extends the `PaginatorTheme` and accepts the `$text-color`, `$background-color` and the `$border-color` parameters. + + ```scss $dark-paginator: paginator-theme( $text-color: #F4D45C, @@ -255,9 +261,13 @@ $dark-paginator: paginator-theme( $border-color: #292826 ); ``` + + As seen, the `PaginatorTheme` only controls colors for the paging container, but does not affect the buttons in the pager UI. To style those buttons, let's create a new button theme: + + ```scss $dark-button: button-theme( $icon-color: #FFCD0F, @@ -268,18 +278,24 @@ $dark-button: button-theme( $disabled-color: #16130C ); ``` + + In this example we only changed the icon color and background and the button disabled color, but the the `ButtonTheme` provides way more parameters to control the button style. The last step is to **include** the component mixins, each with its respective theme: + + ```scss @include grid-paginator($dark-grid-paginator); .igx-grid-paginator__pager { @include button($dark-button); } ``` + + We scope the mixin within `.igx-paginator__pager`, so that only the paginator buttons would be styled. Otherwise other buttons in the grid would be affected too. @@ -287,7 +303,9 @@ We scope the mixin within `.igx-paginator__ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -298,22 +316,30 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) } } ``` + + ### Defining a Color Palette Instead of hardcoding the color values like we just did, we can achieve greater flexibility in terms of colors by using the `Palette` and functions. `Palette` generates a color palette based on the primary and secondary colors that are passed: + + ```scss $yellow-color: #F9D342; $black-color: #292826; $dark-palette: palette($primary: $black-color, $secondary: $yellow-color); ``` + + And then with we can easily retrieve color from the palette. + + ```scss $dark-paginator: paginator-theme( $palette: $dark-palette, @@ -332,7 +358,9 @@ $dark-button: button-theme( $disabled-color: color($dark-palette, "primary", 700) ); ``` + + The and `Palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/sass/palettes.mdx) topic for detailed guidance on how to use them. @@ -342,7 +370,9 @@ The and `Palette` are powerful functions for Going further with the theming engine, you can build a robust and flexible structure that benefits from [schemas](../themes/sass/schemas.mdx). A schema is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - `DarkPagination` and `DarkButton` schemas: + + ```scss // Extending the dark paginator schema $dark-paginator-schema: extend($_dark-pagination, @@ -382,9 +412,13 @@ $dark-button-schema: extend($_dark-button, ) ); ``` + + In order to apply our custom schemas we have to **extend** one of the globals `Light` or `Dark`, which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss // Extending the global dark-schema $custom-dark-schema: extend($dark-schema,( @@ -404,17 +438,15 @@ $dark-button: button-theme( $schema: $custom-dark-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. ### Pagination Style Example - - - - ## API References diff --git a/docs/xplat/src/content/en/components/grids/_shared/remote-data-operations.mdx b/docs/xplat/src/content/en/components/grids/_shared/remote-data-operations.mdx index 99e65fa8b3..c389c5d28c 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/remote-data-operations.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/remote-data-operations.mdx @@ -826,7 +826,9 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy First we need to bind to the relevant events so when we change pages and the amount of records shown per page, the remote service will fetch the correct amount of data + + ```ts constructor() { this.grid = document.getElementById('grid') as IgcGridComponent; @@ -851,9 +853,13 @@ First we need to bind to the relevant events so when we change pages and the amo this._bind(); } ``` + + We also need to set the method for loading data and update the UI accordingly: + + ```ts private loadData(pageIndex?: number, pageSize?: number): void { this.grid.isLoading = true; @@ -882,19 +888,21 @@ We also need to set the method for loading data and update the UI accordingly: } } ``` + - + For further reference, please check the demo bellow: ### Grid Remote Paging Demo - First we should load some data to the grid. It is best to do after the grid has been rendered to avoid any timing issues. + + ```csharp protected override async Task OnAfterRenderAsync(bool firstRender) { @@ -906,9 +914,13 @@ First we should load some data to the grid. It is best to do after the grid has } } ``` + + After that we just need to bind the paging events to our custom methods, and remote paging is set: + + ```razor @@ -945,13 +957,14 @@ After that we just need to bind the paging events to our custom methods, and rem } } ``` + + For further reference please check the full demo bellow: ### Grid Remote Paging Demo - @@ -978,9 +991,13 @@ For further reference please check the full demo bellow: ``` + + then set up the state: + + ```tsx const grid = useRef(null); const paginator = useRef(null); @@ -993,9 +1010,13 @@ then set up the state: loadGridData(page, perPage); }, [page, perPage]); ``` + + and finally set up the method for loading the data: + + ```tsx function loadGridData(pageIndex?: number, pageSize?: number) { // Set loading state @@ -1017,13 +1038,14 @@ and finally set up the method for loading the data: }) } ``` + + For further reference please check the full sample bellow: ### Grid Remote Paging Demo - @@ -1058,7 +1080,9 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, First we need to bind to the relevant events so when we change pages and the amount of records shown per page, the remote service will fetch the correct amount of data + + ```ts constructor() { this.hierarchicalGrid = document.getElementById("hGrid") as IgcHierarchicalGridComponent; @@ -1097,9 +1121,13 @@ First we need to bind to the relevant events so when we change pages and the amo this._bind(); } ``` + + We also need to set the method for loading data and update the UI accordingly: + + ```ts private updateUI(): void { if (this.hierarchicalGrid && this.data) { // Check if grid and data are available @@ -1128,9 +1156,13 @@ We also need to set the method for loading data and update the UI accordingly: }) } ``` + + And finally we need to handle the behaviour behind the actual hierarchy levels of the Hierarchical Gird + + ```ts public gridCreated(event: CustomEvent, parentKey: string) { const context = event.detail; @@ -1159,18 +1191,21 @@ And finally we need to handle the behaviour behind the actual hierarchy levels o ` } ``` + + For further reference, please check the demo bellow: ### Grid Remote Paging Demo - First we should load some data to the grid. It is best to do after the grid has been rendered to avoid any timing issues. + + ```csharp protected override async Task OnAfterRenderAsync(bool firstRender) { @@ -1182,9 +1217,13 @@ First we should load some data to the grid. It is best to do after the grid has } } ``` + + After that we just need to bind the paging events to our custom methods, and remote paging is set: + + ```razor @@ -1221,13 +1260,14 @@ After that we just need to bind the paging events to our custom methods, and rem } } ``` + + For further reference please check the full demo bellow: ### Grid Remote Paging Demo - @@ -1310,6 +1350,9 @@ next set up the method for loading the data: and finally set up the behaviour for the RowIslands: + + + ```tsx function gridCreated(event: IgrGridCreatedEventArgs, parentKey: string) { const context = event.detail; @@ -1341,15 +1384,15 @@ and finally set up the behaviour for the RowIslands: }; ``` + - + For further reference please check the full sample bellow: ### Grid Remote Paging Demo - diff --git a/docs/xplat/src/content/en/components/grids/_shared/row-adding.mdx b/docs/xplat/src/content/en/components/grids/_shared/row-adding.mdx index bef9d7dec4..74303a318d 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/row-adding.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/row-adding.mdx @@ -609,14 +609,18 @@ gridRef.current.rowAddTextTemplate = (ctx: IgrGridEmptyTemplateContext) => { Customizing the buttons of the row editing overlay is possible by using the `RowEditActionsDirective`. If you want the buttons to be part of the keyboard navigation, then each on of them should have the `RowEditTabStopDirective`. + + ```html ``` + + > **Note**: > Using `RowEditActions` directive will change edit actions for both editing and adding overlay buttons. diff --git a/docs/xplat/src/content/en/components/grids/_shared/row-drag.mdx b/docs/xplat/src/content/en/components/grids/_shared/row-drag.mdx index 647a87a494..6dc07d24b9 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/row-drag.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/row-drag.mdx @@ -77,7 +77,9 @@ Enabling row-dragging was pretty easy, but now we have to configure how we'll ha We can define where we want our rows to be dropped using the [Drop` directive](../drag-drop.mdx). First we need to import the `DragDropModule` in our app module: + + ```typescript import { ..., IgxDragDropModule } from 'igniteui-angular'; // ... @@ -85,15 +87,15 @@ import { ..., IgxDragDropModule } from 'igniteui-angular'; imports: [..., IgxDragDropModule] }) ``` - - ### Drop Areas First we need to register the `DragDropModule`: + + ```typescript import { IgcDragDropModule } from 'igniteui-webcomponents'; // ... @@ -101,7 +103,6 @@ ModuleManager.register( IgcDragDropModule ); ``` - @@ -170,11 +171,12 @@ public dragHereTemplate = (ctx: IgcGridEmptyTemplateContext) => { - You may enable animation when a row is dropped on a non-droppable area using the `Animation` parameter of the event. If set to true, the dragged row will animate back to its' original position when dropped over a non-droppable area. You may enable animation like this: + + ```typescript export class {ComponentName}RowDragComponent { @@ -184,13 +186,17 @@ export class {ComponentName}RowDragComponent { } ``` + + ### Drop Area Event Handlers Once we've defined our drop-area in the template, we have to declare our handlers for the `IgxDrop`'s ENTER, `Leave` and `Dropped` events in our component's **.ts** file. First, let's take a look at our ENTER and `Leave` handlers. In those methods, we just want to change the icon of the drag's **ghost** so we can indicate to the user that they are above an area that allows them to drop the row: + + ```typescript export class {ComponentName}RowDragComponent { public onEnterAllowed(args) { @@ -211,31 +217,45 @@ export class {ComponentName}RowDragComponent { } } ``` + + The **changeGhostIcon** **private** method just changes the icon inside of the drag ghost. The logic in the method finds the element that contains the icon (using the **igx-grid__drag-indicator** class that is applied to the drag-indicator container), changing the element's inner text to the passed one. The icons themselves are from the [**material** font set](https://material.io/tools/icons/) and are defined in a separate **enum**: + + ```typescript enum DragIcon { DEFAULT = 'drag_indicator', ALLOW = 'remove' } ``` + + + + + ```typescript enum DragIcon { DEFAULT = 'drag_indicator', ALLOW = 'add' } ``` + + + Next, we have to define what should happen when the user actually drops the row inside of the drop-area. + + ```typescript export class {ComponentName}RowDragComponent { @@ -246,11 +266,16 @@ export class {ComponentName}RowDragComponent { } ``` + + Once the row is dropped, we just call the row's `Delete` method + + + ```typescript export class {ComponentName}RowDragComponent { @ViewChild('sourceGrid', { read: IgxGridComponent }) public sourceGrid: IgxGridComponent; @@ -263,7 +288,9 @@ export class {ComponentName}RowDragComponent { } ``` + + We define a reference to each of our grids via the **ViewChild** decorator and the handle the drop as follows: - add a row to the `TargetGrid` that contains the data of the row being dropped - remove the dragged row from the `SourceGrid` @@ -291,7 +318,6 @@ export class {ComponentName}RowDragComponent { - When using row data from the event arguments (**args.dragData.data**) or any other row property, note that the entire row is passed in the arguments as a reference, which means that you must clone the data you need, if you want to distinguish it from the one in the source grid. @@ -299,7 +325,9 @@ When using row data from the event arguments (**args.dragData.data**) or any oth ### Templating the Drag Ghost The drag ghost can be templated using the `RowDragGhost` directive, applied to a `` inside of the `{ComponentSelector}`'s body: + + ```html <{ComponentSelector}> @@ -309,7 +337,6 @@ The drag ghost can be templated using the `RowDragGhost` directive, applied to a ``` - @@ -331,14 +358,15 @@ public rowDragGhostTemplate = (ctx: IgcGridRowDragGhostContext) => { - The result of the configuration can be seem below in a with row dragging and multiple selection enabled. The demo shows the count of the currently dragged rows: #### Example Demo The drag ghost can be templated on every grid level, making it possible to have multiple ghost templates or to only provide a template for a single row island. + + ```html <{ComponentSelector}> @@ -353,11 +381,12 @@ The drag ghost can be templated on every grid level, making it possible to have ``` + + - @@ -512,7 +541,9 @@ enum DragIcon { ### Styling the Drop Area Once our drop handlers are properly configured, all that's left is to style our drop area a bit: + + ```css .drop-area { width: 160px; @@ -535,7 +566,9 @@ Once our drop handlers are properly configured, all that's left is to style our width: 100%; } ``` + + The result can be seen in the demo below: @@ -1282,7 +1315,9 @@ Below you can find example snippets of a couple of custom implementations you ca In the snippets below you see how you can change the text inside the drag ghost to display the name of the hovered row. First, you specify a template which you'd like to use for the drag ghost. The `DropName` property will dynamically change, getting the name of the row over which the cursor is hovering: + + ```html
@@ -1296,9 +1331,13 @@ public rowDragGhostTemplate = (ctx: IgcGridRowDragGhostContext) => { return html`dropName`; } ``` + + Then, define a method that returns the instance of the row you're over (similar to the one used in the [row reordering demo](#row-reordering-demo)): + + ```typescript class MyRowGhostComponent { private getRowDataAtPoint(rowList: IgxGridRowComponent[], cursorPosition: Point): any { @@ -1328,11 +1367,15 @@ class MyRowGhostComponent { } } ``` + + Finally, we create a method that will be used to handle the `DragMove` event (emitted for the dragged row). The method will change the value of the property used in the `RowDragGhost` template and force a rerender. We want to subscribe to the `DragMove` event only of the specific row we're dragging and unsub from it (to prevent memory leaks) each time a row is dropped. + + ```typescript class MyRowGhostComponent { public ngAfterViewInit(): void { @@ -1376,7 +1419,9 @@ class MyRowGhostComponent { } } ``` + + #### Displaying a Drop Indicator based on Cursor Position In the demo in the next section you see how you can display an indicator of where the dragged row would be dropped. You can customize this indicator as you like - it may be a placeholder row, placed at the position where the dragged row would be dropped, a border style indicating if the dragged row would be dropped above or below the currently hovered row, etc. @@ -1386,7 +1431,9 @@ In order to track the position of the cursor, we bind to the `DragMove` event of Make sure that there is a specified for the grid! The logic needs an unique identifier for the rows so they can be properly reordered + + ```typescript public ngAfterViewInit() { this.grid.rowDragStart @@ -1447,13 +1494,17 @@ private changeHighlightedElement(newElement: HTMLElement) { } } ``` + + #### Scrolling the Grid on Row Drag A very useful scenario is being able to scroll the grid when the dragged row reaches its' top or bottom border. This allows reordering rows outside of the current viewport when the number of rows in the grid requires a scrollbar. Below you see an example of the two methods we use to check if we have reached the edge of the viewport and to scroll it if needed. The `IsGridScrolledToEdge` accepts one parameter - the direction we'd like to scroll the grid (1 for "Down", -1 for "Up") and returns **true** if we've reach the final row in that direction. The `ScrollGrid` method will attempt to scroll the grid in a direction (1 or -1), doing nothing if the grid is already at that edge. + + ```typescript class MyGridScrollComponent { private isGridScrolledToEdge(dir: 1 | -1): boolean { @@ -1480,11 +1531,15 @@ class MyGridScrollComponent { } } ``` + + We'll still be subscribing to the `DragMove` event of the specific row in the way we did in the previous example. Since `DragMove` is fired only when the cursor actually moves, we want to have a nice and simple way to auto-scroll the grid when the row is at one of the edges, but the user **does not** move the mouse. We'll an additional method which will setup an `Interval`, auto-scrolling the grid every **500ms**. We create and subscribe to the `Interval` when the pointer reaches the grid's edge and we **unsubscribe** from that `Interval` every time the mouse moves or the row is dropped (regardless of cursor position). + + ```typescript class MyGridScrollComponent { public ngAfterViewInit() { @@ -1517,14 +1572,13 @@ class MyGridScrollComponent { } } ``` + + Following is the example of both scenarios described above - showing a drop indicator and scrolling the viewport when border's edge is reached. - - - diff --git a/docs/xplat/src/content/en/components/grids/_shared/row-editing.mdx b/docs/xplat/src/content/en/components/grids/_shared/row-editing.mdx index 2a498fa423..67d72fa2ac 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/row-editing.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/row-editing.mdx @@ -616,7 +616,6 @@ const rowEditActionsTemplate =(ctx: IgrGridRowEditActionsTemplateContext) => { - ## Styling Using the [{ProductName} Theme Library](themes/index.mdx), we can greatly alter the Row Editing overlay. @@ -634,20 +633,26 @@ We will also style the current cell's editor and background to make it more dist The easiest way to style the Row Editing banner is to define styles in our `app`'s global style file (typically `styles.scss`). The first thing we need to do is import the `themes/index` file - this gives us access to all the powerful tools of the {ProductName} Sass framework: + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + Once we've imported the themes file, we can create custom themes. #### Define the Theme We can now define a custom that will affect our Row Editing background and make use of one of the predefined palettes namely `$purple-palette` : + + ```scss $my-light-gray: #e3e3e3; $my-banner-palette: $purple-palette; @@ -657,17 +662,23 @@ We can now define a custom + Here we are using `my-banner-palette` in conjunction with `igx-color` (exposed by the theme library) for generating our colors. ### Include the Theme All we have to do now is apply the theme with a Sass `@include` statement. We pass our newly defined `$banner-theme` through the **igx-banner mixin**: + + ```scss @include banner($banner-theme); ``` + + This will apply our custom banner theme to the Row Editing overlay. However, since we defined these in the global styles file, these styles will also apply to **all** banners in our application. ### Component Styles @@ -678,7 +689,9 @@ Since the Row Editing overlay makes use of a lot of other components' themes, st If the component is using an [Emulated](themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to penetrate this encapsulation using `::ng-deep` in order to style the grid. We wrap the statement inside of a `:host` selector to prevent our styles from affecting elements outside of our component: + + ```scss // custom.component.scss @@ -688,13 +701,17 @@ We wrap the statement inside of a `:host` selector to prevent our styles from af } } ``` + + With the above syntax, our custom banner theme properly applies to the grid's Row Editing overlay. ### Custom Templates To further customize our Row Editing overlay, we can pass a custom template so we can style the `Done` and `Cancel` buttons separately: + + ```html <{ComponentSelector}> @@ -710,9 +727,13 @@ To further customize our Row Editing overlay, we can pass a custom template so w ``` + + After we've defined our custom buttons, we can make use of the to style them. You can learn more about `igx-button` styling in this [topic](../button.mdx#styling). We can create a custom theme for our `Done` and `Cancel`: + + ```scss // custom.component.scss // ... @@ -725,7 +746,9 @@ $button-theme: button-theme( @include button($button-theme); } ``` + + We scope our `@include` statement in `.custom-buttons` so that it is only applied to the `Done`and `Cancel` buttons. ### Demo @@ -740,7 +763,6 @@ After styling the banner and buttons, we also define a custom style for [the cel The sample will not be affected by the selected global theme from **Change Theme**. - diff --git a/docs/xplat/src/content/en/components/grids/_shared/row-pinning.mdx b/docs/xplat/src/content/en/components/grids/_shared/row-pinning.mdx index e37d4c0e7a..5d4bfae3b1 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/row-pinning.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/row-pinning.mdx @@ -542,15 +542,21 @@ Let's say that you want to be able to directly drag and drop a row between the p This can be achieved by enabling the row drag feature and pinning/unpinning the rows via the API on drop. First, the grid should be marked as a drop area using the `igxDrop` directive and the row drag functionality should be enabled via the `rowDraggable` option. + + ```html ``` + + Then the `dropped` event can be used to handle the reorder and pin/unpin logic. + + ```typescript public onDropAllowed(args) { const event = args.originalEvent; @@ -579,13 +585,14 @@ public onDropAllowed(args) { } } ``` + + This would allow reordering the rows and moving them between the pinned and unpinned row collections. #### Demo - @@ -659,18 +666,24 @@ Below, we are going through the steps of customizing the {ComponentTitle}'s row ### Importing the Styling Library To begin the customization of the row pinning feature, you need to import the `index` file, where all styling functions and mixins are located. + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + ### Defining a Theme Next, create a new theme, that extends the and accepts the parameters, required to customize the row pinning feature as desired. + + ```scss $custom-grid-theme: grid-theme( /* Pinning properties that affect styling */ @@ -681,21 +694,29 @@ $custom-grid-theme: grid-theme( /* add other features properties here... */ ); ``` + + ### Using CSS Variables The last step is to pass the custom grid theme: + + ```scss @include css-vars($custom-grid-theme); ``` + + ### Using Mixins In order to style components for Internet Explorer 11, you have to use different approach, since it doesn't support CSS variables. If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`. However, in order to prevent the custom theme to leak to other components, be sure to include the `:host` selector before `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -704,7 +725,9 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) } } ``` + + ### Demo @@ -715,7 +738,6 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) The sample will not be affected by the selected global theme from **Change Theme**. - ## API References diff --git a/docs/xplat/src/content/en/components/grids/_shared/search.mdx b/docs/xplat/src/content/en/components/grids/_shared/search.mdx index 48af84ddec..54ea399974 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/search.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/search.mdx @@ -377,7 +377,9 @@ Let's also display the position of the current occurrence, along with the total - The grid's `LastSearchInfo.MatchInfoCache.Length` value will give us the total results count. - The grid's `LastSearchInfo.ActiveMatchIndex` value will give us the index position of the current occurrence (match). + + ```html
@@ -388,7 +390,6 @@ Let's also display the position of the current occurrence, along with the total
``` -
### Add Search Buttons diff --git a/docs/xplat/src/content/en/components/grids/_shared/sorting.mdx b/docs/xplat/src/content/en/components/grids/_shared/sorting.mdx index 1dd2a548eb..1e6dc29343 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/sorting.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/sorting.mdx @@ -805,29 +805,41 @@ const sortDescendingHeaderIconTemplate = (ctx: IgrGridHeaderTemplateContext) => ## Styling To get started with styling the sorting behavior, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Following the simplest approach, we create a new theme that extends the and accepts the `$sorted-header-icon-color` and `sortable-header-icon-hover-color` parameters. + + ```scss $custom-theme: grid-theme( $sorted-header-icon-color: #ffb06a, $sortable-header-icon-hover-color: black ); ``` + + The last step is to **include** the component mixins: + + ```scss @include grid($custom-theme); ``` + + If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: @@ -838,6 +850,9 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) @include grid($custom-theme); } } + + + ``` ### Defining a Color Palette @@ -852,16 +867,22 @@ $orange-color: #ffb06a; $custom-palette: palette($primary: $black-color, $secondary: $orange-color); ``` + + And then with we can easily retrieve color from the palette. + + ```scss $custom-theme: grid-theme( $sorted-header-icon-color: color($custom-palette, "secondary", 500), $sortable-header-icon-hover-color: color($custom-palette, "primary", 500) ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/sass/palettes.mdx) topic for detailed guidance on how to use them. @@ -871,7 +892,9 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr Going further with the theming engine, you can build a robust and flexible structure that benefits from [**schemas**](../themes/sass/schemas.mdx). A **schema** is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - : + + ```scss // Extending the light grid schema $custom-grid-schema: extend($_light-grid, @@ -881,9 +904,13 @@ $custom-grid-schema: extend($_light-grid, ) ); ``` + + In order to apply our custom schema we have to **extend** one of the globals ( or ), which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss // Extending the global light-schema $my-custom-schema: extend($light-schema, @@ -898,7 +925,9 @@ $custom-theme: grid-theme( $schema: $my-custom-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. ### Demo @@ -909,7 +938,6 @@ Don't forget to include the themes in the same way as it was demonstrated above. The sample will not be affected by the selected global theme from **Change Theme**. - diff --git a/docs/xplat/src/content/en/components/grids/_shared/summaries.mdx b/docs/xplat/src/content/en/components/grids/_shared/summaries.mdx index b1751e6ce8..06a3b489da 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/summaries.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/summaries.mdx @@ -1492,16 +1492,22 @@ Then set the related CSS properties for that class: ## Styling To get started with styling the sorting behavior, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Following the simplest approach, we create a new theme that extends the and accepts the `$background-color`, `$focus-background-color`, `$label-color`, `$result-color`, `$pinned-border-width`, `$pinned-border-style` and `$pinned-border-color` parameters. + + ```scss $custom-theme: grid-summary-theme( $background-color: #e0f3ff, @@ -1513,13 +1519,19 @@ $custom-theme: grid-summary-theme( $pinned-border-color: #e41c77 ); ``` + + The last step is to **include** the component mixins: + + ```scss @include grid-summary($custom-theme); ``` + + If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: @@ -1530,6 +1542,9 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) @include grid-summary($custom-theme); } } + + + ``` ### Defining a Color Palette @@ -1544,9 +1559,13 @@ $green-color: #00ff2d; $my-custom-palette: palette($primary: $blue-color, $secondary: $green-color); ``` + + And then with we can easily retrieve color from the palette. + + ```scss $custom-theme: grid-summary-theme( $background-color: color($my-custom-palette, "primary", 700), @@ -1558,7 +1577,9 @@ $custom-theme: grid-summary-theme( $pinned-border-color: color($my-custom-palette, "secondary", 500) ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/palettes.mdx) topic for detailed guidance on how to use them. @@ -1568,7 +1589,9 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr Going further with the theming engine, you can build a robust and flexible structure that benefits from [**schemas**](../themes/sass/schemas.mdx). A **schema** is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - : + + ```scss // Extending the light grid summary schema $my-summary-schema: extend($_light-grid-summary, @@ -1583,9 +1606,13 @@ $my-summary-schema: extend($_light-grid-summary, ) ); ``` + + In order to apply our custom schema we have to **extend** one of the globals ( or ), which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss // Extending the global light-schema $my-custom-schema: extend($light-schema, @@ -1600,12 +1627,12 @@ $custom-theme: grid-summary-theme( $schema: $my-custom-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. - - ## API References diff --git a/docs/xplat/src/content/en/components/grids/_shared/toolbar.mdx b/docs/xplat/src/content/en/components/grids/_shared/toolbar.mdx index 9c307587e6..05580f6dc8 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/toolbar.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/toolbar.mdx @@ -1402,16 +1402,22 @@ Then set the related CSS properties for that class: ## Styling To get started with styling the toolbar, we need to import the index file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + First, let's create a new palette. + + ```scss $my-dark-palette: palette( $primary: #2466ff, @@ -1422,9 +1428,13 @@ $my-dark-palette: palette( $my-dark-color: color($my-dark-palette, 'surface'); ``` + + Now, create a new theme that extends the and modify the `$background-color` and the `$title-text-color` parameters. + + ```scss $dark-grid-toolbar-theme: grid-toolbar-theme( $palette: $my-dark-palette, @@ -1433,9 +1443,13 @@ $dark-grid-toolbar-theme: grid-toolbar-theme( $dropdown-background: $my-dark-color, ); ``` + + To theme the column actions menus of the toolbar, we have to change the theme of the `column-actions-theme` component. + + ```scss $dark-column-actions-theme: column-actions-theme( $palette: $my-dark-palette, @@ -1443,9 +1457,13 @@ $dark-column-actions-theme: column-actions-theme( $background-color: color($my-dark-palette, 'surface') ); ``` + + Since the column actions are using other components - igx-button, igx-checkbox, and igx-input-group, we need to change their themes to match our new toolbar theme. + + ```scss $dark-button-theme: button-theme( $palette: $my-dark-palette, @@ -1463,9 +1481,13 @@ $dark-input-group-theme: input-group-theme( $palette: $my-dark-palette ); ``` + + The last step is to **include** the newly created themes. + + ```scss :host { @include grid-toolbar($dark-grid-toolbar-theme); @@ -1475,11 +1497,15 @@ The last step is to **include** the newly created themes. @include button($dark-button-theme); } ``` + + If `$legacy-support` is set to `false(default)`, include the component css variables like that: + + ```scss :host { @include css-vars($dark-grid-toolbar-theme); @@ -1489,11 +1515,15 @@ If `$legacy-support` is set to `false(default)`, include the component css varia @include css-vars($dark-button-theme); } ``` + + If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -1505,7 +1535,9 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) } } ``` + + ### Demo @@ -1513,7 +1545,6 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) - diff --git a/docs/xplat/src/content/en/components/grids/_shared/virtualization.mdx b/docs/xplat/src/content/en/components/grids/_shared/virtualization.mdx index 402e1123ec..527781b2a6 100644 --- a/docs/xplat/src/content/en/components/grids/_shared/virtualization.mdx +++ b/docs/xplat/src/content/en/components/grids/_shared/virtualization.mdx @@ -54,7 +54,9 @@ The supports remote virtualization, which is When needing to customize one of the existing templates in the grid, Blazor provides two possible ways to define a template: - via a server-side template, using the related component property (i.e. property) or declaratively with the template name. For example: + + ```razor @@ -62,11 +64,15 @@ When needing to customize one of the existing templates in the grid, Blazor prov ``` + + This will render the template after first requesting and resolving it from the server. - via a client-template using the `Script` equivalent of the property (i.e. `BodyTemplateScript`) to set it to the name of the client-side function handler, for example: + + ```razor @@ -79,13 +85,14 @@ igRegisterScript("CellTemplate", (ctx) => { }, false); ``` + + The handler then renders the provided lit template directly in the DOM as needed. While both approaches are valid, the server-side templates do require a round-trip request to the server to retrieve and resolve the custom template before rendering it on the client. As such the client-template approach is more optimized and recommended, especially in scenarios with many templates that need frequent updates as there may be a noticeable delay between the related user-interaction and the template updates. - ## Virtualization Limitations diff --git a/docs/xplat/src/content/en/components/grids/data-grid.mdx b/docs/xplat/src/content/en/components/grids/data-grid.mdx index ea77f7b1b9..8306e72c9f 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid.mdx @@ -1181,13 +1181,12 @@ All available column data types could be found in the official [Column types top - - - ## Grid Data Structure The handles **flat data** and nested **POJO (Plain old Java objects)**. The data structure specific for rendering is in the form: + + ```typescript const OBJECT_ARRAY = [{ ObjectKey1: value1, @@ -1212,13 +1211,13 @@ const POJO = [{ // ... }]; ``` + + >**WARNING**: >**The key values must not contain arrays**. >If you use columns **the data keys must be identical.** - - @@ -2355,19 +2354,20 @@ See the [Grid Sizing](./sizing.mdx) topic. */} - - - ## Performance (Experimental) Design of the allows it to take advantage of the Event Coalescing feature that has Angular introduced. This feature allows for improved performance with roughly around **20%** in terms of interactions and responsiveness. This feature can be enabled on application level by simply setting the `ngZoneEventCoalescing` and `ngZoneRunCoalescing` properties to **true** in the `bootstrapModule` method: + + ```typescript platformBrowserDynamic() .bootstrapModule(AppModule, { ngZoneEventCoalescing: true, ngZoneRunCoalescing: true }) .catch(err => console.error(err)); ``` + + This is still in experimental feature for the `IgxGridComponent`. This means that there might be some unexpected behaviors in the Grid. In case of encountering any such behavior, please contact us on our [Github]({GithubLink}/discussions) page. @@ -2375,8 +2375,6 @@ This is still in experimental feature for the `IgxGridComponent`. This means tha Enabling it can affects other parts of an Angular application that the `IgxGridComponent` is not related to. - - diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx index 450d97b1eb..ba02dde5a5 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx @@ -221,7 +221,9 @@ connectedCallback() { In some situations, you may want to expand the default set of summaries. For example, if you were looking to show the number of times a particular value in a column appears, a custom summary would be required for this. The snippets below demonstrate how to display a Count for number of "USA" values appear in the column. + + ```ts import { IgrProvideCalculatorEventArgs } from 'igniteui-react-core'; diff --git a/docs/xplat/src/content/en/components/grids/grid/groupby.mdx b/docs/xplat/src/content/en/components/grids/grid/groupby.mdx index cbdf4c118e..32ab459348 100644 --- a/docs/xplat/src/content/en/components/grids/grid/groupby.mdx +++ b/docs/xplat/src/content/en/components/grids/grid/groupby.mdx @@ -762,7 +762,6 @@ Then set the related CSS properties for that class: - The Grid allows styling through the [{ProductName} Theme Library](../themes/styles.mdx). The grid's theme exposes a wide variety of properties, which allow the customization of all the features of the grid. In the below steps, we are going through the steps of customizing the grid's Group By styling. @@ -770,18 +769,24 @@ In the below steps, we are going through the steps of customizing the grid's Gro ### Importing Global Theme To begin the customization of the Group By feature, you need to import the `index` file, where all styling functions and mixins are located. + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + ### Defining Custom Theme Next, create a new theme, that extends the `grid-theme` and accepts the parameters, required to customize the Group By as desired. You also need to extend the `chip-theme`, because it's used in the Group By feature. + + ```scss $custom-theme: grid-theme( @@ -809,12 +814,16 @@ $custom-chips-theme: chip-theme( $hover-text-color: #e7e7e7 ); ``` + + ### Defining a Custom Color Palette In the approach that we described above, the color values were hardcoded. Alternatively, you can achieve greater flexibility, using the `palette` and `color` functions. `palette` generates a color palette, based on provided primary and secondary colors. + + ```scss $black-color: #292826; $yellow-color: #FFCD0F; @@ -824,9 +833,13 @@ $custom-palette: palette( $secondary: $yellow-color ); ``` + + After a custom palette has been generated, the `color` function can be used to obtain different varieties of the primary and the secondary colors. + + ```scss $custom-theme: grid-theme( $group-row-background: color($custom-palette, "primary", 300), @@ -847,12 +860,16 @@ $custom-chips-theme: chip-theme( $hover-text-color:contrast-color($custom-palette, "primary", 600) ); ``` + + ### Defining Custom Schemas You can go even further and build flexible structure that has all the benefits of a [**schema**](../themes/sass/schemas.mdx). The **schema** is the recipe of a theme. Extend one of the two predefined schemas, that are provided for every component. In our case, we would use `$_light_grid`. + + ```scss $custom-grid-schema: extend($_light-grid,( group-row-background: (-color:('secondary', 100)), @@ -866,9 +883,13 @@ $custom-grid-schema: extend($_light-grid,( expand-icon-hover-color: (-color:('primary', 400)) )); ``` + + In order for the custom schema to be applied, either `light`, or `dark` globals has to be extended. The whole process is actually supplying a component with a custom schema and adding it to the respective component theme afterwards. + + ```scss $my-custom-schema: extend($light-schema, ( -grid: $custom-grid-schema @@ -879,16 +900,22 @@ $custom-theme: grid-theme( $schema: $my-custom-schema ); ``` + + ### Applying the Custom Theme The easiest way to apply your theme is with a `sass` `@include` statement in the global styles file: + + ```scss @include grid($custom-theme); @include chip($custom-chips-theme); ``` + + ### Scoped Component Theme In order for the custom theme to affect only specific component, you can move all of the styles you just defined from the global styles file to the custom component's style file (including the import of the `index` file). @@ -902,7 +929,9 @@ This way, due to {Platform}'s [ViewEncapsulation](https://{Platform}.io/api/core Wrap the statement inside of a `:host` selector to prevent your styles from affecting elements outside of our component: + + ```scss :host { ::ng-deep { @@ -911,8 +940,9 @@ This way, due to {Platform}'s [ViewEncapsulation](https://{Platform}.io/api/core } } ``` + - + ### Demo {/*NOTE this sample is differed*/} @@ -924,7 +954,6 @@ This way, due to {Platform}'s [ViewEncapsulation](https://{Platform}.io/api/core The sample will not be affected by the selected global theme from **Change Theme**. - ## Known Limitations diff --git a/docs/xplat/src/content/en/components/grids/grid/paste-excel.mdx b/docs/xplat/src/content/en/components/grids/grid/paste-excel.mdx index 62ad7a6e70..5544f552a7 100644 --- a/docs/xplat/src/content/en/components/grids/grid/paste-excel.mdx +++ b/docs/xplat/src/content/en/components/grids/grid/paste-excel.mdx @@ -472,12 +472,12 @@ function updateRecords(processedData) { - ## Usage You should add the `paste-handler` directive (you can find its code in the next section) to the and handle its `onDataProcessed` event. The `onDataProcessed` event has one parameter that gives you access to the Excel data in the form of an array. For reference see the `addRecords` and `updateRecords` methods. + - + ```html @@ -578,11 +578,15 @@ You should add the `paste-handler` directive (you can find its code in the next } } ``` + + ## Paste Handler Directive This is the `paste-handler` implementation. The code creates a DOM `textarea` element which is used to receive the pasted data from the clipboard. When the data is pasted in the `textarea` the directive parses it into an array and then emits a custom event `onDataProcessed` passing the parsed data. + + ```typescript import { Directive, EventEmitter, HostListener, Output} from "@{Platform}/core"; @@ -660,7 +664,6 @@ export class PasteHandler { } } ``` - diff --git a/docs/xplat/src/content/en/components/grids/hierarchical-grid/overview.mdx b/docs/xplat/src/content/en/components/grids/hierarchical-grid/overview.mdx index 827a31bf9c..a703f4e8a6 100644 --- a/docs/xplat/src/content/en/components/grids/hierarchical-grid/overview.mdx +++ b/docs/xplat/src/content/en/components/grids/hierarchical-grid/overview.mdx @@ -834,8 +834,6 @@ Check out the How-to [Build CRUD operations with igxGrid](../general/how-to/how- - - ## Styling The igxHierarchicalGrid allows styling through the [Ignite UI for Angular Theme Library](../themes/sass/component-themes.mdx). The grid's exposes a wide variety of properties, which allow the customization of all the features of the grid. @@ -843,19 +841,24 @@ In the below steps, we are going through the steps of customizing the igxHierarc ### Importing global theme To begin the customization of the hierarchical grid, you need to import the `index` file, where all styling functions and mixins are located. + + ```scss @import '~igniteui-angular/lib/core/styles/themes/index' ``` + + ### Defining custom theme Next, create a new theme, that extends the and accepts the parameters, required to customize the hierarchical grid as desired. There is no specific `sass` hierarchical grid function. + - + ```scss $custom-theme: grid-theme( $cell-active-border-color: #ffcd0f, @@ -870,7 +873,9 @@ $custom-theme: grid-theme( $row-highlight: #ffcd0f ); ``` + + ### Defining a custom color palette In the approach, that was described above, the color values were hardcoded. Alternatively, you can achieve greater flexibility, using the and functions. `igx-palette` generates a color palette, based on provided primary and secondary colors. @@ -883,6 +888,9 @@ $custom-palette: palette( $primary: $black-color, $secondary: $yellow-color ); + + + ``` After a custom palette has been generated, the `igx-color` function can be used to obtain different varieties of the primary and the secondary colors. @@ -901,11 +909,15 @@ $custom-theme: grid-theme( $row-highlight: (igx-color($custom-palette, "secondary", 500)) ); ``` + + ### Defining custom schemas You can go even further and build flexible structure that has all the benefits of a [**schema**](../themes/sass/schemas.mdx). The **schema** is the recipe of a theme. Extend one of the two predefined schemas, that are provided for every component. In our case, we will use `$_light_grid`. + + ```scss $custom-grid-schema: extend($_light-grid,( cell-active-border-color: (igx-color:('secondary', 500)), @@ -920,9 +932,13 @@ $custom-grid-schema: extend($_light-grid,( row-highlight: (igx-color:('secondary', 500)) )); ``` + + In order for the custom schema to be applied, either `light`, or `dark` globals has to be extended. The whole process is actually supplying a component with a custom schema and adding it to the respective component theme afterwards. + + ```scss $my-custom-schema: extend($light-schema, ( igx-grid: $custom-grid-schema @@ -933,14 +949,20 @@ $custom-theme: grid-theme( $schema: $my-custom-schema ); ``` + + ### Applying the custom theme The easiest way to apply your theme is with a `sass` `@include` statement in the global styles file: + + ```scss @include grid($custom-theme); ``` + + ### Scoped component theme In order for the custom theme do affect only specific component, you can move all of the styles you just defined from the global styles file to the custom component's style file (including the import of the `index` file). @@ -954,7 +976,9 @@ This way, due to Angular's [ViewEncapsulation](https://angular.io/api/core/Compo Wrap the statement inside of a `:host` selector to prevent your styles from affecting elements outside of our component: + + ```scss :host { ::ng-deep { @@ -962,7 +986,9 @@ This way, due to Angular's [ViewEncapsulation](https://angular.io/api/core/Compo } } ``` + + ### Demo @@ -970,7 +996,6 @@ This way, due to Angular's [ViewEncapsulation](https://angular.io/api/core/Compo The sample will not be affected by the selected global theme from **Change Theme**. - diff --git a/docs/xplat/src/content/en/components/grids/pivot-grid/features.mdx b/docs/xplat/src/content/en/components/grids/pivot-grid/features.mdx index c61c27d873..09e147c9fd 100644 --- a/docs/xplat/src/content/en/components/grids/pivot-grid/features.mdx +++ b/docs/xplat/src/content/en/components/grids/pivot-grid/features.mdx @@ -35,8 +35,6 @@ The {PivotGridTitle} component has additional features and functionalities relat - - ## Dimensions Filtering All dimensions (filters, rows, columns) can be filtered via the chip UI or the API. This functionality is embedded and enabled by default. @@ -53,7 +51,9 @@ If there is not enough space for all of the filtering chips, the {PivotGridTitle Dimensions can also be filtered initially via the dimension configuration in with the dimension's `filter` property. It can be set to a new with the related filter condition, for example: + + ```typescript public filterExpTree = new FilteringExpressionsTree(FilteringLogic.And); @@ -77,7 +77,6 @@ public pivotConfigHierarchy: IPivotConfiguration = { ] } ``` - diff --git a/docs/xplat/src/content/en/components/inputs/select.mdx b/docs/xplat/src/content/en/components/inputs/select.mdx index 5796551216..e15031af68 100644 --- a/docs/xplat/src/content/en/components/inputs/select.mdx +++ b/docs/xplat/src/content/en/components/inputs/select.mdx @@ -312,7 +312,6 @@ The component - ## Styling You can change the appearance of the {ProductName} component and its items, by using the exposed CSS parts listed below: @@ -342,7 +341,9 @@ You can change the appearance of the {ProductName} ```css igc-select::part(base) { background: var(--ig-primary-50); @@ -362,9 +363,10 @@ igc-select::part(suffix) { background: var(--ig-secondary-500); } ``` + + - ## API References diff --git a/docs/xplat/src/content/en/components/linear-gauge.mdx b/docs/xplat/src/content/en/components/linear-gauge.mdx index 3176731fd9..47dcf4d50b 100644 --- a/docs/xplat/src/content/en/components/linear-gauge.mdx +++ b/docs/xplat/src/content/en/components/linear-gauge.mdx @@ -26,17 +26,16 @@ The following sample demonstrates how setting multiple properties on the same - - ## Dependencies When installing the {Platform} gauge component, the core package must also be installed. + + ```cmd npm install --save {PackageCore} npm install --save {PackageGauges} ``` - diff --git a/docs/xplat/src/content/en/components/radial-gauge.mdx b/docs/xplat/src/content/en/components/radial-gauge.mdx index 22041ba8fb..6bc8c421e9 100644 --- a/docs/xplat/src/content/en/components/radial-gauge.mdx +++ b/docs/xplat/src/content/en/components/radial-gauge.mdx @@ -27,17 +27,16 @@ The following sample demonstrates how setting multiple properties on the same - - ## Dependencies When installing the gauge component, the core package must also be installed. + + ```cmd npm install --save {PackageCore} npm install --save {PackageGauges} ``` - diff --git a/docs/xplat/src/content/en/components/spreadsheet-conditional-formatting.mdx b/docs/xplat/src/content/en/components/spreadsheet-conditional-formatting.mdx index 16b7ee2afb..f8ede9f1dd 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-conditional-formatting.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-conditional-formatting.mdx @@ -104,11 +104,15 @@ import { FormatConditionTimePeriod } from 'igniteui-webcomponents-excel'; import { FormatConditionTopBottom } from "igniteui-webcomponents-excel"; import { WorkbookColorInfo } from 'igniteui-webcomponents-excel'; ``` + + ## Code Snippet The following code snippet demonstrates how to add each of the conditional formats to a spreadsheet in the control: + + ```ts let sheet = this.spreadsheet.activeWorksheet; @@ -170,8 +174,9 @@ textFormat.cellFormat.font.colorInfo = new WorkbookColorInfo(red); let uniqueFormat = sheet.conditionalFormats().addUniqueCondition("O1:O10"); uniqueFormat.cellFormat.font.colorInfo = new WorkbookColorInfo(blue); ``` + - + ## API References
@@ -191,6 +196,4 @@ uniqueFormat.cellFormat.font.colorInfo = new WorkbookColorInfo(blue);


- -
diff --git a/docs/xplat/src/content/en/components/spreadsheet-data-validation.mdx b/docs/xplat/src/content/en/components/spreadsheet-data-validation.mdx index 8c4c8d9a09..077af67d96 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-data-validation.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-data-validation.mdx @@ -68,12 +68,15 @@ import { OneConstraintDataValidationRule } from 'igniteui-webcomponents-excel'; import { TwoConstraintDataValidationOperator } from 'igniteui-webcomponents-excel'; import { TwoConstraintDataValidationRule } from 'igniteui-webcomponents-excel'; ``` + - + ## Usage The following snippet shows how you can setup the data validation rules + + ```ts // this validation rule has only input message set const valRule1 = new AnyValueDataValidationRule(); @@ -145,7 +148,6 @@ this.spreadsheet.workbook.worksheets(0).rows(7).cells(1).dataValidationRule = va this.spreadsheet.workbook.worksheets(0).rows(7).cells(1).value = checkOutDate.toLocaleDateString(); this.spreadsheet.workbook.worksheets(0).rows(7).cells(0).value = "Check Out Date"; ``` - ## API References diff --git a/docs/xplat/src/content/en/components/spreadsheet-hyperlinks.mdx b/docs/xplat/src/content/en/components/spreadsheet-hyperlinks.mdx index 16e67c99f1..a76f8cbdd3 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-hyperlinks.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-hyperlinks.mdx @@ -51,20 +51,23 @@ import { WorksheetHyperlink } from 'igniteui-react-excel'; ```ts import { WorksheetHyperlink } from 'igniteui-webcomponents-excel'; ``` + + ## Code Snippet The following code snippet demonstrates how to add a hyperlink to the currently viewed worksheet in the {Platform} control: + + ```ts this.spreadsheet.activeWorksheet.hyperlinks().add(new WorksheetHyperlink("A1", "http://www.infragistics.com", "Infragistics", "Infragistics Home Page")); ``` + - + ## API References

- -
diff --git a/docs/xplat/src/content/en/components/themes/overview.mdx b/docs/xplat/src/content/en/components/themes/overview.mdx index 10ebc70cbd..b59efcdeb9 100644 --- a/docs/xplat/src/content/en/components/themes/overview.mdx +++ b/docs/xplat/src/content/en/components/themes/overview.mdx @@ -52,7 +52,6 @@ Here's the complete list of all bundled themes and their path: - | Name | Variant | Location | | ----------- | ------- | ------------------------------------------------- | | **Bootstrap** | Light | igniteui-webcomponents/themes/light/bootstrap.css | @@ -73,18 +72,21 @@ Changing the theme at runtime also requires you to replace the global stylesheet {ProductName} allows you to switch the component themes at runtime by using the `ConfigureTheme` function exported by the library. Calling it and passing one of the four valid themes - `bootstrap`, `material`, `fluent`, or `indigo` as a string will change the loaded component styles; + + ```ts import { configureTheme } from "igniteui-webcomponents"; // Sets material as the theme to be used by all components configureTheme("material"); ``` + + This only tells components to switch their internal styles to the desired theme, you should also switch the global theme file to one of the listed files above. - diff --git a/docs/xplat/src/content/en/components/zoomslider-overview.mdx b/docs/xplat/src/content/en/components/zoomslider-overview.mdx index a1ee95e7ea..1ff4571b1c 100644 --- a/docs/xplat/src/content/en/components/zoomslider-overview.mdx +++ b/docs/xplat/src/content/en/components/zoomslider-overview.mdx @@ -39,17 +39,16 @@ The following sample demonstrates how to use to na - - ## Dependencies When installing the {Platform} chart component, the core package must also be installed. + + ```cmd npm install --save {PackageCore} npm install --save {PackageCharts} ``` - diff --git a/docs/xplat/src/content/jp/components/bullet-graph.mdx b/docs/xplat/src/content/jp/components/bullet-graph.mdx index cc157094d1..44da12f11d 100644 --- a/docs/xplat/src/content/jp/components/bullet-graph.mdx +++ b/docs/xplat/src/content/jp/components/bullet-graph.mdx @@ -34,16 +34,15 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - ## 依存関係 gauge パッケージのインストール時に core パッケージもインストールする必要があります。 + + ```cmd npm install --save {PackageCore} npm install --save {PackageGauges} ``` - diff --git a/docs/xplat/src/content/jp/components/excel-library-using-cells.mdx b/docs/xplat/src/content/jp/components/excel-library-using-cells.mdx index 1b48a87460..a455f9f1cc 100644 --- a/docs/xplat/src/content/jp/components/excel-library-using-cells.mdx +++ b/docs/xplat/src/content/jp/components/excel-library-using-cells.mdx @@ -26,12 +26,12 @@ Excel ワークシートの オブジェクト - - ## 参照 以下のコードは、以下のコード スニペットを使用するインポートを示します。 + + ```ts import { Workbook } from "{PackageExcel}"; import { WorkbookFormat } from "{PackageExcel}"; @@ -41,7 +41,6 @@ import { NamedReference } from "{PackageExcel}"; import { WorksheetCellComment } from "{PackageExcel}"; import { FormattedString } from "{PackageExcel}"; ``` - diff --git a/docs/xplat/src/content/jp/components/excel-library.mdx b/docs/xplat/src/content/jp/components/excel-library.mdx index 95adc7f966..84ef50e246 100644 --- a/docs/xplat/src/content/jp/components/excel-library.mdx +++ b/docs/xplat/src/content/jp/components/excel-library.mdx @@ -27,24 +27,24 @@ Infragistics {Platform} Excel ライブラリは、 - - ## 依存関係 excel パッケージをインストールするときに core パッケージもインストールする必要があります。 + + ```cmd npm install --save {PackageCore} npm install --save {PackageExcel} ``` - - ## モジュールの要件 {Platform} Excel ライブラリを使用するには、以下のモジュールが必要です。 + + ```ts // app.module.ts import { IgxExcelModule } from 'igniteui-angular-excel'; @@ -58,29 +58,29 @@ import { IgxExcelModule } from 'igniteui-angular-excel'; }) export class AppModule {} ``` - - ## モジュールの要件 {Platform} Excel ライブラリを使用するには、以下のモジュールが必要です。 + + ```ts import { IgrExcelModule } from 'igniteui-react-excel'; IgrExcelModule.register(); ``` - - ## モジュールの要件 {Platform} Excel ライブラリを使用するには、以下のモジュールが必要です。 + + ```ts // Module Manager for registering the modules of the chart import { ModuleManager } from 'igniteui-webcomponents-core'; @@ -91,7 +91,6 @@ ModuleManager.register( IgcExcelModule ); ``` - @@ -112,33 +111,44 @@ Excel ライブラリには、アプリのバンドル サイズを制限する - - - ## 要件 {Platform} Excel ライブラリを使用するには、Excel ライブラリの NuGet パッケージを次のように追加する必要があります: + + ```cmd > dotnet add package IgniteUI.Blazor.Documents.Excel ``` + + 次の using ステートメントを追加します: + + ```razor @using Infragistics.Documents.Excel ``` + + Blazor WebAssembly (WASM) プロジェクトを使用している場合は、いくつかの追加手順があります: - wwwroot/index.html ファイルに次のスクリプトへの参照を追加します: + + ```razor ``` + + - 静的な を現在のランタイムに設定します。以下のコードを使用できます: + + ```razor @using Microsoft.JSInterop @@ -154,8 +164,6 @@ Blazor WebAssembly (WASM) プロジェクトを使用している場合は、い } } ``` - - @@ -240,13 +248,14 @@ private void SaveFile(byte[] bytes, string fileName, string mime) - ## ヒープの管理 Excel ライブラリのサイズ最適化のため、ソース マップの生成を無効にすることをお勧めします。 `angular.json` を変更して、architect => build => options と serve => options の下にある `vendorSourceMap` オプションを設定します: + + ```ts "architect": { "build": { @@ -272,7 +281,6 @@ Excel ライブラリのサイズ最適化のため、ソース マップの生 // ... } ``` - diff --git a/docs/xplat/src/content/jp/components/general-getting-started.mdx b/docs/xplat/src/content/jp/components/general-getting-started.mdx index 11da3f4a54..f66222df0c 100644 --- a/docs/xplat/src/content/jp/components/general-getting-started.mdx +++ b/docs/xplat/src/content/jp/components/general-getting-started.mdx @@ -36,7 +36,6 @@ import gettingStartedBlazorCard from '@xplat-images/general/getting-started-blaz - ## 前提条件 1. NodeJS をインストールします。 @@ -50,25 +49,37 @@ import gettingStartedBlazorCard from '@xplat-images/general/getting-started-blaz ## Ignite UI CLI の使用 アプリケーションを最初から作成し、Ignite UI React を使用するように構成するには、Ignite UI CLI を使用できます。最初の手順には、以下のように各パッケージをグローバルにインストールします。 + + ```cmd npm install -g igniteui-cli ``` + + 使用可能なオプションをガイド付きで体験したい場合は、新しいアプリケーションの作成とセットアップに役立つ手順モードを初期化できます。ガイドを開始するには、`ig` コマンドを実行します。 + + ```cmd ig ``` + + 次に、フレームワークとして `React` を選択し、プロジェクト タイプとして `Ignite UI for React TS` を選択します。ナビゲーション レイアウトで始めるには **Side Navigation** または **Side Navigation Mini** を選択します。これらのナビゲーション テンプレートを選択すると、認証を追加するかどうかを確認するプロンプトが表示されます。**Empty** テンプレートでは認証プロンプトは表示されません。その後、特定のコンポーネント/ビューを追加するか、`Complete & Run` を選択します。 または、プロジェクトを直接作成することもできます。例: + + ```cmd ig new --framework=react --type=igr-ts --template=side-nav ``` + + コマンド、テンプレート ID、直接認証テンプレートの全リファレンスについては、[CLI の概要](./general-cli-overview.mdx)を参照してください。 プロンプト中にグリッド コンポーネントを追加した場合、アプリケーションが実行されると、次のようなものが表示されます。 @@ -90,36 +101,49 @@ React 開発向けの主要なフレームワークはすべて、React アプ 1 - **VS Code** を開き、**[ターミナル]** メニューを選択してから、**[新しいターミナル]** オプションを選択します。 2 - ターミナル ウィンドウに以下のコマンドのいずれかを入力します。 + + ```cmd npm create vite@latest ``` + + 次に、プロンプトに従って、プロジェクトの名前、フレームワークとしての React、TypeScript を使用するかどうか、および Vite によって提供されるその他のさまざまなオプションを選択します。React アプリケーションの初期構成 (ボイラープレート) を行うさまざまな方法については、
このトピックを参照してください。 ### Ignite UI React Grid コンポーネントの追加 ##### パッケージのインストール Ignite UI React [**Grid**](./grids/data-grid.mdx) コンポーネントをアプリに追加するには、`igniteui-react-grids` パッケージをインストールする必要があります。 + + ```cmd npm install igniteui-react-grids --save ``` + + #### コンポーネント モジュールのインポート 次に、使いたいコンポーネントの必要なモジュールをインポートします。テンプレートでも使用する Grid コンポーネントと Column コンポーネントに対しても、同じことを実行してみましょう。テーマの 1 つをインポートする必要もあります。 + - + ```ts import { IgrGrid, IgrColumn } from 'igniteui-react-grids'; import 'igniteui-react-grids/grids/themes/light/bootstrap.css'; ``` + + #### コンポーネントの使用 マークアップに {ProductName} グリッド コンポーネントを使用する準備が整いました。以下のように定義します。 + + ```tsx // App.txs function App() { @@ -149,142 +173,208 @@ function App() { ); } ``` + + ### アプリケーションの実行 最後に、新しいアプリケーションを実行します。 + + ```cmd npm run dev ``` + + コマンドを実行した後、プロジェクトがローカルでビルドされて提供されます。これでデフォルトのブラウザーで自動的に開き、プロジェクトで {ProductName} コンポーネントを使用できるようになります。最終結果には、サンプル データを含むデータ グリッドが表示されます。 - - ## Ignite UI CLI のインストール アプリケーションを最初から作成し、Ignite UI Web Components を使用するように構成するには、Ignite UI CLI を使用できます。最初の手順には、以下のように各パッケージをグローバルにインストールします。 + + ```cmd npm install -g igniteui-cli ``` + + 使用可能なオプションをガイド付きで体験したい場合は、新しいアプリケーションの作成とセットアップに役立つ手順モードを初期化できます。ガイドを開始するには、`ig` コマンドを実行するだけです。 + + ```cmd ig ``` + + 次に、フレームワークとして Web Components を選択します。ナビゲーション レイアウトで始めるには **Side Navigation** または **Side Navigation Mini** を選択します。これらのナビゲーション テンプレートを選択すると、認証を追加するかどうかを確認するプロンプトが表示されます。**Empty** テンプレートでは認証プロンプトは表示されません。その後、特定のコンポーネント / ビューを追加するか、`Complete & Run` を選択します。 または、プロジェクトを直接作成することもできます。例: + + ```cmd ig new --framework=webcomponents --type=igc-ts --template=side-nav ``` + + コマンド、テンプレート ID、直接認証テンプレートの全リファレンスについては、[CLI の概要](./general-cli-overview.mdx)を参照してください。 ## ポリフィルのインストール 次のコマンドを実行して、Web コンポーネントのポリフィルをインストールします。 + + ```bash npm install @webcomponents/custom-elements ``` + + 次に、Web コンポーネントのポリフィルを index.js にインポートします。 + + ```ts import '@webcomponents/custom-elements/custom-elements.min'; import '@webcomponents/custom-elements/src/native-shim.js'; ``` + + ## Ignite UI for Web Components のインストール アプリケーションで Ignite UI Web Components を使用するには、`igniteui-webcomponents` パッケージをインストールする必要があります。 + + ```cmd npm install igniteui-webcomponents ``` + + 次に、`index.ts` ファイルで使用するコンポーネントをインポートする必要があります。次のように 関数を使用して 1 つ以上のコンポーネントをインポートできます: + + ```ts import { defineComponents, IgcAvatarComponent, IgcBadgeComponent } from 'igniteui-webcomponents'; defineComponents(IgcAvatarComponent, IgcBadgeComponent); ``` + + 関数を使用して、すべてのコンポーネントをインポートすることもできます。 + + ```ts import { defineAllComponents } from 'igniteui-webcomponents'; defineAllComponents(); ``` + + すべてのコンポーネントをインポートすると、アプリケーションのバンドル サイズが大きくなります。そのため、実際に使用しているコンポーネントのみをインポートすることをお勧めします。 最後の手順は、コンポーネントが適切にスタイル設定されるように、コンポーネントに必要な CSS をインポートすることです。 + + ```ts import 'igniteui-webcomponents/themes/light/bootstrap.css'; ``` + + コンポーネントをインポートしたら、html で使用できます。 + + ```html ``` + + ## Charts および Map パッケージのインストール ### 手順 1 - Web コンポーネント プロジェクトの作成 1 - コマンドラインを開き、**wc-html** という名前のディレクトリを作成します。 + + ```cmd mkdir wc-html ``` + + 2 - コマンドライン パスを新しく作成したディレクトリに変更します。 + + ```cmd cd wc-html ``` + + 3 - ディレクトリで **npm** を初期化します。 + + ```cmd npm init -y ``` + + 4 - **webpack** バンドラーおよび **webpack cli** を developer dependency としてインストールします。 + + ```cmd npm install webpack webpack-cli --save-dev ``` + + Webpack はモジュール バンドラーです。主な目的は、ブラウザーで使用するために JavaScript ファイルをバンドルすることですが、あらゆるリソースやアセットを変換、バンドル、またはパッケージ化することもできます。 5 - **VS Code** でプロジェクトを開きます。 + + ```cmd code . ``` + + 6 - 以下のコードを使用して **index.html** という名前の新しいファイルを作成します。 + + ```html @@ -295,100 +385,140 @@ code . ``` + + 7 - **src** という名前の新しいフォルダーを作成し、そのフォルダー内に **index.js** という名前の新しいファイルを作成します。プロジェクト構造は以下のようになります。 wc-project 8 - **package.json** ファイルを、**webpack** を使用してビルド スクリプトを含めるよう変更します。 + + ```json "scripts": { "build": "webpack ./src/index.js -o ./dist/ --output-filename index.bundle.js" }, ``` + + このスクリプトは webpack を使用して **index.js** ファイルを **index.bundle.js** と呼ばれる別のファイルにバンドルし、**dist** という名前のフォルダーに配置します。 ビルド中に **JavaScript のメモリ不足** の問題が発生した場合、代わりに以下のビルド コマンドを使用してヒープ サイズを増やすことができます。 + + ```json "scripts": { "build": "node --max_old_space_size=8192 node_modules/webpack/bin/webpack src/index.js -o dist/index.bundle.js" }, ``` + + ### 手順 2 - ポリフィルのインストール 1 - **VS Code** でターミナルを開きます (**[表示]** -> **[ターミナル]** メニューまたは CTRL + ` キーを押します) 2 - Web コンポーネントのポリフィルで以下のコマンドを入力します。 + + ```cmd npm install @webcomponents/custom-elements ``` + + 3 - Web コンポーネントのポリフィルを **index.js** にインポートします。 + + ```ts import '@webcomponents/custom-elements/custom-elements.min'; import '@webcomponents/custom-elements/src/native-shim.js'; ``` + + ### 手順 3 - Ignite UI for Web Components と lit-html のインストール 1 - **npm** を使用して Ignite UI for Web コンポーネントをインストールします。この例では、Map Web コンポーネントをインストールします。 + + ```cmd npm install --save {PackageCore} npm install --save {PackageCharts} npm install --save {PackageMaps} npm install lit-html ``` + + 2 - Geographic Map モジュールと **ModuleManager** を **index.js** ファイルにインポートします。 + + ```ts import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; // module manager for registering the modules import { ModuleManager } from 'igniteui-webcomponents-core'; ``` + + 3 - **ModuleManager** で Geographic Map モジュールを登録します。 + + ```ts ModuleManager.register( IgcGeographicMapModule, IgcDataChartInteractivityModule ); ``` + + 4 - **index.html** ファイルの本文に Geographic Map Web コンポーネントを追加します。 + + ```html ``` + + ### 手順 4 - Web コンポーネント プロジェクトのビルドと実行 1 - **VS Code** でターミナルを開き、**build** スクリプトを実行します。 + + ```cmd npm run build ``` + + このコマンドは、前に作成したビルド スクリプトを実行します。ビルド スクリプトは、**dist** という名前のフォルダーに **index.bundle.js** という名前のファイルを生成します。 2 - **index.html** ファイルの **body** 要素の最後に **index.bundle.js** スクリプトを追加します。 + + ```html @@ -397,7 +527,9 @@ npm run build ``` + + 3 - プロジェクトを実行するには、ローカル開発サーバーを起動します。この例では、Live Server を使用しています。**index.html** のエディター内で右クリックし、**[Live Server で開く]** を選択します。 @@ -411,15 +543,15 @@ Live Server は Visual Studio Code の拡張機能で、静的および動的ペ - - ## 既存アプリの更新 既存の {Platform} CLI プロジェクトで {ProductName} を使用する場合は、以下のコマンドを実行します。 + + ```cmd npm install --save {PackageCommon} npm install --save {PackageCharts} {PackageCore} @@ -429,9 +561,13 @@ npm install --save {PackageGrids} {PackageCore} npm install --save {PackageMaps} {PackageCore} npm install --save {PackageSpreadsheet} {PackageCore} ``` + + または + + ```cmd yarn add {PackageCharts} {PackageCore} yarn add {PackageExcel} {PackageCore} @@ -440,9 +576,10 @@ yarn add {PackageGrids} {PackageCore} yarn add {PackageMaps} {PackageCore} yarn add {PackageSpreadsheet} {PackageCore} ``` + + これにより、{ProductName} のパッケージが、それらのすべての依存関係、フォントのインポート、および既存のプロジェクトへのスタイル参照と共に自動的にインストールされます。 - @@ -481,7 +618,6 @@ yarn add {PackageSpreadsheet} {PackageCore} - ## {ProductName} を使用した作業の開始 このトピックでは、Visual Studio および Ignite UI for Blazor を使用して Blazor Server アプリケーションを作成するための手順を説明します。 @@ -514,7 +650,9 @@ NuGet を使用した Ignite UI for Blazor のインストールの詳細につ #### .NET 6 以降のアプリケーション 1 - **Program.cs** ファイルを開き、**builder.Services.AddIgniteUIBlazor()** 関数を呼び出して Ignite UI for Blazor サービスを登録します。 + + ```razor var builder = WebApplication.CreateBuilder(args); @@ -526,32 +664,48 @@ builder.Services.AddIgniteUIBlazor(); var app = builder.Build(); ``` + + 2 - **IgniteUI.Blazor.Controls** 名前空間を **_Imports.razor** ファイルに追加します。 + + ```razor @using IgniteUI.Blazor.Controls ``` + + 3a - **Pages/_Layout.cshtml** または **Pages/_Host.cshtml** ファイルの **``** 要素にスタイル シートを追加します。 + + ```razor ``` + + 3b - スクリプト参照を追加します。 + + ```razor ``` + + #### .NET 5 アプリケーション 1 - **Startup.cs** ファイルを開き、**services.AddIgniteUIBlazor()** を呼び出して Ignite UI for Blazor サービスを登録します。 + + ```razor public void ConfigureServices(IServiceCollection services) { @@ -559,32 +713,48 @@ public void ConfigureServices(IServiceCollection services) services.AddIgniteUIBlazor(); } ``` + + 2 - **IgniteUI.Blazor.Controls** 名前空間を **_Imports.razor** ファイルに追加します。 + + ```razor @using IgniteUI.Blazor.Controls ``` + + 3a - **Pages/_Layout.cshtml** または **Pages/_Host.cshtml** ファイルの **``** 要素にスタイル シートを追加します。 + + ```razor ``` + + 3b - スクリプト参照を **Pages/_Host.cshtml** ファイルに追加します。 + + ```razor ``` + + ### Ignite UI for Blazor コンポーネントの追加 Razor ページに Ignite UI for Blazor コンポーネントの追加: + + ```razor @@ -604,9 +774,10 @@ Razor ページに Ignite UI for Blazor コンポーネントの追加: ``` + + Blazor アプリケーションをビルドして実行します。 getting-started-blazor-card - diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx index 2c88943243..d666a08f1c 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx @@ -38,465 +38,101 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; まず、必要なコンポーネントとモジュールをインポートします。 - - -```ts -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicShapeSeries } from 'igniteui-react-maps'; -import { IgrGeographicPolylineSeries } from 'igniteui-react-maps'; -import { IgrGeographicSymbolSeries } from 'igniteui-react-maps'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; -import { IgrDataContext } from 'igniteui-react-core'; -import { IgrShapeDataSource } from 'igniteui-react-core'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); -``` - - - - - -```ts -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -import { IgcGeographicMapComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicPolylineSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicSymbolSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -ModuleManager.register( - IgcDataChartInteractivityModule, - IgcGeographicMapModule -); -``` - - - - - -```ts -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps'; -import { IgxGeographicShapeSeriesComponent } from 'igniteui-angular-maps'; -import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -``` - - - - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbGeographicMapModule), - typeof(IgbDataChartInteractivityModule) -); -``` - - - -## シリーズの作成 - -次に、後で異なるタイプのシェープ ファイルをロードする地理的シリーズでマップを作成します。 - -```json-snippet source="/maps/geo-map/binding-multiple-shapes" +```json-snippet id="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="bindingImports,handlersImports" { - "type": "GeographicMap", - "name": "map", - "height": "500px", - "width": "700px", - "zoomable": true, - "series": [ - { - "type": "GeographicShapeSeries", - "name": "polygonSeries", - "shapeMemberPath": "points", - "shapeFill": "rgb(150, 150, 150)", - "shapeStroke": "Black", - "shapeStrokeThickness": 1 - }, - { - "type": "GeographicPolylineSeries", - "name": "polylineSeries", - "shapeMemberPath": "points", - "shapeStroke": "rgba(147, 15, 180, 0.5)", - "thickness": 3 - }, - { - "type": "GeographicSymbolSeries", - "name": "symbolSeries", - "longitudeMemberPath": "longitude", - "latitudeMemberPath": "latitude", - "markerType": "Circle", - "markerOutline": "rgb(2, 102, 196)", - "markerBrush": "White" + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicShapeSeries", + "name": "polygonSeries", + "shapeMemberPath": "points", + "shapeFill": "rgb(150, 150, 150)", + "shapeStroke": "Black", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "shapeMemberPath": "points", + "shapeStroke": "rgba(147, 15, 180, 0.5)", + "thickness": 3 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "longitudeMemberPath": "longitude", + "latitudeMemberPath": "latitude", + "markerType": "Circle", + "markerOutline": "rgb(2, 102, 196)", + "markerBrush": "White" + } + ] } + }, + "onViewInit": [ + "MapMultipleShapesPolygons", + "MapMultipleShapesPolylines", + "MapMultipleShapesPoints", + "MapMultipleShapesLoad" ] } ``` -## シェープファイルの読み込み - -次に、ページのコンストラクターで、地理マップコンポーネントに表示する各シェープファイルの を追加します。 - - - -```ts -const sdsPolygons = new IgrShapeDataSource(); -sdsPolygons.importCompleted = this.onPolygonsLoaded; -sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; -sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; -sdsPolygons.dataBind(); -const sdsPolylines = new IgrShapeDataSource(); -sdsPolylines.importCompleted = this.onPolylinesLoaded; -sdsPolylines.shapefileSource = url + "/shapes/WorldConnections.shp"; -sdsPolylines.databaseSource = url + "/shapes/WorldConnections.dbf"; -sdsPolylines.dataBind(); -const sdsLocations = new IgrShapeDataSource(); -sdsLocations.importCompleted = this.onPointsLoaded; -sdsLocations.shapefileSource = url + "/Shapes/WorldCities.shp"; -sdsLocations.databaseSource = url + "/Shapes/WorldCities.dbf"; -sdsLocations.dataBind(); -``` - - - - - -```ts -const sdsPolygons = new IgxShapeDataSource(); -sdsPolygons.importCompleted = this.onPolygonsLoaded; -sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; -sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; -sdsPolygons.dataBind(); -const sdsPolylines = new IgxShapeDataSource(); -sdsPolylines.importCompleted = this.onPolylinesLoaded; -sdsPolylines.shapefileSource = url + "/shapes/WorldConnections.shp"; -sdsPolylines.databaseSource = url + "/shapes/WorldConnections.dbf"; -sdsPolylines.dataBind(); -const sdsLocations = new IgxShapeDataSource(); -sdsLocations.importCompleted = this.onPointsLoaded; -sdsLocations.shapefileSource = url + "/Shapes/WorldCities.shp"; -sdsLocations.databaseSource = url + "/Shapes/WorldCities.dbf"; -sdsLocations.dataBind(); -``` - - +## シリーズの作成 - +次に、後で異なるタイプのシェープ ファイルをロードする地理的シリーズでマップを作成します。 -```ts -const sdsPolygons = new IgcShapeDataSource(); -sdsPolygons.importCompleted = this.onPolygonsLoaded; -sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; -sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; -sdsPolygons.dataBind(); -const sdsPolylines = new IgcShapeDataSource(); -sdsPolylines.importCompleted = this.onPolylinesLoaded; -sdsPolylines.shapefileSource = url + "/shapes/WorldConnections.shp"; -sdsPolylines.databaseSource = url + "/shapes/WorldConnections.dbf"; -sdsPolylines.dataBind(); -const sdsLocations = new IgcShapeDataSource(); -sdsLocations.importCompleted = this.onPointsLoaded; -sdsLocations.shapefileSource = url + "/Shapes/WorldCities.shp"; -sdsLocations.databaseSource = url + "/Shapes/WorldCities.dbf"; -sdsLocations.dataBind(); +```json-snippet ref="shapes" source="/maps/geo-map/binding-multiple-shapes" ``` - - - - -```razor -public IgbShapeDataSource AsiaShape; -public IgbShapeDataSource EuropeShape; +## シェープファイルの読み込み -protected override void OnInitialized() -{ - this.AsiaShape = new IgbShapeDataSource() - { - ShapefileSource = "https://static.infragistics.com/xplatform/shapes/world_region_asia.shp", - DatabaseSource = "https://static.infragistics.com/xplatform/shapes/world_region_asia.dbf" - }; +次に、ページのコンストラクターで、地理マップコンポーネントに表示する各シェープファイルの を追加します。 - this.EuropeShape = new IgbShapeDataSource() - { - ShapefileSource = "https://static.infragistics.com/xplatform/shapes/world_region_europe.shp", - DatabaseSource = "https://static.infragistics.com/xplatform/shapes/world_region_europe.dbf" - }; -} +```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesLoad" ``` - - - - - ## ポリゴンの処理 世界の国々の に読み込まれた形状データを処理し、 オブジェクトに割り当てます。 + -```ts -import { IgrGeographicShapeSeries } from 'igniteui-react-maps'; -import { IgrShapeDataSource } from 'igniteui-react-core'; -// ... -public onPolygonsLoaded(sds: IgrShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }; - - const shapeSeries = this.geoMap.series[0] as IgrGeographicShapeSeries; - shapeSeries.dataSource = geoPolygons; -} -``` - -```ts -import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -// ... -public onPolygonsLoaded(sds: IgxShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }; - - const shapeSeries = this.geoMap.series[0] as IgxGeographicShapeSeries; - shapeSeries.dataSource = geoPolygons; -} -``` - -```ts -import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -// ... -public onPolygonsLoaded(sds: IgcShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }; - let polygonSeries = (document.getElementById("polygonSeries") as IgcGeographicShapeSeriesComponent); - polygonSeries.dataSource = geoPolygons; - polygonSeries.renderSeries(false); -} + +```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolygons" ``` + + ## ポリラインの処理 に読み込まれた形状データを処理し、主要都市間の通信ルートを使用して、 オブジェクトに割り当てます。 + -```ts -import { IgrGeographicPolylineSeries } from 'igniteui-react-maps'; -import { IgrShapeDataSource } from 'igniteui-react-core'; -// ... -public onPolylinesLoaded(sds: IgrShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); - } - const lineSeries = this.geoMap.series[1] as IgrGeographicPolylineSeries; - lineSeries.dataSource = geoPolylines; -} -``` - -```ts -import { IgxGeographicPolylineSeriesComponent } from 'igniteui-angular-maps'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -// ... -public onPolylinesLoaded(sds: IgxShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); - } - const lineSeries = this.geoMap.series[1] as IgxGeographicPolylineSeries; - lineSeries.dataSource = geoPolylines; -} -``` - -```ts -import { IgcGeographicPolylineSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -// ... -public onPolylinesLoaded(sds: IgcShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); - } - - let lineSeries = (document.getElementById("lineSeries") as IgcGeographicPolylineSeriesComponent); - lineSeries.dataSource = geoPolylines; - lineSeries.renderSeries(false); -} + +```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolylines" ``` + + ## ポイントの処理 に読み込まれた世界各国の形状データを処理し、 オブジェクトに割り当てます。 + -```ts -import { IgrGeographicSymbolSeries } from 'igniteui-react-maps'; -import { MarkerType } from 'igniteui-react-charts'; -// ... -public onPointsLoaded(sds: IgrShapeDataSource, e: any) { - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - const symbolSeries = this.geoMap.series[2] as IgrGeographicSymbolSeries; - symbolSeries.dataSource = geoLocations; -} -``` - -```ts -import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps'; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -// ... -public onPointsLoaded(sds: IgxShapeDataSource, e: any) { - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - const symbolSeries = this.geoMap.series[2] as IgxGeographicSymbolSeries; - symbolSeries.dataSource = geoLocations; -} -``` - -```ts -import { IgcGeographicSymbolSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -// ... -public onPointsLoaded(sds: IgcShapeDataSource, e: any) { - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - let symbolSeries = (document.getElementById("symbolSeries") as IgcGeographicSymbolSeriesComponent); - symbolSeries.dataSource = geoLocations; - symbolSeries.renderSeries(false); -} + +```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPoints" ``` - - - ## マップ背景 また形状ファイルがアプリケーションのために十分な地理的文脈 (国の形状など) を提供した際に、地図背景コンテンツで地理的画像を非表示にしたい場合があります。 diff --git a/docs/xplat/src/content/jp/components/geo-map.mdx b/docs/xplat/src/content/jp/components/geo-map.mdx index bd4d0b568f..6873cad8dd 100644 --- a/docs/xplat/src/content/jp/components/geo-map.mdx +++ b/docs/xplat/src/content/jp/components/geo-map.mdx @@ -36,17 +36,17 @@ Map は、マウス、キーボード、またはコードビハインドを使 [Microsoft Bing ブログ](https://blogs.bing.com/maps/2025-06/Bing-Maps-for-Enterprise-Basic-Account-shutdown-June-30,2025) - ## 依存関係 地理マップコンポーネントを使用するには、はじめにこれらのパッケージをインストールする必要があります。 + + ```cmd npm install --save {PackageCore} npm install --save {PackageCharts} npm install --save {PackageMaps} ``` - ## モジュールの要件 diff --git a/docs/xplat/src/content/jp/components/grid-lite/column-configuration.mdx b/docs/xplat/src/content/jp/components/grid-lite/column-configuration.mdx index 2bb342a497..3d3e21b71d 100644 --- a/docs/xplat/src/content/jp/components/grid-lite/column-configuration.mdx +++ b/docs/xplat/src/content/jp/components/grid-lite/column-configuration.mdx @@ -56,9 +56,10 @@ return ( - 列は、グリッド内の `` 子要素を使用して宣言的に定義されます。 プロパティは、列識別子として機能するため、列で唯一の必須プロパティです。また、グリッド行内の関連データをマッピングしてレンダリングするために使用されるプロパティでもあります。 + + ```razor ``` + + ## データ ソースに基づく構成 グリッドは、`AutoGenerate` が true に設定されている場合、提供されたデータ ソースに基づいて列の構成を推論することをサポートします。データ内のレコードに基づいて、適切な および プロパティを推論しようとします。 + + ```razor @code { @@ -95,23 +100,21 @@ return ( } } ``` - - - ## データ ソースに基づく構成 グリッドは、`autoGenerate` が true に設定されている場合、提供されたデータ ソースに基づいて列の構成を推論することをサポートします。データ内のレコードに基づいて、適切な `field` および `dataType` を推論しようとします。 + + ```typescript const data: Record[] = [ { entryId: "1234", source: "https://example.com", ts: 1373521917579 }, ... ]; ``` - diff --git a/docs/xplat/src/content/jp/components/grid-lite/overview.mdx b/docs/xplat/src/content/jp/components/grid-lite/overview.mdx index 949ca2c730..85b44b4420 100644 --- a/docs/xplat/src/content/jp/components/grid-lite/overview.mdx +++ b/docs/xplat/src/content/jp/components/grid-lite/overview.mdx @@ -40,32 +40,42 @@ Grid Lite は無料のオープン ソースの JavaScript データ グリッ ### インストール {GridLiteTitle} をインストールするには、プロジェクトのルート フォルダー (`package.json` がある場所) に移動し、npm を使用して次のコマンドを実行します。 + + ```cmd npm install igniteui-grid-lite --save ``` + + または、yarn を使用します。 + + ```cmd yarn add igniteui-grid-lite ``` - ### インストール {GridLiteTitle} をインストールするには、プロジェクトのルート フォルダー (`package.json` がある場所) に移動し、npm を使用して次のコマンドを実行します。 + + ```cmd npm install igniteui-react --save ``` + + または、yarn を使用します。 + + ```cmd yarn add igniteui-react ``` - ### {Platform} コードでの Grid Lite の使用 @@ -126,41 +136,58 @@ return ( - ### IgniteUI.Blazor.GridLite のインストール Visual Studio で、**[ツール]** → **[NuGet パッケージ マネージャー]** → **[ソリューションの NuGet パッケージの管理]** を選択して、NuGet パッケージ マネージャーを開きます。**IgniteUI.Blazor.GridLite** NuGet パッケージを検索してインストールします。 または、パッケージ マネージャー コンソール経由でインストールします。 + + ```cmd Install-Package IgniteUI.Blazor.GridLite ``` + + または、.NET CLI 経由でインストールします。 + + ```cmd dotnet add package IgniteUI.Blazor.GridLite ``` + + ### Grid Lite の使用 1 - **IgniteUI.Blazor.Controls** 名前空間を **_Imports.razor** ファイルに追加します。 + + ```razor @using IgniteUI.Blazor.Controls ``` + + 2 - プロジェクトの種類に応じて、適切な場所にスタイル シートを追加します。 + + ```razor ``` + + 3 - Grid Lite コンポーネントを razor ページに追加します。 + + ```razor @@ -174,7 +201,6 @@ dotnet add package IgniteUI.Blazor.GridLite }; } ``` - ## Grid Lite の動作 diff --git a/docs/xplat/src/content/jp/components/grids/_shared/advanced-filtering.mdx b/docs/xplat/src/content/jp/components/grids/_shared/advanced-filtering.mdx index d578264f13..4d64f38d0c 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/advanced-filtering.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/advanced-filtering.mdx @@ -265,24 +265,34 @@ const filteringTree: IgrFilteringExpressionsTree = { ## スタイル設定 高度なフィルタリング ダイアログのスタイル設定は、すべてのテーマ関数とコンポーネント mixins が存在する **index** ファイルをインポートする必要があります。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Excel スタイルのフィルタリング ダイアログは、**filtering-row-background** パラメーターを使用して、グリッドのテーマから背景色を取得します。背景を変更するには、カスタム テーマを作成する必要があります。 + + ```scss $custom-grid: grid-theme( $filtering-row-background: #FFCD0F ); ``` + + ボタン、チップ、ドロップダウン、入力など、高度なフィルタリング ダイアログ内に他のコンポーネントがあるため、それぞれに個別のテーマを作成する必要があります。 + + ```scss $custom-button: button-theme( $disabled-color: gray, @@ -309,11 +319,15 @@ $custom-drop-down: drop-down-theme( ); ``` + + この例では、リストされたコンポーネントのパラメーターの一部のみを変更しましたが、 テーマは、それぞれのスタイルを制御するためのより多くのパラメーターを提供します。 最後のステップは、それぞれのテーマを持つコンポーネント mixin を**含める**ことです。また、高度なフィルタリング ダイアログ内の他の要素のスタイルを追加します。 + + ```scss @include grid($custom-grid); igx-advanced-filtering-dialog { @@ -350,7 +364,9 @@ igx-advanced-filtering-dialog { } } ``` + + カスタム テーマが高度なフィルタリング ダイアログにネストされたコンポーネントのみに影響するように、コンポーネントのほとんどの mixins を `igx-advanced-filtering-dialog` 内にスコープします。そうでない場合、アプリケーション内の他のボタン、チップ、入力、ドロップダウンも影響を受けます。 @@ -358,7 +374,9 @@ igx-advanced-filtering-dialog { コンポーネントが [Emulated](../themes/styles.mdx#表示のカプセル化) ViewEncapsulation を使用している場合、`::ng-deep` を使用してこのカプセル化に`解除する`必要があります。 + + ```scss :host { ::ng-deep { @@ -399,21 +417,29 @@ igx-advanced-filtering-dialog { } } ``` + + ### カラー パレットの定義 上記のように色の値をハードコーディングする代わりに、 および 関数を使用することによって色に関してより高い柔軟性を持つことができます。 `igx-palette` は渡された一次色と二次色に基づいてカラーパレットを生成します。 + + ```scss $yellow-color: #FFCD0F; $black-color: #292826; $dark-palette: palette($primary: $yellow-color, $secondary: $black-color); ``` + + また を使用してパレットから簡単に色を取り出すことができます。 + + ```scss $custom-grid: grid-theme( $filtering-row-background: color($dark-palette, "secondary", 400) @@ -444,7 +470,9 @@ $custom-drop-down: drop-down-theme( ); ``` + + `igx-color` および `igx-palette` は、色を生成および取得するための重要な機能です。使い方の詳細については[パレット](../themes/sass/palettes.mdx)のトピックを参照してください。 @@ -454,7 +482,9 @@ $custom-drop-down: drop-down-theme( テーマ エンジンを使用して[**スキーマ**](../themes/sass/schemas.mdx)の利点を活用でき、堅牢で柔軟な構造を構築できます。**スキーマ**はテーマを使用する方法です。 すべてのコンポーネント (この場合は および ) に提供されている 2 つの定義済みスキーマのいずれかを拡張します。 + + ```scss $grid-dark-palette: palette($primary: #11bd7b, $secondary: #e32057, $info: $black-color); @@ -511,9 +541,13 @@ $custom-drop-down-schema: extend($_light-drop-down, ) ); ``` + + カスタム スキーマを適用するには、グローバル ( または ) の 1 つを**拡張する**必要があります。これは基本的にカスタム スキーマでコンポーネントを指し示し、その後それぞれのコンポーネント テーマに追加するものです。 + + ```scss $custom-light-schema: extend($light-schema,( igx-grid: $custom-grid-schema, @@ -554,15 +588,14 @@ $custom-drop-down: drop-down-theme( $schema: $custom-light-schema ); ``` + + 上記と同じ方法でテーマを含める必要があることに注意してください。 ### デモ - - - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/cell-editing.mdx b/docs/xplat/src/content/jp/components/grids/_shared/cell-editing.mdx index 99ab0a03ee..a9f93ac776 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/cell-editing.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/cell-editing.mdx @@ -1410,31 +1410,41 @@ In order to use the [Ignite UI Theming Library](../themes/styles.mdx), we must f ### Importing Style Library + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Now we can make use of all of the functions exposed by the {ProductName} theme engine. ### Defining a Palette After we've properly imported the index file, we create a custom palette that we can use. Let's define two colors that we like and use them to build a palette with [igx-palette](../themes/palettes.mdx): + + ```scss $white: #fff; $blue: #4567bb; $color-palette: palette($primary: $white, $secondary: $blue); ``` + + ### Defining Themes We can now define the theme using our palette. The cells are styled by the , so we can use that to generate a theme for our : + + ```scss $custom-grid-theme: grid-theme( $cell-editing-background: $blue, @@ -1443,15 +1453,21 @@ $custom-grid-theme: grid-theme( $edit-mode-color: color($color-palette, "secondary", 200) ); ``` + + ### Applying the Theme The easiest way to apply our theme is with a `sass` `@include` statement in the global styles file: + + ```scss @include grid($custom-grid-theme); ``` + + This way, the theme will apply to **all** grids in our application. If we wish to apply this custom styling only to a specific component, we need to scope the theme. ### Scoped Component Theme @@ -1467,7 +1483,9 @@ This way, due to {Platform}'s [ViewEncapsulation](https://angular.io/api/core/Co We wrap the statement inside of a `:host` selector to prevent our styles from affecting elements outside of our component: + + ```scss :host { ::ng-deep { @@ -1476,13 +1494,14 @@ This way, due to {Platform}'s [ViewEncapsulation](https://angular.io/api/core/Co } } ``` + + ### Styling Demo In addition to the steps above, we can also style the controls that are used for the cells' editing templates: [igx-input-group](../input-group.mdx#styling), [igx-datepicker](../date-picker.mdx#styling) & [igx-checkbox](../checkbox.mdx#styling) - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/cell-merging.mdx b/docs/xplat/src/content/jp/components/grids/_shared/cell-merging.mdx index 1a4d8dd7d5..f30acced1f 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/cell-merging.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/cell-merging.mdx @@ -305,7 +305,9 @@ constructor() { } ``` + + ### デモ diff --git a/docs/xplat/src/content/jp/components/grids/_shared/cell-selection.mdx b/docs/xplat/src/content/jp/components/grids/_shared/cell-selection.mdx index e0fd686a60..d589acffa2 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/cell-selection.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/cell-selection.mdx @@ -399,28 +399,38 @@ Then set the related CSS properties for that class: ### テーマのインポート 選択のスタイル設定を始めるには、すべてのテーマ関数とコンポーネントミックスインが存在する `index` ファイルをインポートする必要があります。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + ### カラーの定義 完了後、 関数を使用できます。これらの関数を使用して、選択範囲に使用する色を定義します。 + + ```scss $text-color:contrast-color($default-palette, 'primary', 900); $background-color: color($default-palette, "primary", 900); $border-yellow: #f2c43c; ``` + + ### カスタム テーマの作成 次に、`text-color`、`background-color`、`border-yellow` 変数をそれぞれ `$cell-selected-text-color`、`$cell-selected-background`、`$cell-active-border-color` として渡して、 を拡張する新しいテーマを作成します。 + + ```scss $custom-grid-theme: grid-theme( $cell-selected-text-color: $text-color, @@ -428,16 +438,22 @@ $custom-grid-theme: grid-theme( $cell-selected-background: $background-color ); ``` + + ### テーマの適用 次にコンポーネントのスタイルに mixin を含め (アプリ スタイルにすることも可能)、@@igSelector がデフォルトのテーマの代わりに新しく作成されたテーマを使用するようになります。 + + ```scss @include grid($custom-grid-theme); ``` + - + + コンポーネントが [Emulated ViewEncapsulation](../themes/styles.mdx#表示のカプセル化) を使用している場合、`::ng-deep` を使用してこのカプセル化を解除する必要があります。 アプリケーション内に存在する可能性のある他のグリッドに影響を与えないように、スタイルを `:host` セレクターの下で範囲指定します。 @@ -461,7 +477,6 @@ $custom-grid-theme: grid-theme( サンプルは、**テーマの変更**で選択したグローバル テーマの影響を受けません。 - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/_shared/collapsible-column-groups.mdx b/docs/xplat/src/content/jp/components/grids/_shared/collapsible-column-groups.mdx index 1c84541619..31551d7802 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/collapsible-column-groups.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/collapsible-column-groups.mdx @@ -267,7 +267,9 @@ const collapsibleIndicatorTemplate = (ctx: IgrColumnTemplateContext) => { ### プロパティの使用 プロパティを使用して、カスタムの展開/折りたたみテンプレートを定義し、それを各折りたたみ可能な列グループに提供できます。以下のマークアップを確認してください。 + + ```html {{column.expanded ? 'remove' : 'add'}} @@ -281,11 +283,15 @@ const collapsibleIndicatorTemplate = (ctx: IgrColumnTemplateContext) => { ``` + + ### igxCollapsibleIndicator ディレクティブの使用 この動作を実現する別の方法は、以下の例に示すように igxCollapsibleIndicator ディレクティブを使用することです。 + + ```html @@ -299,7 +305,6 @@ const collapsibleIndicatorTemplate = (ctx: IgrColumnTemplateContext) => { ``` - > **注** diff --git a/docs/xplat/src/content/jp/components/grids/_shared/column-hiding.mdx b/docs/xplat/src/content/jp/components/grids/_shared/column-hiding.mdx index c8e0ecefed..a20fbefd1a 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/column-hiding.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/column-hiding.mdx @@ -619,7 +619,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## カスタム列の非表示 UI を手動で定義する場合は、`ColumnHidingDirective` をページの任意の場所に追加してその目的がわかるようにします。ただし、最初に、`IgxColumnActionsModule` をインポートする必要があります。 + + ```typescript // app.module.ts @@ -634,9 +636,13 @@ import { }) export class AppModule {} ``` + + 次に を作成します。アプリケーションでグリッドの隣に配置します。これはツールバーの列非表示 UI と異なります。ツールバーの場合、コンポーネントはドロップダウンに含まれます。 の `Columns` プロパティをグリッドの列に設定し、更にカスタム スタイルも追加します。 + + ```html
@@ -683,11 +689,15 @@ export class AppModule {} margin-left: 30px; } ``` + + ### タイトルおよびフィルター プロンプトの追加 列非表示コンポーネント機能を拡張するために および `FilterColumnsPrompt` プロパティを設定します。 は一番上に表示され、`FilterColumnsPrompt` は列非表示 UI のフィルター入力に表示されるプロンプト テキストです。 + + ```html
``` +
- + ### 列の表示順序オプションの追加 列非表示 UI で列の表示順序を選択する機能も追加します。このため、`ColumnDisplayOrder` プロパティを使用します。列挙型のプロパティで、以下のオプションがあります。 @@ -705,7 +716,9 @@ export class AppModule {} - **DisplayOrder** (列を {ComponentTitle} で表示される順序によって並べ替え) このオプションにラジオ ボタンを追加します。[**IgxRadio**](../radio-button.mdx) モジュールを追加します。 + + ```typescript import { IgxRadioModule @@ -716,9 +729,13 @@ import { }) export class AppModule {} ``` + + 両方のラジオ ボタンの `Checked` プロパティを異なる条件に個々にバインドして、click イベントを処理します。 + + ```html
@@ -733,7 +750,6 @@ export class AppModule {}
``` -
### 列の非表示の無効化 @@ -878,46 +894,64 @@ export class AppModule {} ## スタイル設定 列操作コンポーネントのスタイル設定を開始するには、すべてのテーマ関数とコンポーネント mixins が存在するインデックス ファイルをインポートする必要があります。 + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + 最も簡単なアプローチを使用して、`column-actions-theme` を拡張し、`$title-color` および `$background-color` パラメーターを受け取る新しいテーマを作成します。 + + ```scss $custom-column-actions-theme: column-actions-theme( $background-color: steelblue, $title-color: gold ); ``` + + ご覧のように `column-actions-theme` は列操作コンテナーのカラーのみを制御しますが、ボタン、チェックボックス、内部の入力グループには影響しません。ボタンのスタイルも設定したい場合、新しいボタン テーマを作成します。 + + ```scss $custom-button: button-theme($flat-text-color: gold, $disabled-color: black); ``` + + この例では、フラット ボタンのテキスト カラーとボタンの無効なカラーのみを変更しましたが、`button-theme` は、ボタンのスタイルを制御するためのより多くのパラメーターを提供します。 最後にそれぞれのテーマを持つコンポーネント ミックスインを**含める**ことです。 + + ```scss @include column-actions($custom-column-actions-theme); .igx-column-actions { @include button($custom-button); } ``` + + > **Note** >**igx-button** mixin を `.igx-column-actions` 内にとどめ、列を非表示にするボタンのみがスタイル設定されるようにします。そうでない場合は、グリッド内の他のボタンも影響を受けます。 > **Note** >コンポーネントが `Emulated` ViewEncapsulation を使用している場合、`::ng-deep` を使用してこのカプセル化を解除する必要があります。 + + ```scss :host { ::ng-deep { @@ -928,22 +962,30 @@ $custom-button: button-theme($flat-text-color: gold, $disabled-color: black); } } ``` + + ### カラー パレットの定義 上記のように色の値をハードコーディングする代わりに、`igx-palette` および `igx-color` 関数を使用することによって色に関してより高い柔軟性を持つことができます。 `igx-palette` は渡された一次色と二次色に基づいてカラーパレットを生成します。 + + ```scss $yellow-color: gold; $blue-color: steelblue; $custom-palette: palette($primary: $blue-color, $secondary: $yellow-color); ``` + + また `igx-color` を使用してパレットから簡単に色を取り出すことができます。 + + ```scss $custom-column-actions-theme: column-actions-theme( $palette: $custom-palette, @@ -957,14 +999,18 @@ $custom-button: button-theme( $disabled-color: black ); ``` + + > **Note** >`igx-color` および `igx-palette` は、色を生成および取得するための重要な機能です。使い方の詳細については[パレット](themes/sass/palettes.mdx)のトピックを参照してください。 ### スキーマの使用 テーマ エンジンを使用して [**スキーマ**](themes/sass/schemas.mdx)の利点を活用でき、堅牢で柔軟な構造を構築できます。**スキーマ**はテーマを使用する方法です。 + + ```scss // Extending the dark column actions schema $custom-column-actions-schema: extend($_dark-column-actions, @@ -989,9 +1035,13 @@ $custom-button-schema: extend($_dark-button, ) ); ``` + + カスタム スキーマを適用するには、グローバル (`light` または `dark`) の 1 つを**拡張する**必要があります。これは基本的にカスタム スキーマでコンポーネントを指し示し、その後それぞれのコンポーネント テーマに追加するものです。 + + ```scss // Extending the global dark-schema $custom-dark-schema: extend($dark-schema,( @@ -1011,13 +1061,14 @@ $custom-button: button-theme( $schema: $custom-dark-schema ); ``` + + 上記と同じ方法でテーマを含める必要があることに注意してください。 ### デモ - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/column-moving.mdx b/docs/xplat/src/content/jp/components/grids/_shared/column-moving.mdx index c02fda04e8..1804522a0d 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/column-moving.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/column-moving.mdx @@ -294,16 +294,22 @@ const onColumnMovingEnd = (event: IgrColumnMovingEndEventArgs) => { ## スタイル設定 列移動ヘッダーのスタイル設定は、すべてのテーマ関数とコンポーネント mixins のある `index` ファイルをインポートする必要があります。 + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + 最も簡単な方法は、 を拡張する新しいテーマを作成し、`$ghost-header-background`、`$ghost-header-text-color`、および `$ghost-header-icon-color` パラメーターを受け取る方法です。 + + ```scss // Define dark theme for the column moving $dark-grid-column-moving-theme: grid-theme( @@ -312,17 +318,25 @@ $dark-grid-column-moving-theme: grid-theme( $ghost-header-icon-color: #f4bb5c ); ``` + + 最後のステップは、それぞれのテーマを持つコンポーネント mixin を**含める**ことです。 + + ```scss @include grid($dark-grid-column-moving-theme); ``` + + コンポーネントの [**View Encapsulation**](/components/themes/sass/component-themes.html#表示のカプセル化) ストラテジに基づいて、`::ng-deep` を使用してこのカプセル化を`解除する`必要があります。 + + ```scss :host { ::ng-deep { @@ -330,22 +344,30 @@ $dark-grid-column-moving-theme: grid-theme( } } ``` + + ### カラー パレットの定義 上記のように色の値をハードコーディングする代わりに、 および 関数を使用することによって色に関してより高い柔軟性を持つことができます。 **igx-palette** は渡された一次色と二次色に基づいてカラーパレットを生成します。 + + ```scss $yellow-color: #F4D45C; $black-color: #575757; $dark-palette: palette($primary: $yellow-color, $secondary: $black-color); ``` + + そして を使えばパレットから簡単に色を取り出すことができます。 + + ```scss $dark-grid-column-moving-theme: grid-theme( $palette: $dark-palette, @@ -354,8 +376,9 @@ $dark-grid-column-moving-theme: grid-theme( $ghost-header-icon-color: color($dark-palette, "primary", 500) ); ``` + - + Color および Palette は、カラーを生成および取得するための重要な機能です。使い方の詳細については[パレット](/components/themes/palettes.html)のトピックを参照してください。 @@ -365,7 +388,9 @@ Color および Palette は、カラーを生成および取得するための テーマ エンジンを使用して[スキーマ](/components/themes/sass/schemas.html)の利点を活用でき、堅牢で柔軟な構造を構築できます。**スキーマ**はテーマを使用する方法です。 すべてのコンポーネントに提供されている 2 つの定義済みスキーマのいずれかを拡張します。この場合は です。 + + ```scss // Extending the dark grid schema $dark-grid-column-moving-schema: extend($_light-grid, @@ -382,9 +407,13 @@ $dark-grid-column-moving-schema: extend($_light-grid, ) ); ``` + + カスタム スキーマを適用するには、グローバル ( または ) の 1 つを**拡張する**必要があります。これは基本的にカスタム スキーマでコンポーネントを指し示し、その後それぞれのコンポーネント テーマに追加するものです。 + + ```scss // Extending the global dark-schema $custom-light-schema: extend($light-schema,( @@ -397,15 +426,14 @@ $dark-grid-column-moving-theme: grid-theme( $schema: $custom-light-schema ); ``` + + 上記と同じ方法でテーマを含める必要があることに注意してください。 ### デモ - - - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/column-pinning.mdx b/docs/xplat/src/content/jp/components/grids/_shared/column-pinning.mdx index 7d255f33ae..6c29fd2a61 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/column-pinning.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/column-pinning.mdx @@ -829,17 +829,23 @@ In the below steps, we are going through the steps of customizing the grid's Pin ### Importing Global Theme To begin the customization of the Pinning feature, you need to import the `index` file, where all styling functions and mixins are located. + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + ### Defining Custom Theme Next, create a new theme, that extends the and accepts the parameters, required to customize the Pinning feature as desired. + + ```scss $custom-theme: grid-theme( /* Pinning properties that affect styling */ @@ -850,7 +856,9 @@ $custom-theme: grid-theme( /* add other features properties here... */ ); ``` + + ### Defining a Custom Color Palette In the approach, that was described above, the color values were hardcoded. Alternatively, you can achieve greater flexibility, using the and functions. `igx-palette` generates a color palette, based on provided primary and secondary colors. @@ -863,6 +871,9 @@ $custom-palette: palette( $primary: $primary-color, $secondary: $secondary-color ); + + + ``` After a custom palette has been generated, the `igx-color` function can be used to obtain different varieties of the primary and the secondary colors. @@ -876,13 +887,17 @@ $custom-theme: grid-theme( $cell-active-border-color: color($custom-palette, "secondary", 500) ); ``` + + The `$custom-theme` contains the same properties as the one in the previous section, but this time the colors are not hardcoded. Instead, the custom `igx-palette` was used and the colors were obtained through its primary and secondary colors, with a given color variant. ### Defining Custom Schemas You can go even further and build flexible structure that has all the benefits of a [**schema**](../themes/sass/schemas.mdx). The **schema** is the recipe of a theme. Extend one of the two predefined schemas, that are provided for every component. In our case, we would use `$_light_grid`. + + ```scss $custom-grid-schema: extend($_light-grid,( pinned-border-width: 5px, @@ -891,9 +906,13 @@ $custom-grid-schema: extend($_light-grid,( cell-active-border-color: color: ("secondary", 500) )); ``` + + In order for the custom schema to be applied, either `light`, or `dark` globals has to be extended. The whole process is actually supplying a component with a custom schema and adding it to the respective component theme afterwards. + + ```scss $my-custom-schema: extend($light-schema, ( igx-grid: $custom-grid-schema @@ -903,14 +922,20 @@ $custom-theme: grid-theme( $schema: $my-custom-schema ); ``` + + ### Applying the Custom Theme The easiest way to apply your theme is with a `sass` `@include` statement in the global styles file: + + ```scss @include grid($custom-theme); ``` + + ### Scoped Component Theme In order for the custom theme to affect only specific component, you can move all of the styles you just defined from the global styles file to the custom component's style file (including the import of the `index` file). @@ -923,7 +948,9 @@ This way, due to Angular's [ViewEncapsulation](https://angular.io/api/core/Compo Wrap the statement inside of a `:host` selector to prevent your styles from affecting elements outside of our component: + + ```scss :host { ::ng-deep { @@ -931,7 +958,9 @@ This way, due to Angular's [ViewEncapsulation](https://angular.io/api/core/Compo } } ``` + + ### Demo diff --git a/docs/xplat/src/content/jp/components/grids/_shared/column-resizing.mdx b/docs/xplat/src/content/jp/components/grids/_shared/column-resizing.mdx index 1b5cb6b579..912504369e 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/column-resizing.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/column-resizing.mdx @@ -764,26 +764,36 @@ column.autosize(); ## スタイル設定 列 のサイズ変更行のスタイル設定は、すべてのテーマ関数とコンポーネント ミックスインが存在するインデックス ファイルをインポートする必要があります。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + 最も簡単な方法は、 を拡張し、`$resize-line-color` パラメーター以外にも多くのパラメータを受け入れます。 + + ```scss $custom-grid-theme: grid-theme( $resize-line-color: #0288D1 ); ``` + - + + コンポーネントが [Emulated](../themes/styles.mdx#表示のカプセル化) ViewEncapsulation を使用している場合、`::ng-deep` を使用してこのカプセル化を解除する必要があります。 + + ```scss :host { ::ng-deep { @@ -791,28 +801,38 @@ $custom-grid-theme: grid-theme( } } ``` + + ### カラー パレットの定義 カラーの値をハードコーディングする代わりに、 および 関数を使用することによってカラーに関してより高い柔軟性を持つことができます。 `igx-palette` は指定した一次色と二次色に基づいてカラーパレットを生成します。 + + ```scss $primary-color: #0288D1; $secondary-color: #BDBDBD; $custom-theme-palette: palette($primary: $primary-color, $secondary: $secondary-color); ``` + + また を使用してパレットから簡単にカラーを取り出すことができます。 + + ```scss $custom-grid-theme: grid-theme( $palette: $custom-theme-palette, $resize-line-color: color($custom-theme-palette, 'secondary', 500) ); ``` + + `igx-color` および `igx-palette` は、色を生成および取得するための重要な機能です。使い方の詳細については[パレット](../themes/sass/palettes.mdx)のトピックを参照してください。 @@ -821,7 +841,9 @@ $custom-grid-theme: grid-theme( テーマ エンジンを使用して[**スキーマ**](../themes/sass/schemas.mdx)の利点を活用でき、堅牢で柔軟な構造を構築できます。**スキーマ**はテーマを使用する方法です。 すべてのコンポーネントに提供されている定義済みのスキーマを拡張します。この場合は、 スキーマです。 + + ```scss // Extending the light grid schema $light-grid-schema: extend($_light-grid, @@ -838,9 +860,13 @@ $light-grid-schema: extend($_light-grid, ) ); ``` + + カスタム スキーマを適用するには、グローバル ( または ) の 1 つを**拡張する**必要があります。これは基本的にカスタム スキーマでコンポーネントを指し示し、その後それぞれのコンポーネント テーマに追加するものです。 + + ```scss // Extending the global light-schema $custom-light-grid-schema: extend($light-schema,( @@ -853,7 +879,9 @@ $custom-grid-theme: grid-theme( $schema: $custom-light-grid-schema ); ``` + + 上記と同じ方法でテーマを含める必要があることに注意してください。 ### デモ @@ -864,7 +892,6 @@ $custom-grid-theme: grid-theme( サンプルは、**テーマの変更**で選択したグローバル テーマの影響を受けません。 - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/column-selection.mdx b/docs/xplat/src/content/jp/components/grids/_shared/column-selection.mdx index bfd7fc05ec..81773baba6 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/column-selection.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/column-selection.mdx @@ -128,14 +128,18 @@ API 操作の詳細については、[API リファレンス](#api-リファレ ## スタイル設定 スタイル設定オプションに移動する前に、core ジュールとすべてのコンポーネント mixin をインポートする必要があります。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + @@ -147,6 +151,9 @@ API 操作の詳細については、[API リファレンス](#api-リファレ **選択**と**ホバー**のスタイル設定を変更します。
+
+ + ```scss $custom-grid-theme: grid-theme( $row-selected-background: #011627, @@ -158,10 +165,15 @@ $custom-grid-theme: grid-theme( $expand-icon-hover-color: #B64B80 ); ``` + + + + + ```scss $custom-grid-theme: grid-theme( $row-selected-background: #011627, @@ -171,25 +183,33 @@ $custom-grid-theme: grid-theme( $header-selected-background: #011627 ); ``` + + 最も簡単な方法は、カスタム **テーマ**を定義する方法です。 ### CSS 変数の使用 最後にカスタム `{ComponentSelector}` テーマを含めます。 + + ```scss @include css-vars($custom-grid-theme) ``` + + ### 基本テーマのオーバーライド Internet Explorer 11 のコンポーネントをスタイル設定するには、CSS 変数をサポートしていないため、別のアプローチが必要です。 コンポーネントが [Emulated](../themes/styles.mdx#表示のカプセル化) ViewEncapsulation を使用している場合、`::ng-deep` を使用してこのカプセル化を`解除する`必要があります。カスタム テーマが他のコンポーネントに影響しないようにするには、`::ng-deep` の前に `:host` セレクターを含めるようにしてください。 + + ```scss :host { ::ng-deep { @@ -197,13 +217,12 @@ Internet Explorer 11 のコンポーネントをスタイル設定するには } } ``` + + ### デモ - - - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/_shared/excel-style-filtering.mdx b/docs/xplat/src/content/jp/components/grids/_shared/excel-style-filtering.mdx index 5d1d088ab6..89ff883a8c 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/excel-style-filtering.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/excel-style-filtering.mdx @@ -738,24 +738,34 @@ Excel スタイル フィルタリング コンポーネントを設定するに ## デモ To get started with styling the Excel Style Filtering dialog, we need to import the `index` file, where all the theme functions and component mixins live: + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + The excel style filtering dialog takes its background color from the grid's theme, using the `filtering-row-background` parameter. In order to change the background we need to create a custom theme: + + ```scss $custom-grid: grid-theme( $filtering-row-background: #FFCD0F ); ``` + + We obviously have a lot more components inside the excel like filtering dialog, such as buttons, checkboxes, a list and even a drop-down. In order to style them, we need to create a separate theme for each one: + + ```scss $dark-button: button-theme( $background: #FFCD0F, @@ -789,11 +799,15 @@ $custom-drop-down: drop-down-theme( $hover-item-text-color: #FFCD0F ); ``` + + In this example we only changed some of the parameters for the listed components, but the , , , , themes provide way more parameters to control their respective styling. The last step is to **include** the component mixins, each with its respective theme. We will also set the color property for the input's placeholder. + + ```scss @include drop-down($custom-drop-down); @include grid($custom-grid); @@ -807,7 +821,9 @@ The last step is to **include** the component mixins, each with its respective t } } ``` + + We scope most of the components' mixins within `.igx-excel-filter` and `.igx-excel-filter__secondary`, so that these custom themes will affect only components nested in the excel style filtering dialog and all of its sub-dialogs. Otherwise other buttons, checkboxes, input-groups and lists would be affected too. @@ -815,7 +831,9 @@ We scope most of the components' mixins within `.igx-excel-filter` and `.igx-exc If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -833,28 +851,38 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) } } ``` + + ### スタイル設定 ページネータのスタイル設定を始めるには、すべてのテーマ関数とコンポーネントミックスインが存在する `index` ファイルをインポートする必要があります。 Excel スタイルのフィルタリング ダイアログは、`filtering-row-background` パラメーターを使用して、グリッドのテーマから背景色を取得します。背景を変更するには、カスタム テーマを作成する必要があります。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + ボタン、チェックボックス、リスト、さらにはドロップダウンなど、フィルタリング ダイアログのような Excel 内には明らかに多くのコンポーネントがあります。スタイルを設定するには、それぞれに個別のテーマを作成する必要があります。 + + ```scss $custom-grid: grid-theme( $filtering-row-background: #FFCD0F ); ``` + + この例では、リストされたコンポーネントのパラメーターの一部のみを変更しましたが、、および テーマは、それぞれのスタイルを制御するためのより多くのパラメーターを提供します。 ### カラー パレットの定義 @@ -862,16 +890,22 @@ $custom-grid: grid-theme( 上記のように色の値をハードコーディングする代わりに、 および 関数を使用することによって色に関してより高い柔軟性を持つことができます。 `igx-palette` は渡された一次色と二次色に基づいてカラーパレットを生成します。 + + ```scss $yellow-color: #FFCD0F; $black-color: #292826; $dark-palette: palette($primary: $black-color, $secondary: $yellow-color); ``` + + また を使用してパレットから簡単に色を取り出すことができます。 + + ```scss $custom-grid: grid-theme( $filtering-row-background: #FFCD0F @@ -909,7 +943,9 @@ $custom-drop-down:drop-down-theme( $hover-item-text-color: color($dark-palette, "secondary", 400) ); ``` + + `igx-color` および `igx-palette` は、色を生成および取得するための重要な機能です。使い方の詳細については[パレット](../themes/sass/palettes.mdx)のトピックを参照してください。 @@ -919,7 +955,6 @@ $custom-drop-down:drop-down-theme( テーマ エンジンを使用して[**スキーマ**](../themes/sass/schemas.mdx)の利点を活用でき、堅牢で柔軟な構造を構築できます。**スキーマ**はテーマを使用する方法です。 - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/export-excel.mdx b/docs/xplat/src/content/jp/components/grids/_shared/export-excel.mdx index 6b290daff3..8ca76af60d 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/export-excel.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/export-excel.mdx @@ -37,7 +37,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## {ComponentTitle} のデータのエクスポート Ignite UI Excel および PDF エクスポーターの使用を開始するには、最初に app.module.ts ファイルで および をインポートし、`providers` 配列にサービスを追加します。 + + ```ts // app.module.ts import { ExcelExporterService, PdfExporterService } from 'igniteui-{Platform}'; @@ -48,29 +50,39 @@ import { ExcelExporterService, PdfExporterService } from 'igniteui-{Platform}'; export class AppModule {} ``` + + v12.2.1 以降では、エクスポーター サービスは root で提供されます。つまり、AppModule プロバイダーでそれらを宣言する必要はありません。 エクスポートの開始は、コンポーネントのテンプレートでボタンのハンドラーを使用します。 + + ```html <{ComponentTitle} #{ComponentTitle} [data]="localData" [autoGenerate]="true"> ``` + + コンストラクターの引数を または として型定義することで、エクスポーター サービスにアクセスでき、{Platform} フレームワークがサービスのインスタンスを提供します。Excel または PDF にデータをエクスポートするには、`Export` メソッドを呼び出し、最初の引数として {ComponentTitle} コンポーネントを渡します。 次のコードは、コンポーネント ファイル内のエクスポート処理を実行します。 + + ```Razor ``` + + すべてが正常に完了すると、{ComponentTitle} コンポーネントと 2 つのエクスポート ボタンが表示されます。それぞれのボタンを押すと、エクスポート プロセスがトリガーされ、ブラウザーは コンポーネントのデータを Excel または PDF 形式で含む 「ExportedDataFile.xlsx」 または 「ExportedDataFile.pdf」 という名前のファイルをダウンロードします。 @@ -78,28 +90,32 @@ v12.2.1 以降では、エクスポーター サービスは root で提供さ ## すべてのデータのエクスポート **ページング**などのリモート操作を使用する場合、グリッドは一度に完全なデータ セットにアクセスできない場合があります。このような場合は、[Excel エクスポート サービス](../exporter-excel.mdx)を使用し、利用可能な場合は完全なデータ コレクションを渡すことをお勧めします。 + + ```ts public exportButtonHandler() { this.excelExportService.exportData(this.localData, new ExcelExporterOptions('ExportedDataFile')); } ``` - ## グループ化されたデータのエクスポート グループ化されたデータをエクスポートするには、`{ComponentName}` を 1 つ以上の列でグループ化する必要があります。ブラウザーは、選択した列でグループ化された Excel 形式の `{ComponentName}` コンポーネントからのデータを含む 「ExportedDataFile.xlsx」 という名前のファイルをダウンロードします。トピックのはじめに例があります。 + + ```ts public exportButtonHandler() { this.excelExportService.exportData(this.localData, new ExcelExporterOptions('ExportedDataFile')); } ``` + + When offering PDF downloads for remote data, consider fetching the complete data set first and then calling `export` so the document mirrors what users expect to see. - @@ -257,7 +273,9 @@ igRegisterScript("WebHierarchicalGridExportEventFreezeHeaders", (ev) => { |ワークシートの最大サイズ|Excel でサポートされているワークシートの最大サイズは、1,048,576 行 x 16,384 列です。| |セルのスタイル設定|Excel エクスポーター サービスは、セル コンポーネントに適用されたカスタム スタイルのエクスポートをサポートしていません。このようなシナリオでは、[Excel ライブラリ](../../excel-library.mdx)を使用することをお勧めします。| |幅の広い PDF レイアウト|非常に幅の広い Grid は、PDF の列がページに収まるように縮小されることがあります。ドキュメントを読みやすく保つために、エクスポートする前に列幅を適用するか、優先度の低いフィールドを非表示にしてください。| + + ```ts // component.ts @@ -268,14 +286,15 @@ this.excelExportService.columnExporting.subscribe((args: IColumnExportingEventAr }); this.excelExportService.export(this.{ComponentTitle}, new ExcelExporterOptions('ExportedDataFile')); ``` + + |制限|説明| |--- |--- | |階層レベル|Excel エクスポーター サービスは、最大 8 レベルの階層を作成できます。| |ワークシートの最大サイズ|Excel でサポートされているワークシートの最大サイズは、1,048,576 行 x 16,384 列です。| |ピン固定列された列のエクスポート|エクスポートされた Excel ファイルでは、ピン固定列は固定されませんが、グリッドに表示されるのと同じ順序で表示されます。| |幅の広い PDF レイアウト|非常に幅の広い Grid は、PDF の列がページに収まるように縮小されることがあります。ドキュメントを読みやすく保つために、エクスポートする前に列幅を適用するか、優先度の低いフィールドを非表示にしてください。| - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/_shared/filtering.mdx b/docs/xplat/src/content/jp/components/grids/_shared/filtering.mdx index 5ecd91a072..594bfa03f6 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/filtering.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/filtering.mdx @@ -709,7 +709,9 @@ constructor() { ## Matching Records Only Filtering Strategy By default, after a filtering is applied, the component displays the records matching the criterion that have been set and their parents in a grayed-out fashion to provide additional context. However, in some cases, you may want to display only the records matching particular filtering condition without any trace for their parents. This can be achieved by using the `TreeGridMatchingRecordsOnlyFilteringStrategy`: + + ```html @@ -720,9 +722,10 @@ import { TreeGridMatchingRecordsOnlyFilteringStrategy } from "igniteui-angular"; public matchingRecordsOnlyStrategy = new TreeGridMatchingRecordsOnlyFilteringStrategy(); ``` + + - @@ -770,27 +773,41 @@ public matchingRecordsOnlyStrategy = new TreeGridMatchingRecordsOnlyFilteringStr 定義済みのテーマに加えて、利用可能な [CSS プロパティ](../theming-grid.mdx)のいくつかを設定することで、グリッドをさらにカスタマイズできます。 一部の色を変更したい場合は、最初にグリッドのクラスを設定する必要があります。 + + ```html <{ComponentSelector} class="grid"> ``` + + 次に、そのクラスに関連する CSS プロパティを設定します。 + + ```razor <{ComponentSelector} Class="grid"> ``` + + As seen, the `grid-theme` only controls colors for the filtering row and the respective column header that is being filtered. We obviously have a lot more components inside the filtering row, such as an input group, chips, buttons and others. In order to style them, we need to create a separate theme for each one, so let's create a new input group theme and a new button theme: + + ```tsx <{ComponentSelector} className="grid"> ``` + + In this example we only changed some of the parameters for the input group and the button, but the `input-group-theme` and the `button-theme` provide way more parameters to control their respective styling. The last step is to **include** the component mixins, each with its respective theme. We will also set the color property for the input's placeholder. + + ```css .grid { --ig-grid-filtering-row-text-color: #292826; @@ -799,7 +816,9 @@ The last step is to **include** the component mixins, each with its respective t --ig-grid-filtering-header-background: #ffcd0f; } ``` + + We scope the **igx-button** and the **igx-input-group** mixins within `.igx-grid__filtering-row`, so that only the filtering row buttons and its input group would be styled. Otherwise other buttons and input groups in the grid would be affected too. @@ -807,7 +826,9 @@ We scope the **igx-button** and the **igx-input-group** mixins within `.igx-grid If the component is using an `Emulated` ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -823,22 +844,30 @@ We scope the **igx-button** and the **igx-input-group** mixins within `.igx-grid } } ``` + + ### デモ Instead of hardcoding the color values like we just did, we can achieve greater flexibility in terms of colors by using the `igx-palette` and `igx-color` functions. `igx-palette` generates a color palette based on the primary and secondary colors that are passed: + + ```scss $yellow-color: #FFCD0F; $black-color: #292826; $dark-palette: palette($primary: $black-color, $secondary: $yellow-color); ``` + + And then with `igx-color` we can easily retrieve color from the palette. + + ```scss $custom-grid: grid-theme( $filtering-row-text-color: color($dark-palette, "primary", 400), @@ -861,7 +890,9 @@ $dark-button: button-theme( $flat-hover-text-color: color($dark-palette, "secondary", 400) ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/sass/palettes.mdx) topic for detailed guidance on how to use them. @@ -871,16 +902,22 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr フィルター行のスタイル設定は、すべてのテーマ関数とコンポーネント mixin が存在する `index` ファイルをインポートする必要があります。 最も簡単な方法は、`grid-theme` を拡張する新しいテーマを作成し、`$filtering-row-text-color`、`$filtering-row-background`、`$filtering-header-text-color` および `$filtering-header-background` パラメーターを受け取る方法です。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + 以下のように、`grid-theme` は、フィルタリング行とフィルタリングされているそれぞれの列ヘッダーの色のみを制御します。入力グループ、チップ、ボタンなど、フィルタリング行内には明らかに多くのコンポーネントがあります。スタイルの設定は、それぞれに個別のテーマを作成する必要があるため、新しい入力グループのテーマと新しいボタンのテーマを作成します。 + + ```scss $custom-grid: grid-theme( $filtering-row-text-color: #292826, @@ -889,7 +926,9 @@ $custom-grid: grid-theme( $filtering-header-background: #FFCD0F ); ``` + + この例では、Input Group と Button のパラメーターの一部のみを変更しましたが、`input-group-theme` と `button-theme` は、それぞれのスタイルを制御するためのより多くのパラメーターを提供します。 ### カラーパレットの定義 @@ -897,7 +936,6 @@ $custom-grid: grid-theme( 上記のように色の値をハードコーディングする代わりに、`igx-palette` および `igx-color` 関数を使用することによって色に関してより高い柔軟性を持つことができます。 - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/live-data.mdx b/docs/xplat/src/content/jp/components/grids/_shared/live-data.mdx index 562df65da1..19cc9eed59 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/live-data.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/live-data.mdx @@ -188,7 +188,9 @@ As you can see the igxGrid component handles with ease the high-frequency update ### ハブ接続の開始 signal-r.service は公開された管理可能なパラメーター - _frequency_、_volume_ および _live-update 状態のトグル_ (開始/停止) - の接続と更新を処理します。 + + ```ts this.hubConnection = new signalR.HubConnectionBuilder() .configureLogging(signalR.LogLevel.Trace) @@ -203,7 +205,9 @@ this.hubConnection = new signalR.HubConnectionBuilder() }) .catch(() => {}); ``` + + 指定された頻度に基づいて、合計 30 の新しい更新がサーバーによって受信されます。特定の cellStyle クラスは、変更を処理する 3 つの列に適用されます - Price、Change および Change (%)。 ### 更新頻度とデータ ボリューム @@ -211,7 +215,9 @@ this.hubConnection = new signalR.HubConnectionBuilder() 左側のアクション パネルを使用して、データ フィードの頻度と要求されたデータ ボリュームを管理できます。すべてのグリッドは同じデータ ソースを使用します。データ フィードの停止、アプリケーション テーマの変更、または igxGrid を使用した DockSlot コンテナーの動的追加は、他のアクション要素をご自由にお使いください。 `updateParameters` メソッドを使用して、特定の頻度で新しいデータのセットを要求します。このメソッドは、SignalR [ストリーム ハブの実装](https://github.com/IgniteUI/finjs-web-api/blob/master/WebAPI/Models/StreamHub.cs#L18)の一部です。 + + ```ts this.hubConnection.invoke('updateparameters', frequency, volume, live, updateAll) .then(() => console.log('requestLiveData', volume)) @@ -219,14 +225,15 @@ this.hubConnection.invoke('updateparameters', frequency, volume, live, updateAll console.error(err); }); ``` + + ### DockSlot および Grid コンポーネントを動的に作成 [ComponentFactoryResolver](https://angular.io/api/core/ComponentFactoryResolver) を使用して、DockSlot および Grid コンポーネントをオンザフライで作成できます。 ### DockManager コンポーネント [Dock Manager](../../layouts/dock-manager.mdx) WebComponent を利用し、ドケットまたはフローティング パネルを使用して独自の Web ビューを作成します。新しいフローティング パネルを追加するには、右側のアクション ペインを開き、[フローティング ペインの追加] ボタンをクリックします。新しいペインを目的の場所にドラッグアンドドロップします。 - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/multi-column-headers.mdx b/docs/xplat/src/content/jp/components/grids/_shared/multi-column-headers.mdx index 2eda0dccd3..105ef11f78 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/multi-column-headers.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/multi-column-headers.mdx @@ -763,13 +763,19 @@ const columnHeaderTemplate = (e: IgrColumnTemplateContext ) => { ## スタイル設定 ソート動作のスタイル設定は、すべてのテーマ関数とコンポーネント mixins が存在する `index` ファイルをインポートする必要があります。 + + ```scss @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + 最も単純なアプローチに従って、 を拡張し、`$header-background`、`$header-text-color`、`$header-border-width`、`$header-border-style`、および `$header-border-color` パラメーターを受け入れる新しいテーマを作成します。 + + ```scss $custom-theme: igx-grid-theme( $header-background: #e0f3ff, @@ -779,13 +785,19 @@ $custom-theme: igx-grid-theme( $header-border-color: rgba(0, 0, 0, 0.08) ); ``` + + 最後にそれぞれのテーマを持つコンポーネント mixins を**含めます**。 + + ```scss @include igx-grid($custom-theme); ``` + + >コンポーネントが [Emulated](../themes/styles.mdx#表示のカプセル化) ViewEncapsulation を使用している場合、`::ng-deep` を使用してこのカプセル化に`解除する`必要があります。 @@ -796,6 +808,9 @@ $custom-theme: igx-grid-theme( @include igx-grid($custom-theme); } } + + + ``` ### カラー パレットの定義 @@ -810,9 +825,13 @@ $deep-pink-color: #e41c77; $custom-palette: igx-palette($primary: $light-blue-color, $deep-pink-color); ``` + + また `igx-color` を使用してパレットから簡単に色を取り出すことができます。 + + ```scss $custom-theme: igx-grid-theme( $header-background: igx-color($custom-palette, "primary", 500), @@ -822,7 +841,9 @@ $custom-theme: igx-grid-theme( $header-border-color: igx-color($custom-palette, "grays", 200) ); ``` + + `igx-color` および `igx-palette` は、色を生成および取得するための重要な機能です。使い方の詳細については[パレット](../themes/palette.mdx)のトピックを参照してください。 @@ -832,7 +853,9 @@ $custom-theme: igx-grid-theme( テーマ エンジンを使用して[スキーマ](../themes/schemas.mdx)の利点を活用でき、堅牢で柔軟な構造を構築できます。スキーマはテーマを使用する方法です。 すべてのコンポーネントに提供されている 2 つの定義済みスキーマのいずれかを拡張します。この場合は `_light-grid`です。 + + ```scss // Extending the light grid schema $custom-grid-schema: extend($_light-grid, @@ -845,9 +868,13 @@ $custom-grid-schema: extend($_light-grid, ) ); ``` + + カスタム スキーマを適用するには、グローバル (`light` または `dark`) の 1 つを**拡張する**必要があります。これは基本的にカスタム スキーマでコンポーネントを指し示し、その後それぞれのコンポーネント テーマに追加するものです。 + + ```scss Extending the global light-schema $my-custom-schema: extend($light-schema, @@ -862,7 +889,9 @@ $custom-theme: igx-grid-theme( $schema: $my-custom-schema ); ``` + + 上記と同じ方法でテーマを含める必要があることに注意してください。 ### デモ @@ -876,11 +905,12 @@ $custom-theme: igx-grid-theme( ## 既知の問題と制限 - IE11 で複数列ヘッダーの Grid コンポーネントを使用するには、Angular アプリケーションの polyfill.ts に配列ポリフィルを明示的にインポートする必要があります。 + + ```typescript import 'core-js/es7/array'; ``` - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/multi-row-layout.mdx b/docs/xplat/src/content/jp/components/grids/_shared/multi-row-layout.mdx index 9ef7434f7e..f8a2a7445b 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/multi-row-layout.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/multi-row-layout.mdx @@ -235,18 +235,24 @@ import multiRowLayout1 from '@xplat-images/multi-row-layout-1.png'; ### グローバル テーマのインポート 複数行レイアウト機能のカスタマイズは、すべてのスタイリング機能とミックスインが配置されている ファイルをインポートする必要があります。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + ### カスタム テーマの定義 次に、`GridTheme` を拡張し、必要に応じて機能レイアウトをカスタマイズするために必要なパラメーターを受け取る新しいテーマを作成します。 + + ```scss $custom-theme: grid-theme( $cell-active-border-color: #ffcd0f, @@ -259,7 +265,9 @@ $custom-theme: grid-theme( $sortable-header-icon-hover-color: #e9bd0d ); ``` + + ### カスタム カラー パレットの定義 上記で説明したアプローチでは、色の値がハード コーディングされていました。または `Palette` および 関数を使用して、柔軟性を高めることができます。 @@ -274,6 +282,9 @@ $custom-palette: palette( $primary: $black-color, $secondary: $yellow-color ); + + + ``` カスタム パレットが生成された後、 関数を使用して、さまざまな種類の原色と二次色を取得できます。 @@ -290,13 +301,17 @@ $custom-theme: grid-theme( $sortable-header-icon-hover-color: color($custom-palette, "secondary", 600) ); ``` + + ### カスタム スキーマの定義 [**スキーマ**](../themes/sass/schemas.mdx)のすべての利点を備えた柔軟な構造を構築できます。**スキーマ**はテーマを作成させるための方法です。 すべてのコンポーネントに提供される 2 つの事前定義されたスキーマのいずれかを拡張します。この場合、`$_light_grid` を使用します。 + + ```scss $custom-grid-schema: extend($_light-grid,( cell-active-border-color: (igx-color:('secondary', 500)), @@ -309,9 +324,13 @@ $custom-grid-schema: extend($_light-grid,( sortable-header-icon-hover-color: (igx-color:('secondary', 600)) )); ``` + + カスタム スキーマを適用するには、`Light` グローバルまたは `Dark` グローバルを拡張する必要があります。プロセス全体が実際にコンポーネントにカスタム スキーマを提供し、その後、それぞれのコンポーネントテーマに追加します。 + + ```scss $my-custom-schema: extend($light-schema, ( igx-grid: $custom-grid-schema @@ -321,15 +340,21 @@ $my-custom-schema: extend($light-schema, ( $schema: $my-custom-schema ); ``` + + ### カスタム テーマの適用 テーマを適用する最も簡単な方法は、グローバル スタイル ファイルに `sass` `@include` ステートメントを使用することです。 + + ```scss @include grid($custom-theme); ``` + + ### スコープ コンポーネント テーマ カスタム テーマが特定のコンポーネントのみに影響するように、定義したすべてのスタイルをグローバル スタイル ファイルからカスタム コンポーネントのスタイルファイルに移動できます (`index` ファイルのインポートを含む)。 @@ -343,7 +368,9 @@ $my-custom-schema: extend($light-schema, ( ステートメントがコンポーネントの外にある要素に影響を与えないよう、ステートメントを `:host` セレクター内にラップします。 + + ```scss :host { ::ng-deep { @@ -351,7 +378,9 @@ $my-custom-schema: extend($light-schema, ( } } ``` + + ### デモ @@ -361,7 +390,6 @@ $my-custom-schema: extend($light-schema, ( サンプルは、**テーマの変更**で選択したグローバル テーマの影響を受けません。 - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/paging.mdx b/docs/xplat/src/content/jp/components/grids/_shared/paging.mdx index 39e23c6790..f551caa7b1 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/paging.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/paging.mdx @@ -234,16 +234,22 @@ In some cases you may want to define your own paging behavior and this is when w ## カスタム テンプレートのリモート ページング 独自のページング動作を定義するために、`PaginatorContent` を使用してカスタム ロジックを追加できます。[このセクション](remote-data-operations.mdx#カスタム-igx-paginator-content-のリモート-ページング)では、上記を実証するために、リモート ページングの例を拡張する方法を説明します。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + Following the simplest approach, we create a new theme that extends the `PaginatorTheme` and accepts the `$text-color`, `$background-color` and the `$border-color` parameters. + + ```scss $dark-paginator: paginator-theme( $text-color: #F4D45C, @@ -251,9 +257,13 @@ $dark-paginator: paginator-theme( $border-color: #292826 ); ``` + + As seen, the `PaginatorTheme` only controls colors for the paging container, but does not affect the buttons in the pager UI. To style those buttons, let's create a new button theme: + + ```scss $dark-button: button-theme( $icon-color: #FFCD0F, @@ -264,18 +274,24 @@ $dark-button: button-theme( $disabled-color: #16130C ); ``` + + In this example we only changed the icon color and background and the button disabled color, but the the `ButtonTheme` provides way more parameters to control the button style. The last step is to **include** the component mixins, each with its respective theme: + + ```scss @include grid-paginator($dark-grid-paginator); .igx-grid-paginator__pager { @include button($dark-button); } ``` + + We scope the mixin within `.igx-paginator__pager`, so that only the paginator buttons would be styled. Otherwise other buttons in the grid would be affected too. @@ -283,7 +299,9 @@ We scope the mixin within `.igx-paginator__ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -294,22 +312,30 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) } } ``` + + ### {Platform} の各ページ スタイリング ページネーターのスタイル設定は、すべてのテーマ関数とコンポーネント ミックスインが存在する `index` ファイルをインポートする必要があります。 最も簡単な方法は、`PaginatorTheme` を拡張する新しいテーマを作成し、`$text-color`、`$background-color`、`$border-color` パラメーターを受け取る方法です。 + + ```scss @use "igniteui-angular/theming" as *; // IMPORTANT: Prior to Ignite UI for Angular version 13 use: // @import '~igniteui-angular/lib/core/styles/themes/index'; ``` + + `PaginatorTheme` はページング コンテナの色の制御のみですが、ページャー UI のボタンには影響しません。これらのボタンにスタイル設定するために、新しいボタン テーマを作成しましょう。 + + ```scss $dark-paginator: paginator-theme( $text-color: #F4D45C, @@ -317,7 +343,9 @@ $dark-paginator: paginator-theme( $border-color: #292826 ); ``` + + この例では、アイコンの色と背景、ボタンの無効な色のみを変更しましたが、`ButtonTheme` ではボタン スタイルを制御するためのパラメータを増やすことができます。 ### カラー パレットの定義 @@ -325,16 +353,22 @@ $dark-paginator: paginator-theme( 上記のように色の値をハードコーディングする代わりに、`Palette` および 関数を使用することによって色に関してより高い柔軟性を持つことができます。 `Palette` は渡された一次色と二次色に基づいてカラーパレットを生成します。 + + ```scss $yellow-color: #F9D342; $black-color: #292826; $dark-palette: palette($primary: $black-color, $secondary: $yellow-color); ``` + + また を使用してパレットから簡単に色を取り出すことができます。 + + ```scss $dark-paginator: paginator-theme( $palette: $dark-palette, @@ -353,7 +387,9 @@ $dark-button: button-theme( $disabled-color: color($dark-palette, "primary", 700) ); ``` + + および `Palette` は、色を生成および取得するための重要な機能です。使い方の詳細については[パレット](../themes/sass/palettes.mdx)のトピックを参照してください。 @@ -361,8 +397,6 @@ $dark-button: button-theme( ### スキーマの使用 - - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/_shared/remote-data-operations.mdx b/docs/xplat/src/content/jp/components/grids/_shared/remote-data-operations.mdx index b591a4d9a3..ba4e84637e 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/remote-data-operations.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/remote-data-operations.mdx @@ -825,7 +825,9 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy まず、関連するイベントにバインドして、ページを変更したり、ページごとに表示されるレコードの量を変更したりするときに、リモート サービスが正しい量のデータを取得するようにする必要があります。 + + ```ts constructor() { this.grid = document.getElementById('grid') as IgcGridComponent; @@ -850,9 +852,13 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy this._bind(); } ``` + + また、データを読み込む方法を設定し、それに応じて UI を更新する必要があります。 + + ```ts private loadData(pageIndex?: number, pageSize?: number): void { this.grid.isLoading = true; @@ -881,19 +887,21 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy } } ``` + - + 詳細については、以下のデモを確認してください。 ### グリッド リモート ページングのデモ - まず、グリッドにデータを読み込む必要があります。タイミングの問題を回避するには、グリッドが描画された後に実行することをお勧めします。 + + ```csharp protected override async Task OnAfterRenderAsync(bool firstRender) { @@ -905,9 +913,13 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy } } ``` + + その後は、ページング イベントをカスタム メソッドにバインドするだけで、リモート ページングが設定されます。 + + ```razor @@ -944,13 +956,14 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy } } ``` + + 詳細については、以下の完全なデモを確認してください。 ### グリッド リモート ページングのデモ - @@ -977,9 +990,13 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy ``` + + 次に、状態を設定します。 + + ```tsx const grid = useRef(null); const paginator = useRef(null); @@ -992,9 +1009,13 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy loadGridData(page, perPage); }, [page, perPage]); ``` + + 最後に、データを読み込むメソッドを設定します。 + + ```tsx function loadGridData(pageIndex?: number, pageSize?: number) { // Set loading state @@ -1016,13 +1037,14 @@ export class RemotePagingGridSample implements OnInit, AfterViewInit, OnDestroy }) } ``` + + 詳細については、以下の完全なサンプルを確認してください。 ### グリッド リモート ページングのデモ - @@ -1057,7 +1079,9 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, まず、関連するイベントにバインドして、ページを変更したり、ページごとに表示されるレコードの量を変更したりするときに、リモート サービスが正しい量のデータを取得するようにする必要があります。 + + ```ts constructor() { this.hierarchicalGrid = document.getElementById("hGrid") as IgcHierarchicalGridComponent; @@ -1096,9 +1120,13 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, this._bind(); } ``` + + また、データを読み込む方法を設定し、それに応じて UI を更新する必要があります。 + + ```ts private updateUI(): void { if (this.hierarchicalGrid && this.data) { // Check if grid and data are available @@ -1127,9 +1155,13 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, }) } ``` + + 最後に、階層グリッドの実際の階層レベルの背後にある動作を処理する必要があります。 + + ```ts public gridCreated(event: CustomEvent, parentKey: string) { const context = event.detail; @@ -1158,18 +1190,21 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, ` } ``` + + 詳細については、以下のデモを確認してください。 ### グリッド リモート ページングのデモ - まず、グリッドにデータを読み込む必要があります。タイミングの問題を回避するには、グリッドが描画された後に実行することをお勧めします。 + + ```csharp protected override async Task OnAfterRenderAsync(bool firstRender) { @@ -1181,9 +1216,13 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, } } ``` + + その後は、ページング イベントをカスタム メソッドにバインドするだけで、リモート ページングが設定されます。 + + ```razor @@ -1220,13 +1259,14 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, } } ``` + + 詳細については、以下の完全なデモを確認してください。 ### グリッド リモート ページングのデモ - @@ -1309,6 +1349,9 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, 最後に、RowIsland の動作を設定します。 + + + ```tsx function gridCreated(event: IgrGridCreatedEventArgs, parentKey: string) { const context = event.detail; @@ -1340,15 +1383,15 @@ export class HGridRemotePagingSampleComponent implements OnInit, AfterViewInit, }; ``` + - + 詳細については、以下の完全なサンプルを確認してください。 ### グリッド リモート ページングのデモ - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/row-adding.mdx b/docs/xplat/src/content/jp/components/grids/_shared/row-adding.mdx index 8f44950d66..1266f5d213 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/row-adding.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/row-adding.mdx @@ -609,14 +609,18 @@ gridRef.current.rowAddTextTemplate = (ctx: IgrGridEmptyTemplateContext) => { `RowEditActionsDirective` を使用すると、行編集オーバーレイのボタンをカスタマイズできます。 キーボード ナビゲーションにボタンを含める場合、各ボタンに `RowEditTabStopDirective` が必要です。 + + ```html ``` + + > **注**: > `RowEditActions` ディレクティブを使用すると、編集オーバーレイと追加オーバーレイの両方で編集アクション ボタンが変更されます。 diff --git a/docs/xplat/src/content/jp/components/grids/_shared/row-drag.mdx b/docs/xplat/src/content/jp/components/grids/_shared/row-drag.mdx index 76542f9b3c..6975dc6b35 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/row-drag.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/row-drag.mdx @@ -78,7 +78,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; [`Drop` ディレクティブ](../drag-drop.mdx)を使用して、行をドロップする場所を定義できます。 はじめに、アプリ モジュールに `DragDropModule` をインポートする必要があります。 + + ```typescript import { ..., IgxDragDropModule } from 'igniteui-angular'; // ... @@ -86,15 +88,15 @@ import { ..., IgxDragDropModule } from 'igniteui-angular'; imports: [..., IgxDragDropModule] }) ``` - - ### ドロップ エリア はじめに、`DragDropModule` を登録する必要があります。 + + ```typescript import { IgcDragDropModule } from 'igniteui-webcomponents'; // ... @@ -102,7 +104,6 @@ ModuleManager.register( IgcDragDropModule ); ``` - @@ -171,11 +172,12 @@ public dragHereTemplate = (ctx: IgcGridEmptyTemplateContext) => { - イベントの `Animation` パラメーターを使用すると、ドロップ不可の領域に行がドロップされたときにアニメーションを有効にできます。true に設定すると、ドロップ不可の領域にドロップされた場合、ドラッグされた行は元の位置にアニメーションで戻ります。 次のようにアニメーションを有効にできます。 + + ```typescript export class {ComponentName}RowDragComponent { @@ -185,13 +187,17 @@ export class {ComponentName}RowDragComponent { } ``` + + ### ドロップ エリア イベント ハンドラー テンプレートでドロップ エリアを定義したら、コンポーネントの **.ts** ファイルで `IgxDrop` の ENTER、`Leave` および `Dropped` イベントのハンドラーを宣言する必要があります。 まず、ENTER と `Leave` ハンドラーを見てみましょう。これらのメソッドでは、行をドロップできる領域の上にあることをユーザーに示すために、ドラッグの **ghost** のアイコンを変更するだけです。 + + ```typescript export class {ComponentName}RowDragComponent { public onEnterAllowed(args) { @@ -212,31 +218,45 @@ export class {ComponentName}RowDragComponent { } } ``` + + **changeGhostIcon** **private** メソッドは、ドラッグ ゴースト内のアイコンを変更するだけです。このメソッドのロジックは、アイコンを含む要素を検索し (ドラッグ インジケーター コンテナーに適用される **igx-grid__drag-indicator** クラスを使用)、その要素の内部テキストを渡された値に変更します。 アイコン自体は [**material** フォント セット](https://material.io/tools/icons/) のもので、別の **enum** で定義されています。 + + ```typescript enum DragIcon { DEFAULT = 'drag_indicator', ALLOW = 'remove' } ``` + + + + + ```typescript enum DragIcon { DEFAULT = 'drag_indicator', ALLOW = 'add' } ``` + + + 次に、ユーザーが実際にドロップ エリア内に行をドロップしたときの動作を定義する必要があります。 + + ```typescript export class {ComponentName}RowDragComponent { @@ -247,11 +267,16 @@ export class {ComponentName}RowDragComponent { } ``` + + 行がドロップされたら、行の `Delete` メソッドを呼び出すだけです + + + ```typescript export class {ComponentName}RowDragComponent { @ViewChild('sourceGrid', { read: IgxGridComponent }) public sourceGrid: IgxGridComponent; @@ -264,7 +289,9 @@ export class {ComponentName}RowDragComponent { } ``` + + **ViewChild** デコレーターを使用して各グリッドへの参照を定義し、次のようにドロップを処理します。 - ドロップされた行のデータを含む行を `TargetGrid` に追加する - ドラッグされた行を `SourceGrid` から削除する @@ -292,7 +319,6 @@ export class {ComponentName}RowDragComponent { - イベント引数の行データ (**args.dragData.data**) やその他の行プロパティを使用する場合、行全体が参照として引数に渡されることに注意してください。そのため、ソース グリッド内のデータと区別したい場合は、必要なデータを複製する必要があります。 @@ -300,7 +326,9 @@ export class {ComponentName}RowDragComponent { ### ドラッグ ゴーストのテンプレート化 ドラッグ ゴーストは、`{ComponentSelector}` の本体内の `` に適用される `RowDragGhost` ディレクティブを使用してテンプレート化できます。 + + ```html <{ComponentSelector}> @@ -310,7 +338,6 @@ export class {ComponentName}RowDragComponent { ``` - @@ -332,14 +359,15 @@ public rowDragGhostTemplate = (ctx: IgcGridRowDragGhostContext) => { - 以下は、行ドラッグと複数選択を有効にした での設定結果です。デモでは、現在ドラッグされている行数が表示されます。 #### デモ ドラッグ ゴーストはすべてのグリッド レベルでテンプレート化できるため、複数のゴースト テンプレートを用意したり、単一の行アイランドにのみテンプレートを提供したりすることができます。 + + ```html <{ComponentSelector}> @@ -354,11 +382,12 @@ public rowDragGhostTemplate = (ctx: IgcGridRowDragGhostContext) => { ``` + + - @@ -513,7 +542,9 @@ enum DragIcon { ### ドロップ エリアのスタイル設定 ドロップ ハンドラーが正しく設定されたら、あとはドロップ エリアを少しスタイル設定するだけです。 + + ```css .drop-area { width: 160px; @@ -536,7 +567,9 @@ enum DragIcon { width: 100%; } ``` + + 結果は以下のデモで確認できます。 @@ -1282,7 +1315,9 @@ function getCurrentRowIndex(rowList, cursorPosition) { 以下のスニペットでは、ドラッグ ゴースト内のテキストを変更して、ホバーしている行の名前を表示する方法を示します。 まず、ドラッグ ゴーストに使用するテンプレートを指定します。`DropName` プロパティは動的に変化し、カーソルがホバーしている行の名前を取得します。 + + ```html
@@ -1296,9 +1331,13 @@ public rowDragGhostTemplate = (ctx: IgcGridRowDragGhostContext) => { return html`dropName`; } ``` + + 次に、カーソルが置かれている行のインスタンスを返すメソッドを定義します ([行の並べ替えデモ](#行の並べ替えデモ)で使用したものと同様です)。 + + ```typescript class MyRowGhostComponent { private getRowDataAtPoint(rowList: IgxGridRowComponent[], cursorPosition: Point): any { @@ -1328,11 +1367,15 @@ class MyRowGhostComponent { } } ``` + + 最後に、(ドラッグされた行に対して発生する) `DragMove` イベントを処理するメソッドを作成します。このメソッドは、`RowDragGhost` テンプレートで使用されるプロパティの値を変更し、強制的に再レンダリングします。 ドラッグしている特定の行の `DragMove` イベントのみを購読し、行がドロップされるたびに (メモリ リークを防ぐために) 購読を解除する必要があります。 + + ```typescript class MyRowGhostComponent { public ngAfterViewInit(): void { @@ -1376,7 +1419,9 @@ class MyRowGhostComponent { } } ``` + + #### カーソル位置に基づいてドロップ インジケーターを表示する 次のセクションのデモでは、ドラッグされた行がドロップされる位置を示すインジケーターを表示する方法を確認できます。このインジケーターは、ドラッグされた行がドロップされる位置に配置されるプレースホルダー行や、ドラッグされた行が現在ホバーしている行の上か下にドロップされるかを示す境界線スタイルなど、お好みでカスタマイズできます。 @@ -1386,7 +1431,9 @@ class MyRowGhostComponent { グリッドに が指定されていることを確認してください。行を正しく並べ替えるには、一意の識別子が必要です + + ```typescript public ngAfterViewInit() { this.grid.rowDragStart @@ -1447,13 +1494,17 @@ private changeHighlightedElement(newElement: HTMLElement) { } } ``` + + #### 行ドラッグ時のグリッドのスクロール ドラッグされた行が上端または下端の境界に達したときにグリッドをスクロールできると、非常に便利です。これにより、グリッド内の行数が多くスクロール バーが必要な場合でも、現在のビューポート外にある行を並べ替えることができます。 以下は、ビューポートの端に達したかどうかを確認し、必要に応じてスクロールするために使用する 2 つのメソッドの例です。`IsGridScrolledToEdge` は、グリッドをスクロールしたい方向を示す 1 つのパラメーター (下方向は 1、上方向は -1) を受け取り、その方向の最終行に達している場合は **true** を返します。`ScrollGrid` メソッドは、指定した方向 (1 または -1) にグリッドをスクロールしようとしますが、グリッドがすでにその端にある場合は何も行いません。 + + ```typescript class MyGridScrollComponent { private isGridScrolledToEdge(dir: 1 | -1): boolean { @@ -1480,11 +1531,15 @@ class MyGridScrollComponent { } } ``` + + 前の例と同様に、特定の行の `DragMove` イベントを購読します。`DragMove` はカーソルが実際に動いたときにのみ発生するため、行が端の 1 つにある状態でユーザーが**マウスを動かさない**場合でも、グリッドを自動スクロールできるシンプルな方法が必要です。そのために、`Interval` を設定し、**500ms** ごとにグリッドを自動スクロールする追加のメソッドを用意します。 ポインターがグリッドの端に達したときに `Interval` を作成して購読し、マウスが動くたび、または (カーソルの位置に関係なく) 行がドロップされるたびに、その `Interval` の購読を**解除**します。 + + ```typescript class MyGridScrollComponent { public ngAfterViewInit() { @@ -1517,14 +1572,13 @@ class MyGridScrollComponent { } } ``` + + 以下は、上記で説明した両方のシナリオ、つまりドロップ インジケーターの表示と、境界の端に達したときのビューポートのスクロールの例です。 - - - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/row-editing.mdx b/docs/xplat/src/content/jp/components/grids/_shared/row-editing.mdx index 6dc63d020e..ba76f4425f 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/row-editing.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/row-editing.mdx @@ -611,7 +611,6 @@ const rowEditActionsTemplate =(ctx: IgrGridRowEditActionsTemplateContext) => { - ## スタイル設定 [{ProductName} Theme Library](themes/index.mdx) を使用すると、行編集オーバーレイの見た目を大きく変更できます。 @@ -629,20 +628,26 @@ const rowEditActionsTemplate =(ctx: IgrGridRowEditActionsTemplateContext) => { 行編集バナーをスタイル設定する最も簡単な方法は、`app` のグローバル スタイル ファイル (通常は `styles.scss`) にスタイルを定義することです。 まず `themes/index` ファイルをインポートします。これで {ProductName} Sass フレームワークの各種機能を利用できます。 + + ```scss @use "igniteui-{Platform}/theming" as *; // 重要: {ProductName} 13 より前のバージョンでは次を使用: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + テーマ ファイルをインポートしたら、カスタム テーマを作成できます。 #### テーマの定義 次に、 を定義して行編集の背景に適用します。ここでは定義済みパレットの `$purple-palette` を利用します。 + + ```scss $my-light-gray: #e3e3e3; $my-banner-palette: $purple-palette; @@ -652,17 +657,23 @@ const rowEditActionsTemplate =(ctx: IgrGridRowEditActionsTemplateContext) => { $banner-message-color: color($my-banner-palette, "secondary", 600) ); ``` + + ここでは `my-banner-palette` と `igx-color` (テーマ ライブラリで提供) を組み合わせて色を生成しています。 ### テーマの適用 最後に Sass の `@include` でテーマを適用します。新しく定義した `$banner-theme` を **igx-banner mixin** に渡します。 + + ```scss @include banner($banner-theme); ``` + + これで行編集オーバーレイにカスタム バナー テーマが適用されます。ただしグローバル スタイルに定義しているため、アプリケーション内の **すべて** のバナーにも適用されます。 ### コンポーネント単位のスタイル @@ -673,7 +684,9 @@ const rowEditActionsTemplate =(ctx: IgrGridRowEditActionsTemplateContext) => { コンポーネントが [Emulated](themes/styles.mdx#view-encapsulation) の ViewEncapsulation を使用している場合、グリッドをスタイル設定するには `::ng-deep` でカプセル化を通過する必要があります。 コンポーネント外の要素へ影響しないよう、` :host` セレクター内で定義します。 + + ```scss // custom.component.scss @@ -683,13 +696,17 @@ const rowEditActionsTemplate =(ctx: IgrGridRowEditActionsTemplateContext) => { } } ``` + + 上記の構文で、カスタム バナー テーマをグリッドの行編集オーバーレイへ正しく適用できます。 ### カスタム テンプレート 行編集オーバーレイをさらにカスタマイズするには、カスタム テンプレートを渡して `Done` ボタンと `Cancel` ボタンを個別にスタイル設定できます。 + + ```html <{ComponentSelector}> @@ -705,9 +722,13 @@ const rowEditActionsTemplate =(ctx: IgrGridRowEditActionsTemplateContext) => { ``` + + カスタム ボタンを定義したら、 を使ってスタイルを適用できます。`igx-button` の詳細はこの[トピック](../button.mdx#styling)を参照してください。`Done` と `Cancel` 用に次のようなテーマを作成できます。 + + ```scss // custom.component.scss // ... @@ -720,7 +741,9 @@ $button-theme: button-theme( @include button($button-theme); } ``` + + `@include` は `.custom-buttons` に限定することで、`Done` と `Cancel` ボタンのみに適用されます。 ### デモ @@ -735,7 +758,6 @@ $button-theme: button-theme( このサンプルは **Change Theme** で選択したグローバル テーマの影響を受けません。 - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/row-pinning.mdx b/docs/xplat/src/content/jp/components/grids/_shared/row-pinning.mdx index 7bc1e02ba6..6bc7417f37 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/row-pinning.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/row-pinning.mdx @@ -538,15 +538,21 @@ Let's say that you want to be able to directly drag and drop a row between the p This can be achieved by enabling the row drag feature and pinning/unpinning the rows via the API on drop. First, the grid should be marked as a drop area using the `igxDrop` directive and the row drag functionality should be enabled via the `rowDraggable` option. + + ```html ``` + + Then the `dropped` event can be used to handle the reorder and pin/unpin logic. + + ```typescript public onDropAllowed(args) { const event = args.originalEvent; @@ -575,13 +581,14 @@ public onDropAllowed(args) { } } ``` + + This would allow reordering the rows and moving them between the pinned and unpinned row collections. #### Demo - @@ -648,18 +655,24 @@ Then set the related CSS properties for that class: ### デモ To begin the customization of the row pinning feature, you need to import the `index` file, where all styling functions and mixins are located. + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + ### スタイル設定 `{ComponentName}` を使用すると、[{ProductName} テーマ ライブラリ](../themes/styles.mdx)を介してスタイルを設定できます。{ComponentTitle} の は、{ComponentTitle} のすべての機能をカスタマイズできるさまざまなプロパティを公開します。 + + ```scss $custom-grid-theme: grid-theme( /* Pinning properties that affect styling */ @@ -670,24 +683,32 @@ $custom-grid-theme: grid-theme( /* add other features properties here... */ ); ``` + + ### スタイル ライブラリのインポート 行のピン固定機能のカスタマイズは、すべてのスタイリング機能とミックスインが配置されている `index` ファイルをインポートする必要があります。 + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + ### テーマの定義 次に、 を拡張し、必要に応じて行のピン固定をカスタマイズするために必要なパラメーターを受け入れる新しいテーマを作成します。 If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`. However, in order to prevent the custom theme to leak to other components, be sure to include the `:host` selector before `::ng-deep`: + + ```scss $custom-grid-theme: grid-theme( /* Pinning properties that affect styling */ @@ -698,13 +719,14 @@ $custom-grid-theme: grid-theme( /* add other features properties here... */ ); ``` + + ### CSS 変数の使用 最後にカスタム グリッド テーマを設定します。 - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/_shared/search.mdx b/docs/xplat/src/content/jp/components/grids/_shared/search.mdx index 878c7badc7..52e140a11a 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/search.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/search.mdx @@ -381,7 +381,9 @@ const handleOnSearchChange = (event: IgrComponentValueChangedEventArgs) => { - グリッドの `LastSearchInfo.MatchInfoCache.Length` 値は検索で見つかった個数です。 - グリッドの `LastSearchInfo.ActiveMatchIndex` 値は、現在の一致 (出現) のインデックス位置です。 + + ```html
@@ -392,7 +394,6 @@ const handleOnSearchChange = (event: IgrComponentValueChangedEventArgs) => {
``` -
### 検索ボタンの追加 diff --git a/docs/xplat/src/content/jp/components/grids/_shared/sorting.mdx b/docs/xplat/src/content/jp/components/grids/_shared/sorting.mdx index 1e0612ab7e..aec337749f 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/sorting.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/sorting.mdx @@ -807,15 +807,21 @@ const sortDescendingHeaderIconTemplate = (ctx: IgrGridHeaderTemplateContext) => ## ソート インジケーター テンプレート 列ヘッダーのソート インジケーター アイコンは、テンプレートを使用してカスタマイズできます。次のプロパティは、任意のソート状態 (昇順、降順、なし) のソート インジケーターをテンプレート化するために使用できます。 + + ```html unfold_more ``` + + - `IgxSortHeaderIconDirective` – ソートが適用されない場合にソート アイコンを再テンプレート化します。 + + ```razor <{ComponentSelector} SortHeaderIconTemplate="SortDefaultTemplate"> @@ -826,9 +832,13 @@ const sortDescendingHeaderIconTemplate = (ctx: IgrGridHeaderTemplateContext) => }; } ``` + + - `SortHeaderIconTemplate` – ソートが適用されない場合にソート アイコンを再テンプレート化します。 + + ```ts constructor() { var grid = this.grid = document.getElementById('grid') as {ComponentName}Component; @@ -840,11 +850,15 @@ public sortHeaderIconTemplate = (ctx: IgcGridHeaderTemplateContext) => { return html``; } ``` + + - `IgxSortAscendingHeaderIconDirective` – 列が昇順にソートされたときにソート アイコンを再テンプレート化します。 - `SortAscendingHeaderIconTemplate` – 列が昇順にソートされたときにソート アイコンを再テンプレート化します。 + + ```tsx const sortHeaderIconTemplate = (ctx: IgrGridHeaderTemplateContext) => { return ( @@ -856,22 +870,30 @@ const sortHeaderIconTemplate = (ctx: IgrGridHeaderTemplateContext) => { <{ComponentSelector} sortHeaderIconTemplate={sortHeaderIconTemplate}> ``` + + - `IgxSortDescendningHeaderIconDirective` – 列が降順でソートされたときにソート アイコンを再テンプレート化します。 - `SortDescendingHeaderIconTemplate` – 列が降順にソートされたときにソート アイコンを再テンプレート化します。 + + ```html expand_less ``` + + $custom-theme: grid-theme( $sorted-header-icon-color: color($custom-palette, "secondary", 500), $sortable-header-icon-hover-color: color($custom-palette, "primary", 500) ); + + ```razor <{ComponentSelector} SortAscendingHeaderIconTemplate="SortAscendingTemplate"> @@ -882,7 +904,9 @@ $custom-theme: grid-theme( }; } ``` + + // Extending the light grid schema $custom-grid-schema: extend($_light-grid, ( @@ -890,7 +914,9 @@ $custom-grid-schema: extend($_light-grid, sortable-header-icon-hover-color: (igx-color:('primary', 500)) ) ); + + ```ts constructor() { var grid = this.grid = document.getElementById('grid') as {ComponentName}Component; @@ -902,7 +928,9 @@ public sortAscendingHeaderIconTemplate = (ctx: IgcGridHeaderTemplateContext) => return html``; } ``` + + // Extending the global light-schema $my-custom-schema: extend($light-schema, ( @@ -915,7 +943,9 @@ $custom-theme: grid-theme( $palette: $custom-palette, $schema: $my-custom-schema ); + + ```tsx const sortAscendingHeaderIconTemplate = (ctx: IgrGridHeaderTemplateContext) => { return ( @@ -927,7 +957,6 @@ const sortAscendingHeaderIconTemplate = (ctx: IgrGridHeaderTemplateContext) => { <{ComponentSelector} sortAscendingHeaderIconTemplate={sortAscendingHeaderIconTemplate}> ``` - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/summaries.mdx b/docs/xplat/src/content/jp/components/grids/_shared/summaries.mdx index 88a0da9669..b378d30302 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/summaries.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/summaries.mdx @@ -1463,24 +1463,36 @@ Then set the related CSS properties for that class: ## デモ 次に、そのクラスに関連する CSS プロパティを設定します。 + + ```html <{ComponentSelector} class="hierarchicalGrid"> ``` + + Following the simplest approach, we create a new theme that extends the and accepts the `$background-color`, `$focus-background-color`, `$label-color`, `$result-color`, `$pinned-border-width`, `$pinned-border-style` and `$pinned-border-color` parameters. + + ```razor <{ComponentSelector} class="hierarchicalGrid"> ``` + + The last step is to **include** the component mixins: + + ```tsx <{ComponentSelector} className="hierarchicalGrid"> ``` + + If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: @@ -1491,6 +1503,9 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) @include grid-summary($custom-theme); } } + + + ```css .hierarchicalGrid { --ig-grid-summary-background-color:#e0f3ff; @@ -1499,12 +1514,16 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) --ig-grid-summary-result-color: black; } ``` + + $blue-color: #7793b1; $green-color: #00ff2d; $my-custom-palette: palette($primary: $blue-color, $secondary: $green-color); + + ``` And then with we can easily retrieve color from the palette. @@ -1520,7 +1539,9 @@ $custom-theme: grid-summary-theme( $pinned-border-color: color($my-custom-palette, "secondary", 500) ); ``` + + The `igx-color` and `igx-palette` are powerful functions for generating and retrieving colors. Please refer to [Palettes](../themes/palettes.mdx) topic for detailed guidance on how to use them. @@ -1530,7 +1551,9 @@ The `igx-color` and `igx-palette` are powerful functions for generating and retr Going further with the theming engine, you can build a robust and flexible structure that benefits from [**schemas**](../themes/sass/schemas.mdx). A **schema** is a recipe of a theme. Extend one of the two predefined schemas, that are provided for every component, in this case - : + + ```scss // Extending the light grid summary schema $my-summary-schema: extend($_light-grid-summary, @@ -1545,9 +1568,13 @@ $my-summary-schema: extend($_light-grid-summary, ) ); ``` + + In order to apply our custom schema we have to **extend** one of the globals ( or ), which is basically pointing out the components with a custom schema, and after that add it to the respective component themes: + + ```scss // Extending the global light-schema $my-custom-schema: extend($light-schema, @@ -1562,12 +1589,12 @@ $custom-theme: grid-summary-theme( $schema: $my-custom-schema ); ``` + + Don't forget to include the themes in the same way as it was demonstrated above. - - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/_shared/toolbar.mdx b/docs/xplat/src/content/jp/components/grids/_shared/toolbar.mdx index ad906269f7..5fc5e065c1 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/toolbar.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/toolbar.mdx @@ -1394,25 +1394,39 @@ This replaces the old toolbar template directive. If you are migrating from a ve 定義済みのテーマに加えて、利用可能な [CSS プロパティ](../theming-grid.mdx)のいくつかを設定することで、グリッドをさらにカスタマイズできます。 一部の色を変更したい場合は、最初にグリッドのクラスを設定する必要があります。 + + ```html <{ComponentSelector} class="grid"> ``` + + 次に、そのクラスに関連する CSS プロパティを設定します。 + + ```razor <{ComponentSelector} class="grid"> ``` + + Now, create a new theme that extends the and modify the `$background-color` and the `$title-text-color` parameters. + + ```tsx <{ComponentSelector} className="grid"> ``` + + To theme the column actions menus of the toolbar, we have to change the theme of the `column-actions-theme` component. + + ```css .grid { --ig-grid-toolbar-background-color: #2a2b2f; @@ -1420,9 +1434,13 @@ To theme the column actions menus of the toolbar, we have to change the theme of --ig-grid-toolbar-dropdown-background: #2a2b2f; } ``` + + Since the column actions are using other components - igx-button, igx-checkbox, and igx-input-group, we need to change their themes to match our new toolbar theme. + + ```scss $dark-button-theme: button-theme( $palette: $my-dark-palette, @@ -1440,9 +1458,13 @@ $dark-input-group-theme: input-group-theme( $palette: $my-dark-palette ); ``` + + The last step is to **include** the newly created themes. + + ```scss :host { @include grid-toolbar($dark-grid-toolbar-theme); @@ -1452,11 +1474,15 @@ The last step is to **include** the newly created themes. @include button($dark-button-theme); } ``` + + If `$legacy-support` is set to `false(default)`, include the component css variables like that: + + ```scss :host { @include css-vars($dark-grid-toolbar-theme); @@ -1466,11 +1492,15 @@ If `$legacy-support` is set to `false(default)`, include the component css varia @include css-vars($dark-button-theme); } ``` + + If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) ViewEncapsulation, it is necessary to `penetrate` this encapsulation using `::ng-deep`: + + ```scss :host { ::ng-deep { @@ -1482,13 +1512,14 @@ If the component is using an [Emulated](../themes/styles.mdx#view-encapsulation) } } ``` + + ### デモ - diff --git a/docs/xplat/src/content/jp/components/grids/_shared/virtualization.mdx b/docs/xplat/src/content/jp/components/grids/_shared/virtualization.mdx index 97f34131be..90dd36597c 100644 --- a/docs/xplat/src/content/jp/components/grids/_shared/virtualization.mdx +++ b/docs/xplat/src/content/jp/components/grids/_shared/virtualization.mdx @@ -57,7 +57,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; グリッド内の既存テンプレートをカスタマイズする場合、Blazor では次の 2 つの方法でテンプレートを定義できます。 - サーバー側テンプレート: 関連するコンポーネント プロパティ (例: プロパティ) を使用、またはテンプレート名を宣言的に指定。例: + + ```razor @@ -65,11 +67,15 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ``` + + 最初にサーバーからテンプレートを取得・解決した後にレンダリングされます。 - クライアント テンプレート: プロパティの `Script` 版 (例: `BodyTemplateScript`) を使用して、クライアント側関数ハンドラ名ーを設定。 + + ```razor @@ -82,13 +88,14 @@ igRegisterScript("CellTemplate", (ctx) => { }, false); ``` + + クライアント テンプレート: プロパティの `Script` 版 (例: `BodyTemplateScript`) を使用して、クライアント側関数ハンドラ名ーを設定。 両方の方法が有効ですが、サーバー側テンプレートはカスタム テンプレートの取得・解決のためにサーバーとの往復通信が必要となり、クライアント レンダリングまでに遅延が発生する場合があります。そのため、多数のテンプレートを頻繁に更新するシナリオでは、より最適化された クライアント テンプレートの使用が推奨されます。 - ## 仮想化の制限 diff --git a/docs/xplat/src/content/jp/components/grids/data-grid.mdx b/docs/xplat/src/content/jp/components/grids/data-grid.mdx index e8bb69fdeb..3e1425dfa6 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid.mdx @@ -1151,13 +1151,12 @@ const columnPipeArgs: IgrColumnPipeArgs = { - - - ## グリッド データの構造 は**フラット データ**とネストされた **POJO (Plain old Java objects)** を処理します。描画に固有のデータ構造はフォームにあります。 + + ```typescript const OBJECT_ARRAY = [{ ObjectKey1: value1, @@ -1182,13 +1181,13 @@ const POJO = [{ // ... }]; ``` + + >**警告**: >**キー値に配列を含まないでください。** > 列を使用する場合、**データ キーが同一である必要があります**。 - - @@ -2316,19 +2315,20 @@ igRegisterScript("AddressEditCellTemplate", (ctx) => { - - - ## パフォーマンス (試験中) のデザインでは、Angular で導入されたイベント結合機能を利用できます。この機能は、インタラクションとレスポンシブの点で **20%** のパフォーマンスを向上します。この機能は、`bootstrapModule` メソッドで `ngZoneEventCoalescing` と `ngZoneRunCoalescing` プロパティを **true** に設定するだけでアプリケーション レベルで有効にできます。 + + ```typescript platformBrowserDynamic() .bootstrapModule(AppModule, { ngZoneEventCoalescing: true, ngZoneRunCoalescing: true }) .catch(err => console.error(err)); ``` + + これは `IgxGridComponent` の試験中の機能です。これは、グリッドで予期しない動作が発生する可能性があることを意味します。このような動作が発生した場合は、[Github]({GithubLink}/discussions) ページでお問い合わせください。 @@ -2336,8 +2336,6 @@ platformBrowserDynamic() 有効にすると、`IgxGridComponent` に関連しない Angular アプリケーションの他の部分に影響します。 - - diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx index 13fd688ff9..967f08769c 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx @@ -221,7 +221,9 @@ connectedCallback() { デフォルトの集計セットを拡張したい場合があります。たとえば、列の特定の値が表示される回数を表示する場合、カスタム集計が必要です。 以下のスニペットは、列に表示される 「USA」 値の数の Count を表示する方法を示します。 + + ```ts import { IgrProvideCalculatorEventArgs } from 'igniteui-react-core'; diff --git a/docs/xplat/src/content/jp/components/grids/grid/groupby.mdx b/docs/xplat/src/content/jp/components/grids/grid/groupby.mdx index c89b6ad051..1566f127f5 100644 --- a/docs/xplat/src/content/jp/components/grids/grid/groupby.mdx +++ b/docs/xplat/src/content/jp/components/grids/grid/groupby.mdx @@ -683,7 +683,6 @@ public getParsedDate(date: any) { - [{ProductName} テーマ ライブラリ](../themes/styles.mdx)でスタイルを設定できます。theme は、グリッドのすべての機能をカスタマイズできるさまざまなプロパティを公開します。 以下の手順では、グリッドの Group By スタイルをカスタマイズする手順を実行しています。 @@ -691,18 +690,24 @@ public getParsedDate(date: any) { ### グローバル テーマのインポート グループ化機能のカスタマイズは、すべてのスタイリング機能とミックスインが配置されている `index` ファイルをインポートする必要があります。 + + ```scss @use "igniteui-{Platform}/theming" as *; // IMPORTANT: Prior to {ProductName} version 13 use: // @import '~igniteui-{Platform}/lib/core/styles/themes/index'; ``` + + ### カスタム テーマの定義 次に、`grid-theme` を拡張し、必要に応じてピン固定をカスタマイズするために必要なパラメーターを受け入れる新しいテーマを作成します。Group By 機能で使用されるため、`chip-theme` を拡張する必要もあります。 + + ```scss $custom-theme: grid-theme( @@ -730,12 +735,16 @@ $custom-chips-theme: chip-theme( $hover-text-color: #e7e7e7 ); ``` + + ### カスタム カラー パレットの定義 上記で説明したアプローチでは、色の値がハード コーディングされていました。または、`palette` および `color` 関数を使用して、柔軟性を高めることができます。 `palette` generates a color palette, based on provided primary and secondary colors. + + ```scss $black-color: #292826; $yellow-color: #FFCD0F; @@ -745,9 +754,13 @@ $custom-palette: palette( $secondary: $yellow-color ); ``` + + カスタム パレットが生成された後、`color` 関数を使用して、さまざまな種類の原色と二次色を取得できます。 + + ```scss $custom-theme: grid-theme( $group-row-background: color($custom-palette, "primary", 300), @@ -768,12 +781,16 @@ $custom-chips-theme: chip-theme( $hover-text-color:contrast-color($custom-palette, "primary", 600) ); ``` + + ### カスタム スキーマの定義 [**スキーマ**](../themes/sass/schemas.mdx)のすべての利点を備えた柔軟な構造を構築できます。**スキーマ**はテーマを作成させるための方法です。 すべてのコンポーネントに提供される 2 つの事前定義されたスキーマのいずれかを拡張します。この場合、`$_light_grid` を使用します。 + + ```scss $custom-grid-schema: extend($_light-grid,( group-row-background: (-color:('secondary', 100)), @@ -787,9 +804,13 @@ $custom-grid-schema: extend($_light-grid,( expand-icon-hover-color: (-color:('primary', 400)) )); ``` + + カスタム スキーマを適用するには、`light` グローバルまたは `dark` グローバルを拡張する必要があります。プロセス全体が実際にコンポーネントにカスタム スキーマを提供し、その後、それぞれのコンポーネントテーマに追加します。 + + ```scss $my-custom-schema: extend($light-schema, ( -grid: $custom-grid-schema @@ -800,16 +821,22 @@ $custom-theme: grid-theme( $schema: $my-custom-schema ); ``` + + ### カスタム テーマの適用 テーマを適用する最も簡単な方法は、グローバル スタイル ファイルに `sass` `@include` ステートメントを使用することです。 + + ```scss @include grid($custom-theme); @include chip($custom-chips-theme); ``` + + ### スコープ コンポーネント テーマ カスタム テーマが特定のコンポーネントのみに影響するように、定義したすべてのスタイルをグローバル スタイル ファイルからカスタム コンポーネントのスタイルファイルに移動できます (`index` ファイルのインポートを含む)。 @@ -823,7 +850,9 @@ $custom-theme: grid-theme( ステートメントがコンポーネントの外にある要素に影響を与えないよう、ステートメントを `:host` セレクター内にラップします。 + + ```scss :host { ::ng-deep { @@ -832,8 +861,9 @@ $custom-theme: grid-theme( } } ``` + - + ### デモ @@ -843,7 +873,6 @@ $custom-theme: grid-theme( サンプルは、**テーマの変更**で選択したグローバル テーマの影響を受けません。 - ## 既知の問題と制限 diff --git a/docs/xplat/src/content/jp/components/grids/grid/paste-excel.mdx b/docs/xplat/src/content/jp/components/grids/grid/paste-excel.mdx index 980603470a..01c70ea28e 100644 --- a/docs/xplat/src/content/jp/components/grids/grid/paste-excel.mdx +++ b/docs/xplat/src/content/jp/components/grids/grid/paste-excel.mdx @@ -474,12 +474,12 @@ function updateRecords(processedData) { - ## 使用方法 `paste-handler` ディレクティブ (次のセクションにコードがあります) を に追加して `onDataProcessed` イベントを処理する必要があります。`onDataProcessed` イベントに配列フォームの Excel データへアクセスを与えるパラメーターがあります。詳細については、`addRecords` と `updateRecords` メソッドを参照してください。 + - + ```html @@ -580,11 +580,15 @@ function updateRecords(processedData) { } } ``` + + ## Paste Handler (貼り付けハンドラー) ディレクディブ `paste-handler` の実装です。クリップボードから張り付けたデータを受け取るために使用される DOM `textarea` 要素をコードで作成します。データを `textarea` に張り付ける際にディレクティブはそれを配列へ解析し、解析データを渡すカスタム イベント `onDataProcessed` を発生します。 + + ```typescript import { Directive, EventEmitter, HostListener, Output} from "@{Platform}/core"; @@ -662,7 +666,6 @@ export class PasteHandler { } } ``` - diff --git a/docs/xplat/src/content/jp/components/grids/hierarchical-grid/overview.mdx b/docs/xplat/src/content/jp/components/grids/hierarchical-grid/overview.mdx index cc11ac0290..8b4cac83c7 100644 --- a/docs/xplat/src/content/jp/components/grids/hierarchical-grid/overview.mdx +++ b/docs/xplat/src/content/jp/components/grids/hierarchical-grid/overview.mdx @@ -808,7 +808,6 @@ CRUD API メソッドの呼び出しは,各グリッド インスタンスで可 - ## スタイル設定 igxHierarchicalGrid を使用すると、[Ignite UI for Angular Theme ライブラリ](../themes/sass/component-themes.mdx) でスタイルを設定できます。 は、グリッドのすべての機能をカスタマイズできるさまざまなプロパティを公開します。 @@ -816,19 +815,24 @@ igxHierarchicalGrid を使用すると、[Ignite UI for Angular Theme ライブ ### グローバル テーマのインポート 階層グリッドのカスタマイズは、すべてのスタイリング機能と mixins が配置されている `index` ファイルをインポートする必要があります。 + + ```scss @import '~igniteui-angular/lib/core/styles/themes/index' ``` + + ### カスタム テーマの定義 次に、 を拡張し、必要に応じて階層グリッドをカスタマイズするために必要なパラメーターを受け取る新しいテーマを作成します。 特定の `sass` 階層グリッド機能はありません。 + - + ```scss $custom-theme: grid-theme( $cell-active-border-color: #ffcd0f, @@ -843,7 +847,9 @@ $custom-theme: grid-theme( $row-highlight: #ffcd0f ); ``` + + ### カスタム カラー パレットの定義 上記で説明したアプローチでは、色の値がハード コーディングされていました。または、 および 関数を使用して、柔軟性を高めることができます。 `igx-palette` は指定した一次色と二次色に基づいてカラーパレットを生成します。 @@ -856,6 +862,9 @@ $custom-palette: palette( $primary: $black-color, $secondary: $yellow-color ); + + + ``` カスタム パレットが生成された後、`igx-color` 関数を使用して、さまざまな種類の原色と二次色を取得できます。 @@ -874,11 +883,15 @@ $custom-theme: grid-theme( $row-highlight: (igx-color($custom-palette, "secondary", 500)) ); ``` + + ### カスタム スキーマの定義 [**schema**](../themes/sass/schemas.mdx) のすべての利点を備えた柔軟な構造を構築できます。**schema** はテーマを作成させるための方法です。 すべてのコンポーネントに提供される 2 つの事前定義されたスキーマのいずれかを拡張します。この場合、`$_light_grid` を使用します。 + + ```scss $custom-grid-schema: extend($_light-grid,( cell-active-border-color: (igx-color:('secondary', 500)), @@ -893,9 +906,13 @@ $custom-grid-schema: extend($_light-grid,( row-highlight: (igx-color:('secondary', 500)) )); ``` + + カスタム スキーマを適用するには、`light` グローバルまたは `dark` グローバルを拡張する必要があります。プロセス全体が実際にコンポーネントにカスタム スキーマを提供し、その後、それぞれのコンポーネントテーマに追加します。 + + ```scss $my-custom-schema: extend($light-schema, ( igx-grid: $custom-grid-schema @@ -906,14 +923,20 @@ $custom-theme: grid-theme( $schema: $my-custom-schema ); ``` + + ### カスタム テーマの適用 テーマを適用する最も簡単な方法は、グローバル スタイル ファイルに `sass` `@include` ステートメントを使用することです。 + + ```scss @include grid($custom-theme); ``` + + ### スコープ コンポーネント テーマ カスタム テーマが特定のコンポーネントのみに影響するように、定義したすべてのスタイルをグローバル スタイル ファイルからカスタム コンポーネントのスタイルファイルに移動できます (`index` ファイルのインポートを含む)。 @@ -927,7 +950,9 @@ $custom-theme: grid-theme( ステートメントがコンポーネントの外にある要素に影響を与えないよう、ステートメントを `:host` セレクター内にラップします。 + + ```scss :host { ::ng-deep { @@ -935,7 +960,9 @@ $custom-theme: grid-theme( } } ``` + + ### サンプル diff --git a/docs/xplat/src/content/jp/components/grids/pivot-grid/features.mdx b/docs/xplat/src/content/jp/components/grids/pivot-grid/features.mdx index a3d1d4ca48..ef565fecde 100644 --- a/docs/xplat/src/content/jp/components/grids/pivot-grid/features.mdx +++ b/docs/xplat/src/content/jp/components/grids/pivot-grid/features.mdx @@ -37,8 +37,6 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - ## ディメンション フィルタリング すべてのディメンション (フィルター、行、列) は、チップ UI または API を介してフィルター処理できます。この機能は埋め込まれており、デフォルトで有効になっています。 @@ -55,7 +53,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ディメンションは、ディメンションの `filter` プロパティを使用して のディメンション構成を介して最初にフィルター処理することもできます。 これは、関連するフィルター条件を使用して新しい に設定できます。例えば: + + ```typescript public filterExpTree = new FilteringExpressionsTree(FilteringLogic.And); @@ -79,7 +79,6 @@ public pivotConfigHierarchy: IPivotConfiguration = { ] } ``` - diff --git a/docs/xplat/src/content/jp/components/inputs/select.mdx b/docs/xplat/src/content/jp/components/inputs/select.mdx index 2892db1774..79de092a0b 100644 --- a/docs/xplat/src/content/jp/components/inputs/select.mdx +++ b/docs/xplat/src/content/jp/components/inputs/select.mdx @@ -367,9 +367,6 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css'; - - - ## スタイル設定 以下に示す公開された CSS パーツを使用して、{ProductName} コンポーネントとその項目の外観を変更できます。 @@ -399,7 +396,9 @@ import 'igniteui-webcomponents/themes/light/bootstrap.css'; | パーツ名 | 説明 | | ---------|------------ | | `label` | 選択したグループ項目の上にコンテンツを描画するラベル ラッパー。 | + + ```css igc-select::part(base) { background: var(--ig-primary-50); @@ -419,11 +418,10 @@ igc-select::part(suffix) { background: var(--ig-secondary-500); } ``` + + - - - diff --git a/docs/xplat/src/content/jp/components/linear-gauge.mdx b/docs/xplat/src/content/jp/components/linear-gauge.mdx index 4eac9feaa7..c630e0d6c2 100644 --- a/docs/xplat/src/content/jp/components/linear-gauge.mdx +++ b/docs/xplat/src/content/jp/components/linear-gauge.mdx @@ -28,17 +28,16 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - ## 依存関係 {Platform} gauge コンポーネントをインストールするときに core パッケージもインストールする必要があります。 + + ```cmd npm install --save {PackageCore} npm install --save {PackageGauges} ``` - diff --git a/docs/xplat/src/content/jp/components/radial-gauge.mdx b/docs/xplat/src/content/jp/components/radial-gauge.mdx index c0b550436a..0c7569fab4 100644 --- a/docs/xplat/src/content/jp/components/radial-gauge.mdx +++ b/docs/xplat/src/content/jp/components/radial-gauge.mdx @@ -29,17 +29,16 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - ## 依存関係 gauge コンポーネントをインストールするときに core パッケージもインストールする必要があります。 + + ```cmd npm install --save {PackageCore} npm install --save {PackageGauges} ``` - diff --git a/docs/xplat/src/content/jp/components/spreadsheet-conditional-formatting.mdx b/docs/xplat/src/content/jp/components/spreadsheet-conditional-formatting.mdx index 717dea2e29..fda719d393 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-conditional-formatting.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-conditional-formatting.mdx @@ -106,11 +106,15 @@ import { FormatConditionTimePeriod } from 'igniteui-webcomponents-excel'; import { FormatConditionTopBottom } from "igniteui-webcomponents-excel"; import { WorkbookColorInfo } from 'igniteui-webcomponents-excel'; ``` + + ## コード スニペット 以下のコード スニペットは、 コントロールのスプレッドシートに各条件付き書式を追加する方法を示しています。 + + ```ts let sheet = this.spreadsheet.activeWorksheet; @@ -172,8 +176,9 @@ textFormat.cellFormat.font.colorInfo = new WorkbookColorInfo(red); let uniqueFormat = sheet.conditionalFormats().addUniqueCondition("O1:O10"); uniqueFormat.cellFormat.font.colorInfo = new WorkbookColorInfo(blue); ``` + - + ## API リファレンス
@@ -193,6 +198,4 @@ uniqueFormat.cellFormat.font.colorInfo = new WorkbookColorInfo(blue);


- -
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-data-validation.mdx b/docs/xplat/src/content/jp/components/spreadsheet-data-validation.mdx index c355027be5..81107228ad 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-data-validation.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-data-validation.mdx @@ -70,12 +70,15 @@ import { OneConstraintDataValidationRule } from 'igniteui-webcomponents-excel'; import { TwoConstraintDataValidationOperator } from 'igniteui-webcomponents-excel'; import { TwoConstraintDataValidationRule } from 'igniteui-webcomponents-excel'; ``` + - + ## 使用方法 以下のコード スニペットは、データの検証規則を設定する方法を示します。 + + ```ts // this validation rule has only input message set const valRule1 = new AnyValueDataValidationRule(); @@ -147,7 +150,6 @@ this.spreadsheet.workbook.worksheets(0).rows(7).cells(1).dataValidationRule = va this.spreadsheet.workbook.worksheets(0).rows(7).cells(1).value = checkOutDate.toLocaleDateString(); this.spreadsheet.workbook.worksheets(0).rows(7).cells(0).value = "Check Out Date"; ``` - ## API References diff --git a/docs/xplat/src/content/jp/components/spreadsheet-hyperlinks.mdx b/docs/xplat/src/content/jp/components/spreadsheet-hyperlinks.mdx index 236a628e34..0e478e97cd 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-hyperlinks.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-hyperlinks.mdx @@ -53,20 +53,23 @@ import { WorksheetHyperlink } from 'igniteui-react-excel'; ```ts import { WorksheetHyperlink } from 'igniteui-webcomponents-excel'; ``` + + ## コード スニペット 以下のコード スニペットは、{Platform} コントロールで現在表示されているワークシートにハイパーリンクを追加する方法を示しています。 + + ```ts this.spreadsheet.activeWorksheet.hyperlinks().add(new WorksheetHyperlink("A1", "http://www.infragistics.com", "Infragistics", "Infragistics Home Page")); ``` + - + ## API リファレンス

- -
diff --git a/docs/xplat/src/content/jp/components/themes/overview.mdx b/docs/xplat/src/content/jp/components/themes/overview.mdx index 835b80fbda..08b826c110 100644 --- a/docs/xplat/src/content/jp/components/themes/overview.mdx +++ b/docs/xplat/src/content/jp/components/themes/overview.mdx @@ -54,7 +54,6 @@ import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBloc - | 名前 | バリアント | 場所 | | ----------- | ------- | ------------------------------------------------- | | **Bootstrap** | ライト | igniteui-webcomponents/themes/light/bootstrap.css | @@ -75,14 +74,18 @@ import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBloc {ProductName} を使用すると、ライブラリによってエクスポートされた `ConfigureTheme` 関数を使用して、実行時にコンポーネントのテーマを切り替えることができます。 それを呼び出して、4 つの有効なテーマ (`bootstrap`、`material`、`fluent`、または `indigo`) のいずれかを文字列として渡すと、読み込まれたコンポーネントのスタイルが変更されます。 + + ```ts import { configureTheme } from "igniteui-webcomponents"; // Sets material as the theme to be used by all components configureTheme("material"); ``` + + これは、内部スタイルを目的のテーマに切り替えるようにコンポーネントに指示するだけで、グローバル テーマ ファイルも上記のファイルのいずれかに切り替える必要があります。 diff --git a/docs/xplat/src/content/jp/components/zoomslider-overview.mdx b/docs/xplat/src/content/jp/components/zoomslider-overview.mdx index 49af793c42..bbba1a1292 100644 --- a/docs/xplat/src/content/jp/components/zoomslider-overview.mdx +++ b/docs/xplat/src/content/jp/components/zoomslider-overview.mdx @@ -41,17 +41,16 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - ## 依存関係 {Platform} chart コンポーネントをインストールするときに core パッケージもインストールする必要があります。 + + ```cmd npm install --save {PackageCore} npm install --save {PackageCharts} ``` - From 74049fe00e2c1a928e71ae64bbb5e0622e7f0d7a Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 11:46:44 -0400 Subject: [PATCH 037/155] Collapse the axis performance guidelines, and drop a property that does not exist MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Axis Intervals and Axis Labels Visibility each show one guideline on the three charts that have it, which is what a fence with an array body emits: several definitions in order, separated by a blank line, as the hand written blocks were. The page has shown xAxisInterval on the financial chart on all four platforms, and FinancialChart has no such property — a time based x axis, and some forty other xAxis properties, but not an interval. The schema rejected it, which is how it surfaced. The snippet sets only yAxisInterval there. CategoryChart has both and is unchanged. Data Structure and Data Filtering stay hand written: they teach a FlattenDataSource helper the reader writes, which is not a component to describe. Also joins several definitions with exactly one blank line rather than however many the last of them ended with, which is whitespace only across every collapsed page. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 21 ++ docs/xplat/scripts/generate.mjs | 3 + .../charts/features/chart-performance.mdx | 181 ++++++------------ .../charts/features/chart-performance.mdx | 181 ++++++------------ 4 files changed, 134 insertions(+), 252 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index db80a9f843..a8d07a99c1 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -554,6 +554,27 @@ The same check turns up two other kinds of root that are not components and neve ## chart-performance +### The axis guidelines showed a property the financial chart does not have + +Axis Intervals and Axis Labels Visibility each demonstrate one guideline on the three charts that +have it, so each is one fence with an **array body** — several definitions, emitted in order with a +blank line between, which is the shape the hand written blocks had. + +Collapsing them caught an error the page has carried on all four platforms: + +```html + +``` + +`FinancialChart` has no `xAxisInterval`. It has some forty other `xAxis` properties, and a time based +x axis, which is presumably why an interval is not among them. `CategoryChart` has both. The +collapsed snippet sets only `yAxisInterval` there; the schema rejects the other, which is how it came +to light. Label visibility is fine on both charts and is unchanged. + +Data Structure and Data Filtering are not collapsed. They teach a `FlattenDataSource` helper the +reader writes, which is not a component. + + Three sections collapsed. Axis Types needed the array form — a snippet body that is a list of definitions rather than one — because it shows a FinancialChart and a DataChart side by side, and neither is a child of the other. It is the only place in the set that needs it. diff --git a/docs/xplat/scripts/generate.mjs b/docs/xplat/scripts/generate.mjs index 6f171aab4c..f9a09edfe5 100644 --- a/docs/xplat/scripts/generate.mjs +++ b/docs/xplat/scripts/generate.mjs @@ -776,6 +776,9 @@ function transformJsonSnippets(content) { styleDefaults, })) .filter(one => one !== null && one.trim() !== '') + // Trimmed before joining: several definitions in one block are separated by one + // blank line, not by however many the last of them happened to end with. + .map(one => one.trim()) .join('\n\n'); } else { // Several regions can be asked for at once, and the delimiter between their names diff --git a/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx b/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx index 2a1af96d34..e649c77c1e 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx @@ -288,66 +288,35 @@ We do not recommend setting axis minor interval as it will decrease chart perfor This code snippet shows how to set axis major interval in the {Platform} charts. - - -```razor - - - - - - - - -``` - - - - - -```html - - - - - - - - -``` - - - - - -```tsx - - - - - - - - -``` - - - - - -```html - - - - - - - - +```json-snippet +[ + { + "type": "CategoryChart", + "xAxisInterval": 5, + "yAxisInterval": 50 + }, + { + "type": "FinancialChart", + "yAxisInterval": 50 + }, + { + "type": "DataChart", + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "interval": 5 + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "interval": 50 + } + ] + } +] ``` - - ### Axis Scale Setting the property to false is recommended for higher performance, as fewer operations are needed than calculating axis range and values of axis labels in logarithmic scale. @@ -358,76 +327,36 @@ In the same way as Markers, axis labels are also expensive because they use temp This code snippet shows how to hide axis labels in the {Platform} charts. - - -```razor - - - - - - - - - - -``` - - - - - -```html - - - - - - - - - - -``` - - - - - -```tsx - - - - - - - - -``` - - - - - -```html - - - - - - - - - - +```json-snippet +[ + { + "type": "CategoryChart", + "xAxisLabelVisibility": "Collapsed", + "yAxisLabelVisibility": "Collapsed" + }, + { + "type": "FinancialChart", + "xAxisLabelVisibility": "Collapsed", + "yAxisLabelVisibility": "Collapsed" + }, + { + "type": "DataChart", + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "labelVisibility": "Collapsed" + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "labelVisibility": "Collapsed" + } + ] + } +] ``` - - ### Axis Labels Abbreviation Although, the {Platform} charts support abbreviation of large numbers (e.g. 10,000+) displayed in axis labels when is set to true. We recommend, instead pre-processing large values in your data items by dividing them a common factor and then setting to a string that represents factor used used to abbreviate your data values. diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx index e342e0edb4..46a4b88c18 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx @@ -287,66 +287,35 @@ this.Chart.excludedProperties = [ "CHN", "FRN", "GER" ]; このコード スニペットは、{Platform} チャートで軸の主間隔を設定する方法を示しています。 - - -```razor - - - - - - - - -``` - - - - - -```html - - - - - - - - -``` - - - - - -```tsx - - - - - - - - -``` - - - - - -```html - - - - - - - - +```json-snippet +[ + { + "type": "CategoryChart", + "xAxisInterval": 5, + "yAxisInterval": 50 + }, + { + "type": "FinancialChart", + "yAxisInterval": 50 + }, + { + "type": "DataChart", + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "interval": 5 + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "interval": 50 + } + ] + } +] ``` - - ### 軸スケール プロパティを false に設定すると、パフォーマンスを向上させるために推奨されます。対数目盛で軸範囲と軸ラベルの値を計算するよりも操作が少なくて済むためです。 @@ -357,76 +326,36 @@ this.Chart.excludedProperties = [ "CHN", "FRN", "GER" ]; このコード スニペットは、{Platform} チャートで軸ラベルを非表示にする方法を示しています。 - - -```razor - - - - - - - - - - -``` - - - - - -```html - - - - - - - - - - -``` - - - - - -```tsx - - - - - - - - -``` - - - - - -```html - - - - - - - - - - +```json-snippet +[ + { + "type": "CategoryChart", + "xAxisLabelVisibility": "Collapsed", + "yAxisLabelVisibility": "Collapsed" + }, + { + "type": "FinancialChart", + "xAxisLabelVisibility": "Collapsed", + "yAxisLabelVisibility": "Collapsed" + }, + { + "type": "DataChart", + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "labelVisibility": "Collapsed" + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "labelVisibility": "Collapsed" + } + ] + } +] ``` - - ### 軸ラベルの省略形 ただし、{Platform} チャートは、 が true に設定されている場合に、軸ラベルに表示される大きな数値 (10,000 以上など) の省略形をサポートします。代わりに、データ 項目の大きな値を公約数で除算して前処理し、 をデータ値の省略形に使用される約数を表す文字列に設定することをお勧めします。 From f1630f16e86ac18e99c7ff463172868d147955d4 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 15:10:14 -0400 Subject: [PATCH 038/155] Collapse geo-map-shape-styling, the last hand written DV topic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Four sections — random, scale, range and comparison styling — each configured a helper from ShapeStylingUtility and wired it to styleShape, on three web platforms, by hand. What was published did not compile: all four called getStyle(), where the utility, both on its own topic and in the sample that runs, defines generate(). Three also read this.ShapeRandomStyling where the field is this.shapeRandomStyling. Each section is now one snippet against a sample built from the downstream one, with the utility carried by a supporting item the four styling items require. Two changes a reader sees, both deliberate. The import of the utility is gone, because a generated sample has no such import — the types are peers of the component — and the prose still names the class and its topic still publishes the file. And the snippets now show the shapefile load and the series construction that the hand written ones elided with "// ...". The teaching stays imperative throughout, which audit-imperative.py confirms. 94 snippets valid on every platform, en and jp identical. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 73 +++ docs/xplat/scripts/generate.mjs | 2 +- .../en/components/geo-map-shape-styling.mdx | 421 ++---------------- .../jp/components/geo-map-shape-styling.mdx | 421 ++---------------- 4 files changed, 170 insertions(+), 747 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index a8d07a99c1..df73f2fa50 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -821,3 +821,76 @@ The section says "all above code snippets are combined into one code block below definition the union of the sections above it and no single sample backs it, so it is written inline rather than pinned. Built from the collapsed form of groups 2–8, which means it inherits the two decisions above: `value=50` from Highlight Value, and the overlaid tick extents. + +## Types a handler needs beside it: supporting items + +An event handler item's content lands inside the generated component's class, so a class the handler +depends on had nowhere to go. `GetItemType` also made the two shapes mutually exclusive: a file with +a `//begin data` region is a data item and its handler region is never read, so "put the types in the +data region of the same item" was not open either. Nesting the type inside the handler region works +in C# and only in C# — Kotlin, Swift and the rest of what is coming do not all offer nested types — +so that was not the answer. + +A new item type carries them. `CodeGenerationLibraryItemType.Supporting`: a folder whose per-platform +files hold a `//begin supportingTypes` region, emitted at the same scope as the component through a +`supportingTypes` insertion point every sample template now has. In a razor file that scope is the +component's own class, since a razor file has no namespace scope; everywhere else it is a peer. + +A handler names what it needs in its configuration, not in the sample: + + MapShapeRandomStyling/Web-CONFIG.json + { "requires": ["ShapeStylingUtility"] } + +Declared on the item rather than in the sample so a sample naming the handler gets the types without +knowing they exist, and so the item stays self sufficient wherever it is used. The list is flat and +is not followed further — a supporting item requires nothing itself. + +**Dedup is by item name, which is why it is an item.** Two handlers requiring the same types produce +one copy: each name goes through the same set that already stops a handler being emitted twice, and +the first mention decides where the declarations land, which keeps a base class ahead of what extends +it. The alternative considered — a labelled `supportingCode` region inside each handler item — was +rejected for exactly this: it duplicates the content in every item that needs it and has to invent an +identity space (labels) to deduplicate what it duplicated, with the label unverified against the code +inside it. Symbol-level dedup was rejected earlier still: it means parsing declarations in every +language the library targets. + +Emitted on a channel of its own, `supporting`, deliberately not part of `handler`. A topic showing a +handler shows the lines that do the work; the helper class it calls into is usually a separate topic. +A snippet asking a handler for `channel="supporting"` gets the types the handler requires, because +the emission is recorded under the requiring item's name as well as its own — the request is +registered under the name the topic asked for, which is the handler. + +Not yet done: `LibraryProjectEmitter`, the harness that compiles library items, does not emit +supporting items — it writes one file per item through a per-platform scaffold that has no shape for +peer declarations. It logs the skip rather than passing over it silently. A handler requiring one +still generates correctly in a sample. + +## geo-map-shape-styling + +The last of the DataVisualization topics still hand written. Four sections — Random, Scale, Range and +Comparison — each configured a helper from `ShapeStylingUtility` and wired it to `styleShape`. What +was published did not compile: every one of the four called `getStyle(...)`, and the utility, both on +its own topic and in the sample that runs, defines `generate(...)`. Three of the four also read +`this.ShapeRandomStyling` where the field is `this.shapeRandomStyling`. + +Backported from `igniteui-wc-examples/samples/maps/geo-map/shape-styling`, the only downstream repo +that has it. That sample configures all four and switches between them from a dropdown, which the +code generation library cannot express, so it became four samples — `shape-styling-random`, `-scale`, +`-range`, `-comparison` — one per variant, each a map, a shapefile load and one styling. Four rather +than one because everything in `onViewInit` runs: four styling items on one sample would stack four +shape series on one map. + +`ShapeStylingUtility` is the supporting item the four variant items require, so the utility exists +once in the library rather than four times. + +Two changes to what a reader sees, both deliberate: + +- The `import { ShapeRandomStyling } from './ShapeStylingUtility'` line is gone. In a generated + sample there is no such import — the types are peers of the component — so the emitted snippet + cannot carry one. The prose still names the class, and its own topic still publishes the file. +- The snippets now show the shapefile load and the series construction around the styling, where the + hand written ones elided them with `// ...`. The teaching stays imperative throughout, which + `audit-imperative.py` confirms. + +The page's own sample is untouched: it still colours by continent through `ShapeFileStyling`, and the +four new samples back the snippets. diff --git a/docs/xplat/scripts/generate.mjs b/docs/xplat/scripts/generate.mjs index f9a09edfe5..81e6f791dc 100644 --- a/docs/xplat/scripts/generate.mjs +++ b/docs/xplat/scripts/generate.mjs @@ -867,7 +867,7 @@ const CODE_FENCE_LANG = { * The channels a handler contributes to — the handler itself, the region it lands in, and the * imports its types need. A sample's handlers are asked for these and left alone for the rest. */ -const HANDLER_CHANNELS = new Set(['handler', 'eventHandlers', 'handlersImports', 'allCode']); +const HANDLER_CHANNELS = new Set(['handler', 'eventHandlers', 'handlersImports', 'allCode', 'supporting', 'supportingTypes']); function marksPartOfItself(json) { try { diff --git a/docs/xplat/src/content/en/components/geo-map-shape-styling.mdx b/docs/xplat/src/content/en/components/geo-map-shape-styling.mdx index 7925963fed..d6ec93eb89 100644 --- a/docs/xplat/src/content/en/components/geo-map-shape-styling.mdx +++ b/docs/xplat/src/content/en/components/geo-map-shape-styling.mdx @@ -52,403 +52,78 @@ Shape styling requires that you import the following classes: This code snippet creates instances of **ShapeRandomStyling** that will randomly assign fill colors to the countries of the world. - - -```ts -import { ShapeRandomStyling } from './ShapeStylingUtility'; -// ... - -this.shapeRandomStyling = new ShapeRandomStyling(); -this.shapeRandomStyling.shapeStrokeColors = ['Black']; -this.shapeRandomStyling.shapeFillColors = ['#8C23D1', '#0E9759', '#B4D336', '#F2A464', '#D74545', 'DodgerBlue']; - -this.geoSeries = new IgxGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgxGeographicShapeSeries, args: IgxStyleShapeEventArgs) { - const itemRecord = args.item as IgxShapefileRecord; - const shapeStyle = this.ShapeRandomStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeRandomStyling } from './ShapeStylingUtility'; -// ... -this.shapeRandomStyling = new ShapeRandomStyling(); -this.shapeRandomStyling.shapeStrokeColors = ['Black']; -this.shapeRandomStyling.shapeFillColors = ['#8C23D1', '#0E9759', '#B4D336', '#F2A464', '#D74545', 'DodgerBlue']; - -this.geoSeries = new IgrGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgrGeographicShapeSeries, args: IgrStyleShapeEventArgs) { - const itemRecord = args.item as IgrShapefileRecord; - const shapeStyle = this.ShapeRandomStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeRandomStyling } from './ShapeStylingUtility'; -// ... -this.shapeRandomStyling = new ShapeRandomStyling(); -this.shapeRandomStyling.shapeStrokeColors = ['Black']; -this.shapeRandomStyling.shapeFillColors = ['#8C23D1', '#0E9759', '#B4D336', '#F2A464', '#D74545', 'DodgerBlue']; - -this.geoSeries = new IgcGeographicShapeSeriesComponent(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgcGeographicShapeSeriesComponent, args: IgcStyleShapeEventArgs) { - const itemRecord = args.item as IgcShapefileRecord; - const shapeStyle = this.ShapeRandomStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/shape-styling-random" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "zoomable": true + } + }, + "onViewInit": [ + "MapShapeRandomStyling" + ] } ``` - - ## Shape Scale Styling This code snippet creates instances of **ShapeScaleStyling** that will assign fill colors to shape of countries based on population scaled on logarithmic scale. - - -```ts -import { ShapeScaleStyling } from './ShapeStylingUtility'; -// ... -this.shapeScaleStyling = new ShapeScaleStyling(); -this.shapeScaleStyling.itemMinimumValue = 5000; -this.shapeScaleStyling.itemMaximumValue = 2000000000; // 2 Billions -this.shapeScaleStyling.itemMemberPath = 'Population'; -this.shapeScaleStyling.isLogarithmic = true; -this.shapeScaleStyling.defaultFill = 'Gray'; -this.shapeScaleStyling.shapeStrokeColors = ['Black']; -this.shapeScaleStyling.shapeFillColors = ['DodgerBlue', 'yellow', '#c2f542', '#e8c902', '#e8b602', '#e87902', 'brown']; - -this.geoSeries = new IgxGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgxGeographicShapeSeries, args: IgxStyleShapeEventArgs) { - const itemRecord = args.item as IgxShapefileRecord; - const shapeStyle = this.shapeScaleStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeScaleStyling } from './ShapeStylingUtility'; -// ... -this.shapeScaleStyling = new ShapeScaleStyling(); -this.shapeScaleStyling.itemMinimumValue = 5000; -this.shapeScaleStyling.itemMaximumValue = 2000000000; // 2 Billions -this.shapeScaleStyling.itemMemberPath = 'Population'; -this.shapeScaleStyling.isLogarithmic = true; -this.shapeScaleStyling.defaultFill = 'Gray'; -this.shapeScaleStyling.shapeStrokeColors = ['Black']; -this.shapeScaleStyling.shapeFillColors = ['DodgerBlue', 'yellow', '#c2f542', '#e8c902', '#e8b602', '#e87902', 'brown']; - -this.geoSeries = new IgrGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgrGeographicShapeSeries, args: IgrStyleShapeEventArgs) { - const itemRecord = args.item as IgrShapefileRecord; - const shapeStyle = this.shapeScaleStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeScaleStyling } from './ShapeStylingUtility'; -// ... -this.shapeScaleStyling = new ShapeScaleStyling(); -this.shapeScaleStyling.itemMinimumValue = 5000; -this.shapeScaleStyling.itemMaximumValue = 2000000000; // 2 Billions -this.shapeScaleStyling.itemMemberPath = 'Population'; -this.shapeScaleStyling.isLogarithmic = true; -this.shapeScaleStyling.defaultFill = 'Gray'; -this.shapeScaleStyling.shapeStrokeColors = ['Black']; -this.shapeScaleStyling.shapeFillColors = ['DodgerBlue', 'yellow', '#c2f542', '#e8c902', '#e8b602', '#e87902', 'brown']; - -this.geoSeries = new IgcGeographicShapeSeriesComponent(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgcGeographicShapeSeriesComponent, args: IgcStyleShapeEventArgs) { - const itemRecord = args.item as IgcShapefileRecord; - const shapeStyle = this.shapeScaleStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/shape-styling-scale" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "zoomable": true + } + }, + "onViewInit": [ + "MapShapeScaleStyling" + ] } ``` - - ## Shape Range Styling This code snippet creates instances of **ShapeRangeStyling** that will assign colors to shape of countries based on ranges of population. - - -```ts -import { ShapeRangeStyling } from './ShapeStylingUtility'; -// ... -this.shapeRangeStyling = new ShapeRangeStyling(); -this.shapeRangeStyling.defaultFill = 'Gray'; -this.shapeRangeStyling.itemMemberPath = 'Population'; -this.shapeRangeStyling.ranges = [ - { fill: 'yellow', minimum: 5000, maximum: 10000000, }, // 5 K - 10 M - { fill: 'orange', minimum: 10000000, maximum: 100000000, }, // 10 M - 100 M - { fill: 'red', minimum: 100000000, maximum: 500000000, }, // 100 M - 500 M - { fill: 'brown', minimum: 500000000, maximum: 2000000000, }, // 500 M - 2 B -]; - -this.geoSeries = new IgxGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgxGeographicShapeSeries, args: IgxStyleShapeEventArgs) { - const itemRecord = args.item as IgxShapefileRecord; - const shapeStyle = this.shapeRangeStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeRangeStyling } from './ShapeStylingUtility'; -// ... -this.shapeRangeStyling = new ShapeRangeStyling(); -this.shapeRangeStyling.defaultFill = 'Gray'; -this.shapeRangeStyling.itemMemberPath = 'Population'; -this.shapeRangeStyling.ranges = [ - { fill: 'yellow', minimum: 5000, maximum: 10000000, }, // 5 K - 10 M - { fill: 'orange', minimum: 10000000, maximum: 100000000, }, // 10 M - 100 M - { fill: 'red', minimum: 100000000, maximum: 500000000, }, // 100 M - 500 M - { fill: 'brown', minimum: 500000000, maximum: 2000000000, }, // 500 M - 2 B -]; - -this.geoSeries = new IgrGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgrGeographicShapeSeries, args: IgrStyleShapeEventArgs) { - const itemRecord = args.item as IgrShapefileRecord; - const shapeStyle = this.shapeRangeStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeRangeStyling } from './ShapeStylingUtility'; -// ... -this.shapeRangeStyling = new ShapeRangeStyling(); -this.shapeRangeStyling.defaultFill = 'Gray'; -this.shapeRangeStyling.itemMemberPath = 'Population'; -this.shapeRangeStyling.ranges = [ - { fill: 'yellow', minimum: 5000, maximum: 10000000, }, // 5 K - 10 M - { fill: 'orange', minimum: 10000000, maximum: 100000000, }, // 10 M - 100 M - { fill: 'red', minimum: 100000000, maximum: 500000000, }, // 100 M - 500 M - { fill: 'brown', minimum: 500000000, maximum: 2000000000, }, // 500 M - 2 B -]; - -this.geoSeries = new IgcGeographicShapeSeriesComponent(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgcGeographicShapeSeriesComponent, args: IgcStyleShapeEventArgs) { - const itemRecord = args.item as IgcShapefileRecord; - const shapeStyle = this.shapeRangeStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/shape-styling-range" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "zoomable": true + } + }, + "onViewInit": [ + "MapShapeRangeStyling" + ] } ``` - - ## Shape Comparison Styling This code snippet creates instances of **ShapeComparisonStyling** that will assign colors to countries based on their region name in the world. - - -```ts -import { ShapeComparisonStyling } from './ShapeStylingUtility'; -this.shapeComparisonStyling = new ShapeComparisonStyling(); -this.shapeComparisonStyling.defaultFill = 'Gray'; -this.shapeComparisonStyling.itemMemberPath = 'Region'; -this.shapeComparisonStyling.itemMappings = [ - { fill: 'Red', itemValue: 'Eastern Europe' }, - { fill: 'Red', itemValue: 'Central Asia' }, - { fill: 'Red', itemValue: 'Eastern Asia' }, - { fill: 'Orange', itemValue: 'Southern Asia' }, - { fill: 'Orange', itemValue: 'Middle East' }, - { fill: 'Orange', itemValue: 'Northern Africa' }, - { fill: 'Yellow', itemValue: 'Eastern Africa' }, - { fill: 'Yellow', itemValue: 'Western Africa' }, - { fill: 'Yellow', itemValue: 'Middle Africa' }, - { fill: 'Yellow', itemValue: 'Southern Africa' }, - { fill: 'DodgerBlue', itemValue: 'Central America' }, - { fill: 'DodgerBlue', itemValue: 'Northern America' }, - { fill: 'DodgerBlue', itemValue: 'Western Europe' }, - { fill: 'DodgerBlue', itemValue: 'Southern Europe' }, - { fill: 'DodgerBlue', itemValue: 'Northern Europe' }, - { fill: '#22c928', itemValue: 'South America' }, - { fill: '#b64fff', itemValue: 'Melanesia' }, - { fill: '#b64fff', itemValue: 'Micronesia' }, - { fill: '#b64fff', itemValue: 'Polynesia' }, - { fill: '#b64fff', itemValue: 'Australia' }, -]; - -this.geoSeries = new IgxGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgxGeographicShapeSeries, args: IgxStyleShapeEventArgs) { - const itemRecord = args.item as IgxShapefileRecord; - const shapeStyle = this.shapeComparisonStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeComparisonStyling } from './ShapeStylingUtility'; -this.shapeComparisonStyling = new ShapeComparisonStyling(); -this.shapeComparisonStyling.defaultFill = 'Gray'; -this.shapeComparisonStyling.itemMemberPath = 'Region'; -this.shapeComparisonStyling.itemMappings = [ - { fill: 'Red', itemValue: 'Eastern Europe' }, - { fill: 'Red', itemValue: 'Central Asia' }, - { fill: 'Red', itemValue: 'Eastern Asia' }, - { fill: 'Orange', itemValue: 'Southern Asia' }, - { fill: 'Orange', itemValue: 'Middle East' }, - { fill: 'Orange', itemValue: 'Northern Africa' }, - { fill: 'Yellow', itemValue: 'Eastern Africa' }, - { fill: 'Yellow', itemValue: 'Western Africa' }, - { fill: 'Yellow', itemValue: 'Middle Africa' }, - { fill: 'Yellow', itemValue: 'Southern Africa' }, - { fill: 'DodgerBlue', itemValue: 'Central America' }, - { fill: 'DodgerBlue', itemValue: 'Northern America' }, - { fill: 'DodgerBlue', itemValue: 'Western Europe' }, - { fill: 'DodgerBlue', itemValue: 'Southern Europe' }, - { fill: 'DodgerBlue', itemValue: 'Northern Europe' }, - { fill: '#22c928', itemValue: 'South America' }, - { fill: '#b64fff', itemValue: 'Melanesia' }, - { fill: '#b64fff', itemValue: 'Micronesia' }, - { fill: '#b64fff', itemValue: 'Polynesia' }, - { fill: '#b64fff', itemValue: 'Australia' }, -]; - -this.geoSeries = new IgrGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgrGeographicShapeSeries, args: IgrStyleShapeEventArgs) { - const itemRecord = args.item as IgrShapefileRecord; - const shapeStyle = this.shapeComparisonStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeComparisonStyling } from './ShapeStylingUtility'; -this.shapeComparisonStyling = new ShapeComparisonStyling(); -this.shapeComparisonStyling.defaultFill = 'Gray'; -this.shapeComparisonStyling.itemMemberPath = 'Region'; -this.shapeComparisonStyling.itemMappings = [ - { fill: 'Red', itemValue: 'Eastern Europe' }, - { fill: 'Red', itemValue: 'Central Asia' }, - { fill: 'Red', itemValue: 'Eastern Asia' }, - { fill: 'Orange', itemValue: 'Southern Asia' }, - { fill: 'Orange', itemValue: 'Middle East' }, - { fill: 'Orange', itemValue: 'Northern Africa' }, - { fill: 'Yellow', itemValue: 'Eastern Africa' }, - { fill: 'Yellow', itemValue: 'Western Africa' }, - { fill: 'Yellow', itemValue: 'Middle Africa' }, - { fill: 'Yellow', itemValue: 'Southern Africa' }, - { fill: 'DodgerBlue', itemValue: 'Central America' }, - { fill: 'DodgerBlue', itemValue: 'Northern America' }, - { fill: 'DodgerBlue', itemValue: 'Western Europe' }, - { fill: 'DodgerBlue', itemValue: 'Southern Europe' }, - { fill: 'DodgerBlue', itemValue: 'Northern Europe' }, - { fill: '#22c928', itemValue: 'South America' }, - { fill: '#b64fff', itemValue: 'Melanesia' }, - { fill: '#b64fff', itemValue: 'Micronesia' }, - { fill: '#b64fff', itemValue: 'Polynesia' }, - { fill: '#b64fff', itemValue: 'Australia' }, -]; - -this.geoSeries = new IgcGeographicShapeSeriesComponent(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgcGeographicShapeSeriesComponent, args: IgcStyleShapeEventArgs) { - const itemRecord = args.item as IgcShapefileRecord; - const shapeStyle = this.shapeComparisonStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/shape-styling-comparison" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "zoomable": true + } + }, + "onViewInit": [ + "MapShapeComparisonStyling" + ] } ``` - - ## API References diff --git a/docs/xplat/src/content/jp/components/geo-map-shape-styling.mdx b/docs/xplat/src/content/jp/components/geo-map-shape-styling.mdx index e5b45e8b98..3d4538e15a 100644 --- a/docs/xplat/src/content/jp/components/geo-map-shape-styling.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-shape-styling.mdx @@ -59,403 +59,78 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; このコード スニペットは、**ShapeRandomStyling** のインスタンスを作成して、塗りつぶし色をランダムに世界の国に割り当てます。 - - -```ts -import { ShapeRandomStyling } from './ShapeStylingUtility'; -// ... - -this.shapeRandomStyling = new ShapeRandomStyling(); -this.shapeRandomStyling.shapeStrokeColors = ['Black']; -this.shapeRandomStyling.shapeFillColors = ['#8C23D1', '#0E9759', '#B4D336', '#F2A464', '#D74545', 'DodgerBlue']; - -this.geoSeries = new IgxGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgxGeographicShapeSeries, args: IgxStyleShapeEventArgs) { - const itemRecord = args.item as IgxShapefileRecord; - const shapeStyle = this.ShapeRandomStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeRandomStyling } from './ShapeStylingUtility'; -// ... -this.shapeRandomStyling = new ShapeRandomStyling(); -this.shapeRandomStyling.shapeStrokeColors = ['Black']; -this.shapeRandomStyling.shapeFillColors = ['#8C23D1', '#0E9759', '#B4D336', '#F2A464', '#D74545', 'DodgerBlue']; - -this.geoSeries = new IgrGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgrGeographicShapeSeries, args: IgrStyleShapeEventArgs) { - const itemRecord = args.item as IgrShapefileRecord; - const shapeStyle = this.ShapeRandomStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeRandomStyling } from './ShapeStylingUtility'; -// ... -this.shapeRandomStyling = new ShapeRandomStyling(); -this.shapeRandomStyling.shapeStrokeColors = ['Black']; -this.shapeRandomStyling.shapeFillColors = ['#8C23D1', '#0E9759', '#B4D336', '#F2A464', '#D74545', 'DodgerBlue']; - -this.geoSeries = new IgcGeographicShapeSeriesComponent(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgcGeographicShapeSeriesComponent, args: IgcStyleShapeEventArgs) { - const itemRecord = args.item as IgcShapefileRecord; - const shapeStyle = this.ShapeRandomStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/shape-styling-random" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "zoomable": true + } + }, + "onViewInit": [ + "MapShapeRandomStyling" + ] } ``` - - ## シェイプ スケール スタイリング このコード スニペットは、**ShapeScaleStyling** のインスタンスを作成して、対数スケールでスケーリングされた母集団に基づいて塗りつぶし色を国に割り当てます。 - - -```ts -import { ShapeScaleStyling } from './ShapeStylingUtility'; -// ... -this.shapeScaleStyling = new ShapeScaleStyling(); -this.shapeScaleStyling.itemMinimumValue = 5000; -this.shapeScaleStyling.itemMaximumValue = 2000000000; // 2 Billions -this.shapeScaleStyling.itemMemberPath = 'Population'; -this.shapeScaleStyling.isLogarithmic = true; -this.shapeScaleStyling.defaultFill = 'Gray'; -this.shapeScaleStyling.shapeStrokeColors = ['Black']; -this.shapeScaleStyling.shapeFillColors = ['DodgerBlue', 'yellow', '#c2f542', '#e8c902', '#e8b602', '#e87902', 'brown']; - -this.geoSeries = new IgxGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgxGeographicShapeSeries, args: IgxStyleShapeEventArgs) { - const itemRecord = args.item as IgxShapefileRecord; - const shapeStyle = this.shapeScaleStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeScaleStyling } from './ShapeStylingUtility'; -// ... -this.shapeScaleStyling = new ShapeScaleStyling(); -this.shapeScaleStyling.itemMinimumValue = 5000; -this.shapeScaleStyling.itemMaximumValue = 2000000000; // 2 Billions -this.shapeScaleStyling.itemMemberPath = 'Population'; -this.shapeScaleStyling.isLogarithmic = true; -this.shapeScaleStyling.defaultFill = 'Gray'; -this.shapeScaleStyling.shapeStrokeColors = ['Black']; -this.shapeScaleStyling.shapeFillColors = ['DodgerBlue', 'yellow', '#c2f542', '#e8c902', '#e8b602', '#e87902', 'brown']; - -this.geoSeries = new IgrGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgrGeographicShapeSeries, args: IgrStyleShapeEventArgs) { - const itemRecord = args.item as IgrShapefileRecord; - const shapeStyle = this.shapeScaleStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeScaleStyling } from './ShapeStylingUtility'; -// ... -this.shapeScaleStyling = new ShapeScaleStyling(); -this.shapeScaleStyling.itemMinimumValue = 5000; -this.shapeScaleStyling.itemMaximumValue = 2000000000; // 2 Billions -this.shapeScaleStyling.itemMemberPath = 'Population'; -this.shapeScaleStyling.isLogarithmic = true; -this.shapeScaleStyling.defaultFill = 'Gray'; -this.shapeScaleStyling.shapeStrokeColors = ['Black']; -this.shapeScaleStyling.shapeFillColors = ['DodgerBlue', 'yellow', '#c2f542', '#e8c902', '#e8b602', '#e87902', 'brown']; - -this.geoSeries = new IgcGeographicShapeSeriesComponent(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgcGeographicShapeSeriesComponent, args: IgcStyleShapeEventArgs) { - const itemRecord = args.item as IgcShapefileRecord; - const shapeStyle = this.shapeScaleStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/shape-styling-scale" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "zoomable": true + } + }, + "onViewInit": [ + "MapShapeScaleStyling" + ] } ``` - - ## シェイプ範囲スタイリング このコード スニペットは、**ShapeRangeStyling** のインスタンスを作成して、人口の範囲に基づいて国に色を割り当てます。 - - -```ts -import { ShapeRangeStyling } from './ShapeStylingUtility'; -// ... -this.shapeRangeStyling = new ShapeRangeStyling(); -this.shapeRangeStyling.defaultFill = 'Gray'; -this.shapeRangeStyling.itemMemberPath = 'Population'; -this.shapeRangeStyling.ranges = [ - { fill: 'yellow', minimum: 5000, maximum: 10000000, }, // 5 K - 10 M - { fill: 'orange', minimum: 10000000, maximum: 100000000, }, // 10 M - 100 M - { fill: 'red', minimum: 100000000, maximum: 500000000, }, // 100 M - 500 M - { fill: 'brown', minimum: 500000000, maximum: 2000000000, }, // 500 M - 2 B -]; - -this.geoSeries = new IgxGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgxGeographicShapeSeries, args: IgxStyleShapeEventArgs) { - const itemRecord = args.item as IgxShapefileRecord; - const shapeStyle = this.shapeRangeStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeRangeStyling } from './ShapeStylingUtility'; -// ... -this.shapeRangeStyling = new ShapeRangeStyling(); -this.shapeRangeStyling.defaultFill = 'Gray'; -this.shapeRangeStyling.itemMemberPath = 'Population'; -this.shapeRangeStyling.ranges = [ - { fill: 'yellow', minimum: 5000, maximum: 10000000, }, // 5 K - 10 M - { fill: 'orange', minimum: 10000000, maximum: 100000000, }, // 10 M - 100 M - { fill: 'red', minimum: 100000000, maximum: 500000000, }, // 100 M - 500 M - { fill: 'brown', minimum: 500000000, maximum: 2000000000, }, // 500 M - 2 B -]; - -this.geoSeries = new IgrGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgrGeographicShapeSeries, args: IgrStyleShapeEventArgs) { - const itemRecord = args.item as IgrShapefileRecord; - const shapeStyle = this.shapeRangeStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeRangeStyling } from './ShapeStylingUtility'; -// ... -this.shapeRangeStyling = new ShapeRangeStyling(); -this.shapeRangeStyling.defaultFill = 'Gray'; -this.shapeRangeStyling.itemMemberPath = 'Population'; -this.shapeRangeStyling.ranges = [ - { fill: 'yellow', minimum: 5000, maximum: 10000000, }, // 5 K - 10 M - { fill: 'orange', minimum: 10000000, maximum: 100000000, }, // 10 M - 100 M - { fill: 'red', minimum: 100000000, maximum: 500000000, }, // 100 M - 500 M - { fill: 'brown', minimum: 500000000, maximum: 2000000000, }, // 500 M - 2 B -]; - -this.geoSeries = new IgcGeographicShapeSeriesComponent(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgcGeographicShapeSeriesComponent, args: IgcStyleShapeEventArgs) { - const itemRecord = args.item as IgcShapefileRecord; - const shapeStyle = this.shapeRangeStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/shape-styling-range" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "zoomable": true + } + }, + "onViewInit": [ + "MapShapeRangeStyling" + ] } ``` - - ## シェイプ比較スタイリング このコード スニペットは、**ShapeComparisonStyling** のインスタンスを作成して、世界の地域名に基づいて国に色を割り当てます。 - - -```ts -import { ShapeComparisonStyling } from './ShapeStylingUtility'; -this.shapeComparisonStyling = new ShapeComparisonStyling(); -this.shapeComparisonStyling.defaultFill = 'Gray'; -this.shapeComparisonStyling.itemMemberPath = 'Region'; -this.shapeComparisonStyling.itemMappings = [ - { fill: 'Red', itemValue: 'Eastern Europe' }, - { fill: 'Red', itemValue: 'Central Asia' }, - { fill: 'Red', itemValue: 'Eastern Asia' }, - { fill: 'Orange', itemValue: 'Southern Asia' }, - { fill: 'Orange', itemValue: 'Middle East' }, - { fill: 'Orange', itemValue: 'Northern Africa' }, - { fill: 'Yellow', itemValue: 'Eastern Africa' }, - { fill: 'Yellow', itemValue: 'Western Africa' }, - { fill: 'Yellow', itemValue: 'Middle Africa' }, - { fill: 'Yellow', itemValue: 'Southern Africa' }, - { fill: 'DodgerBlue', itemValue: 'Central America' }, - { fill: 'DodgerBlue', itemValue: 'Northern America' }, - { fill: 'DodgerBlue', itemValue: 'Western Europe' }, - { fill: 'DodgerBlue', itemValue: 'Southern Europe' }, - { fill: 'DodgerBlue', itemValue: 'Northern Europe' }, - { fill: '#22c928', itemValue: 'South America' }, - { fill: '#b64fff', itemValue: 'Melanesia' }, - { fill: '#b64fff', itemValue: 'Micronesia' }, - { fill: '#b64fff', itemValue: 'Polynesia' }, - { fill: '#b64fff', itemValue: 'Australia' }, -]; - -this.geoSeries = new IgxGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgxGeographicShapeSeries, args: IgxStyleShapeEventArgs) { - const itemRecord = args.item as IgxShapefileRecord; - const shapeStyle = this.shapeComparisonStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeComparisonStyling } from './ShapeStylingUtility'; -this.shapeComparisonStyling = new ShapeComparisonStyling(); -this.shapeComparisonStyling.defaultFill = 'Gray'; -this.shapeComparisonStyling.itemMemberPath = 'Region'; -this.shapeComparisonStyling.itemMappings = [ - { fill: 'Red', itemValue: 'Eastern Europe' }, - { fill: 'Red', itemValue: 'Central Asia' }, - { fill: 'Red', itemValue: 'Eastern Asia' }, - { fill: 'Orange', itemValue: 'Southern Asia' }, - { fill: 'Orange', itemValue: 'Middle East' }, - { fill: 'Orange', itemValue: 'Northern Africa' }, - { fill: 'Yellow', itemValue: 'Eastern Africa' }, - { fill: 'Yellow', itemValue: 'Western Africa' }, - { fill: 'Yellow', itemValue: 'Middle Africa' }, - { fill: 'Yellow', itemValue: 'Southern Africa' }, - { fill: 'DodgerBlue', itemValue: 'Central America' }, - { fill: 'DodgerBlue', itemValue: 'Northern America' }, - { fill: 'DodgerBlue', itemValue: 'Western Europe' }, - { fill: 'DodgerBlue', itemValue: 'Southern Europe' }, - { fill: 'DodgerBlue', itemValue: 'Northern Europe' }, - { fill: '#22c928', itemValue: 'South America' }, - { fill: '#b64fff', itemValue: 'Melanesia' }, - { fill: '#b64fff', itemValue: 'Micronesia' }, - { fill: '#b64fff', itemValue: 'Polynesia' }, - { fill: '#b64fff', itemValue: 'Australia' }, -]; - -this.geoSeries = new IgrGeographicShapeSeries(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgrGeographicShapeSeries, args: IgrStyleShapeEventArgs) { - const itemRecord = args.item as IgrShapefileRecord; - const shapeStyle = this.shapeComparisonStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; -} -``` - - - - - -```ts -import { ShapeComparisonStyling } from './ShapeStylingUtility'; -this.shapeComparisonStyling = new ShapeComparisonStyling(); -this.shapeComparisonStyling.defaultFill = 'Gray'; -this.shapeComparisonStyling.itemMemberPath = 'Region'; -this.shapeComparisonStyling.itemMappings = [ - { fill: 'Red', itemValue: 'Eastern Europe' }, - { fill: 'Red', itemValue: 'Central Asia' }, - { fill: 'Red', itemValue: 'Eastern Asia' }, - { fill: 'Orange', itemValue: 'Southern Asia' }, - { fill: 'Orange', itemValue: 'Middle East' }, - { fill: 'Orange', itemValue: 'Northern Africa' }, - { fill: 'Yellow', itemValue: 'Eastern Africa' }, - { fill: 'Yellow', itemValue: 'Western Africa' }, - { fill: 'Yellow', itemValue: 'Middle Africa' }, - { fill: 'Yellow', itemValue: 'Southern Africa' }, - { fill: 'DodgerBlue', itemValue: 'Central America' }, - { fill: 'DodgerBlue', itemValue: 'Northern America' }, - { fill: 'DodgerBlue', itemValue: 'Western Europe' }, - { fill: 'DodgerBlue', itemValue: 'Southern Europe' }, - { fill: 'DodgerBlue', itemValue: 'Northern Europe' }, - { fill: '#22c928', itemValue: 'South America' }, - { fill: '#b64fff', itemValue: 'Melanesia' }, - { fill: '#b64fff', itemValue: 'Micronesia' }, - { fill: '#b64fff', itemValue: 'Polynesia' }, - { fill: '#b64fff', itemValue: 'Australia' }, -]; - -this.geoSeries = new IgcGeographicShapeSeriesComponent(); -this.geoSeries.styleShape = this.onStylingShape; -// ... -public onStylingShape(s: IgcGeographicShapeSeriesComponent, args: IgcStyleShapeEventArgs) { - const itemRecord = args.item as IgcShapefileRecord; - const shapeStyle = this.shapeComparisonStyling.getStyle(itemRecord); - args.shapeOpacity = shapeStyle.opacity; - args.shapeFill = shapeStyle.fill; - args.shapeStroke = shapeStyle.stroke; - args.shapeStrokeThickness = shapeStyle.strokeThickness; +```json-snippet exclude="Blazor,Xaml" source="/maps/geo-map/shape-styling-comparison" channel="handler" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "zoomable": true + } + }, + "onViewInit": [ + "MapShapeComparisonStyling" + ] } ``` - - ## API リファレンス From b2332a9c07a3be4f78572b17862a047759bc5c9b Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 17:29:14 -0400 Subject: [PATCH 039/155] Collapse column-sorting, and set the pattern for the data grid set MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The data grid topics only publish for the XAML platforms today, but they were published for the web until recently and may be again, so the web blocks are the reference and WebComponents comes first. The XAML blocks are not evidence: they were generated from the samples on this branch. That means a collapse here cannot be checked by regenerating, since the web pages do not generate. It is checked by emitting the fence directly for the four web platforms with the generator's own styles and reading that against the published block, which is how this one was verified: WebComponents matches, Angular and Blazor match, and React's enum becomes the equivalent string. Two changes this pattern brings to every one of these pages, both recorded: the grid gains the Name the samples give it and the topics' own API sections look it up by, and React writes enum values as strings. Where a page teaches an enum import in a block of its own, that block stays — the emitter has no way to produce it, and deleting it would lose the teaching. On this page the sample's SortByMultipleColumnsTriState is the live demo's dropdown default; all four web blocks teach SortByMultipleColumns, so the snippet states that and stays pinned to the sample. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 33 ++++++++++++ .../grids/data-grid/column-sorting.mdx | 52 ++++++------------- .../grids/data-grid/column-sorting.mdx | 52 ++++++------------- 3 files changed, 65 insertions(+), 72 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index df73f2fa50..4b84348b9e 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -894,3 +894,36 @@ Two changes to what a reader sees, both deliberate: The page's own sample is untouched: it still colours by continent through `ShapeFileStyling`, and the four new samples back the snippets. + +## The data grid topics, and which block is the reference + +These pages are gated `include: ["NonWeb"]` in the table of contents, so only the XAML platforms +publish them today — but they were published for the web until recently and may be again. That +settles which block a collapse has to reproduce: **the web blocks are authoritative, WebComponents +first**, and the XAML blocks are not evidence of anything, having been generated from the samples on +this branch by `add-xaml-snippets.mjs`. Where a sample disagrees with a web block, the sample is what +has drifted. + +Because the web pages do not generate, a collapse cannot be checked by regenerating them. It is +checked by emitting the fence directly for Angular, React, WebComponents and Blazor with the +generator's own style tables, and reading that against the published block. WinUI is checked the +ordinary way, against the generated page. + +Two things every one of these collapses changes, both accepted: + +- The grid gains `Name="grid"`. The samples name it and the topics' own API sections look it up by + that name, so the name belongs in the markup; the hand written XAML omitted it. +- React's enum values become strings — `headerClickAction="SortByMultipleColumns"` where the page + wrote `{HeaderClickAction.SortByMultipleColumns}`. Both are valid and every collapsed topic writes + the string, but it means the enum's import is no longer needed. Where a page teaches that import in + a block of its own, the block stays: it is teaching the emitter has no way to reproduce, and + deleting it would lose it. Blazor still qualifies its enums, which is what those pages showed. + +### column-sorting — TriState converged to the web's value + +The sample's grid carries `SortByMultipleColumnsTriState`, which is the initial value of the live +demo's dropdown, while all four web blocks teach `SortByMultipleColumns`. The snippet states the +documented value and stays pinned to the sample, in the way the gauge topics overlay a value the +sample happens to set differently. + +Only the four markup blocks collapsed. The two import blocks above them are kept. diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx index 52989d594d..1edec7b010 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx @@ -47,43 +47,23 @@ import { HeaderClickAction } from 'igniteui-webcomponents-data-grids'; ``` - -```tsx - -``` - - - -```html - - -``` - - - -```razor - -``` - - - -```xaml - +```json-snippet source="/grids/data-grid/column-sorting" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "RealEstateData", + "headerClickAction": "SortByMultipleColumns", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ "webComponents" ] + } + } + } +} ``` - ## Sorting through API diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx index 87d9d63db4..a9ba358a78 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx @@ -46,43 +46,23 @@ import { HeaderClickAction } from 'igniteui-webcomponents-data-grids'; ``` - -```tsx - -``` - - - -```html - - -``` - - - -```razor - -``` - - - -```xaml - +```json-snippet source="/grids/data-grid/column-sorting" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "RealEstateData", + "headerClickAction": "SortByMultipleColumns", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ "webComponents" ] + } + } + } +} ``` - ## API を使用したソート From 4c6e233e391c24202c3d73db0f8640d348d830fe Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 17:40:09 -0400 Subject: [PATCH 040/155] Collapse five more data grid topics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit column-resizing, column-moving, column-animation, row-highlighting and row-pinning. The web blocks are the reference throughout, and where they disagree with the sample the documented value is stated and the sample stays pinned. Two documentation bugs the collapse settles. column-animation states columnAddingAnimationMode="SlideToLeft" on React and WebComponents, which is not a member of that enum — the adding modes are the SlideFrom set — so it becomes SlideFromLeft, the value the sample runs and the one Blazor's block gestures at while qualifying it with the wrong type name. WebComponents also wrote that attribute as column-addingAnimation-mode, which is not the property's name in any casing. On column-resizing, WebComponents set a moving separator width on a resizing topic; React and Blazor both say resizing. column-resizing also narrows to the columns the documented blocks show, the point of the topic being resizing turned off for one of them, rather than the five styled columns the XAML block inherited from the sample. All four fields exist on EmployeesSalesData. Verified per platform: WinUI against the generated page, the web platforms by emitting each fence with the generator's own styles. 100 snippets valid. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 36 ++++ .../grids/data-grid/column-animation.mdx | 77 +++------ .../grids/data-grid/column-moving.mdx | 70 +++----- .../grids/data-grid/column-resizing.mdx | 155 +++++------------- .../grids/data-grid/row-highlighting.mdx | 57 +++---- .../grids/data-grid/row-pinning.mdx | 65 ++------ .../grids/data-grid/column-animation.mdx | 77 +++------ .../grids/data-grid/column-moving.mdx | 68 +++----- .../grids/data-grid/column-resizing.mdx | 153 +++++------------ .../grids/data-grid/row-highlighting.mdx | 57 +++---- .../grids/data-grid/row-pinning.mdx | 75 ++------- 11 files changed, 269 insertions(+), 621 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 4b84348b9e..0245355de9 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -927,3 +927,39 @@ documented value and stays pinned to the sample, in the way the gauge topics ove sample happens to set differently. Only the four markup blocks collapsed. The two import blocks above them are kept. + +### column-resizing — the web blocks agree, and correct each other + +Three web blocks state `Deferred`, `Interpolate` and a separator width of 5, against the sample's +`Auto` and 1. The snippet states the documented values. WebComponents wrote +`column-moving-separator-width` on a resizing topic; React and Blazor both say resizing, which +settles it as a typo rather than a fourth opinion. + +The columns come from the documented blocks — FirstName, LastName, Street with `isResizingEnabled` +off, City — replacing the five styled columns the XAML block inherited from the sample. All four +fields exist on EmployeesSalesData, so this is a narrower example rather than a stale one, and the +one the topic is actually about: resizing turned off for a single column. + +### column-moving — SlideOver and 5, not the sample's Auto and 2 + +All three web blocks agree; the sample differs on both. Documented values stated. + +### column-animation — one of the documented values does not exist + +React and WebComponents both state `columnAddingAnimationMode="SlideToLeft"`. That enum's members +are the SlideFrom set — SlideToLeft belongs to exchanging and hiding — so the value is not one the +property can take and the schema rejects it. Blazor hints at the same conclusion by qualifying the +adding property with `ColumnShowingAnimationMode.SlideFromLeft`: a wrong type name, but a valid +value. The snippet states `SlideFromLeft`, which is also what the sample runs. + +The other three documented values are valid and are kept over the sample's: `SlideToRight` rather +than `Crossfade`, `SlideToTopAndFadeOut` rather than `FadeOut`, `SlideFromBottomAndFadeIn` rather +than `SlideFromLeft`. + +Also fixed by collapsing: WebComponents wrote the attribute as `column-addingAnimation-mode`, which +is not the property's name in any casing. + +### row-highlighting, row-pinning — nothing but the name + +Both collapse cleanly. `rowHoverBackground` is stated where the sample omits it, since all four +blocks teach it. The only change to what a reader sees is the grid's Name. diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx index bf02fbd7c7..0d375c80a3 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx @@ -41,61 +41,30 @@ Each column animation property is listed and described below: The following demonstrates the implementation of each of the column animations described in this topic: - -```tsx - +```json-snippet source="/grids/data-grid/column-animation" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "columnAddingAnimationMode": "SlideFromLeft", + "columnExchangingAnimationMode": "SlideToRight", + "columnHidingAnimationMode": "SlideToTopAndFadeOut", + "columnMovingAnimationMode": "SlideOver", + "columnPropertyUpdatingAnimationMode": "Interpolate", + "columnShowingAnimationMode": "SlideFromBottomAndFadeIn", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```html - - -``` - - - -```razor - -``` - - - -```xaml - -``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx index 7dd1d62bf3..7d06064a8e 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx @@ -50,57 +50,27 @@ import { ColumnMovingMode } from 'igniteui-webcomponents-data-grids'; ``` - -```tsx - -``` - - - -```html - - +```json-snippet source="/grids/data-grid/column-moving" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "columnMovingMode": "Deferred", + "columnMovingAnimationMode": "SlideOver", + "columnMovingSeparatorWidth": 5, + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -``` - - - -```razor - -``` - - - -```xaml - -``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx index b009f2637f..ba625bf838 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx @@ -58,122 +58,47 @@ import { ColumnResizingAnimationMode } from 'igniteui-webcomponents-data-grids'; ``` - -```tsx - - - - - - -``` - - - -```html - - - - - - +```json-snippet source="/grids/data-grid/column-resizing" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "columnResizingMode": "Deferred", + "columnResizingAnimationMode": "Interpolate", + "columnResizingSeparatorWidth": 5, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "FirstName" + }, + { + "type": "TextColumn", + "field": "LastName" + }, + { + "type": "TextColumn", + "field": "Street", + "isResizingEnabled": false + }, + { + "type": "TextColumn", + "field": "City" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -``` - - - -```razor - - - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx b/docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx index b9b628d9e3..f9c21e624b 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx @@ -36,45 +36,26 @@ In addition, the color is configurable by setting the `RowHoverBackground` strin The following demonstrates how to enable row highlighting on the {Platform} data grid and applies the color blue: - -```tsx - +```json-snippet source="/grids/data-grid/row-highlighting" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "isRowHoverEnabled": true, + "rowHoverBackground": "#bfbfff", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```html - - -``` - - - -```razor - -``` - - - -```xaml - -``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx b/docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx index c5e4c2afb8..49438fce0a 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx @@ -40,61 +40,24 @@ public onGridRef(grid: IgrDataGrid) { ``` - -```html - - -``` - - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -grid1.pinnedItems.add(data[2]); -grid1.pinnedItems.add(data[4]); -``` - - - -```razor - - -@code { - - private IgbDataGrid grid; - public IgbDataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - OnGridChanged(); - StateHasChanged(); +```json-snippet source="/grids/data-grid/row-pinning" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } - - private void OnGridChanged() - { - grid.PinnedItems.Add(this.DataSource[2] as Employee); - grid.PinnedItems.Add(this.DataSource[4] as Employee); - } } ``` - - - -```xaml - -``` - ## API References diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx index a2ead821c2..eb66718bc4 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx @@ -41,61 +41,30 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; このトピックで説明されている各列アニメーションの実装を次に示します。 - -```tsx - +```json-snippet source="/grids/data-grid/column-animation" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "columnAddingAnimationMode": "SlideFromLeft", + "columnExchangingAnimationMode": "SlideToRight", + "columnHidingAnimationMode": "SlideToTopAndFadeOut", + "columnMovingAnimationMode": "SlideOver", + "columnPropertyUpdatingAnimationMode": "Interpolate", + "columnShowingAnimationMode": "SlideFromBottomAndFadeIn", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```html - - -``` - - - -```razor - -``` - - - -```xaml - -``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx index 584ff7e5ed..10f0ca235e 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx @@ -50,57 +50,29 @@ import { ColumnMovingMode } from 'igniteui-webcomponents-data-grids'; ``` - -```tsx - +```json-snippet source="/grids/data-grid/column-moving" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "columnMovingMode": "Deferred", + "columnMovingAnimationMode": "SlideOver", + "columnMovingSeparatorWidth": 5, + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - -```html - - -``` - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -``` - - - -```razor - -``` - - - -```xaml - -``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx index 72bfe3f5ac..63125a3fda 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx @@ -58,122 +58,49 @@ import { ColumnResizingAnimationMode } from 'igniteui-webcomponents-data-grids'; ``` - -```tsx - - - - - - +```json-snippet source="/grids/data-grid/column-resizing" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "columnResizingMode": "Deferred", + "columnResizingAnimationMode": "Interpolate", + "columnResizingSeparatorWidth": 5, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "FirstName" + }, + { + "type": "TextColumn", + "field": "LastName" + }, + { + "type": "TextColumn", + "field": "Street", + "isResizingEnabled": false + }, + { + "type": "TextColumn", + "field": "City" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - -```html - - - - - - -``` - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -``` - - - -```razor - - - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx index 27205dd3cd..b31cfb4a17 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx @@ -36,45 +36,26 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下は、{Platform} データ グリッドで行のハイライト表示を有効にし、青色を適用する方法を示します。 - -```tsx - +```json-snippet source="/grids/data-grid/row-highlighting" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "isRowHoverEnabled": true, + "rowHoverBackground": "#bfbfff", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```html - - -``` - - - -```razor - -``` - - - -```xaml - -``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx index 105fa78ba3..617c830f43 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx @@ -30,71 +30,26 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ## コード スニペット - -```ts -public onGridRef(grid: IgrDataGrid) { - this.grid = grid; - this.grid.pinnedItems.add(this.data[2]); - this.grid.pinnedItems.add(this.data[4]); -} -``` - - - -```html - - -``` - - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -grid1.pinnedItems.add(data[2]); -grid1.pinnedItems.add(data[4]); -``` - - - -```razor - - -@code { - - private IgbDataGrid grid; - public IgbDataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - OnGridChanged(); - StateHasChanged(); +```json-snippet source="/grids/data-grid/row-pinning" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } - - private void OnGridChanged() - { - grid.PinnedItems.Add(this.DataSource[2] as Employee); - grid.PinnedItems.Add(this.DataSource[4] as Employee); - } } ``` - - -```xaml - -``` - + ## API リファレンス From f154b2b6c87d2fb2f6c0f4dcc91b1cff33556e54 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 17:43:07 -0400 Subject: [PATCH 041/155] Delete the dead enum imports beside the collapsed grid snippets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The emitter writes an enum value as a string, so nothing in these snippets refers to ColumnMovingMode, ColumnResizingMode or HeaderClickAction and the import blocks teaching them were dead text sitting next to a collapsed fence. Six blocks across three topics, in both locales. Keeping them was wrong twice over: they are unused here, and an import a page did need would still not be hand written — it would be emitted from the same definition on the imports channel. An uncollapsed block beside a collapsed one is what this exercise exists to remove. The decisions file said the opposite and is corrected. column-sorting keeps its ColumnSortDescription import: that one belongs to the imperative API section below, whose code is not emitted and does use it. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 14 +++++++++++--- .../components/grids/data-grid/column-moving.mdx | 14 -------------- .../components/grids/data-grid/column-resizing.mdx | 14 -------------- .../components/grids/data-grid/column-sorting.mdx | 12 ------------ .../components/grids/data-grid/column-moving.mdx | 14 -------------- .../components/grids/data-grid/column-resizing.mdx | 14 -------------- .../components/grids/data-grid/column-sorting.mdx | 12 ------------ 7 files changed, 11 insertions(+), 83 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 0245355de9..e51afb8392 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -915,9 +915,17 @@ Two things every one of these collapses changes, both accepted: that name, so the name belongs in the markup; the hand written XAML omitted it. - React's enum values become strings — `headerClickAction="SortByMultipleColumns"` where the page wrote `{HeaderClickAction.SortByMultipleColumns}`. Both are valid and every collapsed topic writes - the string, but it means the enum's import is no longer needed. Where a page teaches that import in - a block of its own, the block stays: it is teaching the emitter has no way to reproduce, and - deleting it would lose it. Blazor still qualifies its enums, which is what those pages showed. + the string. Blazor still qualifies its enums, which is what those pages showed. + + **The enum's import block goes with it.** Nothing in the emitted snippet refers to the enum, so a + hand written `import { HeaderClickAction } ...` beside the fence is dead text. Deleted, not kept. + And a page that did need its imports would not keep them by hand either: it would emit them, on + the imports channel, from the same definition. An uncollapsed block next to a collapsed one is the + thing this whole exercise is removing. + + Imperative sections are the exception, and only because their code is not emitted at all: where a + topic teaches an API call, the imports that call needs stay beside it. column-sorting keeps its + `ColumnSortDescription` import for that reason and loses its `HeaderClickAction` one. ### column-sorting — TriState converged to the web's value diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx index 7d06064a8e..61fcefcfb7 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx @@ -36,20 +36,6 @@ You can also animate the column movements, if you wish. This can be done by sett The following demonstrates how to implement column moving in the {ProductName} Data Grid with deferred column moving, animations enabled, and a 5px wide separator: - -```ts -import { ColumnMovingAnimationMode } from 'igniteui-react-data-grids'; -import { ColumnMovingMode } from 'igniteui-react-data-grids'; -``` - - - -```ts -import { ColumnMovingAnimationMode } from 'igniteui-webcomponents-data-grids'; -import { ColumnMovingMode } from 'igniteui-webcomponents-data-grids'; -``` - - ```json-snippet source="/grids/data-grid/column-moving" { "descriptions": { diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx index ba625bf838..83c37495d6 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx @@ -44,20 +44,6 @@ When resizing a star-width column, it will change that column to a fixed column. The following code snippet demonstrates how to implement column resizing in the {Platform} data grid, where the Street column in this case will not be resizable. In this case, the column resizing separator will be 5 pixels wide and the columns that are resizable would animate when resized as well: - -```ts -import { ColumnResizingMode } from 'igniteui-react-data-grids'; -import { ColumnResizingAnimationMode } from 'igniteui-react-data-grids'; -``` - - - -```ts -import { ColumnResizingMode } from 'igniteui-webcomponents-data-grids'; -import { ColumnResizingAnimationMode } from 'igniteui-webcomponents-data-grids'; -``` - - ```json-snippet source="/grids/data-grid/column-resizing" { "descriptions": { diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx index 1edec7b010..26b2b2ca00 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx @@ -35,18 +35,6 @@ You can sort by a single or multiple column ascending or descending in the {Plat - `SortByOneColumnOnly` - `SortByOneColumnOnlyTriState` - -```ts -import { HeaderClickAction } from 'igniteui-react-data-grids'; -``` - - - -```ts -import { HeaderClickAction } from 'igniteui-webcomponents-data-grids'; -``` - - ```json-snippet source="/grids/data-grid/column-sorting" { "descriptions": { diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx index 10f0ca235e..e0632996b0 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx @@ -36,20 +36,6 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下は、遅延列の移動、アニメーションの有効化、5 ピクセル幅のセパレーターを使用して {ProductName} Data Grid に列移動を実装する方法を示しています。 - -```ts -import { ColumnMovingAnimationMode } from 'igniteui-react-data-grids'; -import { ColumnMovingMode } from 'igniteui-react-data-grids'; -``` - - - -```ts -import { ColumnMovingAnimationMode } from 'igniteui-webcomponents-data-grids'; -import { ColumnMovingMode } from 'igniteui-webcomponents-data-grids'; -``` - - ```json-snippet source="/grids/data-grid/column-moving" { "descriptions": { diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx index 63125a3fda..1152b7e84f 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx @@ -44,20 +44,6 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下のコード スニペットは、{Platform} データ グリッドで列のサイズ変更を実装する方法を示します。この場合、Street 列はサイズ変更できません。この場合、列のサイズ変更セパレーターの幅は 5 ピクセルになり、サイズ変更可能な列もサイズ変更時にアニメーション化されます。 - -```ts -import { ColumnResizingMode } from 'igniteui-react-data-grids'; -import { ColumnResizingAnimationMode } from 'igniteui-react-data-grids'; -``` - - - -```ts -import { ColumnResizingMode } from 'igniteui-webcomponents-data-grids'; -import { ColumnResizingAnimationMode } from 'igniteui-webcomponents-data-grids'; -``` - - ```json-snippet source="/grids/data-grid/column-resizing" { "descriptions": { diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx index a9ba358a78..754cc036fe 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx @@ -34,18 +34,6 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; - `SortByOneColumnOnly` - `SortByOneColumnOnlyTriState` - -```ts -import { HeaderClickAction } from 'igniteui-react-data-grids'; -``` - - - -```ts -import { HeaderClickAction } from 'igniteui-webcomponents-data-grids'; -``` - - ```json-snippet source="/grids/data-grid/column-sorting" { "descriptions": { From d22487f4eb92e308a5e4c1027f7e7d29bfb5eeab Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 19:41:40 -0400 Subject: [PATCH 042/155] Collapse horizontal-scrolling and column-summaries column-summaries takes Root and RowTop, and its summary descriptions from the sample, which is where the topic's subject actually lives. horizontal-scrolling ignores its WebComponents block, which writes id= on columns where it means field= and states a different minimum than everything else, and takes the sample's twelve columns instead. These are the first published snippets to carry the column width shorthand: the XAML columns read Width="*>120" where they had a nested ColumnWidth element. accessibility is not collapsible and is left alone. The description has no accessibility property, and the page's own prose says the feature is turned on through a CSS custom property on a wrapping div, which is what its Blazor block shows. The Japanese column-summaries carries a section the English one lacks, so the mirror refused to work in spans there and the definition was applied to it directly. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 28 + .../grids/data-grid/column-summaries.mdx | 575 ++++++------------ .../grids/data-grid/horizontal-scrolling.mdx | 349 +++++------ .../grids/data-grid/column-summaries.mdx | 341 ++++++----- .../grids/data-grid/horizontal-scrolling.mdx | 349 +++++------ 5 files changed, 695 insertions(+), 947 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index e51afb8392..47db22b826 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -971,3 +971,31 @@ is not the property's name in any casing. Both collapse cleanly. `rowHoverBackground` is stated where the sample omits it, since all four blocks teach it. The only change to what a reader sees is the grid's Name. + +### column-summaries — Root and RowTop + +`summaryScope` is `Root` — React alone said `Groups` — and `groupSummaryDisplayMode` is `RowTop`, +which the web blocks teach against the sample's `RowBottom`. The summary and group descriptions come +from the sample, since no block states them and they are what the topic is demonstrating. + +The Japanese copy carries a section the English one does not (カスタム集計), so the mirror refuses to +work in spans on this page and the same definition was applied to it directly. That extra section is +untouched and still hand written. + +### horizontal-scrolling — WebComponents ignored, as instructed + +Its block writes `id=` on the columns where it means `field=`, and states a minimum of 200 against +120 everywhere else. The two sections take the sample: the grid's minimum, then the sample's own +twelve columns, each with the width the topic is about. + +This is the first published output to carry the width shorthand: the XAML columns now read +`Width="*>120"` where they had a nested ColumnWidth element. + +### accessibility — not collapsible, and the reason is in the page + +The description has no accessibility property at all, so a snippet cannot state one. The page's own +prose says why: the feature is turned on "by setting `--use-accessibility` property to true +explicitly in CSS, preferably using a div tag around the grid", which is what the Blazor block shows. +The React and WebComponents blocks set a `useAccessibility` attribute instead — whether the component +really takes one is a question for the product, but the description does not model it either way. +Left hand written. diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx index ba02dde5a5..aeddc95821 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx @@ -47,410 +47,189 @@ The {Platform} data grid supports configuration of the locations that summaries ## Code Snippets - -```tsx - - - - - - - -``` - - - -```html - - - - - - - -``` - - - -```ts -import { IgrColumnGroupDescription } from 'igniteui-react-data-grids'; -import { IgrColumnSummaryDescription } from 'igniteui-react-data-grids' -import { SummaryOperand, SummaryCalculator, DefaultSummaryResult, IDataSource, ISummaryResult } from 'igniteui-react-core'; - -public componentDidMount() { - window.addEventListener('load', this.onLoad); -} - -public onLoad() { - // Count Operand - const productCount = new IgrColumnSummaryDescription(); - productCount.field = "ProductName"; - productCount.operand = SummaryOperand.Count; - this.grid.summaryDescriptions.add(productCount); - // Min Operand with formatting - const priceMin = new IgrColumnSummaryDescription(); - priceMin.field = "BundlePrice"; - priceMin.operand = SummaryOperand.Min; - priceMin.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(priceMin); - // Max Operand and formatting - const priceMax = new IgrColumnSummaryDescription(); - priceMax.field = "BundlePrice"; - priceMax.operand = SummaryOperand.Max; - priceMax.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(priceMax); - // Sum Operand - const orderSum = new IgrColumnSummaryDescription(); - orderSum.field = "OrderItems"; - orderSum.operand = SummaryOperand.Sum; - this.grid.summaryDescriptions.add(orderSum); - // Average Operand and formatting - const orderValueAvg = new IgrColumnSummaryDescription(); - orderValueAvg.field = "OrderValue"; - orderValueAvg.operand = SummaryOperand.Average; - orderValueAvg.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(orderValueAvg); -} -``` - - - -```ts -import { IgcColumnGroupDescription } from 'igniteui-webcomponents-data-grids'; -import { IgcColumnSummaryDescription } from 'igniteui-webcomponents-data-grids' -import { SummaryOperand, SummaryCalculator, DefaultSummaryResult, IDataSource, ISummaryResult } from 'igniteui-webcomponents-core'; - -connectedCallback() { - - // Count Operand - const productCount = new IgcColumnSummaryDescription(); - productCount.field = "ProductName"; - productCount.operand = SummaryOperand.Count; - this.grid.summaryDescriptions.add(productCount); - // Min Operand with formatting - const priceMin = new IgcColumnSummaryDescription(); - priceMin.field = "BundlePrice"; - priceMin.operand = SummaryOperand.Min; - priceMin.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(priceMin); - // Max Operand and formatting - const priceMax = new IgcColumnSummaryDescription(); - priceMax.field = "BundlePrice"; - priceMax.operand = SummaryOperand.Max; - priceMax.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(priceMax); - // Sum Operand - const orderSum = new IgcColumnSummaryDescription(); - orderSum.field = "OrderItems"; - orderSum.operand = SummaryOperand.Sum; - this.grid.summaryDescriptions.add(orderSum); - // Average Operand and formatting - const orderValueAvg = new IgcColumnSummaryDescription(); - orderValueAvg.field = "OrderValue"; - orderValueAvg.operand = SummaryOperand.Average; - orderValueAvg.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(orderValueAvg); -} -``` - - - -```razor - - - - - - - - -@code { - private IgbDataGrid grid; - private IgbDataGrid DataGridRef - { - get { return grid; } - set - { - grid = value; - this.OnDataGridRef(); - StateHasChanged(); - } - } - - private void OnDataGridRef() - { - var productCount = new ColumnSummaryDescription() { Field = "ProductName", Operand = SummaryOperand.Count }; - var priceMin = new ColumnSummaryDescription() { Field = "BundlePrice", Operand = SummaryOperand.Min }; - var priceMax = new ColumnSummaryDescription() { Field = "BundlePrice", Operand = SummaryOperand.Max }; - var orderSum = new ColumnSummaryDescription() { Field = "OrderItems", Operand = SummaryOperand.Sum }; - var orderValueAvg = new ColumnSummaryDescription() { Field = "OrderValue", Operand = SummaryOperand.Average }; - - this.DataGridRef.SummaryDescriptions.Add(productCount); - this.DataGridRef.SummaryDescriptions.Add(priceMin); - this.DataGridRef.SummaryDescriptions.Add(priceMax); - this.DataGridRef.SummaryDescriptions.Add(orderSum); - this.DataGridRef.SummaryDescriptions.Add(orderValueAvg); - } -} -``` - - - -## Custom Summaries - -In some situations, you may want to expand the default set of summaries. For example, if you were looking to show the number of times a particular value in a column appears, a custom summary would be required for this. - -The snippets below demonstrate how to display a Count for number of "USA" values appear in the column. - - - -```ts -import { IgrProvideCalculatorEventArgs } from 'igniteui-react-core'; - -public onLoad() +```json-snippet source="/grids/data-grid/column-summaries" { - // ... - // Custom Operand with calculator - const countries = new IgrColumnSummaryDescription(); - countries.field = "Countries"; - countries.operand = SummaryOperand.Custom; - countries.provideCalculator = this.onProvideCalculator; //refer to class below - this.grid.summaryDescriptions.add(countries); - -} - -onProvideCalculator(s: IgrColumnSummaryDescription, e: IgrProvideCalculatorEventArgs) { - e.calculator = new CustomDomestic(); -} - -// Custom Calculator - calculates the count for all USA. -class CustomDomestic extends SummaryCalculator -{ - get displayName(): string { - return "USA"; - } - public usCountries: number; - - public beginCalculation(a: IDataSource, b: string): void { - super.beginCalculation(a,b); - this.usCountries = 0; - } - public endCalculation(): ISummaryResult { - return new DefaultSummaryResult(this.propertyName, SummaryOperand.Custom, this.usCountries) - } - public aggregate(a: any): void { - if (a.Countries === "USA") - { - this.usCountries++; + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "autoGenerateColumns": false, + "isGroupCollapsable": true, + "groupHeaderDisplayMode": "Combined", + "summaryScope": "Root", + "groupSummaryDisplayMode": "RowTop", + "height": "100%", + "width": "100%", + "groupDescriptions": [ + { + "type": "ColumnGroupDescription", + "field": "ProductName", + "displayName": "ProductName" + } + ], + "summaryDescriptions": [ + { + "type": "ColumnSummaryDescription", + "field": "ProductName", + "operand": "Count" + }, + { + "type": "ColumnSummaryDescription", + "field": "ProductPrice", + "operand": "Min" + }, + { + "type": "ColumnSummaryDescription", + "field": "ProductPrice", + "operand": "Max" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderItems", + "operand": "Sum" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderValue", + "operand": "Sum" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderValue", + "operand": "Average" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderDate", + "operand": "Min", + "calculatorDisplayName": "First" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderDate", + "operand": "Max", + "calculatorDisplayName": "Last" + }, + { + "type": "ColumnSummaryDescription", + "field": "Profit", + "operand": "Sum" + }, + { + "type": "ColumnSummaryDescription", + "field": "Profit", + "operand": "Average" + } + ], + "columns": [ + { + "type": "NumericColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 130 + } + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "NumericColumn", + "field": "OrderItems", + "headerText": "Orders", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 140 + } + }, + { + "type": "NumericColumn", + "field": "OrderValue", + "headerText": "Order Totals", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 160 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "horizontalAlignment": "Right" + }, + { + "type": "NumericColumn", + "field": "Profit", + "headerText": "Profit", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 140 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "TextColumn", + "field": "Country", + "headerText": "Ship Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 170 + } + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } } ``` -```ts -import { IgcProvideCalculatorEventArgs } from 'igniteui-webcomponents-core'; - -onLoad() { - - const countries = new IgcColumnSummaryDescription(); - countries.field = "Countries"; - countries.operand = SummaryOperand.Custom; - countries.provideCalculator = this.onProvideCalculator; //refer to class below - this.grid.summaryDescriptions.add(countries); - -} - -onProvideCalculator(s: IgcColumnSummaryDescription, e: IgcProvideCalculatorEventArgs) { - e.calculator = new CustomDomestic(); -} - -// Custom Calculator - calculates the count for all USA. -class CustomDomestic extends SummaryCalculator -{ - get displayName(): string { - return "USA"; - } - public usCountries: number; - - public beginCalculation(a: IDataSource, b: string): void { - super.beginCalculation(a,b); - this.usCountries = 0; - } - public endCalculation(): ISummaryResult { - return new DefaultSummaryResult(this.propertyName, SummaryOperand.Custom, this.usCountries) - } - public aggregate(a: any): void { - if (a.Countries === "USA") - { - this.usCountries++; - } - } -} -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx b/docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx index b3bd60760b..cdd842560a 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx @@ -28,204 +28,167 @@ The {ProductName} Data Table / Data Grid supports Horizontal Scrolling is enable ## Setting Default Column Width - -```tsx - +```json-snippet id="scrolling" source="/grids/data-grid/column-scrolling" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "defaultColumnMinWidth": 120, + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```html - - -``` - - - -```razor - -``` - - - -```xaml - -``` - ## Setting Individual Column Widths - -```tsx - - - - - - - - - - -``` - - - -```html - - - - - - - - - - -``` - - - -```razor - - - - - - - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +```json-snippet source="/grids/data-grid/column-scrolling" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + } + }, + { + "type": "TextColumn", + "field": "FirstName", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 190 + } + }, + { + "type": "TextColumn", + "field": "LastName", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 190 + } + }, + { + "type": "DateTimeColumn", + "field": "Birthday", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 170 + } + }, + { + "type": "NumericColumn", + "field": "Age", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + } + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "isEditable": false + }, + { + "type": "TextColumn", + "field": "Street", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 160 + } + }, + { + "type": "TextColumn", + "field": "City", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 260 + } + }, + { + "type": "TextColumn", + "field": "Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 170 + } + }, + { + "type": "NumericColumn", + "field": "Salary", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 170 + } + }, + { + "type": "NumericColumn", + "field": "Sales", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + } + }, + { + "type": "NumericColumn", + "field": "Salary", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positivePrefix": "$", + "showGroupingSeparator": true, + "maxFractionDigits": 0, + "minFractionDigits": 0 + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - ## API References diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx index 967f08769c..ab8a26ea23 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx @@ -47,173 +47,188 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ## コード スニペット - -```tsx - - - - - - - -``` - - - -```html - - - - - - - -``` - - - -```ts -import { IgrColumnGroupDescription } from 'igniteui-react-data-grids'; -import { IgrColumnSummaryDescription } from 'igniteui-react-data-grids' -import { SummaryOperand, SummaryCalculator, DefaultSummaryResult, IDataSource, ISummaryResult } from 'igniteui-react-core'; - -public componentDidMount() { - window.addEventListener('load', this.onLoad); -} - -public onLoad() { - // Count Operand - const productCount = new IgrColumnSummaryDescription(); - productCount.field = "ProductName"; - productCount.operand = SummaryOperand.Count; - this.grid.summaryDescriptions.add(productCount); - // Min Operand with formatting - const priceMin = new IgrColumnSummaryDescription(); - priceMin.field = "BundlePrice"; - priceMin.operand = SummaryOperand.Min; - priceMin.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(priceMin); - // Max Operand and formatting - const priceMax = new IgrColumnSummaryDescription(); - priceMax.field = "BundlePrice"; - priceMax.operand = SummaryOperand.Max; - priceMax.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(priceMax); - // Sum Operand - const orderSum = new IgrColumnSummaryDescription(); - orderSum.field = "OrderItems"; - orderSum.operand = SummaryOperand.Sum; - this.grid.summaryDescriptions.add(orderSum); - // Average Operand and formatting - const orderValueAvg = new IgrColumnSummaryDescription(); - orderValueAvg.field = "OrderValue"; - orderValueAvg.operand = SummaryOperand.Average; - orderValueAvg.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(orderValueAvg); -} -``` - - - -```ts -import { IgcColumnGroupDescription } from 'igniteui-webcomponents-data-grids'; -import { IgcColumnSummaryDescription } from 'igniteui-webcomponents-data-grids' -import { SummaryOperand, SummaryCalculator, DefaultSummaryResult, IDataSource, ISummaryResult } from 'igniteui-webcomponents-core'; - -connectedCallback() { - - // Count Operand - const productCount = new IgcColumnSummaryDescription(); - productCount.field = "ProductName"; - productCount.operand = SummaryOperand.Count; - this.grid.summaryDescriptions.add(productCount); - // Min Operand with formatting - const priceMin = new IgcColumnSummaryDescription(); - priceMin.field = "BundlePrice"; - priceMin.operand = SummaryOperand.Min; - priceMin.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(priceMin); - // Max Operand and formatting - const priceMax = new IgcColumnSummaryDescription(); - priceMax.field = "BundlePrice"; - priceMax.operand = SummaryOperand.Max; - priceMax.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(priceMax); - // Sum Operand - const orderSum = new IgcColumnSummaryDescription(); - orderSum.field = "OrderItems"; - orderSum.operand = SummaryOperand.Sum; - this.grid.summaryDescriptions.add(orderSum); - // Average Operand and formatting - const orderValueAvg = new IgcColumnSummaryDescription(); - orderValueAvg.field = "OrderValue"; - orderValueAvg.operand = SummaryOperand.Average; - orderValueAvg.formatOverride = new Intl.NumberFormat('en-EN', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }); - this.grid.summaryDescriptions.add(orderValueAvg); -} -``` - - - -```razor - - - - - - - - -@code { - private IgbDataGrid grid; - private IgbDataGrid DataGridRef - { - get { return grid; } - set - { - grid = value; - this.OnDataGridRef(); - StateHasChanged(); +```json-snippet source="/grids/data-grid/column-summaries" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "autoGenerateColumns": false, + "isGroupCollapsable": true, + "groupHeaderDisplayMode": "Combined", + "summaryScope": "Root", + "groupSummaryDisplayMode": "RowTop", + "height": "100%", + "width": "100%", + "groupDescriptions": [ + { + "type": "ColumnGroupDescription", + "field": "ProductName", + "displayName": "ProductName" + } + ], + "summaryDescriptions": [ + { + "type": "ColumnSummaryDescription", + "field": "ProductName", + "operand": "Count" + }, + { + "type": "ColumnSummaryDescription", + "field": "ProductPrice", + "operand": "Min" + }, + { + "type": "ColumnSummaryDescription", + "field": "ProductPrice", + "operand": "Max" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderItems", + "operand": "Sum" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderValue", + "operand": "Sum" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderValue", + "operand": "Average" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderDate", + "operand": "Min", + "calculatorDisplayName": "First" + }, + { + "type": "ColumnSummaryDescription", + "field": "OrderDate", + "operand": "Max", + "calculatorDisplayName": "Last" + }, + { + "type": "ColumnSummaryDescription", + "field": "Profit", + "operand": "Sum" + }, + { + "type": "ColumnSummaryDescription", + "field": "Profit", + "operand": "Average" + } + ], + "columns": [ + { + "type": "NumericColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 130 + } + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "NumericColumn", + "field": "OrderItems", + "headerText": "Orders", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 140 + } + }, + { + "type": "NumericColumn", + "field": "OrderValue", + "headerText": "Order Totals", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 160 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "horizontalAlignment": "Right" + }, + { + "type": "NumericColumn", + "field": "Profit", + "headerText": "Profit", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 140 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "TextColumn", + "field": "Country", + "headerText": "Ship Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 170 + } + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } - - private void OnDataGridRef() - { - var productCount = new ColumnSummaryDescription() { Field = "ProductName", Operand = SummaryOperand.Count }; - var priceMin = new ColumnSummaryDescription() { Field = "BundlePrice", Operand = SummaryOperand.Min }; - var priceMax = new ColumnSummaryDescription() { Field = "BundlePrice", Operand = SummaryOperand.Max }; - var orderSum = new ColumnSummaryDescription() { Field = "OrderItems", Operand = SummaryOperand.Sum }; - var orderValueAvg = new ColumnSummaryDescription() { Field = "OrderValue", Operand = SummaryOperand.Average }; - - this.DataGridRef.SummaryDescriptions.Add(productCount); - this.DataGridRef.SummaryDescriptions.Add(priceMin); - this.DataGridRef.SummaryDescriptions.Add(priceMax); - this.DataGridRef.SummaryDescriptions.Add(orderSum); - this.DataGridRef.SummaryDescriptions.Add(orderValueAvg); - } } ``` - ## カスタム集計 diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx index b2f6df3f88..eb5b3da4b3 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx @@ -28,204 +28,167 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ## デフォルト列幅の設定 - -```tsx - +```json-snippet id="scrolling" source="/grids/data-grid/column-scrolling" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "defaultColumnMinWidth": 120, + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```html - - -``` - - - -```razor - -``` - - - -```xaml - -``` - ## 各列の幅の設定 - -```tsx - - - - - - - - - - -``` - - - -```html - - - - - - - - - - -``` - - - -```razor - - - - - - - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +```json-snippet source="/grids/data-grid/column-scrolling" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + } + }, + { + "type": "TextColumn", + "field": "FirstName", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 190 + } + }, + { + "type": "TextColumn", + "field": "LastName", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 190 + } + }, + { + "type": "DateTimeColumn", + "field": "Birthday", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 170 + } + }, + { + "type": "NumericColumn", + "field": "Age", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + } + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "isEditable": false + }, + { + "type": "TextColumn", + "field": "Street", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 160 + } + }, + { + "type": "TextColumn", + "field": "City", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 260 + } + }, + { + "type": "TextColumn", + "field": "Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 170 + } + }, + { + "type": "NumericColumn", + "field": "Salary", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 170 + } + }, + { + "type": "NumericColumn", + "field": "Sales", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + } + }, + { + "type": "NumericColumn", + "field": "Salary", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positivePrefix": "$", + "showGroupingSeparator": true, + "maxFractionDigits": 0, + "minFractionDigits": 0 + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - ## API リファレンス From fc75424a633aa1071cf14d3c10ae2fa961774f33 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 19:48:48 -0400 Subject: [PATCH 043/155] Collapse column-types and the overview sections MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit column-types follows React, as instructed. Its combo column takes the sample's CountryNames rather than the block's cityList, which is not a library item, and imageResourceType is dropped because the description does not model it. The section carried its XAML block twice, verbatim, the way local-data does; the collapse removes the duplicate. overview takes the web blocks wherever they disagree, so the grid generates its columns rather than the XAML block's false. Its styling section states fontFamily, fontSize, fontStyle and fontWeight — the properties the description actually has, textStyle not being one of them — so every platform now shows the same four rather than a shorthand on two of them and the parts on the others. One thing left out on purpose: the Manually Define Columns section states its five columns without a data source. The fields those blocks use — ProductID, QuantityPerUnit, UnitsInStock — are not on the sample's EmployeesSalesData, so binding them would publish columns that show nothing. The columns are what the section teaches; the binding is not. Co-Authored-By: Claude Opus 5 --- .../grids/data-grid/column-types.mdx | 601 ++---------------- .../components/grids/data-grid/overview.mdx | 412 +++--------- .../grids/data-grid/column-types.mdx | 512 ++------------- .../components/grids/data-grid/overview.mdx | 408 +++--------- 4 files changed, 286 insertions(+), 1647 deletions(-) diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx index 57ab5ebae9..0ef6105230 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx @@ -73,553 +73,68 @@ Refer to the [Column Sparkline](type-sparkline-table.mdx) topic for information The following demonstrates the implementation of each of the columns described in this topic: - -```tsx - - - - - - - - - -``` - - - -```html - - - - - - - - - -``` - - - -```ts -import { IgcTemplateColumnComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateCellInfo } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateCellUpdatingEventArgs } from 'igniteui-webcomponents-data-grids'; - -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; - -let cityComboColumn = document.getElementById('city') as IgcComboBoxColumnComponent; - -if (cityComboColumn) - this.allCities = DataGridSharedData.getAllCities(); - cityComboColumn.dataSource = this.cityList; - cityComboColumn.textField = "name"; - -let TemplateColumn = (document.getElementById("Address") as IgcTemplateColumnComponent); -TemplateColumn.cellUpdating = onCellUpdating; - -onCellUpdating(s: IgcTemplateColumnComponent, e: IgcTemplateCellUpdatingEventArgs): void { - // alert("onAddressCellUpdating"); - const content = e.content as HTMLDivElement; - let span1: HTMLSpanElement | null = null; - let span2: HTMLSpanElement | null = null; - const info = e.cellInfo as IgcTemplateCellInfo ; - const item = info.rowItem; - - if (content.childElementCount === 0) { - - span1 = document.createElement("span"); - span2 = document.createElement("span"); - - content.style.verticalAlign = "top"; - content.style.marginTop = "15px"; - content.style.lineHeight = "normal"; - content.style.display = "inline-grid"; - content.style.fontFamily = "Verdana"; - content.style.fontSize = "13px"; - - content.appendChild(span1); - content.appendChild(span2); - } - else { - span1 = content.children[0] as HTMLSpanElement; - span2 = content.children[1] as HTMLSpanElement; - } - - if (span1 && span2) { - span1.textContent = item.Street; - span2.textContent = item.City + ", " + item.Country; - } -} -``` - - - -```ts -import { IgrTemplateCellUpdatingEventArgs } from 'igniteui-react-data-grids'; -import { IgrTemplateCellInfo } from 'igniteui-react-data-grids'; -import { IgrTemplateColumn } from 'igniteui-react-data-grids'; -import { IgrComboBoxColumn } from 'igniteui-react-data-grids'; - -public onAddressCellUpdating(s: IgrTemplateColumn, e: IgrTemplateCellUpdatingEventArgs) { - const content = e.content as HTMLDivElement; - let span1: HTMLSpanElement | null = null; - let span2: HTMLSpanElement | null = null; - const info = e.cellInfo as IgrTemplateCellInfo; - const item = info.rowItem; - - if (content.childElementCount === 0) { - - span1 = document.createElement("span"); - span2 = document.createElement("span"); - - content.style.verticalAlign = "top"; - content.style.marginTop = "15px"; - content.style.lineHeight = "normal"; - content.style.display = "inline-grid"; - content.style.fontFamily = "Verdana"; - content.style.fontSize = "13px"; - - content.appendChild(span1); - content.appendChild(span2); - } - else { - span1 = content.children[0] as HTMLSpanElement; - span2 = content.children[1] as HTMLSpanElement; - } - - if (span1 && span2) { - span1.textContent = item.Street; - span2.textContent = item.City + ", " + item.Country; - } -} -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - - -The following is a sample data source to use with the above columns. - -```ts -const maleNames: string[] = ["Kyle", "Oscar", "Ralph", "Torrey", "Bill", "Frank", "Howard", "Jack", "Larry", "Pete", "Steve", "Vince", "Mark", "Alex", "Max", "Brian", "Chris", "Andrew", "Martin", "Mike", "Steve", "Glenn", "Bruce"]; -const femaleNames: string[] = ["Gina", "Irene", "Katie", "Brenda", "Casey", "Fiona", "Holly", "Kate", "Liz", "Pamela", "Nelly", "Marisa", "Monica", "Anna", "Jessica", "Sofia", "Isabella", "Margo", "Jane", "Audrey", "Sally", "Melanie", "Greta", "Aurora", "Sally"]; -const lastNames: string[] = ["Adams", "Crowley", "Ellis", "Martinez", "Irvine", "Maxwell", "Clark", "Owens", "Rooney", "Lincoln", "Thomas", "Spacey", "Betts", "King", "Newton", "Fitzgerald", "Holmes", "Jefferson", "Landry", "Newberry", "Perez", "Spencer", "Starr", "Carter", "Edwards", "Stark", "Johnson", "Fitz", "Chief", "Blanc", "Perry", "Stone", "Williams", "Lane", "Jobs", "Adama", "Power", "Tesla"]; -const genders: string[] = ["male", "female"]; -const cities: string[] = ["New York, New York", "Columbus, Ohio", "Los Angeles, California", "Orlando, Florida", "New Orleans, Louisiana", "Las Vegas, Nevada", "Atlanta, Georgia"]; -const roadSuffixes: string[] = ["Road", "Street", "Court", "Way"]; -const roadNames: string[] = ["Alpha", "Beta", "Charlie", "Delta", "Echo", "Foxtrot", "Golf", "Hotel", "India", "Julia", "Kilo", "Lima", "Mike", "November"]; - -const people: any[] = []; - -let maleCount: number = 0; -let femaleCount: number = 0; -for (let i = 0; i < 250; i++) { - - const age: number = Math.round(this.getRandomNumber(20, 40)); - const today: Date = new Date(); - const gender: string = this.getRandomItem(genders); - - let firstName: string; - const lastName: string = this.getRandomItem(lastNames); - - const propertyNum: string = Math.round(this.getRandomNumber(1, 300)).toString(); - const cityState: string = this.getRandomItem(cities); - const road: string = this.getRandomItem(roadNames) + " " + this.getRandomItem(roadSuffixes); - - let photoPath: string; - - if (gender === "male") { - firstName = this.getRandomItem(maleNames); - maleCount++; - - if (maleCount > 26) { - maleCount = 0; - } - - if (maleCount < 10) { - photoPath = '/assets/GUY0' + maleCount.toString() + '.png'; - } - else { - photoPath = '/assets/GUY' + maleCount.toString() + '.png'; +```json-snippet source="/grids/data-grid/column-types" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "FirstName", + "headerText": "First Name" + }, + { + "type": "TextColumn", + "field": "LastName", + "headerText": "Last Name" + }, + { + "type": "ComboBoxColumn", + "field": "Country", + "headerText": "Country", + "dataSourceRef": "CountryNames", + "textField": "Name", + "valueField": "Name" + }, + { + "type": "TemplateColumn", + "field": "Address", + "headerText": "Address", + "cellUpdatingRef": "DataGridAddressLinesTemplate" + }, + { + "type": "ImageColumn", + "field": "Photo", + "headerText": "Photo", + "isEditable": false + }, + { + "type": "NumericColumn", + "field": "Age", + "headerText": "Age" + }, + { + "type": "DateTimeColumn", + "field": "Birthday", + "headerText": "Date of Birth" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } - else { - firstName = this.getRandomItem(femaleNames); - femaleCount++; - - if (femaleCount > 24) { - femaleCount = 0; - } - - if (femaleCount < 10) { - photoPath = '/assets/GIRL0' + femaleCount.toString() + '.png'; - } - else { - photoPath = '/assets/GIRL' + femaleCount.toString() + '.png'; - } - } - - const path: string = './assets/GIRL01.png'; - - const birthday: Date = new Date(today.getFullYear() - age, Math.round(this.getRandomNumber(1, 12)), Math.round(this.getRandomNumber(1, 28))); - - people.push({ - Address: propertyNum + " " + road + ", " + cityState, - Age: age, - Birthday: birthday, - City: cityState, - FirstName: firstName, - LastName: lastName, - Photo: path, - Street: propertyNum + " " + road + "," - }); -} - -this.data = people; - -public getRandomNumber(min: number, max: number): number { - return min + Math.random() * (max - min); } - -public getRandomItem(array: any[]): any { - const index = Math.round(this.getRandomNumber(0, array.length - 1)); - return array[index]; -} -``` - - -```razor - - - - - - - - - - -// In JS file: -function onUpdatingAddressColumn(grid, args) { - let content = args.content; - let info = args.cellInfo; - let item = info.rowItem; - let span1 = null; - let span2 = null; - - if (content.childElementCount === 0) { - content.style.fontFamily = "Verdana"; - content.style.fontSize = "13px"; - content.style.verticalAlign = "center"; - content.style.lineHeight = "normal"; - content.style.display = "flex"; - content.style.flexDirection = "column"; - content.style.justifyContent = "center"; - content.style.height = "100%"; - content.style.width = "100%"; - content.style.color = "rgb(24, 29, 31)"; - // stacking above elements in the content of grid's cell - span1 = document.createElement("span"); - span2 = document.createElement("span"); - content.appendChild(span1); - content.appendChild(span2); - } - else { - span1 = content.children[0]; - span2 = content.children[1]; - } - - if (span1 && span2) { - // updating elements in the content of grid's cell - span1.textContent = item.Street; - span2.textContent = item.City + ", " + item.Country; - } -} - -igRegisterScript("onUpdatingAddressColumn", onUpdatingAddressColumn, false); -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx index e712591d8a..d480ae6c75 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx @@ -296,344 +296,100 @@ Now that the {Platform} data grid module is imported, next is the basic configur ### Auto-Generate Columns The following code demonstrates how to bind the {Platform} data grid to the above local data. - -```tsx - -``` - - - -```html - - -``` - - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -``` - - - -```razor - -``` - - - -```xaml - +```json-snippet source="/grids/data-grid/overview" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": true, + "defaultColumnMinWidth": 100, + "summaryScope": "Root", + "isColumnOptionsEnabled": true, + "isGroupCollapsable": true, + "groupSummaryDisplayMode": "RowBottom", + "columnMovingMode": "Deferred", + "columnMovingAnimationMode": "SlideOver", + "columnMovingSeparatorWidth": 2, + "columnShowingAnimationMode": "SlideFromRightAndFadeIn", + "columnHidingAnimationMode": "SlideToRightAndFadeOut", + "selectionMode": "SingleRow", + "cornerRadiusTopLeft": 0, + "cornerRadiusTopRight": 0, + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - ### Manually Define Columns - -```tsx - - - - - - - -``` - - - -```html - - - - - - - -``` - - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -``` - - - -```razor - - - - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +```json-snippet source="/grids/data-grid/overview" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "autoGenerateColumns": false, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "NumericColumn", + "field": "ProductID", + "headerText": "Product ID" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product Name" + }, + { + "type": "TextColumn", + "field": "QuantityPerUnit", + "headerText": "Quantity Per Unit" + }, + { + "type": "NumericColumn", + "field": "UnitsInStock", + "headerText": "Units In Stock" + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date" + } + ] + } + } +} ``` - ### Styling Columns The following code demonstrates how to style specific columns using the provided column's properties. - -```tsx - -``` - - - -```html - -``` - - - -```razor - +```json-snippet source="/grids/data-grid/overview" +{ + "descriptions": { + "content": { + "type": "TextColumn", + "field": "Name", + "background": "SkyBlue", + "fontStyle": "italic", + "fontWeight": "bold", + "fontFamily": "Times New Roman", + "fontSize": 16 + } + } +} ``` - ### Tutorial Video diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx index 316a9d3cd5..ea4f5972fb 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx @@ -73,274 +73,70 @@ Sparkline コンポーネントを `TemplateColumn` に埋め込み、より複 以下は、このトピックで説明されている各列の実装を示します。 - -```tsx - - - - - - - - - -``` - - - -```html - - - - - - - - - -``` - - - -```ts -import { IgcTemplateColumnComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateCellInfo } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateCellUpdatingEventArgs } from 'igniteui-webcomponents-data-grids'; - -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; - -let cityComboColumn = document.getElementById('city') as IgcComboBoxColumnComponent; - -if (cityComboColumn) - this.allCities = DataGridSharedData.getAllCities(); - cityComboColumn.dataSource = this.cityList; - cityComboColumn.textField = "name"; - -let TemplateColumn = (document.getElementById("Address") as IgcTemplateColumnComponent); -TemplateColumn.cellUpdating = onCellUpdating; - -onCellUpdating(s: IgcTemplateColumnComponent, e: IgcTemplateCellUpdatingEventArgs): void { - // alert("onAddressCellUpdating"); - const content = e.content as HTMLDivElement; - let span1: HTMLSpanElement | null = null; - let span2: HTMLSpanElement | null = null; - const info = e.cellInfo as IgcTemplateCellInfo ; - const item = info.rowItem; - - if (content.childElementCount === 0) { - - span1 = document.createElement("span"); - span2 = document.createElement("span"); - - content.style.verticalAlign = "top"; - content.style.marginTop = "15px"; - content.style.lineHeight = "normal"; - content.style.display = "inline-grid"; - content.style.fontFamily = "Verdana"; - content.style.fontSize = "13px"; - - content.appendChild(span1); - content.appendChild(span2); - } - else { - span1 = content.children[0] as HTMLSpanElement; - span2 = content.children[1] as HTMLSpanElement; - } - - if (span1 && span2) { - span1.textContent = item.Street; - span2.textContent = item.City + ", " + item.Country; - } +```json-snippet source="/grids/data-grid/column-types" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "FirstName", + "headerText": "First Name" + }, + { + "type": "TextColumn", + "field": "LastName", + "headerText": "Last Name" + }, + { + "type": "ComboBoxColumn", + "field": "Country", + "headerText": "Country", + "dataSourceRef": "CountryNames", + "textField": "Name", + "valueField": "Name" + }, + { + "type": "TemplateColumn", + "field": "Address", + "headerText": "Address", + "cellUpdatingRef": "DataGridAddressLinesTemplate" + }, + { + "type": "ImageColumn", + "field": "Photo", + "headerText": "Photo", + "isEditable": false + }, + { + "type": "NumericColumn", + "field": "Age", + "headerText": "Age" + }, + { + "type": "DateTimeColumn", + "field": "Birthday", + "headerText": "Date of Birth" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } } ``` - - -```ts -import { IgrTemplateCellUpdatingEventArgs } from 'igniteui-react-data-grids'; -import { IgrTemplateCellInfo } from 'igniteui-react-data-grids'; -import { IgrTemplateColumn } from 'igniteui-react-data-grids'; -import { IgrComboBoxColumn } from 'igniteui-react-data-grids'; - -public onAddressCellUpdating(s: IgrTemplateColumn, e: IgrTemplateCellUpdatingEventArgs) { - const content = e.content as HTMLDivElement; - let span1: HTMLSpanElement | null = null; - let span2: HTMLSpanElement | null = null; - const info = e.cellInfo as IgrTemplateCellInfo; - const item = info.rowItem; - - if (content.childElementCount === 0) { - - span1 = document.createElement("span"); - span2 = document.createElement("span"); - - content.style.verticalAlign = "top"; - content.style.marginTop = "15px"; - content.style.lineHeight = "normal"; - content.style.display = "inline-grid"; - content.style.fontFamily = "Verdana"; - content.style.fontSize = "13px"; - - content.appendChild(span1); - content.appendChild(span2); - } - else { - span1 = content.children[0] as HTMLSpanElement; - span2 = content.children[1] as HTMLSpanElement; - } - if (span1 && span2) { - span1.textContent = item.Street; - span2.textContent = item.City + ", " + item.Country; - } -} -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - 以下は、上記の列で使用するサンプルデータ ソースです。 @@ -431,195 +227,7 @@ public getRandomItem(array: any[]): any { } ``` - -```razor - - - - - - - - - - -// In JS file: -function onUpdatingAddressColumn(grid, args) { - let content = args.content; - let info = args.cellInfo; - let item = info.rowItem; - let span1 = null; - let span2 = null; - - if (content.childElementCount === 0) { - content.style.fontFamily = "Verdana"; - content.style.fontSize = "13px"; - content.style.verticalAlign = "center"; - content.style.lineHeight = "normal"; - content.style.display = "flex"; - content.style.flexDirection = "column"; - content.style.justifyContent = "center"; - content.style.height = "100%"; - content.style.width = "100%"; - content.style.color = "rgb(24, 29, 31)"; - // stacking above elements in the content of grid's cell - span1 = document.createElement("span"); - span2 = document.createElement("span"); - content.appendChild(span1); - content.appendChild(span2); - } - else { - span1 = content.children[0]; - span2 = content.children[1]; - } - if (span1 && span2) { - // updating elements in the content of grid's cell - span1.textContent = item.Street; - span2.textContent = item.City + ", " + item.Country; - } -} - -igRegisterScript("onUpdatingAddressColumn", onUpdatingAddressColumn, false); -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx index 4465beb38c..8cacdace87 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx @@ -296,344 +296,104 @@ ModuleManager.register( ### 列の自動生成 以下のコードは、{Platform} データ グリッドを上記のローカルデータにバインドする方法を示しています。 - -```tsx - +```json-snippet source="/grids/data-grid/overview" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": true, + "defaultColumnMinWidth": 100, + "summaryScope": "Root", + "isColumnOptionsEnabled": true, + "isGroupCollapsable": true, + "groupSummaryDisplayMode": "RowBottom", + "columnMovingMode": "Deferred", + "columnMovingAnimationMode": "SlideOver", + "columnMovingSeparatorWidth": 2, + "columnShowingAnimationMode": "SlideFromRightAndFadeIn", + "columnHidingAnimationMode": "SlideToRightAndFadeOut", + "selectionMode": "SingleRow", + "cornerRadiusTopLeft": 0, + "cornerRadiusTopRight": 0, + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - -```html - - -``` - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; -``` - - - -```razor - -``` - - - -```xaml - -``` - ### 列の手動定義 - -```tsx - - - - - - - -``` - - - -```html - - - - - - - -``` - - - -```ts -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = data; +```json-snippet source="/grids/data-grid/overview" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "autoGenerateColumns": false, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "NumericColumn", + "field": "ProductID", + "headerText": "Product ID" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product Name" + }, + { + "type": "TextColumn", + "field": "QuantityPerUnit", + "headerText": "Quantity Per Unit" + }, + { + "type": "NumericColumn", + "field": "UnitsInStock", + "headerText": "Units In Stock" + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date" + } + ] + } + } +} ``` - - -```razor - - - - - - - -``` - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - ### 列のスタイル設定 次のコードは、提供された列のプロパティを使用して特定の列のスタイルを設定する方法を示しています。 - -```tsx - -``` - - - -```html - -``` - - - -```razor - +```json-snippet source="/grids/data-grid/overview" +{ + "descriptions": { + "content": { + "type": "TextColumn", + "field": "Name", + "background": "SkyBlue", + "fontStyle": "italic", + "fontWeight": "bold", + "fontFamily": "Times New Roman", + "fontSize": 16 + } + } +} ``` - ### ビデオ チュートリアル From bd29870b7d4607de8119f46f4041fb427eff2fc4 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 20:39:19 -0400 Subject: [PATCH 044/155] Collapse the rest of the data grid set cell-editing takes CellBatch, which its own prose settles, and keeps each platform's button markup beside the snippet: a description cannot state a button and the button is half of what those sections teach. Its Error Validation section stays hand written, the sample carrying neither of the handlers it wires. row-grouping keeps its imperative teaching. WebComponents and React set those two properties in code where Blazor and XAML write an attribute, so each section states one definition and emits it twice, code for the web and markup for the rest. local-data and column-pinning were waiting on the width shorthand. local-data states the React block column for column, which takes with it a duplicated XAML block, a fence publishing React's data generator to every platform, and a TODO admitting WebComponents was never written; its data is now emitted for every platform. column-pinning pins the three columns its own block files under "Columns pinned right" while stating no pinning on them. overview's Manually Define Columns now states column-auto-generation-sales, which is a real sample that declares its columns one by one, rather than fields that exist in no data set in the library. 14 pages collapsed, 116 snippets valid on every platform, en and jp identical. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 40 ++ .../grids/data-grid/cell-editing.mdx | 152 ++--- .../grids/data-grid/column-pinning.mdx | 455 ++++---------- .../components/grids/data-grid/local-data.mdx | 589 ++++-------------- .../components/grids/data-grid/overview.mdx | 44 +- .../grids/data-grid/row-grouping.mdx | 89 +-- .../grids/data-grid/cell-editing.mdx | 188 ++---- .../grids/data-grid/column-pinning.mdx | 451 ++++---------- .../components/grids/data-grid/local-data.mdx | 546 ++++------------ .../components/grids/data-grid/overview.mdx | 44 +- .../grids/data-grid/row-grouping.mdx | 89 +-- 11 files changed, 760 insertions(+), 1927 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 47db22b826..785535a689 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -999,3 +999,43 @@ explicitly in CSS, preferably using a div tag around the grid", which is what th The React and WebComponents blocks set a `useAccessibility` attribute instead — whether the component really takes one is a question for the product, but the description does not model it either way. Left hand written. + +### overview, Manually Define Columns — a sample that defines columns manually + +The blocks there use ProductID, QuantityPerUnit and UnitsInStock, and nothing in the library carries +the last two, so binding them to the topic's own sample would publish columns showing nothing. The +nearest real definition is `column-auto-generation-sales`: ProductOrders, `autoGenerateColumns` off, +eight columns declared one by one — which is exactly what the section teaches. The snippet states +that sample. + +### cell-editing — CellBatch, with the buttons left where they are + +The prose settles the value: "When set to CellBatch, in order to commit the changes you must...". +Both batch sections state `CellBatch`, so WebComponents' `Cell` goes, and the grid is now one +snippet with each platform's button markup kept beside it in a block of its own. A description +cannot state a button, and the button is the other half of what those sections teach. + +The Error Validation section is not collapsed: it wires `cellValueChanging` and `dataCommitting`, +and the sample carries neither handler, so there is nothing to emit them from. + +### row-grouping — imperative stays imperative, one section, two fences + +WebComponents and React teach these two properties as an assignment; Blazor and XAML teach them as +an attribute. Those are not interchangeable, so each section states its definition once and emits it +twice: `channel="code"` excluding the XAML platforms, and markup excluding the web ones. + +The web output carries the construction line — `var grid = new IgcDataGridComponent();` — before the +assignment, where the page showed the property being set on a grid the reader already has. That is +the shape the code channel produces everywhere, and what chart-performance has been publishing. + +### local-data, column-pinning — the shorthand made these possible + +Both are column-heavy and neither could be collapsed until a column width could be written as +`*>70`. local-data states the React block column for column, which also removes the page's +duplicated XAML block, its unguarded `ts` fence publishing React's data generator to every platform, +and the TODO admitting WebComponents was never written. Its data is now emitted for every platform +from the ProductOrders item. + +column-pinning's block files three columns under a "Columns pinned right" comment and states no +pinning on them. The sample pins them, so the snippet does: a comment contradicted by the markup +beside it is not the reference. diff --git a/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx b/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx index 619e53bb86..5ae356b83d 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx @@ -49,57 +49,48 @@ Commits can be approved or declined at the grid level by hooking `onDataCommitti The following demonstrates how to configure editing on the data grid and committing the data. - -```tsx - - - +```json-snippet source="/grids/data-grid/cell-editing" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "activationMode": "Cell", + "editMode": "CellBatch", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - + +And the control that commits the batch: -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -onCommitClick = () => { - this._grid.commitEdits(); -} +```tsx + ``` + + ```html - - ``` - - -```ts -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; - -this.onCommitClick = this.onCommitClick.bind(this); - -public onCommitClick() { - this.grid.commitEdits(); -} -``` + ```razor - @code { @@ -111,89 +102,57 @@ public onCommitClick() { } } ``` - - -```xaml - -``` ## Undo/Redo batch changes The following demonstrates how to revert changes while batch updating is enabled. +```json-snippet source="/grids/data-grid/cell-editing" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "activationMode": "Cell", + "editMode": "CellBatch", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} +``` + +And the controls that undo and redo them: + + ```tsx - - ``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; - -onUndoClick = () => { - this._grid.undo(); - // request a new render so the undo/redo buttons update. - this.setState({ }); -} - -onRedoClick = () => { - this._grid.redo(); - - // request a new render so the undo/redo buttons update. - this.setState({ }); -} -``` + ```html - - ``` - - - -```ts -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; - -public onUndoClick() { - this.grid.undo(); - if (this.grid.editMode === EditModeType.CellBatch && this.redo !== null) - { - this.redo.disabled = false; - } -} -public onRedoClick() { - this.grid.redo(); -} -``` + ```razor - @@ -211,14 +170,7 @@ public onRedoClick() { } } ``` - - -```xaml - -``` ## Error Validation and Commit Integrity diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx index 1e171fe006..a6915a5445 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx @@ -45,341 +45,130 @@ The `PinColumn` function contains two required parameters. The first parameter i The following code demonstrates how to implement column pinning in the {Platform} Data Grid with column pinning by using the `Pinned` property and `PinColumn` function: - -```tsx - - - {/*Columns pinned left*/} - - - - - {/*Columns unpinned*/} - - - - - {/*Columns pinned right*/} - - - - -``` - - - -```ts -import { PinnedPositions } from 'igniteui-react-data-grids'; - -public onButtonPinLeft = (e: any) => { - - let idColumn = this.grid.actualColumns.item(0); - let firstNameColumn = this.grid.actualColumns.item(1); - let lastNameColumn = this.grid.actualColumns.item(2); - - //pinned property - idColumn.pinned = PinnedPositions.Left; - firstNameColumn.pinned = PinnedPositions.Left; - lastNameColumn.pinned = PinnedPositions.Left; - - // pinColumn Function - this.grid.pinColumn(idColumn, PinnedPositions.Left); - this.grid.pinColumn(firstNameColumn, PinnedPositions.Left); - this.grid.pinColumn(lastNameColumn, PinnedPositions.Left); -} - -public onButtonPinRight = (e: any) => { - - let streetColumn = this.grid.actualColumns.item(6); - let cityColumn = this.grid.actualColumns.item(7); - let countryColumn = this.grid.actualColumns.item(8); - - //pinned property - streetColumn.pinned = PinnedPositions.Right; - cityColumn.pinned = PinnedPositions.Right; - countryColumn.pinned = PinnedPositions.Right; - - //pinColumn function - this.grid.pinColumn(streetColumn, PinnedPositions.Right); - this.grid.pinColumn(cityColumn, PinnedPositions.Right); - this.grid.pinColumn(countryColumn, PinnedPositions.Right); -} - -public onButtonUnPin = (e: any) => { - - let idColumn = this.grid.actualColumns.item(0); - let firstNameColumn = this.grid.actualColumns.item(1); - let lastNameColumn = this.grid.actualColumns.item(2); - - //pinned property - idColumn.pinned = PinnedPositions.Left; - firstNameColumn.pinned = PinnedPositions.Left; - lastNameColumn.pinned = PinnedPositions.Left; - - //pinColumn function - this.grid.pinColumn(idColumn, PinnedPositions.None); - this.grid.pinColumn(firstNameColumn, PinnedPositions.None); - this.grid.pinColumn(lastNameColumn, PinnedPositions.None); - - let streetColumn = this.grid.actualColumns.item(6); - let cityColumn = this.grid.actualColumns.item(7); - let countryColumn = this.grid.actualColumns.item(8); - - //pinned property - streetColumn.pinned = PinnedPositions.None; - cityColumn.pinned = PinnedPositions.None; - countryColumn.pinned = PinnedPositions.None; - - //pinColumn function - this.grid.pinColumn(streetColumn, PinnedPositions.None); - this.grid.pinColumn(cityColumn, PinnedPositions.None); - this.grid.pinColumn(countryColumn, PinnedPositions.None); -} -``` - - - -```html - - - - - - - - - - - - - -``` - - - -```ts -import { PinnedPositions } from 'igniteui-webcomponents-data-grids'; - -onButtonPinLeft() { - - let idColumn = this.grid.actualColumns.item(0); - let firstNameColumn = this.grid.actualColumns.item(1); - let lastNameColumn = this.grid.actualColumns.item(2); - - //pinned property - idColumn.pinned = PinnedPositions.Left; - firstNameColumn.pinned = PinnedPositions.Left; - lastNameColumn.pinned = PinnedPositions.Left; - - // pinColumn Function - this.grid.pinColumn(idColumn, PinnedPositions.Left); - this.grid.pinColumn(firstNameColumn, PinnedPositions.Left); - this.grid.pinColumn(lastNameColumn, PinnedPositions.Left); -} - -onButtonPinRight() { - - let streetColumn = this.grid.actualColumns.item(6); - let cityColumn = this.grid.actualColumns.item(7); - let countryColumn = this.grid.actualColumns.item(8); - - //pinned property - streetColumn.pinned = PinnedPositions.Right; - cityColumn.pinned = PinnedPositions.Right; - countryColumn.pinned = PinnedPositions.Right; - - //pinColumn function - this.grid.pinColumn(streetColumn, PinnedPositions.Right); - this.grid.pinColumn(cityColumn, PinnedPositions.Right); - this.grid.pinColumn(countryColumn, PinnedPositions.Right); -} - -onButtonUnPin() { - - let idColumn = this.grid.actualColumns.item(0); - let firstNameColumn = this.grid.actualColumns.item(1); - let lastNameColumn = this.grid.actualColumns.item(2); - - //pinned property - idColumn.pinned = PinnedPositions.Left; - firstNameColumn.pinned = PinnedPositions.Left; - lastNameColumn.pinned = PinnedPositions.Left; - - //pinColumn function - this.grid.pinColumn(idColumn, PinnedPositions.None); - this.grid.pinColumn(firstNameColumn, PinnedPositions.None); - this.grid.pinColumn(lastNameColumn, PinnedPositions.None); - - let streetColumn = this.grid.actualColumns.item(6); - let cityColumn = this.grid.actualColumns.item(7); - let countryColumn = this.grid.actualColumns.item(8); - - //pinned property - streetColumn.pinned = PinnedPositions.None; - cityColumn.pinned = PinnedPositions.None; - countryColumn.pinned = PinnedPositions.None; - - //pinColumn function - this.grid.pinColumn(streetColumn, PinnedPositions.None); - this.grid.pinColumn(cityColumn, PinnedPositions.None); - this.grid.pinColumn(countryColumn, PinnedPositions.None); +```json-snippet source="/grids/data-grid/column-pinning-picker" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "scrollbarStyle": "Thin", + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ID", + "headerText": "Employee ID", + "pinned": "Left", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 100 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "FirstName", + "headerText": "First Name", + "pinned": "Left", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 170 + } + }, + { + "type": "TextColumn", + "field": "LastName", + "headerText": "Last Name", + "pinned": "Left", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 170 + } + }, + { + "type": "DateTimeColumn", + "field": "Birthday", + "headerText": "Date of Birth", + "pinned": "None", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 150 + }, + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Age", + "pinned": "None", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 100 + }, + "horizontalAlignment": "Center" + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "headerText": "Country", + "pinned": "None", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 140 + }, + "contentOpacity": 1, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "Street", + "headerText": "Address", + "pinned": "Right", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 240 + } + }, + { + "type": "TextColumn", + "field": "City", + "pinned": "Right", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 150 + } + }, + { + "type": "TextColumn", + "field": "Country", + "pinned": "Right", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 150 + } + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } } ``` - - - -```razor - - - @*Columns Pinned Left*@ - - - - - @*Columns Unpinned*@ - - - - - @*Columns Pinned Right*@ - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - ## Toolbar's Column Pinning UI diff --git a/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx b/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx index 584c967bcd..9aba4f1bdf 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx @@ -26,464 +26,149 @@ The following sample demonstrates the {ProductName} Data Table / Data Grid data ## Code Snippet - -```tsx - - - - - - - - - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - - -```ts -public data: any[]; -public initData() { - const names: string[] = [ - "Intel CPU", "AMD CPU", - "Intel Motherboard", "AMD Motherboard", "Nvidia Motherboard", - "Nvidia GPU", "Gigabyte GPU", "Asus GPU", "AMD GPU", "MSI GPU", - "Corsair Memory", "Patriot Memory", "Skill Memory", - "Samsung HDD", "WD HDD", "Seagate HDD", "Intel HDD", "Asus HDD", - "Samsung SSD", "WD SSD", "Seagate SSD", "Intel SSD", "Asus SSD", - "Samsung Monitor", "Asus Monitor", "LG Monitor", "HP Monitor" ]; - - const countries: string[] = ["USA", "UK", "France", "Canada", "Poland", - "Denmark", "Croatia", "Australia", "Seychelles", - "Sweden", "Germany", "Japan", "Ireland", - "Barbados", "Jamaica", "Cuba", "Spain",]; - const status: string[] = [ "Packing", "Shipped", "Delivered"] - const sales: any[] = []; - - for (let i = 0; i < 200; i++) { - const price = this.getRandomNumber(10000, 90000) / 100; - const items = this.getRandomNumber(4, 30); - const value = Math.round(price * items); - const margin = this.getRandomNumber(2, 5); - const profit = Math.round((price * margin / 100) * items); - const country = this.getRandomItem(countries); - sales.push({ - Country: country, - CountryFlag: this.getCountryFlag(country), - Margin: margin, - OrderDate: this.getRandomDate(), - OrderItems: items, - OrderValue: value, - ProductID: 1001 + i, - ProductName: this.getRandomItem(names), - ProductPrice: price, - Profit: Math.round(profit), - Status: this.getRandomItem(status), - }); - } - - this.data = sales; - } -``` - - -```razor - - - - - - - - - - - - - -@code { - - private List DataSource; - private Random Rand = new Random(); - - protected override void OnInitialized() - { - base.OnInitialized(); - - GenerateData(); - } - - public void GenerateData() - { - string[] names = new string[] { - "Intel CPU", "AMD CPU", - "Intel Motherboard", "AMD Motherboard", "Nvidia Motherboard", - "Nvidia GPU", "Gigabyte GPU", "Asus GPU", "AMD GPU", "MSI GPU", - "Corsair Memory", "Patriot Memory", "Skill Memory", - "Samsung HDD", "WD HDD", "Seagate HDD", "Intel HDD", "Asus HDD", - "Samsung SSD", "WD SSD", "Seagate SSD", "Intel SSD", "Asus SSD", - "Samsung Monitor", "Asus Monitor", "LG Monitor", "HP Monitor" }; - - string[] countries = new string[] { - "USA", "UK", "France", "Canada", "Poland", - "Denmark", "Croatia", "Australia", "Seychelles", - "Sweden", "Germany", "Japan", "Ireland", - "Barbados", "Jamaica", "Cuba", "Spain", }; - string[] status = new string[] { "Packing", "Shipped", "Delivered" }; - - var sales = new List(); - - for (var i = 0; i < 200; i++) - { - var price = GetRandomNumber(10000, 90000) / 100; - var items = GetRandomNumber(4, 30); - var value = Math.Round(price * items); - var margin = GetRandomNumber(2, 5); - var profit = Math.Round((price * margin / 100) * items); - var country = GetRandomItem(countries); - - var item = new SaleInfo() - { - Country = country, - CountryFlag = GetCountryFlag(country), - Margin = margin, - OrderDate = GetRandomDate(), - OrderItems = items, - OrderValue = value, - ProductID = 1001 + i, - ProductName = GetRandomItem(names), - ProductPrice = price, - Profit = Math.Round(profit), - Status = GetRandomItem(status) - }; - sales.Add(item); +```json-snippet id="localData" source="/grids/data-grid/binding-local-data" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "autoGenerateColumns": false, + "rowHeight": 45, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "Order ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 70 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product Name" + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 90 + }, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "NumericColumn", + "field": "OrderItems", + "headerText": "Orders", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 70 + } + }, + { + "type": "NumericColumn", + "field": "OrderValue", + "headerText": "Order Value", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 100 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 100 + }, + "horizontalAlignment": "Right", + "dateTimeFormat": "DateShort" + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "headerText": "Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 100 + }, + "contentOpacity": 1, + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Margin", + "headerText": "Margin", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 90 + }, + "positiveSuffix": "%", + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Profit", + "headerText": "Profit", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 70 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "TextColumn", + "field": "Status", + "headerText": "Status", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 110 + }, + "horizontalAlignment": "Center" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } - - this.DataSource = sales; - } - - public double GetRandomNumber(double min, double max) - { - return Math.Round(min + (Rand.NextDouble() * (max - min))); - } - - public string GetRandomItem(string[] array) - { - var index = (int)Math.Round(GetRandomNumber(0, array.Length - 1)); - return array[index]; - } - - public DateTime GetRandomDate() { - var today = new DateTime(); - var year = today.Year; - var month = this.GetRandomNumber(1, 9); - var day = this.GetRandomNumber(10, 27); - return new DateTime(year, (int)month, (int)day); - } - - public string GetCountryFlag(string country) - { - var flag = "https://static.infragistics.com/xplatform/images/flags/" + country + ".png"; - return flag; - } - - public class SaleInfo - { - public string Status { get; set; } - public string ProductName { get; set; } - public string CountryFlag { get; set; } - public string Country { get; set; } - public DateTime OrderDate { get; set; } - public double Profit { get; set; } - public double ProductPrice { get; set; } - public double ProductID { get; set; } - public double OrderValue { get; set; } - public double OrderItems { get; set; } - public double Margin { get; set; } } } ``` - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - +The data the grid is bound to: -{/* TODO ADD WC, ETC. */} +```json-snippet ref="localData" source="/grids/data-grid/binding-local-data" channel="data" +``` ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx index d480ae6c75..6d4c226313 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx @@ -331,42 +331,60 @@ The following code demonstrates how to bind the {Platform} data grid to the abov ### Manually Define Columns -```json-snippet source="/grids/data-grid/overview" +```json-snippet source="/grids/data-grid/column-auto-generation-sales" { "descriptions": { "content": { "type": "DataGrid", "name": "grid", + "dataSourceRef": "ProductOrders", "autoGenerateColumns": false, "height": "100%", "width": "100%", "columns": [ + { + "type": "TextColumn", + "field": "ProductID" + }, + { + "type": "TextColumn", + "field": "ProductName" + }, { "type": "NumericColumn", - "field": "ProductID", - "headerText": "Product ID" + "field": "ProductPrice" }, { "type": "TextColumn", - "field": "ProductName", - "headerText": "Product Name" + "field": "City" }, { "type": "TextColumn", - "field": "QuantityPerUnit", - "headerText": "Quantity Per Unit" + "field": "Country" }, { - "type": "NumericColumn", - "field": "UnitsInStock", - "headerText": "Units In Stock" + "type": "ImageColumn", + "field": "CountryFlag", + "isEditable": false }, { "type": "DateTimeColumn", - "field": "OrderDate", - "headerText": "Order Date" + "field": "OrderDate" + }, + { + "type": "NumericColumn", + "field": "Profit", + "positivePrefix": "$", + "showGroupingSeparator": true, + "maxFractionDigits": 0, + "minFractionDigits": 0 } - ] + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } } diff --git a/docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx b/docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx index 1fb5ca2bd8..ad96e1596a 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx @@ -42,82 +42,45 @@ Set `IsGroupByAreaVisible` property on the DataGrid to True, as shown in the exa The `GroupHeaderDisplayMode` property allows the groups to be hierarchical. By default, each group description that is added gets aggregated together. Setting the `GroupHeaderDisplayMode` to `Split` will create a section header for ever group defined in `GroupDescriptions` property of the `Grid`. - -```ts -import { GroupHeaderDisplayMode } from 'igniteui-react-core'; - -public componentDidMount() { - // ... - this.grid.groupHeaderDisplayMode = GroupHeaderDisplayMode.Split; -} -``` - - - -```ts -import { GroupHeaderDisplayMode } from 'igniteui-webcomponents-core'; - -public connectedCallback() { - // ... - this.grid.groupHeaderDisplayMode = GroupHeaderDisplayMode.Split; +```json-snippet id="groupHeaderDisplayMode" source="/grids/data-grid/row-group-descriptions" exclude="Blazor,Xaml" channel="code" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "groupHeaderDisplayMode": "Split", + "height": "100%", + "width": "100%" + } + } } ``` - - -```razor - +```json-snippet ref="groupHeaderDisplayMode" source="/grids/data-grid/row-group-descriptions" exclude="Angular,React,WebComponents" ``` - - - -```xaml - -``` - ## Collapsible Groups Also, the `Grid` can display a toggle on each group section to allow the end user to expand or collapse the grouped data via the `IsGroupCollapsable` property. - -```ts -public componentDidMount() { - // ... - this.grid.isGroupCollapsable = true; +```json-snippet id="isGroupCollapsable" source="/grids/data-grid/row-grouping" exclude="Blazor,Xaml" channel="code" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "isGroupCollapsable": true, + "height": "100%", + "width": "100%" + } + } } ``` - - -```ts -public connectedCallback() { - // ... - this.grid.isGroupCollapsable = true; -} +```json-snippet ref="isGroupCollapsable" source="/grids/data-grid/row-grouping" exclude="Angular,React,WebComponents" ``` - - - -```razor - -``` - - - -```xaml - -``` - ## Summary diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx index 21d8fa144a..bb98e15ea6 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx @@ -49,177 +49,59 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下は、データ グリッドで編集を設定し、データをコミットする方法を示します。 - -```tsx - - - -``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; - -onCommitClick = () => { - this._grid.commitEdits(); -} -``` - - - -```html - - - -``` - - - -```ts -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; - -this.onCommitClick = this.onCommitClick.bind(this); - -public onCommitClick() { - this.grid.commitEdits(); +```json-snippet source="/grids/data-grid/cell-editing" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "activationMode": "Cell", + "editMode": "CellBatch", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } } ``` - - -```razor - - -@code { - public IgbDataGrid DataGridRef; - private void OnCommitClick(MouseEventArgs e) - { - this.DataGridRef.CommitEdits(); - } -} -``` - - -```xaml - -``` - ## 一括変更を元に戻す/やり直し 以下は、一括更新が有効な場合に変更を元に戻す方法を示しています。 - -```tsx - - - - -``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; - -onUndoClick = () => { - this._grid.undo(); - - // request a new render so the undo/redo buttons update. - this.setState({ }); -} - -onRedoClick = () => { - this._grid.redo(); - - // request a new render so the undo/redo buttons update. - this.setState({ }); -} -``` - - - -```html - - - - -``` - - - -```ts -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; - -public onUndoClick() { - this.grid.undo(); - if (this.grid.editMode === EditModeType.CellBatch && this.redo !== null) - { - this.redo.disabled = false; +```json-snippet source="/grids/data-grid/cell-editing" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "activationMode": "Cell", + "editMode": "CellBatch", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } } } - -public onRedoClick() { - this.grid.redo(); -} ``` - - - -```razor - - - -@code { - public IgbDataGrid DataGridRef; - private void OnUndoClick(MouseEventArgs e) - { - this.DataGridRef.Undo(); - } - private void OnRedoClick(MouseEventArgs e) - { - this.DataGridRef.Redo(); - } -} -``` - - -```xaml - -``` - ## エラー検証とコミットの整合性 diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx index 63b32ed867..692f5f22e3 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx @@ -45,341 +45,134 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下のコードは、`Pinned` プロパティと `PinColumn` 関数で列のピン固定を使用して、データ グリッドで列のピン固定を実装する方法を示します。 - -```tsx - - - {/*Columns pinned left*/} - - - - - {/*Columns unpinned*/} - - - - - {/*Columns pinned right*/} - - - - -``` - - - -```ts -import { PinnedPositions } from 'igniteui-react-data-grids'; - -public onButtonPinLeft = (e: any) => { - - let idColumn = this.grid.actualColumns.item(0); - let firstNameColumn = this.grid.actualColumns.item(1); - let lastNameColumn = this.grid.actualColumns.item(2); - - //pinned property - idColumn.pinned = PinnedPositions.Left; - firstNameColumn.pinned = PinnedPositions.Left; - lastNameColumn.pinned = PinnedPositions.Left; - - // pinColumn Function - this.grid.pinColumn(idColumn, PinnedPositions.Left); - this.grid.pinColumn(firstNameColumn, PinnedPositions.Left); - this.grid.pinColumn(lastNameColumn, PinnedPositions.Left); -} - -public onButtonPinRight = (e: any) => { - - let streetColumn = this.grid.actualColumns.item(6); - let cityColumn = this.grid.actualColumns.item(7); - let countryColumn = this.grid.actualColumns.item(8); - - //pinned property - streetColumn.pinned = PinnedPositions.Right; - cityColumn.pinned = PinnedPositions.Right; - countryColumn.pinned = PinnedPositions.Right; - - //pinColumn function - this.grid.pinColumn(streetColumn, PinnedPositions.Right); - this.grid.pinColumn(cityColumn, PinnedPositions.Right); - this.grid.pinColumn(countryColumn, PinnedPositions.Right); -} - -public onButtonUnPin = (e: any) => { - - let idColumn = this.grid.actualColumns.item(0); - let firstNameColumn = this.grid.actualColumns.item(1); - let lastNameColumn = this.grid.actualColumns.item(2); - - //pinned property - idColumn.pinned = PinnedPositions.Left; - firstNameColumn.pinned = PinnedPositions.Left; - lastNameColumn.pinned = PinnedPositions.Left; - - //pinColumn function - this.grid.pinColumn(idColumn, PinnedPositions.None); - this.grid.pinColumn(firstNameColumn, PinnedPositions.None); - this.grid.pinColumn(lastNameColumn, PinnedPositions.None); - - let streetColumn = this.grid.actualColumns.item(6); - let cityColumn = this.grid.actualColumns.item(7); - let countryColumn = this.grid.actualColumns.item(8); - - //pinned property - streetColumn.pinned = PinnedPositions.None; - cityColumn.pinned = PinnedPositions.None; - countryColumn.pinned = PinnedPositions.None; - - //pinColumn function - this.grid.pinColumn(streetColumn, PinnedPositions.None); - this.grid.pinColumn(cityColumn, PinnedPositions.None); - this.grid.pinColumn(countryColumn, PinnedPositions.None); +```json-snippet source="/grids/data-grid/column-pinning-picker" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "scrollbarStyle": "Thin", + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ID", + "headerText": "Employee ID", + "pinned": "Left", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 100 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "FirstName", + "headerText": "First Name", + "pinned": "Left", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 170 + } + }, + { + "type": "TextColumn", + "field": "LastName", + "headerText": "Last Name", + "pinned": "Left", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 170 + } + }, + { + "type": "DateTimeColumn", + "field": "Birthday", + "headerText": "Date of Birth", + "pinned": "None", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 150 + }, + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Age", + "pinned": "None", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 100 + }, + "horizontalAlignment": "Center" + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "headerText": "Country", + "pinned": "None", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 140 + }, + "contentOpacity": 1, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "Street", + "headerText": "Address", + "pinned": "Right", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 240 + } + }, + { + "type": "TextColumn", + "field": "City", + "pinned": "Right", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 150 + } + }, + { + "type": "TextColumn", + "field": "Country", + "pinned": "Right", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 150 + } + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } } ``` - - - -```html - - - - - - - - - - - - - -``` - - - -```ts -import { PinnedPositions } from 'igniteui-webcomponents-data-grids'; - -onButtonPinLeft() { - - let idColumn = this.grid.actualColumns.item(0); - let firstNameColumn = this.grid.actualColumns.item(1); - let lastNameColumn = this.grid.actualColumns.item(2); - - //pinned property - idColumn.pinned = PinnedPositions.Left; - firstNameColumn.pinned = PinnedPositions.Left; - lastNameColumn.pinned = PinnedPositions.Left; - - // pinColumn Function - this.grid.pinColumn(idColumn, PinnedPositions.Left); - this.grid.pinColumn(firstNameColumn, PinnedPositions.Left); - this.grid.pinColumn(lastNameColumn, PinnedPositions.Left); -} - -onButtonPinRight() { - - let streetColumn = this.grid.actualColumns.item(6); - let cityColumn = this.grid.actualColumns.item(7); - let countryColumn = this.grid.actualColumns.item(8); - - //pinned property - streetColumn.pinned = PinnedPositions.Right; - cityColumn.pinned = PinnedPositions.Right; - countryColumn.pinned = PinnedPositions.Right; - - //pinColumn function - this.grid.pinColumn(streetColumn, PinnedPositions.Right); - this.grid.pinColumn(cityColumn, PinnedPositions.Right); - this.grid.pinColumn(countryColumn, PinnedPositions.Right); -} - -onButtonUnPin() { - let idColumn = this.grid.actualColumns.item(0); - let firstNameColumn = this.grid.actualColumns.item(1); - let lastNameColumn = this.grid.actualColumns.item(2); - //pinned property - idColumn.pinned = PinnedPositions.Left; - firstNameColumn.pinned = PinnedPositions.Left; - lastNameColumn.pinned = PinnedPositions.Left; - //pinColumn function - this.grid.pinColumn(idColumn, PinnedPositions.None); - this.grid.pinColumn(firstNameColumn, PinnedPositions.None); - this.grid.pinColumn(lastNameColumn, PinnedPositions.None); - let streetColumn = this.grid.actualColumns.item(6); - let cityColumn = this.grid.actualColumns.item(7); - let countryColumn = this.grid.actualColumns.item(8); - - //pinned property - streetColumn.pinned = PinnedPositions.None; - cityColumn.pinned = PinnedPositions.None; - countryColumn.pinned = PinnedPositions.None; - - //pinColumn function - this.grid.pinColumn(streetColumn, PinnedPositions.None); - this.grid.pinColumn(cityColumn, PinnedPositions.None); - this.grid.pinColumn(countryColumn, PinnedPositions.None); -} -``` - - - -```razor - - - @*Columns Pinned Left*@ - - - - - @*Columns Unpinned*@ - - - - - @*Columns Pinned Right*@ - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - ## ツールバーの列ピン固定 UI diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx index 7c65a10d92..a0d70f6c4b 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx @@ -26,166 +26,146 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ## コード スニペット - -```tsx - - - - - - - - - - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +```json-snippet id="localData" source="/grids/data-grid/binding-local-data" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "autoGenerateColumns": false, + "rowHeight": 45, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "Order ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 70 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product Name" + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 90 + }, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "NumericColumn", + "field": "OrderItems", + "headerText": "Orders", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 70 + } + }, + { + "type": "NumericColumn", + "field": "OrderValue", + "headerText": "Order Value", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 100 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 100 + }, + "horizontalAlignment": "Right", + "dateTimeFormat": "DateShort" + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "headerText": "Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 100 + }, + "contentOpacity": 1, + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Margin", + "headerText": "Margin", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 90 + }, + "positiveSuffix": "%", + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Profit", + "headerText": "Profit", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 70 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "TextColumn", + "field": "Status", + "headerText": "Status", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 110 + }, + "horizontalAlignment": "Center" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - +```json-snippet ref="localData" source="/grids/data-grid/binding-local-data" channel="data" ```ts public data: any[]; public initData() { @@ -231,257 +211,7 @@ public initData() { } ``` - -```razor - - - - - - - - - - - - - -@code { - - private List DataSource; - private Random Rand = new Random(); - - protected override void OnInitialized() - { - base.OnInitialized(); - - GenerateData(); - } - - public void GenerateData() - { - string[] names = new string[] { - "Intel CPU", "AMD CPU", - "Intel Motherboard", "AMD Motherboard", "Nvidia Motherboard", - "Nvidia GPU", "Gigabyte GPU", "Asus GPU", "AMD GPU", "MSI GPU", - "Corsair Memory", "Patriot Memory", "Skill Memory", - "Samsung HDD", "WD HDD", "Seagate HDD", "Intel HDD", "Asus HDD", - "Samsung SSD", "WD SSD", "Seagate SSD", "Intel SSD", "Asus SSD", - "Samsung Monitor", "Asus Monitor", "LG Monitor", "HP Monitor" }; - - string[] countries = new string[] { - "USA", "UK", "France", "Canada", "Poland", - "Denmark", "Croatia", "Australia", "Seychelles", - "Sweden", "Germany", "Japan", "Ireland", - "Barbados", "Jamaica", "Cuba", "Spain", }; - string[] status = new string[] { "Packing", "Shipped", "Delivered" }; - var sales = new List(); - - for (var i = 0; i < 200; i++) - { - var price = GetRandomNumber(10000, 90000) / 100; - var items = GetRandomNumber(4, 30); - var value = Math.Round(price * items); - var margin = GetRandomNumber(2, 5); - var profit = Math.Round((price * margin / 100) * items); - var country = GetRandomItem(countries); - - var item = new SaleInfo() - { - Country = country, - CountryFlag = GetCountryFlag(country), - Margin = margin, - OrderDate = GetRandomDate(), - OrderItems = items, - OrderValue = value, - ProductID = 1001 + i, - ProductName = GetRandomItem(names), - ProductPrice = price, - Profit = Math.Round(profit), - Status = GetRandomItem(status) - }; - sales.Add(item); - } - - this.DataSource = sales; - } - - public double GetRandomNumber(double min, double max) - { - return Math.Round(min + (Rand.NextDouble() * (max - min))); - } - - public string GetRandomItem(string[] array) - { - var index = (int)Math.Round(GetRandomNumber(0, array.Length - 1)); - return array[index]; - } - - public DateTime GetRandomDate() { - var today = new DateTime(); - var year = today.Year; - var month = this.GetRandomNumber(1, 9); - var day = this.GetRandomNumber(10, 27); - return new DateTime(year, (int)month, (int)day); - } - - public string GetCountryFlag(string country) - { - var flag = "https://static.infragistics.com/xplatform/images/flags/" + country + ".png"; - return flag; - } - - public class SaleInfo - { - public string Status { get; set; } - public string ProductName { get; set; } - public string CountryFlag { get; set; } - public string Country { get; set; } - public DateTime OrderDate { get; set; } - public double Profit { get; set; } - public double ProductPrice { get; set; } - public double ProductID { get; set; } - public double OrderValue { get; set; } - public double OrderItems { get; set; } - public double Margin { get; set; } - } -} -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - {/* TODO ADD WC, ETC. */} diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx index 8cacdace87..be40e88a86 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx @@ -333,42 +333,60 @@ ModuleManager.register( ### 列の手動定義 -```json-snippet source="/grids/data-grid/overview" +```json-snippet source="/grids/data-grid/column-auto-generation-sales" { "descriptions": { "content": { "type": "DataGrid", "name": "grid", + "dataSourceRef": "ProductOrders", "autoGenerateColumns": false, "height": "100%", "width": "100%", "columns": [ + { + "type": "TextColumn", + "field": "ProductID" + }, + { + "type": "TextColumn", + "field": "ProductName" + }, { "type": "NumericColumn", - "field": "ProductID", - "headerText": "Product ID" + "field": "ProductPrice" }, { "type": "TextColumn", - "field": "ProductName", - "headerText": "Product Name" + "field": "City" }, { "type": "TextColumn", - "field": "QuantityPerUnit", - "headerText": "Quantity Per Unit" + "field": "Country" }, { - "type": "NumericColumn", - "field": "UnitsInStock", - "headerText": "Units In Stock" + "type": "ImageColumn", + "field": "CountryFlag", + "isEditable": false }, { "type": "DateTimeColumn", - "field": "OrderDate", - "headerText": "Order Date" + "field": "OrderDate" + }, + { + "type": "NumericColumn", + "field": "Profit", + "positivePrefix": "$", + "showGroupingSeparator": true, + "maxFractionDigits": 0, + "minFractionDigits": 0 } - ] + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } } diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx index e83b285ed5..c923c00d14 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx @@ -42,82 +42,45 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; `GroupHeaderDisplayMode` プロパティを使用すると、グループを階層化できます。デフォルトで、追加された各グループの説明が集計されます。`GroupHeaderDisplayMode` を `Split` に設定すると、`Grid` の `GroupDescriptions` プロパティで定義されたグループのセクション ヘッダーが作成されます。 - -```ts -import { GroupHeaderDisplayMode } from 'igniteui-react-core'; - -public componentDidMount() { - // ... - this.grid.groupHeaderDisplayMode = GroupHeaderDisplayMode.Split; -} -``` - - - -```ts -import { GroupHeaderDisplayMode } from 'igniteui-webcomponents-core'; - -public connectedCallback() { - // ... - this.grid.groupHeaderDisplayMode = GroupHeaderDisplayMode.Split; +```json-snippet id="groupHeaderDisplayMode" source="/grids/data-grid/row-group-descriptions" exclude="Blazor,Xaml" channel="code" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "groupHeaderDisplayMode": "Split", + "height": "100%", + "width": "100%" + } + } } ``` - - -```razor - +```json-snippet ref="groupHeaderDisplayMode" source="/grids/data-grid/row-group-descriptions" exclude="Angular,React,WebComponents" ``` - - - -```xaml - -``` - ## 縮小可能なグループ また、`Grid` は各グループ セクションに切り替えを表示して、エンドユーザーが `IsGroupCollapsable` プロパティでグループ化されたデータを展開または縮小できます。 - -```ts -public componentDidMount() { - // ... - this.grid.isGroupCollapsable = true; +```json-snippet id="isGroupCollapsable" source="/grids/data-grid/row-grouping" exclude="Blazor,Xaml" channel="code" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "isGroupCollapsable": true, + "height": "100%", + "width": "100%" + } + } } ``` - - -```ts -public connectedCallback() { - // ... - this.grid.isGroupCollapsable = true; -} +```json-snippet ref="isGroupCollapsable" source="/grids/data-grid/row-grouping" exclude="Angular,React,WebComponents" ``` - - - -```razor - -``` - - - -```xaml - -``` - ## まとめ From f264caf71bed7e4cfe4ee83c44de6b2216e03e95 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 20:48:38 -0400 Subject: [PATCH 045/155] Collapse the toolbar topics and the last plain grid ones MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit column-chooser and column-pinning pair a toolbar or chooser with the grid it targets, which is one definition carrying two descriptions — aboveContent and content, as the samples already hold them. The emitter writes both elements in order. An array of two definitions does not work here: targetGridRef resolves within the definition, so a toolbar emitted on its own reports its grid as a missing library item. A third invalid enum value turned up on the way: column-chooser states columnHidingAnimationMode="SlideOver" on React and WebComponents, and SlideOver is a column moving mode — hiding takes the SlideTo and FadeOut set. The sample does not set it and the section is about the chooser, so it goes. column-options and remote-data are plain property topics. remote-data's WebComponents block states a 200 minimum where React, XAML and the sample say 120, which is the same disagreement horizontal-scrolling had. 17 pages collapsed across the set, 121 snippets valid on every platform, en and jp identical. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 19 ++ .../grids/data-grid/column-chooser.mdx | 306 +++-------------- .../grids/data-grid/column-options.mdx | 220 ++----------- .../grids/data-grid/column-pinning.mdx | 150 ++------- .../grids/data-grid/remote-data.mdx | 44 +-- .../grids/data-grid/column-chooser.mdx | 308 ++++-------------- .../grids/data-grid/column-options.mdx | 216 ++---------- .../grids/data-grid/column-pinning.mdx | 152 ++------- .../grids/data-grid/remote-data.mdx | 44 +-- 9 files changed, 272 insertions(+), 1187 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 785535a689..0213df575b 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1039,3 +1039,22 @@ from the ProductOrders item. column-pinning's block files three columns under a "Columns pinned right" comment and states no pinning on them. The sample pins them, so the snippet does: a comment contradicted by the markup beside it is not the reference. + +### A toolbar and its grid are one definition, not two + +column-chooser and column-pinning each pair a toolbar or chooser with the grid it targets. Those go +in one definition with two descriptions — `aboveContent` and `content`, which is how the samples +already hold them — and the emitter writes both elements in order, matching what the blocks showed. +Splitting them into an array of two definitions does not work: `targetGridRef` resolves within the +definition, so a toolbar emitted alone reports the grid as a library item that does not exist. + +### column-chooser — another value that is not a member + +The React and WebComponents blocks state `columnHidingAnimationMode="SlideOver"`. SlideOver belongs +to column *moving*; the hiding modes are the SlideTo and FadeOut set. The sample does not set the +property at all, and the section is about the chooser, so the snippet drops it. + +### column-options, remote-data — WebComponents' minimum width, again + +remote-data's WebComponents block states a minimum of 200 where React, XAML and the sample say 120, +the same disagreement horizontal-scrolling has. 120 stated. diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx index 2adab36480..1f7d794daa 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx @@ -39,142 +39,36 @@ The Column Chooser can be configured with animations by setting the grid's `Colu The following demonstrates how to implement the Column Chooser Toolbar UI for the {Platform} Data Grid: - -```tsx - - - - -``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { IgrDataGridToolbar } from 'igniteui-react-data-grids'; - -public grid : IgrDataGrid; -public toolbar: IgrDataGridToolbar; - -this.onGridRef = this.onGridRef.bind(this); -this.onToolbarRef = this.onToolbarRef.bind(this); - - -public onGridRef(grid: IgrDataGrid) { - this.grid = grid; - if (this.toolbar != null) { - this.toolbar.targetGrid = this.grid; - this.grid.columnMovingAnimationMode = ColumnMovingAnimationMode.SlideOver; - - let productNameColumn = document.getElementById("productname") as IgrTextColumnComponent; - productNameColumn.isHidden = true; - } -} - -public onToolbarRef(toolbar: IgrDataGridToolbar) { - this.toolbar = toolbar; - if (this.grid != null) { - this.toolbar.targetGrid = this.grid; - this.toolbar.columnChooser = "true"; - this.toolbar.toolbarTitle = "Grid Title"; - this.toolbar.columnChooserText = "Column Chooser"; - this.toolbar.columnChooserTitle = "Column Chooser"; - } -} -``` - - - -```html - - - - -``` - - - -```ts -import { IgcDataGrid } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridToolbar } from 'igniteui-webcomponents-data-grids'; -import { ColumnMovingAnimationMode } from 'igniteui-webcomponents-data-grids'; - -private grid: IgcDataGridComponent; -private toolbar: IgcDataGridToolbarComponent; - -connectedCallback() { - this.toolbar.targetGrid = this.grid; - let productNameColumn = document.getElementById("productname") as IgcTextColumnComponent; - productNameColumn.isHidden = true; - this.toolbar.columnChooser = true; - this.toolbar.toolbarTitle = "Grid Title"; - this.toolbar.columnChooserText = "Choose Text"; - this.toolbar.columnChooserTitle = "Choose Title Text"; - this.grid.columnMovingAnimationMode = ColumnMovingAnimationMode.SlideOver; -} -``` - - - -```razor - - - - -@code { - private DataGrid grid; - public DataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - StateHasChanged(); +```json-snippet source="/grids/data-grid/column-chooser-toolbar" +{ + "descriptions": { + "aboveContent": { + "type": "DataGridToolbar", + "name": "toolbar", + "targetGridRef": "grid", + "toolbarTitle": "Grid Title", + "columnChooser": true, + "columnChooserText": "Columns", + "columnChooserTitle": "Column Chooser" + }, + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "scrollbarStyle": "Thin", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } } ``` - - - -```xaml - -``` - ## Simple Column Chooser @@ -192,131 +86,37 @@ Let's say we want to manually display the `ColumnChooser` UI without the toolbar The following demonstrates how to implement the Column Chooser UI for the Data Grid: - -```tsx - - - - - -``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { IgrColumnChooser } from 'igniteui-react-data-grids'; -import { ColumnMovingAnimationMode } from 'igniteui-react-data-grids'; - -public grid : IgrDataGrid; -public columnChooser: IgrColumnChooser; - -public onGridRef(grid: IgrDataGrid) { - this.grid = grid; - if (this.columnChooser) { - this.columnChooser.targetGrid = this.grid; - this.grid.columnMovingAnimationMode = ColumnMovingAnimationMode.SlideOver; - } -} - -public onColumnChooserRef(columnChooser: IgrColumnChooser) { - this.columnChooser = columnChooser; - if (this.grid) { - this.columnChooser.targetGrid = this.grid; - this.columnChooser.showAllText = "Show All"; - this.columnChooser.hideAllText = "Hide All"; - } -} -``` - - - -```html - - - - - -``` - - - -```ts -import { IgcDataGrid } from 'igniteui-webcomponents-data-grids'; -import { IgcColumnChooser } from 'igniteui-webcomponents-data-grids'; -import { ColumnMovingAnimationMode } from 'igniteui-webcomponents-data-grids'; - -private grid: IgcDataGridComponent; -private columnChooser: IgcColumnChooserComponent; - -connectedCallback() { - this.columnChooser.targetGrid = this.grid; - this.columnChooser.showAllText = "Show All"; - this.columnChooser.hideAllText = "Hide All"; - this.grid.columnMovingAnimationMode = ColumnMovingAnimationMode.SlideOver; -} -``` - - - -```razor - - - -@code { - private IgbDataGrid grid; - public IgbDataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - StateHasChanged(); +```json-snippet source="/grids/data-grid/column-chooser-picker" +{ + "descriptions": { + "aboveContent": { + "type": "ColumnChooser", + "name": "chooser", + "targetGridRef": "grid", + "title": "Column Chooser", + "showAllText": "Show All", + "hideAllText": "Hide All", + "height": "100%", + "width": "250px" + }, + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "scrollbarStyle": "Thin", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } } ``` - - - -```xaml - -``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx index 609a8635b7..9dcf7cd759 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx @@ -38,201 +38,33 @@ Sorting can be toggled for the entire grid if the `HeaderClickAction` property i The following code demonstrates how to programmatically enable the column options ui adjust filtering and sorting in the column options ui by adjusting the grid and column. - -```tsx - - - +```json-snippet source="/grids/data-grid/column-options" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "headerClickAction": "SortByOneColumnOnly", + "isColumnOptionsEnabled": true, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ID", + "isFilteringEnabled": false + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```ts -import { HeaderClickAction } from 'igniteui-react-data-grids'; - -//enable column options -this.grid.isColumnOptionsEnabled="true"; - -//adjust filtering for column -let idColumn = this.grid.actualColumns.item(0); -idColumn.isFilteringEnabled="false"; - -//adjust sorting -this.grid.headerClickAction = HeaderClickAction.SortByOneColumnOnly; -``` - - - -```ts -import { HeaderClickAction } from 'igniteui-webcomponents-data-grids'; - -//enable column options -this.grid.isColumnOptionsEnabled="true"; - -//adjust filtering for column -let idColumn = this.grid.actualColumns.item(0); -idColumn.isFilteringEnabled="false"; - -//adjust sorting -this.grid.headerClickAction = HeaderClickAction.SortByOneColumnOnly; -``` - - - -```html - - - -``` - - - -```razor - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx index a6915a5445..017450ed14 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx @@ -184,134 +184,36 @@ The `DataGridToolbar` provides additional properties such as adding a title to t ## Code Snippet - -```tsx - - - - -``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { IgrDataGridToolbar } from 'igniteui-react-data-grids'; - -public grid : IgrDataGrid; -public toolbar: IgrDataGridToolbar; - -this.onGridRef = this.onGridRef.bind(this); -this.onToolbarRef = this.onToolbarRef.bind(this); - - -public onGridRef(grid: IgrDataGrid) { - this.grid = grid; - if (this.toolbar != null) { - this.toolbar.targetGrid = this.grid; - - let productNameColumn = this.grid.actualColumns.item(0); - productNameColumn.pinned = PinnedPositions.Left; - } -} - -public onToolbarRef(toolbar: IgrDataGridToolbar) { - this.toolbar = toolbar; - if (this.grid != null) { - this.toolbar.targetGrid = this.grid; - this.toolbar.columnPinning = "true"; - this.toolbar.toolbarTitle = "Grid Title"; - this.toolbar.columnPinningText = "Pinning"; - this.toolbar.columnPinningTitle = "Pinning Title"; - } -} -``` - - - -```html - - - - -``` - - - -```ts -import { IgcDataGrid } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridToolbar } from 'igniteui-webcomponents-data-grids'; - -private grid: IgcDataGridComponent; -private toolbar: IgcToolbarComponent; - -connectedCallback() { - this.toolbar.targetGrid = this.grid; - let productNameColumn = document.getElementById("productname") as IgcTextColumnComponent; - productNameColumn.pinned = true; - this.toolbar.columnPinning = true; - this.toolbar.toolbarTitle = "Grid Title"; - this.toolbar.columnPinningText = "Pinning Text"; - this.toolbar.columnPinningTitle = "Pinning Title Text"; -} -``` - - - -```razor - - - -@code { - private IgbDataGrid grid; - public IgbDataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - StateHasChanged(); +```json-snippet source="/grids/data-grid/column-pinning-toolbar" +{ + "descriptions": { + "aboveContent": { + "type": "DataGridToolbar", + "name": "toolbar", + "targetGridRef": "grid", + "toolbarTitle": "Grid Title", + "columnPinning": true, + "columnPinningText": "Pinning", + "columnPinningTitle": "Columns Pinned Left" + }, + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "scrollbarStyle": "Thin", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } } ``` - - - -```xaml - -``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx b/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx index 81907b7746..9fd862eda0 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx @@ -75,33 +75,25 @@ ModuleManager.register(IgcDataGridModule); Now that the {Platform} data grid module is imported, the next step is the basic configuration of the {Platform} grid that binds to remote data. Create the virtual data source. Assign the url where the data will be retrieved from to the baseUri property. Setting the entitySet property will inform which table to retrieve from the virtual data source. - -```tsx - -``` - - - -```html - - +```json-snippet source="/grids/data-grid/binding-remote-data" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "NorthwindOrders", + "defaultColumnMinWidth": 120, + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```xaml - -``` - Assign the data source to the grid. diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx index 4aac16bb70..efebdb87d6 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx @@ -40,143 +40,41 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下は、データ グリッドの列選択ツールバー UI の実装方法を示します。 - -```tsx - - - - +```json-snippet source="/grids/data-grid/column-chooser-toolbar" +{ + "descriptions": { + "aboveContent": { + "type": "DataGridToolbar", + "name": "toolbar", + "targetGridRef": "grid", + "toolbarTitle": "Grid Title", + "columnChooser": true, + "columnChooserText": "Columns", + "columnChooserTitle": "Column Chooser" + }, + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "scrollbarStyle": "Thin", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { IgrDataGridToolbar } from 'igniteui-react-data-grids'; -public grid : IgrDataGrid; -public toolbar: IgrDataGridToolbar; -this.onGridRef = this.onGridRef.bind(this); -this.onToolbarRef = this.onToolbarRef.bind(this); -public onGridRef(grid: IgrDataGrid) { - this.grid = grid; - if (this.toolbar != null) { - this.toolbar.targetGrid = this.grid; - this.grid.columnMovingAnimationMode = ColumnMovingAnimationMode.SlideOver; - - let productNameColumn = document.getElementById("productname") as IgrTextColumnComponent; - productNameColumn.isHidden = true; - } -} - -public onToolbarRef(toolbar: IgrDataGridToolbar) { - this.toolbar = toolbar; - if (this.grid != null) { - this.toolbar.targetGrid = this.grid; - this.toolbar.columnChooser = "true"; - this.toolbar.toolbarTitle = "Grid Title"; - this.toolbar.columnChooserText = "Column Chooser"; - this.toolbar.columnChooserTitle = "Column Chooser"; - } -} -``` - - - -```html - - - - -``` - - - -```ts -import { IgcDataGrid } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridToolbar } from 'igniteui-webcomponents-data-grids'; -import { ColumnMovingAnimationMode } from 'igniteui-webcomponents-data-grids'; - -private grid: IgcDataGridComponent; -private toolbar: IgcDataGridToolbarComponent; - -connectedCallback() { - this.toolbar.targetGrid = this.grid; - let productNameColumn = document.getElementById("productname") as IgcTextColumnComponent; - productNameColumn.isHidden = true; - this.toolbar.columnChooser = true; - this.toolbar.toolbarTitle = "Grid Title"; - this.toolbar.columnChooserText = "Choose Text"; - this.toolbar.columnChooserTitle = "Choose Title Text"; - this.grid.columnMovingAnimationMode = ColumnMovingAnimationMode.SlideOver; -} -``` - - - -```razor - - - - -@code { - private DataGrid grid; - public DataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - StateHasChanged(); - } - } -} -``` - - - -```xaml - -``` - - ## シンプルな列選択 ツールバーなしで `ColumnChooser` UIを手動で表示し、ページの任意の場所に配置するとします。マークアップでコンポーネントのインスタンスを作成して簡単に行うことができます。 @@ -193,131 +91,39 @@ connectedCallback() { 以下は、データ グリッドの列選択 UI の実装方法を示します。 - -```tsx - - - - - -``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { IgrColumnChooser } from 'igniteui-react-data-grids'; -import { ColumnMovingAnimationMode } from 'igniteui-react-data-grids'; - -public grid : IgrDataGrid; -public columnChooser: IgrColumnChooser; - -public onGridRef(grid: IgrDataGrid) { - this.grid = grid; - if (this.columnChooser) { - this.columnChooser.targetGrid = this.grid; - this.grid.columnMovingAnimationMode = ColumnMovingAnimationMode.SlideOver; - } -} - -public onColumnChooserRef(columnChooser: IgrColumnChooser) { - this.columnChooser = columnChooser; - if (this.grid) { - this.columnChooser.targetGrid = this.grid; - this.columnChooser.showAllText = "Show All"; - this.columnChooser.hideAllText = "Hide All"; - } -} -``` - - - -```html - - - - - -``` - - - -```ts -import { IgcDataGrid } from 'igniteui-webcomponents-data-grids'; -import { IgcColumnChooser } from 'igniteui-webcomponents-data-grids'; -import { ColumnMovingAnimationMode } from 'igniteui-webcomponents-data-grids'; - -private grid: IgcDataGridComponent; -private columnChooser: IgcColumnChooserComponent; - -connectedCallback() { - this.columnChooser.targetGrid = this.grid; - this.columnChooser.showAllText = "Show All"; - this.columnChooser.hideAllText = "Hide All"; - this.grid.columnMovingAnimationMode = ColumnMovingAnimationMode.SlideOver; -} -``` - - - -```razor - - - -@code { - private IgbDataGrid grid; - public IgbDataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - StateHasChanged(); +```json-snippet source="/grids/data-grid/column-chooser-picker" +{ + "descriptions": { + "aboveContent": { + "type": "ColumnChooser", + "name": "chooser", + "targetGridRef": "grid", + "title": "Column Chooser", + "showAllText": "Show All", + "hideAllText": "Hide All", + "height": "100%", + "width": "250px" + }, + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "scrollbarStyle": "Thin", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } } } } ``` - - -```xaml - -``` - + ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx index b210b90b37..ad14ea1b9b 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx @@ -38,201 +38,37 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下のコードは、グリッドと列を調整することにより、列オプション UI でフィルタリングとソートをプログラムで有効にする方法を紹介します。 - -```tsx - - - +```json-snippet source="/grids/data-grid/column-options" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "headerClickAction": "SortByOneColumnOnly", + "isColumnOptionsEnabled": true, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ID", + "isFilteringEnabled": false + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - -```ts -import { HeaderClickAction } from 'igniteui-react-data-grids'; -//enable column options -this.grid.isColumnOptionsEnabled="true"; -//adjust filtering for column -let idColumn = this.grid.actualColumns.item(0); -idColumn.isFilteringEnabled="false"; -//adjust sorting -this.grid.headerClickAction = HeaderClickAction.SortByOneColumnOnly; -``` - - - -```ts -import { HeaderClickAction } from 'igniteui-webcomponents-data-grids'; - -//enable column options -this.grid.isColumnOptionsEnabled="true"; - -//adjust filtering for column -let idColumn = this.grid.actualColumns.item(0); -idColumn.isFilteringEnabled="false"; - -//adjust sorting -this.grid.headerClickAction = HeaderClickAction.SortByOneColumnOnly; -``` - - - -```html - - - -``` - - - -```razor - - - -``` - - - -```xaml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx index 692f5f22e3..00e618de48 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx @@ -188,134 +188,40 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ## コード スニペット - -```tsx - - - - +```json-snippet source="/grids/data-grid/column-pinning-toolbar" +{ + "descriptions": { + "aboveContent": { + "type": "DataGridToolbar", + "name": "toolbar", + "targetGridRef": "grid", + "toolbarTitle": "Grid Title", + "columnPinning": true, + "columnPinningText": "Pinning", + "columnPinningTitle": "Columns Pinned Left" + }, + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "defaultColumnMinWidth": 120, + "scrollbarStyle": "Thin", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { IgrDataGridToolbar } from 'igniteui-react-data-grids'; - -public grid : IgrDataGrid; -public toolbar: IgrDataGridToolbar; -this.onGridRef = this.onGridRef.bind(this); -this.onToolbarRef = this.onToolbarRef.bind(this); -public onGridRef(grid: IgrDataGrid) { - this.grid = grid; - if (this.toolbar != null) { - this.toolbar.targetGrid = this.grid; - let productNameColumn = this.grid.actualColumns.item(0); - productNameColumn.pinned = PinnedPositions.Left; - } -} - -public onToolbarRef(toolbar: IgrDataGridToolbar) { - this.toolbar = toolbar; - if (this.grid != null) { - this.toolbar.targetGrid = this.grid; - this.toolbar.columnPinning = "true"; - this.toolbar.toolbarTitle = "Grid Title"; - this.toolbar.columnPinningText = "Pinning"; - this.toolbar.columnPinningTitle = "Pinning Title"; - } -} -``` - - - -```html - - - - -``` - - - -```ts -import { IgcDataGrid } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridToolbar } from 'igniteui-webcomponents-data-grids'; - -private grid: IgcDataGridComponent; -private toolbar: IgcToolbarComponent; - -connectedCallback() { - this.toolbar.targetGrid = this.grid; - let productNameColumn = document.getElementById("productname") as IgcTextColumnComponent; - productNameColumn.pinned = true; - this.toolbar.columnPinning = true; - this.toolbar.toolbarTitle = "Grid Title"; - this.toolbar.columnPinningText = "Pinning Text"; - this.toolbar.columnPinningTitle = "Pinning Title Text"; -} -``` - - - -```razor - - - -@code { - private IgbDataGrid grid; - public IgbDataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - StateHasChanged(); - } - } -} -``` - - - -```xaml - -``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx index 740c939beb..6c9551f0bb 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx @@ -75,33 +75,25 @@ ModuleManager.register(IgcDataGridModule); グリッド モジュールがインポートされました。以下のステップはリモート データにバインドするグリッドの基本的な設定です。仮想データ ソースを作成します。データが取得される URL を `baseUri` プロパティに割り当てます。`entitySet` プロパティを設定すると、仮想データ ソースから取得するテーブルがわかります。 - -```tsx - -``` - - - -```html - - +```json-snippet source="/grids/data-grid/binding-remote-data" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "NorthwindOrders", + "defaultColumnMinWidth": 120, + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } +} ``` - - - -```xaml - -``` - データ ソースをグリッドに割り当てます。 From 283fed4817b7f367741a1d485b674dfba230e29f Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 21:24:50 -0400 Subject: [PATCH 046/155] Collapse the row-grouping summary, and fix the casing on every grid snippet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The summary section is the union it claims to be: both properties and the three group descriptions its blocks build, taken on the code channel by the web platforms and Blazor, as markup by XAML. The casing fix matters more. Every grid sample sets skipAlterDataCasing and none of the fences did, so the web emitters were camelising members of the data — field="productID" for a column bound to ProductID. XAML does not alter casing, which is why this hid behind pages that only generate for XAML while the web output, the one these topics are written for, was wrong. All 49 grid fences now carry the flag, at the root of the definition where the samples keep it. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 16 +++ .../grids/data-grid/cell-editing.mdx | 2 + .../grids/data-grid/column-animation.mdx | 1 + .../grids/data-grid/column-chooser.mdx | 2 + .../grids/data-grid/column-moving.mdx | 1 + .../grids/data-grid/column-options.mdx | 1 + .../grids/data-grid/column-pinning.mdx | 2 + .../grids/data-grid/column-resizing.mdx | 1 + .../grids/data-grid/column-sorting.mdx | 5 +- .../grids/data-grid/column-summaries.mdx | 1 + .../grids/data-grid/column-types.mdx | 1 + .../grids/data-grid/horizontal-scrolling.mdx | 2 + .../components/grids/data-grid/local-data.mdx | 1 + .../components/grids/data-grid/overview.mdx | 3 + .../grids/data-grid/remote-data.mdx | 1 + .../grids/data-grid/row-grouping.mdx | 136 +++++------------- .../grids/data-grid/row-highlighting.mdx | 1 + .../grids/data-grid/row-pinning.mdx | 1 + .../grids/data-grid/cell-editing.mdx | 2 + .../grids/data-grid/column-animation.mdx | 1 + .../grids/data-grid/column-chooser.mdx | 2 + .../grids/data-grid/column-moving.mdx | 1 + .../grids/data-grid/column-options.mdx | 1 + .../grids/data-grid/column-pinning.mdx | 2 + .../grids/data-grid/column-resizing.mdx | 1 + .../grids/data-grid/column-sorting.mdx | 5 +- .../grids/data-grid/column-summaries.mdx | 1 + .../grids/data-grid/column-types.mdx | 1 + .../grids/data-grid/horizontal-scrolling.mdx | 2 + .../components/grids/data-grid/local-data.mdx | 1 + .../components/grids/data-grid/overview.mdx | 3 + .../grids/data-grid/remote-data.mdx | 1 + .../grids/data-grid/row-grouping.mdx | 136 +++++------------- .../grids/data-grid/row-highlighting.mdx | 1 + .../grids/data-grid/row-pinning.mdx | 1 + 35 files changed, 136 insertions(+), 204 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 0213df575b..bb7bedbf3b 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1058,3 +1058,19 @@ property at all, and the section is about the chooser, so the snippet drops it. remote-data's WebComponents block states a minimum of 200 where React, XAML and the sample say 120, the same disagreement horizontal-scrolling has. 120 stated. + +### skipAlterDataCasing belongs on every grid snippet + +Every grid sample sets it, and without it the web emitters camelise a member of the data: a column +bound to ProductID comes out as `field="productID"`. XAML is unaffected, which is exactly why this +hid — these pages only generate for XAML, so the WinUI checks were clean while the web output, the +one that matters here, was wrong. All 49 grid fences now carry it. + +Worth remembering for any topic that names a field, a member path or a sort key: the flag lives at +the root of the definition, beside `descriptions`, as it does in the samples. + +### row-grouping Summary — the union, as code where the page taught code + +The section claims to combine the snippets above it, so the definition carries both properties and +the three group descriptions its own blocks build. The web platforms and Blazor take it on the code +channel, since that is how those blocks teach it; XAML takes the markup. diff --git a/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx b/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx index 5ae356b83d..23ef22637e 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx @@ -51,6 +51,7 @@ The following demonstrates how to configure editing on the data grid and committ ```json-snippet source="/grids/data-grid/cell-editing" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -111,6 +112,7 @@ The following demonstrates how to revert changes while batch updating is enabled ```json-snippet source="/grids/data-grid/cell-editing" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx index 0d375c80a3..1a0fa074f3 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-animation.mdx @@ -43,6 +43,7 @@ The following demonstrates the implementation of each of the column animations d ```json-snippet source="/grids/data-grid/column-animation" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx index 1f7d794daa..a556fdd298 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx @@ -41,6 +41,7 @@ The following demonstrates how to implement the Column Chooser Toolbar UI for th ```json-snippet source="/grids/data-grid/column-chooser-toolbar" { + "skipAlterDataCasing": true, "descriptions": { "aboveContent": { "type": "DataGridToolbar", @@ -88,6 +89,7 @@ The following demonstrates how to implement the Column Chooser UI for the Data G ```json-snippet source="/grids/data-grid/column-chooser-picker" { + "skipAlterDataCasing": true, "descriptions": { "aboveContent": { "type": "ColumnChooser", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx index 61fcefcfb7..fbad4fb22f 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-moving.mdx @@ -38,6 +38,7 @@ The following demonstrates how to implement column moving in the {ProductName} D ```json-snippet source="/grids/data-grid/column-moving" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx index 9dcf7cd759..bb0ea911aa 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-options.mdx @@ -40,6 +40,7 @@ The following code demonstrates how to programmatically enable the column option ```json-snippet source="/grids/data-grid/column-options" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx index 017450ed14..d1e9bc4c13 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx @@ -47,6 +47,7 @@ The following code demonstrates how to implement column pinning in the {Platform ```json-snippet source="/grids/data-grid/column-pinning-picker" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -186,6 +187,7 @@ The `DataGridToolbar` provides additional properties such as adding a title to t ```json-snippet source="/grids/data-grid/column-pinning-toolbar" { + "skipAlterDataCasing": true, "descriptions": { "aboveContent": { "type": "DataGridToolbar", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx index 83c37495d6..fe7da37334 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-resizing.mdx @@ -46,6 +46,7 @@ The following code snippet demonstrates how to implement column resizing in the ```json-snippet source="/grids/data-grid/column-resizing" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx index 26b2b2ca00..9416eccb2f 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-sorting.mdx @@ -37,6 +37,7 @@ You can sort by a single or multiple column ascending or descending in the {Plat ```json-snippet source="/grids/data-grid/column-sorting" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -46,7 +47,9 @@ You can sort by a single or multiple column ascending or descending in the {Plat "height": "100%", "width": "100%", "$setInCode": { - "dataSourceRef": [ "webComponents" ] + "dataSourceRef": [ + "webComponents" + ] } } } diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx index aeddc95821..cfffc8f0aa 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-summaries.mdx @@ -49,6 +49,7 @@ The {Platform} data grid supports configuration of the locations that summaries ```json-snippet source="/grids/data-grid/column-summaries" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx index 0ef6105230..0f829d279d 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-types.mdx @@ -75,6 +75,7 @@ The following demonstrates the implementation of each of the columns described i ```json-snippet source="/grids/data-grid/column-types" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx b/docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx index cdd842560a..7f06629309 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/horizontal-scrolling.mdx @@ -30,6 +30,7 @@ The {ProductName} Data Table / Data Grid supports Horizontal Scrolling is enable ```json-snippet id="scrolling" source="/grids/data-grid/column-scrolling" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -52,6 +53,7 @@ The {ProductName} Data Table / Data Grid supports Horizontal Scrolling is enable ```json-snippet source="/grids/data-grid/column-scrolling" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx b/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx index 9aba4f1bdf..4ac61cc1f4 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx @@ -28,6 +28,7 @@ The following sample demonstrates the {ProductName} Data Table / Data Grid data ```json-snippet id="localData" source="/grids/data-grid/binding-local-data" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx index 6d4c226313..6f9a0f5ff9 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx @@ -298,6 +298,7 @@ The following code demonstrates how to bind the {Platform} data grid to the abov ```json-snippet source="/grids/data-grid/overview" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -333,6 +334,7 @@ The following code demonstrates how to bind the {Platform} data grid to the abov ```json-snippet source="/grids/data-grid/column-auto-generation-sales" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -395,6 +397,7 @@ The following code demonstrates how to style specific columns using the provided ```json-snippet source="/grids/data-grid/overview" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "TextColumn", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx b/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx index 9fd862eda0..d59f375aba 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx @@ -77,6 +77,7 @@ Now that the {Platform} data grid module is imported, the next step is the basic ```json-snippet source="/grids/data-grid/binding-remote-data" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx b/docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx index ad96e1596a..7c548ba12a 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/row-grouping.mdx @@ -44,6 +44,7 @@ The `GroupHeaderDisplayMode` property allows the groups to be hierarchical. By d ```json-snippet id="groupHeaderDisplayMode" source="/grids/data-grid/row-group-descriptions" exclude="Blazor,Xaml" channel="code" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -66,6 +67,7 @@ Also, the `Grid` can display a toggle on each group section to allow the end use ```json-snippet id="isGroupCollapsable" source="/grids/data-grid/row-grouping" exclude="Blazor,Xaml" channel="code" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -87,112 +89,44 @@ Also, the `Grid` can display a toggle on each group section to allow the end use For your convenience, all above code snippets are combined into one code block below that you can easily copy to your project. - -```ts -import { IgrColumnGroupDescription } from 'igniteui-react-data-grids'; -import { ListSortDirection } from 'igniteui-react-core'; -import { GroupHeaderDisplayMode } from 'igniteui-react-core'; - -public componentDidMount() { - window.addEventListener('load', this.onLoad); -} - -public onLoad() { - const state = new IgrColumnGroupDescription(); - state.field = "Country"; - state.displayName = "Location"; - state.sortDirection = ListSortDirection.Descending; - const city = new IgrColumnGroupDescription(); - city.field = "City"; - city.displayName = ""; - const income = new IgrColumnGroupDescription(); - income.field = "Income"; - income.displayName = "Income"; - - this.grid.groupDescriptions.add(state); - this.grid.groupDescriptions.add(city); - this.grid.groupDescriptions.add(income); - - this.grid.isGroupCollapsable = true; - this.grid.groupHeaderDisplayMode = GroupHeaderDisplayMode.Split; -} -``` - - - -```ts -import { IgcIgcColumnGroupDescription } from 'igniteui-webcomponents-data-grids'; -import { ListSortDirection } from 'igniteui-webcomponents-core'; -import { GroupHeaderDisplayMode } from 'igniteui-webcomponents-core'; - -public connectedCallback() { - const state = new IgcColumnGroupDescription(); - state.field = "Country"; - state.displayName = "Location"; - state.sortDirection = ListSortDirection.Descending; - const city = new IgcColumnGroupDescription(); - city.field = "City"; - city.displayName = ""; - const income = new IgcColumnGroupDescription(); - income.field = "Income"; - income.displayName = "Income"; - - this.grid = document.getElementById("grid") as IgcDataGridComponent; - this.grid.groupDescriptions.add(state); - this.grid.groupDescriptions.add(city); - this.grid.groupDescriptions.add(income); - - this.grid.isGroupCollapsable = true; - this.grid.groupHeaderDisplayMode = GroupHeaderDisplayMode.Split; -} -``` - - - -```razor - - -@code { - private IgbDataGrid grid; - public IgbDataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - OnGridCreated(); - StateHasChanged(); +```json-snippet id="groupingSummary" source="/grids/data-grid/row-group-descriptions" exclude="Xaml" channel="code" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "isGroupCollapsable": true, + "groupHeaderDisplayMode": "Split", + "height": "100%", + "width": "100%", + "groupDescriptions": [ + { + "type": "ColumnGroupDescription", + "field": "Country", + "displayName": "Location", + "sortDirection": "Descending" + }, + { + "type": "ColumnGroupDescription", + "field": "City", + "displayName": "City" + }, + { + "type": "ColumnGroupDescription", + "field": "Income", + "displayName": "Income" + } + ] } } - - private void OnGridCreated() - { - var state = new ColumnGroupDescription { Field = "Country", DisplayName = "Location" }; - var city = new ColumnGroupDescription { Field = "City", DisplayName = "City" }; - var income = new ColumnGroupDescription { Field = "Income", DisplayName = "Income" }; - - this.DataGridRef.GroupDescriptions.Add(state); - this.DataGridRef.GroupDescriptions.Add(city); - this.DataGridRef.GroupDescriptions.Add(income); - } } ``` - - - -```xaml - + +```json-snippet ref="groupingSummary" source="/grids/data-grid/row-group-descriptions" exclude="Angular,React,WebComponents,Blazor" ``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx b/docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx index f9c21e624b..1a1eab006a 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/row-highlighting.mdx @@ -38,6 +38,7 @@ The following demonstrates how to enable row highlighting on the {Platform} data ```json-snippet source="/grids/data-grid/row-highlighting" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx b/docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx index 49438fce0a..21a2609e49 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/row-pinning.mdx @@ -42,6 +42,7 @@ public onGridRef(grid: IgrDataGrid) { ```json-snippet source="/grids/data-grid/row-pinning" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx index bb98e15ea6..75e27e9f66 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx @@ -51,6 +51,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/cell-editing" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -80,6 +81,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/cell-editing" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx index eb66718bc4..83b9fe92df 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-animation.mdx @@ -43,6 +43,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-animation" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx index efebdb87d6..92fcccb786 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx @@ -42,6 +42,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-chooser-toolbar" { + "skipAlterDataCasing": true, "descriptions": { "aboveContent": { "type": "DataGridToolbar", @@ -93,6 +94,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-chooser-picker" { + "skipAlterDataCasing": true, "descriptions": { "aboveContent": { "type": "ColumnChooser", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx index e0632996b0..2400683897 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-moving.mdx @@ -38,6 +38,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-moving" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx index ad14ea1b9b..40fbd54828 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-options.mdx @@ -40,6 +40,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-options" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx index 00e618de48..cb9ecb6c0a 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx @@ -47,6 +47,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-pinning-picker" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -190,6 +191,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-pinning-toolbar" { + "skipAlterDataCasing": true, "descriptions": { "aboveContent": { "type": "DataGridToolbar", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx index 1152b7e84f..5e6eed6e87 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx @@ -46,6 +46,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-resizing" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx index 754cc036fe..d4464090ca 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-sorting.mdx @@ -36,6 +36,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-sorting" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -45,7 +46,9 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; "height": "100%", "width": "100%", "$setInCode": { - "dataSourceRef": [ "webComponents" ] + "dataSourceRef": [ + "webComponents" + ] } } } diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx index ab8a26ea23..b74b90eaad 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-summaries.mdx @@ -49,6 +49,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-summaries" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx index ea4f5972fb..50b156503e 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-types.mdx @@ -75,6 +75,7 @@ Sparkline コンポーネントを `TemplateColumn` に埋め込み、より複 ```json-snippet source="/grids/data-grid/column-types" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx index eb5b3da4b3..dc94a978e3 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/horizontal-scrolling.mdx @@ -30,6 +30,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet id="scrolling" source="/grids/data-grid/column-scrolling" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -52,6 +53,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/column-scrolling" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx index a0d70f6c4b..020ffa0dad 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx @@ -28,6 +28,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet id="localData" source="/grids/data-grid/binding-local-data" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx index be40e88a86..7b66bdaf85 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx @@ -298,6 +298,7 @@ ModuleManager.register( ```json-snippet source="/grids/data-grid/overview" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -335,6 +336,7 @@ ModuleManager.register( ```json-snippet source="/grids/data-grid/column-auto-generation-sales" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -399,6 +401,7 @@ ModuleManager.register( ```json-snippet source="/grids/data-grid/overview" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "TextColumn", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx index 6c9551f0bb..9044cf7323 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx @@ -77,6 +77,7 @@ ModuleManager.register(IgcDataGridModule); ```json-snippet source="/grids/data-grid/binding-remote-data" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx index c923c00d14..b9380d4b29 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/row-grouping.mdx @@ -44,6 +44,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet id="groupHeaderDisplayMode" source="/grids/data-grid/row-group-descriptions" exclude="Blazor,Xaml" channel="code" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -66,6 +67,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet id="isGroupCollapsable" source="/grids/data-grid/row-grouping" exclude="Blazor,Xaml" channel="code" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", @@ -87,112 +89,44 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 上記すべてのコード スニペットを以下のコード ブロックにまとめて、プロジェクトに簡単にコピーできます。 - -```ts -import { IgrColumnGroupDescription } from 'igniteui-react-data-grids'; -import { ListSortDirection } from 'igniteui-react-core'; -import { GroupHeaderDisplayMode } from 'igniteui-react-core'; - -public componentDidMount() { - window.addEventListener('load', this.onLoad); -} - -public onLoad() { - const state = new IgrColumnGroupDescription(); - state.field = "Country"; - state.displayName = "Location"; - state.sortDirection = ListSortDirection.Descending; - const city = new IgrColumnGroupDescription(); - city.field = "City"; - city.displayName = ""; - const income = new IgrColumnGroupDescription(); - income.field = "Income"; - income.displayName = "Income"; - - this.grid.groupDescriptions.add(state); - this.grid.groupDescriptions.add(city); - this.grid.groupDescriptions.add(income); - - this.grid.isGroupCollapsable = true; - this.grid.groupHeaderDisplayMode = GroupHeaderDisplayMode.Split; -} -``` - - - -```ts -import { IgcIgcColumnGroupDescription } from 'igniteui-webcomponents-data-grids'; -import { ListSortDirection } from 'igniteui-webcomponents-core'; -import { GroupHeaderDisplayMode } from 'igniteui-webcomponents-core'; - -public connectedCallback() { - const state = new IgcColumnGroupDescription(); - state.field = "Country"; - state.displayName = "Location"; - state.sortDirection = ListSortDirection.Descending; - const city = new IgcColumnGroupDescription(); - city.field = "City"; - city.displayName = ""; - const income = new IgcColumnGroupDescription(); - income.field = "Income"; - income.displayName = "Income"; - - this.grid = document.getElementById("grid") as IgcDataGridComponent; - this.grid.groupDescriptions.add(state); - this.grid.groupDescriptions.add(city); - this.grid.groupDescriptions.add(income); - - this.grid.isGroupCollapsable = true; - this.grid.groupHeaderDisplayMode = GroupHeaderDisplayMode.Split; -} -``` - - - -```razor - - -@code { - private IgbDataGrid grid; - public IgbDataGrid DataGridRef - { - get - { - return grid; - } - set - { - grid = value; - OnGridCreated(); - StateHasChanged(); +```json-snippet id="groupingSummary" source="/grids/data-grid/row-group-descriptions" exclude="Xaml" channel="code" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "autoGenerateColumns": false, + "isGroupCollapsable": true, + "groupHeaderDisplayMode": "Split", + "height": "100%", + "width": "100%", + "groupDescriptions": [ + { + "type": "ColumnGroupDescription", + "field": "Country", + "displayName": "Location", + "sortDirection": "Descending" + }, + { + "type": "ColumnGroupDescription", + "field": "City", + "displayName": "City" + }, + { + "type": "ColumnGroupDescription", + "field": "Income", + "displayName": "Income" + } + ] } } - - private void OnGridCreated() - { - var state = new ColumnGroupDescription { Field = "Country", DisplayName = "Location" }; - var city = new ColumnGroupDescription { Field = "City", DisplayName = "City" }; - var income = new ColumnGroupDescription { Field = "Income", DisplayName = "Income" }; - - this.DataGridRef.GroupDescriptions.Add(state); - this.DataGridRef.GroupDescriptions.Add(city); - this.DataGridRef.GroupDescriptions.Add(income); - } } ``` - - - -```xaml - + +```json-snippet ref="groupingSummary" source="/grids/data-grid/row-group-descriptions" exclude="Angular,React,WebComponents,Blazor" ``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx index b31cfb4a17..1f75471b6e 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/row-highlighting.mdx @@ -38,6 +38,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/row-highlighting" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx index 617c830f43..10fb5d0466 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/row-pinning.mdx @@ -32,6 +32,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; ```json-snippet source="/grids/data-grid/row-pinning" { + "skipAlterDataCasing": true, "descriptions": { "content": { "type": "DataGrid", From 6f5e1e86477da3e3a8b393be1651d6939a0bb044 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 21:37:42 -0400 Subject: [PATCH 047/155] Check collapsed snippets on the platforms their pages do not publish MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The data grid topics are gated to the XAML platforms, so generation skips them for the web and their fences had never been emitted there at all. That is how skipAlterDataCasing hid, and it is not the only thing it hid. Two checks close it. check-snippet-emission emits every fence for every platform whatever the gating says, honouring only the fence's own exclude: 541 emissions, all passing. compare-web-blocks recovers each page from before a commit and sets the block each platform had beside what the fence emits now, matched per element, reporting what was gained, lost and changed — the web blocks being the accurate record for the web, since they were published and the XAML ones were generated from the samples. What that turned up: Only descriptions.content was ever validated, so every other slot went unchecked. The column chooser fence carried four properties ColumnChooser does not have and the emitter dropped them silently. Every description in a definition is validated now, which caught them immediately. The chooser sections had lost their columns: a grid told not to generate columns, with none stated, has none. Both state the sample's now. The toolbar sections' grids go back to leaving room for the toolbar above them, and overview's manual columns are labelled again where the fields correspond. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 33 +++ docs/xplat/scripts/check-snippet-emission.mjs | 142 +++++++++ docs/xplat/scripts/compare-web-blocks.mjs | 163 ++++++++++ docs/xplat/scripts/generate.mjs | 25 +- .../grids/data-grid/column-chooser.mdx | 278 +++++++++++++++++- .../grids/data-grid/column-pinning.mdx | 2 +- .../components/grids/data-grid/overview.mdx | 9 +- .../grids/data-grid/column-chooser.mdx | 278 +++++++++++++++++- .../grids/data-grid/column-pinning.mdx | 2 +- .../components/grids/data-grid/overview.mdx | 9 +- 10 files changed, 909 insertions(+), 32 deletions(-) create mode 100644 docs/xplat/scripts/check-snippet-emission.mjs create mode 100644 docs/xplat/scripts/compare-web-blocks.mjs diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index bb7bedbf3b..cebbf3a499 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1074,3 +1074,36 @@ the root of the definition, beside `descriptions`, as it does in the samples. The section claims to combine the snippets above it, so the definition carries both properties and the three group descriptions its own blocks build. The web platforms and Blazor take it on the code channel, since that is how those blocks teach it; XAML takes the markup. + +## Checking a collapse for platforms the page does not publish + +The data grid topics are gated to the XAML platforms, so `generate.mjs --platform=React` skips them +entirely: their fences had never once been emitted for the web. Schema validation still ran, but a +schema says nothing about what comes out. Two checks close that, and both belong in the routine for +any gated topic: + +- `check-snippet-emission.mjs` emits every fence for every platform regardless of gating, honouring + only the fence's own `exclude`. 541 emissions across five platforms, and it is what proves a + definition survives the platforms its page happens not to build. +- `compare-web-blocks.mjs` recovers each page from before a commit and sets the block each platform + had beside what the fence emits for it now, per element, reporting attributes gained, lost and + changed. The web blocks are the accurate record for the web — they were published, where the XAML + blocks were generated from the samples — so this is the review that matters on these pages. + +What the comparison turned up, beyond the decisions already recorded: + +- **A validation gap.** Only `descriptions.content` was ever checked, so any other slot went + unexamined. The column chooser fence carried four properties its description does not have — + `showAllText`, `hideAllText`, `height`, `width` — and the emitter dropped them without a word. + Every description in a definition is checked now, and the four properties are gone from the fence. +- **A grid told not to generate columns, with none stated, has none.** The chooser sections lost + their columns that way. Both now state the sample's. +- **The toolbar sections' grids leave room for the toolbar**, which is what `calc(100% - 40px)` was + saying; the fences state it rather than the sample's 100%. +- Enum values come out canonical — `left` becomes `Left`, `thin` becomes `Thin`, + `slideFromRightAndFadeIn` becomes `SlideFromRightAndFadeIn` — which is a correction, and + `120px` becomes `120` because the description takes a number. + +One thing the description cannot express, left as a gap rather than papered over: the column chooser +takes a height, a width and the text on its show-all and hide-all buttons in the published blocks, +and `ColumnChooser` models none of the four. diff --git a/docs/xplat/scripts/check-snippet-emission.mjs b/docs/xplat/scripts/check-snippet-emission.mjs new file mode 100644 index 0000000000..a6316bc4d4 --- /dev/null +++ b/docs/xplat/scripts/check-snippet-emission.mjs @@ -0,0 +1,142 @@ +/** + * Emits every json-snippet for every platform, whatever the topic's own gating says. + * + * Generation only emits a fence for the platforms its page publishes on, so a topic gated to one + * technology is never emitted for the others — the data grid set is gated to the XAML platforms, + * and its fences had never once been emitted for the web. Schema validation still runs there, but a + * schema says nothing about what comes out: a definition can be perfectly valid and emit a member + * path the platform spells differently, or fail outright on a type that platform does not have. + * + * So this runs the fences the way the generator would, once per platform, and reports what breaks. + * It is the check that would have caught skipAlterDataCasing: the web emitters camelise a member of + * the data without it, and no XAML run can show that. + * + * XPLAT_EXAMPLES= node scripts/check-snippet-emission.mjs [--lang=en] [glob] + */ + +import fs from 'fs'; +import path from 'path'; +import { createRequire } from 'module'; +import { fileURLToPath } from 'url'; + +const require = createRequire(import.meta.url); +const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); + +const EXAMPLES = process.env.XPLAT_EXAMPLES; +if (!EXAMPLES) { + console.error('set XPLAT_EXAMPLES to the igniteui-xplat-examples checkout'); + process.exit(2); +} + +const args = process.argv.slice(2); +const LANG = (args.find(a => a.startsWith('--lang=')) || '--lang=en').slice(7); +const ONLY = args.find(a => !a.startsWith('--')); + +const SNIPPET_API = process.env.IG_SNIPPET_API + ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'; +const DOM_SHIM = process.env.IG_SNIPPET_DOM_SHIM + ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'; +require(DOM_SHIM); +const api = require(SNIPPET_API); + +const PLATFORMS = ['Angular', 'React', 'WebComponents', 'Blazor', 'WinUI']; + +// The generator's own style tables, read from it rather than copied, so this cannot drift from what +// the pages are actually built with. +const generator = fs.readFileSync(path.join(ROOT, 'scripts', 'generate.mjs'), 'utf-8'); +const styleFor = (platform) => { + const common = {}; + const block = generator.match(/const SNIPPET_STYLE_COMMON = \{([\s\S]*?)\n\};/); + for (const [, key, value] of block[1].matchAll(/^\s{4}(\w+):\s*([^,\n]+),/gm)) { + common[key] = value === 'true' ? true : value === 'false' ? false : value.replace(/['"]/g, ''); + } + const per = { + Angular: { indentAttributes: true, numericAttributeStyle: 'bare' }, + React: { indentAttributes: true, numericAttributeStyle: 'braced', booleanAttributeStyle: 'braced', selfCloseEmptyElements: true }, + WebComponents: { indentAttributes: true }, + Blazor: { indentAttributes: true, selfCloseEmptyElements: true }, + WinUI: { indentXamlAttributes: true, omitDimensions: true, selfCloseEmptyElements: true }, + }; + return { ...common, ...per[platform] }; +}; + +/** Every fence in a topic, with the attributes on its line. */ +function fencesOf(text) { + const found = []; + for (const m of text.matchAll(/```json-snippet([^\n]*)\n([\s\S]*?)^```/gm)) { + const attrs = {}; + for (const a of m[1].matchAll(/(\w+)="([^"]*)"/g)) attrs[a[1]] = a[2]; + found.push({ attrs, body: m[2], line: text.slice(0, m.index).split('\n').length }); + } + return found; +} + +const files = []; +const walk = (dir) => { + for (const entry of fs.readdirSync(dir, { withFileTypes: true })) { + const full = path.join(dir, entry.name); + if (entry.isDirectory()) walk(full); + else if (entry.name.endsWith('.mdx')) files.push(full); + } +}; +walk(path.join(ROOT, 'src', 'content', LANG, 'components')); + +let checked = 0, failures = 0, skipped = 0; +const byId = new Map(); +for (const file of files.sort()) { + if (ONLY && !file.includes(ONLY)) continue; + const text = fs.readFileSync(file, 'utf-8'); + for (const fence of fencesOf(text)) { + const where = `${file.split('/content/')[1]}:${fence.line}`; + let body = fence.body; + if (fence.attrs.id) byId.set(fence.attrs.id, body); + if (fence.attrs.ref) body = byId.get(fence.attrs.ref) ?? body; + if (!body.trim()) continue; + + for (const platform of PLATFORMS) { + // The fence's own exclusions still apply: a snippet that says it is not for a platform + // is not expected to emit there. + const excluded = (fence.attrs.exclude || '').split(',').map(s => s.trim()).filter(Boolean); + const isXaml = platform === 'WinUI' || platform === 'Uno'; + if (excluded.includes(platform) || (isXaml && excluded.includes('Xaml'))) { skipped++; continue; } + + checked++; + try { + const channel = fence.attrs.channel; + const opts = { examplesRoot: EXAMPLES, styleDefaults: styleFor(platform), + defaultSnippetId: 'main' }; + if (!channel || channel === 'markup') { + // A body that is an array states several definitions, emitted one after another, + // so each is checked on its own. + let parsed = null; + try { parsed = JSON.parse(body); } catch { /* the emitter reports it below */ } + const bodies = Array.isArray(parsed) + ? parsed.map(one => JSON.stringify(one)) : [body]; + for (const one of bodies) { + const out = api.emitSingleSnippet(one, platform, opts); + if (out === null || out.trim() === '') { + throw new Error('emitted nothing'); + } + } + } else { + // Channels go through the marked form the generator uses; asking for the whole + // definition on that channel is enough to prove it emits. + const parsed = JSON.parse(body); + const root = parsed.descriptions?.content ?? parsed; + root['$type'] = `+check:${channel}`; + if (parsed.onViewInit) parsed['$onViewInit'] = `+check:${channel}`; + if (parsed.onInit) parsed['$onInit'] = `+check:${channel}`; + api.emitSnippets(JSON.stringify(parsed), platform, { + ...opts, forceCodeBehind: channel === 'code' }); + } + } catch (e) { + failures++; + console.log(`${where} [${platform}] ${fence.attrs.channel || 'markup'}: ${e.message.split('\n')[0]}`); + } + } + } +} + +console.log(`\n${checked} emission(s) checked across ${PLATFORMS.length} platforms, ` + + `${skipped} skipped by exclusion, ${failures} failed`); +process.exit(failures > 0 ? 1 : 0); diff --git a/docs/xplat/scripts/compare-web-blocks.mjs b/docs/xplat/scripts/compare-web-blocks.mjs new file mode 100644 index 0000000000..23b79b05dc --- /dev/null +++ b/docs/xplat/scripts/compare-web-blocks.mjs @@ -0,0 +1,163 @@ +/** + * What a collapsed snippet emits for the web, against the web block it replaced. + * + * A topic gated to the XAML platforms cannot be reviewed by regenerating it: the web pages do not + * build, so the only XAML output is compared and the web half goes unseen. But the web blocks are + * the accurate record for the web — they were published, where the XAML blocks were generated from + * the samples — and those pages may be published again. + * + * So this recovers each page as it stood before a commit, reads the block each platform had, and + * sets it beside what the fence emits for that platform now. It reports attributes gained, lost and + * changed, per platform, which is the review that matters. + * + * XPLAT_EXAMPLES= node scripts/compare-web-blocks.mjs --before= [glob] + */ + +import fs from 'fs'; +import path from 'path'; +import { execFileSync } from 'child_process'; +import { createRequire } from 'module'; +import { fileURLToPath } from 'url'; + +const require = createRequire(import.meta.url); +const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); +const EXAMPLES = process.env.XPLAT_EXAMPLES; +if (!EXAMPLES) { + console.error('set XPLAT_EXAMPLES to the igniteui-xplat-examples checkout'); + process.exit(2); +} + +const args = process.argv.slice(2); +const BEFORE = (args.find(a => a.startsWith('--before=')) || '--before=HEAD').slice(9); +const ONLY = args.find(a => !a.startsWith('--')) || 'grids/data-grid'; + +require(process.env.IG_SNIPPET_DOM_SHIM + ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'); +const api = require(process.env.IG_SNIPPET_API + ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'); + +const COMMON = { suppressAutoElementNames: true, suppressNameAttribute: true, + omitHandlerSignature: true, directAssignment: true, + colorNotation: 'hex', pascalCaseColorNames: true, indentAttributes: true }; +const STYLE = { + Angular: { ...COMMON, numericAttributeStyle: 'bare' }, + React: { ...COMMON, numericAttributeStyle: 'braced', booleanAttributeStyle: 'braced', selfCloseEmptyElements: true }, + WebComponents: { ...COMMON }, + Blazor: { ...COMMON, selfCloseEmptyElements: true }, +}; + +/** + * Every element in a block, keyed by what it is, with its attributes. + * + * Keyed by the element rather than by position: a section pairing a toolbar with its grid writes two + * elements, and the platforms do not agree on which comes first or on how many blocks they take. The + * tag name is reduced the same way the attributes are, so IgrDataGrid, igc-data-grid and IgbDataGrid + * are one thing. + */ +function elementsOf(markup) { + const found = new Map(); + for (const tag of markup.matchAll(/<([A-Za-z][\w:-]*)((?:\s+[\w:@-]+\s*=\s*(?:"[^"]*"|\{[^}]*\}))*)/g)) { + const name = tag[1].replace(/^(Igr|Igc|Igb|Igx|igc-|igx-|igb-|igr-|igDataGrids:)/i, '') + .replace(/-/g, '').toLowerCase(); + if (!name || name === 'div' || name === 'button' || name === 'renderfragment') continue; + const attrs = new Map(); + for (const m of (tag[2] || '').matchAll(/([\w:@-]+)\s*=\s*(?:"([^"]*)"|\{([^}]*)\})/g)) { + // The name each platform gives the same property differs only in shape — + // header-click-action, headerClickAction, HeaderClickAction — so it is compared with + // those differences removed. + const key = m[1].replace(/[-@]/g, '').toLowerCase(); + const value = (m[2] ?? m[3] ?? '').replace(/^this\./, '').trim(); + attrs.set(key, value); + } + if (!found.has(name)) found.set(name, attrs); + } + return found; +} + +const git = (rev, file) => + execFileSync('git', ['show', `${rev}:${file}`], { cwd: ROOT, encoding: 'utf-8' }); + +const OPEN = /([\s\S]*?)<\/PlatformBlock>/g; + +const files = execFileSync('git', ['ls-files', 'src/content/en/components'], { cwd: ROOT, encoding: 'utf-8' }) + .split('\n').filter(f => f.includes(ONLY) && f.endsWith('.mdx')); + +let compared = 0, pages = 0; +for (const file of files) { + const now = fs.readFileSync(path.join(ROOT, file), 'utf-8'); + if (!now.includes('```json-snippet')) continue; + let was; + try { was = git(BEFORE, `docs/xplat/${file}`); } catch { continue; } + + // Each platform's markup as the page had it, in order. + const had = new Map(); + for (const m of was.matchAll(OPEN)) { + const fence = m[2].match(/```(tsx|html|razor)\n([\s\S]*?)```/); + if (!fence) continue; + for (const platform of m[1].split(',').map(s => s.trim())) { + if (!STYLE[platform]) continue; + if (!had.has(platform)) had.set(platform, []); + had.get(platform).push(fence[2]); + } + } + if (had.size === 0) continue; + + // What the page's fences emit for those platforms now, in order. + const emits = new Map(); + const byId = new Map(); + for (const m of now.matchAll(/```json-snippet([^\n]*)\n([\s\S]*?)^```/gm)) { + const attrs = Object.fromEntries([...m[1].matchAll(/(\w+)="([^"]*)"/g)].map(a => [a[1], a[2]])); + let body = m[2]; + if (attrs.id) byId.set(attrs.id, body); + if (attrs.ref) body = byId.get(attrs.ref) ?? body; + if (!body.trim() || (attrs.channel && attrs.channel !== 'markup')) continue; + for (const platform of Object.keys(STYLE)) { + const excluded = (attrs.exclude || '').split(',').map(s => s.trim()); + if (excluded.includes(platform)) continue; + let out = ''; + try { + out = api.emitSingleSnippet(body, platform, { + examplesRoot: EXAMPLES, defaultSnippetId: 'main', styleDefaults: STYLE[platform] }) ?? ''; + } catch (e) { out = `(failed: ${e.message.split('\n')[0]})`; } + if (!emits.has(platform)) emits.set(platform, []); + emits.get(platform).push(out); + } + } + + const lines = []; + for (const [platform, blocks] of had) { + const produced = emits.get(platform) ?? []; + // Every element the page had for this platform, against every element it emits now, matched + // by which element it is. + const before = new Map(), after = new Map(); + for (const b of blocks) for (const [k, v] of elementsOf(b)) if (!before.has(k)) before.set(k, v); + for (const b of produced) for (const [k, v] of elementsOf(b)) if (!after.has(k)) after.set(k, v); + for (const [element, was] of before) { + const now = after.get(element); + compared++; + if (!now) { + // Nothing emits this element: either the section is still hand written, or something + // was dropped. Reported, since only reading it can tell the two apart. + lines.push(` ${platform} ${element}: no longer emitted`); + continue; + } + const gained = [...now.keys()].filter(k => !was.has(k) && k !== 'ref' && k !== 'id'); + const lost = [...was.keys()].filter(k => !now.has(k) && k !== 'ref' && k !== 'id'); + const changed = [...now.keys()].filter(k => was.has(k) && was.get(k) !== now.get(k) && + k !== 'ref' && k !== 'id' && k !== 'datasource') + .map(k => `${k}: ${was.get(k)} -> ${now.get(k)}`); + if (gained.length || lost.length || changed.length) { + lines.push(` ${platform} ${element}` + + (lost.length ? `\n lost: ${lost.join(', ')}` : '') + + (gained.length ? `\n gained: ${gained.join(', ')}` : '') + + (changed.length ? `\n changed: ${changed.join('; ')}` : '')); + } + } + } + if (lines.length) { + pages++; + console.log(`\n${file.split('/components/')[1]}`); + console.log(lines.join('\n')); + } +} +console.log(`\n${compared} block(s) compared; ${pages} page(s) differ from what the web had`); diff --git a/docs/xplat/scripts/generate.mjs b/docs/xplat/scripts/generate.mjs index 81e6f791dc..faa4812db3 100644 --- a/docs/xplat/scripts/generate.mjs +++ b/docs/xplat/scripts/generate.mjs @@ -688,20 +688,33 @@ function validateJsonSnippets(sourceDir) { continue; } // A snippet needing more than the component — handlers, refs — is written in the sample's - // own shape, with the component under descriptions.content. Check that, as the emitter does. - if (parsed.descriptions && parsed.descriptions.content) { - parsed = parsed.descriptions.content; + // own shape, with the component under descriptions.content. Every description is checked, + // not only that one: a topic pairing a toolbar with its grid states the toolbar under + // another key, and checking content alone let a column chooser carry four properties its + // description does not have, which the emitter then dropped without a word. + const toCheck = parsed.descriptions && typeof parsed.descriptions === 'object' + ? Object.entries(parsed.descriptions).map(([slot, value]) => ({ slot, value })) + : [{ slot: null, value: parsed }]; + for (const { slot, value } of toCheck) { + checkOne(value, slot ? `${where} (${slot})` : where); + } + } + + function checkOne(parsed, where) { + if (!parsed || typeof parsed !== 'object') { + problems.push(`${where} a description has to be an object`); + return; } if (typeof parsed.type !== 'string') { problems.push(`${where} no "type", so there is nothing to check it against`); - continue; + return; } const validate = validatorFor(parsed.type); if (validate === null) { problems.push(`${where} unknown component type "${parsed.type}"`); - continue; + return; } - if (validate(parsed)) continue; + if (validate(parsed)) return; for (const err of validate.errors ?? []) { const at = err.instancePath || '/'; problems.push(err.params?.additionalProperty diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx index a556fdd298..430b6fac45 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-chooser.mdx @@ -59,13 +59,145 @@ The following demonstrates how to implement the Column Chooser Toolbar UI for th "autoGenerateColumns": false, "defaultColumnMinWidth": 120, "scrollbarStyle": "Thin", - "height": "100%", + "height": "calc(100% - 40px)", "width": "100%", "$setInCode": { "dataSourceRef": [ "webComponents" ] - } + }, + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 90 + }, + "isHidden": true, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "isHidden": true + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "headerText": "Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "isEditable": false, + "paddingTop": 5, + "paddingBottom": 5, + "contentOpacity": 1, + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "isHidden": true, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "NumericColumn", + "field": "OrderItems", + "headerText": "Orders", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + } + }, + { + "type": "NumericColumn", + "field": "OrderValue", + "headerText": "Order Value", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "horizontalAlignment": "Right", + "dateTimeFormat": "DateShort" + }, + { + "type": "NumericColumn", + "field": "Margin", + "headerText": "Margin", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positiveSuffix": "%", + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Profit", + "headerText": "Profit", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "TextColumn", + "field": "Status", + "headerText": "Status", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "horizontalAlignment": "Center" + } + ] } } } @@ -95,11 +227,7 @@ The following demonstrates how to implement the Column Chooser UI for the Data G "type": "ColumnChooser", "name": "chooser", "targetGridRef": "grid", - "title": "Column Chooser", - "showAllText": "Show All", - "hideAllText": "Hide All", - "height": "100%", - "width": "250px" + "title": "Column Chooser" }, "content": { "type": "DataGrid", @@ -108,13 +236,145 @@ The following demonstrates how to implement the Column Chooser UI for the Data G "autoGenerateColumns": false, "defaultColumnMinWidth": 120, "scrollbarStyle": "Thin", - "height": "100%", + "height": "calc(100% - 40px)", "width": "100%", "$setInCode": { "dataSourceRef": [ "webComponents" ] - } + }, + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 90 + }, + "isHidden": true, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "isHidden": true + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "headerText": "Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "isEditable": false, + "paddingTop": 5, + "paddingBottom": 5, + "contentOpacity": 1, + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "isHidden": true, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "NumericColumn", + "field": "OrderItems", + "headerText": "Orders", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + } + }, + { + "type": "NumericColumn", + "field": "OrderValue", + "headerText": "Order Value", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "horizontalAlignment": "Right", + "dateTimeFormat": "DateShort" + }, + { + "type": "NumericColumn", + "field": "Margin", + "headerText": "Margin", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positiveSuffix": "%", + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Profit", + "headerText": "Profit", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "TextColumn", + "field": "Status", + "headerText": "Status", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "horizontalAlignment": "Center" + } + ] } } } diff --git a/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx b/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx index d1e9bc4c13..61ce43993e 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/column-pinning.mdx @@ -205,7 +205,7 @@ The `DataGridToolbar` provides additional properties such as adding a title to t "autoGenerateColumns": false, "defaultColumnMinWidth": 120, "scrollbarStyle": "Thin", - "height": "100%", + "height": "calc(100% - 40px)", "width": "100%", "$setInCode": { "dataSourceRef": [ diff --git a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx index 6f9a0f5ff9..4d8d1324e9 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx @@ -346,11 +346,13 @@ The following code demonstrates how to bind the {Platform} data grid to the abov "columns": [ { "type": "TextColumn", - "field": "ProductID" + "field": "ProductID", + "headerText": "Product ID" }, { "type": "TextColumn", - "field": "ProductName" + "field": "ProductName", + "headerText": "Product Name" }, { "type": "NumericColumn", @@ -371,7 +373,8 @@ The following code demonstrates how to bind the {Platform} data grid to the abov }, { "type": "DateTimeColumn", - "field": "OrderDate" + "field": "OrderDate", + "headerText": "Order Date" }, { "type": "NumericColumn", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx index 92fcccb786..167f79fb67 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-chooser.mdx @@ -60,13 +60,145 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; "autoGenerateColumns": false, "defaultColumnMinWidth": 120, "scrollbarStyle": "Thin", - "height": "100%", + "height": "calc(100% - 40px)", "width": "100%", "$setInCode": { "dataSourceRef": [ "webComponents" ] - } + }, + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 90 + }, + "isHidden": true, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "isHidden": true + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "headerText": "Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "isEditable": false, + "paddingTop": 5, + "paddingBottom": 5, + "contentOpacity": 1, + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "isHidden": true, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "NumericColumn", + "field": "OrderItems", + "headerText": "Orders", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + } + }, + { + "type": "NumericColumn", + "field": "OrderValue", + "headerText": "Order Value", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "horizontalAlignment": "Right", + "dateTimeFormat": "DateShort" + }, + { + "type": "NumericColumn", + "field": "Margin", + "headerText": "Margin", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positiveSuffix": "%", + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Profit", + "headerText": "Profit", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "TextColumn", + "field": "Status", + "headerText": "Status", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "horizontalAlignment": "Center" + } + ] } } } @@ -100,11 +232,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; "type": "ColumnChooser", "name": "chooser", "targetGridRef": "grid", - "title": "Column Chooser", - "showAllText": "Show All", - "hideAllText": "Hide All", - "height": "100%", - "width": "250px" + "title": "Column Chooser" }, "content": { "type": "DataGrid", @@ -113,13 +241,145 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; "autoGenerateColumns": false, "defaultColumnMinWidth": 120, "scrollbarStyle": "Thin", - "height": "100%", + "height": "calc(100% - 40px)", "width": "100%", "$setInCode": { "dataSourceRef": [ "webComponents" ] - } + }, + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": false, + "value": 90 + }, + "isHidden": true, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "isHidden": true + }, + { + "type": "ImageColumn", + "field": "CountryFlag", + "headerText": "Country", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "isEditable": false, + "paddingTop": 5, + "paddingBottom": 5, + "contentOpacity": 1, + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "isHidden": true, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "NumericColumn", + "field": "OrderItems", + "headerText": "Orders", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + } + }, + { + "type": "NumericColumn", + "field": "OrderValue", + "headerText": "Order Value", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "DateTimeColumn", + "field": "OrderDate", + "headerText": "Order Date", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 150 + }, + "horizontalAlignment": "Right", + "dateTimeFormat": "DateShort" + }, + { + "type": "NumericColumn", + "field": "Margin", + "headerText": "Margin", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positiveSuffix": "%", + "horizontalAlignment": "Center" + }, + { + "type": "NumericColumn", + "field": "Profit", + "headerText": "Profit", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 120 + }, + "positivePrefix": "$", + "showGroupingSeparator": true + }, + { + "type": "TextColumn", + "field": "Status", + "headerText": "Status", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "horizontalAlignment": "Center" + } + ] } } } diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx index cb9ecb6c0a..21c48bff6a 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-pinning.mdx @@ -209,7 +209,7 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; "autoGenerateColumns": false, "defaultColumnMinWidth": 120, "scrollbarStyle": "Thin", - "height": "100%", + "height": "calc(100% - 40px)", "width": "100%", "$setInCode": { "dataSourceRef": [ diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx index 7b66bdaf85..bc0c70b7aa 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx @@ -348,11 +348,13 @@ ModuleManager.register( "columns": [ { "type": "TextColumn", - "field": "ProductID" + "field": "ProductID", + "headerText": "Product ID" }, { "type": "TextColumn", - "field": "ProductName" + "field": "ProductName", + "headerText": "Product Name" }, { "type": "NumericColumn", @@ -373,7 +375,8 @@ ModuleManager.register( }, { "type": "DateTimeColumn", - "field": "OrderDate" + "field": "OrderDate", + "headerText": "Order Date" }, { "type": "NumericColumn", From e51c869a372b5115bfd7dd52c3a2a3824f3dfebd Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 22:10:53 -0400 Subject: [PATCH 048/155] Finish the DataVisualization topics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit chart-performance collapses its three remaining sections — the two axis ones through an array body, three chart types in one block, and Data Filtering on the code channel. It also states properties those charts have: xAxisLabelExtent and yAxisLabelExtent are not members of CategoryChart or FinancialChart, which expose xAxisExtent and yAxisExtent. geo-map-display-bing-imagery follows the OpenStreetMap pattern and now emits for every platform, where it had blocks for Angular and React only. geo-map-binding-shp-file was publishing " TODO - ADD CODE SNIPPET" to WebComponents readers. The section teaches loading a shapefile imperatively and no sample did that — the page's own binds declaratively — so it gets two library items and a sample of its own rather than the markup conversion that would have lost the lesson. geo-map-binding-multiple-shapes had Blazor reading the scenario the page was rewritten away from, because every collapsed section on it shut Blazor out for want of a C# port. The four map handlers have Blazor implementations now, the fences admit Blazor, and the stale block is gone. Its Summary states the markup and then all four handlers. What remains in DataVisualization is recorded with its reason: a section whose value is a call into a companion utility, two resource listings needing their data items ported to C#, two Blazor package instructions, one CSV sample, and a sparkline template column that needs a template item written. 135 snippets valid on every platform, 581 emissions clean, en and jp identical. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 56 ++ .../charts/features/chart-performance.mdx | 189 ++---- .../geo-map-binding-multiple-shapes.mdx | 622 ++---------------- .../components/geo-map-binding-shp-file.mdx | 35 +- .../geo-map-display-bing-imagery.mdx | 123 ++-- .../charts/features/chart-performance.mdx | 189 ++---- .../geo-map-binding-multiple-shapes.mdx | 598 ++--------------- .../components/geo-map-binding-shp-file.mdx | 35 +- .../geo-map-display-bing-imagery.mdx | 123 ++-- 9 files changed, 431 insertions(+), 1539 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index cebbf3a499..b6918f9b6a 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1107,3 +1107,59 @@ What the comparison turned up, beyond the decisions already recorded: One thing the description cannot express, left as a gap rather than papered over: the column chooser takes a height, a width and the text on its show-all and hide-all buttons in the published blocks, and `ColumnChooser` models none of the four. + +## Finishing DataVisualization + +### chart-performance — three sections, and a fourth invalid property + +The two axis sections show the same setting on three chart types in one block, which is what an array +body is for: three definitions, emitted in order. Data Filtering takes the code channel, the shape +this page already publishes elsewhere. + +`xAxisLabelExtent` and `yAxisLabelExtent` are not properties of CategoryChart or FinancialChart — +those expose `xAxisExtent` and `yAxisExtent`, and `labelExtent` is the axis-level name the DataChart +form already used correctly. Fourth invalid value this exercise has turned up. + +### geo-map-display-bing-imagery — the osm pattern + +Markup, then the binding code, with `$setInCode` and `$assignInCode` for the web platforms, exactly +as the OpenStreetMap topic does. The section had only Angular and React blocks before, so Blazor, +WebComponents and the XAML platforms had nothing. + +One thing not carried over: the block listed the three imagery styles as alternatives with `// or` +against each. A definition states one value; the styles are in the topic's own table above. + +A ref= fence cannot be used for the second one. The definition it names carries `$type: ++doc:markup`, and a definition that marks part of itself has its own markers respected, so nothing +lands on the binding channels. Both fences state their markers, which is what the osm topic does. + +### geo-map-binding-shp-file — a published TODO + +The WebComponents block read ` TODO - ADD CODE SNIPPET`. The section teaches loading a shapefile +imperatively, which no sample did — the page's own sample binds `shapefileDataSource` declaratively, +and turning the topic's imperative lesson into that markup is the conversion never to make. So the +loading path is a pair of library items and a sample of its own, and the section emits for every web +platform. + +### geo-map-binding-multiple-shapes — Blazor was reading the wrong scenario + +Its Blazor block still taught the Asia/Europe scenario the page was rewritten away from, while every +collapsed section on the page shut Blazor out for want of a C# port. The four map handlers now have +Blazor implementations, the fences let Blazor in, and the stale block is gone. + +The Summary states the definition twice: the markup, then all four handlers. `allCode` was the +obvious single channel and it carries fields and initialisation but not the handlers. + +### What is left in DataVisualization, and why + +- **geo-map-display-esri-imagery, Esri Utility** — the value taught is a call: + `EsriUtility.getUri(EsriStyle.WorldOceansMap)`. A description states values, not calls, so the + snippet would show a literal URI and lose the utility the section is about. +- **geo-map-resources-world-locations, -world-util** — reference listings of helper classes. The web + copies could come from the library items that already hold them; the Blazor listings need those + items ported to C# first. +- **radial-gauge, dashboard-tile** — package and namespace instructions for Blazor, not component + markup. +- **geo-map-binding-data-csv** — the block is a sample of CSV data. +- **grids/data-grid/type-sparkline-table** — a template column drawing a sparkline per platform, + which needs a template item written; the sparkline templates in the library are for other things. diff --git a/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx b/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx index e649c77c1e..f371d25801 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx @@ -140,23 +140,22 @@ export class MultiDataSources { {Platform} and the controls have built-in data adapter that analyzes your data and generates chart series for you. However, it works faster if you use and to filter only those data columns that you actually want to render. For example, - - -```razor -this.Chart.IncludedProperties = new string[] { "Year", "USA", "RUS" }; -this.Chart.ExcludedProperties = new string[] { "CHN", "FRN", "GER" }; -``` - - - - -```ts -this.Chart.includedProperties = [ "Year", "USA", "RUS" ]; -this.Chart.excludedProperties = [ "CHN", "FRN", "GER" ]; +```json-snippet channel="code" +{ + "type": "CategoryChart", + "includedProperties": [ + "Year", + "USA", + "RUS" + ], + "excludedProperties": [ + "CHN", + "FRN", + "GER" + ] +} ``` - - ## Chart Performance Guidelines ### Chart Types @@ -363,128 +362,64 @@ Although, the {Platform} charts support abbreviation of large numbers (e.g. 10,0 This code snippet shows how to set axis title in the {Platform} charts. - - -```razor - - - - - - - -``` - - - - - -```html - - - - - - - -``` - - - - - -```tsx - - - - - - - -``` - - - - - -```html - - - - - - - +```json-snippet +[ + { + "type": "CategoryChart", + "yAxisTitle": "In millions of Dollars" + }, + { + "type": "FinancialChart", + "yAxisTitle": "In millions of Dollars" + }, + { + "type": "DataChart", + "axes": [ + { + "type": "NumericYAxis", + "title": "In millions of Dollars" + } + ] + } +] ``` - - ### Axis Labels Extent At runtime, the {Platform} charts adjust extent of labels on y-axis based on a label with longest value. This might decrease chart performance if range of data changes and labels need to be updated often. Therefore, it is recommended to set label extent at design time in order to improve chart performance. The following code snippet shows how to set a fixed extent for labels on y-axis in the {Platform} charts. - - -```razor - - - - - - - - -``` - - - - - -```html - - - - - - - - -``` - - - - - -```tsx - - - - - - - - -``` - - - - - -```html - - - - - - - - +```json-snippet +[ + { + "type": "CategoryChart", + "xAxisExtent": 50, + "yAxisExtent": 50 + }, + { + "type": "FinancialChart", + "xAxisExtent": 50, + "yAxisExtent": 50 + }, + { + "type": "DataChart", + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "labelExtent": 50 + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "labelExtent": 50 + } + ] + } +] ``` - - ### Axis Other Visuals Enabling additional axis visuals (e.g. axis titles) or changing their default values might decrease performance in the {Platform} charts. diff --git a/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx index 1638b243f3..b25d7d8d9c 100644 --- a/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx @@ -36,7 +36,7 @@ You can use geographic series in above or other combinations to plot desired dat First, let's import required components and modules: -```json-snippet id="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="bindingImports,handlersImports" +```json-snippet id="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="bindingImports,handlersImports" { "descriptions": { "content": { @@ -107,33 +107,9 @@ Next, we need to create a map with a few Geographic Series that will later load Next, in constructor of your page, add a for each shapefile that you want to display in the geographic map component. -```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesLoad" +```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesLoad" ``` - - -```razor -public IgbShapeDataSource AsiaShape; -public IgbShapeDataSource EuropeShape; - -protected override void OnInitialized() -{ - this.AsiaShape = new IgbShapeDataSource() - { - ShapefileSource = "https://static.infragistics.com/xplatform/shapes/world_region_asia.shp", - DatabaseSource = "https://static.infragistics.com/xplatform/shapes/world_region_asia.dbf" - }; - - this.EuropeShape = new IgbShapeDataSource() - { - ShapefileSource = "https://static.infragistics.com/xplatform/shapes/world_region_europe.shp", - DatabaseSource = "https://static.infragistics.com/xplatform/shapes/world_region_europe.dbf" - }; -} -``` - - - ## Processing Polygons @@ -141,7 +117,7 @@ Process shapes data loaded in with of countri -```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolygons" +```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolygons" ``` @@ -152,7 +128,7 @@ Process shapes data loaded in with communicat -```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolylines" +```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolylines" ``` @@ -163,7 +139,7 @@ Process shapes data loaded in with locations -```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPoints" +```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPoints" ``` @@ -186,556 +162,54 @@ Also, you might want to hide geographic imagery from the map background content For your convenience, all above code snippets are combined into one code block below that you can easily copy to your project. - - -```ts -import { AfterViewInit, Component, TemplateRef, ViewChild } from "@angular/core"; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxGeographicPolylineSeriesComponent } from "igniteui-angular-maps"; -import { IgxGeographicShapeSeriesComponent } from 'igniteui-angular-maps'; -import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps'; - -@Component({ - selector: "app-map-binding-multiple-shapes-files", - styleUrls: ["./map-binding-multiple-shapes-files.component.scss"], - templateUrl: "./map-binding-multiple-shapes-files.component.html" -}) - -export class MapBindingMultipleShapesComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - - @ViewChild ("shapeSeries") - public shapeSeries: IgxGeographicShapeSeriesComponent; - - @ViewChild ("polylineSeries") - public polylineSeries: IgxGeographicPolylineSeriesComponent; - - @ViewChild ("symbolSeries") - public symbolSeries: IgxGeographicSymbolSeriesComponent; - - @ViewChild("polylineTooltipTemplate") - public polylineTooltipTemplate: TemplateRef; - - @ViewChild("shapeTooltipTemplate") - public shapeTooltipTemplate: TemplateRef; - - @ViewChild("pointTooltipTemplate") - public pointTooltipTemplate: TemplateRef; - - constructor() { - } - - public ngAfterViewInit(): void { - - this.map.windowRect = { left: 0.2, top: 0.1, width: 0.6, height: 0.6 }; - - // loading a shapefile with geographic polygons - const sdsPolygons = new IgxShapeDataSource(); - sdsPolygons.importCompleted.subscribe(() => this.onPolygonsLoaded(sdsPolygons, "")); - sdsPolygons.shapefileSource = "assets/Shapes/WorldCountries.shp"; - sdsPolygons.databaseSource = "assets/Shapes/WorldCountries.dbf"; - sdsPolygons.dataBind(); - // loading a shapefile with geographic polylines at runtime. - const sdsPolylines = new IgxShapeDataSource(); - sdsPolylines.shapefileSource = "assets/Shapes/WorldCableRoutes.shp"; - sdsPolylines.databaseSource = "assets/Shapes/WorldCableRoutes.dbf"; - sdsPolylines.dataBind(); - sdsPolylines.importCompleted.subscribe(() => this.onPolylinesLoaded(sdsPolylines, "")); - - // loading a shapefile with geographic points - const sdsPoints = new IgxShapeDataSource(); - sdsPoints.importCompleted.subscribe(() => this.onPointsLoaded(sdsPoints, "")); - sdsPoints.shapefileSource = "assets/Shapes/WorldCities.shp"; - sdsPoints.databaseSource = "assets/Shapes/WorldCities.dbf"; - sdsPoints.dataBind(); - } - - public onPointsLoaded(sds: IgxShapeDataSource, e: any) { - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - for (const record of sds.getPointData()) { - const pop = record.fieldValues["POPULATION"]; - if (pop > 0) { - // each shapefile record has just one point - const location = { - city: record.fieldValues["NAME"], - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - population: pop - }; - geoLocations.push(location); - } - } - this.symbolSeries.dataSource = geoLocations; - this.symbolSeries.tooltipTemplate = this.pointTooltipTemplate; - } - - public onPolylinesLoaded(sds: IgxShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - for (const record of sds.getPointData()) { - // using field/column names from .DBF file - const route = { - capacity: record.fieldValues["CapacityG"], - distance: record.fieldValues["DistanceKM"], - isActive: record.fieldValues["NotLive"] !== 0, - isOverLand: record.fieldValues["OverLand"] === 0, - name: record.fieldValues["Name"], - points: record.points, - service: record.fieldValues["InService"] - }; - geoPolylines.push(route); - } - this.polylineSeries.dataSource = geoPolylines; - this.polylineSeries.shapeMemberPath = "points"; - this.polylineSeries.shapeFilterResolution = 2.0; - this.polylineSeries.shapeStrokeThickness = 2; - this.polylineSeries.shapeStroke = "rgba(252, 32, 32, 0.9)"; - this.polylineSeries.tooltipTemplate = this.polylineTooltipTemplate; - } - - public onPolygonsLoaded(sds: IgxShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - sds.getPointData().forEach((record) => { - // using field/column names from .DBF file - const country = { - gdp: record.fieldValues["GDP"], - name: record.fieldValues["NAME"], - points: record.points, - population: record.fieldValues["POPULATION"] - }; - geoPolygons.push(country); - }); - this.shapeSeries.dataSource = geoPolygons; - this.shapeSeries.tooltipTemplate = this.shapeTooltipTemplate; - } -} -``` - - - - - -```tsx -import * as React from "react"; -import "../styles.css"; -import "./GeoMapStyles.css"; -import DataUtils from "../../utilities/DataUtils" -import WorldUtils from "../../utilities/WorldUtils" - -import { IgrGeographicMapImagery } from 'igniteui-react-maps'; -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicShapeSeries } from 'igniteui-react-maps'; -import { IgrGeographicPolylineSeries } from 'igniteui-react-maps'; -import { IgrGeographicSymbolSeries } from 'igniteui-react-maps'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; -import { IgrDataContext } from 'igniteui-react-core'; -import { IgrShapeDataSource } from 'igniteui-react-core'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); - -export default class MapBindingMultipleShapes extends React.Component { - - public geoMap: IgrGeographicMap; - - constructor(props: any) { - super(props); - - this.onMapReferenced = this.onMapReferenced.bind(this); - this.onPointsLoaded = this.onPointsLoaded.bind(this); - this.onPolylinesLoaded = this.onPolylinesLoaded.bind(this); - this.onPolygonsLoaded = this.onPolygonsLoaded.bind(this); - - this.state = { locations: [], polylines: [], polygons: []} - } - - public render() { - const mapStyle = { background: "rgb(212, 212, 212)" } as React.CSSProperties; - - return ( -
-
- - - - - -
-
- ); - } - - public onMapReferenced(map: IgrGeographicMap) { - this.geoMap = map; - this.geoMap.backgroundContent = undefined; - this.geoMap.windowRect = { left: 0.2, top: 0.1, width: 0.6, height: 0.6 }; - - console.log("series.count " + this.geoMap.series.count); - console.log("actualSeries.length " + this.geoMap.actualSeries.length); - - this.geoMap.actualSeries[0].tooltipTemplate = this.getPolygonsTooltip; - this.geoMap.actualSeries[1].tooltipTemplate = this.getPolylinesTooltip; - this.geoMap.actualSeries[2].tooltipTemplate = this.getPointTooltip; - - const url = DataUtils.getPublicURL(); - // loading a shapefile with geographic polygons - const sdsPolygons = new IgrShapeDataSource(); - sdsPolygons.importCompleted = this.onPolygonsLoaded; - sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; - sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; - sdsPolygons.dataBind(); - - const sdsPolylines = new IgrShapeDataSource(); - sdsPolylines.importCompleted = this.onPolylinesLoaded; - sdsPolylines.shapefileSource = url + "/shapes/WorldCableRoutes.shp"; - sdsPolylines.databaseSource = url + "/shapes/WorldCableRoutes.dbf"; - sdsPolylines.dataBind(); - - // loading a shapefile with geographic points - const sdsPoints = new IgrShapeDataSource(); - sdsPoints.importCompleted = this.onPointsLoaded; - sdsPoints.shapefileSource = url + "/Shapes/WorldCities.shp"; - sdsPoints.databaseSource = url + "/Shapes/WorldCities.dbf"; - sdsPoints.dataBind(); - } - - public onPointsLoaded(sds: IgrShapeDataSource, e: any) { - - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - for (const record of sds.getPointData()) { - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - this.setState({ locations: geoLocations }); - } - - public onPolylinesLoaded(sds: IgrShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - sds.getPointData().forEach(record => { - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); - }); - - this.setState({ polylines: geoPolylines }); - } - - public onPolygonsLoaded(sds: IgrShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - sds.getPointData().forEach(record => { - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }); - - this.setState({ polygons: geoPolygons }); - } -} -``` - -
- - - -```ts -import { SampleBase } from "../../sample-base"; -import { AssetsUtils } from "../../../utilities/AssetsUtils"; - -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -import { IgcGeographicMapComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicPolylineSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicSymbolSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -ModuleManager.register( - IgcDataChartInteractivityModule, - IgcGeographicMapModule -); - -let templateHTML = ` -
- - - - - - - - -
-`; - -export class MapBindingMultipleShapes extends SampleBase { - - public static htmlTagName: string = SampleBase.tag("MapBindingMultipleShapes"); - public static register(): any { - window.customElements.define(this.htmlTagName, MapBindingMultipleShapes); return this; - } - - private geoMap: IgcGeographicMapComponent; - - constructor() { - super(); - this.onPointsLoaded = this.onPointsLoaded.bind(this); - this.onPolylinesLoaded = this.onPolylinesLoaded.bind(this); - this.onPolygonsLoaded = this.onPolygonsLoaded.bind(this); - } - - connectedCallback() { - this.innerHTML = templateHTML; - - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - this.geoMap.backgroundContent = null; - this.geoMap.windowRect = { left: 0.2, top: 0.1, width: 0.6, height: 0.6 }; - - const url = AssetsUtils.getAssetsPath(); - - const sdsPolygons = new IgcShapeDataSource(); - sdsPolygons.importCompleted = this.onPolygonsLoaded; - sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; - sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; - sdsPolygons.dataBind(); - - const sdsPolylines = new IgcShapeDataSource(); - sdsPolylines.importCompleted = this.onPolylinesLoaded; - sdsPolylines.shapefileSource = url + "/shapes/WorldCableRoutes.shp"; - sdsPolylines.databaseSource = url + "/shapes/WorldCableRoutes.dbf"; - sdsPolylines.dataBind(); - - // // loading a shapefile with geographic points - const sdsPoints = new IgcShapeDataSource(); - sdsPoints.importCompleted = this.onPointsLoaded; - sdsPoints.shapefileSource = url + "/shapes/WorldCities.shp"; - sdsPoints.databaseSource = url + "/shapes/WorldCities.dbf"; - sdsPoints.dataBind(); - } - - public onPointsLoaded(sds: IgcShapeDataSource, e: any) { - console.log("onPoints"); - - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - let symbolSeries = (document.getElementById("symbolSeries") as IgcGeographicSymbolSeriesComponent); - symbolSeries.dataSource = geoLocations; - symbolSeries.renderSeries(false); - } - - public onPolylinesLoaded(sds: IgcShapeDataSource, e: any) { - console.log("onPolylines"); - - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); +```json-snippet id="multiShapesAll" source="/maps/geo-map/binding-multiple-shapes" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicShapeSeries", + "name": "polygonSeries", + "shapeMemberPath": "points", + "shapeFill": "rgb(150, 150, 150)", + "shapeStroke": "Black", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "shapeMemberPath": "points", + "shapeStroke": "rgba(147, 15, 180, 0.5)", + "thickness": 3 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "longitudeMemberPath": "longitude", + "latitudeMemberPath": "latitude", + "markerType": "Circle", + "markerOutline": "rgb(2, 102, 196)", + "markerBrush": "White" + } + ] } - - let lineSeries = (document.getElementById("lineSeries") as IgcGeographicPolylineSeriesComponent); - lineSeries.dataSource = geoPolylines; - lineSeries.renderSeries(false); - } - - public onPolygonsLoaded(sds: IgcShapeDataSource, e: any) { - console.log("onPolygons "); - - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }; - - let polygonSeries = (document.getElementById("polygonSeries") as IgcGeographicShapeSeriesComponent); - polygonSeries.dataSource = geoPolygons; - polygonSeries.renderSeries(false); - } -} -``` - -
- - - -```razor -@using IgniteUI.Blazor.Controls - - - - - - - -@code { - - public IgbShapeDataSource AsiaShape; - public IgbShapeDataSource EuropeShape; - - protected override void OnInitialized() - { - this.AsiaShape = new IgbShapeDataSource() - { - ShapefileSource = "https://static.infragistics.com/xplatform/shapes/world_region_asia.shp", - DatabaseSource = "https://static.infragistics.com/xplatform/shapes/world_region_asia.dbf" - }; - - this.EuropeShape = new IgbShapeDataSource() - { - ShapefileSource = "https://static.infragistics.com/xplatform/shapes/world_region_europe.shp", - DatabaseSource = "https://static.infragistics.com/xplatform/shapes/world_region_europe.dbf" - }; - } + }, + "onViewInit": [ + "MapMultipleShapesPolygons", + "MapMultipleShapesPolylines", + "MapMultipleShapesPoints", + "MapMultipleShapesLoad" + ] } ``` - - - -```xaml - - - - - - - - - - - - - - - - - - - +```json-snippet ref="multiShapesAll" source="/maps/geo-map/binding-multiple-shapes" channel="handler" exclude="Xaml" ``` - ## API References diff --git a/docs/xplat/src/content/en/components/geo-map-binding-shp-file.mdx b/docs/xplat/src/content/en/components/geo-map-binding-shp-file.mdx index b3e5678ac0..8b383138fb 100644 --- a/docs/xplat/src/content/en/components/geo-map-binding-shp-file.mdx +++ b/docs/xplat/src/content/en/components/geo-map-binding-shp-file.mdx @@ -40,27 +40,24 @@ When both source properties are set to non-null values, then the object for loading a shape file that contains locations of major cities in the world. It also demonstrates how to handle the `ImportCompleted` event as a prerequisite for binding data to the map component. - -```html - TODO - ADD CODE SNIPPET -``` - - - - -```ts -import { IgrShapeDataSource } from 'igniteui-react-core'; -// ... - -const sds = new IgrShapeDataSource(); -sds.importCompleted = this.onShapePolylinesLoaded; -sds.shapefileSource = url + "/shapes/WorldCableRoutes.shp"; -sds.databaseSource = url + "/shapes/WorldCableRoutes.dbf"; -sds.dataBind(); +```json-snippet source="/maps/geo-map/binding-shp-file" channel="handler" item="MapBindingShpFileLoad" exclude="Blazor,Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map", + "height": "100%", + "width": "100%", + "zoomable": true + } + }, + "onViewInit": [ + "MapBindingShpFileRoutes", + "MapBindingShpFileLoad" + ] +} ``` - - ## Binding Shapefiles In the map component, Geographic Series are used for displaying geo-spatial data that is loaded from shape files. All types of Geographic Series have an property which can be bound to an array of objects. The is an example such array because it contains a list of `IgxShapefileRecord` objects. diff --git a/docs/xplat/src/content/en/components/geo-map-display-bing-imagery.mdx b/docs/xplat/src/content/en/components/geo-map-display-bing-imagery.mdx index 14d7f183f1..f3694d6840 100644 --- a/docs/xplat/src/content/en/components/geo-map-display-bing-imagery.mdx +++ b/docs/xplat/src/content/en/components/geo-map-display-bing-imagery.mdx @@ -35,74 +35,73 @@ The {Platform} is geographic imagery mappi ## Code Snippet The following code snippet shows how to display geographic imagery tiles from Bing Maps in {Platform} using class. - - -```html - - -``` - - - - - -```ts -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxBingMapsMapImagery } from 'igniteui-angular-maps'; -// ... -const tileSource = new IgxBingMapsMapImagery(); -tileSource.apiKey = "YOUR_BING_MAPS_API_KEY"; -tileSource.imageryStyle = BingMapsImageryStyle.AerialWithLabels; // or -tileSource.imageryStyle = BingMapsImageryStyle.Aerial; // or -tileSource.imageryStyle = BingMapsImageryStyle.Road; - -// resolving BingMaps uri based on HTTP protocol of hosting website -let tileUri = tileSource.actualBingImageryRestUri; -const isHttpSecured = window.location.toString().startsWith("https:"); -if (isHttpSecured) { - tileUri = tileUri.replace("http:", "https:"); -} else { - tileUri = tileUri.replace("https:", "http:"); +```json-snippet source="/maps/geo-map/display-bing-imagery" +{ + "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "roadMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "BingMapsMapImagery", + "name": "roadImagery", + "apiKey": "REPLACE_WITH_BING_KEY", + "imageryStyle": "Road" + }, + "$type": "+doc:markup" } -tileSource.bingImageryRestUri = tileUri; - -this.map.backgroundContent = tileSource; ``` - - - - -```ts -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrBingMapsMapImagery } from 'igniteui-react-maps'; -import { BingMapsImageryStyle } from 'igniteui-react-maps'; -// ... -const tileSource = new IgrBingMapsMapImagery(); -tileSource.apiKey = "YOUR_BING_MAPS_API_KEY"; -tileSource.imageryStyle = BingMapsImageryStyle.AerialWithLabels; // or -tileSource.imageryStyle = BingMapsImageryStyle.Aerial; // or -tileSource.imageryStyle = BingMapsImageryStyle.Road; - -// resolving BingMaps uri based on HTTP protocol of hosting website -let tileUri = tileSource.actualBingImageryRestUri; -const isHttpSecured = window.location.toString().startsWith("https:"); -if (isHttpSecured) { - tileUri = tileUri.replace("http:", "https:"); -} else { - tileUri = tileUri.replace("https:", "http:"); +```json-snippet source="/maps/geo-map/display-bing-imagery" channel="bindingImports...bindingFields,bindingInit,bindingCode" exclude="Blazor,Xaml" +{ + "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "roadMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "BingMapsMapImagery", + "name": "roadImagery", + "apiKey": "REPLACE_WITH_BING_KEY", + "imageryStyle": "Road" + }, + "$type": [ + "+doc:bindingImports", + "+doc:bindingFields", + "+doc:bindingInit", + "+doc:bindingCode" + ] } -tileSource.bingImageryRestUri = tileUri; - -const geoMap = new IgrGeographicMap({ name: "geoMap" }); -geoMap.backgroundContent = tileSource; ``` - - ## Properties The following table summarized properties of the class: diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx index 46a4b88c18..48ee667b60 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx @@ -142,23 +142,22 @@ export class MultiDataSources { {Platform} および コントロールには、データを分析して一連のチャートを生成するデータ アダプターが組み込まれています。ただし、 を使用して、実際に描画するデータ列のみをフィルタリングすると、より高速に動作します。例: - - -```razor -this.Chart.IncludedProperties = new string[] { "Year", "USA", "RUS" }; -this.Chart.ExcludedProperties = new string[] { "CHN", "FRN", "GER" }; -``` - - - - -```ts -this.Chart.includedProperties = [ "Year", "USA", "RUS" ]; -this.Chart.excludedProperties = [ "CHN", "FRN", "GER" ]; +```json-snippet channel="code" +{ + "type": "CategoryChart", + "includedProperties": [ + "Year", + "USA", + "RUS" + ], + "excludedProperties": [ + "CHN", + "FRN", + "GER" + ] +} ``` - - ## チャート パフォーマンス ガイドライン ### チャート タイプ @@ -362,128 +361,64 @@ this.Chart.excludedProperties = [ "CHN", "FRN", "GER" ]; このコード スニペットは、{Platform} チャートで軸のタイトルを設定する方法を示しています。 - - -```razor - - - - - - - -``` - - - - - -```html - - - - - - - -``` - - - - - -```tsx - - - - - - - -``` - - - - - -```html - - - - - - - +```json-snippet +[ + { + "type": "CategoryChart", + "yAxisTitle": "In millions of Dollars" + }, + { + "type": "FinancialChart", + "yAxisTitle": "In millions of Dollars" + }, + { + "type": "DataChart", + "axes": [ + { + "type": "NumericYAxis", + "title": "In millions of Dollars" + } + ] + } +] ``` - - ### 軸ラベルの範囲 実行時に、{Platform} チャートは、最も長い値を持つラベルに基づいて、y 軸上のラベルの範囲を調整します。これにより、データの範囲やラベルを頻繁に更新する必要がある場合に、チャートのパフォーマンスが低下する可能性があります。そのため、チャート パフォーマンスを向上させるためにデザイン時にラベル範囲を設定することをお勧めします。 次のコード スニペットは、{Platform} チャートの y 軸のラベルに固定されたラベル範囲を設定する方法を示します。 - - -```razor - - - - - - - - -``` - - - - - -```html - - - - - - - - -``` - - - - - -```tsx - - - - - - - - -``` - - - - - -```html - - - - - - - - +```json-snippet +[ + { + "type": "CategoryChart", + "xAxisExtent": 50, + "yAxisExtent": 50 + }, + { + "type": "FinancialChart", + "xAxisExtent": 50, + "yAxisExtent": 50 + }, + { + "type": "DataChart", + "axes": [ + { + "type": "CategoryXAxis", + "name": "xAxis", + "labelExtent": 50 + }, + { + "type": "NumericYAxis", + "name": "yAxis", + "labelExtent": 50 + } + ] + } +] ``` - - ### 軸その他のビジュアル 追加の軸ビジュアル (軸タイトルなど) を有効にしたり、デフォルト値を変更したりすると、{Platform} チャートのパフォーマンスが低下する可能性があります。 diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx index d666a08f1c..36acb7aead 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx @@ -38,7 +38,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; まず、必要なコンポーネントとモジュールをインポートします。 -```json-snippet id="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="bindingImports,handlersImports" +```json-snippet id="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="bindingImports,handlersImports" { "descriptions": { "content": { @@ -95,7 +95,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; 次に、ページのコンストラクターで、地理マップコンポーネントに表示する各シェープファイルの を追加します。 -```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesLoad" +```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesLoad" ``` @@ -107,7 +107,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolygons" +```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolygons" ``` @@ -118,7 +118,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolylines" +```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolylines" ``` @@ -129,7 +129,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -```json-snippet ref="shapes" exclude="Blazor,Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPoints" +```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPoints" ``` @@ -151,556 +151,54 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; 上記すべてのコード スニペットを以下のコード ブロックにまとめて、プロジェクトに簡単にコピーできます。 - - -```ts -import { AfterViewInit, Component, TemplateRef, ViewChild } from "@angular/core"; -import { IgxShapeDataSource } from 'igniteui-angular-core'; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxGeographicPolylineSeriesComponent } from "igniteui-angular-maps"; -import { IgxGeographicShapeSeriesComponent } from 'igniteui-angular-maps'; -import { IgxGeographicSymbolSeriesComponent } from 'igniteui-angular-maps'; - -@Component({ - selector: "app-map-binding-multiple-shapes-files", - styleUrls: ["./map-binding-multiple-shapes-files.component.scss"], - templateUrl: "./map-binding-multiple-shapes-files.component.html" -}) - -export class MapBindingMultipleShapesComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - - @ViewChild ("shapeSeries") - public shapeSeries: IgxGeographicShapeSeriesComponent; - - @ViewChild ("polylineSeries") - public polylineSeries: IgxGeographicPolylineSeriesComponent; - - @ViewChild ("symbolSeries") - public symbolSeries: IgxGeographicSymbolSeriesComponent; - - @ViewChild("polylineTooltipTemplate") - public polylineTooltipTemplate: TemplateRef; - - @ViewChild("shapeTooltipTemplate") - public shapeTooltipTemplate: TemplateRef; - - @ViewChild("pointTooltipTemplate") - public pointTooltipTemplate: TemplateRef; - - constructor() { - } - - public ngAfterViewInit(): void { - - this.map.windowRect = { left: 0.2, top: 0.1, width: 0.6, height: 0.6 }; - - // loading a shapefile with geographic polygons - const sdsPolygons = new IgxShapeDataSource(); - sdsPolygons.importCompleted.subscribe(() => this.onPolygonsLoaded(sdsPolygons, "")); - sdsPolygons.shapefileSource = "assets/Shapes/WorldCountries.shp"; - sdsPolygons.databaseSource = "assets/Shapes/WorldCountries.dbf"; - sdsPolygons.dataBind(); - // loading a shapefile with geographic polylines at runtime. - const sdsPolylines = new IgxShapeDataSource(); - sdsPolylines.shapefileSource = "assets/Shapes/WorldCableRoutes.shp"; - sdsPolylines.databaseSource = "assets/Shapes/WorldCableRoutes.dbf"; - sdsPolylines.dataBind(); - sdsPolylines.importCompleted.subscribe(() => this.onPolylinesLoaded(sdsPolylines, "")); - - // loading a shapefile with geographic points - const sdsPoints = new IgxShapeDataSource(); - sdsPoints.importCompleted.subscribe(() => this.onPointsLoaded(sdsPoints, "")); - sdsPoints.shapefileSource = "assets/Shapes/WorldCities.shp"; - sdsPoints.databaseSource = "assets/Shapes/WorldCities.dbf"; - sdsPoints.dataBind(); - } - - public onPointsLoaded(sds: IgxShapeDataSource, e: any) { - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - for (const record of sds.getPointData()) { - const pop = record.fieldValues["POPULATION"]; - if (pop > 0) { - // each shapefile record has just one point - const location = { - city: record.fieldValues["NAME"], - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - population: pop - }; - geoLocations.push(location); - } - } - this.symbolSeries.dataSource = geoLocations; - this.symbolSeries.tooltipTemplate = this.pointTooltipTemplate; - } - - public onPolylinesLoaded(sds: IgxShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - for (const record of sds.getPointData()) { - // using field/column names from .DBF file - const route = { - capacity: record.fieldValues["CapacityG"], - distance: record.fieldValues["DistanceKM"], - isActive: record.fieldValues["NotLive"] !== 0, - isOverLand: record.fieldValues["OverLand"] === 0, - name: record.fieldValues["Name"], - points: record.points, - service: record.fieldValues["InService"] - }; - geoPolylines.push(route); - } - this.polylineSeries.dataSource = geoPolylines; - this.polylineSeries.shapeMemberPath = "points"; - this.polylineSeries.shapeFilterResolution = 2.0; - this.polylineSeries.shapeStrokeThickness = 2; - this.polylineSeries.shapeStroke = "rgba(252, 32, 32, 0.9)"; - this.polylineSeries.tooltipTemplate = this.polylineTooltipTemplate; - } - - public onPolygonsLoaded(sds: IgxShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - sds.getPointData().forEach((record) => { - // using field/column names from .DBF file - const country = { - gdp: record.fieldValues["GDP"], - name: record.fieldValues["NAME"], - points: record.points, - population: record.fieldValues["POPULATION"] - }; - geoPolygons.push(country); - }); - this.shapeSeries.dataSource = geoPolygons; - this.shapeSeries.tooltipTemplate = this.shapeTooltipTemplate; - } -} -``` - - - - - -```ts -import * as React from "react"; -import "../styles.css"; -import "./GeoMapStyles.css"; -import DataUtils from "../../utilities/DataUtils" -import WorldUtils from "../../utilities/WorldUtils" - -import { IgrGeographicMapImagery } from 'igniteui-react-maps'; -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrGeographicShapeSeries } from 'igniteui-react-maps'; -import { IgrGeographicPolylineSeries } from 'igniteui-react-maps'; -import { IgrGeographicSymbolSeries } from 'igniteui-react-maps'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; -import { IgrDataContext } from 'igniteui-react-core'; -import { IgrShapeDataSource } from 'igniteui-react-core'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); - -export default class MapBindingMultipleShapes extends React.Component { - - public geoMap: IgrGeographicMap; - - constructor(props: any) { - super(props); - - this.onMapReferenced = this.onMapReferenced.bind(this); - this.onPointsLoaded = this.onPointsLoaded.bind(this); - this.onPolylinesLoaded = this.onPolylinesLoaded.bind(this); - this.onPolygonsLoaded = this.onPolygonsLoaded.bind(this); - - this.state = { locations: [], polylines: [], polygons: []} - } - - public render() { - const mapStyle = { background: "rgb(212, 212, 212)" } as React.CSSProperties; - - return ( -
-
- - - - - -
-
- ); - } - - public onMapReferenced(map: IgrGeographicMap) { - this.geoMap = map; - this.geoMap.backgroundContent = undefined; - this.geoMap.windowRect = { left: 0.2, top: 0.1, width: 0.6, height: 0.6 }; - - console.log("series.count " + this.geoMap.series.count); - console.log("actualSeries.length " + this.geoMap.actualSeries.length); - - this.geoMap.actualSeries[0].tooltipTemplate = this.getPolygonsTooltip; - this.geoMap.actualSeries[1].tooltipTemplate = this.getPolylinesTooltip; - this.geoMap.actualSeries[2].tooltipTemplate = this.getPointTooltip; - - const url = DataUtils.getPublicURL(); - // loading a shapefile with geographic polygons - const sdsPolygons = new IgrShapeDataSource(); - sdsPolygons.importCompleted = this.onPolygonsLoaded; - sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; - sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; - sdsPolygons.dataBind(); - - const sdsPolylines = new IgrShapeDataSource(); - sdsPolylines.importCompleted = this.onPolylinesLoaded; - sdsPolylines.shapefileSource = url + "/shapes/WorldCableRoutes.shp"; - sdsPolylines.databaseSource = url + "/shapes/WorldCableRoutes.dbf"; - sdsPolylines.dataBind(); - - // loading a shapefile with geographic points - const sdsPoints = new IgrShapeDataSource(); - sdsPoints.importCompleted = this.onPointsLoaded; - sdsPoints.shapefileSource = url + "/Shapes/WorldCities.shp"; - sdsPoints.databaseSource = url + "/Shapes/WorldCities.dbf"; - sdsPoints.dataBind(); - } - - public onPointsLoaded(sds: IgrShapeDataSource, e: any) { - - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - for (const record of sds.getPointData()) { - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - this.setState({ locations: geoLocations }); - } - - public onPolylinesLoaded(sds: IgrShapeDataSource, e: any) { - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - sds.getPointData().forEach(record => { - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); - }); - - this.setState({ polylines: geoPolylines }); - } - - public onPolygonsLoaded(sds: IgrShapeDataSource, e: any) { - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - sds.getPointData().forEach(record => { - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }); - - this.setState({ polygons: geoPolygons }); - } -} -``` - -
- - - -```ts -import { SampleBase } from "../../sample-base"; -import { AssetsUtils } from "../../../utilities/AssetsUtils"; - -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -import { IgcGeographicMapComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicPolylineSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcGeographicSymbolSeriesComponent } from 'igniteui-webcomponents-maps'; -import { IgcShapeDataSource } from 'igniteui-webcomponents-core'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -ModuleManager.register( - IgcDataChartInteractivityModule, - IgcGeographicMapModule -); - -let templateHTML = ` -
- - - - - - - - -
-`; - -export class MapBindingMultipleShapes extends SampleBase { - - public static htmlTagName: string = SampleBase.tag("MapBindingMultipleShapes"); - public static register(): any { - window.customElements.define(this.htmlTagName, MapBindingMultipleShapes); return this; - } - - private geoMap: IgcGeographicMapComponent; - - constructor() { - super(); - this.onPointsLoaded = this.onPointsLoaded.bind(this); - this.onPolylinesLoaded = this.onPolylinesLoaded.bind(this); - this.onPolygonsLoaded = this.onPolygonsLoaded.bind(this); - } - - connectedCallback() { - this.innerHTML = templateHTML; - - this.geoMap = document.getElementById("geoMap") as IgcGeographicMapComponent; - this.geoMap.backgroundContent = null; - this.geoMap.windowRect = { left: 0.2, top: 0.1, width: 0.6, height: 0.6 }; - - const url = AssetsUtils.getAssetsPath(); - - const sdsPolygons = new IgcShapeDataSource(); - sdsPolygons.importCompleted = this.onPolygonsLoaded; - sdsPolygons.shapefileSource = url + "/shapes/WorldCountries.shp"; - sdsPolygons.databaseSource = url + "/shapes/WorldCountries.dbf"; - sdsPolygons.dataBind(); - - const sdsPolylines = new IgcShapeDataSource(); - sdsPolylines.importCompleted = this.onPolylinesLoaded; - sdsPolylines.shapefileSource = url + "/shapes/WorldCableRoutes.shp"; - sdsPolylines.databaseSource = url + "/shapes/WorldCableRoutes.dbf"; - sdsPolylines.dataBind(); - - // // loading a shapefile with geographic points - const sdsPoints = new IgcShapeDataSource(); - sdsPoints.importCompleted = this.onPointsLoaded; - sdsPoints.shapefileSource = url + "/shapes/WorldCities.shp"; - sdsPoints.databaseSource = url + "/shapes/WorldCities.dbf"; - sdsPoints.dataBind(); - } - - public onPointsLoaded(sds: IgcShapeDataSource, e: any) { - console.log("onPoints"); - - const geoLocations: any[] = []; - // parsing shapefile data and creating geo-locations - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - const pop = record.fieldValues.POPULATION; - if (pop > 0) { - // each shapefile record has just one point - const location = { - latitude: record.points[0][0].y, - longitude: record.points[0][0].x, - city: record.fieldValues.NAME, - population: pop - }; - geoLocations.push(location); - } - } - let symbolSeries = (document.getElementById("symbolSeries") as IgcGeographicSymbolSeriesComponent); - symbolSeries.dataSource = geoLocations; - symbolSeries.renderSeries(false); - } - - public onPolylinesLoaded(sds: IgcShapeDataSource, e: any) { - console.log("onPolylines"); - - const geoPolylines: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const route = { - points: record.points, - name: record.fieldValues.Name, - capacity: record.fieldValues.CapacityG, - distance: record.fieldValues.DistanceKM, - isOverLand: record.fieldValues.OverLand === 0, - isActive: record.fieldValues.NotLive !== 0, - service: record.fieldValues.InService - }; - geoPolylines.push(route); +```json-snippet id="multiShapesAll" source="/maps/geo-map/binding-multiple-shapes" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "series": [ + { + "type": "GeographicShapeSeries", + "name": "polygonSeries", + "shapeMemberPath": "points", + "shapeFill": "rgb(150, 150, 150)", + "shapeStroke": "Black", + "shapeStrokeThickness": 1 + }, + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "shapeMemberPath": "points", + "shapeStroke": "rgba(147, 15, 180, 0.5)", + "thickness": 3 + }, + { + "type": "GeographicSymbolSeries", + "name": "symbolSeries", + "longitudeMemberPath": "longitude", + "latitudeMemberPath": "latitude", + "markerType": "Circle", + "markerOutline": "rgb(2, 102, 196)", + "markerBrush": "White" + } + ] } - - let lineSeries = (document.getElementById("lineSeries") as IgcGeographicPolylineSeriesComponent); - lineSeries.dataSource = geoPolylines; - lineSeries.renderSeries(false); - } - - public onPolygonsLoaded(sds: IgcShapeDataSource, e: any) { - console.log("onPolygons "); - - const geoPolygons: any[] = []; - // parsing shapefile data and creating geo-polygons - let pointData = sds.getPointData(); - for ( let i = 0; i < pointData.length; i++ ) { - let record = pointData[i]; - // using field/column names from .DBF file - const country = { - points: record.points, - name: record.fieldValues.NAME, - gdp: record.fieldValues.GDP, - population: record.fieldValues.POPULATION - }; - geoPolygons.push(country); - }; - - let polygonSeries = (document.getElementById("polygonSeries") as IgcGeographicShapeSeriesComponent); - polygonSeries.dataSource = geoPolygons; - polygonSeries.renderSeries(false); - } -} -``` - -
- - - -```razor -@using IgniteUI.Blazor.Controls - - - - - - - -@code { - - public IgbShapeDataSource AsiaShape; - public IgbShapeDataSource EuropeShape; - - protected override void OnInitialized() - { - this.AsiaShape = new IgbShapeDataSource() - { - ShapefileSource = "https://static.infragistics.com/xplatform/shapes/world_region_asia.shp", - DatabaseSource = "https://static.infragistics.com/xplatform/shapes/world_region_asia.dbf" - }; - - this.EuropeShape = new IgbShapeDataSource() - { - ShapefileSource = "https://static.infragistics.com/xplatform/shapes/world_region_europe.shp", - DatabaseSource = "https://static.infragistics.com/xplatform/shapes/world_region_europe.dbf" - }; - } + }, + "onViewInit": [ + "MapMultipleShapesPolygons", + "MapMultipleShapesPolylines", + "MapMultipleShapesPoints", + "MapMultipleShapesLoad" + ] } ``` - - - -```xaml - - - - - - - - - - - - - - - - - - - +```json-snippet ref="multiShapesAll" source="/maps/geo-map/binding-multiple-shapes" channel="handler" exclude="Xaml" ``` - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-shp-file.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-shp-file.mdx index 89aae0ef68..94261ea1ad 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-shp-file.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-shp-file.mdx @@ -36,27 +36,24 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## シェープファイルの読み込み 以下のコードは、世界の主要都市の場所を含むシェイプ ファイルを読み込むための オブジェクトのインスタンスを作成します。また、xamGeographicMap コントロールにデータをバインドするための前提条件として `ImportCompleted` イベントを処理する方法も示します。 - -```html - TODO - ADD CODE SNIPPET -``` - - - - -```ts -import { IgrShapeDataSource } from 'igniteui-react-core'; -// ... - -const sds = new IgrShapeDataSource(); -sds.importCompleted = this.onShapePolylinesLoaded; -sds.shapefileSource = url + "/shapes/WorldCableRoutes.shp"; -sds.databaseSource = url + "/shapes/WorldCableRoutes.dbf"; -sds.dataBind(); +```json-snippet source="/maps/geo-map/binding-shp-file" channel="handler" item="MapBindingShpFileLoad" exclude="Blazor,Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map", + "height": "100%", + "width": "100%", + "zoomable": true + } + }, + "onViewInit": [ + "MapBindingShpFileRoutes", + "MapBindingShpFileLoad" + ] +} ``` - - ## シェープファイルをバインド Map コンポーネントでは、Geographic Series は、シェイプ ファイルから読み込まれる地理的データを表示するために使用されます。すべてのタイプの地理的シリーズには、オブジェクトの配列にバインドできる プロパティがあります。 オブジェクトのリストを含むため、このような配列の例です。 diff --git a/docs/xplat/src/content/jp/components/geo-map-display-bing-imagery.mdx b/docs/xplat/src/content/jp/components/geo-map-display-bing-imagery.mdx index 4ff7ff4edd..4235ef1f43 100644 --- a/docs/xplat/src/content/jp/components/geo-map-display-bing-imagery.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-display-bing-imagery.mdx @@ -37,73 +37,74 @@ import bingmapsimagery from '@xplat-images/general/BingMapsImagery.png'; ## コード スニペット 以下のコード スニペットは、 を使用して {Platform} で Bing Maps からの地理的画像を表示する方法を示します。 - - -```html - - -``` - - - - - -```ts -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; -import { IgxBingMapsMapImagery } from 'igniteui-angular-maps'; -// ... -const tileSource = new IgxBingMapsMapImagery(); -tileSource.apiKey = "YOUR_BING_MAPS_API_KEY"; -tileSource.imageryStyle = BingMapsImageryStyle.AerialWithLabels; // or -tileSource.imageryStyle = BingMapsImageryStyle.Aerial; // or -tileSource.imageryStyle = BingMapsImageryStyle.Road; - -// resolving BingMaps uri based on HTTP protocol of hosting website -let tileUri = tileSource.actualBingImageryRestUri; -const isHttpSecured = window.location.toString().startsWith("https:"); -if (isHttpSecured) { - tileUri = tileUri.replace("http:", "https:"); -} else { - tileUri = tileUri.replace("https:", "http:"); +```json-snippet source="/maps/geo-map/display-bing-imagery" +{ + "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "roadMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "BingMapsMapImagery", + "name": "roadImagery", + "apiKey": "REPLACE_WITH_BING_KEY", + "imageryStyle": "Road" + }, + "$type": "+doc:markup" } -tileSource.bingImageryRestUri = tileUri; - -this.map.backgroundContent = tileSource; ``` - - - - -```ts -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrBingMapsMapImagery } from 'igniteui-react-maps'; -import { BingMapsImageryStyle } from 'igniteui-react-maps'; -// ... -const tileSource = new IgrBingMapsMapImagery(); -tileSource.apiKey = "YOUR_BING_MAPS_API_KEY"; -tileSource.imageryStyle = BingMapsImageryStyle.AerialWithLabels; // or -tileSource.imageryStyle = BingMapsImageryStyle.Aerial; // or -tileSource.imageryStyle = BingMapsImageryStyle.Road; - -// resolving BingMaps uri based on HTTP protocol of hosting website -let tileUri = tileSource.actualBingImageryRestUri; -const isHttpSecured = window.location.toString().startsWith("https:"); -if (isHttpSecured) { - tileUri = tileUri.replace("http:", "https:"); -} else { - tileUri = tileUri.replace("https:", "http:"); +```json-snippet source="/maps/geo-map/display-bing-imagery" channel="bindingImports...bindingFields,bindingInit,bindingCode" exclude="Blazor,Xaml" +{ + "type": "GeographicMap", + "$setInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "$assignInCode": { + "backgroundContent": [ + "angular", + "react", + "webComponents" + ] + }, + "name": "roadMap", + "height": "100%", + "width": "100%", + "zoomable": true, + "backgroundContent": { + "type": "BingMapsMapImagery", + "name": "roadImagery", + "apiKey": "REPLACE_WITH_BING_KEY", + "imageryStyle": "Road" + }, + "$type": [ + "+doc:bindingImports", + "+doc:bindingFields", + "+doc:bindingInit", + "+doc:bindingCode" + ] } -tileSource.bingImageryRestUri = tileUri; - -const geoMap = new IgrGeographicMap({ name: "geoMap" }); -geoMap.backgroundContent = tileSource; ``` - + ## プロパティ 以下の表で、 クラスのプロパティを説明します。 From 3dbd3a0ba502f8bbf0ff1efaec6db317ca896944 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 11 Aug 2026 23:57:04 -0400 Subject: [PATCH 049/155] Collapse the last two data grid sections cell-editing's Error Validation wires cellValueChanging and dataCommitting, and no sample carried either handler; two library items do now, and the topic's own sample names them. It takes two fences: a definition that marks part of itself has its own markers respected, so one carrying the handler markers emits the handlers and nothing for markup. type-sparkline-table pointed its Sample at /charts/sparkline/grid, which did not exist here. It exists in igniteui-wc-examples, so the data generator and the cell template are ported from the sample that runs rather than invented, and the missing sample is written. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 25 ++ .../grids/data-grid/cell-editing.mdx | 181 +++-------- .../grids/data-grid/type-sparkline-table.mdx | 277 +++++++++-------- .../grids/data-grid/cell-editing.mdx | 184 +++--------- .../grids/data-grid/type-sparkline-table.mdx | 281 +++++++++--------- 5 files changed, 405 insertions(+), 543 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index b6918f9b6a..021811ac43 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1163,3 +1163,28 @@ obvious single channel and it carries fields and initialisation but not the hand - **geo-map-binding-data-csv** — the block is a sample of CSV data. - **grids/data-grid/type-sparkline-table** — a template column drawing a sparkline per platform, which needs a template item written; the sparkline templates in the library are for other things. + +### cell-editing, Error Validation — written from the closest sample + +The section wires `cellValueChanging` and `dataCommitting`, and no sample carried either. Two library +items do now — one refusing an empty cell with a message and taking anything else, one committing an +update and refusing everything else — and the topic's own sample names them. + +Two fences, not one, and for a reason worth remembering: a definition that marks part of itself has +its own markers respected, so the same definition carrying `$cellValueChangingRef: "+doc:handler"` +emits the handler and *nothing* for markup. The markup fence states the definition plain; the handler +fence restates it with the markers on the properties that name the handlers. The lead-in sentence +between them is scoped to the platforms the second fence serves, or XAML reads a sentence promising +code that never comes. + +### type-sparkline-table — the sample existed downstream + +The topic pointed `` at a sample that did not exist here. It +does exist in igniteui-wc-examples, so the data generator and the cell template are ported from the +one that runs rather than invented: `ProductsWithHistory` — the sample's own `Products`, reshaped as +an array of rows the way `ProductOrders` is, since that is what `dataSourceRef` binds to — and +`DataGridSparklineTemplate`, which builds the chart in a container once and hands it the row's +history as the grid reuses the cell. + +Blazor's block taught a `RenderFragment` holding a `Sparkline`. The library's Blazor templates are +registered scripts, which is what its samples run, so that is what the collapsed topic shows. diff --git a/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx b/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx index 23ef22637e..5ce81df35b 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/cell-editing.mdx @@ -179,157 +179,62 @@ And the controls that undo and redo them: The following demonstrates how incorporate error by checking if cells are empty when leaving edit mode and accepts commits that are from updated cells only. - -```tsx - - -``` - - - -```html - -``` - - - -```ts -import { IgrGridDataCommittingEventArgs } from 'igniteui-react-data-grids'; -import { TransactionType } from 'igniteui-react-core' - -onCellValueChanging = (s: IgrDataGrid, e: IgrGridCellValueChangingEventArgs) => { - //check if value is empty upon exiting edit mode. - if (e.newValue === "") { - s.setEditError(e.editID, "Error, cell is empty"); - //or revert changes - s.rejectEdit(e.editID); - } - else { - s.acceptEdit(e.editID); - } -} - -onDataCommitting = (s: IgrDataGrid, e: IgrGridDataCommittingEventArgs) => { - - if (e.changes[0].transactionType === TransactionType.Update) { - //commit was passed - s.acceptCommit(e.commitID); - } - else{ - //commit was prevented - s.rejectCommit(e.commitID); +```json-snippet source="/grids/data-grid/cell-editing" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "activationMode": "Cell", + "editMode": "CellBatch", + "cellValueChangingRef": "DataGridValidateCellEdit", + "dataCommittingRef": "DataGridCommitUpdatesOnly", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } } } ``` - - -```ts -import { IgcGridDataCommittingEventArgs } from 'igniteui-webcomponents-data-grids'; -import { TransactionType } from 'igniteui-webcomponents-core' - -this.onCellValueChanging = this.onCellValueChanging.bind(this); -this.grid.cellValueChanging = this.onCellValueChanging; - -this.onDataCommitting = this.onDataCommitting.bind(this); -this.grid.dataCommitting = this.onDataCommitting; + +And the handlers it names: -public onCellValueChanging (s: IgcDataGridComponent, e: IgcGridCellValueChangingEventArgs) { - if (s.editMode === EditModeType.CellBatch && this.undo !== null) - { - this.undo.disabled = false; - } - - //check if value is empty upon exiting edit mode. - if (e.newValue === "") { - s.setEditError(e.editID, "Error, cell is empty"); - //or revert changes - s.rejectEdit(e.editID); - } - else { - s.acceptEdit(e.editID); - } -} - -public onDataCommitting (s: IgcDataGridComponent, e: IgcGridDataCommittingEventArgs) { - if (e.changes[0].transactionType === TransactionType.Update) { - //commit was passed - s.acceptCommit(e.commitID); - } - else{ - //commit was prevented - s.rejectCommit(e.commitID); - } -} -``` - -```razor - - - -@code { - public IgbDataGrid DataGridRef; - - public void OnCellValueChanging(IgbGridCellValueChangingEventArgs e) - { - //check if value is empty upon exiting edit mode. - if (e.NewValue == "") - { - this.DataGridRef.SetEditError(e.EditID, "Error, cell is empty"); - //or revert changes - this.DataGridRef.RejectEdit(e.EditID); - } - else - { - this.DataGridRef.AcceptEdit(e.EditID); - } - } - - public void OnDataCommitting(IgbGridDataCommittingEventArgs e) - { - if (e.Changes[0].TransactionType == TransactionType.Update) - { - //commit was passed - this.DataGridRef.AcceptCommit(e.CommitID); - } - else - { - //commit was prevented - this.DataGridRef.RejectCommit(e.CommitID); +```json-snippet source="/grids/data-grid/cell-editing" channel="handler" exclude="Xaml" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "activationMode": "Cell", + "editMode": "CellBatch", + "cellValueChangingRef": "DataGridValidateCellEdit", + "dataCommittingRef": "DataGridCommitUpdatesOnly", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + }, + "$cellValueChangingRef": "+doc:handler", + "$dataCommittingRef": "+doc:handler" } } } ``` - - -```xaml - -``` - ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/type-sparkline-table.mdx b/docs/xplat/src/content/en/components/grids/data-grid/type-sparkline-table.mdx index 37b9c3663c..6100f296ae 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/type-sparkline-table.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/type-sparkline-table.mdx @@ -30,145 +30,162 @@ The {ProductName} Data Table / Data Grid supports a Template Column which provid The following code example shows how to embed `XamSparkline` component in `Ig$TemplateColumn` of the `Grid` component : - -```tsx - - {/* ... */} - - {/* ... */} - -``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { IgrTemplateColumn, IIgrCellTemplateProps } from 'igniteui-react-data-grids'; - -public getOrderHistoryTemplate(props: IIgrCellTemplateProps) { - const info = props.dataContext as IgrTemplateCellInfo; - return ( -
- -
- ); +```json-snippet source="/charts/sparkline/grid" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductsWithHistory", + "autoGenerateColumns": false, + "rowHeight": 90, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 140 + } + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "TemplateColumn", + "field": "OrderHistory", + "headerText": "Order History", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 180 + }, + "paddingTop": 10, + "paddingBottom": 10, + "cellUpdatingRef": "DataGridSparklineTemplate" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } } ``` -
- - -```html - - {/* ... */} - - {/* ... */} - -``` - - - -```ts -import { IgcDataGridModule } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateColumnComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateCellInfo } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateCellUpdatingEventArgs } from 'igniteui-webcomponents-data-grids'; -import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; -import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; - -// registering Grid and Sparkline chart's modules: -ModuleManager.register(IgcDataGridModule); -ModuleManager.register(IgcSparklineModule); -constructor() { -this.grid = document.getElementById("grid") as IgcDataGridComponent; -this.grid.dataSource = Products.getData(); + -this.onUpdatingHistoryColumn = this.onUpdatingHistoryColumn.bind(this); +And the template that draws the sparkline in each cell: -const historyColumn = document.getElementById("historyColumn") as IgcTemplateColumnComponent; -historyColumn.cellUpdating = this.onUpdatingHistoryColumn; -} - -public onUpdatingHistoryColumn(s: IgcTemplateColumnComponent, e: IgcTemplateCellUpdatingEventArgs) { - const content = e.content as HTMLDivElement; - let chart: IgcSparklineComponent | null = null; - let info = e.cellInfo as IgcTemplateCellInfo; - - if (content.childElementCount === 0) { - chart = new IgcSparklineComponent(); - chart.valueMemberPath = "Sold"; - chart.labelMemberPath = "Week"; - chart.displayType = SparklineDisplayType.Line; - chart.lineThickness = 2; - chart.brush = "rgb(21, 190, 6)"; - chart.negativeBrush = "rgb(211, 17, 3)"; - chart.width = "100%"; - chart.height = "100%"; - - content.style.width = "calc(100% - 10px)"; - content.style.height = "calc(100% - 10px)"; - content.style.padding = "5px"; - content.style.margin = "0px"; - content.style.display = "inline-grid"; - content.appendChild(chart); - } - else { - chart = content.children[0] as IgcSparklineComponent; - } + - if (chart) { - chart.dataSource = info.rowItem.OrderHistory; +```json-snippet source="/charts/sparkline/grid" channel="handler" exclude="Xaml" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductsWithHistory", + "autoGenerateColumns": false, + "rowHeight": 90, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 140 + } + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "TemplateColumn", + "field": "OrderHistory", + "headerText": "Order History", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 180 + }, + "paddingTop": 10, + "paddingBottom": 10, + "cellUpdatingRef": "DataGridSparklineTemplate", + "$cellUpdatingRef": "+doc:handler" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } } } ``` - - - -```razor - - 180")" HeaderText="Order History" > - - - -``` - ## API References diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx index 75e27e9f66..8d4fa6d579 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/cell-editing.mdx @@ -109,157 +109,57 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下は、編集モードを終了するときにセルが空かどうかを確認し、更新されたセルからのコミットのみを受け入れることによって、エラーを組み込む方法を示しています。 - -```tsx - - -``` - - - -```html - -``` - - - -```ts -import { IgrGridDataCommittingEventArgs } from 'igniteui-react-data-grids'; -import { TransactionType } from 'igniteui-react-core' - -onCellValueChanging = (s: IgrDataGrid, e: IgrGridCellValueChangingEventArgs) => { - //check if value is empty upon exiting edit mode. - if (e.newValue === "") { - s.setEditError(e.editID, "Error, cell is empty"); - //or revert changes - s.rejectEdit(e.editID); - } - else { - s.acceptEdit(e.editID); - } -} - -onDataCommitting = (s: IgrDataGrid, e: IgrGridDataCommittingEventArgs) => { - - if (e.changes[0].transactionType === TransactionType.Update) { - //commit was passed - s.acceptCommit(e.commitID); - } - else{ - //commit was prevented - s.rejectCommit(e.commitID); - } -} -``` - - - -```ts -import { IgcGridDataCommittingEventArgs } from 'igniteui-webcomponents-data-grids'; -import { TransactionType } from 'igniteui-webcomponents-core' - -this.onCellValueChanging = this.onCellValueChanging.bind(this); -this.grid.cellValueChanging = this.onCellValueChanging; - -this.onDataCommitting = this.onDataCommitting.bind(this); -this.grid.dataCommitting = this.onDataCommitting; - - -public onCellValueChanging (s: IgcDataGridComponent, e: IgcGridCellValueChangingEventArgs) { - if (s.editMode === EditModeType.CellBatch && this.undo !== null) - { - this.undo.disabled = false; - } - - //check if value is empty upon exiting edit mode. - if (e.newValue === "") { - s.setEditError(e.editID, "Error, cell is empty"); - //or revert changes - s.rejectEdit(e.editID); - } - else { - s.acceptEdit(e.editID); - } -} - -public onDataCommitting (s: IgcDataGridComponent, e: IgcGridDataCommittingEventArgs) { - if (e.changes[0].transactionType === TransactionType.Update) { - //commit was passed - s.acceptCommit(e.commitID); - } - else{ - //commit was prevented - s.rejectCommit(e.commitID); +```json-snippet source="/grids/data-grid/cell-editing" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "activationMode": "Cell", + "editMode": "CellBatch", + "cellValueChangingRef": "DataGridValidateCellEdit", + "dataCommittingRef": "DataGridCommitUpdatesOnly", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } } } ``` - - - -```razor - - - -@code { - public IgbDataGrid DataGridRef; - - public void OnCellValueChanging(IgbGridCellValueChangingEventArgs e) - { - //check if value is empty upon exiting edit mode. - if (e.NewValue == "") - { - this.DataGridRef.SetEditError(e.EditID, "Error, cell is empty"); - //or revert changes - this.DataGridRef.RejectEdit(e.EditID); - } - else - { - this.DataGridRef.AcceptEdit(e.EditID); - } - } - public void OnDataCommitting(IgbGridDataCommittingEventArgs e) - { - if (e.Changes[0].TransactionType == TransactionType.Update) - { - //commit was passed - this.DataGridRef.AcceptCommit(e.CommitID); - } - else - { - //commit was prevented - this.DataGridRef.RejectCommit(e.CommitID); +```json-snippet source="/grids/data-grid/cell-editing" channel="handler" exclude="Xaml" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "EmployeesSalesData", + "activationMode": "Cell", + "editMode": "CellBatch", + "cellValueChangingRef": "DataGridValidateCellEdit", + "dataCommittingRef": "DataGridCommitUpdatesOnly", + "height": "100%", + "width": "100%", + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + }, + "$cellValueChangingRef": "+doc:handler", + "$dataCommittingRef": "+doc:handler" } } } ``` - - -```xaml - -``` - + ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/type-sparkline-table.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/type-sparkline-table.mdx index 81b2450df9..e137ed0a5d 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/type-sparkline-table.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/type-sparkline-table.mdx @@ -30,145 +30,160 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; 以下のコード例は、`Grid` コンポーネントの `Ig$TemplateColumn` に `XamSparkline` を埋め込む方法を示します。 - -```tsx - - {/* ... */} - - {/* ... */} - -``` - - - -```ts -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { IgrTemplateColumn, IIgrCellTemplateProps } from 'igniteui-react-data-grids'; - -public getOrderHistoryTemplate(props: IIgrCellTemplateProps) { - const info = props.dataContext as IgrTemplateCellInfo; - return ( -
- -
- ); +```json-snippet source="/charts/sparkline/grid" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductsWithHistory", + "autoGenerateColumns": false, + "rowHeight": 90, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 140 + } + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "TemplateColumn", + "field": "OrderHistory", + "headerText": "Order History", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 180 + }, + "paddingTop": 10, + "paddingBottom": 10, + "cellUpdatingRef": "DataGridSparklineTemplate" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } + } } ``` -
- - -```html - - {/* ... */} - - {/* ... */} - -``` - - - -```ts -import { IgcDataGridModule } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateColumnComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateCellInfo } from 'igniteui-webcomponents-data-grids'; -import { IgcTemplateCellUpdatingEventArgs } from 'igniteui-webcomponents-data-grids'; -import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; -import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; - -// registering Grid and Sparkline chart's modules: -ModuleManager.register(IgcDataGridModule); -ModuleManager.register(IgcSparklineModule); - -constructor() { -this.grid = document.getElementById("grid") as IgcDataGridComponent; -this.grid.dataSource = Products.getData(); - -this.onUpdatingHistoryColumn = this.onUpdatingHistoryColumn.bind(this); - -const historyColumn = document.getElementById("historyColumn") as IgcTemplateColumnComponent; -historyColumn.cellUpdating = this.onUpdatingHistoryColumn; -} - -public onUpdatingHistoryColumn(s: IgcTemplateColumnComponent, e: IgcTemplateCellUpdatingEventArgs) { - const content = e.content as HTMLDivElement; - let chart: IgcSparklineComponent | null = null; - let info = e.cellInfo as IgcTemplateCellInfo; - - if (content.childElementCount === 0) { - chart = new IgcSparklineComponent(); - chart.valueMemberPath = "Sold"; - chart.labelMemberPath = "Week"; - chart.displayType = SparklineDisplayType.Line; - chart.lineThickness = 2; - chart.brush = "rgb(21, 190, 6)"; - chart.negativeBrush = "rgb(211, 17, 3)"; - chart.width = "100%"; - chart.height = "100%"; - - content.style.width = "calc(100% - 10px)"; - content.style.height = "calc(100% - 10px)"; - content.style.padding = "5px"; - content.style.margin = "0px"; - content.style.display = "inline-grid"; - content.appendChild(chart); - } - else { - chart = content.children[0] as IgcSparklineComponent; - } - if (chart) { - chart.dataSource = info.rowItem.OrderHistory; +```json-snippet source="/charts/sparkline/grid" channel="handler" exclude="Xaml" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductsWithHistory", + "autoGenerateColumns": false, + "rowHeight": 90, + "height": "100%", + "width": "100%", + "columns": [ + { + "type": "TextColumn", + "field": "ProductID", + "headerText": "ID", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "horizontalAlignment": "Center" + }, + { + "type": "TextColumn", + "field": "ProductName", + "headerText": "Product", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 140 + } + }, + { + "type": "NumericColumn", + "field": "ProductPrice", + "headerText": "Price", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 110 + }, + "positivePrefix": "$", + "showGroupingSeparator": true, + "minFractionDigits": 2 + }, + { + "type": "TemplateColumn", + "field": "OrderHistory", + "headerText": "Order History", + "width": { + "type": "ColumnWidth", + "isStarSized": true, + "value": 1, + "minimumWidth": 180 + }, + "paddingTop": 10, + "paddingBottom": 10, + "cellUpdatingRef": "DataGridSparklineTemplate", + "$cellUpdatingRef": "+doc:handler" + } + ], + "$setInCode": { + "dataSourceRef": [ + "webComponents" + ] + } + } } } ``` - - - -```razor - - 180")" HeaderText="Order History" > - - - -``` - + + + + ## API リファレンス From 487002afda3c90f175258140bb515569716efe80 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 00:12:21 -0400 Subject: [PATCH 050/155] Collapse the callout assignments, and record what DataVisualization keeps chart-annotations taught the callout properties twice for Web Components: once as markup through the fence, once as assignments in a block beside it. The assignments come from the same definition now, on the code channel. The rest of what these pages carry is not snippet material, and the file says so rather than leaving it to be rediscovered: dependency and module registration sections, whose call lives in each platform's template; the Esri utility, whose lesson is a call into a companion module; the heat map's web worker file; the world resource listings, which want their library items ported to C# first; and two illustrations of the shape data should take. The earlier "DataVisualization is finished" was measured with a survey that matched markup fences only, so every code block on those pages went uncounted. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 23 ++++++++++++++++ .../charts/features/chart-annotations.mdx | 26 ++++++++++--------- .../charts/features/chart-annotations.mdx | 26 ++++++++++--------- 3 files changed, 51 insertions(+), 24 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 021811ac43..7a20dd529e 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1188,3 +1188,26 @@ history as the grid reuses the cell. Blazor's block taught a `RenderFragment` holding a `Sparkline`. The library's Blazor templates are registered scripts, which is what its samples run, so that is what the collapsed topic shows. + +## What DataVisualization keeps, and why + +The count of "remaining blocks" was misleading for a while because the survey behind it matched +markup fences only — tsx, html, razor, xaml — and everything left on these pages is code. Counting +every fence gives the real picture, and what is left divides into four kinds, none of them a snippet: + +- **Dependencies** — `npm install` lines and the Blazor NuGet and namespace instructions. Setup, not + a component. +- **Component Modules** — the registration each platform performs. The module channel can now be + asked for a sample's module list, which is a fix worth having, but what it yields is the list; the + call around it — `ModuleManager.register(...)`, `@NgModule`, `AddIgniteUIBlazor(...)` — lives in + the platform's template and not in anything a definition can state. These sections need the call, + so they stay as they are. +- **Companion files and utilities** — the Esri utility, whose lesson is the call + `EsriUtility.getUri(EsriStyle.WorldOceansMap)`; the heat map's web worker, which is a file the + reader adds and wires up differently per bundler; the world resource listings, which could come + from the library items holding them once those items are ported to C#. +- **Illustrations of data** — chart-performance's Data Structure, and the CSV on the csv binding + topic. They show the shape data should take, not a component. + +chart-annotations' Callout Layer was the last one that was really a snippet: WebComponents taught the +same properties as assignments beside the markup fence, and now emits them on the code channel. diff --git a/docs/xplat/src/content/en/components/charts/features/chart-annotations.mdx b/docs/xplat/src/content/en/components/charts/features/chart-annotations.mdx index 0e61fb5045..bb29935ddb 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-annotations.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-annotations.mdx @@ -119,20 +119,22 @@ The following example demonstrates how to style the callout layer annotations by } ``` - - -```ts -let chart = (document.getElementById("chart") as IgcCategoryChartComponent); - -chart.dataSource = data; -chart.calloutsDataSource = categoryData; -chart.calloutsXMemberPath = "index"; -chart.calloutsYMemberPath = "value"; -chart.calloutsLabelMemberPath = "info"; +```json-snippet source="/charts/category-chart/annotations-custom" channel="code" exclude="Angular,React,Blazor,Xaml" +{ + "type": "CategoryChart", + "dataSourceRef": "TemperatureAnnotatedData", + "calloutsVisible": true, + "calloutsDataSourceRef": "TemperatureAnnotatedData", + "calloutsXMemberPath": "Index", + "calloutsYMemberPath": "Temperature", + "calloutsLabelMemberPath": "TempInfo", + "calloutsAllowedPositions": [ + "Top", + "Bottom" + ] +} ``` - - diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-annotations.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-annotations.mdx index 72c58e0273..1e7084ef18 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-annotations.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-annotations.mdx @@ -122,20 +122,22 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; } ``` - - -```ts -let chart = (document.getElementById("chart") as IgcCategoryChartComponent); - -chart.dataSource = data; -chart.calloutsDataSource = categoryData; -chart.calloutsXMemberPath = "index"; -chart.calloutsYMemberPath = "value"; -chart.calloutsLabelMemberPath = "info"; +```json-snippet source="/charts/category-chart/annotations-custom" channel="code" exclude="Angular,React,Blazor,Xaml" +{ + "type": "CategoryChart", + "dataSourceRef": "TemperatureAnnotatedData", + "calloutsVisible": true, + "calloutsDataSourceRef": "TemperatureAnnotatedData", + "calloutsXMemberPath": "Index", + "calloutsYMemberPath": "Temperature", + "calloutsLabelMemberPath": "TempInfo", + "calloutsAllowedPositions": [ + "Top", + "Bottom" + ] +} ``` - - From 29c2538e88a05694c85eaefc078ea7c2e042ce47 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 00:29:14 -0400 Subject: [PATCH 051/155] Collapse the toolbar topic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Four sections: the data chart integration, the data URL icon, the vertical orientation and the color editor. Each states its own sample, and the toolbar sits beside the component it targets in one definition, since targetRef resolves within the definition — a toolbar stated alone reports its target as a library item that does not exist, which is how the vertical orientation fence failed first time round. The vertical orientation snippet names no target, which is what its block showed. Left alone: the Dependencies section, which is module registration, and the Styling/Theming section, which is commented out in the source and stays exactly as it is. Co-Authored-By: Claude Opus 5 --- .../content/en/components/menus/toolbar.mdx | 404 +++--------------- .../content/jp/components/menus/toolbar.mdx | 347 +++------------ 2 files changed, 103 insertions(+), 648 deletions(-) diff --git a/docs/xplat/src/content/en/components/menus/toolbar.mdx b/docs/xplat/src/content/en/components/menus/toolbar.mdx index 69b34f9df5..beeda787d5 100644 --- a/docs/xplat/src/content/en/components/menus/toolbar.mdx +++ b/docs/xplat/src/content/en/components/menus/toolbar.mdx @@ -164,120 +164,24 @@ The following example demonstrates a couple of features. First you can group too The {Platform} Toolbar contains a property. This is used to link a component, such as the as shown in the code below: - - -```razor - - - - - -``` - - - - - -```html -
- - -
-
- - -``` - - - - - -```html -
- - -
- -
- - -
-``` - -
- - - -```ts - private _bind: () => void; - constructor() { - var toolbar = this.toolbar = document.getElementById('Toolbar') as IgcToolbarComponent; - var chart = this.chart = document.getElementById('chart') as IgcDataChartComponent; - - this._bind = () => { - toolbar.target = this.chart; +```json-snippet source="/charts/toolbar/layout-actions-for-data-chart" +{ + "descriptions": { + "aboveContentLeft": { + "type": "Toolbar", + "name": "toolbar", + "targetRef": "chart", + "orientation": "Horizontal" + }, + "content": { + "type": "DataChart", + "name": "chart", + "isHorizontalZoomEnabled": true, + "isVerticalZoomEnabled": true + } } - this._bind(); - } -``` - - - - - -```tsx - private toolbar: IgrToolbar - private toolbarRef(r: IgrToolbar) { - this.toolbar = r; - this.setState({}); - } - private chart: IgrDataChart - private chartRef(r: IgrDataChart) { - this.chart = r; - this.toolbar.target = this.chart; - this.setState({}); - } - public render(): JSX.Element { - return ( -
- - -
- -
- - -
- ); - } -``` - -
- - -```xaml - +} ``` - Several pre-existing items and menus become available when the is linked with the Toolbar. Here is a list of the built-in {Platform} Tool Actions and their associated : @@ -323,189 +227,26 @@ Similarly to adding svg, you can also add an Icon image from a URL via the - -```html - - -``` - - - -```ts -public toolbarCustomIconOnViewInit(): void { - - const icon = ''; - - this.toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); -} -``` - -```ts -public toolbarCustomIconOnViewInit(): void { - - toolbar.registerIconFromDataURL("CustomCollection", "CustomIcon", "https://www.svgrepo.com/show/678/calculator.svg"); - -} -``` - - - -```html - - -``` - - - - -```xaml - -``` - - -```ts -public toolbarCustomIconOnViewInit(): void { - - const icon = ''; - - this.toolbar.registerIconFromText("CustomCollection", "CustomIcon", icon); - -} -``` - -```ts -public toolbarCustomIconOnViewInit(): void { - - toolbar.registerIconFromDataURL("CustomCollection", "CustomIcon", "https://www.svgrepo.com/show/678/calculator.svg"); - -} -``` - - - -```razor - - - -@code { - - protected override async Task OnAfterRenderAsync(bool firstRender) - { - var toolbar = this.toolbar; - - if (firstRender) { - this.ToolbarCustomIconOnViewInit(); - } - } - - private IgbToolbar toolbar; - - public void ToolbarCustomIconOnViewInit() - { - this.toolbar.EnsureReady().ContinueWith(new Action((e) => - { - string icon = - @" - - "; - this.toolbar.RegisterIconFromTextAsync("CustomCollection", "CustomIcon", icon); - })); - } - - protected override async Task OnAfterRenderAsync(bool firstRender) - { - var toolbar = this.toolbar; - - if (firstRender) { - this.ToolbarCustomIconOnViewInit(); - } - } - - private IgbToolbar toolbar; - - public void ToolbarCustomIconOnViewInit() - { - this.toolbar.EnsureReady().ContinueWith(new Action((e) => - { - this.toolbar.RegisterIconFromDataURLAsync("CustomCollection", "CustomIcon", "https://www.svgrepo.com/show/678/calculator.svg"); - })); - } +```json-snippet source="/charts/toolbar/layout-actions-for-data-chart" +{ + "type": "ToolActionLabel", + "title": "Custom Icon", + "iconName": "CustomIcon", + "iconCollectionName": "CustomCollection" } ``` - - - - -```tsx - -``` - - - - -```xaml - -``` - - ### Vertical Orientation By default the {Platform} Toolbar is shown horizontally, but it also has the ability to shown vertically by setting the property. - - -```html - -``` - - - - - -```html - -``` - - - - - -```razor - -``` - - - - - -```tsx - -``` - - - - -```xaml - +```json-snippet source="/charts/toolbar/layout-in-vertical-orientation" +{ + "type": "Toolbar", + "name": "toolbar", + "orientation": "Vertical" +} ``` - The following example demonstrates the vertical orientation of the {Platform} Toolbar. @@ -516,73 +257,30 @@ The following example demonstrates the vertical orientation of the {Platform} To You can add a custom color editor tool to the the {Platform} Toolbar, which will also work with the Command event to perform custom styling to your application. - - -```html - - - - -``` - - - - - -```ts - - - - -``` - - - - - -```tsx - - - - -``` - - - - - -```razor - - - - -``` - - - - -```xaml - +```json-snippet source="/charts/toolbar/color-editor-support" +{ + "descriptions": { + "aboveContentLeft": { + "type": "Toolbar", + "name": "toolbar", + "targetRef": "chart", + "actions": [ + { + "type": "ToolActionColorEditor", + "title": "Series Brush", + "name": "colorEditorTool", + "commandId": "ToggleSeriesBrush" + } + ] + }, + "content": { + "type": "DataChart", + "name": "chart", + "isHorizontalZoomEnabled": true + } + } +} ``` - The following example demonstrates styling the {Platform} Data Chart series brush with the Color Editor tool. diff --git a/docs/xplat/src/content/jp/components/menus/toolbar.mdx b/docs/xplat/src/content/jp/components/menus/toolbar.mdx index a34d2d0b9e..0675b9154f 100644 --- a/docs/xplat/src/content/jp/components/menus/toolbar.mdx +++ b/docs/xplat/src/content/jp/components/menus/toolbar.mdx @@ -194,120 +194,26 @@ ModuleManager.register( {Platform} ツールバーには、 プロパティが含まれています。これは、以下のコードに示すように、 などのコンポーネントをリンクするために使用されます。 - - -```razor - - - - - -``` - - - - - -```html -
- - -
-
- - -``` - - - - - -```html -
- - -
- -
- - -
-``` - -
- - - -```ts - private _bind: () => void; - constructor() { - var toolbar = this.toolbar = document.getElementById('Toolbar') as IgcToolbarComponent; - var chart = this.chart = document.getElementById('chart') as IgcDataChartComponent; - - this._bind = () => { - toolbar.target = this.chart; +```json-snippet source="/charts/toolbar/layout-actions-for-data-chart" +{ + "descriptions": { + "aboveContentLeft": { + "type": "Toolbar", + "name": "toolbar", + "targetRef": "chart", + "orientation": "Horizontal" + }, + "content": { + "type": "DataChart", + "name": "chart", + "isHorizontalZoomEnabled": true, + "isVerticalZoomEnabled": true + } } - this._bind(); - } -``` - - - - - -```tsx - private toolbar: IgrToolbar - private toolbarRef(r: IgrToolbar) { - this.toolbar = r; - this.setState({}); - } - private chart: IgrDataChart - private chartRef(r: IgrDataChart) { - this.chart = r; - this.toolbar.target = this.chart; - this.setState({}); - } - public render(): JSX.Element { - return ( -
- - -
- -
- - -
- ); - } +} ``` -
- -```xaml - -``` - が Toolbar にリンクされると、いくつかの既存の 項目とメニューが使用可能になります。以下は、組み込みの {Platform} ツール操作とそれに関連付けられた のリストです。 @@ -353,18 +259,15 @@ svg を追加するのと同様に、 - -```html - - +```json-snippet source="/charts/toolbar/layout-actions-for-data-chart" +{ + "type": "ToolActionLabel", + "title": "Custom Icon", + "iconName": "CustomIcon", + "iconCollectionName": "CustomCollection" +} ``` - - ```ts public toolbarCustomIconOnViewInit(): void { @@ -382,26 +285,7 @@ public toolbarCustomIconOnViewInit(): void { } ``` - -```html - - -``` - - - - -```xaml - -``` - ```ts public toolbarCustomIconOnViewInit(): void { @@ -421,103 +305,19 @@ public toolbarCustomIconOnViewInit(): void { } ``` - - -```razor - - - -@code { - - protected override async Task OnAfterRenderAsync(bool firstRender) - { - var toolbar = this.toolbar; - - if (firstRender) { - this.ToolbarCustomIconOnViewInit(); - } - } - - private IgbToolbar toolbar; - - public void ToolbarCustomIconOnViewInit() - { - this.toolbar.EnsureReady().ContinueWith(new Action((e) => - { - string icon = - @" - - "; - this.toolbar.RegisterIconFromTextAsync("CustomCollection", "CustomIcon", icon); - })); - } - -} -``` - - - - - -``` - -```tsx - - - -```xaml - -``` - ### Vertical Orientation By default the {Platform} Toolbar is shown horizontally, but it also has the ability to shown vertically by setting the property. - - -```html - -``` - - - - - -```html - -``` - - - - - -```razor - -``` - - - - - -```tsx - -``` - - - - -```xaml - +```json-snippet source="/charts/toolbar/layout-in-vertical-orientation" +{ + "type": "Toolbar", + "name": "toolbar", + "orientation": "Vertical" +} ``` - The following example demonstrates the vertical orientation of the {Platform} Toolbar. @@ -528,73 +328,30 @@ The following example demonstrates the vertical orientation of the {Platform} To You can add a custom color editor tool to the the {Platform} Toolbar, which will also work with the Command event to perform custom styling to your application. - - -```html - - - - -``` - - - - - -```ts - - - - -``` - - - - - -```tsx - - - - -``` - - - - - -```razor - - - - -``` - - - - -```xaml - +```json-snippet source="/charts/toolbar/color-editor-support" +{ + "descriptions": { + "aboveContentLeft": { + "type": "Toolbar", + "name": "toolbar", + "targetRef": "chart", + "actions": [ + { + "type": "ToolActionColorEditor", + "title": "Series Brush", + "name": "colorEditorTool", + "commandId": "ToggleSeriesBrush" + } + ] + }, + "content": { + "type": "DataChart", + "name": "chart", + "isHorizontalZoomEnabled": true + } + } +} ``` - The following example demonstrates styling the {Platform} Data Chart series brush with the Color Editor tool. From 0c70e980308b03cd56bd9f1a3487578eee9ccf7c Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 00:34:09 -0400 Subject: [PATCH 052/155] Collapse the colour editor and zoom slider topics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The scope is the components that carry a XAML name in their metadata — the cross platform twenty five — rather than anything whose description name lacks a Web prefix, since the inputs and layouts are web only and their names carry no prefix either. inputs/color-editor is one of the cross platform components sitting among them: its Usage and Binding to events sections collapse, and the handler that section teaches is a library item now, wired into the topic's own sample. zoomslider-overview pointed at a sample that exists in igniteui-wc-examples and not here, like the sparkline column topic did. Ported, and its Code Snippet section states it. 147 snippets valid on every platform, 640 emissions clean. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 32 +++++ .../en/components/inputs/color-editor.mdx | 108 +++-------------- .../en/components/zoomslider-overview.mdx | 41 ++----- .../jp/components/inputs/color-editor.mdx | 109 +++--------------- .../jp/components/zoomslider-overview.mdx | 41 ++----- 5 files changed, 78 insertions(+), 253 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 7a20dd529e..426130b93f 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1211,3 +1211,35 @@ every fence gives the real picture, and what is left divides into four kinds, no chart-annotations' Callout Layer was the last one that was really a snippet: WebComponents taught the same properties as assignments beside the markup fence, and now emits them on the code channel. + +## Which components are in scope + +"Everything whose canonical description name does not start with Web" is the rule, and the way to +apply it is not the frontmatter — a page can mention Checkbox and be entirely about the web grid. +The components that carry a XAML name in their metadata are the cross platform set, and there are +twenty five of them: the charts, the gauges, the map, the data grid, the toolbar, the dashboard +tile, the zoom slider, the colour editor, the sparkline, the treemap and the legends. The inputs and +layouts are web only and out of scope even though their names carry no Web prefix. + +Two things that survey turned up, both metadata copy-and-paste: the DataGrid's WindowsForms +qualified name is UltraLinearGauge, and ODataVirtualDataSource's is the pie chart's. + +### menus/toolbar — four sections + +The data chart integration, the data URL icon, the vertical orientation and the colour editor. The +toolbar sits beside the component it targets in one definition; a toolbar stated alone reports its +target as a library item that does not exist, which is how the vertical orientation fence failed +first time. That one names no target, which is also what its block showed. + +### inputs/color-editor — a cross platform component among the web only ones + +Its Usage and Binding to events sections collapse; the handler the event section teaches is a +library item now, on the web, Blazor and .NET, and the topic's sample names it. + +### zoomslider-overview — another sample that only existed downstream + +The topic pointed at /charts/zoomslider/overview, which exists in igniteui-wc-examples and not here. +Ported, and the Code Snippet section states it. + +What these three leave behind is what every component topic keeps: Dependencies and Component +Modules. diff --git a/docs/xplat/src/content/en/components/inputs/color-editor.mdx b/docs/xplat/src/content/en/components/inputs/color-editor.mdx index 7ba2007e91..8f850d8648 100644 --- a/docs/xplat/src/content/en/components/inputs/color-editor.mdx +++ b/docs/xplat/src/content/en/components/inputs/color-editor.mdx @@ -103,51 +103,12 @@ builder.Services.AddIgniteUIBlazor( The simplest way to start using the is as follows: - - - -```html - - -``` - - - - - - - - -```html - - -``` - - - - - - - - -```tsx - - -``` - - - - -```razor - - +```json-snippet source="/inputs/color-editor/overview" +{ + "type": "ColorEditor", + "name": "colorEditor" +} ``` - ## Binding to events @@ -156,62 +117,23 @@ The Color Editor component raises the following events: - valueChanged - valueChanging - -```ts -@ViewChild("colorEditor", { static: true } ) -private colorEditor: IgxColorEditorComponent -public ngAfterViewInit(): void +```json-snippet source="/inputs/color-editor/overview" { - this.colorEditor.valueChanged.subscribe(this.onValueChanged); -} - -public onValueChanged = (e: any) => { - console.log("test"); -} - -``` - - - -```ts -this.OnValueChanged = this.OnValueChanged.bind(this); -this.colorEditor = document.getElementById('colorEditor') as IgcColorEditorComponent; -this.colorEditor.valueChanged = this.OnValueChanged; -``` - - - - -```razor - - -@code { - public void OnValueChanged(IgbColorEditorPanelSelectedValueChangedEventArgs e) - { - - } + "type": "ColorEditor", + "name": "colorEditor", + "valueChangedRef": "ColorEditorValueChanged" } - ``` - - - -```tsx - - -public onValueChanged(calendar: IgrColorEditor, e: IgrColorEditorPanelSelectedValueChangedEventArgs) { +```json-snippet source="/inputs/color-editor/overview" channel="handler" +{ + "type": "ColorEditor", + "name": "colorEditor", + "valueChangedRef": "ColorEditorValueChanged", + "$valueChangedRef": "+doc:handler" } ``` - - - -```xaml - -``` - - ## API References diff --git a/docs/xplat/src/content/en/components/zoomslider-overview.mdx b/docs/xplat/src/content/en/components/zoomslider-overview.mdx index 1ff4571b1c..862140005b 100644 --- a/docs/xplat/src/content/en/components/zoomslider-overview.mdx +++ b/docs/xplat/src/content/en/components/zoomslider-overview.mdx @@ -111,41 +111,16 @@ IgcZoomSliderModule.register(); The following code demonstrates how to setup the ZoomSlider. - - -```html - - +```json-snippet source="/charts/zoomslider/overview" +{ + "type": "ZoomSlider", + "name": "zoomSlider", + "areThumbCalloutsEnabled": true, + "height": "100%", + "width": "100%" +} ``` - - - - -```tsx - -``` - - - - - - -```html - - -``` - - - ## Additional Resources diff --git a/docs/xplat/src/content/jp/components/inputs/color-editor.mdx b/docs/xplat/src/content/jp/components/inputs/color-editor.mdx index 740921b261..1422b92316 100644 --- a/docs/xplat/src/content/jp/components/inputs/color-editor.mdx +++ b/docs/xplat/src/content/jp/components/inputs/color-editor.mdx @@ -114,52 +114,12 @@ ModuleManager.register( の使用を開始する最も簡単な方法は次のとおりです: - - - -```html - - -
-``` - -
- - - - - - -```html - - -``` - - - - - - - - -```tsx - - -``` - - - - -```razor - - +```json-snippet source="/inputs/color-editor/overview" +{ + "type": "ColorEditor", + "name": "colorEditor" +} ``` - ## イベントにバインド @@ -168,62 +128,23 @@ Color Editor コンポーネントは、次のイベントを発生させます: - valueChanged - valueChanging - -```ts -@ViewChild("colorEditor", { static: true } ) -private colorEditor: IgxColorEditorComponent -public ngAfterViewInit(): void +```json-snippet source="/inputs/color-editor/overview" { - this.colorEditor.valueChanged.subscribe(this.onValueChanged); -} - -public onValueChanged = (e: any) => { - console.log("test"); + "type": "ColorEditor", + "name": "colorEditor", + "valueChangedRef": "ColorEditorValueChanged" } - ``` - - - -```ts -this.OnValueChanged = this.OnValueChanged.bind(this); -this.colorEditor = document.getElementById('colorEditor') as IgcColorEditorComponent; -this.colorEditor.valueChanged = this.OnValueChanged; -``` - - - - -```razor - - -@code { - public void OnValueChanged(IgbColorEditorPanelSelectedValueChangedEventArgs e) - { - - } -} - -``` - - - -```tsx - - -public onValueChanged(calendar: IgrColorEditor, e: IgrColorEditorPanelSelectedValueChangedEventArgs) { +```json-snippet source="/inputs/color-editor/overview" channel="handler" +{ + "type": "ColorEditor", + "name": "colorEditor", + "valueChangedRef": "ColorEditorValueChanged", + "$valueChangedRef": "+doc:handler" } ``` - - - -```xaml - -``` - - diff --git a/docs/xplat/src/content/jp/components/zoomslider-overview.mdx b/docs/xplat/src/content/jp/components/zoomslider-overview.mdx index bbba1a1292..ae1f45ff97 100644 --- a/docs/xplat/src/content/jp/components/zoomslider-overview.mdx +++ b/docs/xplat/src/content/jp/components/zoomslider-overview.mdx @@ -113,41 +113,16 @@ IgcZoomSliderModule.register(); 以下のコードは、ZoomSlider を設定する方法を示します。 - - -```html - - +```json-snippet source="/charts/zoomslider/overview" +{ + "type": "ZoomSlider", + "name": "zoomSlider", + "areThumbCalloutsEnabled": true, + "height": "100%", + "width": "100%" +} ``` - - - - -```tsx - -``` - - - - - - -```html - - -``` - - - ## その他のリソース From f16e3d6f6a065872d9ba734baede50a956e486e7 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 06:42:16 -0400 Subject: [PATCH 053/155] Collapse the Component Modules sections MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The module list was not enough on its own: those sections teach the call around it. The emitter writes that call now, into a moduleRegistration region built from the list it already wrote for the template, with each platform saying what wraps it — NgModule imports for Angular, the module manager for Web Components, an array and a forEach for React, AddIgniteUIBlazor for Blazor, and nothing for the XAML platforms, which register nothing. Angular and Blazor name the file, as their blocks did. Each section is one fence now, imports and call together, on geo-map, the three gauges, the dashboard tile, the zoom slider, the colour editor, the toolbar and the multiple shapes topic. The npm lines and Blazor's _Imports.razor using stay: they are instructions, not component code. Two errors on the way. The zoom slider was excluded for Blazor in the table of contents, so that page did not build for Blazor readers at all; it ships there, and the exclusion is gone. And on the multiple shapes topic three fences and their headings were still scoped to the web platforms, left from before those handlers had a C# port — Blazor was being shown nothing where the fences would have emitted for it. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 27 ++++ .../content/en/components/bullet-graph.mdx | 66 ++------- .../content/en/components/dashboard-tile.mdx | 100 +++---------- .../geo-map-binding-multiple-shapes.mdx | 40 +++-- .../src/content/en/components/geo-map.mdx | 112 ++------------ .../en/components/inputs/color-editor.mdx | 71 +++------ .../content/en/components/linear-gauge.mdx | 62 ++------ .../content/en/components/menus/toolbar.mdx | 108 +++----------- .../content/en/components/radial-gauge.mdx | 66 ++------- .../en/components/zoomslider-overview.mdx | 63 ++------ docs/xplat/src/content/en/toc.json | 3 - .../content/jp/components/bullet-graph.mdx | 66 ++------- .../content/jp/components/dashboard-tile.mdx | 115 +++------------ .../geo-map-binding-multiple-shapes.mdx | 31 ++-- .../src/content/jp/components/geo-map.mdx | 108 ++------------ .../jp/components/inputs/color-editor.mdx | 76 ++-------- .../content/jp/components/linear-gauge.mdx | 62 ++------ .../content/jp/components/menus/toolbar.mdx | 137 +++--------------- .../content/jp/components/radial-gauge.mdx | 66 ++------- .../jp/components/zoomslider-overview.mdx | 63 ++------ docs/xplat/src/content/jp/toc.json | 3 - 21 files changed, 324 insertions(+), 1121 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 426130b93f..b331548d9d 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1243,3 +1243,30 @@ Ported, and the Code Snippet section states it. What these three leave behind is what every component topic keeps: Dependencies and Component Modules. + +## Component Modules, collapsed after all + +The module list alone was not enough, because a Component Modules section teaches the call around it. +The emitter writes that call now, into a region of its own — `moduleRegistration` — built from the +same list it already wrote for the template, with each platform saying what wraps it: +`@NgModule({ imports: [...] })` for Angular, `ModuleManager.register(...)` for Web Components, an +array and a forEach for React, `builder.Services.AddIgniteUIBlazor(...)` for Blazor, and nothing at +all for the XAML platforms, which have no registration. Angular and Blazor name the file the +registration belongs in, as their hand written blocks did. + +A section is then one fence: `channel="modulesImports...moduleRegistration"`, which is the imports, +an ellipsis comment, and the call. Applied to geo-map, the three gauges, the dashboard tile, the zoom +slider, the colour editor, the toolbar and the multiple shapes topic. + +Two things stay hand written in those sections, and both are instructions rather than component code: +the `npm install` lines, and the Blazor `@using` that belongs in _Imports.razor. + +### Two errors this turned up + +The zoom slider was excluded for Blazor in the table of contents, which is wrong — it ships there — +so that page had been unbuildable for Blazor readers. The exclusion is gone. + +On the multiple shapes topic, three fences and the headings above them were still scoped to the three +web platforms, left from when those handlers had no C# port. The port landed earlier today, so the +fences admit Blazor while the wrappers still shut it out. Both are unwrapped, and Blazor now reads the +Processing sections it was never shown. diff --git a/docs/xplat/src/content/en/components/bullet-graph.mdx b/docs/xplat/src/content/en/components/bullet-graph.mdx index e941fae9eb..320ca450c0 100644 --- a/docs/xplat/src/content/en/components/bullet-graph.mdx +++ b/docs/xplat/src/content/en/components/bullet-graph.mdx @@ -48,60 +48,24 @@ npm install --save {PackageGauges} The requires the following modules: - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbBulletGraphModule)); -``` - - - - - -```ts -// app.module.ts -import { IgxBulletGraphModule } from 'igniteui-angular-gauges'; - -@NgModule({ - imports: [ - // ... - IgxBulletGraphModule - // ... +```json-snippet source="/gauges/bullet-graph/animation" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "BulletGraph", + "name": "graph" + } + }, + "modules": [ + "gauges/BulletGraphModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgrBulletGraphModule } from 'igniteui-react-gauges'; - -IgrBulletGraphModule.register(); -``` - - - - - -```ts -import { IgcBulletGraphCoreModule } from 'igniteui-webcomponents-gauges'; -import { IgcBulletGraphModule } from 'igniteui-webcomponents-gauges'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -// register the modules -ModuleManager.register( - IgcBulletGraphCoreModule, - IgcBulletGraphModule -); +} ``` - - ## Usage diff --git a/docs/xplat/src/content/en/components/dashboard-tile.mdx b/docs/xplat/src/content/en/components/dashboard-tile.mdx index 8c6ef71741..34ec20faeb 100644 --- a/docs/xplat/src/content/en/components/dashboard-tile.mdx +++ b/docs/xplat/src/content/en/components/dashboard-tile.mdx @@ -47,96 +47,40 @@ npm install {PackageMaps} The following modules are suggested when using the Dashboard Tile component: - - -```ts -import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxRadialGaugeDashboardTileModule, - IgxLinearGaugeDashboardTileModule, IgxGeographicMapDashboardTileModule, - IgxPieChartDashboardTileModule } from "igniteui-angular-dashboards"; - -@NgModule({ - imports: [ - IgxDataChartDashboardTileModule, - IgxRadialGaugeDashboardTileModule, - IgxLinearGaugeDashboardTileModule, - IgxGeographicMapDashboardTileModule, - IgxPieChartDashboardTileModule, - IgxDashboardTileModule - ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgrDashboardTileModule, IgrDataChartDashboardTileModule, IgrRadialGaugeDashboardTileModule, - IgrLinearGaugeDashboardTileModule, IgrGeographicMapDashboardTileModule, - IgrPieChartDashboardTileModule } from "igniteui-react-dashboards"; - -IgrDataChartDashboardTileModule.register(); -IgrRadialGaugeDashboardTileModule.register(); -IgrLinearGaugeDashboardTileModule.register(); -IgrGeographicMapDashboardTileModule.register(); -IgrPieChartDashboardTileModule.register(); -IgrDashboardTileModule.register(); -``` - - - - - -```ts -import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcRadialGaugeDashboardTileModule, - IgcLinearGaugeDashboardTileModule, IgcGeographicMapDashboardTileModule, - IgcPieChartDashboardTileModule } from "igniteui-angular-dashboards"; - -ModuleManager.register( - IgcDataChartDashboardTileModule, - IgcRadialGaugeDashboardTileModule, - IgcLinearGaugeDashboardTileModule, - IgcGeographicMapDashboardTileModule, - IgcPieChartDashboardTileModule, - IgcDashboardTileModule -); -``` - - - - - - - - Add the **IgniteUI.Blazor.Controls** namespace in the **_Imports.razor** file: ```razor @using IgniteUI.Blazor.Controls ``` -The following modules are suggested when using the Dashboard Tile component: + -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbDataChartDashboardTileModule), - typeof(IgbRadialGaugeDashboardTileModule), - typeof(IgbLinearGaugeDashboardTileModule), - typeof(IgbGeographicMapDashboardTileModule), - typeof(IgbPieChartDashboardTileModule), - typeof(IgbDashboardTileModule) -); +```json-snippet source="/charts/dashboard-tile/gauge-dashboard" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "DashboardTile", + "name": "tile" + } + }, + "modules": [ + "dashboards/DashboardTileModule", + "dashboards/DataChartDashboardTileModule", + "dashboards/GeographicMapDashboardTileModule", + "dashboards/LinearGaugeDashboardTileModule", + "dashboards/PieChartDashboardTileModule", + "dashboards/RadialGaugeDashboardTileModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` - - - ## Usage Depending on what you bind the Dashboard Tile's property to will determine which visualization you see by default, as the control will evaluate the data you bind and then choose a visualization from the {ProductName} toolset to show. The data visualization controls that are included to be shown in the Dashboard Tile are the following: diff --git a/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx index b25d7d8d9c..2fc9648f9c 100644 --- a/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx @@ -82,19 +82,25 @@ First, let's import required components and modules: } ``` - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbGeographicMapModule), - typeof(IgbDataChartInteractivityModule) -); +```json-snippet source="/maps/geo-map/binding-multiple-shapes" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap" + } + }, + "modules": [ + "maps/GeographicMapModule", + "charts/DataChartInteractivityModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` - - ## Creating Series Next, we need to create a map with a few Geographic Series that will later load different type of shapefile. @@ -110,38 +116,26 @@ Next, in constructor of your page, add a for ```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesLoad" ``` - ## Processing Polygons Process shapes data loaded in with of countries of the world and assign it to object. - - ```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolygons" ``` - - ## Processing Polyline Process shapes data loaded in with communication routes between major cities and assign it to object. - - ```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolylines" ``` - - ## Processing Points Process shapes data loaded in with locations of major cities and assign it to object. - - ```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPoints" ``` - ## Map Background diff --git a/docs/xplat/src/content/en/components/geo-map.mdx b/docs/xplat/src/content/en/components/geo-map.mdx index bd9a1266f5..abd96a0642 100644 --- a/docs/xplat/src/content/en/components/geo-map.mdx +++ b/docs/xplat/src/content/en/components/geo-map.mdx @@ -56,107 +56,25 @@ npm install --save {PackageMaps} The requires the following modules, however the DataChartInteractivityModule is only required for mouse interactions, such as panning and zooming the map content. - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbGeographicMapModule), - typeof(IgbDataChartInteractivityModule) -); -``` - - - - - -```ts -// app.module.ts -import { IgxGeographicMapModule } from 'igniteui-angular-maps'; -import { IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; - -@NgModule({ - imports: [ - // ... - IgxGeographicMapModule, - IgxDataChartInteractivityModule - // ... +```json-snippet source="/maps/geo-map/type-scatter-bubble-series" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map" + } + }, + "modules": [ + "maps/GeographicMapModule", + "charts/DataChartInteractivityModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { AfterViewInit, Component, ViewChild } from "@angular/core"; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; - -@Component({ - selector: "app-map-overview", - styleUrls: ["./map-overview.component.scss"], - templateUrl: "./map-overview.component.html" -}) - -export class MapOverviewComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - constructor() { - } - - public ngAfterViewInit(): void { - this.map.windowRect = { left: 0.2, top: 0.1, width: 0.7, height: 0.7 }; - } } ``` - - - - -```ts -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcGeographicMap } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; - -IgcGeographicMapModule.register(); -IgcDataChartInteractivityModule.register(); -``` - - - - - -```ts -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); -``` - - - - - -```ts -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; - -ModuleManager.register( - IgcDataChartInteractivityModule, - IgcGeographicMapModule -); -``` - - - ## Usage diff --git a/docs/xplat/src/content/en/components/inputs/color-editor.mdx b/docs/xplat/src/content/en/components/inputs/color-editor.mdx index 8f850d8648..09470ab49a 100644 --- a/docs/xplat/src/content/en/components/inputs/color-editor.mdx +++ b/docs/xplat/src/content/en/components/inputs/color-editor.mdx @@ -34,70 +34,35 @@ npm install {PackageInputs} Before using the , you need to register the following modules as follows: - - -```ts -import { IgcColorEditorModule } from "igniteui-angular-inputs"; - -@NgModule({ - imports: [ - IgcColorEditorModule - ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgcColorEditorModule, IgcColorEditorComponent } from 'igniteui-webcomponents-inputs'; - -ModuleManager.register( - IgcColorEditorModule -); -``` - - - - - -```tsx -import { IgrColorEditor, IgrColorEditorModule } from 'igniteui-react'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; - -IgrColorEditorModule.register(); -``` - - - - - - - - -First, add the **IgniteUI.Blazor.Controls** namespace in the **_Imports.razor** file: +Add the **IgniteUI.Blazor.Controls** namespace in the **_Imports.razor** file: ```razor @using IgniteUI.Blazor.Controls ``` -The following modules are required when using the Dashboard Tile component: + -```csharp -// in Program.cs file -builder.Services.AddIgniteUIBlazor( - typeof(IgbColorEditorModule) -); +```json-snippet source="/inputs/color-editor/overview" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "ColorEditor", + "name": "colorEditor" + } + }, + "modules": [ + "inputs/ColorEditorModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` - - - ## Usage The simplest way to start using the is as follows: diff --git a/docs/xplat/src/content/en/components/linear-gauge.mdx b/docs/xplat/src/content/en/components/linear-gauge.mdx index 47dcf4d50b..403ce661b5 100644 --- a/docs/xplat/src/content/en/components/linear-gauge.mdx +++ b/docs/xplat/src/content/en/components/linear-gauge.mdx @@ -44,56 +44,24 @@ npm install --save {PackageGauges} The requires the following modules: - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbLinearGaugeModule)); -``` - - - - - -```ts -// app.module.ts -import { IgxLinearGaugeModule } from 'igniteui-angular-gauges'; - -@NgModule({ - imports: [ - // ... - IgxLinearGaugeModule - // ... +```json-snippet source="/gauges/linear-gauge/animation" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "LinearGauge", + "name": "gauge" + } + }, + "modules": [ + "gauges/LinearGaugeModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgrLinearGaugeModule } from 'igniteui-react-gauges'; - -IgrLinearGaugeModule.register(); -``` - - - - - -```ts -import { IgcLinearGaugeModule } from 'igniteui-webcomponents-gauges'; - -ModuleManager.register( - IgcLinearGaugeModule - ); +} ``` - - ## Usage diff --git a/docs/xplat/src/content/en/components/menus/toolbar.mdx b/docs/xplat/src/content/en/components/menus/toolbar.mdx index beeda787d5..01ed944ebf 100644 --- a/docs/xplat/src/content/en/components/menus/toolbar.mdx +++ b/docs/xplat/src/content/en/components/menus/toolbar.mdx @@ -35,107 +35,37 @@ npm install {PackageCore} The following modules are required when using the with the component and it's features. - - -```ts -import { IgxToolbarModule } from 'igniteui-angular-layouts'; -import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotationModule, IgxDataChartInteractivityModule, IgxDataChartCategoryTrendLineModule } from 'igniteui-angular-charts'; - -@NgModule({ - imports: [ - // ... - IgxToolbarModule, - IgxDataChartToolbarModule, - IgxDataChartCoreModule, - IgxDataChartCategoryModule, - IgxDataChartAnnotationModule, - IgxDataChartInteractivityModule, - IgxDataChartCategoryTrendLineModule - // ... - ] -}) -export class AppModule {} -``` - - - - - -```tsx -import { IgrToolbarModule } from 'igniteui-react-layouts'; -import { IgrDataChartToolbarModule, IgrDataChartCoreModule, IgrDataChartCategoryModule, IgrDataChartAnnotationModule, IgrDataChartInteractivityModule, IgrDataChartCategoryTrendLineModule } from 'igniteui-react-charts'; - -IgrToolbarModule.register(); -IgrDataChartToolbarModule.register(); -IgrDataChartCoreModule.register(); -IgrDataChartCategoryModule.register(); -IgrDataChartAnnotationModule.register(); -IgrDataChartInteractivityModule.register(); -IgrDataChartCategoryTrendLineModule.register(); -``` - - - - - -```ts -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; -import { IgcDataChartToolbarModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule, IgcDataChartCategoryTrendLineModule } from 'igniteui-webcomponents-charts'; - -ModuleManager.register( - IgcToolbarModule, - IgcToolActionLabelModule, - IgcDataChartToolbarModule, - IgcDataChartCategoryModule, - IgcDataChartCoreModule, - IgcDataChartInteractivityModule, - IgcDataChartAnnotationModule, - IgcDataChartCategoryTrendLineModule -); -``` - - - - - - - - Add the **IgniteUI.Blazor.Controls** namespace in the **_Imports.razor** file: ```razor @using IgniteUI.Blazor.Controls ``` -The following modules are required when using the with the component and it's features. - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbToolbarModule), - typeof(IgbDataChartToolbarModule), - typeof(IgbDataChartCoreModule), - typeof(IgbDataChartCategoryModule), - typeof(IgbDataChartAnnotationModule), - typeof(IgbDataChartInteractivityModule), - typeof(IgbDataChartCategoryTrendLineModule) -); -``` - -You will also need to link an additional CSS file to apply the styling to the component. The following needs to be placed in the **wwwroot/index.html** file in a **Blazor Web Assembly** project or the **Pages/_Host.cshtml** file in a **Blazor Server** project: + -```razor - +```json-snippet source="/charts/toolbar/layout-actions-for-data-chart" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "Toolbar", + "name": "toolbar" + } + }, + "modules": [ + "layouts/ToolbarModule", + "charts/CategoryChartModule", + "charts/CategoryChartToolbarModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` - - - ## Usage ### Tool Actions diff --git a/docs/xplat/src/content/en/components/radial-gauge.mdx b/docs/xplat/src/content/en/components/radial-gauge.mdx index 6bc8c421e9..b3c2d72150 100644 --- a/docs/xplat/src/content/en/components/radial-gauge.mdx +++ b/docs/xplat/src/content/en/components/radial-gauge.mdx @@ -63,60 +63,24 @@ Afterwards you may start implementing the control by adding the following namesp The requires the following modules: - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbRadialGaugeModule)); -``` - - - - - -```ts -// app.module.ts -import { IgxRadialGaugeModule } from 'igniteui-angular-gauges'; - -@NgModule({ - imports: [ - // ... - IgxRadialGaugeModule - // ... +```json-snippet source="/gauges/radial-gauge/animation" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "RadialGauge", + "name": "gauge" + } + }, + "modules": [ + "gauges/RadialGaugeModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -// Module Manager for registering the modules of the chart -import { ModuleManager } from 'igniteui-webcomponents-core'; -// Radial Gauge Module -import { IgcRadialGaugeModule } from 'igniteui-webcomponents-gauges'; - -// register the modules -ModuleManager.register( - IgcRadialGaugeModule -); -``` - - - - - -```ts -import { IgrRadialGaugeModule } from 'igniteui-react-gauges'; - -IgrRadialGaugeModule.register(); +} ``` - - diff --git a/docs/xplat/src/content/en/components/zoomslider-overview.mdx b/docs/xplat/src/content/en/components/zoomslider-overview.mdx index 862140005b..d4f5d9b09c 100644 --- a/docs/xplat/src/content/en/components/zoomslider-overview.mdx +++ b/docs/xplat/src/content/en/components/zoomslider-overview.mdx @@ -56,57 +56,24 @@ npm install --save {PackageCharts} The requires the following modules: - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbZoomSliderModule)); -``` - - - - - -```ts -import { IgxZoomSliderModule } from 'igniteui-angular-charts'; -import { IgxZoomSliderComponent } from 'igniteui-angular-charts'; - -@NgModule({ - imports: [ - // ... - IgxZoomSliderModule, - // ... +```json-snippet source="/charts/zoomslider/overview" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "ZoomSlider", + "name": "zoomSlider" + } + }, + "modules": [ + "charts/ZoomSliderModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgrZoomSliderModule } from 'igniteui-react-charts'; -import { IgrZoomSlider } from 'igniteui-react-charts'; - -IgrZoomSliderModule.register(); -``` - - - - - -```ts -import { IgcZoomSliderModule } from 'igniteui-webcomponents-charts'; -import { IgcZoomSliderComponent } from "igniteui-webcomponents-charts"; - -IgcZoomSliderModule.register(); +} ``` - - ## Code Snippet The following code demonstrates how to setup the ZoomSlider. diff --git a/docs/xplat/src/content/en/toc.json b/docs/xplat/src/content/en/toc.json index 80b30a82d8..dbbb53f10b 100644 --- a/docs/xplat/src/content/en/toc.json +++ b/docs/xplat/src/content/en/toc.json @@ -3491,9 +3491,6 @@ ] }, { - "exclude": [ - "Blazor" - ], "name": "Zoom Slider", "href": "zoomslider-overview.mdx" }, diff --git a/docs/xplat/src/content/jp/components/bullet-graph.mdx b/docs/xplat/src/content/jp/components/bullet-graph.mdx index 44da12f11d..ee11f93c69 100644 --- a/docs/xplat/src/content/jp/components/bullet-graph.mdx +++ b/docs/xplat/src/content/jp/components/bullet-graph.mdx @@ -50,60 +50,24 @@ npm install --save {PackageGauges} を作成するには、以下のモジュールが必要です。 - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbBulletGraphModule)); -``` - - - - - -```ts -// app.module.ts -import { IgxBulletGraphModule } from 'igniteui-angular-gauges'; - -@NgModule({ - imports: [ - // ... - IgxBulletGraphModule - // ... +```json-snippet source="/gauges/bullet-graph/animation" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "BulletGraph", + "name": "graph" + } + }, + "modules": [ + "gauges/BulletGraphModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgrBulletGraphModule } from 'igniteui-react-gauges'; - -IgrBulletGraphModule.register(); -``` - - - - - -```ts -import { IgcBulletGraphCoreModule } from 'igniteui-webcomponents-gauges'; -import { IgcBulletGraphModule } from 'igniteui-webcomponents-gauges'; -import { ModuleManager } from 'igniteui-webcomponents-core'; - -// register the modules -ModuleManager.register( - IgcBulletGraphCoreModule, - IgcBulletGraphModule -); +} ``` - - ## 使用方法 diff --git a/docs/xplat/src/content/jp/components/dashboard-tile.mdx b/docs/xplat/src/content/jp/components/dashboard-tile.mdx index 6d5572256b..59dacc3a22 100644 --- a/docs/xplat/src/content/jp/components/dashboard-tile.mdx +++ b/docs/xplat/src/content/jp/components/dashboard-tile.mdx @@ -49,108 +49,33 @@ npm install {PackageMaps} Dashboard Tile コンポーネントを使用する場合、以下のモジュールを使用することをお勧めします: - - -```ts -import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxRadialGaugeDashboardTileModule, - IgxLinearGaugeDashboardTileModule, IgxGeographicMapDashboardTileModule, - IgxPieChartDashboardTileModule } from "igniteui-angular-dashboards"; - -@NgModule({ - imports: [ - IgxDataChartDashboardTileModule, - IgxRadialGaugeDashboardTileModule, - IgxLinearGaugeDashboardTileModule, - IgxGeographicMapDashboardTileModule, - IgxPieChartDashboardTileModule, - IgxDashboardTileModule +```json-snippet source="/charts/dashboard-tile/gauge-dashboard" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "DashboardTile", + "name": "tile" + } + }, + "modules": [ + "dashboards/DashboardTileModule", + "dashboards/DataChartDashboardTileModule", + "dashboards/GeographicMapDashboardTileModule", + "dashboards/LinearGaugeDashboardTileModule", + "dashboards/PieChartDashboardTileModule", + "dashboards/RadialGaugeDashboardTileModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} +} ``` - -```ts -import { IgrDashboardTileModule, IgrDataChartDashboardTileModule, IgrRadialGaugeDashboardTileModule, - IgrLinearGaugeDashboardTileModule, IgrGeographicMapDashboardTileModule, - IgrPieChartDashboardTileModule } from "igniteui-react-dashboards"; -IgrDataChartDashboardTileModule.register(); -IgrRadialGaugeDashboardTileModule.register(); -IgrLinearGaugeDashboardTileModule.register(); -IgrGeographicMapDashboardTileModule.register(); -IgrPieChartDashboardTileModule.register(); -IgrDashboardTileModule.register(); -``` - - - - - -```ts -import { IgcDashboardTileModule, IgcDataChartDashboardTileModule, IgcRadialGaugeDashboardTileModule, - IgcLinearGaugeDashboardTileModule, IgcGeographicMapDashboardTileModule, - IgcPieChartDashboardTileModule } from "igniteui-angular-dashboards"; - -ModuleManager.register( - IgcDataChartDashboardTileModule, - IgcRadialGaugeDashboardTileModule, - IgcLinearGaugeDashboardTileModule, - IgcGeographicMapDashboardTileModule, - IgcPieChartDashboardTileModule, - IgcDashboardTileModule -); -``` - - - - - - - - - - -**IgniteUI.Blazor.Controls** 名前空間を **_Imports.razor** ファイルに追加します。 - -```ts -import { IgxDashboardTileModule, IgxDataChartDashboardTileModule, IgxRadialGaugeDashboardTileModule, - IgxLinearGaugeDashboardTileModule, IgxGeographicMapDashboardTileModule, - IgxPieChartDashboardTileModule } from "igniteui-angular-dashboards"; - -@NgModule({ - imports: [ - IgxDataChartDashboardTileModule, - IgxRadialGaugeDashboardTileModule, - IgxLinearGaugeDashboardTileModule, - IgxGeographicMapDashboardTileModule, - IgxPieChartDashboardTileModule, - IgxDashboardTileModule - ] -}) -export class AppModule {} -``` - -Dashboard Tile コンポーネントを使用する場合、以下のモジュールを使用することをお勧めします: - -```ts -import { IgrDashboardTileModule, IgrDataChartDashboardTileModule, IgrRadialGaugeDashboardTileModule, - IgrLinearGaugeDashboardTileModule, IgrGeographicMapDashboardTileModule, - IgrPieChartDashboardTileModule } from "igniteui-react-dashboards"; - -IgrDataChartDashboardTileModule.register(); -IgrRadialGaugeDashboardTileModule.register(); -IgrLinearGaugeDashboardTileModule.register(); -IgrGeographicMapDashboardTileModule.register(); -IgrPieChartDashboardTileModule.register(); -IgrDashboardTileModule.register(); -``` - - - ## 使用方法 diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx index 36acb7aead..fa50435dfc 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx @@ -84,6 +84,25 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; } ``` +```json-snippet source="/maps/geo-map/binding-multiple-shapes" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap" + } + }, + "modules": [ + "maps/GeographicMapModule", + "charts/DataChartInteractivityModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} +``` + ## シリーズの作成 次に、後で異なるタイプのシェープ ファイルをロードする地理的シリーズでマップを作成します。 @@ -100,38 +119,26 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - ## ポリゴンの処理 世界の国々の に読み込まれた形状データを処理し、 オブジェクトに割り当てます。 - - ```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolygons" ``` - - ## ポリラインの処理 に読み込まれた形状データを処理し、主要都市間の通信ルートを使用して、 オブジェクトに割り当てます。 - - ```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPolylines" ``` - - ## ポイントの処理 に読み込まれた世界各国の形状データを処理し、 オブジェクトに割り当てます。 - - ```json-snippet ref="shapes" exclude="Xaml" source="/maps/geo-map/binding-multiple-shapes" channel="handler" item="MapMultipleShapesPoints" ``` - ## マップ背景 diff --git a/docs/xplat/src/content/jp/components/geo-map.mdx b/docs/xplat/src/content/jp/components/geo-map.mdx index 6873cad8dd..a2b5e9d7c2 100644 --- a/docs/xplat/src/content/jp/components/geo-map.mdx +++ b/docs/xplat/src/content/jp/components/geo-map.mdx @@ -53,106 +53,28 @@ npm install --save {PackageMaps} には以下のモジュールが必要ですが、DataChartInteractivityModule は、マップ コンテンツのパンやズームなどのマウス操作にのみ必要です。 - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbGeographicMapModule), - typeof(IgbDataChartInteractivityModule) -); -``` - - - - - -```ts -// app.module.ts -import { IgxGeographicMapModule } from 'igniteui-angular-maps'; -import { IgxDataChartInteractivityModule } from 'igniteui-angular-charts'; - -@NgModule({ - imports: [ - // ... - IgxGeographicMapModule, - IgxDataChartInteractivityModule - // ... +```json-snippet source="/maps/geo-map/type-scatter-bubble-series" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "map" + } + }, + "modules": [ + "maps/GeographicMapModule", + "charts/DataChartInteractivityModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { AfterViewInit, Component, ViewChild } from "@angular/core"; -import { IgxGeographicMapComponent } from 'igniteui-angular-maps'; - -@Component({ - selector: "app-map-overview", - styleUrls: ["./map-overview.component.scss"], - templateUrl: "./map-overview.component.html" -}) - -export class MapOverviewComponent implements AfterViewInit { - - @ViewChild ("map") - public map: IgxGeographicMapComponent; - constructor() { - } - - public ngAfterViewInit(): void { - this.map.windowRect = { left: 0.2, top: 0.1, width: 0.7, height: 0.7 }; - } } ``` - - -```ts -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcGeographicMap } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; -IgcGeographicMapModule.register(); -IgcDataChartInteractivityModule.register(); -``` - - - - - -```ts -import { IgrGeographicMapModule } from 'igniteui-react-maps'; -import { IgrGeographicMap } from 'igniteui-react-maps'; -import { IgrDataChartInteractivityModule } from 'igniteui-react-charts'; - -IgrGeographicMapModule.register(); -IgrDataChartInteractivityModule.register(); -``` - - - - - -```ts -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcGeographicMapModule } from 'igniteui-webcomponents-maps'; -import { IgcDataChartInteractivityModule } from 'igniteui-webcomponents-charts'; - -ModuleManager.register( - IgcDataChartInteractivityModule, - IgcGeographicMapModule -); -``` - - ## 使用方法 diff --git a/docs/xplat/src/content/jp/components/inputs/color-editor.mdx b/docs/xplat/src/content/jp/components/inputs/color-editor.mdx index 1422b92316..8fac2ba722 100644 --- a/docs/xplat/src/content/jp/components/inputs/color-editor.mdx +++ b/docs/xplat/src/content/jp/components/inputs/color-editor.mdx @@ -37,76 +37,30 @@ npm install {PackageInputs} を使用する前に、次のモジュールを登録する必要があります: - - -```ts -import { IgcColorEditorModule } from "igniteui-angular-inputs"; - -@NgModule({ - imports: [ - IgcColorEditorModule +```json-snippet source="/inputs/color-editor/overview" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "ColorEditor", + "name": "colorEditor" + } + }, + "modules": [ + "inputs/ColorEditorModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgcColorEditorModule, IgcColorEditorComponent } from 'igniteui-webcomponents-inputs'; - -ModuleManager.register( - IgcColorEditorModule -); +} ``` - - - -```tsx -import { IgrColorEditor, IgrColorEditorModule } from 'igniteui-react'; -import 'igniteui-webcomponents/themes/light/bootstrap.css'; - -IgrColorEditorModule.register(); -``` - - - - - -ます、**IgniteUI.Blazor.Controls** 名前空間を **_Imports.razor** ファイルに追加します。 - -```ts -import { IgcColorEditorModule } from "igniteui-angular-inputs"; - -@NgModule({ - imports: [ - IgcColorEditorModule - ] -}) -export class AppModule {} -``` - -Dashboard Tile コンポーネントを使用する場合、以下のモジュールが必要です: - -```ts -import { IgcColorEditorModule, IgcColorEditorComponent } from 'igniteui-webcomponents-inputs'; - -ModuleManager.register( - IgcColorEditorModule -); -``` - - - ## 使用方法 diff --git a/docs/xplat/src/content/jp/components/linear-gauge.mdx b/docs/xplat/src/content/jp/components/linear-gauge.mdx index c630e0d6c2..1f4184afed 100644 --- a/docs/xplat/src/content/jp/components/linear-gauge.mdx +++ b/docs/xplat/src/content/jp/components/linear-gauge.mdx @@ -46,56 +46,24 @@ npm install --save {PackageGauges} を作成するには、以下のモジュールが必要です。 - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbLinearGaugeModule)); -``` - - - - - -```ts -// app.module.ts -import { IgxLinearGaugeModule } from 'igniteui-angular-gauges'; - -@NgModule({ - imports: [ - // ... - IgxLinearGaugeModule - // ... +```json-snippet source="/gauges/linear-gauge/animation" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "LinearGauge", + "name": "gauge" + } + }, + "modules": [ + "gauges/LinearGaugeModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgrLinearGaugeModule } from 'igniteui-react-gauges'; - -IgrLinearGaugeModule.register(); -``` - - - - - -```ts -import { IgcLinearGaugeModule } from 'igniteui-webcomponents-gauges'; - -ModuleManager.register( - IgcLinearGaugeModule - ); +} ``` - - ## 使用方法 diff --git a/docs/xplat/src/content/jp/components/menus/toolbar.mdx b/docs/xplat/src/content/jp/components/menus/toolbar.mdx index 0675b9154f..a274e93923 100644 --- a/docs/xplat/src/content/jp/components/menus/toolbar.mdx +++ b/docs/xplat/src/content/jp/components/menus/toolbar.mdx @@ -37,133 +37,30 @@ npm install {PackageCore} コンポーネントとその機能とともに を使用する場合、次のモジュールが必要です。 - - -```ts -import { IgxToolbarModule } from 'igniteui-angular-layouts'; -import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotationModule, IgxDataChartInteractivityModule, IgxDataChartCategoryTrendLineModule } from 'igniteui-angular-charts'; - -@NgModule({ - imports: [ - // ... - IgxToolbarModule, - IgxDataChartToolbarModule, - IgxDataChartCoreModule, - IgxDataChartCategoryModule, - IgxDataChartAnnotationModule, - IgxDataChartInteractivityModule, - IgxDataChartCategoryTrendLineModule - // ... +```json-snippet source="/charts/toolbar/layout-actions-for-data-chart" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "Toolbar", + "name": "toolbar" + } + }, + "modules": [ + "layouts/ToolbarModule", + "charts/CategoryChartModule", + "charts/CategoryChartToolbarModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```tsx -import { IgrToolbarModule } from 'igniteui-react-layouts'; -import { IgrDataChartToolbarModule, IgrDataChartCoreModule, IgrDataChartCategoryModule, IgrDataChartAnnotationModule, IgrDataChartInteractivityModule, IgrDataChartCategoryTrendLineModule } from 'igniteui-react-charts'; - -IgrToolbarModule.register(); -IgrDataChartToolbarModule.register(); -IgrDataChartCoreModule.register(); -IgrDataChartCategoryModule.register(); -IgrDataChartAnnotationModule.register(); -IgrDataChartInteractivityModule.register(); -IgrDataChartCategoryTrendLineModule.register(); -``` - - - - - -```ts -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; -import { IgcDataChartToolbarModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule, IgcDataChartCategoryTrendLineModule } from 'igniteui-webcomponents-charts'; - -ModuleManager.register( - IgcToolbarModule, - IgcToolActionLabelModule, - IgcDataChartToolbarModule, - IgcDataChartCategoryModule, - IgcDataChartCoreModule, - IgcDataChartInteractivityModule, - IgcDataChartAnnotationModule, - IgcDataChartCategoryTrendLineModule -); +} ``` - - - - - - - -**IgniteUI.Blazor.Controls** 名前空間を **_Imports.razor** ファイルに追加します。 - -```ts -import { IgxToolbarModule } from 'igniteui-angular-layouts'; -import { IgxDataChartToolbarModule, IgxDataChartCoreModule, IgxDataChartCategoryModule, IgxDataChartAnnotationModule, IgxDataChartInteractivityModule, IgxDataChartCategoryTrendLineModule } from 'igniteui-angular-charts'; - -@NgModule({ - imports: [ - // ... - IgxToolbarModule, - IgxDataChartToolbarModule, - IgxDataChartCoreModule, - IgxDataChartCategoryModule, - IgxDataChartAnnotationModule, - IgxDataChartInteractivityModule, - IgxDataChartCategoryTrendLineModule - // ... - ] -}) -export class AppModule {} -``` - - コンポーネントとその機能とともに を使用する場合、次のモジュールが必要です。 - -```ts -import { IgxToolbarModule } from 'igniteui-react-layouts'; -import { IgrDataChartToolbarModule, IgrDataChartCoreModule, IgrDataChartCategoryModule, IgrDataChartAnnotationModule, IgrDataChartInteractivityModule, IgrDataChartCategoryTrendLineModule } from 'igniteui-react-charts'; - -IgxToolbarModule.register(); -IgrDataChartToolbarModule.register(); -IgrDataChartCoreModule.register(); -IgrDataChartCategoryModule.register(); -IgrDataChartAnnotationModule.register(); -IgrDataChartInteractivityModule.register(); -IgrDataChartCategoryTrendLineModule.register(); -``` -スタイルを コンポーネントに適用するには、追加の CSS ファイルをリンクする必要もあります。以下は、**Blazor Web Assembly** プロジェクトの **wwwroot/index.html** ファイルまたは **Blazor Server** プロジェクトの **Pages/_Host.cshtml** ファイルに配置する必要があります。 -```ts -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcToolbarModule } from 'igniteui-webcomponents-layouts'; -import { IgcDataChartToolbarModule, IgcDataChartCoreModule, IgcDataChartCategoryModule, IgcDataChartAnnotationModule, IgcDataChartInteractivityModule, IgcDataChartCategoryTrendLineModule } from 'igniteui-webcomponents-charts'; - -ModuleManager.register( - IgcToolbarModule, - IgcToolActionLabelModule, - IgcDataChartToolbarModule, - IgcDataChartCategoryModule, - IgcDataChartCoreModule, - IgcDataChartInteractivityModule, - IgcDataChartAnnotationModule, - IgcDataChartCategoryTrendLineModule -); -``` - - - ## 使用方法 diff --git a/docs/xplat/src/content/jp/components/radial-gauge.mdx b/docs/xplat/src/content/jp/components/radial-gauge.mdx index 0c7569fab4..5346224435 100644 --- a/docs/xplat/src/content/jp/components/radial-gauge.mdx +++ b/docs/xplat/src/content/jp/components/radial-gauge.mdx @@ -66,60 +66,24 @@ Afterwards you may start implementing the control by adding the following namesp を作成するには、以下のモジュールが必要です。 - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbRadialGaugeModule)); -``` - - - - - -```ts -// app.module.ts -import { IgxRadialGaugeModule } from 'igniteui-angular-gauges'; - -@NgModule({ - imports: [ - // ... - IgxRadialGaugeModule - // ... +```json-snippet source="/gauges/radial-gauge/animation" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "RadialGauge", + "name": "gauge" + } + }, + "modules": [ + "gauges/RadialGaugeModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -// Module Manager for registering the modules of the chart -import { ModuleManager } from 'igniteui-webcomponents-core'; -// Radial Gauge Module -import { IgcRadialGaugeModule } from 'igniteui-webcomponents-gauges'; - -// register the modules -ModuleManager.register( - IgcRadialGaugeModule -); -``` - - - - - -```ts -import { IgrRadialGaugeModule } from 'igniteui-react-gauges'; - -IgrRadialGaugeModule.register(); +} ``` - - diff --git a/docs/xplat/src/content/jp/components/zoomslider-overview.mdx b/docs/xplat/src/content/jp/components/zoomslider-overview.mdx index ae1f45ff97..0a63ac1f6f 100644 --- a/docs/xplat/src/content/jp/components/zoomslider-overview.mdx +++ b/docs/xplat/src/content/jp/components/zoomslider-overview.mdx @@ -58,57 +58,24 @@ npm install --save {PackageCharts} を作成するには、以下のモジュールが必要です。 - - -```csharp -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbZoomSliderModule)); -``` - - - - - -```ts -import { IgxZoomSliderModule } from 'igniteui-angular-charts'; -import { IgxZoomSliderComponent } from 'igniteui-angular-charts'; - -@NgModule({ - imports: [ - // ... - IgxZoomSliderModule, - // ... +```json-snippet source="/charts/zoomslider/overview" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "ZoomSlider", + "name": "zoomSlider" + } + }, + "modules": [ + "charts/ZoomSliderModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" ] -}) -export class AppModule {} -``` - - - - - -```ts -import { IgrZoomSliderModule } from 'igniteui-react-charts'; -import { IgrZoomSlider } from 'igniteui-react-charts'; - -IgrDataChartInteractivityModule.register(); -``` - - - - - -```ts -import { IgcZoomSliderModule } from 'igniteui-webcomponents-charts'; -import { IgcZoomSliderComponent } from "igniteui-webcomponents-charts"; - -IgcZoomSliderModule.register(); +} ``` - - ## コード スニペット 以下のコードは、ZoomSlider を設定する方法を示します。 diff --git a/docs/xplat/src/content/jp/toc.json b/docs/xplat/src/content/jp/toc.json index d194fc1c76..84e9fc3587 100644 --- a/docs/xplat/src/content/jp/toc.json +++ b/docs/xplat/src/content/jp/toc.json @@ -3500,9 +3500,6 @@ ] }, { - "exclude": [ - "Blazor" - ], "name": "ズーム スライダー", "href": "zoomslider-overview.mdx" }, From 2596ef6b8af1dadc1d655aff8719858d7ff66956 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 06:50:22 -0400 Subject: [PATCH 054/155] Emit the shape styling utility, and scope the other resource listings The shape styling utility is a supporting item, so its resource topic emits it rather than carrying a copy: the listing on the supporting channel, its import on the imports channel. The other four resource topics cannot be emitted yet and the reason is the library: WorldLocations and WorldConnections live inside the WorldFlights data item, WorldUtils inside a handler item, and there is no way to ask an item for one of its classes. Splitting them into supporting items would fix it, except a data item's requires is not read, so WorldFlights would lose what its own samples need. What did get fixed there: all four published their TypeScript listing outside any platform block, so Blazor readers saw it alongside their own C# copy and the XAML platforms were shown a language they cannot use. Co-Authored-By: Claude Opus 5 --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 19 ++ .../en/components/geo-map-resources-esri.mdx | 4 + ...eo-map-resources-shape-styling-utility.mdx | 279 ++---------------- .../geo-map-resources-world-connections.mdx | 4 + .../geo-map-resources-world-locations.mdx | 4 + .../geo-map-resources-world-util.mdx | 4 + .../jp/components/geo-map-resources-esri.mdx | 4 + ...eo-map-resources-shape-styling-utility.mdx | 279 ++---------------- .../geo-map-resources-world-connections.mdx | 4 + .../geo-map-resources-world-locations.mdx | 4 + .../geo-map-resources-world-util.mdx | 4 + 11 files changed, 101 insertions(+), 508 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index b331548d9d..8ebe0bcba2 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1270,3 +1270,22 @@ On the multiple shapes topic, three fences and the headings above them were stil web platforms, left from when those handlers had no C# port. The port landed earlier today, so the fences admit Blazor while the wrappers still shut it out. Both are unwrapped, and Blazor now reads the Processing sections it was never shown. + +### The resource topics + +geo-map-resources-shape-styling-utility publishes the utility the shape styling topic uses, and that +utility is a supporting item now, so the topic emits it: `channel="supporting"` for the listing and +`handlersImports` for what it imports. Its Required Imports section loses the series type, which +belongs to the handler that calls the utility rather than to the utility itself; the shape styling +topic shows that one. + +The other four — world locations, world connections, world util and the Esri utility — cannot be +emitted yet, and the reason is the library rather than the topics. WorldLocations and WorldConnections +live inside the WorldFlights *data* item, WorldUtils inside a handler item, and there is no way to ask +for one class out of an item. Splitting them into supporting items would be the fix, but a data item's +"requires" is not read — only a handler's is — so WorldFlights would lose the classes its own samples +need. The Esri utility has no item at all. + +What was fixed on those four: each published its TypeScript listing in no platform block at all, so +Blazor readers saw it *and* their own C# copy, and the XAML platforms were shown a language they +cannot use. The listing is scoped to the web platforms now. diff --git a/docs/xplat/src/content/en/components/geo-map-resources-esri.mdx b/docs/xplat/src/content/en/components/geo-map-resources-esri.mdx index 397a0591a5..7b6704e484 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-esri.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-esri.mdx @@ -16,6 +16,8 @@ The resource topic provides implementation of an utility that helps with using < ## Code Snippet + + ```ts export class EsriUtility { @@ -83,6 +85,8 @@ export enum EsriStyle { } ``` + + ```csharp diff --git a/docs/xplat/src/content/en/components/geo-map-resources-shape-styling-utility.mdx b/docs/xplat/src/content/en/components/geo-map-resources-shape-styling-utility.mdx index 66b842e2ab..14e9ca10fb 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-shape-styling-utility.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-shape-styling-utility.mdx @@ -16,264 +16,35 @@ The resource topic provides implementation of an utility that helps with styling ## Required Imports - - -```ts -import { IgxGeographicShapeSeries } from 'igniteui-angular-maps'; -import { Style } from 'igniteui-angular-core'; -``` - - - - - -```ts -import { IgrGeographicShapeSeries } from 'igniteui-react-maps'; -import { Style } from 'igniteui-react-core'; -``` - - - - - -```ts -import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps'; -import { Style } from 'igniteui-webcomponents-core'; +```json-snippet source="/maps/geo-map/shape-styling" channel="handlersImports" exclude="Blazor,Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap" + } + }, + "onViewInit": [ + "ShapeStylingUtility" + ], + "$onViewInit": "+doc:handlersImports" +} ``` - - ## Utility Implementation -```ts -export abstract class ShapeStyling { - public defaultStroke = 'black'; - public defaultFill = 'gray'; - public defaultThickness = 0.5; - public defaultOpacity = 1.0; - public defaultStyle = new Style(); - - constructor() { - this.defaultStyle = new Style(); - this.defaultStyle.stroke = this.defaultStroke; - this.defaultStyle.fill = this.defaultFill; - this.defaultStyle.opacity = this.defaultOpacity; - this.defaultStyle.strokeThickness = this.defaultThickness; - } - - public abstract generate(record: any): Style; - - public getValue(itemMemberPath: string, item: any): any { - let itemValue = null; - - if (item.fieldValues !== undefined) { // .hasOwnProperty("fieldValues")) { - if (item.fieldsNames.indexOf(itemMemberPath) >= 0) { - itemValue = item.fieldValues[itemMemberPath]; - } else { - console.log('WARNING: ShapefileRecord does not have ' + itemMemberPath + ' in fieldValues property'); - } - } else if (item.hasOwnProperty(itemMemberPath)) { - itemValue = item[itemMemberPath]; - } else { - console.log('WARNING: Shape data item does not have ' + itemMemberPath + ' property'); - } - return itemValue; - } -} - -export class ShapeRandomStyling extends ShapeStyling { - - public shapeThickness = 0.5; - public shapeOpacity = 1.0; - public shapeStrokeColors = ['black']; - public shapeFillColors = ['red', 'orange', 'yellow']; - - public styleMappings = new Map(); - - public generate(record: any): Style { - const id = record.fieldValues.Name || this.getRandomValue(0, 1000); - - if (this.styleMappings.has(id)) { - return this.styleMappings.get(id); - } else { - const randStroke = this.getRandomItem(this.shapeStrokeColors); - const randFill = this.getRandomItem(this.shapeFillColors); - const shapeStyle = new Style(); - shapeStyle.stroke = this.shapeStrokeColors[randStroke]; - shapeStyle.fill = this.shapeFillColors[randFill]; - shapeStyle.opacity = this.shapeOpacity; - shapeStyle.strokeThickness = this.shapeThickness; - this.styleMappings.set(id, shapeStyle); - return shapeStyle; - } - } - - public getRandomValue(min: number, max: number): number { - return Math.round(min + (Math.random() * (max - min))); - } - public getRandomItem(array: any[]): any { - return this.getRandomValue(0, array.length - 1); - } -} - -export class ShapeRangeStyling extends ShapeStyling { - - public itemMemberPath = ''; - public ranges: ShapeRange[] = []; - - constructor() { - super(); - this.ranges.push({ minimum: 0, maximum: 50, fill: 'yellow'} ); - this.ranges.push({ minimum: 0, maximum: 100, fill: 'red'} ); - } - - public generate(record: any): Style { - let itemValue = this.getValue(this.itemMemberPath, record); - if (itemValue === null) { - return this.defaultStyle; - } - - for (const range of this.ranges) { - if (range.minimum <= itemValue && itemValue < range.maximum) { - const shapeStyle = new Style(); - shapeStyle.opacity = range.opacity || this.defaultOpacity; - shapeStyle.fill = range.fill || this.defaultFill; - shapeStyle.stroke = range.stroke || this.defaultStroke; - shapeStyle.strokeThickness = range.strokeThickness || this.defaultThickness; - return shapeStyle; - } - } - return this.defaultStyle; - } -} - -export class ShapeRange { - - public minimum: number; - public maximum: number; - - public opacity?: number; - public fill: string; - public stroke?: string; - public strokeThickness?: number; -} - -export class ShapeScaleStyling extends ShapeStyling { - - public shapeThickness = 0.5; - public shapeOpacity = 1.0; - public shapeStrokeColors = ['black']; - public shapeFillColors = ['red', 'orange', 'yellow']; - - public itemMemberPath = ''; - public itemMinimumValue = 0; - public itemMaximumValue = 1000; - - public isLogarithmic = true; - - public generate(record: any): Style { - - let itemValue = this.getValue(this.itemMemberPath, record); - if (itemValue === null) { - return this.defaultStyle; - } - - let fillColor = this.defaultFill; - let strokeColor = this.defaultStroke; - let scaleValue = this.getScaledValue(itemValue); - - if (!Number.isNaN(scaleValue)) { - let fillIndex = Math.round(scaleValue * (this.shapeFillColors.length - 1)); - let strokeIndex = Math.round(scaleValue * (this.shapeStrokeColors.length - 1)); - fillColor = this.shapeFillColors[fillIndex]; - strokeColor = this.shapeStrokeColors[strokeIndex]; - } - - const shapeStyle = new Style(); - shapeStyle.fill = fillColor; - shapeStyle.stroke = strokeColor; - shapeStyle.strokeThickness = this.shapeThickness; - shapeStyle.opacity = this.shapeOpacity; - return shapeStyle; - } - - public getScaledValue(value: number): number { - - if (!Number.isFinite(value) || Number.isNaN(value)) { return Number.NaN; } - - let min = !Number.isFinite(this.itemMinimumValue) || Number.isNaN(this.itemMinimumValue) ? 0 : this.itemMinimumValue; - let max = !Number.isFinite(this.itemMaximumValue) || Number.isNaN(this.itemMaximumValue) ? 1000 : this.itemMaximumValue; - - if (value < min || value > max) { return Number.NaN; } - - if (this.isLogarithmic) { - return this.getLogarithmicValue(min, max, value); - } else { - return this.getLinearValue(min, max, value); - } - } - - public getLogarithmicValue(min: number, max: number, value: number) { - if (!Number.isFinite(value)) { return Number.NaN; } - - let newMin = Math.log10(min); - let newMax = Math.log10(max); - let newVal = Math.log10(value); - - if (!Number.isFinite(newMin)) { newMin = 0.0; } - if (!Number.isFinite(newMax)) { newMax = 1000; } - - if (newVal < 0) { newVal = 0.0; } - - return this.getLinearValue(newMin, newMax, newVal); - } - - public getLinearValue(min: number, max: number, value: number) { - - if (!Number.isFinite(value)) { return Number.NaN; } - - // if the value is outside the range - if (value < min || value > max) { return Number.NaN; } - - let scaledValue = (value - min) / (max - min); - return scaledValue; - } -} - -export class ShapeComparisonStyling extends ShapeStyling { - - public itemMemberPath = ''; - public itemMappings: ShapeComparison[] = []; - - public generate(record: any): Style { - - let itemValue = this.getValue(this.itemMemberPath, record); - if (itemValue === null || itemValue === "") { - return this.defaultStyle; - } - - for (const mapping of this.itemMappings) { - if (mapping.itemValue === itemValue) { - const shapeStyle = new Style(); - shapeStyle.opacity = mapping.opacity || this.defaultOpacity; - shapeStyle.fill = mapping.fill || this.defaultFill; - shapeStyle.stroke = mapping.stroke || this.defaultStroke; - shapeStyle.strokeThickness = mapping.strokeThickness || this.defaultThickness; - return shapeStyle; - } - } - - return this.defaultStyle; - } -} - -export class ShapeComparison { - public itemValue: string; - - public opacity?: number; - public fill: string; - public stroke?: string; - public strokeThickness?: number; +```json-snippet id="shapeStylingUtility" source="/maps/geo-map/shape-styling" channel="supporting" exclude="Blazor,Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap" + } + }, + "onViewInit": [ + "ShapeStylingUtility" + ], + "$onViewInit": "+doc:supporting" } ``` diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx index 32e92347c0..6aca19439b 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx @@ -16,6 +16,8 @@ The resource topic provides implementation of data utility for generating locati ## Code Snippet + + ```ts import WorldLocations from "./WorldLocations"; import WorldUtils from "./WorldUtils" @@ -143,6 +145,8 @@ export default class WorldConnections { } ``` + + ```csharp diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx index 945b98e3e2..e9fabc1100 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx @@ -16,6 +16,8 @@ The resource topic provides implementation of data utility for generating geogra ## Code Snippet + + ```ts export default class WorldLocations { @@ -659,6 +661,8 @@ export default class WorldLocations { } ``` + + ```razor diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx index ac529b8106..585ec4d4ff 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx @@ -16,6 +16,8 @@ The resource topic provides implementation of utility that helps with generating ## Code Snippet + + ```ts export default class WorldUtils { @@ -197,6 +199,8 @@ export default class WorldUtils { } ``` + + ```razor diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-esri.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-esri.mdx index 4eeade40fe..e2a1deaf85 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-esri.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-esri.mdx @@ -18,6 +18,8 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## コード スニペット + + ```ts export class EsriUtility { @@ -85,6 +87,8 @@ export enum EsriStyle { } ``` + + ```csharp diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-shape-styling-utility.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-shape-styling-utility.mdx index 7b336b6d48..4a9bf41f5f 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-shape-styling-utility.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-shape-styling-utility.mdx @@ -18,264 +18,35 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## 必要なインポート - - -```ts -import { IgxGeographicShapeSeries } from 'igniteui-angular-maps'; -import { Style } from 'igniteui-angular-core'; -``` - - - - - -```ts -import { IgrGeographicShapeSeries } from 'igniteui-react-maps'; -import { Style } from 'igniteui-react-core'; -``` - - - - - -```ts -import { IgcGeographicShapeSeriesComponent } from 'igniteui-webcomponents-maps'; -import { Style } from 'igniteui-webcomponents-core'; +```json-snippet source="/maps/geo-map/shape-styling" channel="handlersImports" exclude="Blazor,Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap" + } + }, + "onViewInit": [ + "ShapeStylingUtility" + ], + "$onViewInit": "+doc:handlersImports" +} ``` - - ## ユーティリティ実装 -```ts -export abstract class ShapeStyling { - public defaultStroke = 'black'; - public defaultFill = 'gray'; - public defaultThickness = 0.5; - public defaultOpacity = 1.0; - public defaultStyle = new Style(); - - constructor() { - this.defaultStyle = new Style(); - this.defaultStyle.stroke = this.defaultStroke; - this.defaultStyle.fill = this.defaultFill; - this.defaultStyle.opacity = this.defaultOpacity; - this.defaultStyle.strokeThickness = this.defaultThickness; - } - - public abstract generate(record: any): Style; - - public getValue(itemMemberPath: string, item: any): any { - let itemValue = null; - - if (item.fieldValues !== undefined) { // .hasOwnProperty("fieldValues")) { - if (item.fieldsNames.indexOf(itemMemberPath) >= 0) { - itemValue = item.fieldValues[itemMemberPath]; - } else { - console.log('WARNING: ShapefileRecord does not have ' + itemMemberPath + ' in fieldValues property'); - } - } else if (item.hasOwnProperty(itemMemberPath)) { - itemValue = item[itemMemberPath]; - } else { - console.log('WARNING: Shape data item does not have ' + itemMemberPath + ' property'); - } - return itemValue; - } -} - -export class ShapeRandomStyling extends ShapeStyling { - - public shapeThickness = 0.5; - public shapeOpacity = 1.0; - public shapeStrokeColors = ['black']; - public shapeFillColors = ['red', 'orange', 'yellow']; - - public styleMappings = new Map(); - - public generate(record: any): Style { - const id = record.fieldValues.Name || this.getRandomValue(0, 1000); - - if (this.styleMappings.has(id)) { - return this.styleMappings.get(id); - } else { - const randStroke = this.getRandomItem(this.shapeStrokeColors); - const randFill = this.getRandomItem(this.shapeFillColors); - const shapeStyle = new Style(); - shapeStyle.stroke = this.shapeStrokeColors[randStroke]; - shapeStyle.fill = this.shapeFillColors[randFill]; - shapeStyle.opacity = this.shapeOpacity; - shapeStyle.strokeThickness = this.shapeThickness; - this.styleMappings.set(id, shapeStyle); - return shapeStyle; - } - } - - public getRandomValue(min: number, max: number): number { - return Math.round(min + (Math.random() * (max - min))); - } - public getRandomItem(array: any[]): any { - return this.getRandomValue(0, array.length - 1); - } -} - -export class ShapeRangeStyling extends ShapeStyling { - - public itemMemberPath = ''; - public ranges: ShapeRange[] = []; - - constructor() { - super(); - this.ranges.push({ minimum: 0, maximum: 50, fill: 'yellow'} ); - this.ranges.push({ minimum: 0, maximum: 100, fill: 'red'} ); - } - - public generate(record: any): Style { - let itemValue = this.getValue(this.itemMemberPath, record); - if (itemValue === null) { - return this.defaultStyle; - } - - for (const range of this.ranges) { - if (range.minimum <= itemValue && itemValue < range.maximum) { - const shapeStyle = new Style(); - shapeStyle.opacity = range.opacity || this.defaultOpacity; - shapeStyle.fill = range.fill || this.defaultFill; - shapeStyle.stroke = range.stroke || this.defaultStroke; - shapeStyle.strokeThickness = range.strokeThickness || this.defaultThickness; - return shapeStyle; - } - } - return this.defaultStyle; - } -} - -export class ShapeRange { - - public minimum: number; - public maximum: number; - - public opacity?: number; - public fill: string; - public stroke?: string; - public strokeThickness?: number; -} - -export class ShapeScaleStyling extends ShapeStyling { - - public shapeThickness = 0.5; - public shapeOpacity = 1.0; - public shapeStrokeColors = ['black']; - public shapeFillColors = ['red', 'orange', 'yellow']; - - public itemMemberPath = ''; - public itemMinimumValue = 0; - public itemMaximumValue = 1000; - - public isLogarithmic = true; - - public generate(record: any): Style { - - let itemValue = this.getValue(this.itemMemberPath, record); - if (itemValue === null) { - return this.defaultStyle; - } - - let fillColor = this.defaultFill; - let strokeColor = this.defaultStroke; - let scaleValue = this.getScaledValue(itemValue); - - if (!Number.isNaN(scaleValue)) { - let fillIndex = Math.round(scaleValue * (this.shapeFillColors.length - 1)); - let strokeIndex = Math.round(scaleValue * (this.shapeStrokeColors.length - 1)); - fillColor = this.shapeFillColors[fillIndex]; - strokeColor = this.shapeStrokeColors[strokeIndex]; - } - - const shapeStyle = new Style(); - shapeStyle.fill = fillColor; - shapeStyle.stroke = strokeColor; - shapeStyle.strokeThickness = this.shapeThickness; - shapeStyle.opacity = this.shapeOpacity; - return shapeStyle; - } - - public getScaledValue(value: number): number { - - if (!Number.isFinite(value) || Number.isNaN(value)) { return Number.NaN; } - - let min = !Number.isFinite(this.itemMinimumValue) || Number.isNaN(this.itemMinimumValue) ? 0 : this.itemMinimumValue; - let max = !Number.isFinite(this.itemMaximumValue) || Number.isNaN(this.itemMaximumValue) ? 1000 : this.itemMaximumValue; - - if (value < min || value > max) { return Number.NaN; } - - if (this.isLogarithmic) { - return this.getLogarithmicValue(min, max, value); - } else { - return this.getLinearValue(min, max, value); - } - } - - public getLogarithmicValue(min: number, max: number, value: number) { - if (!Number.isFinite(value)) { return Number.NaN; } - - let newMin = Math.log10(min); - let newMax = Math.log10(max); - let newVal = Math.log10(value); - - if (!Number.isFinite(newMin)) { newMin = 0.0; } - if (!Number.isFinite(newMax)) { newMax = 1000; } - - if (newVal < 0) { newVal = 0.0; } - - return this.getLinearValue(newMin, newMax, newVal); - } - - public getLinearValue(min: number, max: number, value: number) { - - if (!Number.isFinite(value)) { return Number.NaN; } - - // if the value is outside the range - if (value < min || value > max) { return Number.NaN; } - - let scaledValue = (value - min) / (max - min); - return scaledValue; - } -} - -export class ShapeComparisonStyling extends ShapeStyling { - - public itemMemberPath = ''; - public itemMappings: ShapeComparison[] = []; - - public generate(record: any): Style { - - let itemValue = this.getValue(this.itemMemberPath, record); - if (itemValue === null || itemValue === "") { - return this.defaultStyle; - } - - for (const mapping of this.itemMappings) { - if (mapping.itemValue === itemValue) { - const shapeStyle = new Style(); - shapeStyle.opacity = mapping.opacity || this.defaultOpacity; - shapeStyle.fill = mapping.fill || this.defaultFill; - shapeStyle.stroke = mapping.stroke || this.defaultStroke; - shapeStyle.strokeThickness = mapping.strokeThickness || this.defaultThickness; - return shapeStyle; - } - } - - return this.defaultStyle; - } -} - -export class ShapeComparison { - public itemValue: string; - - public opacity?: number; - public fill: string; - public stroke?: string; - public strokeThickness?: number; +```json-snippet id="shapeStylingUtility" source="/maps/geo-map/shape-styling" channel="supporting" exclude="Blazor,Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap" + } + }, + "onViewInit": [ + "ShapeStylingUtility" + ], + "$onViewInit": "+doc:supporting" } ``` diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx index 9b7f7dec45..d25b66830c 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx @@ -18,6 +18,8 @@ import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBloc ## コード スニペット + + ```ts import WorldLocations from "./WorldLocations"; import WorldUtils from "./WorldUtils" @@ -145,6 +147,8 @@ export default class WorldConnections { } ``` + + ```csharp diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx index a84479da08..3892d97985 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx @@ -18,6 +18,8 @@ import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBloc ## コード スニペット + + ```ts export default class WorldLocations { @@ -661,6 +663,8 @@ export default class WorldLocations { } ``` + + ```razor diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx index 2f28979c5e..667e76f4ff 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx @@ -18,6 +18,8 @@ import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBloc ## コード スニペット + + ```ts export default class WorldUtils { @@ -199,6 +201,8 @@ export default class WorldUtils { } ``` + + ```razor From dd81dba0d0a8408bee9a600c478e9d13e505f15c Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 08:35:59 -0400 Subject: [PATCH 055/155] Emit the three world resource listings from the library MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Each page was a class listing kept by hand beside the copy in the library that the samples compile, and the two had drifted: the TypeScript had renamed members and lost methods, the C# had a different shape for WorldConnections and some leftover console writes. One fence per page emits the class the library holds, for the four web platforms the pages are gated to, so the listing is the code that runs. The platform blocks go with them — a fence emits each platform's own language already — and the util page's C# gains the methods its TypeScript had all along. --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 50 + .../geo-map-resources-world-connections.mdx | 309 +--- .../geo-map-resources-world-locations.mdx | 1301 +---------------- .../geo-map-resources-world-util.mdx | 417 +----- .../geo-map-resources-world-connections.mdx | 309 +--- .../geo-map-resources-world-locations.mdx | 1301 +---------------- .../geo-map-resources-world-util.mdx | 417 +----- 7 files changed, 136 insertions(+), 3968 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index 8ebe0bcba2..fd0fc7e7e9 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1289,3 +1289,53 @@ need. The Esri utility has no item at all. What was fixed on those four: each published its TypeScript listing in no platform block at all, so Blazor readers saw it *and* their own C# copy, and the XAML platforms were shown a language they cannot use. The listing is scoped to the web platforms now. + +### Asking for one declaration out of an item + +The three world topics did become emittable, and not the way the paragraph above expected. Two routes +were open, and the choice matters beyond these pages. + +Splitting the classes into supporting items was tried first. A data item's `requires` is read now, so +it would have worked — but a supporting item is written where the component is, and WorldLocations is +a thousand lines of city data. Every sample binding WorldFlights would have carried that inside its +own component file rather than beside it, which is worse than what it replaced. + +So an item can mark regions inside itself instead, and a snippet can ask for one by name: + +``` +"dataSourceRef": "WorldFlights", +"$dataSourceRef": "+doc:WorldLocations" +``` + +The item is one file, compiled whole into every sample that uses any of it, and nothing about the +generated sample changes — the file still holds all of it, in the order it was authored. Only the +snippet is narrower. The markers are the same ones the library already reads to find an item's +content, and the region names are the item's own, so a token is asked of the item rather than assumed: +a name it does not declare still means an emitter output region, which is how `content` and +`supportingMethods` keep meaning what they meant. + +Three things had to change for it to hold: + +- A **region writer answers only to its region**, never to its channel. The region content is written + a second time, to a writer of its own, and the channel-matching rule would otherwise have matched + both writers and put that region into the whole-item snippet twice. +- **`requires` is read on data items**, which is what makes a shared class expressible either way. +- **The regions the library treats as structure** are now the emitter's output region names as well as + the library's own markers. Otherwise a marked property referencing a template item with a `content` + region would have been diverted away from the markup writer it meant. + +The C# region for WorldConnections runs to the end of CoordinateLine, because that is what its methods +return and what the published page showed. Emitting it turned up a stray `;` after the opening brace +of `GetFlights` in all three C# copies, left from converting it to a static constructor. + +The Esri utility is still not emittable, and for a different reason: it has no library item, and the +section teaches a *call* — `EsriUtility.getUri(EsriStyle.WorldOceansMap)` — which a description cannot +express. + +### The portable builds + +`JsonSchemaEmitter`'s reflection constructor built its own `ComponentRenderer`, which only exists +where a renderer constructs itself. On the portable platforms a renderer is built from a platform and +an adapter, and the adapter is declared by the assembly hosting the controls — so there the caller +passes the renderer in. The assembly filter is per build for the same reason: the data visualization +assembly is not called the same thing on every platform. diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx index 6aca19439b..dfe72f55ca 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx @@ -8,7 +8,6 @@ llms: description: "The resource topic provides implementation of data utility for generating locations of airports, flight paths, and geographic gridlines." --- import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; # {Platform} World Connections @@ -16,308 +15,26 @@ The resource topic provides implementation of data utility for generating locati ## Code Snippet - - -```ts -import WorldLocations from "./WorldLocations"; -import WorldUtils from "./WorldUtils" - -export default class WorldConnections { - - private static airports: any[] = []; - private static airportsLookup = new Map(); - - private static flights: any[] = []; - private static flightsLookup: string[] = []; - - public static getFlights(): any[] { - if (this.flights.length == 0) this.init(); - return this.flights; - } - - public static getAirports(): any[] { - if (this.airports.length == 0) this.init(); - return this.airports; - } - - public static comparePopulation(a: any, b: any): number { - if (a.pop < b.pop) { - return 1; - } - if (a.pop > b.pop) { - return -1; - } - return 0; - } - - public static init() { - - const cities: any[] = WorldLocations.getAll(); - cities.sort(this.comparePopulation); - let count = cities.length; - let minDistance = 200; - let maxDistance = 9000; - let flightsLimit = 1500; - let flightsCount = 0; - - for (let i = 0; i < count; i++) { - let origin = cities[i]; - let connectionsCount = 0; - let connectionsMax = Math.min(20, Math.round(origin.pop * 4)); - - for (let ii = 0; ii < count; ii++) - { - let dest = cities[ii]; - if (origin.name != dest.name) +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="WorldConnections" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "series": [ { - let route = [origin.name, dest.name].sort().join('-'); - let routeIsValid = this.flightsLookup.indexOf(route) == -1; - let distance = Math.round(WorldUtils.calcDistance(origin, dest)); - let distanceIsValid = distance > minDistance && distance < maxDistance; - let pass = Math.round((Math.random() * 200)) + 150; - let time = distance / 800; - let trafficIsValid = origin.pop > 3 && dest.pop > 1.0; - - if (routeIsValid && distanceIsValid && trafficIsValid) { - this.flightsLookup.push(route); - - let paths = WorldUtils.calcPaths(origin, dest); - flightsCount++; - connectionsCount++; - let id = origin.name.substring(0,3).toUpperCase() + "-" + flightsCount; - let flight = { id: id, origin: origin, dest: dest, time: time, passengers: pass, distance: distance, points: paths }; - this.flights.push(flight); - } - if (connectionsCount > connectionsMax) { - break; - } + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "$dataSourceRef": "+doc:WorldConnections", + "shapeMemberPath": "Points" } - } - if (flightsCount > flightsLimit) { - break; - } - } - - for (const flight of this.flights) { - this.addAirport(flight.origin); - this.addAirport(flight.dest); - } - - this.airports = Array.from(this.airportsLookup.values()); - } - - private static addAirport(city: any) { - if (this.airportsLookup.has(city.name)) { - this.airportsLookup.get(city.name).flights += 1; - } else { - let airport = Object.assign({flights: 1}, city ); - this.airportsLookup.set(city.name, airport); + ] } } - - public static getGridlines(): any[] { - let gridlines = []; - // longitude lines - for (let lon = -180; lon <= 180; lon += 30) { - - let line: any[] = [{x: lon, y: -90}, {x: lon, y: 90}]; - let points: any[] = [line]; - - let coordinateLine = {points: points, - degree: lon, - direction: lon > 0 ? "E" : "W" - }; - gridlines.push(coordinateLine); - } - // latitude lines - for (let lat = -90; lat <= 90; lat += 30) { - - let line: any[] = [{x: -180, y: lat}, {x: 180, y: lat}]; - let points: any[] = [line]; - let coordinateLine = {points: points, - degree: lat, - direction: lat > 0 ? "N" : "S" - }; - gridlines.push(coordinateLine); - } - return gridlines; - } } ``` - - - - -```csharp - public class WorldConnections - { - - public static List Flights { get; set; } - public static List Airports { get; set; } - - public static Dictionary FlightsLookup = new Dictionary(); - public static Dictionary AirportsLookup = new Dictionary(); - - public static List GetFlights() - { - Init(); - return Flights; - } - - public static List GetAirports() - { - Init(); - return Airports; - } - - public static int ComparePopulation(WorldCity a, WorldCity b) - { - if (a.Pop < b.Pop) - { - return 1; - } - if (a.Pop > b.Pop) - { - return -1; - } - - return 0; - } - - static Random r = new Random(); - public static void Init() - { - Flights = new List(); - Airports = new List(); - - List cities = WorldLocations.GetAll(); - cities.Sort(new Comparison(ComparePopulation)); - - int count = cities.Count; - int flightsCount = 0; - int connectionsCount = 0; - - double minDistance = 200; - double maxDistance = 9000; - double flightsLimit = 1500; - - for (int i=0; i minDistance && distance < maxDistance; - - double pass = Math.Round(r.NextDouble() * 200) + 150; - double time = distance / 800; - bool trafficIsValid = origin.Pop > 3 && dest.Pop > 1.0; - - if (routeIsValid && distanceIsValid && trafficIsValid) - { - FlightsLookup.Add(route, route); - - List> paths = WorldUtils.CalcPaths(originGeo, destGeo); - flightsCount++; - connectionsCount++; - - string id = origin.Name.Substring(0, 3).ToUpper() + "-" + flightsCount; - FlightInfo flight = new FlightInfo() { ID = id, Origin = origin, Dest = dest, Time = time, Passengers = pass, Distance = distance, Points = paths }; - Flights.Add(flight); - } - } - } - - if (flightsCount > flightsLimit) - { - break; - } - } - - foreach (FlightInfo flight in Flights) - { - AddAirport(flight.Origin); - AddAirport(flight.Dest); - } - - Airports = AirportsLookup.Values.ToList(); - } - - public static void AddAirport(WorldCity city) - { - if (!AirportsLookup.ContainsKey(city.Name)) - { - AirportsLookup.Add(city.Name, city); - } - } - - public static List GetGridlines() - { - List gridlines = new List(); - - List> latLines = new List>(); - List> lonLines = new List>(); - - for (int lon = -180; lon <= 180; lon += 30) - { - List points = new List(); - points.Add(new Point(lon, -90)); - points.Add(new Point(lon, 90)); - - lonLines.Add(points); - } - - for (int lat= -90; lat<= 90; lat += 30) - { - List points = new List(); - points.Add(new Point(-180, lat)); - points.Add(new Point(180, lat)); - - latLines.Add(points); - } - - CoordinateLine lines1 = new CoordinateLine() { Points = lonLines }; - CoordinateLine lines2 = new CoordinateLine() { Points = latLines }; - - gridlines.Add(lines1); - gridlines.Add(lines2); - - return gridlines; - } - } - - public class FlightInfo - { - public string ID { get; set; } - public WorldCity Origin { get; set; } - public WorldCity Dest { get; set; } - public double Time { get; set; } - public double Passengers { get; set; } - public double Distance { get; set; } - public List> Points { get; set; } - public string Color { get; set; } - } - - public class CoordinateLine - { - public List> Points { get; set; } - } -``` - - - ## API References diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx index e9fabc1100..bc55ff365f 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx @@ -8,7 +8,6 @@ llms: description: "The resource topic provides implementation of data utility for generating geographic locations of cities and capitals of countries." --- import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; # {Platform} World Locations @@ -16,1294 +15,26 @@ The resource topic provides implementation of data utility for generating geogra ## Code Snippet - - -```ts -export default class WorldLocations { - - private static locations: any[] = []; - private static capitals: any[] = []; - private static cities: any[] = []; - - // get location of cities and capitals - public static getAll(): any[] { - if (this.locations.length == 0) this.init(); - return this.locations; - } - - // get location of cities - public static getCities(): any[] { - if (this.cities.length == 0) this.init(); - return this.cities; - } - - // get location of capitals - public static getCapitals(): any[] { - if (this.capitals.length == 0) this.init(); - return this.capitals; - } - - public static init() { - // console.log("WorldLocations init"); - this.locations = [ - { cap: false, pop: 0.468, lat: 68.9635467529297, lon: 33.0860404968262, country: "Russia", name: "Murmansk" }, - { cap: false, pop: 0.416, lat: 64.5206680297852, lon: 40.6461601257324, country: "Russia", name: "Arkhangelsk" }, - { cap: false, pop: 5.825, lat: 59.9518890380859, lon: 30.4533271789551, country: "Russia", name: "Saint Petersburg" }, - { cap: false, pop: 0.152, lat: 59.5709991455078, lon: 150.780014038086, country: "Russia", name: "Magadan" }, - { cap: false, pop: 1.160, lat: 58.0002365112305, lon: 56.2324638366699, country: "Russia", name: "Perm'" }, - { cap: false, pop: 1.620, lat: 56.8465423583984, lon: 60.6101303100586, country: "Russia", name: "Yekaterinburg" }, - { cap: false, pop: 2.025, lat: 56.2896766662598, lon: 43.9406700134277, country: "Russia", name: "Nizhniy Novgorod" }, - { cap: false, pop: 1.800, lat: 55.8628082275391, lon: -4.26994752883911, country: "UK", name: "Glasgow" }, - { cap: false, pop: 1.140, lat: 55.7330055236816, lon: 49.1454658508301, country: "Russia", name: "Kazan'" }, - { cap: false, pop: 1.325, lat: 55.1450004577637, lon: 61.3926124572754, country: "Russia", name: "Chelyabinsk" }, - { cap: false, pop: 1.175, lat: 55.063304901123, lon: 73.2502899169922, country: "Russia", name: "Omsk" }, - { cap: false, pop: 1.600, lat: 55.0321006774902, lon: 82.9428482055664, country: "Russia", name: "Novosibirsk" }, - { cap: false, pop: 1.100, lat: 54.8217353820801, lon: 56.0961265563965, country: "Russia", name: "Ufa" }, - { cap: true, pop: 0.582, lat: 54.6885681152344, lon: 25.2759666442871, country: "Lithuania", name: "Vilnius" }, - { cap: false, pop: 0.685, lat: 54.5869255065918, lon: -5.90966033935547, country: "UK", name: "Belfast" }, - { cap: false, pop: 0.909, lat: 54.3662033081055, lon: 18.624942779541, country: "Poland", name: "Gdansk" }, - { cap: true, pop: 1.650, lat: 53.8999366760254, lon: 27.5755672454834, country: "Byelarus", name: "Minsk" }, - { cap: false, pop: 1.540, lat: 53.8087120056152, lon: -1.49752748012543, country: "UK", name: "Leeds" }, - { cap: false, pop: 2.225, lat: 53.5711212158203, lon: 10.027606010437, country: "Germany", name: "Hamburg" }, - { cap: false, pop: 2.775, lat: 53.479663848877, lon: -2.26177859306335, country: "UK", name: "Manchester" }, - { cap: false, pop: 0.710, lat: 53.3740425109863, lon: -1.46298921108246, country: "UK", name: "Sheffield" }, - { cap: true, pop: 1.140, lat: 53.3415603637695, lon: -6.25734663009644, country: "Ireland", name: "Dublin" }, - { cap: false, pop: 1.505, lat: 53.1385955810547, lon: 50.0961799621582, country: "Russia", name: "Samara" }, - { cap: false, pop: 0.800, lat: 53.0801048278809, lon: 8.85762596130371, country: "Germany", name: "Bremen" }, - { cap: true, pop: 5.061, lat: 52.5162734985352, lon: 13.3275728225708, country: "Germany", name: "Berlin" }, - { cap: false, pop: 2.675, lat: 52.4927520751953, lon: -1.86334776878357, country: "UK", name: "Birmingham" }, - { cap: true, pop: 1.860, lat: 52.3730430603027, lon: 4.89483308792114, country: "Netherlands", name: "Amsterdam" }, - { cap: false, pop: 0.626, lat: 52.3174324035645, lon: 104.247833251953, country: "Russia", name: "Irkutsk" }, - { cap: true, pop: 2.323, lat: 52.244945526123, lon: 21.0118789672852, country: "Poland", name: "Warsaw" }, - { cap: false, pop: 1.110, lat: 51.925594329834, lon: 4.48515224456787, country: "Netherlands", name: "Rotterdam" }, - { cap: false, pop: 1.061, lat: 51.7779083251953, lon: 19.4764404296875, country: "Poland", name: "Lodz" }, - { cap: false, pop: 0.568, lat: 51.5138130187988, lon: 7.46641826629639, country: "Germany", name: "Dortmund" }, - { cap: false, pop: 0.515, lat: 51.4893379211426, lon: 6.77530431747437, country: "Germany", name: "Duisburg" }, - { cap: true, pop: 11.100, lat: 51.4879112243652, lon: -0.177998125553131, country: "UK", name: "london" }, - { cap: false, pop: 3.867, lat: 51.3540420532227, lon: 7.12243509292603, country: "Germany", name: "Essen" }, - { cap: false, pop: 0.700, lat: 51.3493309020996, lon: 12.3980741500854, country: "Germany", name: "Leipzig" }, - { cap: false, pop: 1.100, lat: 51.207347869873, lon: 4.42605447769165, country: "Belgium", name: "Antwerpen" }, - { cap: false, pop: 0.640, lat: 51.1218185424805, lon: 17.0381278991699, country: "Poland", name: "Wroclaw" }, - { cap: false, pop: 0.465, lat: 51.0475540161133, lon: 3.73629117012024, country: "Belgium", name: "Gent" }, - { cap: false, pop: 0.670, lat: 51.0456809997559, lon: 13.7053575515747, country: "Germany", name: "Dresden" }, - { cap: false, pop: 0.671, lat: 51.0299987792969, lon: -114.050003051758, country: "Canada", name: "Calgary" }, - { cap: false, pop: 1.760, lat: 50.9423446655273, lon: 6.93487167358398, country: "Germany", name: "Koln" }, - { cap: true, pop: 2.385, lat: 50.8370475769043, lon: 4.36761236190796, country: "Belgium", name: "Bruxelles" }, - { cap: false, pop: 0.570, lat: 50.7345581054688, lon: 7.09981870651245, country: "Germany", name: "Bonn" }, - { cap: false, pop: 1.020, lat: 50.6320838928223, lon: 3.06290125846863, country: "France", name: "Lille" }, - { cap: false, pop: 0.750, lat: 50.6225280761719, lon: 5.56943559646606, country: "Belgium", name: "Liege" }, - { cap: true, pop: 2.900, lat: 50.4481582641602, lon: 30.5021114349365, country: "Ukraine", name: "Kiev" }, - { cap: false, pop: 1.855, lat: 50.129997253418, lon: 8.66816711425781, country: "Germany", name: "Frankfurt am Main" }, - { cap: true, pop: 1.325, lat: 50.1058959960938, lon: 14.4565200805664, country: "Czech Repub", name: "Prague" }, - { cap: false, pop: 0.828, lat: 50.0622406005859, lon: 19.9450569152832, country: "Poland", name: "Krakow" }, - { cap: false, pop: 0.625, lat: 49.9211692810059, lon: -97.1244430541992, country: "Canada", name: "Winnipeg" }, - { cap: false, pop: 0.614, lat: 49.879207611084, lon: 73.20263671875, country: "Kazakhstan", name: "Karaganda" }, - { cap: false, pop: 0.790, lat: 49.8373107910156, lon: 24.0345211029053, country: "Ukraine", name: "Lvov" }, - { cap: false, pop: 0.450, lat: 49.2029800415039, lon: 16.6162452697754, country: "Czech Repub", name: "Brno" }, - { cap: true, pop: 9.775, lat: 48.8815536499023, lon: 2.43283271789551, country: "France", name: "Paris" }, - { cap: false, pop: 1.360, lat: 48.7102470397949, lon: 44.4836311340332, country: "Russia", name: "Volgograd" }, - { cap: false, pop: 0.400, lat: 48.5834350585938, lon: 7.76799440383911, country: "France", name: "Strasbourg" }, - { cap: false, pop: 0.335, lat: 48.2975959777832, lon: 14.2939014434814, country: "Austria", name: "Linz" }, - { cap: true, pop: 1.875, lat: 48.2021179199219, lon: 16.3209857940674, country: "Austria", name: "Vienna" }, - { cap: false, pop: 1.955, lat: 48.1409759521484, lon: 11.5429534912109, country: "Germany", name: "Munchen" }, - { cap: false, pop: 2.200, lat: 48.0401458740234, lon: 37.7370529174805, country: "Ukraine", name: "Donets'k" }, - { cap: true, pop: 0.548, lat: 47.928596496582, lon: 106.912353515625, country: "Mongolia", name: "Ulaanbaatar" }, - { cap: true, pop: 2.565, lat: 47.5146255493164, lon: 19.0942497253418, country: "Hungary", name: "Budapest" }, - { cap: false, pop: 1.150, lat: 47.3440055847168, lon: 123.964965820313, country: "China", name: "Qiqihar" }, - { cap: false, pop: 0.185, lat: 47.2654609680176, lon: 11.3499822616577, country: "Austria", name: "Innsbruck" }, - { cap: false, pop: 1.165, lat: 47.2320976257324, lon: 39.6880378723145, country: "Russia", name: "Rostov-na-Donu" }, - { cap: false, pop: 0.465, lat: 47.2194328308105, lon: -1.56156122684479, country: "France", name: "Nantes" }, - { cap: false, pop: 0.325, lat: 47.0649223327637, lon: 15.4311008453369, country: "Austria", name: "Graz" }, - { cap: true, pop: 0.299, lat: 46.9482078552246, lon: 7.44573640823364, country: "Switzerland", name: "Bern" }, - { cap: false, pop: 0.603, lat: 46.802074432373, lon: -71.2449340820313, country: "Canada", name: "Quebec" }, - { cap: false, pop: 1.185, lat: 46.5722007751465, lon: 30.6839370727539, country: "Ukraine", name: "Odessa" }, - { cap: false, pop: 2.670, lat: 45.7552185058594, lon: 126.622634887695, country: "China", name: "Harbin" }, - { cap: false, pop: 1.275, lat: 45.7470817565918, lon: 4.85540056228638, country: "France", name: "Lyon" }, - { cap: false, pop: 2.921, lat: 45.541015625, lon: -73.6535339355469, country: "Canada", name: "Montreal" }, - { cap: false, pop: 3.750, lat: 45.4733810424805, lon: 9.19046401977539, country: "Italy", name: "Milano" }, - { cap: false, pop: 0.420, lat: 45.4247741699219, lon: 12.370719909668, country: "Italy", name: "Venezia" }, - { cap: true, pop: 0.819, lat: 45.3742179870605, lon: -75.650749206543, country: "Canada", name: "Ottawa" }, - { cap: false, pop: 1.550, lat: 45.0748748779297, lon: 7.66642618179321, country: "Italy", name: "Torino" }, - { cap: false, pop: 2.012, lat: 44.924186706543, lon: -93.3077926635742, country: "US", name: "Minneapolis" }, - { cap: false, pop: 0.640, lat: 44.8414726257324, lon: -0.599498748779297, country: "France", name: "Bordeaux" }, - { cap: true, pop: 1.400, lat: 44.7996826171875, lon: 20.4125556945801, country: "Serbia", name: "Beograd" }, - { cap: true, pop: 2.250, lat: 44.4304847717285, lon: 26.1229763031006, country: "Romania", name: "Bucuresti" }, - { cap: false, pop: 1.740, lat: 43.8813171386719, lon: 125.312652587891, country: "China", name: "Changchung" }, - { cap: false, pop: 1.170, lat: 43.8502159118652, lon: 126.56706237793, country: "China", name: "Jilin" }, - { cap: false, pop: 1.040, lat: 43.7826652526855, lon: 87.5865173339844, country: "China", name: "Urumqi" }, - { cap: false, pop: 0.640, lat: 43.7815742492676, lon: 11.207745552063, country: "Italy", name: "Firenze" }, - { cap: false, pop: 3.427, lat: 43.7207679748535, lon: -79.4126358032227, country: "Canada", name: "Toronto" }, - { cap: false, pop: 0.541, lat: 43.5999603271484, lon: 1.43798303604126, country: "France", name: "Toulouse" }, - { cap: false, pop: 0.985, lat: 43.2821578979492, lon: -2.97378325462341, country: "Spain", name: "Bilbao" }, - { cap: true, pop: 1.190, lat: 43.2550621032715, lon: 76.9126281738281, country: "Kazakhstan", name: "Almaty" }, - { cap: false, pop: 0.816, lat: 43.2104644775391, lon: -77.635612487793, country: "US", name: "Rochester" }, - { cap: false, pop: 1.375, lat: 43.0679473876953, lon: -87.9907379150391, country: "US", name: "Milwaukee" }, - { cap: false, pop: 1.900, lat: 43.0552520751953, lon: 141.345474243164, country: "Japan", name: "Sapporo" }, - { cap: false, pop: 1.483, lat: 42.8986625671387, lon: -78.8484344482422, country: "US", name: "Buffalo" }, - { cap: true, pop: 1.205, lat: 42.7072639465332, lon: 23.3318710327148, country: "Bulgaria", name: "Sofia" }, - { cap: false, pop: 4.692, lat: 42.3943138122559, lon: -83.0789260864258, country: "US", name: "Detroit" }, - { cap: false, pop: 3.972, lat: 42.3752975463867, lon: -71.1025848388672, country: "US", name: "Boston" }, - { cap: false, pop: 1.270, lat: 41.8591575622559, lon: 123.905570983887, country: "China", name: "Fushun" }, - { cap: false, pop: 7.717, lat: 41.826545715332, lon: -87.6413040161133, country: "US", name: "Chicago" }, - { cap: false, pop: 3.840, lat: 41.8021621704102, lon: 123.383056640625, country: "China", name: "Shenyang" }, - { cap: true, pop: 1.460, lat: 41.721809387207, lon: 44.7831268310547, country: "Georgia", name: "Tbilisi" }, - { cap: false, pop: 0.575, lat: 41.6512641906738, lon: -0.878205060958862, country: "Spain", name: "Zaragoza" }, - { cap: false, pop: 2.218, lat: 41.3907165527344, lon: -81.7275085449219, country: "US", name: "Cleveland" }, - { cap: true, pop: 0.211, lat: 41.3316535949707, lon: 19.8318042755127, country: "Albania", name: "Tirane" }, - { cap: false, pop: 1.300, lat: 41.1152458190918, lon: 122.977012634277, country: "China", name: "Anshan" }, - { cap: false, pop: 5.750, lat: 41.0659561157227, lon: 29.0060691833496, country: "Turkey", name: "Istanbul" }, - { cap: false, pop: 0.682, lat: 40.693920135498, lon: -111.89217376709, country: "US", name: "Salt Lake City" }, - { cap: false, pop: 2.219, lat: 40.4972038269043, lon: -79.9970855712891, country: "US", name: "Pittsburgh" }, - { cap: true, pop: 4.650, lat: 40.4422187805176, lon: -3.69096946716309, country: "Spain", name: "Madrid" }, - { cap: true, pop: 2.020, lat: 40.3242988586426, lon: 49.8162384033203, country: "Azerbaijan", name: "Baku" }, - { cap: true, pop: 1.315, lat: 40.2080230712891, lon: 44.5326690673828, country: "Armenia", name: "Yerevan" }, - { cap: false, pop: 0.964, lat: 40.0446434020996, lon: -82.9927062988281, country: "US", name: "Columbus" }, - { cap: true, pop: 2.400, lat: 39.929328918457, lon: 32.853271484375, country: "Turkey", name: "Ankara" }, - { cap: false, pop: 5.209, lat: 39.9275512695313, lon: -75.2182235717773, country: "US", name: "Philadelphia" }, - { cap: true, pop: 6.450, lat: 39.906192779541, lon: 116.388038635254, country: "China", name: "Beijing" }, - { cap: false, pop: 0.246, lat: 39.9044532775879, lon: 41.2918243408203, country: "Turkey", name: "Erzurum" }, - { cap: false, pop: 0.366, lat: 39.6575813293457, lon: 66.9476013183594, country: "Uzbekistan", name: "Samarkand" }, - { cap: false, pop: 1.060, lat: 39.6154441833496, lon: 118.180213928223, country: "China", name: "Tangshan" }, - { cap: false, pop: 1.270, lat: 39.4709167480469, lon: -0.367400944232941, country: "Spain", name: "Valencia" }, - { cap: false, pop: 1.960, lat: 39.3218841552734, lon: -76.6183776855469, country: "US", name: "Baltimore" }, - { cap: false, pop: 0.305, lat: 39.2251434326172, lon: 9.10890960693359, country: "Italy", name: "Cagliari" }, - { cap: false, pop: 1.480, lat: 39.1480102539063, lon: -84.4770202636719, country: "US", name: "Cincinnati" }, - { cap: false, pop: 4.880, lat: 39.1284141540527, lon: 117.18522644043, country: "China", name: "Tianjin" }, - { cap: true, pop: 1.600, lat: 39.0285148620605, lon: 125.757514953613, country: "Korea D P Rp", name: "Pyongyang" }, - { cap: false, pop: 1.272, lat: 38.9941177368164, lon: -94.6265640258789, country: "US", name: "Kansas City" }, - { cap: true, pop: 3.221, lat: 38.8909111022949, lon: -76.9538345336914, country: "US", name: "Washington D.C." }, - { cap: false, pop: 2.203, lat: 38.6388854980469, lon: -90.3419799804688, country: "US", name: "St. Louis" }, - { cap: false, pop: 0.866, lat: 38.5670166015625, lon: -121.422706604004, country: "US", name: "Sacramento" }, - { cap: false, pop: 0.971, lat: 38.0809783935547, lon: 46.2901191711426, country: "Iran", name: "Tabriz" }, - { cap: false, pop: 1.190, lat: 38.0770950317383, lon: 114.559707641602, country: "China", name: "Shijiazhuang" }, - { cap: true, pop: 0.398, lat: 37.9504203796387, lon: 58.3901329040527, country: "Turkmenistan", name: "Ashkhabad" }, - { cap: false, pop: 1.660, lat: 37.8930549621582, lon: 112.551704406738, country: "China", name: "Taiyuan" }, - { cap: true, pop: 15.850, lat: 37.542350769043, lon: 126.935249328613, country: "Korea Rep", name: "Seoul" }, - { cap: false, pop: 0.945, lat: 37.3726463317871, lon: -5.97083187103271, country: "Spain", name: "Sevilla" }, - { cap: false, pop: 0.778, lat: 36.9999809265137, lon: 35.3243637084961, country: "Turkey", name: "Adana" }, - { cap: false, pop: 0.796, lat: 36.8792915344238, lon: -76.2685699462891, country: "US", name: "Norfolk" }, - { cap: true, pop: 1.225, lat: 36.8188133239746, lon: 10.1659603118896, country: "Tunisia", name: "Tunis" }, - { cap: false, pop: 0.830, lat: 36.7914962768555, lon: 118.062042236328, country: "China", name: "Zibo" }, - { cap: false, pop: 1.460, lat: 36.6555366516113, lon: 116.967056274414, country: "China", name: "Jinan" }, - { cap: false, pop: 0.571, lat: 36.3355674743652, lon: 43.1371269226074, country: "Iraq", name: "Mosul" }, - { cap: false, pop: 1.464, lat: 36.2900695800781, lon: 59.596851348877, country: "Iran", name: "Mashhad" }, - { cap: false, pop: 1.216, lat: 36.2155456542969, lon: 37.1592826843262, country: "Syria", name: "Aleppo" }, - { cap: false, pop: 1.270, lat: 36.1134300231934, lon: 103.599594116211, country: "China", name: "Lanzhou" }, - { cap: false, pop: 2.206, lat: 35.8635368347168, lon: 128.591384887695, country: "Korea Rep", name: "Taegu" }, - { cap: true, pop: 6.400, lat: 35.7744750976563, lon: 51.4476509094238, country: "Iran", name: "Tehran" }, - { cap: true, pop: 23.620, lat: 35.6830558776855, lon: 139.809188842773, country: "Japan", name: "Tokyo" }, - { cap: false, pop: 1.089, lat: 35.5045700073242, lon: 139.72721862793, country: "Japan", name: "Kawasaki" }, - { cap: false, pop: 0.742, lat: 35.4895896911621, lon: -97.5302963256836, country: "US", name: "Oklahoma City" }, - { cap: false, pop: 2.993, lat: 35.437385559082, lon: 139.619659423828, country: "Japan", name: "Yokohama" }, - { cap: false, pop: 0.479, lat: 35.2058143615723, lon: -80.8356857299805, country: "US", name: "Charlotte" }, - { cap: false, pop: 3.800, lat: 35.1578674316406, lon: 129.0546875, country: "Korea Rep", name: "Pusan" }, - { cap: false, pop: 4.800, lat: 35.1549224853516, lon: 136.920593261719, country: "Japan", name: "Nagoya" }, - { cap: false, pop: 0.853, lat: 35.1147270202637, lon: -90.0003280639648, country: "US", name: "Memphis" }, - { cap: false, pop: 1.479, lat: 35.0091285705566, lon: 135.754821777344, country: "Japan", name: "Kyoto" }, - { cap: false, pop: 1.170, lat: 34.757682800293, lon: 113.641777038574, country: "China", name: "Zhengzhou" }, - { cap: false, pop: 0.431, lat: 34.7338752746582, lon: 36.7181739807129, country: "Syria", name: "Homs" }, - { cap: false, pop: 0.740, lat: 34.6713485717773, lon: 112.361236572266, country: "China", name: "Luoyang" }, - { cap: false, pop: 15.040, lat: 34.6355285644531, lon: 135.519119262695, country: "Japan", name: "Osaka" }, - { cap: true, pop: 1.179, lat: 34.5309066772461, lon: 69.1367568969727, country: "Afghanistan", name: "Kabul" }, - { cap: false, pop: 1.575, lat: 34.377555847168, lon: 132.444778442383, country: "Japan", name: "Hiroshima" }, - { cap: false, pop: 2.050, lat: 34.265697479248, lon: 108.883361816406, country: "China", name: "Xian" }, - { cap: false, pop: 0.535, lat: 34.0435676574707, lon: -4.99554777145386, country: "Morocco", name: "Fes" }, - { cap: false, pop: 1.963, lat: 33.7957000732422, lon: -84.3492279052734, country: "US", name: "Atlanta" }, - { cap: true, pop: 0.204, lat: 33.7181510925293, lon: 73.060546875, country: "Pakistan", name: "Islamabad" }, - { cap: false, pop: 0.836, lat: 33.6058044433594, lon: 73.0437469482422, country: "Pakistan", name: "Rawalpindi" }, - { cap: true, pop: 1.850, lat: 33.5193023681641, lon: 36.3134536743164, country: "Syria", name: "Damascus" }, - { cap: false, pop: 1.482, lat: 33.5090217590332, lon: -112.110260009766, country: "US", name: "Phoenix" }, - { cap: true, pop: 3.841, lat: 33.3340377807617, lon: 44.397834777832, country: "Iraq", name: "Baghdad" }, - { cap: false, pop: 2.727, lat: 32.763729095459, lon: -96.663688659668, country: "US", name: "Dallas" }, - { cap: false, pop: 0.987, lat: 32.6513900756836, lon: 51.6791877746582, country: "Iran", name: "Esfahan" }, - { cap: false, pop: 2.290, lat: 32.0483665466309, lon: 118.768905639648, country: "China", name: "Nanjing" }, - { cap: true, pop: 1.250, lat: 31.9493827819824, lon: 35.9329071044922, country: "Jordan", name: "Amman" }, - { cap: false, pop: 0.595, lat: 31.6308898925781, lon: 74.8715515136719, country: "India", name: "Amritsar" }, - { cap: false, pop: 3.025, lat: 31.5450534820557, lon: 74.3406753540039, country: "Pakistan", name: "Lahore" }, - { cap: false, pop: 1.104, lat: 31.4089508056641, lon: 73.0834579467773, country: "Pakistan", name: "Faisalabad" }, - { cap: false, pop: 9.300, lat: 31.2478694915771, lon: 121.47265625, country: "China", name: "Shanghai" }, - { cap: false, pop: 1.810, lat: 30.6700687408447, lon: 104.071273803711, country: "China", name: "Chengdu" }, - { cap: false, pop: 3.490, lat: 30.5724983215332, lon: 114.279220581055, country: "China", name: "Wuhan" }, - { cap: false, pop: 0.617, lat: 30.503490447998, lon: 47.7608642578125, country: "Iraq", name: "Al Basra" }, - { cap: false, pop: 1.270, lat: 30.2526245117188, lon: 120.165077209473, country: "China", name: "Hangzhou" }, - { cap: true, pop: 9.300, lat: 30.0779113769531, lon: 31.2507972717285, country: "Egypt", name: "Cairo" }, - { cap: false, pop: 1.185, lat: 29.9563789367676, lon: -90.0986862182617, country: "US", name: "New Orleans" }, - { cap: false, pop: 2.755, lat: 29.7718296051025, lon: -95.407112121582, country: "US", name: "Houston" }, - { cap: false, pop: 0.084, lat: 29.6507034301758, lon: 91.1320877075195, country: "China", name: "Lhasa" }, - { cap: false, pop: 2.450, lat: 29.5441036224365, lon: 106.522689819336, country: "China", name: "Chongqing" }, - { cap: false, pop: 0.968, lat: 29.4299221038818, lon: -98.5245742797852, country: "US", name: "San Antonio" }, - { cap: false, pop: 1.030, lat: 28.6712398529053, lon: 115.88941192627, country: "China", name: "Nanchang" }, - { cap: true, pop: 0.273, lat: 28.5687255859375, lon: 77.2167510986328, country: "India", name: "New Delhi" }, - { cap: false, pop: 7.200, lat: 28.5264587402344, lon: 77.2243728637695, country: "India", name: "Delhi" }, - { cap: false, pop: 1.190, lat: 28.1976413726807, lon: 112.968482971191, country: "China", name: "Changsha" }, - { cap: true, pop: 0.320, lat: 27.7120170593262, lon: 85.3129501342773, country: "Nepal", name: "Kathmandu" }, - { cap: true, pop: 0.012, lat: 27.44260597229, lon: 89.6673278808594, country: "Bhutan", name: "Thimbu" }, - { cap: false, pop: 1.025, lat: 26.9051132202148, lon: 75.8012771606445, country: "India", name: "Jaipur" }, - { cap: false, pop: 1.060, lat: 26.8494281768799, lon: 80.9197235107422, country: "India", name: "Lucknow" }, - { cap: false, pop: 1.010, lat: 26.5719413757324, lon: 106.700302124023, country: "China", name: "Guiyang" }, - { cap: false, pop: 1.875, lat: 26.4578304290771, lon: 80.3178634643555, country: "India", name: "Kanpur" }, - { cap: false, pop: 0.890, lat: 26.0710163116455, lon: 119.303520202637, country: "China", name: "Fuzhou" }, - { cap: false, pop: 2.827, lat: 25.8321304321289, lon: -80.2702178955078, country: "US", name: "Miami" }, - { cap: false, pop: 2.015, lat: 25.6773529052734, lon: -100.317085266113, country: "Mexico", name: "Monterrey" }, - { cap: false, pop: 1.025, lat: 25.6138973236084, lon: 85.1353454589844, country: "India", name: "Patna" }, - { cap: false, pop: 0.800, lat: 25.3801860809326, lon: 68.3664703369141, country: "Pakistan", name: "Hyderabad" }, - { cap: false, pop: 0.925, lat: 25.2820110321045, lon: 82.9563369750977, country: "India", name: "Benares" }, - { cap: true, pop: 0.310, lat: 25.2036418914795, lon: 51.4972343444824, country: "Qatar", name: "Doha" }, - { cap: false, pop: 1.280, lat: 25.0510330200195, lon: 102.702125549316, country: "China", name: "Kunming" }, - { cap: true, pop: 6.130, lat: 25.0350914001465, lon: 121.506729125977, country: "Taiwan", name: "Taipei" }, - { cap: false, pop: 0.715, lat: 24.1436424255371, lon: 120.670280456543, country: "Taiwan", name: "T`ai-chung" }, - { cap: true, pop: 3.430, lat: 23.7099189758301, lon: 90.4071426391602, country: "Bangladesh", name: "Dhaka" }, - { cap: false, pop: 3.050, lat: 23.0961952209473, lon: 113.293609619141, country: "China", name: "Guangzhou" }, - { cap: false, pop: 2.400, lat: 23.0397911071777, lon: 72.5668640136719, country: "India", name: "Ahmadabad" }, - { cap: false, pop: 0.648, lat: 22.8426475524902, lon: 89.5582427978516, country: "Bangladesh", name: "Khulna" }, - { cap: false, pop: 11.100, lat: 22.5435371398926, lon: 88.3342208862305, country: "India", name: "Calcutta" }, - { cap: false, pop: 0.435, lat: 22.2432346343994, lon: -97.8426284790039, country: "Mexico", name: "Tampico" }, - { cap: false, pop: 0.533, lat: 21.975944519043, lon: 96.0841522216797, country: "Burma", name: "Mandalay" }, - { cap: false, pop: 0.550, lat: 21.4273815155029, lon: 39.8148384094238, country: "Saudi Arabia", name: "Mecca" }, - { cap: false, pop: 1.302, lat: 21.1557579040527, lon: 79.089111328125, country: "India", name: "Nagpur" }, - { cap: true, pop: 1.500, lat: 21.0319480895996, lon: 105.81990814209, country: "Vietnam", name: "Hanoi" }, - { cap: false, pop: 0.385, lat: 20.8613586425781, lon: 106.679794311523, country: "Vietnam", name: "Haiphong" }, - { cap: false, pop: 0.400, lat: 20.8218688964844, lon: -89.552864074707, country: "Mexico", name: "Merida" }, - { cap: false, pop: 2.325, lat: 20.6735916137695, lon: -103.343795776367, country: "Mexico", name: "Guadalajara" }, - { cap: false, pop: 0.207, lat: 19.6157131195068, lon: 37.2196884155273, country: "Sudan", name: "Bur Sudan" }, - { cap: true, pop: 14.100, lat: 19.4270458221436, lon: -99.127571105957, country: "Mexico", name: "Mexico City" }, - { cap: false, pop: 1.055, lat: 19.0486316680908, lon: -98.1929473876953, country: "Mexico", name: "Puebla de Zaragoza" }, - { cap: false, pop: 1.775, lat: 18.5357475280762, lon: 73.8522720336914, country: "India", name: "Pune" }, - { cap: true, pop: 0.880, lat: 18.5266170501709, lon: -72.3431091308594, country: "Haiti", name: "Port-au-Prince" }, - { cap: true, pop: 1.775, lat: 18.4006156921387, lon: -66.0817565917969, country: "Puerto Rico", name: "San Juan" }, - { cap: true, pop: 0.770, lat: 18.0157127380371, lon: -76.7973022460938, country: "Jamaica", name: "Kingston" }, - { cap: false, pop: 2.750, lat: 17.3945465087891, lon: 78.4850311279297, country: "India", name: "Hyderabad" }, - { cap: true, pop: 2.800, lat: 16.8722229003906, lon: 96.1248931884766, country: "Burma", name: "Rangoon" }, - { cap: true, pop: 0.427, lat: 15.3614444732666, lon: 44.2095031738281, country: "Yemen", name: "Sanaa" }, - { cap: true, pop: 1.400, lat: 14.6180076599121, lon: -90.52490234375, country: "Guatemala", name: "Guatemala" }, - { cap: true, pop: 0.552, lat: 14.0990505218506, lon: -87.2030944824219, country: "Honduras", name: "Tegucigalpa" }, - { cap: true, pop: 6.450, lat: 13.7455711364746, lon: 100.552665710449, country: "Thailand", name: "Bangkok" }, - { cap: true, pop: 0.920, lat: 13.7014122009277, lon: -89.2002334594727, country: "El Salvador", name: "San Salvador" }, - { cap: true, pop: 0.398, lat: 13.6045436859131, lon: 2.08344984054565, country: "Niger", name: "Niamey" }, - { cap: false, pop: 4.475, lat: 13.0615034103394, lon: 80.2478256225586, country: "India", name: "Madras" }, - { cap: false, pop: 2.950, lat: 12.9747505187988, lon: 77.5877304077148, country: "India", name: "Bangalore" }, - { cap: true, pop: 0.646, lat: 12.6529502868652, lon: -7.98648166656494, country: "Mali", name: "Bamako" }, - { cap: true, pop: 0.682, lat: 12.1514730453491, lon: -86.2730331420898, country: "Nicaragua", name: "Managua" }, - { cap: true, pop: 0.700, lat: 11.564736366272, lon: 104.913192749023, country: "Cambodia", name: "Phnom Penh" }, - { cap: false, pop: 3.100, lat: 10.7591819763184, lon: 106.662452697754, country: "Vietnam", name: "Ho Chi Minh City" }, - { cap: false, pop: 0.891, lat: 10.6450433731079, lon: -71.6371459960938, country: "Venezuela", name: "Maracaibo" }, - { cap: true, pop: 3.600, lat: 10.4960489273071, lon: -66.8982849121094, country: "Venezuela", name: "Caracas" }, - { cap: false, pop: 0.498, lat: 10.0656652450562, lon: -69.3391952514648, country: "Venezuela", name: "Barquisimeto" }, - { cap: true, pop: 0.670, lat: 9.93047618865967, lon: -84.07861328125, country: "Costa Rica", name: "San Jose" }, - { cap: false, pop: 0.960, lat: 9.91398620605469, lon: 78.1217269897461, country: "India", name: "Madurai" }, - { cap: false, pop: 1.144, lat: 7.37884044647217, lon: 3.8952784538269, country: "Nigeria", name: "Ibadan" }, - { cap: false, pop: 0.409, lat: 7.08008003234863, lon: 125.613677978516, country: "Philippines", name: "Davao" }, - { cap: false, pop: 0.253, lat: 6.45053863525391, lon: 7.4920802116394, country: "Nigeria", name: "Enugu" }, - { cap: false, pop: 2.095, lat: 6.24114656448364, lon: -75.5920333862305, country: "Colombia", name: "Medellin" }, - { cap: true, pop: 1.250, lat: 5.55856275558472, lon: -0.200923636555672, country: "Ghana", name: "Accra" }, - { cap: true, pop: 1.950, lat: 5.32485723495483, lon: -4.02188682556152, country: "Ivory Coast", name: "Abidjan" }, - { cap: true, pop: 4.260, lat: 4.63021993637085, lon: -74.0805130004883, country: "Colombia", name: "Bogota" }, - { cap: true, pop: 0.474, lat: 4.3658561706543, lon: 18.5623416900635, country: "Cent Af Rep", name: "Bangui" }, - { cap: true, pop: 0.654, lat: 3.86512303352356, lon: 11.5136413574219, country: "Cameroon", name: "Yaounde" }, - { cap: false, pop: 1.374, lat: 3.58524203300476, lon: 98.6755981445313, country: "Indonesia", name: "Medan" }, - { cap: false, pop: 1.400, lat: 3.45685529708862, lon: -76.5224380493164, country: "Colombia", name: "Cali" }, - { cap: true, pop: 1.475, lat: 3.1502103805542, lon: 101.707672119141, country: "Malaysia", name: "Kuala Lumpur" }, - { cap: true, pop: 0.600, lat: 2.04117751121521, lon: 45.3441429138184, country: "Somalia", name: "Muqdisho" }, - { cap: false, pop: 0.283, lat: 0.519284904003143, lon: 25.1961479187012, country: "Zaire", name: "Kisangani" }, - { cap: true, pop: 1.050, lat: -0.229498133063316, lon: -78.524284362793, country: "Ecuador", name: "Quito" }, - { cap: false, pop: 0.179, lat: -3.75289535522461, lon: -73.1914901733398, country: "Peru", name: "Iquitos" }, - { cap: false, pop: 1.825, lat: -3.78332185745239, lon: -38.5889015197754, country: "Brazil", name: "Fortaleza" }, - { cap: true, pop: 0.586, lat: -4.28518676757813, lon: 15.2851486206055, country: "Congo", name: "Brazzaville" }, - { cap: false, pop: 0.291, lat: -5.89221096038818, lon: 22.4027786254883, country: "Zaire", name: "Kananga" }, - { cap: true, pop: 1.300, lat: -6.81735897064209, lon: 39.2533493041992, country: "Tanzania", name: "Dar es Salaam" }, - { cap: false, pop: 1.800, lat: -6.91243028640747, lon: 107.606903076172, country: "Indonesia", name: "Bandung" }, - { cap: false, pop: 2.625, lat: -8.08516788482666, lon: -34.9146385192871, country: "Brazil", name: "Recife" }, - { cap: false, pop: 0.155, lat: -12.7177352905273, lon: 13.464879989624, country: "Angola", name: "Benguela" }, - { cap: true, pop: 1.568, lat: -15.7921094894409, lon: -47.8977470397949, country: "Brazil", name: "Brasilia" }, - { cap: false, pop: 0.447, lat: -16.3975391387939, lon: -71.5227432250977, country: "Peru", name: "Arequipa" }, - { cap: true, pop: 0.993, lat: -16.4990062713623, lon: -68.1462478637695, country: "Bolivia", name: "La Paz" }, - { cap: false, pop: 0.990, lat: -16.7266998291016, lon: -49.254810333252, country: "Brazil", name: "Goiania" }, - { cap: false, pop: 0.442, lat: -17.7887916564941, lon: -63.1974182128906, country: "Bolivia", name: "Santa Cruz de La Sierra" }, - { cap: false, pop: 0.087, lat: -19.0421352386475, lon: -65.2558822631836, country: "Bolivia", name: "Sucre" }, - { cap: false, pop: 2.950, lat: -19.8517208099365, lon: -43.9090690612793, country: "Brazil", name: "Belo Horizonte" }, - { cap: false, pop: 10.150, lat: -22.7215728759766, lon: -43.4551773071289, country: "Brazil", name: "Rio de Janeiro" }, - { cap: false, pop: 15.175, lat: -23.5813045501709, lon: -46.6228981018066, country: "Brazil", name: "Sao Paulo" }, - { cap: false, pop: 1.065, lat: -23.9547004699707, lon: -46.3094940185547, country: "Brazil", name: "Santos" }, - { cap: true, pop: 0.095, lat: -24.6614418029785, lon: 25.7948017120361, country: "Botswana", name: "Gaborone" }, - { cap: false, pop: 1.700, lat: -25.4304790496826, lon: -49.2845077514648, country: "Brazil", name: "Curitiba" }, - { cap: true, pop: 0.960, lat: -25.7313461303711, lon: 28.2183723449707, country: "South Africa", name: "Pretoria" }, - { cap: true, pop: 1.070, lat: -25.9621543884277, lon: 32.5736923217773, country: "Mozambique", name: "Maputo" }, - { cap: false, pop: 3.650, lat: -26.1789569854736, lon: 28.0043087005615, country: "South Africa", name: "Johannesburg" }, - { cap: false, pop: 1.149, lat: -27.4539127349854, lon: 153.026489257813, country: "Australia", name: "Brisbane" }, - { cap: false, pop: 1.550, lat: -29.8363723754883, lon: 30.9421882629395, country: "South Africa", name: "Durban" }, - { cap: false, pop: 2.600, lat: -30.0395336151123, lon: -51.2079887390137, country: "Brazil", name: "Porto Alegre" }, - { cap: false, pop: 1.070, lat: -31.3162784576416, lon: -64.1798553466797, country: "Argentina", name: "Cordoba" }, - { cap: false, pop: 0.292, lat: -31.6168975830078, lon: -60.6978416442871, country: "Argentina", name: "Santa Fe" }, - { cap: false, pop: 0.650, lat: -32.8974380493164, lon: -68.8297348022461, country: "Argentina", name: "Mendoza" }, - { cap: false, pop: 1.045, lat: -32.9377365112305, lon: -60.6639404296875, country: "Argentina", name: "Rosario" }, - { cap: true, pop: 4.100, lat: -33.475025177002, lon: -70.6475143432617, country: "Chile", name: "Santiago" }, - { cap: false, pop: 0.690, lat: -33.8815765380859, lon: 25.4842987060547, country: "South Africa", name: "Port Elizabeth" }, - { cap: false, pop: 3.365, lat: -33.8897743225098, lon: 151.028198242188, country: "Australia", name: "Sydney" }, - { cap: true, pop: 10.750, lat: -34.6654014587402, lon: -58.4095916748047, country: "Argentina", name: "Buenos Aires" }, - { cap: true, pop: 0.271, lat: -35.349925994873, lon: 149.041625976563, country: "Australia", name: "Canberra" }, - { cap: false, pop: 0.850, lat: -36.893253326416, lon: 174.801055908203, country: "New Zealand", name: "Auckland" }, - { cap: false, pop: 2.833, lat: -37.8529586791992, lon: 145.075103759766, country: "Australia", name: "Melbourne" }, - { cap: false, pop: 0.224, lat: -38.7252731323242, lon: -62.2740669250488, country: "Argentina", name: "Bahia Blanca" }, - { cap: false, pop: 0.320, lat: -43.5489158630371, lon: 172.683654785156, country: "New Zealand", name: "Christchurch" }, - { cap: true, pop: 0.900, lat: 60.1964225769043, lon: 24.9766998291016, country: "Finland", name: "Helsinki" }, - { cap: false, pop: 0.310, lat: 34.745231628418, lon: 10.7592582702637, country: "Tunisia", name: "Sfax" }, - { cap: false, pop: 1.411, lat: 34.6638412475586, lon: 135.181838989258, country: "Japan", name: "Kobe" }, - { cap: false, pop: 0.490, lat: 31.7737464904785, lon: 35.2252197265625, country: "Israel", name: "Jerusalem" }, - { cap: false, pop: 0.616, lat: 10.1782207489014, lon: -68.0031127929688, country: "Venezuela", name: "Valencia" }, - { cap: false, pop: 1.255, lat: -2.20381617546082, lon: -79.9093933105469, country: "Ecuador", name: "Guayaquil" }, - { cap: false, pop: 4.054, lat: 37.7275123596191, lon: -122.308815002441, country: "US", name: "San Francisco" }, - { cap: false, pop: 0.630, lat: 55.8752517700195, lon: -3.29878330230713, country: "UK", name: "Edinburgh" }, - { cap: false, pop: 0.239, lat: 45.7002830505371, lon: 13.9328374862671, country: "Italy", name: "Trieste" }, - { cap: false, pop: 1.750, lat: 33.3099060058594, lon: 130.317184448242, country: "Japan", name: "Fukuoka" }, - { cap: false, pop: 1.525, lat: 33.6818656921387, lon: 130.797454833984, country: "Japan", name: "Kita Kyushu" }, - { cap: true, pop: 0.303, lat: 12.1041393280029, lon: 15.2408237457275, country: "Chad", name: "N'Djamena" }, - { cap: true, pop: 0.991, lat: 32.7516174316406, lon: 13.2118225097656, country: "Libya", name: "Tripoli" }, - { cap: false, pop: 1.550, lat: 38.4389190673828, lon: 27.2057685852051, country: "Turkey", name: "Izmir" }, - { cap: true, pop: 3.000, lat: -4.38867473602295, lon: 15.4692935943604, country: "Zaire", name: "Kinshasa" }, - { cap: false, pop: 0.978, lat: -34.9185371398926, lon: 138.870681762695, country: "Australia", name: "Adelaide" }, - { cap: true, pop: 8.600, lat: -6.29390430450439, lon: 106.762466430664, country: "Indonesia", name: "Jakarta" }, - { cap: false, pop: 1.025, lat: -7.02784442901611, lon: 110.444259643555, country: "Indonesia", name: "Semarang" }, - { cap: false, pop: 0.264, lat: -12.0435400009155, lon: -76.8356323242188, country: "Peru", name: "Callao" }, - { cap: false, pop: 1.200, lat: -1.60532903671265, lon: -48.316276550293, country: "Brazil", name: "Belem" }, - { cap: false, pop: 1.270, lat: 36.1483535766602, lon: 120.434127807617, country: "China", name: "Qingdao" }, - { cap: true, pop: 0.377, lat: 18.0017318725586, lon: 102.680236816406, country: "Laos", name: "Vientiane" }, - { cap: false, pop: 0.220, lat: 47.8011703491211, lon: 13.0908985137939, country: "Austria", name: "Salzburg" }, - { cap: true, pop: 0.698, lat: 45.8070755004883, lon: 15.9643859863281, country: "Croatia", name: "Zagreb" }, - { cap: true, pop: 0.273, lat: -3.26908373832703, lon: 29.5335865020752, country: "Burundi", name: "Bujumbura" }, - { cap: true, pop: 0.185, lat: 35.1650695800781, lon: 33.3851623535156, country: "Cyprus", name: "Nicosia" }, - { cap: true, pop: 0.182, lat: -2.11793518066406, lon: 29.9914855957031, country: "Rwanda", name: "Kigali" }, - { cap: true, pop: 0.233, lat: 46.068302154541, lon: 14.639612197876, country: "Slovenia", name: "Ljubljana" }, - { cap: true, pop: 0.109, lat: -29.2567100524902, lon: 27.8903884887695, country: "Lesotho", name: "Maseru" }, - { cap: true, pop: 0.133, lat: 49.740406036377, lon: 6.27325582504272, country: "Luxembourg", name: "Luxembourg" }, - { cap: false, pop: 0.770, lat: 51.903621673584, lon: 4.30062437057495, country: "Netherlands", name: "The Hague" }, - { cap: true, pop: 0.435, lat: 48.2745094299316, lon: 17.2698059082031, country: "Slovakia", name: "Bratislava" }, - { cap: false, pop: 0.201, lat: 52.1100006103516, lon: -106.629997253418, country: "Canada", name: "Saskatoon" }, - { cap: false, pop: 0.187, lat: 50.4099998474121, lon: -104.650001525879, country: "Canada", name: "Regina" }, - { cap: false, pop: 1.038, lat: 31.7800006866455, lon: -106.449996948242, country: "US", name: "El Paso" }, - { cap: false, pop: 0.636, lat: 30.3299999237061, lon: -81.6600036621094, country: "US", name: "Jacksonville" }, - { cap: false, pop: 0.002, lat: 51.3300018310547, lon: -80.7300033569336, country: "Canada", name: "Moosonee" }, - { cap: false, pop: 0.002, lat: 54.8600006103516, lon: -67.0100021362305, country: "Canada", name: "Schefferville" }, - { cap: false, pop: 0.008, lat: 53.310001373291, lon: -60.5499992370605, country: "Canada", name: "Goose Bay" }, - { cap: false, pop: 0.202, lat: -8.75, lon: -63.9000015258789, country: "Brazil", name: "Porto Velho" }, - { cap: false, pop: 0.185, lat: -13.6000003814697, lon: -71.8600006103516, country: "Peru", name: "Cuzco" }, - { cap: false, pop: 0.280, lat: -15.5500001907349, lon: -56.0499992370605, country: "Brazil", name: "Cuiaba" }, - { cap: false, pop: 0.220, lat: -27.3999996185303, lon: -58.9000015258789, country: "Argentina", name: "Resistencia" }, - { cap: false, pop: 0.032, lat: 16.7600002288818, lon: -3.00999999046326, country: "Mali", name: "Tombouctoo" }, - { cap: false, pop: 0.255, lat: 11.8800001144409, lon: 13.2600002288818, country: "Niger", name: "Maiduguri" }, - { cap: false, pop: 0.145, lat: -5.80999994277954, lon: 13.4499998092651, country: "Zaire", name: "Matadi" }, - { cap: false, pop: 0.203, lat: -12.7299995422363, lon: 15.7799997329712, country: "Angola", name: "Huambo" }, - { cap: false, pop: 0.145, lat: -28.6599998474121, lon: 24.8299999237061, country: "South Africa", name: "Kimberley" }, - { cap: false, pop: 0.320, lat: -33.0299987792969, lon: 27.8999996185303, country: "South Africa", name: "East london" }, - { cap: false, pop: 0.247, lat: -7.32999992370605, lon: 19, country: "Zaire", name: "Kahemba" }, - { cap: false, pop: 0.054, lat: -6.17999982833862, lon: 35.75, country: "Tanzania", name: "Dodoma" }, - { cap: false, pop: 0.019, lat: 68.3499984741211, lon: 17.2999992370605, country: "Norway", name: "Narvik" }, - { cap: false, pop: 0.160, lat: 34.4599990844727, lon: 62.2099990844727, country: "Afghanistan", name: "Herat" }, - { cap: false, pop: 0.006, lat: 55.8800010681152, lon: 37.75, country: "Russia", name: "Druzba" }, - { cap: false, pop: 0.146, lat: 39.4799995422363, lon: 76, country: "China", name: "Kashi" }, - { cap: false, pop: 9.415, lat: 24.9799995422363, lon: 121.529998779297, country: "Taiwan", name: "Chingmei" }, - { cap: false, pop: 0.166, lat: 16.4599990844727, lon: 107.699996948242, country: "Vietnam", name: "Hue" }, - { cap: false, pop: 0.073, lat: 1.5, lon: 110.430000305176, country: "Malaysia", name: "Kuching" }, - { cap: false, pop: 0.208, lat: -1.21000003814697, lon: 116.860000610352, country: "Indonesia", name: "Balikpapan" }, - { cap: false, pop: 0.168, lat: 50.3300018310547, lon: 110.75, country: "Russia", name: "Chatanga" }, - { cap: false, pop: 0.006, lat: 52.0499992370605, lon: 113.580001831055, country: "Russia", name: "Chita" }, - { cap: false, pop: 0.001, lat: 67.5800018310547, lon: 133.410003662109, country: "Russia", name: "Verkhoyansk" }, - { cap: false, pop: 0.187, lat: 62.0099983215332, lon: 129.830001831055, country: "Russia", name: "Yakutsk" }, - { cap: false, pop: 0.006, lat: 59.3300018310547, lon: 143.25, country: "Russia", name: "Okhotsk" }, - { cap: false, pop: 0.000, lat: 50.0800018310547, lon: 45.5299987792969, country: "Russia", name: "Nikolayevsk" }, - { cap: false, pop: 0.000, lat: 46.9599990844727, lon: 142.75, country: "Russia", name: "Yuzhno-Sakhalinsk" }, - { cap: false, pop: 0.000, lat: -23.6299991607666, lon: 133.929992675781, country: "Australia", name: "Alice Springs" }, - { cap: false, pop: 0.039, lat: -16.8500003814697, lon: 145.710006713867, country: "Australia", name: "Cairns" }, - { cap: false, pop: 0.106, lat: -19.2999992370605, lon: 146.830001831055, country: "Australia", name: "Townsville" }, - { cap: false, pop: 0.059, lat: -23.4300003051758, lon: 150.479995727539, country: "Australia", name: "Rockhampton" }, - { cap: false, pop: 0.405, lat: -33, lon: 151.910003662109, country: "Australia", name: "Newcastle" }, - { cap: false, pop: 0.175, lat: -43, lon: 147.5, country: "Australia", name: "Hobart" }, - { cap: false, pop: 0.109, lat: -45.8600006103516, lon: 170.5, country: "New Zealand", name: "Dunedin" }, - { cap: false, pop: 0.256, lat: 48.6545677185059, lon: -123.569107055664, country: "Canada", name: "Victoria" }, - { cap: true, pop: 0.164, lat: 6.60109615325928, lon: 2.63250279426575, country: "Benin", name: "Porto Novo" }, - { cap: false, pop: 1.030, lat: 4.13665008544922, lon: 9.706374168396, country: "Cameroon", name: "Douala" }, - { cap: false, pop: 0.708, lat: -5.19043016433716, lon: 119.722793579102, country: "Indonesia", name: "Vjuag Padang" }, - { cap: false, pop: 0.112, lat: -3.3865532875061, lon: 129.312927246094, country: "Indonesia", name: "Ambon" }, - { cap: false, pop: 1.604, lat: 37.5894508361816, lon: 126.767440795898, country: "Korea Rep", name: "Inch`on" }, - { cap: false, pop: 1.680, lat: 39.0317153930664, lon: 121.598197937012, country: "China", name: "Dalian" }, - { cap: false, pop: 1.227, lat: 45.4421310424805, lon: -122.641677856445, country: "US", name: "Portland" }, - { cap: false, pop: 0.810, lat: -3.12230491638184, lon: -60.0146179199219, country: "Brazil", name: "Manaus" }, - { cap: false, pop: 0.227, lat: -2.46000003814697, lon: -54.6100006103516, country: "Brazil", name: "Santarem" }, - { cap: false, pop: 0.053, lat: -46.4099998474121, lon: 168.449996948242, country: "New Zealand", name: "Invercargill" }, - { cap: false, pop: 0.049, lat: -10.2600002288818, lon: 40.1800003051758, country: "Tanzania", name: "Mtwara" }, - { cap: false, pop: 0.100, lat: -18.2299995422363, lon: 49.4099998474121, country: "Madagascar", name: "Toamasina" }, - { cap: false, pop: 0.235, lat: -29.1499996185303, lon: 26.2600002288818, country: "South Africa", name: "Bloemfontein" }, - { cap: false, pop: 0.414, lat: -20.2000007629395, lon: 28.7099990844727, country: "Zimbabwe", name: "Bulawayo" }, - { cap: false, pop: 0.061, lat: -17.8299999237061, lon: 25.8799991607666, country: "Zambia", name: "Livingstone" }, - { cap: false, pop: 0.290, lat: 24.4300003051758, lon: 39.7000007629395, country: "Saudi Arabia", name: "Al Madinah" }, - { cap: false, pop: 0.000, lat: 21.7600002288818, lon: 31.2800006866455, country: "Sudan", name: "Wadi Halfa" }, - { cap: false, pop: 0.191, lat: 24.0799999237061, lon: 32.9500007629395, country: "Egypt", name: "Aswan" }, - { cap: false, pop: 0.000, lat: 25.9099998474121, lon: 13.9099998474121, country: "Libya", name: "Murzuq" }, - { cap: false, pop: 0.000, lat: 27.7000007629395, lon: -8.15999984741211, country: "Algeria", name: "Tindouf" }, - { cap: false, pop: 0.050, lat: 16.9599990844727, lon: 7.98000001907349, country: "Niger", name: "Agadez" }, - { cap: false, pop: 0.140, lat: 13.1800003051758, lon: 30.1599998474121, country: "Sudan", name: "El Obeid" }, - { cap: false, pop: 0.125, lat: 0.0500000007450581, lon: 18.4599990844727, country: "Zaire", name: "Mbandaka" }, - { cap: false, pop: 0.015, lat: 60.6500015258789, lon: -135.009994506836, country: "Canada", name: "Whitehorse" }, - { cap: false, pop: 0.095, lat: -53.1500015258789, lon: -70.8000030517578, country: "Chile", name: "Punte Arenas" }, - { cap: false, pop: 0.084, lat: -41.4799995422363, lon: -73, country: "Chile", name: "Puerto Montt" }, - { cap: false, pop: 0.000, lat: -51.7099990844727, lon: -69.4100036621094, country: "Argentina", name: "Rio Gallegos" }, - { cap: false, pop: 0.097, lat: -45.8300018310547, lon: -67.5, country: "Argentina", name: "Comodoro Rivadavia" }, - { cap: false, pop: 0.327, lat: 29.9599990844727, lon: 32.560001373291, country: "Egypt", name: "Suez" }, - { cap: false, pop: 3.350, lat: 31.0746040344238, lon: 29.9778099060059, country: "Egypt", name: "Alexandria" }, - { cap: false, pop: 0.000, lat: -15.0500001907349, lon: 40.7000007629395, country: "Mozambique", name: "Mocambique" }, - { cap: false, pop: 9.950, lat: 19.0453472137451, lon: 73.1723480224609, country: "India", name: "Bombay" }, - { cap: true, pop: 2.548, lat: 36.596492767334, lon: 2.99369311332703, country: "Algeria", name: "Algiers" }, - { cap: false, pop: 1.940, lat: 49.989673614502, lon: 36.2083129882813, country: "Ukraine", name: "Kharkov" }, - { cap: false, pop: 1.600, lat: 48.4228897094727, lon: 35.1378936767578, country: "Ukraine", name: "Dnepropetrovsk" }, - { cap: true, pop: 0.482, lat: 59.2775726318359, lon: 24.7520561218262, country: "Estonia", name: "Tallinn" }, - { cap: false, pop: 0.000, lat: 47.810001373291, lon: 97, country: "Mongolia", name: "Uliastay" }, - { cap: true, pop: 1.313, lat: 18.4997291564941, lon: -69.9104919433594, country: "Dominican Rp", name: "Santo Domingo" }, - { cap: true, pop: 0.064, lat: 4.93300008773804, lon: 114.967002868652, country: "Brunei", name: "Bandar Seri Begawan" }, - { cap: true, pop: 0.095, lat: 13.4452724456787, lon: -16.4946155548096, country: "Gambia", name: "Banjul" }, - { cap: true, pop: 0.370, lat: 10.6397342681885, lon: -61.490062713623, country: "Trinidad", name: "Port of Spain" }, - { cap: false, pop: 0.302, lat: 16.97438621521, lon: -99.9314956665039, country: "Mexico", name: "Acapulco" }, - { cap: false, pop: 0.000, lat: 64.4001617431641, lon: 177.130187988281, country: "Russia", name: "Anadyr" }, - { cap: false, pop: 0.003, lat: 65.6699981689453, lon: -37.3118667602539, country: "Greenland", name: "Angmagssalik" }, - { cap: false, pop: 0.185, lat: -23.8325366973877, lon: -70.2254486083984, country: "Chile", name: "Antofagasta" }, - { cap: false, pop: 0.294, lat: 40.75, lon: 140.669998168945, country: "Japan", name: "Aomori" }, - { cap: false, pop: 0.436, lat: 32.0430526733398, lon: 20.3086757659912, country: "Libya", name: "Banghazi" }, - { cap: false, pop: 0.000, lat: -15.75, lon: 133.220001220703, country: "Australia", name: "Birdum" }, - { cap: false, pop: 0.000, lat: 2.75, lon: -60.5, country: "Brazil", name: "Boa Vista" }, - { cap: false, pop: 0.280, lat: -6.61999988555908, lon: -79.8300018310547, country: "Peru", name: "Chiclayo" }, - { cap: false, pop: 0.223, lat: -8.930100440979, lon: -78.4531478881836, country: "Peru", name: "Chimbote" }, - { cap: false, pop: 0.001, lat: 58.710765838623, lon: -94.1800003051758, country: "Canada", name: "Churchill" }, - { cap: false, pop: 0.686, lat: 9.98798847198486, lon: 76.5217819213867, country: "India", name: "Cochin" }, - { cap: false, pop: 0.675, lat: -36.8832969665527, lon: -72.8516387939453, country: "Chile", name: "Concepcion" }, - { cap: false, pop: 0.062, lat: -31, lon: -71.0199966430664, country: "Chile", name: "Coquimbo" }, - { cap: false, pop: 0.073, lat: -12.7014999389648, lon: 130.994552612305, country: "Australia", name: "Darwin" }, - { cap: true, pop: 0.120, lat: 11.5, lon: 43.0999984741211, country: "Djibouti", name: "Djibouti" }, - { cap: false, pop: 0.022, lat: -32.0441665649414, lon: 115.9345703125, country: "Australia", name: "Fremantle" }, - { cap: false, pop: 0.495, lat: 5.34999990463257, lon: 100.547142028809, country: "Malaysia", name: "George Town" }, - { cap: false, pop: 0.001, lat: 69.3831405639648, lon: -53.6300010681152, country: "Greenland", name: "Godhavn" }, - { cap: true, pop: 0.012, lat: 64.2711868286133, lon: -51.5800018310547, country: "Greenland", name: "Godthab" }, - { cap: false, pop: 0.296, lat: 44.6300010681152, lon: -63.5800018310547, country: "Canada", name: "Halifax" }, - { cap: false, pop: 0.007, lat: 70.3913269042969, lon: 23.9063415527344, country: "Norway", name: "Hammerfest" }, - { cap: false, pop: 0.000, lat: 67.3499984741211, lon: 86.5500030517578, country: "Russia", name: "Igarka" }, - { cap: false, pop: 0.019, lat: 27.2000007629395, lon: 2.52999997138977, country: "Algeria", name: "In Salah" }, - { cap: false, pop: 0.003, lat: 68.2699966430664, lon: -133.669998168945, country: "Canada", name: "Inuvik" }, - { cap: false, pop: 0.050, lat: -4.94999980926514, lon: 30, country: "Tanzania", name: "Kigoma" }, - { cap: false, pop: 0.069, lat: 61.1500015258789, lon: 47, country: "Russia", name: "Kotlas" }, - { cap: false, pop: 0.094, lat: 27, lon: -13.1800003051758, country: "W Sahara", name: "Laayoune" }, - { cap: false, pop: 0.217, lat: 1.420086145401, lon: 124.884239196777, country: "Indonesia", name: "Manado" }, - { cap: false, pop: 0.306, lat: 12.9499998092651, lon: 75.1608810424805, country: "India", name: "Mangalore" }, - { cap: false, pop: 0.535, lat: 31.1499996185303, lon: -8, country: "Morocco", name: "Marrakech" }, - { cap: true, pop: 0.038, lat: -26.3033809661865, lon: 31.1912975311279, country: "Swaziland", name: "Mbabne" }, - { cap: false, pop: 0.449, lat: 32.8827476501465, lon: 129.857467651367, country: "Japan", name: "Nagasaki" }, - { cap: false, pop: 0.510, lat: -5.78000020980835, lon: -35.25, country: "Brazil", name: "Natal" }, - { cap: false, pop: 0.033, lat: -41.2999992370605, lon: 173.270004272461, country: "New Zealand", name: "Nelson" }, - { cap: false, pop: 0.004, lat: 64.5862808227539, lon: -165.270004272461, country: "US", name: "Nome" }, - { cap: false, pop: 0.174, lat: 69.3300018310547, lon: 88.0999984741211, country: "Russia", name: "Noril`sk" }, - { cap: false, pop: 0.022, lat: 20.8999996185303, lon: -16.825647354126, country: "Mauritania", name: "Nouadnibou" }, - { cap: false, pop: 0.600, lat: 53.7000007629395, lon: 87.1699981689453, country: "Russia", name: "Novokuznetsk" }, - { cap: false, pop: 0.097, lat: 46.9199981689453, lon: -122.879997253418, country: "US", name: "Olympia" }, - { cap: false, pop: 0.297, lat: -0.917578816413879, lon: 100.475059509277, country: "Indonesia", name: "Padang" }, - { cap: false, pop: 0.787, lat: -3, lon: 104.830001831055, country: "Indonesia", name: "Palembang" }, - { cap: false, pop: 0.155, lat: 38.1412391662598, lon: 21.8831691741943, country: "Greece", name: "Patras" }, - { cap: false, pop: 0.269, lat: 53.2000007629395, lon: 158.720001220703, country: "Russia", name: "Petropavloski-Kamchatskiy" }, - { cap: true, pop: 0.083, lat: 42.5, lon: 19.3999996185303, country: "Montenegro", name: "Podgorica" }, - { cap: false, pop: 0.294, lat: -4.63870811462402, lon: 12.0580930709839, country: "Congo", name: "Pointe Noire" }, - { cap: false, pop: 0.124, lat: -0.819999992847443, lon: 9.15334415435791, country: "Gabon", name: "Port Gentil" }, - { cap: false, pop: 0.016, lat: 54.420280456543, lon: -130.048080444336, country: "Canada", name: "Prince Rupert" }, - { cap: false, pop: 0.121, lat: 45.338134765625, lon: -65.6499481201172, country: "Canada", name: "Saint John" }, - { cap: false, pop: 0.091, lat: 15.9512100219727, lon: -16.2978382110596, country: "Senegal", name: "Saint Louis" }, - { cap: false, pop: 0.000, lat: 66.5699996948242, lon: 66.5800018310547, country: "Russia", name: "Salekhard" }, - { cap: false, pop: 0.241, lat: 41.3199996948242, lon: 36.3699989318848, country: "Turkey", name: "Samsun" }, - { cap: false, pop: 0.600, lat: -2.5, lon: -44.4300575256348, country: "Brazil", name: "Sao Luis" }, - { cap: true, pop: 0.341, lat: 43.8699989318848, lon: 18.4300003051758, country: "Bosnia/Herz", name: "Sarajevo" }, - { cap: false, pop: 0.000, lat: 70.5285720825195, lon: -22.9963226318359, country: "Greenland", name: "Scoresbyund" }, - { cap: false, pop: 0.029, lat: 50.2825469970703, lon: -66.4025421142578, country: "Canada", name: "Sept-Iles" }, - { cap: false, pop: 0.003, lat: 60.1199989318848, lon: -149.449996948242, country: "US", name: "Seward" }, - { cap: true, pop: 0.445, lat: 42, lon: 21.5300006866455, country: "Macedonia", name: "Skopje" }, - { cap: false, pop: 0.000, lat: 22.8299999237061, lon: 5.55000019073486, country: "Algeria", name: "Tamanrasset" }, - { cap: false, pop: 0.000, lat: 77.6699981689453, lon: -69, country: "Greenland", name: "Thule" }, - { cap: false, pop: 0.000, lat: 71.6999969482422, lon: 128.75, country: "Russia", name: "Tiksi" }, - { cap: false, pop: 0.055, lat: -23.2901554107666, lon: 44.0190925598145, country: "Madagascar", name: "Toliara" }, - { cap: false, pop: 0.354, lat: -7.92999982833862, lon: -79, country: "Peru", name: "Trujillo" }, - { cap: false, pop: 0.604, lat: 17.75, lon: 83.3300018310547, country: "India", name: "Vishakhapatnam" }, - { cap: false, pop: 0.116, lat: 67.8000030517578, lon: 64.3300018310547, country: "Russia", name: "Vorkuta" }, - { cap: false, pop: 0.230, lat: 31.9699993133545, lon: 54.4500007629395, country: "Iran", name: "Yazd" }, - { cap: false, pop: 0.282, lat: 29.6000003814697, lon: 60.8300018310547, country: "Iran", name: "Zahedan" }, - { cap: false, pop: 0.318, lat: 12.861159324646, lon: 45.1800003051758, country: "Yemen", name: "Aden" }, - { cap: true, pop: 1.500, lat: 9.02999973297119, lon: 38.7000007629395, country: "Ethiopia", name: "Adis Abeba" }, - { cap: true, pop: 1.375, lat: 29.1949901580811, lon: 48.0027770996094, country: "Kuwait", name: "Al Kuwayt" }, - { cap: true, pop: 0.663, lat: -18.8700008392334, lon: 47.5, country: "Madagascar", name: "Antananarivo" }, - { cap: true, pop: 1.250, lat: 24.6499996185303, lon: 46.7700004577637, country: "Saudi Arabia", name: "Ar Riyad" }, - { cap: true, pop: 0.275, lat: 15.3299999237061, lon: 38.9700012207031, country: "Eritrea", name: "Asmara" }, - { cap: true, pop: 0.700, lat: -25.2199993133545, lon: -57.6699981689453, country: "Paraguay", name: "Asuncion" }, - { cap: true, pop: 3.027, lat: 38.1216011047363, lon: 23.6548633575439, country: "Greece", name: "Athens" }, - { cap: false, pop: 1.120, lat: 40.6500015258789, lon: 109.980003356934, country: "China", name: "Baotou" }, - { cap: false, pop: 4.040, lat: 41.5299987792969, lon: 2.17000007629395, country: "Spain", name: "Barcelona" }, - { cap: false, pop: 1.140, lat: 11.0142946243286, lon: -74.6800003051758, country: "Colombia", name: "Barranquilla" }, - { cap: false, pop: 0.292, lat: -19.7692832946777, lon: 35.0231704711914, country: "Mozambique", name: "Beira" }, - { cap: true, pop: 1.675, lat: 33.7799987792969, lon: 35.6579437255859, country: "Lebanon", name: "Beirut" }, - { cap: true, pop: 0.005, lat: 17.1200008392334, lon: -88.8000030517578, country: "Belize", name: "Belmopan" }, - { cap: false, pop: 0.239, lat: 60.3499984741211, lon: 5.49067831039429, country: "Norway", name: "Bergen" }, - { cap: true, pop: 0.109, lat: 11.9109897613525, lon: -15.6499996185303, country: "GuineaBissau", name: "Bissau" }, - { cap: false, pop: 1.790, lat: -33.8040084838867, lon: 18.6904315948486, country: "South Africa", name: "cape Town" }, - { cap: false, pop: 0.625, lat: 51.5, lon: -3.15000009536743, country: "UK", name: "Cardiff" }, - { cap: false, pop: 2.475, lat: 33.5444107055664, lon: -7.53409194946289, country: "Morocco", name: "Casablanca" }, - { cap: true, pop: 0.038, lat: 4.92000007629395, lon: -52.4000015258789, country: "Fr Guiana", name: "Cayenne" }, - { cap: false, pop: 1.392, lat: 22.4799995422363, lon: 91.8327941894531, country: "Bangladesh", name: "Chittagong" }, - { cap: true, pop: 2.050, lat: 7.01999998092651, lon: 80.0883331298828, country: "Sri Lanka", name: "Colombo" }, - { cap: true, pop: 0.800, lat: 9.52000045776367, lon: -12.8000001907349, country: "Guinea", name: "Conakry" }, - { cap: true, pop: 1.428, lat: 14.6300001144409, lon: -16.8480949401855, country: "Senegal", name: "Dakar" }, - { cap: false, pop: 1.405, lat: 39.75, lon: -105.069999694824, country: "US", name: "Denver" }, - { cap: true, pop: 0.595, lat: 38.6300010681152, lon: 68.9000015258789, country: "Tajikistan", name: "Dushanfe" }, - { cap: false, pop: 0.785, lat: 53.5699996948242, lon: -113.269996643066, country: "Canada", name: "Edmonton" }, - { cap: false, pop: 1.871, lat: 30.4699993133545, lon: 30.8500003814697, country: "Egypt", name: "Giza" }, - { cap: true, pop: 0.525, lat: 8.38277053833008, lon: -12.9102764129639, country: "Sierra Leone", name: "Freetown" }, - { cap: true, pop: 0.616, lat: 42.8800010681152, lon: 74.7699966430664, country: "Kyrgyzstan", name: "Frunze" }, - { cap: false, pop: 0.805, lat: 44.4550895690918, lon: 8.92229557037354, country: "Italy", name: "Genova" }, - { cap: true, pop: 0.188, lat: 6.76999998092651, lon: -58.1699981689453, country: "Guyana", name: "Georgetown" }, - { cap: false, pop: 0.711, lat: 57.75, lon: 12, country: "Sweden", name: "Goteborg" }, - { cap: true, pop: 0.890, lat: -17.8299999237061, lon: 31.0200004577637, country: "Zimbabwe", name: "Harare" }, - { cap: true, pop: 2.125, lat: 23.0489521026611, lon: -82.4164505004883, country: "Cuba", name: "Havana" }, - { cap: false, pop: 1.300, lat: 21.6200008392334, lon: 39.3733062744141, country: "Saudi Arabia", name: "Jiddah" }, - { cap: true, pop: 0.460, lat: 0.319999992847443, lon: 32.5800018310547, country: "Uganda", name: "Kampala" }, - { cap: false, pop: 0.538, lat: 11.9200000762939, lon: 8.52000045776367, country: "Nigeria", name: "Kano" }, - { cap: false, pop: 1.845, lat: 22.6734161376953, lon: 120.341484069824, country: "Taiwan", name: "Kao-Hsiung" }, - { cap: false, pop: 5.300, lat: 24.8500003814697, lon: 67.0299987792969, country: "Pakistan", name: "Karachi" }, - { cap: false, pop: 0.601, lat: 48.5299987792969, lon: 135.070007324219, country: "Russia", name: "Khabarovsk" }, - { cap: true, pop: 0.924, lat: 15.5500001907349, lon: 32.5299987792969, country: "Sudan", name: "Khartoum" }, - { cap: true, pop: 0.665, lat: 47, lon: 28.8299999237061, country: "Moldova", name: "Kishinev" }, - { cap: true, pop: 1.685, lat: 55.7200012207031, lon: 12.5500001907349, country: "Denmark", name: "Kobenhavn" }, - { cap: true, pop: 3.800, lat: 6.44999980926514, lon: 3.29999995231628, country: "Nigeria", name: "Lagos" }, - { cap: false, pop: 0.255, lat: 49.3240203857422, lon: 0.219999998807907, country: "France", name: "Le Havre" }, - { cap: true, pop: 0.236, lat: -0.504144549369812, lon: 9.49045658111572, country: "Gabon", name: "Libreville" }, - { cap: true, pop: 0.234, lat: -13.9200000762939, lon: 33.8199996948242, country: "Malawi", name: "Lilongwe" }, - { cap: true, pop: 4.344, lat: -12.0679960250854, lon: -76.8235549926758, country: "Peru", name: "Lima" }, - { cap: true, pop: 2.250, lat: 38.7299995422363, lon: -9.13000011444092, country: "Portugal", name: "Lisboa" }, - { cap: false, pop: 1.525, lat: 53.4226875305176, lon: -2.76683640480042, country: "UK", name: "Liverpool" }, - { cap: true, pop: 0.400, lat: 6.28000020980835, lon: 1.35000002384186, country: "Togo", name: "Lome" }, - { cap: false, pop: 9.764, lat: 34, lon: -118.25, country: "US", name: "Los Angeles" }, - { cap: true, pop: 1.460, lat: -9, lon: 13.4617786407471, country: "Angola", name: "Luanda" }, - { cap: false, pop: 0.543, lat: -11.6800003051758, lon: 27.5499992370605, country: "Zaire", name: "Lumumbashi" }, - { cap: true, pop: 0.536, lat: -15.4300003051758, lon: 28.1700000762939, country: "Zambia", name: "Lusaka" }, - { cap: true, pop: 0.031, lat: 3.64468479156494, lon: 8.81999969482422, country: "Eq Guinea", name: "Malabo" }, - { cap: true, pop: 5.474, lat: 14.5500001907349, lon: 121.173408508301, country: "Philippines", name: "Manila" }, - { cap: false, pop: 1.225, lat: 43.2999992370605, lon: 5.38000011444092, country: "France", name: "Marseille" }, - { cap: true, pop: 0.050, lat: 23.5166397094727, lon: 58.6274795532227, country: "Oman", name: "Masqat" }, - { cap: false, pop: 0.200, lat: 23.3615112304688, lon: -106.269996643066, country: "Mexico", name: "Mazatlan" }, - { cap: false, pop: 0.442, lat: -4.01999998092651, lon: 39.6699981689453, country: "Kenya", name: "Mombasa" }, - { cap: true, pop: 0.465, lat: 6.51743936538696, lon: -10.7700004577637, country: "Liberia", name: "Monrovia" }, - { cap: true, pop: 1.550, lat: -34.9199981689453, lon: -56.1699981689453, country: "Uruguay", name: "Montevideo" }, - { cap: true, pop: 13.100, lat: 55.75, lon: 37.7000007629395, country: "Russia", name: "Moscow" }, - { cap: true, pop: 1.286, lat: -1.16999995708466, lon: 36.8300018310547, country: "Kenya", name: "Nairobi" }, - { cap: false, pop: 2.875, lat: 40.8300018310547, lon: 14.2700004577637, country: "Italy", name: "Napoli" }, - { cap: false, pop: 16.472, lat: 40.75, lon: -74.0999984741211, country: "US", name: "New York" }, - { cap: false, pop: 0.329, lat: 40.7200012207031, lon: -74.1999969482422, country: "US", name: "Newark" }, - { cap: true, pop: 0.285, lat: 18.0300006866455, lon: -15.7828607559204, country: "Mauritania", name: "Nouakchott" }, - { cap: false, pop: 0.138, lat: 55.574535369873, lon: 9.90299892425537, country: "Denmark", name: "Odense" }, - { cap: false, pop: 0.526, lat: 15.6199998855591, lon: 32.4799995422363, country: "Sudan", name: "Omdurman" }, - { cap: false, pop: 0.629, lat: 35.75, lon: -0.519999980926514, country: "Algeria", name: "Oran" }, - { cap: true, pop: 0.720, lat: 59.9300003051758, lon: 10.7200002670288, country: "Norway", name: "Oslo" }, - { cap: true, pop: 0.442, lat: 12.4799995422363, lon: -1.66999995708466, country: "Burkina Faso", name: "Ouagadouou" }, - { cap: false, pop: 0.724, lat: 38.1300010681152, lon: 13.3999996185303, country: "Italy", name: "Palermo" }, - { cap: true, pop: 0.625, lat: 8.94999980926514, lon: -79.4000015258789, country: "Panama", name: "Panama" }, - { cap: true, pop: 0.241, lat: 5.92999982833862, lon: -55.2299995422363, country: "Suriname", name: "Paramaribo" }, - { cap: false, pop: 0.994, lat: -31.9758644104004, lon: 115.923370361328, country: "Australia", name: "Perth" }, - { cap: true, pop: 0.152, lat: -9.55000019073486, lon: 147.414520263672, country: "Papua N Guin", name: "Port Moresby" }, - { cap: false, pop: 1.225, lat: 41.1500015258789, lon: -8.48794841766357, country: "Portugal", name: "Porto" }, - { cap: false, pop: 0.203, lat: 31.6000003814697, lon: 65.5, country: "Afghanistan", name: "Qandahar" }, - { cap: false, pop: 1.326, lat: 14.6499996185303, lon: 121.029998779297, country: "Philippines", name: "Quezon City" }, - { cap: true, pop: 0.980, lat: 33.9201965332031, lon: -6.74804067611694, country: "Morocco", name: "Rabat" }, - { cap: true, pop: 0.138, lat: 64.3132629394531, lon: -21.336820602417, country: "Iceland", name: "Reykjavik" }, - { cap: true, pop: 1.005, lat: 56.8800010681152, lon: 24.0499992370605, country: "latvia", name: "Riga" }, - { cap: true, pop: 3.175, lat: 41.8800010681152, lon: 12.5200004577637, country: "Italy", name: "Roma" }, - { cap: false, pop: 2.050, lat: -12.6002569198608, lon: -38.4799995422363, country: "Brazil", name: "Salvador" }, - { cap: false, pop: 0.848, lat: 29.6299991607666, lon: 52.5699996948242, country: "Iran", name: "Shiraz" }, - { cap: true, pop: 1.450, lat: 59.2446327209473, lon: 18.0842685699463, country: "Sweden", name: "Stockholm" }, - { cap: false, pop: 2.028, lat: -7.40000009536743, lon: 112.684371948242, country: "Indonesia", name: "Surabaja" }, - { cap: false, pop: 0.657, lat: 23.1700000762939, lon: 120.230003356934, country: "Taiwan", name: "T`ai-nan" }, - { cap: false, pop: 0.595, lat: 27.9973583221436, lon: -82.5930252075195, country: "US", name: "Tampa" }, - { cap: true, pop: 1.670, lat: 31.9171981811523, lon: 34.8568344116211, country: "Israel", name: "Tel Aviv-Yafo" }, - { cap: false, pop: 0.706, lat: 40.6300010681152, lon: 22.7999992370605, country: "Greece", name: "Thessaloniki" }, - { cap: true, pop: 2.325, lat: 41.247932434082, lon: 69.3498687744141, country: "Uzbekistan", name: "Toshkent" }, - { cap: false, pop: 0.198, lat: 34.3437576293945, lon: 36.0070686340332, country: "Lebanon", name: "Tripoli" }, - { cap: false, pop: 0.675, lat: -32.9000015258789, lon: -71.2993392944336, country: "Chile", name: "Valparaiso" }, - { cap: false, pop: 1.381, lat: 49.274299621582, lon: -122.963066101074, country: "Canada", name: "Vancouver" }, - { cap: false, pop: 0.648, lat: 43.1300010681152, lon: 131.960433959961, country: "Russia", name: "Vladivostok" }, - { cap: false, pop: 0.017, lat: -23.1018676757813, lon: 14.6171045303345, country: "Namibia", name: "Walvis Bay" }, - { cap: true, pop: 0.115, lat: -22.5699996948242, lon: 17.1000003814697, country: "Namibia", name: "Windhoek" }, - { cap: true, pop: 0.350, lat: -41.2103958129883, lon: 175.144943237305, country: "New Zealand", name: "Wellington" }, - { cap: false, pop: 2.077, lat: 47.5885543823242, lon: -122.316650390625, country: "US", name: "Seattle" }, - { cap: false, pop: 2.099, lat: 32.7614593505859, lon: -117.125495910645, country: "US", name: "San Diego" }, - { cap: false, pop: 0.110, lat: -20.2600002288818, lon: -69.9132614135742, country: "Chile", name: "Iquique" }, - { cap: true, pop: 0.243, lat: 24.2360076904297, lon: 54.619270324707, country: "Untd Arab Em", name: "Abu Zaby" }, - { cap: false, pop: 0.199, lat: 7.57660102844238, lon: -72.0054550170898, country: "Venezuela", name: "San Cristobal" }, - { cap: false, pop: 0.509, lat: 46.25, lon: 48, country: "Russia", name: "Astrakhan" }, - { cap: false, pop: 0.000, lat: 30.1386032104492, lon: 9.81835079193115, country: "Libya", name: "Ghadamis" }, - { cap: false, pop: 0.077, lat: -31.3051528930664, lon: -57.7087745666504, country: "Uruguay", name: "Salto" }, - { cap: false, pop: 0.012, lat: 62.5206146240234, lon: -114.061363220215, country: "Canada", name: "Yellowknife" }, - { cap: false, pop: 0.043, lat: 19.7148151397705, lon: -155.067291259766, country: "US", name: "Hilo" }, - { cap: false, pop: 0.763, lat: 21.3211765289307, lon: -157.806182861328, country: "US", name: "Honolulu" }, - { cap: false, pop: 0.184, lat: 61.188648223877, lon: -149.172973632813, country: "US", name: "Anchorage" }, - { cap: false, pop: 0.040, lat: 64.8387451171875, lon: -147.651184082031, country: "US", name: "Fairbanks" }, - { cap: false, pop: 0.020, lat: 58.3910064697266, lon: -134.132476806641, country: "US", name: "Juneau" }, - { cap: false, pop: 0.629, lat: 37.30810546875, lon: -121.847457885742, country: "US", name: "San Jose" }, - { cap: false, pop: 0.386, lat: 28.5581398010254, lon: -105.966636657715, country: "Mexico", name: "Chihuaha" }, - { cap: false, pop: 0.385, lat: 19.0096759796143, lon: -96.0840606689453, country: "Mexico", name: "Veracruz" }, - { cap: false, pop: 0.154, lat: 16.9209060668945, lon: -96.9420394897461, country: "Mexico", name: "Oaxaca" }, - { cap: false, pop: 0.000, lat: 78.1999969482422, lon: 15.6599998474121, country: "Norway", name: "longyearbyen" }, - { cap: true, pop: 5.396, lat: 22.4284057617188, lon: 114.145706176758, country: "UK", name: "Hong Kong" }, - { cap: false, pop: 0.775, lat: 22.3798961639404, lon: 114.230117797852, country: "UK", name: "Kowloon" }, - { cap: false, pop: 3.025, lat: 1.22979354858398, lon: 104.177116394043, country: "Singapore", name: "Singapore" }, - ]; - - this.capitals = this.locations.filter(city => city.cap); - this.cities = this.locations.filter(city => !city.cap); - return this.locations - } -} -``` - - - - - -```razor - public static class WorldLocations - { - public static List GetAll() - { - return WorldLocations.Init(); - } - - public static List GetCities() - { - List all = WorldLocations.Init(); - return all.Where(c => c.Cap == false).ToList(); - } - - public static List GetCapitals() - { - List all = WorldLocations.Init(); - return all.Where(c => c.Cap == true).ToList(); - } - - public static List Init() - { - List cities = new List() { - // console.log("WorldLocations init"); - new WorldCity() { Cap = false, Pop = 0.468, Lat = 68.9635467529297, Lon = 33.0860404968262, Country = "Russia", Name = "Murmansk" }, - new WorldCity() { Cap = false, Pop = 0.416, Lat = 64.5206680297852, Lon = 40.6461601257324, Country = "Russia", Name = "Arkhangelsk" }, - new WorldCity() { Cap = false, Pop = 5.825, Lat = 59.9518890380859, Lon = 30.4533271789551, Country = "Russia", Name = "Saint Petersburg" }, - new WorldCity() { Cap = false, Pop = 0.152, Lat = 59.5709991455078, Lon = 150.780014038086, Country = "Russia", Name = "Magadan" }, - new WorldCity() { Cap = false, Pop = 1.160, Lat = 58.0002365112305, Lon = 56.2324638366699, Country = "Russia", Name = "Perm'" }, - new WorldCity() { Cap = false, Pop = 1.620, Lat = 56.8465423583984, Lon = 60.6101303100586, Country = "Russia", Name = "Yekaterinburg" }, - new WorldCity() { Cap = false, Pop = 2.025, Lat = 56.2896766662598, Lon = 43.9406700134277, Country = "Russia", Name = "Nizhniy Novgorod" }, - new WorldCity() { Cap = false, Pop = 1.800, Lat = 55.8628082275391, Lon = -4.26994752883911, Country = "UK", Name = "Glasgow" }, - new WorldCity() { Cap = false, Pop = 1.140, Lat = 55.7330055236816, Lon = 49.1454658508301, Country = "Russia", Name = "Kazan'" }, - new WorldCity() { Cap = false, Pop = 1.325, Lat = 55.1450004577637, Lon = 61.3926124572754, Country = "Russia", Name = "Chelyabinsk" }, - new WorldCity() { Cap = false, Pop = 1.175, Lat = 55.063304901123, Lon = 73.2502899169922, Country = "Russia", Name = "Omsk" }, - new WorldCity() { Cap = false, Pop = 1.600, Lat = 55.0321006774902, Lon = 82.9428482055664, Country = "Russia", Name = "Novosibirsk" }, - new WorldCity() { Cap = false, Pop = 1.100, Lat = 54.8217353820801, Lon = 56.0961265563965, Country = "Russia", Name = "Ufa" }, - new WorldCity() { Cap = true, Pop = 0.582, Lat = 54.6885681152344, Lon = 25.2759666442871, Country = "Lithuania", Name = "Vilnius" }, - new WorldCity() { Cap = false, Pop = 0.685, Lat = 54.5869255065918, Lon = -5.90966033935547, Country = "UK", Name = "Belfast" }, - new WorldCity() { Cap = false, Pop = 0.909, Lat = 54.3662033081055, Lon = 18.624942779541, Country = "Poland", Name = "Gdansk" }, - new WorldCity() { Cap = true, Pop = 1.650, Lat = 53.8999366760254, Lon = 27.5755672454834, Country = "Byelarus", Name = "Minsk" }, - new WorldCity() { Cap = false, Pop = 1.540, Lat = 53.8087120056152, Lon = -1.49752748012543, Country = "UK", Name = "Leeds" }, - new WorldCity() { Cap = false, Pop = 2.225, Lat = 53.5711212158203, Lon = 10.027606010437, Country = "Germany", Name = "Hamburg" }, - new WorldCity() { Cap = false, Pop = 2.775, Lat = 53.479663848877, Lon = -2.26177859306335, Country = "UK", Name = "Manchester" }, - new WorldCity() { Cap = false, Pop = 0.710, Lat = 53.3740425109863, Lon = -1.46298921108246, Country = "UK", Name = "Sheffield" }, - new WorldCity() { Cap = true, Pop = 1.140, Lat = 53.3415603637695, Lon = -6.25734663009644, Country = "Ireland", Name = "Dublin" }, - new WorldCity() { Cap = false, Pop = 1.505, Lat = 53.1385955810547, Lon = 50.0961799621582, Country = "Russia", Name = "Samara" }, - new WorldCity() { Cap = false, Pop = 0.800, Lat = 53.0801048278809, Lon = 8.85762596130371, Country = "Germany", Name = "Bremen" }, - new WorldCity() { Cap = true, Pop = 5.061, Lat = 52.5162734985352, Lon = 13.3275728225708, Country = "Germany", Name = "Berlin" }, - new WorldCity() { Cap = false, Pop = 2.675, Lat = 52.4927520751953, Lon = -1.86334776878357, Country = "UK", Name = "Birmingham" }, - new WorldCity() { Cap = true, Pop = 1.860, Lat = 52.3730430603027, Lon = 4.89483308792114, Country = "Netherlands", Name = "Amsterdam" }, - new WorldCity() { Cap = false, Pop = 0.626, Lat = 52.3174324035645, Lon = 104.247833251953, Country = "Russia", Name = "Irkutsk" }, - new WorldCity() { Cap = true, Pop = 2.323, Lat = 52.244945526123, Lon = 21.0118789672852, Country = "Poland", Name = "Warsaw" }, - new WorldCity() { Cap = false, Pop = 1.110, Lat = 51.925594329834, Lon = 4.48515224456787, Country = "Netherlands", Name = "Rotterdam" }, - new WorldCity() { Cap = false, Pop = 1.061, Lat = 51.7779083251953, Lon = 19.4764404296875, Country = "Poland", Name = "Lodz" }, - new WorldCity() { Cap = false, Pop = 0.568, Lat = 51.5138130187988, Lon = 7.46641826629639, Country = "Germany", Name = "Dortmund" }, - new WorldCity() { Cap = false, Pop = 0.515, Lat = 51.4893379211426, Lon = 6.77530431747437, Country = "Germany", Name = "Duisburg" }, - new WorldCity() { Cap = true, Pop = 11.100, Lat = 51.4879112243652, Lon = -0.177998125553131, Country = "UK", Name = "london" }, - new WorldCity() { Cap = false, Pop = 3.867, Lat = 51.3540420532227, Lon = 7.12243509292603, Country = "Germany", Name = "Essen" }, - new WorldCity() { Cap = false, Pop = 0.700, Lat = 51.3493309020996, Lon = 12.3980741500854, Country = "Germany", Name = "Leipzig" }, - new WorldCity() { Cap = false, Pop = 1.100, Lat = 51.207347869873, Lon = 4.42605447769165, Country = "Belgium", Name = "Antwerpen" }, - new WorldCity() { Cap = false, Pop = 0.640, Lat = 51.1218185424805, Lon = 17.0381278991699, Country = "Poland", Name = "Wroclaw" }, - new WorldCity() { Cap = false, Pop = 0.465, Lat = 51.0475540161133, Lon = 3.73629117012024, Country = "Belgium", Name = "Gent" }, - new WorldCity() { Cap = false, Pop = 0.670, Lat = 51.0456809997559, Lon = 13.7053575515747, Country = "Germany", Name = "Dresden" }, - new WorldCity() { Cap = false, Pop = 0.671, Lat = 51.0299987792969, Lon = -114.050003051758, Country = "Canada", Name = "Calgary" }, - new WorldCity() { Cap = false, Pop = 1.760, Lat = 50.9423446655273, Lon = 6.93487167358398, Country = "Germany", Name = "Koln" }, - new WorldCity() { Cap = true, Pop = 2.385, Lat = 50.8370475769043, Lon = 4.36761236190796, Country = "Belgium", Name = "Bruxelles" }, - new WorldCity() { Cap = false, Pop = 0.570, Lat = 50.7345581054688, Lon = 7.09981870651245, Country = "Germany", Name = "Bonn" }, - new WorldCity() { Cap = false, Pop = 1.020, Lat = 50.6320838928223, Lon = 3.06290125846863, Country = "France", Name = "Lille" }, - new WorldCity() { Cap = false, Pop = 0.750, Lat = 50.6225280761719, Lon = 5.56943559646606, Country = "Belgium", Name = "Liege" }, - new WorldCity() { Cap = true, Pop = 2.900, Lat = 50.4481582641602, Lon = 30.5021114349365, Country = "Ukraine", Name = "Kiev" }, - new WorldCity() { Cap = false, Pop = 1.855, Lat = 50.129997253418, Lon = 8.66816711425781, Country = "Germany", Name = "Frankfurt am Main" }, - new WorldCity() { Cap = true, Pop = 1.325, Lat = 50.1058959960938, Lon = 14.4565200805664, Country = "Czech Repub", Name = "Prague" }, - new WorldCity() { Cap = false, Pop = 0.828, Lat = 50.0622406005859, Lon = 19.9450569152832, Country = "Poland", Name = "Krakow" }, - new WorldCity() { Cap = false, Pop = 0.625, Lat = 49.9211692810059, Lon = -97.1244430541992, Country = "Canada", Name = "Winnipeg" }, - new WorldCity() { Cap = false, Pop = 0.614, Lat = 49.879207611084, Lon = 73.20263671875, Country = "Kazakhstan", Name = "Karaganda" }, - new WorldCity() { Cap = false, Pop = 0.790, Lat = 49.8373107910156, Lon = 24.0345211029053, Country = "Ukraine", Name = "Lvov" }, - new WorldCity() { Cap = false, Pop = 0.450, Lat = 49.2029800415039, Lon = 16.6162452697754, Country = "Czech Repub", Name = "Brno" }, - new WorldCity() { Cap = true, Pop = 9.775, Lat = 48.8815536499023, Lon = 2.43283271789551, Country = "France", Name = "Paris" }, - new WorldCity() { Cap = false, Pop = 1.360, Lat = 48.7102470397949, Lon = 44.4836311340332, Country = "Russia", Name = "Volgograd" }, - new WorldCity() { Cap = false, Pop = 0.400, Lat = 48.5834350585938, Lon = 7.76799440383911, Country = "France", Name = "Strasbourg" }, - new WorldCity() { Cap = false, Pop = 0.335, Lat = 48.2975959777832, Lon = 14.2939014434814, Country = "Austria", Name = "Linz" }, - new WorldCity() { Cap = true, Pop = 1.875, Lat = 48.2021179199219, Lon = 16.3209857940674, Country = "Austria", Name = "Vienna" }, - new WorldCity() { Cap = false, Pop = 1.955, Lat = 48.1409759521484, Lon = 11.5429534912109, Country = "Germany", Name = "Munchen" }, - new WorldCity() { Cap = false, Pop = 2.200, Lat = 48.0401458740234, Lon = 37.7370529174805, Country = "Ukraine", Name = "Donets'k" }, - new WorldCity() { Cap = true, Pop = 0.548, Lat = 47.928596496582, Lon = 106.912353515625, Country = "Mongolia", Name = "Ulaanbaatar" }, - new WorldCity() { Cap = true, Pop = 2.565, Lat = 47.5146255493164, Lon = 19.0942497253418, Country = "Hungary", Name = "Budapest" }, - new WorldCity() { Cap = false, Pop = 1.150, Lat = 47.3440055847168, Lon = 123.964965820313, Country = "China", Name = "Qiqihar" }, - new WorldCity() { Cap = false, Pop = 0.185, Lat = 47.2654609680176, Lon = 11.3499822616577, Country = "Austria", Name = "Innsbruck" }, - new WorldCity() { Cap = false, Pop = 1.165, Lat = 47.2320976257324, Lon = 39.6880378723145, Country = "Russia", Name = "Rostov-na-Donu" }, - new WorldCity() { Cap = false, Pop = 0.465, Lat = 47.2194328308105, Lon = -1.56156122684479, Country = "France", Name = "Nantes" }, - new WorldCity() { Cap = false, Pop = 0.325, Lat = 47.0649223327637, Lon = 15.4311008453369, Country = "Austria", Name = "Graz" }, - new WorldCity() { Cap = true, Pop = 0.299, Lat = 46.9482078552246, Lon = 7.44573640823364, Country = "Switzerland", Name = "Bern" }, - new WorldCity() { Cap = false, Pop = 0.603, Lat = 46.802074432373, Lon = -71.2449340820313, Country = "Canada", Name = "Quebec" }, - new WorldCity() { Cap = false, Pop = 1.185, Lat = 46.5722007751465, Lon = 30.6839370727539, Country = "Ukraine", Name = "Odessa" }, - new WorldCity() { Cap = false, Pop = 2.670, Lat = 45.7552185058594, Lon = 126.622634887695, Country = "China", Name = "Harbin" }, - new WorldCity() { Cap = false, Pop = 1.275, Lat = 45.7470817565918, Lon = 4.85540056228638, Country = "France", Name = "Lyon" }, - new WorldCity() { Cap = false, Pop = 2.921, Lat = 45.541015625, Lon = -73.6535339355469, Country = "Canada", Name = "Montreal" }, - new WorldCity() { Cap = false, Pop = 3.750, Lat = 45.4733810424805, Lon = 9.19046401977539, Country = "Italy", Name = "Milano" }, - new WorldCity() { Cap = false, Pop = 0.420, Lat = 45.4247741699219, Lon = 12.370719909668, Country = "Italy", Name = "Venezia" }, - new WorldCity() { Cap = true, Pop = 0.819, Lat = 45.3742179870605, Lon = -75.650749206543, Country = "Canada", Name = "Ottawa" }, - new WorldCity() { Cap = false, Pop = 1.550, Lat = 45.0748748779297, Lon = 7.66642618179321, Country = "Italy", Name = "Torino" }, - new WorldCity() { Cap = false, Pop = 2.012, Lat = 44.924186706543, Lon = -93.3077926635742, Country = "US", Name = "Minneapolis" }, - new WorldCity() { Cap = false, Pop = 0.640, Lat = 44.8414726257324, Lon = -0.599498748779297, Country = "France", Name = "Bordeaux" }, - new WorldCity() { Cap = true, Pop = 1.400, Lat = 44.7996826171875, Lon = 20.4125556945801, Country = "Serbia", Name = "Beograd" }, - new WorldCity() { Cap = true, Pop = 2.250, Lat = 44.4304847717285, Lon = 26.1229763031006, Country = "Romania", Name = "Bucuresti" }, - new WorldCity() { Cap = false, Pop = 1.740, Lat = 43.8813171386719, Lon = 125.312652587891, Country = "China", Name = "Changchung" }, - new WorldCity() { Cap = false, Pop = 1.170, Lat = 43.8502159118652, Lon = 126.56706237793, Country = "China", Name = "Jilin" }, - new WorldCity() { Cap = false, Pop = 1.040, Lat = 43.7826652526855, Lon = 87.5865173339844, Country = "China", Name = "Urumqi" }, - new WorldCity() { Cap = false, Pop = 0.640, Lat = 43.7815742492676, Lon = 11.207745552063, Country = "Italy", Name = "Firenze" }, - new WorldCity() { Cap = false, Pop = 3.427, Lat = 43.7207679748535, Lon = -79.4126358032227, Country = "Canada", Name = "Toronto" }, - new WorldCity() { Cap = false, Pop = 0.541, Lat = 43.5999603271484, Lon = 1.43798303604126, Country = "France", Name = "Toulouse" }, - new WorldCity() { Cap = false, Pop = 0.985, Lat = 43.2821578979492, Lon = -2.97378325462341, Country = "Spain", Name = "Bilbao" }, - new WorldCity() { Cap = true, Pop = 1.190, Lat = 43.2550621032715, Lon = 76.9126281738281, Country = "Kazakhstan", Name = "Almaty" }, - new WorldCity() { Cap = false, Pop = 0.816, Lat = 43.2104644775391, Lon = -77.635612487793, Country = "US", Name = "Rochester" }, - new WorldCity() { Cap = false, Pop = 1.375, Lat = 43.0679473876953, Lon = -87.9907379150391, Country = "US", Name = "Milwaukee" }, - new WorldCity() { Cap = false, Pop = 1.900, Lat = 43.0552520751953, Lon = 141.345474243164, Country = "Japan", Name = "Sapporo" }, - new WorldCity() { Cap = false, Pop = 1.483, Lat = 42.8986625671387, Lon = -78.8484344482422, Country = "US", Name = "Buffalo" }, - new WorldCity() { Cap = true, Pop = 1.205, Lat = 42.7072639465332, Lon = 23.3318710327148, Country = "Bulgaria", Name = "Sofia" }, - new WorldCity() { Cap = false, Pop = 4.692, Lat = 42.3943138122559, Lon = -83.0789260864258, Country = "US", Name = "Detroit" }, - new WorldCity() { Cap = false, Pop = 3.972, Lat = 42.3752975463867, Lon = -71.1025848388672, Country = "US", Name = "Boston" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 41.8591575622559, Lon = 123.905570983887, Country = "China", Name = "Fushun" }, - new WorldCity() { Cap = false, Pop = 7.717, Lat = 41.826545715332, Lon = -87.6413040161133, Country = "US", Name = "Chicago" }, - new WorldCity() { Cap = false, Pop = 3.840, Lat = 41.8021621704102, Lon = 123.383056640625, Country = "China", Name = "Shenyang" }, - new WorldCity() { Cap = true, Pop = 1.460, Lat = 41.721809387207, Lon = 44.7831268310547, Country = "Georgia", Name = "Tbilisi" }, - new WorldCity() { Cap = false, Pop = 0.575, Lat = 41.6512641906738, Lon = -0.878205060958862, Country = "Spain", Name = "Zaragoza" }, - new WorldCity() { Cap = false, Pop = 2.218, Lat = 41.3907165527344, Lon = -81.7275085449219, Country = "US", Name = "Cleveland" }, - new WorldCity() { Cap = true, Pop = 0.211, Lat = 41.3316535949707, Lon = 19.8318042755127, Country = "Albania", Name = "Tirane" }, - new WorldCity() { Cap = false, Pop = 1.300, Lat = 41.1152458190918, Lon = 122.977012634277, Country = "China", Name = "Anshan" }, - new WorldCity() { Cap = false, Pop = 5.750, Lat = 41.0659561157227, Lon = 29.0060691833496, Country = "Turkey", Name = "Istanbul" }, - new WorldCity() { Cap = false, Pop = 0.682, Lat = 40.693920135498, Lon = -111.89217376709, Country = "US", Name = "Salt Lake City" }, - new WorldCity() { Cap = false, Pop = 2.219, Lat = 40.4972038269043, Lon = -79.9970855712891, Country = "US", Name = "Pittsburgh" }, - new WorldCity() { Cap = true, Pop = 4.650, Lat = 40.4422187805176, Lon = -3.69096946716309, Country = "Spain", Name = "Madrid" }, - new WorldCity() { Cap = true, Pop = 2.020, Lat = 40.3242988586426, Lon = 49.8162384033203, Country = "Azerbaijan", Name = "Baku" }, - new WorldCity() { Cap = true, Pop = 1.315, Lat = 40.2080230712891, Lon = 44.5326690673828, Country = "Armenia", Name = "Yerevan" }, - new WorldCity() { Cap = false, Pop = 0.964, Lat = 40.0446434020996, Lon = -82.9927062988281, Country = "US", Name = "Columbus" }, - new WorldCity() { Cap = true, Pop = 2.400, Lat = 39.929328918457, Lon = 32.853271484375, Country = "Turkey", Name = "Ankara" }, - new WorldCity() { Cap = false, Pop = 5.209, Lat = 39.9275512695313, Lon = -75.2182235717773, Country = "US", Name = "Philadelphia" }, - new WorldCity() { Cap = true, Pop = 6.450, Lat = 39.906192779541, Lon = 116.388038635254, Country = "China", Name = "Beijing" }, - new WorldCity() { Cap = false, Pop = 0.246, Lat = 39.9044532775879, Lon = 41.2918243408203, Country = "Turkey", Name = "Erzurum" }, - new WorldCity() { Cap = false, Pop = 0.366, Lat = 39.6575813293457, Lon = 66.9476013183594, Country = "Uzbekistan", Name = "Samarkand" }, - new WorldCity() { Cap = false, Pop = 1.060, Lat = 39.6154441833496, Lon = 118.180213928223, Country = "China", Name = "Tangshan" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 39.4709167480469, Lon = -0.367400944232941, Country = "Spain", Name = "Valencia" }, - new WorldCity() { Cap = false, Pop = 1.960, Lat = 39.3218841552734, Lon = -76.6183776855469, Country = "US", Name = "Baltimore" }, - new WorldCity() { Cap = false, Pop = 0.305, Lat = 39.2251434326172, Lon = 9.10890960693359, Country = "Italy", Name = "Cagliari" }, - new WorldCity() { Cap = false, Pop = 1.480, Lat = 39.1480102539063, Lon = -84.4770202636719, Country = "US", Name = "Cincinnati" }, - new WorldCity() { Cap = false, Pop = 4.880, Lat = 39.1284141540527, Lon = 117.18522644043, Country = "China", Name = "Tianjin" }, - new WorldCity() { Cap = true, Pop = 1.600, Lat = 39.0285148620605, Lon = 125.757514953613, Country = "Korea D P Rp", Name = "Pyongyang" }, - new WorldCity() { Cap = false, Pop = 1.272, Lat = 38.9941177368164, Lon = -94.6265640258789, Country = "US", Name = "Kansas City" }, - new WorldCity() { Cap = true, Pop = 3.221, Lat = 38.8909111022949, Lon = -76.9538345336914, Country = "US", Name = "Washington D.C." }, - new WorldCity() { Cap = false, Pop = 2.203, Lat = 38.6388854980469, Lon = -90.3419799804688, Country = "US", Name = "St. Louis" }, - new WorldCity() { Cap = false, Pop = 0.866, Lat = 38.5670166015625, Lon = -121.422706604004, Country = "US", Name = "Sacramento" }, - new WorldCity() { Cap = false, Pop = 0.971, Lat = 38.0809783935547, Lon = 46.2901191711426, Country = "Iran", Name = "Tabriz" }, - new WorldCity() { Cap = false, Pop = 1.190, Lat = 38.0770950317383, Lon = 114.559707641602, Country = "China", Name = "Shijiazhuang" }, - new WorldCity() { Cap = true, Pop = 0.398, Lat = 37.9504203796387, Lon = 58.3901329040527, Country = "Turkmenistan", Name = "Ashkhabad" }, - new WorldCity() { Cap = false, Pop = 1.660, Lat = 37.8930549621582, Lon = 112.551704406738, Country = "China", Name = "Taiyuan" }, - new WorldCity() { Cap = true, Pop = 15.850, Lat = 37.542350769043, Lon = 126.935249328613, Country = "Korea Rep", Name = "Seoul" }, - new WorldCity() { Cap = false, Pop = 0.945, Lat = 37.3726463317871, Lon = -5.97083187103271, Country = "Spain", Name = "Sevilla" }, - new WorldCity() { Cap = false, Pop = 0.778, Lat = 36.9999809265137, Lon = 35.3243637084961, Country = "Turkey", Name = "Adana" }, - new WorldCity() { Cap = false, Pop = 0.796, Lat = 36.8792915344238, Lon = -76.2685699462891, Country = "US", Name = "Norfolk" }, - new WorldCity() { Cap = true, Pop = 1.225, Lat = 36.8188133239746, Lon = 10.1659603118896, Country = "Tunisia", Name = "Tunis" }, - new WorldCity() { Cap = false, Pop = 0.830, Lat = 36.7914962768555, Lon = 118.062042236328, Country = "China", Name = "Zibo" }, - new WorldCity() { Cap = false, Pop = 1.460, Lat = 36.6555366516113, Lon = 116.967056274414, Country = "China", Name = "Jinan" }, - new WorldCity() { Cap = false, Pop = 0.571, Lat = 36.3355674743652, Lon = 43.1371269226074, Country = "Iraq", Name = "Mosul" }, - new WorldCity() { Cap = false, Pop = 1.464, Lat = 36.2900695800781, Lon = 59.596851348877, Country = "Iran", Name = "Mashhad" }, - new WorldCity() { Cap = false, Pop = 1.216, Lat = 36.2155456542969, Lon = 37.1592826843262, Country = "Syria", Name = "Aleppo" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 36.1134300231934, Lon = 103.599594116211, Country = "China", Name = "Lanzhou" }, - new WorldCity() { Cap = false, Pop = 2.206, Lat = 35.8635368347168, Lon = 128.591384887695, Country = "Korea Rep", Name = "Taegu" }, - new WorldCity() { Cap = true, Pop = 6.400, Lat = 35.7744750976563, Lon = 51.4476509094238, Country = "Iran", Name = "Tehran" }, - new WorldCity() { Cap = true, Pop = 23.620, Lat = 35.6830558776855, Lon = 139.809188842773, Country = "Japan", Name = "Tokyo" }, - new WorldCity() { Cap = false, Pop = 1.089, Lat = 35.5045700073242, Lon = 139.72721862793, Country = "Japan", Name = "Kawasaki" }, - new WorldCity() { Cap = false, Pop = 0.742, Lat = 35.4895896911621, Lon = -97.5302963256836, Country = "US", Name = "Oklahoma City" }, - new WorldCity() { Cap = false, Pop = 2.993, Lat = 35.437385559082, Lon = 139.619659423828, Country = "Japan", Name = "Yokohama" }, - new WorldCity() { Cap = false, Pop = 0.479, Lat = 35.2058143615723, Lon = -80.8356857299805, Country = "US", Name = "Charlotte" }, - new WorldCity() { Cap = false, Pop = 3.800, Lat = 35.1578674316406, Lon = 129.0546875, Country = "Korea Rep", Name = "Pusan" }, - new WorldCity() { Cap = false, Pop = 4.800, Lat = 35.1549224853516, Lon = 136.920593261719, Country = "Japan", Name = "Nagoya" }, - new WorldCity() { Cap = false, Pop = 0.853, Lat = 35.1147270202637, Lon = -90.0003280639648, Country = "US", Name = "Memphis" }, - new WorldCity() { Cap = false, Pop = 1.479, Lat = 35.0091285705566, Lon = 135.754821777344, Country = "Japan", Name = "Kyoto" }, - new WorldCity() { Cap = false, Pop = 1.170, Lat = 34.757682800293, Lon = 113.641777038574, Country = "China", Name = "Zhengzhou" }, - new WorldCity() { Cap = false, Pop = 0.431, Lat = 34.7338752746582, Lon = 36.7181739807129, Country = "Syria", Name = "Homs" }, - new WorldCity() { Cap = false, Pop = 0.740, Lat = 34.6713485717773, Lon = 112.361236572266, Country = "China", Name = "Luoyang" }, - new WorldCity() { Cap = false, Pop = 15.040, Lat = 34.6355285644531, Lon = 135.519119262695, Country = "Japan", Name = "Osaka" }, - new WorldCity() { Cap = true, Pop = 1.179, Lat = 34.5309066772461, Lon = 69.1367568969727, Country = "Afghanistan", Name = "Kabul" }, - new WorldCity() { Cap = false, Pop = 1.575, Lat = 34.377555847168, Lon = 132.444778442383, Country = "Japan", Name = "Hiroshima" }, - new WorldCity() { Cap = false, Pop = 2.050, Lat = 34.265697479248, Lon = 108.883361816406, Country = "China", Name = "Xian" }, - new WorldCity() { Cap = false, Pop = 0.535, Lat = 34.0435676574707, Lon = -4.99554777145386, Country = "Morocco", Name = "Fes" }, - new WorldCity() { Cap = false, Pop = 1.963, Lat = 33.7957000732422, Lon = -84.3492279052734, Country = "US", Name = "Atlanta" }, - new WorldCity() { Cap = true, Pop = 0.204, Lat = 33.7181510925293, Lon = 73.060546875, Country = "Pakistan", Name = "Islamabad" }, - new WorldCity() { Cap = false, Pop = 0.836, Lat = 33.6058044433594, Lon = 73.0437469482422, Country = "Pakistan", Name = "Rawalpindi" }, - new WorldCity() { Cap = true, Pop = 1.850, Lat = 33.5193023681641, Lon = 36.3134536743164, Country = "Syria", Name = "Damascus" }, - new WorldCity() { Cap = false, Pop = 1.482, Lat = 33.5090217590332, Lon = -112.110260009766, Country = "US", Name = "Phoenix" }, - new WorldCity() { Cap = true, Pop = 3.841, Lat = 33.3340377807617, Lon = 44.397834777832, Country = "Iraq", Name = "Baghdad" }, - new WorldCity() { Cap = false, Pop = 2.727, Lat = 32.763729095459, Lon = -96.663688659668, Country = "US", Name = "Dallas" }, - new WorldCity() { Cap = false, Pop = 0.987, Lat = 32.6513900756836, Lon = 51.6791877746582, Country = "Iran", Name = "Esfahan" }, - new WorldCity() { Cap = false, Pop = 2.290, Lat = 32.0483665466309, Lon = 118.768905639648, Country = "China", Name = "Nanjing" }, - new WorldCity() { Cap = true, Pop = 1.250, Lat = 31.9493827819824, Lon = 35.9329071044922, Country = "Jordan", Name = "Amman" }, - new WorldCity() { Cap = false, Pop = 0.595, Lat = 31.6308898925781, Lon = 74.8715515136719, Country = "India", Name = "Amritsar" }, - new WorldCity() { Cap = false, Pop = 3.025, Lat = 31.5450534820557, Lon = 74.3406753540039, Country = "Pakistan", Name = "Lahore" }, - new WorldCity() { Cap = false, Pop = 1.104, Lat = 31.4089508056641, Lon = 73.0834579467773, Country = "Pakistan", Name = "Faisalabad" }, - new WorldCity() { Cap = false, Pop = 9.300, Lat = 31.2478694915771, Lon = 121.47265625, Country = "China", Name = "Shanghai" }, - new WorldCity() { Cap = false, Pop = 1.810, Lat = 30.6700687408447, Lon = 104.071273803711, Country = "China", Name = "Chengdu" }, - new WorldCity() { Cap = false, Pop = 3.490, Lat = 30.5724983215332, Lon = 114.279220581055, Country = "China", Name = "Wuhan" }, - new WorldCity() { Cap = false, Pop = 0.617, Lat = 30.503490447998, Lon = 47.7608642578125, Country = "Iraq", Name = "Al Basra" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 30.2526245117188, Lon = 120.165077209473, Country = "China", Name = "Hangzhou" }, - new WorldCity() { Cap = true, Pop = 9.300, Lat = 30.0779113769531, Lon = 31.2507972717285, Country = "Egypt", Name = "Cairo" }, - new WorldCity() { Cap = false, Pop = 1.185, Lat = 29.9563789367676, Lon = -90.0986862182617, Country = "US", Name = "New Orleans" }, - new WorldCity() { Cap = false, Pop = 2.755, Lat = 29.7718296051025, Lon = -95.407112121582, Country = "US", Name = "Houston" }, - new WorldCity() { Cap = false, Pop = 0.084, Lat = 29.6507034301758, Lon = 91.1320877075195, Country = "China", Name = "Lhasa" }, - new WorldCity() { Cap = false, Pop = 2.450, Lat = 29.5441036224365, Lon = 106.522689819336, Country = "China", Name = "Chongqing" }, - new WorldCity() { Cap = false, Pop = 0.968, Lat = 29.4299221038818, Lon = -98.5245742797852, Country = "US", Name = "San Antonio" }, - new WorldCity() { Cap = false, Pop = 1.030, Lat = 28.6712398529053, Lon = 115.88941192627, Country = "China", Name = "Nanchang" }, - new WorldCity() { Cap = true, Pop = 0.273, Lat = 28.5687255859375, Lon = 77.2167510986328, Country = "India", Name = "New Delhi" }, - new WorldCity() { Cap = false, Pop = 7.200, Lat = 28.5264587402344, Lon = 77.2243728637695, Country = "India", Name = "Delhi" }, - new WorldCity() { Cap = false, Pop = 1.190, Lat = 28.1976413726807, Lon = 112.968482971191, Country = "China", Name = "Changsha" }, - new WorldCity() { Cap = true, Pop = 0.320, Lat = 27.7120170593262, Lon = 85.3129501342773, Country = "Nepal", Name = "Kathmandu" }, - new WorldCity() { Cap = true, Pop = 0.012, Lat = 27.44260597229, Lon = 89.6673278808594, Country = "Bhutan", Name = "Thimbu" }, - new WorldCity() { Cap = false, Pop = 1.025, Lat = 26.9051132202148, Lon = 75.8012771606445, Country = "India", Name = "Jaipur" }, - new WorldCity() { Cap = false, Pop = 1.060, Lat = 26.8494281768799, Lon = 80.9197235107422, Country = "India", Name = "Lucknow" }, - new WorldCity() { Cap = false, Pop = 1.010, Lat = 26.5719413757324, Lon = 106.700302124023, Country = "China", Name = "Guiyang" }, - new WorldCity() { Cap = false, Pop = 1.875, Lat = 26.4578304290771, Lon = 80.3178634643555, Country = "India", Name = "Kanpur" }, - new WorldCity() { Cap = false, Pop = 0.890, Lat = 26.0710163116455, Lon = 119.303520202637, Country = "China", Name = "Fuzhou" }, - new WorldCity() { Cap = false, Pop = 2.827, Lat = 25.8321304321289, Lon = -80.2702178955078, Country = "US", Name = "Miami" }, - new WorldCity() { Cap = false, Pop = 2.015, Lat = 25.6773529052734, Lon = -100.317085266113, Country = "Mexico", Name = "Monterrey" }, - new WorldCity() { Cap = false, Pop = 1.025, Lat = 25.6138973236084, Lon = 85.1353454589844, Country = "India", Name = "Patna" }, - new WorldCity() { Cap = false, Pop = 0.800, Lat = 25.3801860809326, Lon = 68.3664703369141, Country = "Pakistan", Name = "Hyderabad" }, - new WorldCity() { Cap = false, Pop = 0.925, Lat = 25.2820110321045, Lon = 82.9563369750977, Country = "India", Name = "Benares" }, - new WorldCity() { Cap = true, Pop = 0.310, Lat = 25.2036418914795, Lon = 51.4972343444824, Country = "Qatar", Name = "Doha" }, - new WorldCity() { Cap = false, Pop = 1.280, Lat = 25.0510330200195, Lon = 102.702125549316, Country = "China", Name = "Kunming" }, - new WorldCity() { Cap = true, Pop = 6.130, Lat = 25.0350914001465, Lon = 121.506729125977, Country = "Taiwan", Name = "Taipei" }, - new WorldCity() { Cap = false, Pop = 0.715, Lat = 24.1436424255371, Lon = 120.670280456543, Country = "Taiwan", Name = "T`ai-chung" }, - new WorldCity() { Cap = true, Pop = 3.430, Lat = 23.7099189758301, Lon = 90.4071426391602, Country = "Bangladesh", Name = "Dhaka" }, - new WorldCity() { Cap = false, Pop = 3.050, Lat = 23.0961952209473, Lon = 113.293609619141, Country = "China", Name = "Guangzhou" }, - new WorldCity() { Cap = false, Pop = 2.400, Lat = 23.0397911071777, Lon = 72.5668640136719, Country = "India", Name = "Ahmadabad" }, - new WorldCity() { Cap = false, Pop = 0.648, Lat = 22.8426475524902, Lon = 89.5582427978516, Country = "Bangladesh", Name = "Khulna" }, - new WorldCity() { Cap = false, Pop = 11.100, Lat = 22.5435371398926, Lon = 88.3342208862305, Country = "India", Name = "Calcutta" }, - new WorldCity() { Cap = false, Pop = 0.435, Lat = 22.2432346343994, Lon = -97.8426284790039, Country = "Mexico", Name = "Tampico" }, - new WorldCity() { Cap = false, Pop = 0.533, Lat = 21.975944519043, Lon = 96.0841522216797, Country = "Burma", Name = "Mandalay" }, - new WorldCity() { Cap = false, Pop = 0.550, Lat = 21.4273815155029, Lon = 39.8148384094238, Country = "Saudi Arabia", Name = "Mecca" }, - new WorldCity() { Cap = false, Pop = 1.302, Lat = 21.1557579040527, Lon = 79.089111328125, Country = "India", Name = "Nagpur" }, - new WorldCity() { Cap = true, Pop = 1.500, Lat = 21.0319480895996, Lon = 105.81990814209, Country = "Vietnam", Name = "Hanoi" }, - new WorldCity() { Cap = false, Pop = 0.385, Lat = 20.8613586425781, Lon = 106.679794311523, Country = "Vietnam", Name = "Haiphong" }, - new WorldCity() { Cap = false, Pop = 0.400, Lat = 20.8218688964844, Lon = -89.552864074707, Country = "Mexico", Name = "Merida" }, - new WorldCity() { Cap = false, Pop = 2.325, Lat = 20.6735916137695, Lon = -103.343795776367, Country = "Mexico", Name = "Guadalajara" }, - new WorldCity() { Cap = false, Pop = 0.207, Lat = 19.6157131195068, Lon = 37.2196884155273, Country = "Sudan", Name = "Bur Sudan" }, - new WorldCity() { Cap = true, Pop = 14.100, Lat = 19.4270458221436, Lon = -99.127571105957, Country = "Mexico", Name = "Mexico City" }, - new WorldCity() { Cap = false, Pop = 1.055, Lat = 19.0486316680908, Lon = -98.1929473876953, Country = "Mexico", Name = "Puebla de Zaragoza" }, - new WorldCity() { Cap = false, Pop = 1.775, Lat = 18.5357475280762, Lon = 73.8522720336914, Country = "India", Name = "Pune" }, - new WorldCity() { Cap = true, Pop = 0.880, Lat = 18.5266170501709, Lon = -72.3431091308594, Country = "Haiti", Name = "Port-au-Prince" }, - new WorldCity() { Cap = true, Pop = 1.775, Lat = 18.4006156921387, Lon = -66.0817565917969, Country = "Puerto Rico", Name = "San Juan" }, - new WorldCity() { Cap = true, Pop = 0.770, Lat = 18.0157127380371, Lon = -76.7973022460938, Country = "Jamaica", Name = "Kingston" }, - new WorldCity() { Cap = false, Pop = 2.750, Lat = 17.3945465087891, Lon = 78.4850311279297, Country = "India", Name = "Hyderabad" }, - new WorldCity() { Cap = true, Pop = 2.800, Lat = 16.8722229003906, Lon = 96.1248931884766, Country = "Burma", Name = "Rangoon" }, - new WorldCity() { Cap = true, Pop = 0.427, Lat = 15.3614444732666, Lon = 44.2095031738281, Country = "Yemen", Name = "Sanaa" }, - new WorldCity() { Cap = true, Pop = 1.400, Lat = 14.6180076599121, Lon = -90.52490234375, Country = "Guatemala", Name = "Guatemala" }, - new WorldCity() { Cap = true, Pop = 0.552, Lat = 14.0990505218506, Lon = -87.2030944824219, Country = "Honduras", Name = "Tegucigalpa" }, - new WorldCity() { Cap = true, Pop = 6.450, Lat = 13.7455711364746, Lon = 100.552665710449, Country = "Thailand", Name = "Bangkok" }, - new WorldCity() { Cap = true, Pop = 0.920, Lat = 13.7014122009277, Lon = -89.2002334594727, Country = "El Salvador", Name = "San Salvador" }, - new WorldCity() { Cap = true, Pop = 0.398, Lat = 13.6045436859131, Lon = 2.08344984054565, Country = "Niger", Name = "Niamey" }, - new WorldCity() { Cap = false, Pop = 4.475, Lat = 13.0615034103394, Lon = 80.2478256225586, Country = "India", Name = "Madras" }, - new WorldCity() { Cap = false, Pop = 2.950, Lat = 12.9747505187988, Lon = 77.5877304077148, Country = "India", Name = "Bangalore" }, - new WorldCity() { Cap = true, Pop = 0.646, Lat = 12.6529502868652, Lon = -7.98648166656494, Country = "Mali", Name = "Bamako" }, - new WorldCity() { Cap = true, Pop = 0.682, Lat = 12.1514730453491, Lon = -86.2730331420898, Country = "Nicaragua", Name = "Managua" }, - new WorldCity() { Cap = true, Pop = 0.700, Lat = 11.564736366272, Lon = 104.913192749023, Country = "Cambodia", Name = "Phnom Penh" }, - new WorldCity() { Cap = false, Pop = 3.100, Lat = 10.7591819763184, Lon = 106.662452697754, Country = "Vietnam", Name = "Ho Chi Minh City" }, - new WorldCity() { Cap = false, Pop = 0.891, Lat = 10.6450433731079, Lon = -71.6371459960938, Country = "Venezuela", Name = "Maracaibo" }, - new WorldCity() { Cap = true, Pop = 3.600, Lat = 10.4960489273071, Lon = -66.8982849121094, Country = "Venezuela", Name = "Caracas" }, - new WorldCity() { Cap = false, Pop = 0.498, Lat = 10.0656652450562, Lon = -69.3391952514648, Country = "Venezuela", Name = "Barquisimeto" }, - new WorldCity() { Cap = true, Pop = 0.670, Lat = 9.93047618865967, Lon = -84.07861328125, Country = "Costa Rica", Name = "San Jose" }, - new WorldCity() { Cap = false, Pop = 0.960, Lat = 9.91398620605469, Lon = 78.1217269897461, Country = "India", Name = "Madurai" }, - new WorldCity() { Cap = false, Pop = 1.144, Lat = 7.37884044647217, Lon = 3.8952784538269, Country = "Nigeria", Name = "Ibadan" }, - new WorldCity() { Cap = false, Pop = 0.409, Lat = 7.08008003234863, Lon = 125.613677978516, Country = "Philippines", Name = "Davao" }, - new WorldCity() { Cap = false, Pop = 0.253, Lat = 6.45053863525391, Lon = 7.4920802116394, Country = "Nigeria", Name = "Enugu" }, - new WorldCity() { Cap = false, Pop = 2.095, Lat = 6.24114656448364, Lon = -75.5920333862305, Country = "Colombia", Name = "Medellin" }, - new WorldCity() { Cap = true, Pop = 1.250, Lat = 5.55856275558472, Lon = -0.200923636555672, Country = "Ghana", Name = "Accra" }, - new WorldCity() { Cap = true, Pop = 1.950, Lat = 5.32485723495483, Lon = -4.02188682556152, Country = "Ivory Coast", Name = "Abidjan" }, - new WorldCity() { Cap = true, Pop = 4.260, Lat = 4.63021993637085, Lon = -74.0805130004883, Country = "Colombia", Name = "Bogota" }, - new WorldCity() { Cap = true, Pop = 0.474, Lat = 4.3658561706543, Lon = 18.5623416900635, Country = "Cent Af Rep", Name = "Bangui" }, - new WorldCity() { Cap = true, Pop = 0.654, Lat = 3.86512303352356, Lon = 11.5136413574219, Country = "Cameroon", Name = "Yaounde" }, - new WorldCity() { Cap = false, Pop = 1.374, Lat = 3.58524203300476, Lon = 98.6755981445313, Country = "Indonesia", Name = "Medan" }, - new WorldCity() { Cap = false, Pop = 1.400, Lat = 3.45685529708862, Lon = -76.5224380493164, Country = "Colombia", Name = "Cali" }, - new WorldCity() { Cap = true, Pop = 1.475, Lat = 3.1502103805542, Lon = 101.707672119141, Country = "Malaysia", Name = "Kuala Lumpur" }, - new WorldCity() { Cap = true, Pop = 0.600, Lat = 2.04117751121521, Lon = 45.3441429138184, Country = "Somalia", Name = "Muqdisho" }, - new WorldCity() { Cap = false, Pop = 0.283, Lat = 0.519284904003143, Lon = 25.1961479187012, Country = "Zaire", Name = "Kisangani" }, - new WorldCity() { Cap = true, Pop = 1.050, Lat = -0.229498133063316, Lon = -78.524284362793, Country = "Ecuador", Name = "Quito" }, - new WorldCity() { Cap = false, Pop = 0.179, Lat = -3.75289535522461, Lon = -73.1914901733398, Country = "Peru", Name = "Iquitos" }, - new WorldCity() { Cap = false, Pop = 1.825, Lat = -3.78332185745239, Lon = -38.5889015197754, Country = "Brazil", Name = "Fortaleza" }, - new WorldCity() { Cap = true, Pop = 0.586, Lat = -4.28518676757813, Lon = 15.2851486206055, Country = "Congo", Name = "Brazzaville" }, - new WorldCity() { Cap = false, Pop = 0.291, Lat = -5.89221096038818, Lon = 22.4027786254883, Country = "Zaire", Name = "Kananga" }, - new WorldCity() { Cap = true, Pop = 1.300, Lat = -6.81735897064209, Lon = 39.2533493041992, Country = "Tanzania", Name = "Dar es Salaam" }, - new WorldCity() { Cap = false, Pop = 1.800, Lat = -6.91243028640747, Lon = 107.606903076172, Country = "Indonesia", Name = "Bandung" }, - new WorldCity() { Cap = false, Pop = 2.625, Lat = -8.08516788482666, Lon = -34.9146385192871, Country = "Brazil", Name = "Recife" }, - new WorldCity() { Cap = false, Pop = 0.155, Lat = -12.7177352905273, Lon = 13.464879989624, Country = "Angola", Name = "Benguela" }, - new WorldCity() { Cap = true, Pop = 1.568, Lat = -15.7921094894409, Lon = -47.8977470397949, Country = "Brazil", Name = "Brasilia" }, - new WorldCity() { Cap = false, Pop = 0.447, Lat = -16.3975391387939, Lon = -71.5227432250977, Country = "Peru", Name = "Arequipa" }, - new WorldCity() { Cap = true, Pop = 0.993, Lat = -16.4990062713623, Lon = -68.1462478637695, Country = "Bolivia", Name = "La Paz" }, - new WorldCity() { Cap = false, Pop = 0.990, Lat = -16.7266998291016, Lon = -49.254810333252, Country = "Brazil", Name = "Goiania" }, - new WorldCity() { Cap = false, Pop = 0.442, Lat = -17.7887916564941, Lon = -63.1974182128906, Country = "Bolivia", Name = "Santa Cruz de La Sierra" }, - new WorldCity() { Cap = false, Pop = 0.087, Lat = -19.0421352386475, Lon = -65.2558822631836, Country = "Bolivia", Name = "Sucre" }, - new WorldCity() { Cap = false, Pop = 2.950, Lat = -19.8517208099365, Lon = -43.9090690612793, Country = "Brazil", Name = "Belo Horizonte" }, - new WorldCity() { Cap = false, Pop = 10.150, Lat = -22.7215728759766, Lon = -43.4551773071289, Country = "Brazil", Name = "Rio de Janeiro" }, - new WorldCity() { Cap = false, Pop = 15.175, Lat = -23.5813045501709, Lon = -46.6228981018066, Country = "Brazil", Name = "Sao Paulo" }, - new WorldCity() { Cap = false, Pop = 1.065, Lat = -23.9547004699707, Lon = -46.3094940185547, Country = "Brazil", Name = "Santos" }, - new WorldCity() { Cap = true, Pop = 0.095, Lat = -24.6614418029785, Lon = 25.7948017120361, Country = "Botswana", Name = "Gaborone" }, - new WorldCity() { Cap = false, Pop = 1.700, Lat = -25.4304790496826, Lon = -49.2845077514648, Country = "Brazil", Name = "Curitiba" }, - new WorldCity() { Cap = true, Pop = 0.960, Lat = -25.7313461303711, Lon = 28.2183723449707, Country = "South Africa", Name = "Pretoria" }, - new WorldCity() { Cap = true, Pop = 1.070, Lat = -25.9621543884277, Lon = 32.5736923217773, Country = "Mozambique", Name = "Maputo" }, - new WorldCity() { Cap = false, Pop = 3.650, Lat = -26.1789569854736, Lon = 28.0043087005615, Country = "South Africa", Name = "Johannesburg" }, - new WorldCity() { Cap = false, Pop = 1.149, Lat = -27.4539127349854, Lon = 153.026489257813, Country = "Australia", Name = "Brisbane" }, - new WorldCity() { Cap = false, Pop = 1.550, Lat = -29.8363723754883, Lon = 30.9421882629395, Country = "South Africa", Name = "Durban" }, - new WorldCity() { Cap = false, Pop = 2.600, Lat = -30.0395336151123, Lon = -51.2079887390137, Country = "Brazil", Name = "Porto Alegre" }, - new WorldCity() { Cap = false, Pop = 1.070, Lat = -31.3162784576416, Lon = -64.1798553466797, Country = "Argentina", Name = "Cordoba" }, - new WorldCity() { Cap = false, Pop = 0.292, Lat = -31.6168975830078, Lon = -60.6978416442871, Country = "Argentina", Name = "Santa Fe" }, - new WorldCity() { Cap = false, Pop = 0.650, Lat = -32.8974380493164, Lon = -68.8297348022461, Country = "Argentina", Name = "Mendoza" }, - new WorldCity() { Cap = false, Pop = 1.045, Lat = -32.9377365112305, Lon = -60.6639404296875, Country = "Argentina", Name = "Rosario" }, - new WorldCity() { Cap = true, Pop = 4.100, Lat = -33.475025177002, Lon = -70.6475143432617, Country = "Chile", Name = "Santiago" }, - new WorldCity() { Cap = false, Pop = 0.690, Lat = -33.8815765380859, Lon = 25.4842987060547, Country = "South Africa", Name = "Port Elizabeth" }, - new WorldCity() { Cap = false, Pop = 3.365, Lat = -33.8897743225098, Lon = 151.028198242188, Country = "Australia", Name = "Sydney" }, - new WorldCity() { Cap = true, Pop = 10.750, Lat = -34.6654014587402, Lon = -58.4095916748047, Country = "Argentina", Name = "Buenos Aires" }, - new WorldCity() { Cap = true, Pop = 0.271, Lat = -35.349925994873, Lon = 149.041625976563, Country = "Australia", Name = "Canberra" }, - new WorldCity() { Cap = false, Pop = 0.850, Lat = -36.893253326416, Lon = 174.801055908203, Country = "New Zealand", Name = "Auckland" }, - new WorldCity() { Cap = false, Pop = 2.833, Lat = -37.8529586791992, Lon = 145.075103759766, Country = "Australia", Name = "Melbourne" }, - new WorldCity() { Cap = false, Pop = 0.224, Lat = -38.7252731323242, Lon = -62.2740669250488, Country = "Argentina", Name = "Bahia Blanca" }, - new WorldCity() { Cap = false, Pop = 0.320, Lat = -43.5489158630371, Lon = 172.683654785156, Country = "New Zealand", Name = "Christchurch" }, - new WorldCity() { Cap = true, Pop = 0.900, Lat = 60.1964225769043, Lon = 24.9766998291016, Country = "Finland", Name = "Helsinki" }, - new WorldCity() { Cap = false, Pop = 0.310, Lat = 34.745231628418, Lon = 10.7592582702637, Country = "Tunisia", Name = "Sfax" }, - new WorldCity() { Cap = false, Pop = 1.411, Lat = 34.6638412475586, Lon = 135.181838989258, Country = "Japan", Name = "Kobe" }, - new WorldCity() { Cap = false, Pop = 0.490, Lat = 31.7737464904785, Lon = 35.2252197265625, Country = "Israel", Name = "Jerusalem" }, - new WorldCity() { Cap = false, Pop = 0.616, Lat = 10.1782207489014, Lon = -68.0031127929688, Country = "Venezuela", Name = "Valencia" }, - new WorldCity() { Cap = false, Pop = 1.255, Lat = -2.20381617546082, Lon = -79.9093933105469, Country = "Ecuador", Name = "Guayaquil" }, - new WorldCity() { Cap = false, Pop = 4.054, Lat = 37.7275123596191, Lon = -122.308815002441, Country = "US", Name = "San Francisco" }, - new WorldCity() { Cap = false, Pop = 0.630, Lat = 55.8752517700195, Lon = -3.29878330230713, Country = "UK", Name = "Edinburgh" }, - new WorldCity() { Cap = false, Pop = 0.239, Lat = 45.7002830505371, Lon = 13.9328374862671, Country = "Italy", Name = "Trieste" }, - new WorldCity() { Cap = false, Pop = 1.750, Lat = 33.3099060058594, Lon = 130.317184448242, Country = "Japan", Name = "Fukuoka" }, - new WorldCity() { Cap = false, Pop = 1.525, Lat = 33.6818656921387, Lon = 130.797454833984, Country = "Japan", Name = "Kita Kyushu" }, - new WorldCity() { Cap = true, Pop = 0.303, Lat = 12.1041393280029, Lon = 15.2408237457275, Country = "Chad", Name = "N'Djamena" }, - new WorldCity() { Cap = true, Pop = 0.991, Lat = 32.7516174316406, Lon = 13.2118225097656, Country = "Libya", Name = "Tripoli" }, - new WorldCity() { Cap = false, Pop = 1.550, Lat = 38.4389190673828, Lon = 27.2057685852051, Country = "Turkey", Name = "Izmir" }, - new WorldCity() { Cap = true, Pop = 3.000, Lat = -4.38867473602295, Lon = 15.4692935943604, Country = "Zaire", Name = "Kinshasa" }, - new WorldCity() { Cap = false, Pop = 0.978, Lat = -34.9185371398926, Lon = 138.870681762695, Country = "Australia", Name = "Adelaide" }, - new WorldCity() { Cap = true, Pop = 8.600, Lat = -6.29390430450439, Lon = 106.762466430664, Country = "Indonesia", Name = "Jakarta" }, - new WorldCity() { Cap = false, Pop = 1.025, Lat = -7.02784442901611, Lon = 110.444259643555, Country = "Indonesia", Name = "Semarang" }, - new WorldCity() { Cap = false, Pop = 0.264, Lat = -12.0435400009155, Lon = -76.8356323242188, Country = "Peru", Name = "Callao" }, - new WorldCity() { Cap = false, Pop = 1.200, Lat = -1.60532903671265, Lon = -48.316276550293, Country = "Brazil", Name = "Belem" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 36.1483535766602, Lon = 120.434127807617, Country = "China", Name = "Qingdao" }, - new WorldCity() { Cap = true, Pop = 0.377, Lat = 18.0017318725586, Lon = 102.680236816406, Country = "Laos", Name = "Vientiane" }, - new WorldCity() { Cap = false, Pop = 0.220, Lat = 47.8011703491211, Lon = 13.0908985137939, Country = "Austria", Name = "Salzburg" }, - new WorldCity() { Cap = true, Pop = 0.698, Lat = 45.8070755004883, Lon = 15.9643859863281, Country = "Croatia", Name = "Zagreb" }, - new WorldCity() { Cap = true, Pop = 0.273, Lat = -3.26908373832703, Lon = 29.5335865020752, Country = "Burundi", Name = "Bujumbura" }, - new WorldCity() { Cap = true, Pop = 0.185, Lat = 35.1650695800781, Lon = 33.3851623535156, Country = "Cyprus", Name = "Nicosia" }, - new WorldCity() { Cap = true, Pop = 0.182, Lat = -2.11793518066406, Lon = 29.9914855957031, Country = "Rwanda", Name = "Kigali" }, - new WorldCity() { Cap = true, Pop = 0.233, Lat = 46.068302154541, Lon = 14.639612197876, Country = "Slovenia", Name = "Ljubljana" }, - new WorldCity() { Cap = true, Pop = 0.109, Lat = -29.2567100524902, Lon = 27.8903884887695, Country = "Lesotho", Name = "Maseru" }, - new WorldCity() { Cap = true, Pop = 0.133, Lat = 49.740406036377, Lon = 6.27325582504272, Country = "Luxembourg", Name = "Luxembourg" }, - new WorldCity() { Cap = false, Pop = 0.770, Lat = 51.903621673584, Lon = 4.30062437057495, Country = "Netherlands", Name = "The Hague" }, - new WorldCity() { Cap = true, Pop = 0.435, Lat = 48.2745094299316, Lon = 17.2698059082031, Country = "Slovakia", Name = "Bratislava" }, - new WorldCity() { Cap = false, Pop = 0.201, Lat = 52.1100006103516, Lon = -106.629997253418, Country = "Canada", Name = "Saskatoon" }, - new WorldCity() { Cap = false, Pop = 0.187, Lat = 50.4099998474121, Lon = -104.650001525879, Country = "Canada", Name = "Regina" }, - new WorldCity() { Cap = false, Pop = 1.038, Lat = 31.7800006866455, Lon = -106.449996948242, Country = "US", Name = "El Paso" }, - new WorldCity() { Cap = false, Pop = 0.636, Lat = 30.3299999237061, Lon = -81.6600036621094, Country = "US", Name = "Jacksonville" }, - new WorldCity() { Cap = false, Pop = 0.002, Lat = 51.3300018310547, Lon = -80.7300033569336, Country = "Canada", Name = "Moosonee" }, - new WorldCity() { Cap = false, Pop = 0.002, Lat = 54.8600006103516, Lon = -67.0100021362305, Country = "Canada", Name = "Schefferville" }, - new WorldCity() { Cap = false, Pop = 0.008, Lat = 53.310001373291, Lon = -60.5499992370605, Country = "Canada", Name = "Goose Bay" }, - new WorldCity() { Cap = false, Pop = 0.202, Lat = -8.75, Lon = -63.9000015258789, Country = "Brazil", Name = "Porto Velho" }, - new WorldCity() { Cap = false, Pop = 0.185, Lat = -13.6000003814697, Lon = -71.8600006103516, Country = "Peru", Name = "Cuzco" }, - new WorldCity() { Cap = false, Pop = 0.280, Lat = -15.5500001907349, Lon = -56.0499992370605, Country = "Brazil", Name = "Cuiaba" }, - new WorldCity() { Cap = false, Pop = 0.220, Lat = -27.3999996185303, Lon = -58.9000015258789, Country = "Argentina", Name = "Resistencia" }, - new WorldCity() { Cap = false, Pop = 0.032, Lat = 16.7600002288818, Lon = -3.00999999046326, Country = "Mali", Name = "Tombouctoo" }, - new WorldCity() { Cap = false, Pop = 0.255, Lat = 11.8800001144409, Lon = 13.2600002288818, Country = "Niger", Name = "Maiduguri" }, - new WorldCity() { Cap = false, Pop = 0.145, Lat = -5.80999994277954, Lon = 13.4499998092651, Country = "Zaire", Name = "Matadi" }, - new WorldCity() { Cap = false, Pop = 0.203, Lat = -12.7299995422363, Lon = 15.7799997329712, Country = "Angola", Name = "Huambo" }, - new WorldCity() { Cap = false, Pop = 0.145, Lat = -28.6599998474121, Lon = 24.8299999237061, Country = "South Africa", Name = "Kimberley" }, - new WorldCity() { Cap = false, Pop = 0.320, Lat = -33.0299987792969, Lon = 27.8999996185303, Country = "South Africa", Name = "East london" }, - new WorldCity() { Cap = false, Pop = 0.247, Lat = -7.32999992370605, Lon = 19, Country = "Zaire", Name = "Kahemba" }, - new WorldCity() { Cap = false, Pop = 0.054, Lat = -6.17999982833862, Lon = 35.75, Country = "Tanzania", Name = "Dodoma" }, - new WorldCity() { Cap = false, Pop = 0.019, Lat = 68.3499984741211, Lon = 17.2999992370605, Country = "Norway", Name = "Narvik" }, - new WorldCity() { Cap = false, Pop = 0.160, Lat = 34.4599990844727, Lon = 62.2099990844727, Country = "Afghanistan", Name = "Herat" }, - new WorldCity() { Cap = false, Pop = 0.006, Lat = 55.8800010681152, Lon = 37.75, Country = "Russia", Name = "Druzba" }, - new WorldCity() { Cap = false, Pop = 0.146, Lat = 39.4799995422363, Lon = 76, Country = "China", Name = "Kashi" }, - new WorldCity() { Cap = false, Pop = 9.415, Lat = 24.9799995422363, Lon = 121.529998779297, Country = "Taiwan", Name = "Chingmei" }, - new WorldCity() { Cap = false, Pop = 0.166, Lat = 16.4599990844727, Lon = 107.699996948242, Country = "Vietnam", Name = "Hue" }, - new WorldCity() { Cap = false, Pop = 0.073, Lat = 1.5, Lon = 110.430000305176, Country = "Malaysia", Name = "Kuching" }, - new WorldCity() { Cap = false, Pop = 0.208, Lat = -1.21000003814697, Lon = 116.860000610352, Country = "Indonesia", Name = "Balikpapan" }, - new WorldCity() { Cap = false, Pop = 0.168, Lat = 50.3300018310547, Lon = 110.75, Country = "Russia", Name = "Chatanga" }, - new WorldCity() { Cap = false, Pop = 0.006, Lat = 52.0499992370605, Lon = 113.580001831055, Country = "Russia", Name = "Chita" }, - new WorldCity() { Cap = false, Pop = 0.001, Lat = 67.5800018310547, Lon = 133.410003662109, Country = "Russia", Name = "Verkhoyansk" }, - new WorldCity() { Cap = false, Pop = 0.187, Lat = 62.0099983215332, Lon = 129.830001831055, Country = "Russia", Name = "Yakutsk" }, - new WorldCity() { Cap = false, Pop = 0.006, Lat = 59.3300018310547, Lon = 143.25, Country = "Russia", Name = "Okhotsk" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 50.0800018310547, Lon = 45.5299987792969, Country = "Russia", Name = "Nikolayevsk" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 46.9599990844727, Lon = 142.75, Country = "Russia", Name = "Yuzhno-Sakhalinsk" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = -23.6299991607666, Lon = 133.929992675781, Country = "Australia", Name = "Alice Springs" }, - new WorldCity() { Cap = false, Pop = 0.039, Lat = -16.8500003814697, Lon = 145.710006713867, Country = "Australia", Name = "Cairns" }, - new WorldCity() { Cap = false, Pop = 0.106, Lat = -19.2999992370605, Lon = 146.830001831055, Country = "Australia", Name = "Townsville" }, - new WorldCity() { Cap = false, Pop = 0.059, Lat = -23.4300003051758, Lon = 150.479995727539, Country = "Australia", Name = "Rockhampton" }, - new WorldCity() { Cap = false, Pop = 0.405, Lat = -33, Lon = 151.910003662109, Country = "Australia", Name = "Newcastle" }, - new WorldCity() { Cap = false, Pop = 0.175, Lat = -43, Lon = 147.5, Country = "Australia", Name = "Hobart" }, - new WorldCity() { Cap = false, Pop = 0.109, Lat = -45.8600006103516, Lon = 170.5, Country = "New Zealand", Name = "Dunedin" }, - new WorldCity() { Cap = false, Pop = 0.256, Lat = 48.6545677185059, Lon = -123.569107055664, Country = "Canada", Name = "Victoria" }, - new WorldCity() { Cap = true, Pop = 0.164, Lat = 6.60109615325928, Lon = 2.63250279426575, Country = "Benin", Name = "Porto Novo" }, - new WorldCity() { Cap = false, Pop = 1.030, Lat = 4.13665008544922, Lon = 9.706374168396, Country = "Cameroon", Name = "Douala" }, - new WorldCity() { Cap = false, Pop = 0.708, Lat = -5.19043016433716, Lon = 119.722793579102, Country = "Indonesia", Name = "Vjuag Padang" }, - new WorldCity() { Cap = false, Pop = 0.112, Lat = -3.3865532875061, Lon = 129.312927246094, Country = "Indonesia", Name = "Ambon" }, - new WorldCity() { Cap = false, Pop = 1.604, Lat = 37.5894508361816, Lon = 126.767440795898, Country = "Korea Rep", Name = "Inch`on" }, - new WorldCity() { Cap = false, Pop = 1.680, Lat = 39.0317153930664, Lon = 121.598197937012, Country = "China", Name = "Dalian" }, - new WorldCity() { Cap = false, Pop = 1.227, Lat = 45.4421310424805, Lon = -122.641677856445, Country = "US", Name = "Portland" }, - new WorldCity() { Cap = false, Pop = 0.810, Lat = -3.12230491638184, Lon = -60.0146179199219, Country = "Brazil", Name = "Manaus" }, - new WorldCity() { Cap = false, Pop = 0.227, Lat = -2.46000003814697, Lon = -54.6100006103516, Country = "Brazil", Name = "Santarem" }, - new WorldCity() { Cap = false, Pop = 0.053, Lat = -46.4099998474121, Lon = 168.449996948242, Country = "New Zealand", Name = "Invercargill" }, - new WorldCity() { Cap = false, Pop = 0.049, Lat = -10.2600002288818, Lon = 40.1800003051758, Country = "Tanzania", Name = "Mtwara" }, - new WorldCity() { Cap = false, Pop = 0.100, Lat = -18.2299995422363, Lon = 49.4099998474121, Country = "Madagascar", Name = "Toamasina" }, - new WorldCity() { Cap = false, Pop = 0.235, Lat = -29.1499996185303, Lon = 26.2600002288818, Country = "South Africa", Name = "Bloemfontein" }, - new WorldCity() { Cap = false, Pop = 0.414, Lat = -20.2000007629395, Lon = 28.7099990844727, Country = "Zimbabwe", Name = "Bulawayo" }, - new WorldCity() { Cap = false, Pop = 0.061, Lat = -17.8299999237061, Lon = 25.8799991607666, Country = "Zambia", Name = "Livingstone" }, - new WorldCity() { Cap = false, Pop = 0.290, Lat = 24.4300003051758, Lon = 39.7000007629395, Country = "Saudi Arabia", Name = "Al Madinah" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 21.7600002288818, Lon = 31.2800006866455, Country = "Sudan", Name = "Wadi Halfa" }, - new WorldCity() { Cap = false, Pop = 0.191, Lat = 24.0799999237061, Lon = 32.9500007629395, Country = "Egypt", Name = "Aswan" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 25.9099998474121, Lon = 13.9099998474121, Country = "Libya", Name = "Murzuq" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 27.7000007629395, Lon = -8.15999984741211, Country = "Algeria", Name = "Tindouf" }, - new WorldCity() { Cap = false, Pop = 0.050, Lat = 16.9599990844727, Lon = 7.98000001907349, Country = "Niger", Name = "Agadez" }, - new WorldCity() { Cap = false, Pop = 0.140, Lat = 13.1800003051758, Lon = 30.1599998474121, Country = "Sudan", Name = "El Obeid" }, - new WorldCity() { Cap = false, Pop = 0.125, Lat = 0.0500000007450581, Lon = 18.4599990844727, Country = "Zaire", Name = "Mbandaka" }, - new WorldCity() { Cap = false, Pop = 0.015, Lat = 60.6500015258789, Lon = -135.009994506836, Country = "Canada", Name = "Whitehorse" }, - new WorldCity() { Cap = false, Pop = 0.095, Lat = -53.1500015258789, Lon = -70.8000030517578, Country = "Chile", Name = "Punte Arenas" }, - new WorldCity() { Cap = false, Pop = 0.084, Lat = -41.4799995422363, Lon = -73, Country = "Chile", Name = "Puerto Montt" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = -51.7099990844727, Lon = -69.4100036621094, Country = "Argentina", Name = "Rio Gallegos" }, - new WorldCity() { Cap = false, Pop = 0.097, Lat = -45.8300018310547, Lon = -67.5, Country = "Argentina", Name = "Comodoro Rivadavia" }, - new WorldCity() { Cap = false, Pop = 0.327, Lat = 29.9599990844727, Lon = 32.560001373291, Country = "Egypt", Name = "Suez" }, - new WorldCity() { Cap = false, Pop = 3.350, Lat = 31.0746040344238, Lon = 29.9778099060059, Country = "Egypt", Name = "Alexandria" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = -15.0500001907349, Lon = 40.7000007629395, Country = "Mozambique", Name = "Mocambique" }, - new WorldCity() { Cap = false, Pop = 9.950, Lat = 19.0453472137451, Lon = 73.1723480224609, Country = "India", Name = "Bombay" }, - new WorldCity() { Cap = true, Pop = 2.548, Lat = 36.596492767334, Lon = 2.99369311332703, Country = "Algeria", Name = "Algiers" }, - new WorldCity() { Cap = false, Pop = 1.940, Lat = 49.989673614502, Lon = 36.2083129882813, Country = "Ukraine", Name = "Kharkov" }, - new WorldCity() { Cap = false, Pop = 1.600, Lat = 48.4228897094727, Lon = 35.1378936767578, Country = "Ukraine", Name = "Dnepropetrovsk" }, - new WorldCity() { Cap = true, Pop = 0.482, Lat = 59.2775726318359, Lon = 24.7520561218262, Country = "Estonia", Name = "Tallinn" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 47.810001373291, Lon = 97, Country = "Mongolia", Name = "Uliastay" }, - new WorldCity() { Cap = true, Pop = 1.313, Lat = 18.4997291564941, Lon = -69.9104919433594, Country = "Dominican Rp", Name = "Santo Domingo" }, - new WorldCity() { Cap = true, Pop = 0.064, Lat = 4.93300008773804, Lon = 114.967002868652, Country = "Brunei", Name = "Bandar Seri Begawan" }, - new WorldCity() { Cap = true, Pop = 0.095, Lat = 13.4452724456787, Lon = -16.4946155548096, Country = "Gambia", Name = "Banjul" }, - new WorldCity() { Cap = true, Pop = 0.370, Lat = 10.6397342681885, Lon = -61.490062713623, Country = "Trinidad", Name = "Port of Spain" }, - new WorldCity() { Cap = false, Pop = 0.302, Lat = 16.97438621521, Lon = -99.9314956665039, Country = "Mexico", Name = "Acapulco" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 64.4001617431641, Lon = 177.130187988281, Country = "Russia", Name = "Anadyr" }, - new WorldCity() { Cap = false, Pop = 0.003, Lat = 65.6699981689453, Lon = -37.3118667602539, Country = "Greenland", Name = "Angmagssalik" }, - new WorldCity() { Cap = false, Pop = 0.185, Lat = -23.8325366973877, Lon = -70.2254486083984, Country = "Chile", Name = "Antofagasta" }, - new WorldCity() { Cap = false, Pop = 0.294, Lat = 40.75, Lon = 140.669998168945, Country = "Japan", Name = "Aomori" }, - new WorldCity() { Cap = false, Pop = 0.436, Lat = 32.0430526733398, Lon = 20.3086757659912, Country = "Libya", Name = "Banghazi" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = -15.75, Lon = 133.220001220703, Country = "Australia", Name = "Birdum" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 2.75, Lon = -60.5, Country = "Brazil", Name = "Boa Vista" }, - new WorldCity() { Cap = false, Pop = 0.280, Lat = -6.61999988555908, Lon = -79.8300018310547, Country = "Peru", Name = "Chiclayo" }, - new WorldCity() { Cap = false, Pop = 0.223, Lat = -8.930100440979, Lon = -78.4531478881836, Country = "Peru", Name = "Chimbote" }, - new WorldCity() { Cap = false, Pop = 0.001, Lat = 58.710765838623, Lon = -94.1800003051758, Country = "Canada", Name = "Churchill" }, - new WorldCity() { Cap = false, Pop = 0.686, Lat = 9.98798847198486, Lon = 76.5217819213867, Country = "India", Name = "Cochin" }, - new WorldCity() { Cap = false, Pop = 0.675, Lat = -36.8832969665527, Lon = -72.8516387939453, Country = "Chile", Name = "Concepcion" }, - new WorldCity() { Cap = false, Pop = 0.062, Lat = -31, Lon = -71.0199966430664, Country = "Chile", Name = "Coquimbo" }, - new WorldCity() { Cap = false, Pop = 0.073, Lat = -12.7014999389648, Lon = 130.994552612305, Country = "Australia", Name = "Darwin" }, - new WorldCity() { Cap = true, Pop = 0.120, Lat = 11.5, Lon = 43.0999984741211, Country = "Djibouti", Name = "Djibouti" }, - new WorldCity() { Cap = false, Pop = 0.022, Lat = -32.0441665649414, Lon = 115.9345703125, Country = "Australia", Name = "Fremantle" }, - new WorldCity() { Cap = false, Pop = 0.495, Lat = 5.34999990463257, Lon = 100.547142028809, Country = "Malaysia", Name = "George Town" }, - new WorldCity() { Cap = false, Pop = 0.001, Lat = 69.3831405639648, Lon = -53.6300010681152, Country = "Greenland", Name = "Godhavn" }, - new WorldCity() { Cap = true, Pop = 0.012, Lat = 64.2711868286133, Lon = -51.5800018310547, Country = "Greenland", Name = "Godthab" }, - new WorldCity() { Cap = false, Pop = 0.296, Lat = 44.6300010681152, Lon = -63.5800018310547, Country = "Canada", Name = "Halifax" }, - new WorldCity() { Cap = false, Pop = 0.007, Lat = 70.3913269042969, Lon = 23.9063415527344, Country = "Norway", Name = "Hammerfest" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 67.3499984741211, Lon = 86.5500030517578, Country = "Russia", Name = "Igarka" }, - new WorldCity() { Cap = false, Pop = 0.019, Lat = 27.2000007629395, Lon = 2.52999997138977, Country = "Algeria", Name = "In Salah" }, - new WorldCity() { Cap = false, Pop = 0.003, Lat = 68.2699966430664, Lon = -133.669998168945, Country = "Canada", Name = "Inuvik" }, - new WorldCity() { Cap = false, Pop = 0.050, Lat = -4.94999980926514, Lon = 30, Country = "Tanzania", Name = "Kigoma" }, - new WorldCity() { Cap = false, Pop = 0.069, Lat = 61.1500015258789, Lon = 47, Country = "Russia", Name = "Kotlas" }, - new WorldCity() { Cap = false, Pop = 0.094, Lat = 27, Lon = -13.1800003051758, Country = "W Sahara", Name = "Laayoune" }, - new WorldCity() { Cap = false, Pop = 0.217, Lat = 1.420086145401, Lon = 124.884239196777, Country = "Indonesia", Name = "Manado" }, - new WorldCity() { Cap = false, Pop = 0.306, Lat = 12.9499998092651, Lon = 75.1608810424805, Country = "India", Name = "Mangalore" }, - new WorldCity() { Cap = false, Pop = 0.535, Lat = 31.1499996185303, Lon = -8, Country = "Morocco", Name = "Marrakech" }, - new WorldCity() { Cap = true, Pop = 0.038, Lat = -26.3033809661865, Lon = 31.1912975311279, Country = "Swaziland", Name = "Mbabne" }, - new WorldCity() { Cap = false, Pop = 0.449, Lat = 32.8827476501465, Lon = 129.857467651367, Country = "Japan", Name = "Nagasaki" }, - new WorldCity() { Cap = false, Pop = 0.510, Lat = -5.78000020980835, Lon = -35.25, Country = "Brazil", Name = "Natal" }, - new WorldCity() { Cap = false, Pop = 0.033, Lat = -41.2999992370605, Lon = 173.270004272461, Country = "New Zealand", Name = "Nelson" }, - new WorldCity() { Cap = false, Pop = 0.004, Lat = 64.5862808227539, Lon = -165.270004272461, Country = "US", Name = "Nome" }, - new WorldCity() { Cap = false, Pop = 0.174, Lat = 69.3300018310547, Lon = 88.0999984741211, Country = "Russia", Name = "Noril`sk" }, - new WorldCity() { Cap = false, Pop = 0.022, Lat = 20.8999996185303, Lon = -16.825647354126, Country = "Mauritania", Name = "Nouadnibou" }, - new WorldCity() { Cap = false, Pop = 0.600, Lat = 53.7000007629395, Lon = 87.1699981689453, Country = "Russia", Name = "Novokuznetsk" }, - new WorldCity() { Cap = false, Pop = 0.097, Lat = 46.9199981689453, Lon = -122.879997253418, Country = "US", Name = "Olympia" }, - new WorldCity() { Cap = false, Pop = 0.297, Lat = -0.917578816413879, Lon = 100.475059509277, Country = "Indonesia", Name = "Padang" }, - new WorldCity() { Cap = false, Pop = 0.787, Lat = -3, Lon = 104.830001831055, Country = "Indonesia", Name = "Palembang" }, - new WorldCity() { Cap = false, Pop = 0.155, Lat = 38.1412391662598, Lon = 21.8831691741943, Country = "Greece", Name = "Patras" }, - new WorldCity() { Cap = false, Pop = 0.269, Lat = 53.2000007629395, Lon = 158.720001220703, Country = "Russia", Name = "Petropavloski-Kamchatskiy" }, - new WorldCity() { Cap = true, Pop = 0.083, Lat = 42.5, Lon = 19.3999996185303, Country = "Montenegro", Name = "Podgorica" }, - new WorldCity() { Cap = false, Pop = 0.294, Lat = -4.63870811462402, Lon = 12.0580930709839, Country = "Congo", Name = "Pointe Noire" }, - new WorldCity() { Cap = false, Pop = 0.124, Lat = -0.819999992847443, Lon = 9.15334415435791, Country = "Gabon", Name = "Port Gentil" }, - new WorldCity() { Cap = false, Pop = 0.016, Lat = 54.420280456543, Lon = -130.048080444336, Country = "Canada", Name = "Prince Rupert" }, - new WorldCity() { Cap = false, Pop = 0.121, Lat = 45.338134765625, Lon = -65.6499481201172, Country = "Canada", Name = "Saint John" }, - new WorldCity() { Cap = false, Pop = 0.091, Lat = 15.9512100219727, Lon = -16.2978382110596, Country = "Senegal", Name = "Saint Louis" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 66.5699996948242, Lon = 66.5800018310547, Country = "Russia", Name = "Salekhard" }, - new WorldCity() { Cap = false, Pop = 0.241, Lat = 41.3199996948242, Lon = 36.3699989318848, Country = "Turkey", Name = "Samsun" }, - new WorldCity() { Cap = false, Pop = 0.600, Lat = -2.5, Lon = -44.4300575256348, Country = "Brazil", Name = "Sao Luis" }, - new WorldCity() { Cap = true, Pop = 0.341, Lat = 43.8699989318848, Lon = 18.4300003051758, Country = "Bosnia/Herz", Name = "Sarajevo" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 70.5285720825195, Lon = -22.9963226318359, Country = "Greenland", Name = "Scoresbyund" }, - new WorldCity() { Cap = false, Pop = 0.029, Lat = 50.2825469970703, Lon = -66.4025421142578, Country = "Canada", Name = "Sept-Iles" }, - new WorldCity() { Cap = false, Pop = 0.003, Lat = 60.1199989318848, Lon = -149.449996948242, Country = "US", Name = "Seward" }, - new WorldCity() { Cap = true, Pop = 0.445, Lat = 42, Lon = 21.5300006866455, Country = "Macedonia", Name = "Skopje" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 22.8299999237061, Lon = 5.55000019073486, Country = "Algeria", Name = "Tamanrasset" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 77.6699981689453, Lon = -69, Country = "Greenland", Name = "Thule" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 71.6999969482422, Lon = 128.75, Country = "Russia", Name = "Tiksi" }, - new WorldCity() { Cap = false, Pop = 0.055, Lat = -23.2901554107666, Lon = 44.0190925598145, Country = "Madagascar", Name = "Toliara" }, - new WorldCity() { Cap = false, Pop = 0.354, Lat = -7.92999982833862, Lon = -79, Country = "Peru", Name = "Trujillo" }, - new WorldCity() { Cap = false, Pop = 0.604, Lat = 17.75, Lon = 83.3300018310547, Country = "India", Name = "Vishakhapatnam" }, - new WorldCity() { Cap = false, Pop = 0.116, Lat = 67.8000030517578, Lon = 64.3300018310547, Country = "Russia", Name = "Vorkuta" }, - new WorldCity() { Cap = false, Pop = 0.230, Lat = 31.9699993133545, Lon = 54.4500007629395, Country = "Iran", Name = "Yazd" }, - new WorldCity() { Cap = false, Pop = 0.282, Lat = 29.6000003814697, Lon = 60.8300018310547, Country = "Iran", Name = "Zahedan" }, - new WorldCity() { Cap = false, Pop = 0.318, Lat = 12.861159324646, Lon = 45.1800003051758, Country = "Yemen", Name = "Aden" }, - new WorldCity() { Cap = true, Pop = 1.500, Lat = 9.02999973297119, Lon = 38.7000007629395, Country = "Ethiopia", Name = "Adis Abeba" }, - new WorldCity() { Cap = true, Pop = 1.375, Lat = 29.1949901580811, Lon = 48.0027770996094, Country = "Kuwait", Name = "Al Kuwayt" }, - new WorldCity() { Cap = true, Pop = 0.663, Lat = -18.8700008392334, Lon = 47.5, Country = "Madagascar", Name = "Antananarivo" }, - new WorldCity() { Cap = true, Pop = 1.250, Lat = 24.6499996185303, Lon = 46.7700004577637, Country = "Saudi Arabia", Name = "Ar Riyad" }, - new WorldCity() { Cap = true, Pop = 0.275, Lat = 15.3299999237061, Lon = 38.9700012207031, Country = "Eritrea", Name = "Asmara" }, - new WorldCity() { Cap = true, Pop = 0.700, Lat = -25.2199993133545, Lon = -57.6699981689453, Country = "Paraguay", Name = "Asuncion" }, - new WorldCity() { Cap = true, Pop = 3.027, Lat = 38.1216011047363, Lon = 23.6548633575439, Country = "Greece", Name = "Athens" }, - new WorldCity() { Cap = false, Pop = 1.120, Lat = 40.6500015258789, Lon = 109.980003356934, Country = "China", Name = "Baotou" }, - new WorldCity() { Cap = false, Pop = 4.040, Lat = 41.5299987792969, Lon = 2.17000007629395, Country = "Spain", Name = "Barcelona" }, - new WorldCity() { Cap = false, Pop = 1.140, Lat = 11.0142946243286, Lon = -74.6800003051758, Country = "Colombia", Name = "Barranquilla" }, - new WorldCity() { Cap = false, Pop = 0.292, Lat = -19.7692832946777, Lon = 35.0231704711914, Country = "Mozambique", Name = "Beira" }, - new WorldCity() { Cap = true, Pop = 1.675, Lat = 33.7799987792969, Lon = 35.6579437255859, Country = "Lebanon", Name = "Beirut" }, - new WorldCity() { Cap = true, Pop = 0.005, Lat = 17.1200008392334, Lon = -88.8000030517578, Country = "Belize", Name = "Belmopan" }, - new WorldCity() { Cap = false, Pop = 0.239, Lat = 60.3499984741211, Lon = 5.49067831039429, Country = "Norway", Name = "Bergen" }, - new WorldCity() { Cap = true, Pop = 0.109, Lat = 11.9109897613525, Lon = -15.6499996185303, Country = "GuineaBissau", Name = "Bissau" }, - new WorldCity() { Cap = false, Pop = 1.790, Lat = -33.8040084838867, Lon = 18.6904315948486, Country = "South Africa", Name = "cape Town" }, - new WorldCity() { Cap = false, Pop = 0.625, Lat = 51.5, Lon = -3.15000009536743, Country = "UK", Name = "Cardiff" }, - new WorldCity() { Cap = false, Pop = 2.475, Lat = 33.5444107055664, Lon = -7.53409194946289, Country = "Morocco", Name = "Casablanca" }, - new WorldCity() { Cap = true, Pop = 0.038, Lat = 4.92000007629395, Lon = -52.4000015258789, Country = "Fr Guiana", Name = "Cayenne" }, - new WorldCity() { Cap = false, Pop = 1.392, Lat = 22.4799995422363, Lon = 91.8327941894531, Country = "Bangladesh", Name = "Chittagong" }, - new WorldCity() { Cap = true, Pop = 2.050, Lat = 7.01999998092651, Lon = 80.0883331298828, Country = "Sri Lanka", Name = "Colombo" }, - new WorldCity() { Cap = true, Pop = 0.800, Lat = 9.52000045776367, Lon = -12.8000001907349, Country = "Guinea", Name = "Conakry" }, - new WorldCity() { Cap = true, Pop = 1.428, Lat = 14.6300001144409, Lon = -16.8480949401855, Country = "Senegal", Name = "Dakar" }, - new WorldCity() { Cap = false, Pop = 1.405, Lat = 39.75, Lon = -105.069999694824, Country = "US", Name = "Denver" }, - new WorldCity() { Cap = true, Pop = 0.595, Lat = 38.6300010681152, Lon = 68.9000015258789, Country = "Tajikistan", Name = "Dushanfe" }, - new WorldCity() { Cap = false, Pop = 0.785, Lat = 53.5699996948242, Lon = -113.269996643066, Country = "Canada", Name = "Edmonton" }, - new WorldCity() { Cap = false, Pop = 1.871, Lat = 30.4699993133545, Lon = 30.8500003814697, Country = "Egypt", Name = "Giza" }, - new WorldCity() { Cap = true, Pop = 0.525, Lat = 8.38277053833008, Lon = -12.9102764129639, Country = "Sierra Leone", Name = "Freetown" }, - new WorldCity() { Cap = true, Pop = 0.616, Lat = 42.8800010681152, Lon = 74.7699966430664, Country = "Kyrgyzstan", Name = "Frunze" }, - new WorldCity() { Cap = false, Pop = 0.805, Lat = 44.4550895690918, Lon = 8.92229557037354, Country = "Italy", Name = "Genova" }, - new WorldCity() { Cap = true, Pop = 0.188, Lat = 6.76999998092651, Lon = -58.1699981689453, Country = "Guyana", Name = "Georgetown" }, - new WorldCity() { Cap = false, Pop = 0.711, Lat = 57.75, Lon = 12, Country = "Sweden", Name = "Goteborg" }, - new WorldCity() { Cap = true, Pop = 0.890, Lat = -17.8299999237061, Lon = 31.0200004577637, Country = "Zimbabwe", Name = "Harare" }, - new WorldCity() { Cap = true, Pop = 2.125, Lat = 23.0489521026611, Lon = -82.4164505004883, Country = "Cuba", Name = "Havana" }, - new WorldCity() { Cap = false, Pop = 1.300, Lat = 21.6200008392334, Lon = 39.3733062744141, Country = "Saudi Arabia", Name = "Jiddah" }, - new WorldCity() { Cap = true, Pop = 0.460, Lat = 0.319999992847443, Lon = 32.5800018310547, Country = "Uganda", Name = "Kampala" }, - new WorldCity() { Cap = false, Pop = 0.538, Lat = 11.9200000762939, Lon = 8.52000045776367, Country = "Nigeria", Name = "Kano" }, - new WorldCity() { Cap = false, Pop = 1.845, Lat = 22.6734161376953, Lon = 120.341484069824, Country = "Taiwan", Name = "Kao-Hsiung" }, - new WorldCity() { Cap = false, Pop = 5.300, Lat = 24.8500003814697, Lon = 67.0299987792969, Country = "Pakistan", Name = "Karachi" }, - new WorldCity() { Cap = false, Pop = 0.601, Lat = 48.5299987792969, Lon = 135.070007324219, Country = "Russia", Name = "Khabarovsk" }, - new WorldCity() { Cap = true, Pop = 0.924, Lat = 15.5500001907349, Lon = 32.5299987792969, Country = "Sudan", Name = "Khartoum" }, - new WorldCity() { Cap = true, Pop = 0.665, Lat = 47, Lon = 28.8299999237061, Country = "Moldova", Name = "Kishinev" }, - new WorldCity() { Cap = true, Pop = 1.685, Lat = 55.7200012207031, Lon = 12.5500001907349, Country = "Denmark", Name = "Kobenhavn" }, - new WorldCity() { Cap = true, Pop = 3.800, Lat = 6.44999980926514, Lon = 3.29999995231628, Country = "Nigeria", Name = "Lagos" }, - new WorldCity() { Cap = false, Pop = 0.255, Lat = 49.3240203857422, Lon = 0.219999998807907, Country = "France", Name = "Le Havre" }, - new WorldCity() { Cap = true, Pop = 0.236, Lat = -0.504144549369812, Lon = 9.49045658111572, Country = "Gabon", Name = "Libreville" }, - new WorldCity() { Cap = true, Pop = 0.234, Lat = -13.9200000762939, Lon = 33.8199996948242, Country = "Malawi", Name = "Lilongwe" }, - new WorldCity() { Cap = true, Pop = 4.344, Lat = -12.0679960250854, Lon = -76.8235549926758, Country = "Peru", Name = "Lima" }, - new WorldCity() { Cap = true, Pop = 2.250, Lat = 38.7299995422363, Lon = -9.13000011444092, Country = "Portugal", Name = "Lisboa" }, - new WorldCity() { Cap = false, Pop = 1.525, Lat = 53.4226875305176, Lon = -2.76683640480042, Country = "UK", Name = "Liverpool" }, - new WorldCity() { Cap = true, Pop = 0.400, Lat = 6.28000020980835, Lon = 1.35000002384186, Country = "Togo", Name = "Lome" }, - new WorldCity() { Cap = false, Pop = 9.764, Lat = 34, Lon = -118.25, Country = "US", Name = "Los Angeles" }, - new WorldCity() { Cap = true, Pop = 1.460, Lat = -9, Lon = 13.4617786407471, Country = "Angola", Name = "Luanda" }, - new WorldCity() { Cap = false, Pop = 0.543, Lat = -11.6800003051758, Lon = 27.5499992370605, Country = "Zaire", Name = "Lumumbashi" }, - new WorldCity() { Cap = true, Pop = 0.536, Lat = -15.4300003051758, Lon = 28.1700000762939, Country = "Zambia", Name = "Lusaka" }, - new WorldCity() { Cap = true, Pop = 0.031, Lat = 3.64468479156494, Lon = 8.81999969482422, Country = "Eq Guinea", Name = "Malabo" }, - new WorldCity() { Cap = true, Pop = 5.474, Lat = 14.5500001907349, Lon = 121.173408508301, Country = "Philippines", Name = "Manila" }, - new WorldCity() { Cap = false, Pop = 1.225, Lat = 43.2999992370605, Lon = 5.38000011444092, Country = "France", Name = "Marseille" }, - new WorldCity() { Cap = true, Pop = 0.050, Lat = 23.5166397094727, Lon = 58.6274795532227, Country = "Oman", Name = "Masqat" }, - new WorldCity() { Cap = false, Pop = 0.200, Lat = 23.3615112304688, Lon = -106.269996643066, Country = "Mexico", Name = "Mazatlan" }, - new WorldCity() { Cap = false, Pop = 0.442, Lat = -4.01999998092651, Lon = 39.6699981689453, Country = "Kenya", Name = "Mombasa" }, - new WorldCity() { Cap = true, Pop = 0.465, Lat = 6.51743936538696, Lon = -10.7700004577637, Country = "Liberia", Name = "Monrovia" }, - new WorldCity() { Cap = true, Pop = 1.550, Lat = -34.9199981689453, Lon = -56.1699981689453, Country = "Uruguay", Name = "Montevideo" }, - new WorldCity() { Cap = true, Pop = 13.100, Lat = 55.75, Lon = 37.7000007629395, Country = "Russia", Name = "Moscow" }, - new WorldCity() { Cap = true, Pop = 1.286, Lat = -1.16999995708466, Lon = 36.8300018310547, Country = "Kenya", Name = "Nairobi" }, - new WorldCity() { Cap = false, Pop = 2.875, Lat = 40.8300018310547, Lon = 14.2700004577637, Country = "Italy", Name = "Napoli" }, - new WorldCity() { Cap = false, Pop = 16.472, Lat = 40.75, Lon = -74.0999984741211, Country = "US", Name = "New York" }, - new WorldCity() { Cap = false, Pop = 0.329, Lat = 40.7200012207031, Lon = -74.1999969482422, Country = "US", Name = "Newark" }, - new WorldCity() { Cap = true, Pop = 0.285, Lat = 18.0300006866455, Lon = -15.7828607559204, Country = "Mauritania", Name = "Nouakchott" }, - new WorldCity() { Cap = false, Pop = 0.138, Lat = 55.574535369873, Lon = 9.90299892425537, Country = "Denmark", Name = "Odense" }, - new WorldCity() { Cap = false, Pop = 0.526, Lat = 15.6199998855591, Lon = 32.4799995422363, Country = "Sudan", Name = "Omdurman" }, - new WorldCity() { Cap = false, Pop = 0.629, Lat = 35.75, Lon = -0.519999980926514, Country = "Algeria", Name = "Oran" }, - new WorldCity() { Cap = true, Pop = 0.720, Lat = 59.9300003051758, Lon = 10.7200002670288, Country = "Norway", Name = "Oslo" }, - new WorldCity() { Cap = true, Pop = 0.442, Lat = 12.4799995422363, Lon = -1.66999995708466, Country = "Burkina Faso", Name = "Ouagadouou" }, - new WorldCity() { Cap = false, Pop = 0.724, Lat = 38.1300010681152, Lon = 13.3999996185303, Country = "Italy", Name = "Palermo" }, - new WorldCity() { Cap = true, Pop = 0.625, Lat = 8.94999980926514, Lon = -79.4000015258789, Country = "Panama", Name = "Panama" }, - new WorldCity() { Cap = true, Pop = 0.241, Lat = 5.92999982833862, Lon = -55.2299995422363, Country = "Suriname", Name = "Paramaribo" }, - new WorldCity() { Cap = false, Pop = 0.994, Lat = -31.9758644104004, Lon = 115.923370361328, Country = "Australia", Name = "Perth" }, - new WorldCity() { Cap = true, Pop = 0.152, Lat = -9.55000019073486, Lon = 147.414520263672, Country = "Papua N Guin", Name = "Port Moresby" }, - new WorldCity() { Cap = false, Pop = 1.225, Lat = 41.1500015258789, Lon = -8.48794841766357, Country = "Portugal", Name = "Porto" }, - new WorldCity() { Cap = false, Pop = 0.203, Lat = 31.6000003814697, Lon = 65.5, Country = "Afghanistan", Name = "Qandahar" }, - new WorldCity() { Cap = false, Pop = 1.326, Lat = 14.6499996185303, Lon = 121.029998779297, Country = "Philippines", Name = "Quezon City" }, - new WorldCity() { Cap = true, Pop = 0.980, Lat = 33.9201965332031, Lon = -6.74804067611694, Country = "Morocco", Name = "Rabat" }, - new WorldCity() { Cap = true, Pop = 0.138, Lat = 64.3132629394531, Lon = -21.336820602417, Country = "Iceland", Name = "Reykjavik" }, - new WorldCity() { Cap = true, Pop = 1.005, Lat = 56.8800010681152, Lon = 24.0499992370605, Country = "latvia", Name = "Riga" }, - new WorldCity() { Cap = true, Pop = 3.175, Lat = 41.8800010681152, Lon = 12.5200004577637, Country = "Italy", Name = "Roma" }, - new WorldCity() { Cap = false, Pop = 2.050, Lat = -12.6002569198608, Lon = -38.4799995422363, Country = "Brazil", Name = "Salvador" }, - new WorldCity() { Cap = false, Pop = 0.848, Lat = 29.6299991607666, Lon = 52.5699996948242, Country = "Iran", Name = "Shiraz" }, - new WorldCity() { Cap = true, Pop = 1.450, Lat = 59.2446327209473, Lon = 18.0842685699463, Country = "Sweden", Name = "Stockholm" }, - new WorldCity() { Cap = false, Pop = 2.028, Lat = -7.40000009536743, Lon = 112.684371948242, Country = "Indonesia", Name = "Surabaja" }, - new WorldCity() { Cap = false, Pop = 0.657, Lat = 23.1700000762939, Lon = 120.230003356934, Country = "Taiwan", Name = "T`ai-nan" }, - new WorldCity() { Cap = false, Pop = 0.595, Lat = 27.9973583221436, Lon = -82.5930252075195, Country = "US", Name = "Tampa" }, - new WorldCity() { Cap = true, Pop = 1.670, Lat = 31.9171981811523, Lon = 34.8568344116211, Country = "Israel", Name = "Tel Aviv-Yafo" }, - new WorldCity() { Cap = false, Pop = 0.706, Lat = 40.6300010681152, Lon = 22.7999992370605, Country = "Greece", Name = "Thessaloniki" }, - new WorldCity() { Cap = true, Pop = 2.325, Lat = 41.247932434082, Lon = 69.3498687744141, Country = "Uzbekistan", Name = "Toshkent" }, - new WorldCity() { Cap = false, Pop = 0.198, Lat = 34.3437576293945, Lon = 36.0070686340332, Country = "Lebanon", Name = "Tripoli" }, - new WorldCity() { Cap = false, Pop = 0.675, Lat = -32.9000015258789, Lon = -71.2993392944336, Country = "Chile", Name = "Valparaiso" }, - new WorldCity() { Cap = false, Pop = 1.381, Lat = 49.274299621582, Lon = -122.963066101074, Country = "Canada", Name = "Vancouver" }, - new WorldCity() { Cap = false, Pop = 0.648, Lat = 43.1300010681152, Lon = 131.960433959961, Country = "Russia", Name = "Vladivostok" }, - new WorldCity() { Cap = false, Pop = 0.017, Lat = -23.1018676757813, Lon = 14.6171045303345, Country = "Namibia", Name = "Walvis Bay" }, - new WorldCity() { Cap = true, Pop = 0.115, Lat = -22.5699996948242, Lon = 17.1000003814697, Country = "Namibia", Name = "Windhoek" }, - new WorldCity() { Cap = true, Pop = 0.350, Lat = -41.2103958129883, Lon = 175.144943237305, Country = "New Zealand", Name = "Wellington" }, - new WorldCity() { Cap = false, Pop = 2.077, Lat = 47.5885543823242, Lon = -122.316650390625, Country = "US", Name = "Seattle" }, - new WorldCity() { Cap = false, Pop = 2.099, Lat = 32.7614593505859, Lon = -117.125495910645, Country = "US", Name = "San Diego" }, - new WorldCity() { Cap = false, Pop = 0.110, Lat = -20.2600002288818, Lon = -69.9132614135742, Country = "Chile", Name = "Iquique" }, - new WorldCity() { Cap = true, Pop = 0.243, Lat = 24.2360076904297, Lon = 54.619270324707, Country = "Untd Arab Em", Name = "Abu Zaby" }, - new WorldCity() { Cap = false, Pop = 0.199, Lat = 7.57660102844238, Lon = -72.0054550170898, Country = "Venezuela", Name = "San Cristobal" }, - new WorldCity() { Cap = false, Pop = 0.509, Lat = 46.25, Lon = 48, Country = "Russia", Name = "Astrakhan" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 30.1386032104492, Lon = 9.81835079193115, Country = "Libya", Name = "Ghadamis" }, - new WorldCity() { Cap = false, Pop = 0.077, Lat = -31.3051528930664, Lon = -57.7087745666504, Country = "Uruguay", Name = "Salto" }, - new WorldCity() { Cap = false, Pop = 0.012, Lat = 62.5206146240234, Lon = -114.061363220215, Country = "Canada", Name = "Yellowknife" }, - new WorldCity() { Cap = false, Pop = 0.043, Lat = 19.7148151397705, Lon = -155.067291259766, Country = "US", Name = "Hilo" }, - new WorldCity() { Cap = false, Pop = 0.763, Lat = 21.3211765289307, Lon = -157.806182861328, Country = "US", Name = "Honolulu" }, - new WorldCity() { Cap = false, Pop = 0.184, Lat = 61.188648223877, Lon = -149.172973632813, Country = "US", Name = "Anchorage" }, - new WorldCity() { Cap = false, Pop = 0.040, Lat = 64.8387451171875, Lon = -147.651184082031, Country = "US", Name = "Fairbanks" }, - new WorldCity() { Cap = false, Pop = 0.020, Lat = 58.3910064697266, Lon = -134.132476806641, Country = "US", Name = "Juneau" }, - new WorldCity() { Cap = false, Pop = 0.629, Lat = 37.30810546875, Lon = -121.847457885742, Country = "US", Name = "San Jose" }, - new WorldCity() { Cap = false, Pop = 0.386, Lat = 28.5581398010254, Lon = -105.966636657715, Country = "Mexico", Name = "Chihuaha" }, - new WorldCity() { Cap = false, Pop = 0.385, Lat = 19.0096759796143, Lon = -96.0840606689453, Country = "Mexico", Name = "Veracruz" }, - new WorldCity() { Cap = false, Pop = 0.154, Lat = 16.9209060668945, Lon = -96.9420394897461, Country = "Mexico", Name = "Oaxaca" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 78.1999969482422, Lon = 15.6599998474121, Country = "Norway", Name = "longyearbyen" }, - new WorldCity() { Cap = true, Pop = 5.396, Lat = 22.4284057617188, Lon = 114.145706176758, Country = "UK", Name = "Hong Kong" }, - new WorldCity() { Cap = false, Pop = 0.775, Lat = 22.3798961639404, Lon = 114.230117797852, Country = "UK", Name = "Kowloon" }, - new WorldCity() { Cap = false, Pop = 3.025, Lat = 1.22979354858398, Lon = 104.177116394043, Country = "Singapore", Name = "Singapore" }, - }; - - return cities; +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="WorldLocations" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "series": [ + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "$dataSourceRef": "+doc:WorldLocations", + "shapeMemberPath": "Points" + } + ] } } +} ``` - - ## API References diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx index 585ec4d4ff..2f92f577d1 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx @@ -8,7 +8,6 @@ llms: description: "The resource topic provides implementation of utility that helps with generating {Platform} geographic data." --- import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; # {Platform} World Utility @@ -16,414 +15,26 @@ The resource topic provides implementation of utility that helps with generating ## Code Snippet - - -```ts -export default class WorldUtils { - - // calculate geo-paths between two locations using great circle formula - public static calcPaths(origin: any, dest: any): any[] { - let interval = 200; - let paths: any[] = [[]]; - let pathID = 0; - let distance = this.calcDistance(origin, dest); - if (distance <= interval) { - paths[pathID].push({ x: origin.lon, y: origin.lat }); - paths[pathID].push({ x: dest.lon, y: dest.lat }); - } else { - let current = origin; - let previous = origin; - - for (let dist = interval; dist <= distance; dist += interval) - { - previous = current - paths[pathID].push({ x: current.lon, y: current.lat }); - - let bearing = this.calcBearing(current, dest); - current = this.calcDestination(current, bearing, interval); - // ensure geo-path wrap around the world through the new date-line - if (previous.lon > 150 && current.lon < -150) { - paths[pathID].push({ x: 180, y: current.lat }); - paths.push([]); - pathID++ - current = { lon: -180, lat: current.lat } - } else if (previous.lon < -150 && current.lon > 150) { - paths[pathID].push({ x: -180, y: current.lat }); - paths.push([]); - pathID++ - current = { lon: 180, lat: current.lat } - } - } - paths[pathID].push({ x: dest.lon, y: dest.lat }); - } - return paths; - } - - // calculate bearing angle between two locations - public static calcBearing(origin: any, dest: any) : number - { - origin = this.toRadianLocation(origin); - dest = this.toRadianLocation(dest); - let range = (dest.lon - origin.lon); - let y = Math.sin(range) * Math.cos(dest.lat); - let x = Math.cos(origin.lat) * Math.sin(dest.lat) - - Math.sin(origin.lat) * Math.cos(dest.lat) * Math.cos(range); - let angle = Math.atan2(y, x); - return this.toDegreesNormalized(angle); - } - - // calculate destination for origin location and travel distance - public static calcDestination(origin: any, bearing: number, distance: number): any { - let radius = 6371.0; - origin = this.toRadianLocation(origin); - bearing = this.toRadians(bearing); - distance = distance / radius; // angular distance in radians - - let lat = Math.asin(Math.sin(origin.lat) * Math.cos(distance) + - Math.cos(origin.lat) * Math.sin(distance) * Math.cos(bearing)); - let x = Math.sin(bearing) * Math.sin(distance) * Math.cos(origin.lat); - let y = Math.cos(distance) - Math.sin(origin.lat) * Math.sin(origin.lat); - let lon = origin.lon + Math.atan2(x, y); - // normalize lon to coordinate between -180º and +180º - lon = (lon + 3 * Math.PI) % (2 * Math.PI) - Math.PI; - - lon = this.toDegrees(lon); - lat = this.toDegrees(lat); - - return { lon: lon, lat: lat }; - } - - // calculate distance between two locations - public static calcDistance(origin: any, dest: any) : number { - origin = this.toRadianLocation(origin); - dest = this.toRadianLocation(dest); - let sinProd = Math.sin(origin.lat) * Math.sin(dest.lat); - let cosProd = Math.cos(origin.lat) * Math.cos(dest.lat); - let lonDelta = (dest.lon - origin.lon); - - let angle = Math.acos(sinProd + cosProd * Math.cos(lonDelta)); - let distance = angle * 6371.0; - return distance; // * 6371.0; // in km - } - - public static toRadianLocation(geoPoint: any) : any { - let x = this.toRadians(geoPoint.lon); - let y = this.toRadians(geoPoint.lat); - return { lon: x, lat: y }; - } - - public static toRadians(degrees: number) : number - { - return degrees * Math.PI / 180; - } - - public static toDegrees(radians: number) : number { - return (radians * 180.0 / Math.PI); - } - - public static toDegreesNormalized(radians: number) : number - { - let degrees = this.toDegrees(radians); - degrees = (degrees + 360) % 360; - return degrees; - } - - // converts latitude coordinate to a string - public static toStringLat(latitude: number) : string { - let str = Math.abs(latitude).toFixed(1) + "°"; - return latitude > 0 ? str + "N" : str + "S"; - } - - // converts longitude coordinate to a string - public static toStringLon(coordinate: number) : string { - let val = Math.abs(coordinate); - let str = val < 100 ? val.toFixed(1) : val.toFixed(0); - return coordinate > 0 ? str + "°E" : str + "°W"; - } - - public static toStringAbbr(value: number) : string { - if (value > 1000000000000) { - return (value / 1000000000000).toFixed(1) + " T" - } else if (value > 1000000000) { - return (value / 1000000000).toFixed(1) + " B" - } else if (value > 1000000) { - return (value / 1000000).toFixed(1) + " M" - } else if (value > 1000) { - return (value / 1000).toFixed(1) + " K" - } - return value.toFixed(0); - } - - public static getLongitude(location: any) : number { - if (location.x) return location.x; - if (location.lon) return location.lon; - if (location.longitude) return location.longitude; - return Number.NaN; - } - - public static getLatitude(location: any) : number { - if (location.y) return location.y; - if (location.lat) return location.lat; - if (location.latitude) return location.latitude; - return Number.NaN; - } - - public static getBounds(locations: any[]) : any { - let minLat = 90; - let maxLat = -90; - let minLon = 180; - let maxLon = -180; - - for (const location of locations) { - const crrLon = this.getLongitude(location); - if (!Number.isNaN(crrLon)) { - minLon = Math.min(minLon, crrLon); - maxLon = Math.max(maxLon, crrLon); - } - - const crrLat = this.getLatitude(location); - if (!Number.isNaN(crrLat)) { - minLat = Math.min(minLat, crrLat); - maxLat = Math.max(maxLat, crrLat); - } - } - - const geoBounds = { - left: minLon, - top: minLat, - width: Math.abs(maxLon - minLon), - height: Math.abs(maxLat - minLat) - }; - return geoBounds; - } -} -``` - - - - - -```razor - public static class WorldUtils - { - public static List> CalcPaths(GeoLocation origin, GeoLocation dest) - { - int interval = 200; - List> paths = new List>() { new List() }; - int pathID = 0; - double distance = WorldUtils.CalcDistance(origin, dest); - - if (distance <= interval) - { - Console.WriteLine("Distance Less Than Equal To Interval!"); - paths[pathID].Add(new Point() { X = dest.Lon, Y = dest.Lat }); - } - else - { - Console.WriteLine("Distance Greater Than Interval!"); - GeoLocation current = origin; - GeoLocation previous = origin; - - for (int dist = interval; dist <= distance; dist += interval) - { - previous = current; - - paths[pathID].Add(new Point() { X = current.Lon, Y = current.Lat }); - - double bearing = WorldUtils.CalcBearing(current, dest); - current = WorldUtils.CalcDestination(current, bearing, interval); - - if (previous.Lon > 150 && current.Lon < -150) - { - paths[pathID].Add(new Point() { X = 180, Y = current.Lat }); - paths.Add(new List()); - pathID++; - current = new GeoLocation() { Lon = -180, Lat = current.Lat }; - } - else if (previous.Lon < -150 && current.Lon > 150) - { - paths[pathID].Add(new Point() { X = -180, Y = current.Lat }); - paths.Add(new List()); - pathID++; - current = new GeoLocation() { Lon = 180, Lat = current.Lat }; - } - } - - paths[pathID].Add(new Point() { X = dest.Lon, Y = dest.Lat }); - - } - - return paths; - - } - - public static double CalcBearing(GeoLocation origin, GeoLocation dest) - { - origin = WorldUtils.ToRadianLocation(origin); - dest = WorldUtils.ToRadianLocation(dest); - - double range = (dest.Lon - origin.Lon); - - double y = Math.Sin(range) * Math.Cos(dest.Lat); - double x = Math.Cos(origin.Lat) * Math.Sin(dest.Lat) - Math.Sin(origin.Lat) * Math.Cos(dest.Lat) * Math.Cos(range); - double angle = Math.Atan2(y, x); - - return WorldUtils.ToDegreesNormalized(angle); - } - - public static GeoLocation CalcDestination(GeoLocation origin, double bearing, double distance) - { - double radius = 6371.0; - - origin = WorldUtils.ToRadianLocation(origin); - bearing = WorldUtils.ToRadians(bearing); - - distance = distance / radius; - - double lat = Math.Asin(Math.Sin(origin.Lat) * Math.Cos(distance) + - Math.Cos(origin.Lat) * Math.Sin(distance) * Math.Cos(bearing)); - double x = Math.Sin(bearing) * Math.Sin(distance) * Math.Cos(origin.Lat); - double y = Math.Cos(distance) - Math.Sin(origin.Lat) * Math.Sin(origin.Lat); - double lon = origin.Lon + Math.Atan2(x, y); - // normalize lon to coordinate between -180º and +180º - lon = (lon + 3 * Math.PI) % (2 * Math.PI) - Math.PI; - - lon = WorldUtils.ToDegrees(lon); - lat = WorldUtils.ToDegrees(lat); - - return new GeoLocation() { Lat = lat, Lon = lon }; - } - - public static double CalcDistance(GeoLocation origin, GeoLocation dest) - { - origin = WorldUtils.ToRadianLocation(origin); - dest = WorldUtils.ToRadianLocation(dest); - - double sinProd = Math.Sin(origin.Lat) * Math.Sin(dest.Lat); - double cosProd = Math.Cos(origin.Lat) * Math.Cos(dest.Lat); - double lonDelta = (dest.Lon - origin.Lon); - - double angle = Math.Acos(sinProd + cosProd * Math.Cos(lonDelta)); - double distance = angle * 6371.0; - return distance; - } - - public static GeoLocation ToRadianLocation(GeoLocation geoPoint) - { - double x = WorldUtils.ToRadians(geoPoint.Lon); - double y = WorldUtils.ToRadians(geoPoint.Lat); - - return new GeoLocation() { Lon = x, Lat = y }; - } - - public static double ToRadians(double degrees) - { - return degrees * Math.PI / 180; - } - - public static double ToDegrees(double radians) - { - return (radians * 180.0 / Math.PI); - } - - public static double ToDegreesNormalized(double radians) - { - double degrees = WorldUtils.ToDegrees(radians); - degrees = (degrees + 360) % 360; - return degrees; - } - - public static string ToStringLat(double latitude) - { - string str = Math.Abs(latitude) + "°"; - return latitude > 0 ? str + "N" : str + "S"; - } - - public static string ToStringLon(double coordinate) - { - double val = Math.Abs(coordinate); - string str = val.ToString(); - return coordinate > 0 ? str + "°E" : str + "°W"; - } - - public static string ToStringAbbr(double value) - { - if (value > 1000000000000) - { - return (value / 1000000000000).ToString("N1") + " T"; - } - else if (value > 1000000000) - { - return (value / 1000000000).ToString("N1") + " B"; - } - else if (value > 1000000) - { - return (value / 1000000).ToString("N1") + " M"; - } - else if (value > 1000) - { - return (value / 1000).ToString("N1") + " K"; - } - return value.ToString("N0"); - } - - public static double GetLongitude(GeoLocation location) - { - return location.Lon; - } - - public static double GetLatitude(GeoLocation location) - { - return location.Lat; - } - - public static Rect GetBounds(List locations) - { - double minLat = 90; - double maxLat = -90; - double minLon = 180; - double maxLon = -180; - - foreach (GeoLocation gl in locations) - { - double curLon = WorldUtils.GetLongitude(gl); - double curLat = WorldUtils.GetLatitude(gl); - - if (!double.IsNaN(curLon)) +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="WorldUtils" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "series": [ { - minLon = Math.Min(minLon, curLon); - maxLon = Math.Max(maxLon, curLon); + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "$dataSourceRef": "+doc:WorldUtils", + "shapeMemberPath": "Points" } - - if (!double.IsNaN(curLat)) - { - minLat = Math.Min(minLat, curLat); - maxLat = Math.Min(maxLat, curLat); - } - } - - Rect geoBounds = new Rect(minLon, minLat, Math.Abs(maxLon - minLon), Math.Abs(maxLat - minLat)); - return geoBounds; - } - - public static List GetNightShapes() - { - List line = new List(); - - for (int lon = -180; lon <= 180; lon += 1) - { - double x = lon; - double y = 75 * Math.Cos(lon * Math.PI / 180); - line.Add(new Point(x, y)); - } - - return line; + ] } } +} ``` - - ## API References diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx index d25b66830c..1da39b77bb 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx @@ -9,7 +9,6 @@ llms: description: "リソース トピックは、空港の位置、飛行経路、および地理的なグリッド線を生成するためのデータユーティリティの実装を提供します。" --- import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; # {Platform} ワールド コネクション @@ -18,308 +17,26 @@ import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBloc ## コード スニペット - - -```ts -import WorldLocations from "./WorldLocations"; -import WorldUtils from "./WorldUtils" - -export default class WorldConnections { - - private static airports: any[] = []; - private static airportsLookup = new Map(); - - private static flights: any[] = []; - private static flightsLookup: string[] = []; - - public static getFlights(): any[] { - if (this.flights.length == 0) this.init(); - return this.flights; - } - - public static getAirports(): any[] { - if (this.airports.length == 0) this.init(); - return this.airports; - } - - public static comparePopulation(a: any, b: any): number { - if (a.pop < b.pop) { - return 1; - } - if (a.pop > b.pop) { - return -1; - } - return 0; - } - - public static init() { - - const cities: any[] = WorldLocations.getAll(); - cities.sort(this.comparePopulation); - let count = cities.length; - let minDistance = 200; - let maxDistance = 9000; - let flightsLimit = 1500; - let flightsCount = 0; - - for (let i = 0; i < count; i++) { - let origin = cities[i]; - let connectionsCount = 0; - let connectionsMax = Math.min(20, Math.round(origin.pop * 4)); - - for (let ii = 0; ii < count; ii++) - { - let dest = cities[ii]; - if (origin.name != dest.name) +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="WorldConnections" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "series": [ { - let route = [origin.name, dest.name].sort().join('-'); - let routeIsValid = this.flightsLookup.indexOf(route) == -1; - let distance = Math.round(WorldUtils.calcDistance(origin, dest)); - let distanceIsValid = distance > minDistance && distance < maxDistance; - let pass = Math.round((Math.random() * 200)) + 150; - let time = distance / 800; - let trafficIsValid = origin.pop > 3 && dest.pop > 1.0; - - if (routeIsValid && distanceIsValid && trafficIsValid) { - this.flightsLookup.push(route); - - let paths = WorldUtils.calcPaths(origin, dest); - flightsCount++; - connectionsCount++; - let id = origin.name.substring(0,3).toUpperCase() + "-" + flightsCount; - let flight = { id: id, origin: origin, dest: dest, time: time, passengers: pass, distance: distance, points: paths }; - this.flights.push(flight); - } - if (connectionsCount > connectionsMax) { - break; - } + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "$dataSourceRef": "+doc:WorldConnections", + "shapeMemberPath": "Points" } - } - if (flightsCount > flightsLimit) { - break; - } - } - - for (const flight of this.flights) { - this.addAirport(flight.origin); - this.addAirport(flight.dest); - } - - this.airports = Array.from(this.airportsLookup.values()); - } - - private static addAirport(city: any) { - if (this.airportsLookup.has(city.name)) { - this.airportsLookup.get(city.name).flights += 1; - } else { - let airport = Object.assign({flights: 1}, city ); - this.airportsLookup.set(city.name, airport); + ] } } - - public static getGridlines(): any[] { - let gridlines = []; - // longitude lines - for (let lon = -180; lon <= 180; lon += 30) { - - let line: any[] = [{x: lon, y: -90}, {x: lon, y: 90}]; - let points: any[] = [line]; - - let coordinateLine = {points: points, - degree: lon, - direction: lon > 0 ? "E" : "W" - }; - gridlines.push(coordinateLine); - } - // latitude lines - for (let lat = -90; lat <= 90; lat += 30) { - - let line: any[] = [{x: -180, y: lat}, {x: 180, y: lat}]; - let points: any[] = [line]; - let coordinateLine = {points: points, - degree: lat, - direction: lat > 0 ? "N" : "S" - }; - gridlines.push(coordinateLine); - } - return gridlines; - } } ``` - - - - -```csharp - public class WorldConnections - { - - public static List Flights { get; set; } - public static List Airports { get; set; } - - public static Dictionary FlightsLookup = new Dictionary(); - public static Dictionary AirportsLookup = new Dictionary(); - - public static List GetFlights() - { - Init(); - return Flights; - } - - public static List GetAirports() - { - Init(); - return Airports; - } - - public static int ComparePopulation(WorldCity a, WorldCity b) - { - if (a.Pop < b.Pop) - { - return 1; - } - if (a.Pop > b.Pop) - { - return -1; - } - - return 0; - } - - static Random r = new Random(); - public static void Init() - { - Flights = new List(); - Airports = new List(); - - List cities = WorldLocations.GetAll(); - cities.Sort(new Comparison(ComparePopulation)); - - int count = cities.Count; - int flightsCount = 0; - int connectionsCount = 0; - - double minDistance = 200; - double maxDistance = 9000; - double flightsLimit = 1500; - - for (int i=0; i minDistance && distance < maxDistance; - - double pass = Math.Round(r.NextDouble() * 200) + 150; - double time = distance / 800; - bool trafficIsValid = origin.Pop > 3 && dest.Pop > 1.0; - - if (routeIsValid && distanceIsValid && trafficIsValid) - { - FlightsLookup.Add(route, route); - - List> paths = WorldUtils.CalcPaths(originGeo, destGeo); - flightsCount++; - connectionsCount++; - - string id = origin.Name.Substring(0, 3).ToUpper() + "-" + flightsCount; - FlightInfo flight = new FlightInfo() { ID = id, Origin = origin, Dest = dest, Time = time, Passengers = pass, Distance = distance, Points = paths }; - Flights.Add(flight); - } - } - } - - if (flightsCount > flightsLimit) - { - break; - } - } - - foreach (FlightInfo flight in Flights) - { - AddAirport(flight.Origin); - AddAirport(flight.Dest); - } - - Airports = AirportsLookup.Values.ToList(); - } - - public static void AddAirport(WorldCity city) - { - if (!AirportsLookup.ContainsKey(city.Name)) - { - AirportsLookup.Add(city.Name, city); - } - } - - public static List GetGridlines() - { - List gridlines = new List(); - - List> latLines = new List>(); - List> lonLines = new List>(); - - for (int lon = -180; lon <= 180; lon += 30) - { - List points = new List(); - points.Add(new Point(lon, -90)); - points.Add(new Point(lon, 90)); - - lonLines.Add(points); - } - - for (int lat= -90; lat<= 90; lat += 30) - { - List points = new List(); - points.Add(new Point(-180, lat)); - points.Add(new Point(180, lat)); - - latLines.Add(points); - } - - CoordinateLine lines1 = new CoordinateLine() { Points = lonLines }; - CoordinateLine lines2 = new CoordinateLine() { Points = latLines }; - - gridlines.Add(lines1); - gridlines.Add(lines2); - - return gridlines; - } - } - - public class FlightInfo - { - public string ID { get; set; } - public WorldCity Origin { get; set; } - public WorldCity Dest { get; set; } - public double Time { get; set; } - public double Passengers { get; set; } - public double Distance { get; set; } - public List> Points { get; set; } - public string Color { get; set; } - } - - public class CoordinateLine - { - public List> Points { get; set; } - } -``` - - - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx index 3892d97985..9c5cf5efaa 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx @@ -9,7 +9,6 @@ llms: description: "インフラジスティックスの {Platform} JavaScript マップ データ ユーティリティを使用して、都市の地理的位置と国の首都を生成します。" --- import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; # {Platform} 世界の場所 @@ -18,1294 +17,26 @@ import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBloc ## コード スニペット - - -```ts -export default class WorldLocations { - - private static locations: any[] = []; - private static capitals: any[] = []; - private static cities: any[] = []; - - // get location of cities and capitals - public static getAll(): any[] { - if (this.locations.length == 0) this.init(); - return this.locations; - } - - // get location of cities - public static getCities(): any[] { - if (this.cities.length == 0) this.init(); - return this.cities; - } - - // get location of capitals - public static getCapitals(): any[] { - if (this.capitals.length == 0) this.init(); - return this.capitals; - } - - public static init() { - // console.log("WorldLocations init"); - this.locations = [ - { cap: false, pop: 0.468, lat: 68.9635467529297, lon: 33.0860404968262, country: "Russia", name: "Murmansk" }, - { cap: false, pop: 0.416, lat: 64.5206680297852, lon: 40.6461601257324, country: "Russia", name: "Arkhangelsk" }, - { cap: false, pop: 5.825, lat: 59.9518890380859, lon: 30.4533271789551, country: "Russia", name: "Saint Petersburg" }, - { cap: false, pop: 0.152, lat: 59.5709991455078, lon: 150.780014038086, country: "Russia", name: "Magadan" }, - { cap: false, pop: 1.160, lat: 58.0002365112305, lon: 56.2324638366699, country: "Russia", name: "Perm'" }, - { cap: false, pop: 1.620, lat: 56.8465423583984, lon: 60.6101303100586, country: "Russia", name: "Yekaterinburg" }, - { cap: false, pop: 2.025, lat: 56.2896766662598, lon: 43.9406700134277, country: "Russia", name: "Nizhniy Novgorod" }, - { cap: false, pop: 1.800, lat: 55.8628082275391, lon: -4.26994752883911, country: "UK", name: "Glasgow" }, - { cap: false, pop: 1.140, lat: 55.7330055236816, lon: 49.1454658508301, country: "Russia", name: "Kazan'" }, - { cap: false, pop: 1.325, lat: 55.1450004577637, lon: 61.3926124572754, country: "Russia", name: "Chelyabinsk" }, - { cap: false, pop: 1.175, lat: 55.063304901123, lon: 73.2502899169922, country: "Russia", name: "Omsk" }, - { cap: false, pop: 1.600, lat: 55.0321006774902, lon: 82.9428482055664, country: "Russia", name: "Novosibirsk" }, - { cap: false, pop: 1.100, lat: 54.8217353820801, lon: 56.0961265563965, country: "Russia", name: "Ufa" }, - { cap: true, pop: 0.582, lat: 54.6885681152344, lon: 25.2759666442871, country: "Lithuania", name: "Vilnius" }, - { cap: false, pop: 0.685, lat: 54.5869255065918, lon: -5.90966033935547, country: "UK", name: "Belfast" }, - { cap: false, pop: 0.909, lat: 54.3662033081055, lon: 18.624942779541, country: "Poland", name: "Gdansk" }, - { cap: true, pop: 1.650, lat: 53.8999366760254, lon: 27.5755672454834, country: "Byelarus", name: "Minsk" }, - { cap: false, pop: 1.540, lat: 53.8087120056152, lon: -1.49752748012543, country: "UK", name: "Leeds" }, - { cap: false, pop: 2.225, lat: 53.5711212158203, lon: 10.027606010437, country: "Germany", name: "Hamburg" }, - { cap: false, pop: 2.775, lat: 53.479663848877, lon: -2.26177859306335, country: "UK", name: "Manchester" }, - { cap: false, pop: 0.710, lat: 53.3740425109863, lon: -1.46298921108246, country: "UK", name: "Sheffield" }, - { cap: true, pop: 1.140, lat: 53.3415603637695, lon: -6.25734663009644, country: "Ireland", name: "Dublin" }, - { cap: false, pop: 1.505, lat: 53.1385955810547, lon: 50.0961799621582, country: "Russia", name: "Samara" }, - { cap: false, pop: 0.800, lat: 53.0801048278809, lon: 8.85762596130371, country: "Germany", name: "Bremen" }, - { cap: true, pop: 5.061, lat: 52.5162734985352, lon: 13.3275728225708, country: "Germany", name: "Berlin" }, - { cap: false, pop: 2.675, lat: 52.4927520751953, lon: -1.86334776878357, country: "UK", name: "Birmingham" }, - { cap: true, pop: 1.860, lat: 52.3730430603027, lon: 4.89483308792114, country: "Netherlands", name: "Amsterdam" }, - { cap: false, pop: 0.626, lat: 52.3174324035645, lon: 104.247833251953, country: "Russia", name: "Irkutsk" }, - { cap: true, pop: 2.323, lat: 52.244945526123, lon: 21.0118789672852, country: "Poland", name: "Warsaw" }, - { cap: false, pop: 1.110, lat: 51.925594329834, lon: 4.48515224456787, country: "Netherlands", name: "Rotterdam" }, - { cap: false, pop: 1.061, lat: 51.7779083251953, lon: 19.4764404296875, country: "Poland", name: "Lodz" }, - { cap: false, pop: 0.568, lat: 51.5138130187988, lon: 7.46641826629639, country: "Germany", name: "Dortmund" }, - { cap: false, pop: 0.515, lat: 51.4893379211426, lon: 6.77530431747437, country: "Germany", name: "Duisburg" }, - { cap: true, pop: 11.100, lat: 51.4879112243652, lon: -0.177998125553131, country: "UK", name: "london" }, - { cap: false, pop: 3.867, lat: 51.3540420532227, lon: 7.12243509292603, country: "Germany", name: "Essen" }, - { cap: false, pop: 0.700, lat: 51.3493309020996, lon: 12.3980741500854, country: "Germany", name: "Leipzig" }, - { cap: false, pop: 1.100, lat: 51.207347869873, lon: 4.42605447769165, country: "Belgium", name: "Antwerpen" }, - { cap: false, pop: 0.640, lat: 51.1218185424805, lon: 17.0381278991699, country: "Poland", name: "Wroclaw" }, - { cap: false, pop: 0.465, lat: 51.0475540161133, lon: 3.73629117012024, country: "Belgium", name: "Gent" }, - { cap: false, pop: 0.670, lat: 51.0456809997559, lon: 13.7053575515747, country: "Germany", name: "Dresden" }, - { cap: false, pop: 0.671, lat: 51.0299987792969, lon: -114.050003051758, country: "Canada", name: "Calgary" }, - { cap: false, pop: 1.760, lat: 50.9423446655273, lon: 6.93487167358398, country: "Germany", name: "Koln" }, - { cap: true, pop: 2.385, lat: 50.8370475769043, lon: 4.36761236190796, country: "Belgium", name: "Bruxelles" }, - { cap: false, pop: 0.570, lat: 50.7345581054688, lon: 7.09981870651245, country: "Germany", name: "Bonn" }, - { cap: false, pop: 1.020, lat: 50.6320838928223, lon: 3.06290125846863, country: "France", name: "Lille" }, - { cap: false, pop: 0.750, lat: 50.6225280761719, lon: 5.56943559646606, country: "Belgium", name: "Liege" }, - { cap: true, pop: 2.900, lat: 50.4481582641602, lon: 30.5021114349365, country: "Ukraine", name: "Kiev" }, - { cap: false, pop: 1.855, lat: 50.129997253418, lon: 8.66816711425781, country: "Germany", name: "Frankfurt am Main" }, - { cap: true, pop: 1.325, lat: 50.1058959960938, lon: 14.4565200805664, country: "Czech Repub", name: "Prague" }, - { cap: false, pop: 0.828, lat: 50.0622406005859, lon: 19.9450569152832, country: "Poland", name: "Krakow" }, - { cap: false, pop: 0.625, lat: 49.9211692810059, lon: -97.1244430541992, country: "Canada", name: "Winnipeg" }, - { cap: false, pop: 0.614, lat: 49.879207611084, lon: 73.20263671875, country: "Kazakhstan", name: "Karaganda" }, - { cap: false, pop: 0.790, lat: 49.8373107910156, lon: 24.0345211029053, country: "Ukraine", name: "Lvov" }, - { cap: false, pop: 0.450, lat: 49.2029800415039, lon: 16.6162452697754, country: "Czech Repub", name: "Brno" }, - { cap: true, pop: 9.775, lat: 48.8815536499023, lon: 2.43283271789551, country: "France", name: "Paris" }, - { cap: false, pop: 1.360, lat: 48.7102470397949, lon: 44.4836311340332, country: "Russia", name: "Volgograd" }, - { cap: false, pop: 0.400, lat: 48.5834350585938, lon: 7.76799440383911, country: "France", name: "Strasbourg" }, - { cap: false, pop: 0.335, lat: 48.2975959777832, lon: 14.2939014434814, country: "Austria", name: "Linz" }, - { cap: true, pop: 1.875, lat: 48.2021179199219, lon: 16.3209857940674, country: "Austria", name: "Vienna" }, - { cap: false, pop: 1.955, lat: 48.1409759521484, lon: 11.5429534912109, country: "Germany", name: "Munchen" }, - { cap: false, pop: 2.200, lat: 48.0401458740234, lon: 37.7370529174805, country: "Ukraine", name: "Donets'k" }, - { cap: true, pop: 0.548, lat: 47.928596496582, lon: 106.912353515625, country: "Mongolia", name: "Ulaanbaatar" }, - { cap: true, pop: 2.565, lat: 47.5146255493164, lon: 19.0942497253418, country: "Hungary", name: "Budapest" }, - { cap: false, pop: 1.150, lat: 47.3440055847168, lon: 123.964965820313, country: "China", name: "Qiqihar" }, - { cap: false, pop: 0.185, lat: 47.2654609680176, lon: 11.3499822616577, country: "Austria", name: "Innsbruck" }, - { cap: false, pop: 1.165, lat: 47.2320976257324, lon: 39.6880378723145, country: "Russia", name: "Rostov-na-Donu" }, - { cap: false, pop: 0.465, lat: 47.2194328308105, lon: -1.56156122684479, country: "France", name: "Nantes" }, - { cap: false, pop: 0.325, lat: 47.0649223327637, lon: 15.4311008453369, country: "Austria", name: "Graz" }, - { cap: true, pop: 0.299, lat: 46.9482078552246, lon: 7.44573640823364, country: "Switzerland", name: "Bern" }, - { cap: false, pop: 0.603, lat: 46.802074432373, lon: -71.2449340820313, country: "Canada", name: "Quebec" }, - { cap: false, pop: 1.185, lat: 46.5722007751465, lon: 30.6839370727539, country: "Ukraine", name: "Odessa" }, - { cap: false, pop: 2.670, lat: 45.7552185058594, lon: 126.622634887695, country: "China", name: "Harbin" }, - { cap: false, pop: 1.275, lat: 45.7470817565918, lon: 4.85540056228638, country: "France", name: "Lyon" }, - { cap: false, pop: 2.921, lat: 45.541015625, lon: -73.6535339355469, country: "Canada", name: "Montreal" }, - { cap: false, pop: 3.750, lat: 45.4733810424805, lon: 9.19046401977539, country: "Italy", name: "Milano" }, - { cap: false, pop: 0.420, lat: 45.4247741699219, lon: 12.370719909668, country: "Italy", name: "Venezia" }, - { cap: true, pop: 0.819, lat: 45.3742179870605, lon: -75.650749206543, country: "Canada", name: "Ottawa" }, - { cap: false, pop: 1.550, lat: 45.0748748779297, lon: 7.66642618179321, country: "Italy", name: "Torino" }, - { cap: false, pop: 2.012, lat: 44.924186706543, lon: -93.3077926635742, country: "US", name: "Minneapolis" }, - { cap: false, pop: 0.640, lat: 44.8414726257324, lon: -0.599498748779297, country: "France", name: "Bordeaux" }, - { cap: true, pop: 1.400, lat: 44.7996826171875, lon: 20.4125556945801, country: "Serbia", name: "Beograd" }, - { cap: true, pop: 2.250, lat: 44.4304847717285, lon: 26.1229763031006, country: "Romania", name: "Bucuresti" }, - { cap: false, pop: 1.740, lat: 43.8813171386719, lon: 125.312652587891, country: "China", name: "Changchung" }, - { cap: false, pop: 1.170, lat: 43.8502159118652, lon: 126.56706237793, country: "China", name: "Jilin" }, - { cap: false, pop: 1.040, lat: 43.7826652526855, lon: 87.5865173339844, country: "China", name: "Urumqi" }, - { cap: false, pop: 0.640, lat: 43.7815742492676, lon: 11.207745552063, country: "Italy", name: "Firenze" }, - { cap: false, pop: 3.427, lat: 43.7207679748535, lon: -79.4126358032227, country: "Canada", name: "Toronto" }, - { cap: false, pop: 0.541, lat: 43.5999603271484, lon: 1.43798303604126, country: "France", name: "Toulouse" }, - { cap: false, pop: 0.985, lat: 43.2821578979492, lon: -2.97378325462341, country: "Spain", name: "Bilbao" }, - { cap: true, pop: 1.190, lat: 43.2550621032715, lon: 76.9126281738281, country: "Kazakhstan", name: "Almaty" }, - { cap: false, pop: 0.816, lat: 43.2104644775391, lon: -77.635612487793, country: "US", name: "Rochester" }, - { cap: false, pop: 1.375, lat: 43.0679473876953, lon: -87.9907379150391, country: "US", name: "Milwaukee" }, - { cap: false, pop: 1.900, lat: 43.0552520751953, lon: 141.345474243164, country: "Japan", name: "Sapporo" }, - { cap: false, pop: 1.483, lat: 42.8986625671387, lon: -78.8484344482422, country: "US", name: "Buffalo" }, - { cap: true, pop: 1.205, lat: 42.7072639465332, lon: 23.3318710327148, country: "Bulgaria", name: "Sofia" }, - { cap: false, pop: 4.692, lat: 42.3943138122559, lon: -83.0789260864258, country: "US", name: "Detroit" }, - { cap: false, pop: 3.972, lat: 42.3752975463867, lon: -71.1025848388672, country: "US", name: "Boston" }, - { cap: false, pop: 1.270, lat: 41.8591575622559, lon: 123.905570983887, country: "China", name: "Fushun" }, - { cap: false, pop: 7.717, lat: 41.826545715332, lon: -87.6413040161133, country: "US", name: "Chicago" }, - { cap: false, pop: 3.840, lat: 41.8021621704102, lon: 123.383056640625, country: "China", name: "Shenyang" }, - { cap: true, pop: 1.460, lat: 41.721809387207, lon: 44.7831268310547, country: "Georgia", name: "Tbilisi" }, - { cap: false, pop: 0.575, lat: 41.6512641906738, lon: -0.878205060958862, country: "Spain", name: "Zaragoza" }, - { cap: false, pop: 2.218, lat: 41.3907165527344, lon: -81.7275085449219, country: "US", name: "Cleveland" }, - { cap: true, pop: 0.211, lat: 41.3316535949707, lon: 19.8318042755127, country: "Albania", name: "Tirane" }, - { cap: false, pop: 1.300, lat: 41.1152458190918, lon: 122.977012634277, country: "China", name: "Anshan" }, - { cap: false, pop: 5.750, lat: 41.0659561157227, lon: 29.0060691833496, country: "Turkey", name: "Istanbul" }, - { cap: false, pop: 0.682, lat: 40.693920135498, lon: -111.89217376709, country: "US", name: "Salt Lake City" }, - { cap: false, pop: 2.219, lat: 40.4972038269043, lon: -79.9970855712891, country: "US", name: "Pittsburgh" }, - { cap: true, pop: 4.650, lat: 40.4422187805176, lon: -3.69096946716309, country: "Spain", name: "Madrid" }, - { cap: true, pop: 2.020, lat: 40.3242988586426, lon: 49.8162384033203, country: "Azerbaijan", name: "Baku" }, - { cap: true, pop: 1.315, lat: 40.2080230712891, lon: 44.5326690673828, country: "Armenia", name: "Yerevan" }, - { cap: false, pop: 0.964, lat: 40.0446434020996, lon: -82.9927062988281, country: "US", name: "Columbus" }, - { cap: true, pop: 2.400, lat: 39.929328918457, lon: 32.853271484375, country: "Turkey", name: "Ankara" }, - { cap: false, pop: 5.209, lat: 39.9275512695313, lon: -75.2182235717773, country: "US", name: "Philadelphia" }, - { cap: true, pop: 6.450, lat: 39.906192779541, lon: 116.388038635254, country: "China", name: "Beijing" }, - { cap: false, pop: 0.246, lat: 39.9044532775879, lon: 41.2918243408203, country: "Turkey", name: "Erzurum" }, - { cap: false, pop: 0.366, lat: 39.6575813293457, lon: 66.9476013183594, country: "Uzbekistan", name: "Samarkand" }, - { cap: false, pop: 1.060, lat: 39.6154441833496, lon: 118.180213928223, country: "China", name: "Tangshan" }, - { cap: false, pop: 1.270, lat: 39.4709167480469, lon: -0.367400944232941, country: "Spain", name: "Valencia" }, - { cap: false, pop: 1.960, lat: 39.3218841552734, lon: -76.6183776855469, country: "US", name: "Baltimore" }, - { cap: false, pop: 0.305, lat: 39.2251434326172, lon: 9.10890960693359, country: "Italy", name: "Cagliari" }, - { cap: false, pop: 1.480, lat: 39.1480102539063, lon: -84.4770202636719, country: "US", name: "Cincinnati" }, - { cap: false, pop: 4.880, lat: 39.1284141540527, lon: 117.18522644043, country: "China", name: "Tianjin" }, - { cap: true, pop: 1.600, lat: 39.0285148620605, lon: 125.757514953613, country: "Korea D P Rp", name: "Pyongyang" }, - { cap: false, pop: 1.272, lat: 38.9941177368164, lon: -94.6265640258789, country: "US", name: "Kansas City" }, - { cap: true, pop: 3.221, lat: 38.8909111022949, lon: -76.9538345336914, country: "US", name: "Washington D.C." }, - { cap: false, pop: 2.203, lat: 38.6388854980469, lon: -90.3419799804688, country: "US", name: "St. Louis" }, - { cap: false, pop: 0.866, lat: 38.5670166015625, lon: -121.422706604004, country: "US", name: "Sacramento" }, - { cap: false, pop: 0.971, lat: 38.0809783935547, lon: 46.2901191711426, country: "Iran", name: "Tabriz" }, - { cap: false, pop: 1.190, lat: 38.0770950317383, lon: 114.559707641602, country: "China", name: "Shijiazhuang" }, - { cap: true, pop: 0.398, lat: 37.9504203796387, lon: 58.3901329040527, country: "Turkmenistan", name: "Ashkhabad" }, - { cap: false, pop: 1.660, lat: 37.8930549621582, lon: 112.551704406738, country: "China", name: "Taiyuan" }, - { cap: true, pop: 15.850, lat: 37.542350769043, lon: 126.935249328613, country: "Korea Rep", name: "Seoul" }, - { cap: false, pop: 0.945, lat: 37.3726463317871, lon: -5.97083187103271, country: "Spain", name: "Sevilla" }, - { cap: false, pop: 0.778, lat: 36.9999809265137, lon: 35.3243637084961, country: "Turkey", name: "Adana" }, - { cap: false, pop: 0.796, lat: 36.8792915344238, lon: -76.2685699462891, country: "US", name: "Norfolk" }, - { cap: true, pop: 1.225, lat: 36.8188133239746, lon: 10.1659603118896, country: "Tunisia", name: "Tunis" }, - { cap: false, pop: 0.830, lat: 36.7914962768555, lon: 118.062042236328, country: "China", name: "Zibo" }, - { cap: false, pop: 1.460, lat: 36.6555366516113, lon: 116.967056274414, country: "China", name: "Jinan" }, - { cap: false, pop: 0.571, lat: 36.3355674743652, lon: 43.1371269226074, country: "Iraq", name: "Mosul" }, - { cap: false, pop: 1.464, lat: 36.2900695800781, lon: 59.596851348877, country: "Iran", name: "Mashhad" }, - { cap: false, pop: 1.216, lat: 36.2155456542969, lon: 37.1592826843262, country: "Syria", name: "Aleppo" }, - { cap: false, pop: 1.270, lat: 36.1134300231934, lon: 103.599594116211, country: "China", name: "Lanzhou" }, - { cap: false, pop: 2.206, lat: 35.8635368347168, lon: 128.591384887695, country: "Korea Rep", name: "Taegu" }, - { cap: true, pop: 6.400, lat: 35.7744750976563, lon: 51.4476509094238, country: "Iran", name: "Tehran" }, - { cap: true, pop: 23.620, lat: 35.6830558776855, lon: 139.809188842773, country: "Japan", name: "Tokyo" }, - { cap: false, pop: 1.089, lat: 35.5045700073242, lon: 139.72721862793, country: "Japan", name: "Kawasaki" }, - { cap: false, pop: 0.742, lat: 35.4895896911621, lon: -97.5302963256836, country: "US", name: "Oklahoma City" }, - { cap: false, pop: 2.993, lat: 35.437385559082, lon: 139.619659423828, country: "Japan", name: "Yokohama" }, - { cap: false, pop: 0.479, lat: 35.2058143615723, lon: -80.8356857299805, country: "US", name: "Charlotte" }, - { cap: false, pop: 3.800, lat: 35.1578674316406, lon: 129.0546875, country: "Korea Rep", name: "Pusan" }, - { cap: false, pop: 4.800, lat: 35.1549224853516, lon: 136.920593261719, country: "Japan", name: "Nagoya" }, - { cap: false, pop: 0.853, lat: 35.1147270202637, lon: -90.0003280639648, country: "US", name: "Memphis" }, - { cap: false, pop: 1.479, lat: 35.0091285705566, lon: 135.754821777344, country: "Japan", name: "Kyoto" }, - { cap: false, pop: 1.170, lat: 34.757682800293, lon: 113.641777038574, country: "China", name: "Zhengzhou" }, - { cap: false, pop: 0.431, lat: 34.7338752746582, lon: 36.7181739807129, country: "Syria", name: "Homs" }, - { cap: false, pop: 0.740, lat: 34.6713485717773, lon: 112.361236572266, country: "China", name: "Luoyang" }, - { cap: false, pop: 15.040, lat: 34.6355285644531, lon: 135.519119262695, country: "Japan", name: "Osaka" }, - { cap: true, pop: 1.179, lat: 34.5309066772461, lon: 69.1367568969727, country: "Afghanistan", name: "Kabul" }, - { cap: false, pop: 1.575, lat: 34.377555847168, lon: 132.444778442383, country: "Japan", name: "Hiroshima" }, - { cap: false, pop: 2.050, lat: 34.265697479248, lon: 108.883361816406, country: "China", name: "Xian" }, - { cap: false, pop: 0.535, lat: 34.0435676574707, lon: -4.99554777145386, country: "Morocco", name: "Fes" }, - { cap: false, pop: 1.963, lat: 33.7957000732422, lon: -84.3492279052734, country: "US", name: "Atlanta" }, - { cap: true, pop: 0.204, lat: 33.7181510925293, lon: 73.060546875, country: "Pakistan", name: "Islamabad" }, - { cap: false, pop: 0.836, lat: 33.6058044433594, lon: 73.0437469482422, country: "Pakistan", name: "Rawalpindi" }, - { cap: true, pop: 1.850, lat: 33.5193023681641, lon: 36.3134536743164, country: "Syria", name: "Damascus" }, - { cap: false, pop: 1.482, lat: 33.5090217590332, lon: -112.110260009766, country: "US", name: "Phoenix" }, - { cap: true, pop: 3.841, lat: 33.3340377807617, lon: 44.397834777832, country: "Iraq", name: "Baghdad" }, - { cap: false, pop: 2.727, lat: 32.763729095459, lon: -96.663688659668, country: "US", name: "Dallas" }, - { cap: false, pop: 0.987, lat: 32.6513900756836, lon: 51.6791877746582, country: "Iran", name: "Esfahan" }, - { cap: false, pop: 2.290, lat: 32.0483665466309, lon: 118.768905639648, country: "China", name: "Nanjing" }, - { cap: true, pop: 1.250, lat: 31.9493827819824, lon: 35.9329071044922, country: "Jordan", name: "Amman" }, - { cap: false, pop: 0.595, lat: 31.6308898925781, lon: 74.8715515136719, country: "India", name: "Amritsar" }, - { cap: false, pop: 3.025, lat: 31.5450534820557, lon: 74.3406753540039, country: "Pakistan", name: "Lahore" }, - { cap: false, pop: 1.104, lat: 31.4089508056641, lon: 73.0834579467773, country: "Pakistan", name: "Faisalabad" }, - { cap: false, pop: 9.300, lat: 31.2478694915771, lon: 121.47265625, country: "China", name: "Shanghai" }, - { cap: false, pop: 1.810, lat: 30.6700687408447, lon: 104.071273803711, country: "China", name: "Chengdu" }, - { cap: false, pop: 3.490, lat: 30.5724983215332, lon: 114.279220581055, country: "China", name: "Wuhan" }, - { cap: false, pop: 0.617, lat: 30.503490447998, lon: 47.7608642578125, country: "Iraq", name: "Al Basra" }, - { cap: false, pop: 1.270, lat: 30.2526245117188, lon: 120.165077209473, country: "China", name: "Hangzhou" }, - { cap: true, pop: 9.300, lat: 30.0779113769531, lon: 31.2507972717285, country: "Egypt", name: "Cairo" }, - { cap: false, pop: 1.185, lat: 29.9563789367676, lon: -90.0986862182617, country: "US", name: "New Orleans" }, - { cap: false, pop: 2.755, lat: 29.7718296051025, lon: -95.407112121582, country: "US", name: "Houston" }, - { cap: false, pop: 0.084, lat: 29.6507034301758, lon: 91.1320877075195, country: "China", name: "Lhasa" }, - { cap: false, pop: 2.450, lat: 29.5441036224365, lon: 106.522689819336, country: "China", name: "Chongqing" }, - { cap: false, pop: 0.968, lat: 29.4299221038818, lon: -98.5245742797852, country: "US", name: "San Antonio" }, - { cap: false, pop: 1.030, lat: 28.6712398529053, lon: 115.88941192627, country: "China", name: "Nanchang" }, - { cap: true, pop: 0.273, lat: 28.5687255859375, lon: 77.2167510986328, country: "India", name: "New Delhi" }, - { cap: false, pop: 7.200, lat: 28.5264587402344, lon: 77.2243728637695, country: "India", name: "Delhi" }, - { cap: false, pop: 1.190, lat: 28.1976413726807, lon: 112.968482971191, country: "China", name: "Changsha" }, - { cap: true, pop: 0.320, lat: 27.7120170593262, lon: 85.3129501342773, country: "Nepal", name: "Kathmandu" }, - { cap: true, pop: 0.012, lat: 27.44260597229, lon: 89.6673278808594, country: "Bhutan", name: "Thimbu" }, - { cap: false, pop: 1.025, lat: 26.9051132202148, lon: 75.8012771606445, country: "India", name: "Jaipur" }, - { cap: false, pop: 1.060, lat: 26.8494281768799, lon: 80.9197235107422, country: "India", name: "Lucknow" }, - { cap: false, pop: 1.010, lat: 26.5719413757324, lon: 106.700302124023, country: "China", name: "Guiyang" }, - { cap: false, pop: 1.875, lat: 26.4578304290771, lon: 80.3178634643555, country: "India", name: "Kanpur" }, - { cap: false, pop: 0.890, lat: 26.0710163116455, lon: 119.303520202637, country: "China", name: "Fuzhou" }, - { cap: false, pop: 2.827, lat: 25.8321304321289, lon: -80.2702178955078, country: "US", name: "Miami" }, - { cap: false, pop: 2.015, lat: 25.6773529052734, lon: -100.317085266113, country: "Mexico", name: "Monterrey" }, - { cap: false, pop: 1.025, lat: 25.6138973236084, lon: 85.1353454589844, country: "India", name: "Patna" }, - { cap: false, pop: 0.800, lat: 25.3801860809326, lon: 68.3664703369141, country: "Pakistan", name: "Hyderabad" }, - { cap: false, pop: 0.925, lat: 25.2820110321045, lon: 82.9563369750977, country: "India", name: "Benares" }, - { cap: true, pop: 0.310, lat: 25.2036418914795, lon: 51.4972343444824, country: "Qatar", name: "Doha" }, - { cap: false, pop: 1.280, lat: 25.0510330200195, lon: 102.702125549316, country: "China", name: "Kunming" }, - { cap: true, pop: 6.130, lat: 25.0350914001465, lon: 121.506729125977, country: "Taiwan", name: "Taipei" }, - { cap: false, pop: 0.715, lat: 24.1436424255371, lon: 120.670280456543, country: "Taiwan", name: "T`ai-chung" }, - { cap: true, pop: 3.430, lat: 23.7099189758301, lon: 90.4071426391602, country: "Bangladesh", name: "Dhaka" }, - { cap: false, pop: 3.050, lat: 23.0961952209473, lon: 113.293609619141, country: "China", name: "Guangzhou" }, - { cap: false, pop: 2.400, lat: 23.0397911071777, lon: 72.5668640136719, country: "India", name: "Ahmadabad" }, - { cap: false, pop: 0.648, lat: 22.8426475524902, lon: 89.5582427978516, country: "Bangladesh", name: "Khulna" }, - { cap: false, pop: 11.100, lat: 22.5435371398926, lon: 88.3342208862305, country: "India", name: "Calcutta" }, - { cap: false, pop: 0.435, lat: 22.2432346343994, lon: -97.8426284790039, country: "Mexico", name: "Tampico" }, - { cap: false, pop: 0.533, lat: 21.975944519043, lon: 96.0841522216797, country: "Burma", name: "Mandalay" }, - { cap: false, pop: 0.550, lat: 21.4273815155029, lon: 39.8148384094238, country: "Saudi Arabia", name: "Mecca" }, - { cap: false, pop: 1.302, lat: 21.1557579040527, lon: 79.089111328125, country: "India", name: "Nagpur" }, - { cap: true, pop: 1.500, lat: 21.0319480895996, lon: 105.81990814209, country: "Vietnam", name: "Hanoi" }, - { cap: false, pop: 0.385, lat: 20.8613586425781, lon: 106.679794311523, country: "Vietnam", name: "Haiphong" }, - { cap: false, pop: 0.400, lat: 20.8218688964844, lon: -89.552864074707, country: "Mexico", name: "Merida" }, - { cap: false, pop: 2.325, lat: 20.6735916137695, lon: -103.343795776367, country: "Mexico", name: "Guadalajara" }, - { cap: false, pop: 0.207, lat: 19.6157131195068, lon: 37.2196884155273, country: "Sudan", name: "Bur Sudan" }, - { cap: true, pop: 14.100, lat: 19.4270458221436, lon: -99.127571105957, country: "Mexico", name: "Mexico City" }, - { cap: false, pop: 1.055, lat: 19.0486316680908, lon: -98.1929473876953, country: "Mexico", name: "Puebla de Zaragoza" }, - { cap: false, pop: 1.775, lat: 18.5357475280762, lon: 73.8522720336914, country: "India", name: "Pune" }, - { cap: true, pop: 0.880, lat: 18.5266170501709, lon: -72.3431091308594, country: "Haiti", name: "Port-au-Prince" }, - { cap: true, pop: 1.775, lat: 18.4006156921387, lon: -66.0817565917969, country: "Puerto Rico", name: "San Juan" }, - { cap: true, pop: 0.770, lat: 18.0157127380371, lon: -76.7973022460938, country: "Jamaica", name: "Kingston" }, - { cap: false, pop: 2.750, lat: 17.3945465087891, lon: 78.4850311279297, country: "India", name: "Hyderabad" }, - { cap: true, pop: 2.800, lat: 16.8722229003906, lon: 96.1248931884766, country: "Burma", name: "Rangoon" }, - { cap: true, pop: 0.427, lat: 15.3614444732666, lon: 44.2095031738281, country: "Yemen", name: "Sanaa" }, - { cap: true, pop: 1.400, lat: 14.6180076599121, lon: -90.52490234375, country: "Guatemala", name: "Guatemala" }, - { cap: true, pop: 0.552, lat: 14.0990505218506, lon: -87.2030944824219, country: "Honduras", name: "Tegucigalpa" }, - { cap: true, pop: 6.450, lat: 13.7455711364746, lon: 100.552665710449, country: "Thailand", name: "Bangkok" }, - { cap: true, pop: 0.920, lat: 13.7014122009277, lon: -89.2002334594727, country: "El Salvador", name: "San Salvador" }, - { cap: true, pop: 0.398, lat: 13.6045436859131, lon: 2.08344984054565, country: "Niger", name: "Niamey" }, - { cap: false, pop: 4.475, lat: 13.0615034103394, lon: 80.2478256225586, country: "India", name: "Madras" }, - { cap: false, pop: 2.950, lat: 12.9747505187988, lon: 77.5877304077148, country: "India", name: "Bangalore" }, - { cap: true, pop: 0.646, lat: 12.6529502868652, lon: -7.98648166656494, country: "Mali", name: "Bamako" }, - { cap: true, pop: 0.682, lat: 12.1514730453491, lon: -86.2730331420898, country: "Nicaragua", name: "Managua" }, - { cap: true, pop: 0.700, lat: 11.564736366272, lon: 104.913192749023, country: "Cambodia", name: "Phnom Penh" }, - { cap: false, pop: 3.100, lat: 10.7591819763184, lon: 106.662452697754, country: "Vietnam", name: "Ho Chi Minh City" }, - { cap: false, pop: 0.891, lat: 10.6450433731079, lon: -71.6371459960938, country: "Venezuela", name: "Maracaibo" }, - { cap: true, pop: 3.600, lat: 10.4960489273071, lon: -66.8982849121094, country: "Venezuela", name: "Caracas" }, - { cap: false, pop: 0.498, lat: 10.0656652450562, lon: -69.3391952514648, country: "Venezuela", name: "Barquisimeto" }, - { cap: true, pop: 0.670, lat: 9.93047618865967, lon: -84.07861328125, country: "Costa Rica", name: "San Jose" }, - { cap: false, pop: 0.960, lat: 9.91398620605469, lon: 78.1217269897461, country: "India", name: "Madurai" }, - { cap: false, pop: 1.144, lat: 7.37884044647217, lon: 3.8952784538269, country: "Nigeria", name: "Ibadan" }, - { cap: false, pop: 0.409, lat: 7.08008003234863, lon: 125.613677978516, country: "Philippines", name: "Davao" }, - { cap: false, pop: 0.253, lat: 6.45053863525391, lon: 7.4920802116394, country: "Nigeria", name: "Enugu" }, - { cap: false, pop: 2.095, lat: 6.24114656448364, lon: -75.5920333862305, country: "Colombia", name: "Medellin" }, - { cap: true, pop: 1.250, lat: 5.55856275558472, lon: -0.200923636555672, country: "Ghana", name: "Accra" }, - { cap: true, pop: 1.950, lat: 5.32485723495483, lon: -4.02188682556152, country: "Ivory Coast", name: "Abidjan" }, - { cap: true, pop: 4.260, lat: 4.63021993637085, lon: -74.0805130004883, country: "Colombia", name: "Bogota" }, - { cap: true, pop: 0.474, lat: 4.3658561706543, lon: 18.5623416900635, country: "Cent Af Rep", name: "Bangui" }, - { cap: true, pop: 0.654, lat: 3.86512303352356, lon: 11.5136413574219, country: "Cameroon", name: "Yaounde" }, - { cap: false, pop: 1.374, lat: 3.58524203300476, lon: 98.6755981445313, country: "Indonesia", name: "Medan" }, - { cap: false, pop: 1.400, lat: 3.45685529708862, lon: -76.5224380493164, country: "Colombia", name: "Cali" }, - { cap: true, pop: 1.475, lat: 3.1502103805542, lon: 101.707672119141, country: "Malaysia", name: "Kuala Lumpur" }, - { cap: true, pop: 0.600, lat: 2.04117751121521, lon: 45.3441429138184, country: "Somalia", name: "Muqdisho" }, - { cap: false, pop: 0.283, lat: 0.519284904003143, lon: 25.1961479187012, country: "Zaire", name: "Kisangani" }, - { cap: true, pop: 1.050, lat: -0.229498133063316, lon: -78.524284362793, country: "Ecuador", name: "Quito" }, - { cap: false, pop: 0.179, lat: -3.75289535522461, lon: -73.1914901733398, country: "Peru", name: "Iquitos" }, - { cap: false, pop: 1.825, lat: -3.78332185745239, lon: -38.5889015197754, country: "Brazil", name: "Fortaleza" }, - { cap: true, pop: 0.586, lat: -4.28518676757813, lon: 15.2851486206055, country: "Congo", name: "Brazzaville" }, - { cap: false, pop: 0.291, lat: -5.89221096038818, lon: 22.4027786254883, country: "Zaire", name: "Kananga" }, - { cap: true, pop: 1.300, lat: -6.81735897064209, lon: 39.2533493041992, country: "Tanzania", name: "Dar es Salaam" }, - { cap: false, pop: 1.800, lat: -6.91243028640747, lon: 107.606903076172, country: "Indonesia", name: "Bandung" }, - { cap: false, pop: 2.625, lat: -8.08516788482666, lon: -34.9146385192871, country: "Brazil", name: "Recife" }, - { cap: false, pop: 0.155, lat: -12.7177352905273, lon: 13.464879989624, country: "Angola", name: "Benguela" }, - { cap: true, pop: 1.568, lat: -15.7921094894409, lon: -47.8977470397949, country: "Brazil", name: "Brasilia" }, - { cap: false, pop: 0.447, lat: -16.3975391387939, lon: -71.5227432250977, country: "Peru", name: "Arequipa" }, - { cap: true, pop: 0.993, lat: -16.4990062713623, lon: -68.1462478637695, country: "Bolivia", name: "La Paz" }, - { cap: false, pop: 0.990, lat: -16.7266998291016, lon: -49.254810333252, country: "Brazil", name: "Goiania" }, - { cap: false, pop: 0.442, lat: -17.7887916564941, lon: -63.1974182128906, country: "Bolivia", name: "Santa Cruz de La Sierra" }, - { cap: false, pop: 0.087, lat: -19.0421352386475, lon: -65.2558822631836, country: "Bolivia", name: "Sucre" }, - { cap: false, pop: 2.950, lat: -19.8517208099365, lon: -43.9090690612793, country: "Brazil", name: "Belo Horizonte" }, - { cap: false, pop: 10.150, lat: -22.7215728759766, lon: -43.4551773071289, country: "Brazil", name: "Rio de Janeiro" }, - { cap: false, pop: 15.175, lat: -23.5813045501709, lon: -46.6228981018066, country: "Brazil", name: "Sao Paulo" }, - { cap: false, pop: 1.065, lat: -23.9547004699707, lon: -46.3094940185547, country: "Brazil", name: "Santos" }, - { cap: true, pop: 0.095, lat: -24.6614418029785, lon: 25.7948017120361, country: "Botswana", name: "Gaborone" }, - { cap: false, pop: 1.700, lat: -25.4304790496826, lon: -49.2845077514648, country: "Brazil", name: "Curitiba" }, - { cap: true, pop: 0.960, lat: -25.7313461303711, lon: 28.2183723449707, country: "South Africa", name: "Pretoria" }, - { cap: true, pop: 1.070, lat: -25.9621543884277, lon: 32.5736923217773, country: "Mozambique", name: "Maputo" }, - { cap: false, pop: 3.650, lat: -26.1789569854736, lon: 28.0043087005615, country: "South Africa", name: "Johannesburg" }, - { cap: false, pop: 1.149, lat: -27.4539127349854, lon: 153.026489257813, country: "Australia", name: "Brisbane" }, - { cap: false, pop: 1.550, lat: -29.8363723754883, lon: 30.9421882629395, country: "South Africa", name: "Durban" }, - { cap: false, pop: 2.600, lat: -30.0395336151123, lon: -51.2079887390137, country: "Brazil", name: "Porto Alegre" }, - { cap: false, pop: 1.070, lat: -31.3162784576416, lon: -64.1798553466797, country: "Argentina", name: "Cordoba" }, - { cap: false, pop: 0.292, lat: -31.6168975830078, lon: -60.6978416442871, country: "Argentina", name: "Santa Fe" }, - { cap: false, pop: 0.650, lat: -32.8974380493164, lon: -68.8297348022461, country: "Argentina", name: "Mendoza" }, - { cap: false, pop: 1.045, lat: -32.9377365112305, lon: -60.6639404296875, country: "Argentina", name: "Rosario" }, - { cap: true, pop: 4.100, lat: -33.475025177002, lon: -70.6475143432617, country: "Chile", name: "Santiago" }, - { cap: false, pop: 0.690, lat: -33.8815765380859, lon: 25.4842987060547, country: "South Africa", name: "Port Elizabeth" }, - { cap: false, pop: 3.365, lat: -33.8897743225098, lon: 151.028198242188, country: "Australia", name: "Sydney" }, - { cap: true, pop: 10.750, lat: -34.6654014587402, lon: -58.4095916748047, country: "Argentina", name: "Buenos Aires" }, - { cap: true, pop: 0.271, lat: -35.349925994873, lon: 149.041625976563, country: "Australia", name: "Canberra" }, - { cap: false, pop: 0.850, lat: -36.893253326416, lon: 174.801055908203, country: "New Zealand", name: "Auckland" }, - { cap: false, pop: 2.833, lat: -37.8529586791992, lon: 145.075103759766, country: "Australia", name: "Melbourne" }, - { cap: false, pop: 0.224, lat: -38.7252731323242, lon: -62.2740669250488, country: "Argentina", name: "Bahia Blanca" }, - { cap: false, pop: 0.320, lat: -43.5489158630371, lon: 172.683654785156, country: "New Zealand", name: "Christchurch" }, - { cap: true, pop: 0.900, lat: 60.1964225769043, lon: 24.9766998291016, country: "Finland", name: "Helsinki" }, - { cap: false, pop: 0.310, lat: 34.745231628418, lon: 10.7592582702637, country: "Tunisia", name: "Sfax" }, - { cap: false, pop: 1.411, lat: 34.6638412475586, lon: 135.181838989258, country: "Japan", name: "Kobe" }, - { cap: false, pop: 0.490, lat: 31.7737464904785, lon: 35.2252197265625, country: "Israel", name: "Jerusalem" }, - { cap: false, pop: 0.616, lat: 10.1782207489014, lon: -68.0031127929688, country: "Venezuela", name: "Valencia" }, - { cap: false, pop: 1.255, lat: -2.20381617546082, lon: -79.9093933105469, country: "Ecuador", name: "Guayaquil" }, - { cap: false, pop: 4.054, lat: 37.7275123596191, lon: -122.308815002441, country: "US", name: "San Francisco" }, - { cap: false, pop: 0.630, lat: 55.8752517700195, lon: -3.29878330230713, country: "UK", name: "Edinburgh" }, - { cap: false, pop: 0.239, lat: 45.7002830505371, lon: 13.9328374862671, country: "Italy", name: "Trieste" }, - { cap: false, pop: 1.750, lat: 33.3099060058594, lon: 130.317184448242, country: "Japan", name: "Fukuoka" }, - { cap: false, pop: 1.525, lat: 33.6818656921387, lon: 130.797454833984, country: "Japan", name: "Kita Kyushu" }, - { cap: true, pop: 0.303, lat: 12.1041393280029, lon: 15.2408237457275, country: "Chad", name: "N'Djamena" }, - { cap: true, pop: 0.991, lat: 32.7516174316406, lon: 13.2118225097656, country: "Libya", name: "Tripoli" }, - { cap: false, pop: 1.550, lat: 38.4389190673828, lon: 27.2057685852051, country: "Turkey", name: "Izmir" }, - { cap: true, pop: 3.000, lat: -4.38867473602295, lon: 15.4692935943604, country: "Zaire", name: "Kinshasa" }, - { cap: false, pop: 0.978, lat: -34.9185371398926, lon: 138.870681762695, country: "Australia", name: "Adelaide" }, - { cap: true, pop: 8.600, lat: -6.29390430450439, lon: 106.762466430664, country: "Indonesia", name: "Jakarta" }, - { cap: false, pop: 1.025, lat: -7.02784442901611, lon: 110.444259643555, country: "Indonesia", name: "Semarang" }, - { cap: false, pop: 0.264, lat: -12.0435400009155, lon: -76.8356323242188, country: "Peru", name: "Callao" }, - { cap: false, pop: 1.200, lat: -1.60532903671265, lon: -48.316276550293, country: "Brazil", name: "Belem" }, - { cap: false, pop: 1.270, lat: 36.1483535766602, lon: 120.434127807617, country: "China", name: "Qingdao" }, - { cap: true, pop: 0.377, lat: 18.0017318725586, lon: 102.680236816406, country: "Laos", name: "Vientiane" }, - { cap: false, pop: 0.220, lat: 47.8011703491211, lon: 13.0908985137939, country: "Austria", name: "Salzburg" }, - { cap: true, pop: 0.698, lat: 45.8070755004883, lon: 15.9643859863281, country: "Croatia", name: "Zagreb" }, - { cap: true, pop: 0.273, lat: -3.26908373832703, lon: 29.5335865020752, country: "Burundi", name: "Bujumbura" }, - { cap: true, pop: 0.185, lat: 35.1650695800781, lon: 33.3851623535156, country: "Cyprus", name: "Nicosia" }, - { cap: true, pop: 0.182, lat: -2.11793518066406, lon: 29.9914855957031, country: "Rwanda", name: "Kigali" }, - { cap: true, pop: 0.233, lat: 46.068302154541, lon: 14.639612197876, country: "Slovenia", name: "Ljubljana" }, - { cap: true, pop: 0.109, lat: -29.2567100524902, lon: 27.8903884887695, country: "Lesotho", name: "Maseru" }, - { cap: true, pop: 0.133, lat: 49.740406036377, lon: 6.27325582504272, country: "Luxembourg", name: "Luxembourg" }, - { cap: false, pop: 0.770, lat: 51.903621673584, lon: 4.30062437057495, country: "Netherlands", name: "The Hague" }, - { cap: true, pop: 0.435, lat: 48.2745094299316, lon: 17.2698059082031, country: "Slovakia", name: "Bratislava" }, - { cap: false, pop: 0.201, lat: 52.1100006103516, lon: -106.629997253418, country: "Canada", name: "Saskatoon" }, - { cap: false, pop: 0.187, lat: 50.4099998474121, lon: -104.650001525879, country: "Canada", name: "Regina" }, - { cap: false, pop: 1.038, lat: 31.7800006866455, lon: -106.449996948242, country: "US", name: "El Paso" }, - { cap: false, pop: 0.636, lat: 30.3299999237061, lon: -81.6600036621094, country: "US", name: "Jacksonville" }, - { cap: false, pop: 0.002, lat: 51.3300018310547, lon: -80.7300033569336, country: "Canada", name: "Moosonee" }, - { cap: false, pop: 0.002, lat: 54.8600006103516, lon: -67.0100021362305, country: "Canada", name: "Schefferville" }, - { cap: false, pop: 0.008, lat: 53.310001373291, lon: -60.5499992370605, country: "Canada", name: "Goose Bay" }, - { cap: false, pop: 0.202, lat: -8.75, lon: -63.9000015258789, country: "Brazil", name: "Porto Velho" }, - { cap: false, pop: 0.185, lat: -13.6000003814697, lon: -71.8600006103516, country: "Peru", name: "Cuzco" }, - { cap: false, pop: 0.280, lat: -15.5500001907349, lon: -56.0499992370605, country: "Brazil", name: "Cuiaba" }, - { cap: false, pop: 0.220, lat: -27.3999996185303, lon: -58.9000015258789, country: "Argentina", name: "Resistencia" }, - { cap: false, pop: 0.032, lat: 16.7600002288818, lon: -3.00999999046326, country: "Mali", name: "Tombouctoo" }, - { cap: false, pop: 0.255, lat: 11.8800001144409, lon: 13.2600002288818, country: "Niger", name: "Maiduguri" }, - { cap: false, pop: 0.145, lat: -5.80999994277954, lon: 13.4499998092651, country: "Zaire", name: "Matadi" }, - { cap: false, pop: 0.203, lat: -12.7299995422363, lon: 15.7799997329712, country: "Angola", name: "Huambo" }, - { cap: false, pop: 0.145, lat: -28.6599998474121, lon: 24.8299999237061, country: "South Africa", name: "Kimberley" }, - { cap: false, pop: 0.320, lat: -33.0299987792969, lon: 27.8999996185303, country: "South Africa", name: "East london" }, - { cap: false, pop: 0.247, lat: -7.32999992370605, lon: 19, country: "Zaire", name: "Kahemba" }, - { cap: false, pop: 0.054, lat: -6.17999982833862, lon: 35.75, country: "Tanzania", name: "Dodoma" }, - { cap: false, pop: 0.019, lat: 68.3499984741211, lon: 17.2999992370605, country: "Norway", name: "Narvik" }, - { cap: false, pop: 0.160, lat: 34.4599990844727, lon: 62.2099990844727, country: "Afghanistan", name: "Herat" }, - { cap: false, pop: 0.006, lat: 55.8800010681152, lon: 37.75, country: "Russia", name: "Druzba" }, - { cap: false, pop: 0.146, lat: 39.4799995422363, lon: 76, country: "China", name: "Kashi" }, - { cap: false, pop: 9.415, lat: 24.9799995422363, lon: 121.529998779297, country: "Taiwan", name: "Chingmei" }, - { cap: false, pop: 0.166, lat: 16.4599990844727, lon: 107.699996948242, country: "Vietnam", name: "Hue" }, - { cap: false, pop: 0.073, lat: 1.5, lon: 110.430000305176, country: "Malaysia", name: "Kuching" }, - { cap: false, pop: 0.208, lat: -1.21000003814697, lon: 116.860000610352, country: "Indonesia", name: "Balikpapan" }, - { cap: false, pop: 0.168, lat: 50.3300018310547, lon: 110.75, country: "Russia", name: "Chatanga" }, - { cap: false, pop: 0.006, lat: 52.0499992370605, lon: 113.580001831055, country: "Russia", name: "Chita" }, - { cap: false, pop: 0.001, lat: 67.5800018310547, lon: 133.410003662109, country: "Russia", name: "Verkhoyansk" }, - { cap: false, pop: 0.187, lat: 62.0099983215332, lon: 129.830001831055, country: "Russia", name: "Yakutsk" }, - { cap: false, pop: 0.006, lat: 59.3300018310547, lon: 143.25, country: "Russia", name: "Okhotsk" }, - { cap: false, pop: 0.000, lat: 50.0800018310547, lon: 45.5299987792969, country: "Russia", name: "Nikolayevsk" }, - { cap: false, pop: 0.000, lat: 46.9599990844727, lon: 142.75, country: "Russia", name: "Yuzhno-Sakhalinsk" }, - { cap: false, pop: 0.000, lat: -23.6299991607666, lon: 133.929992675781, country: "Australia", name: "Alice Springs" }, - { cap: false, pop: 0.039, lat: -16.8500003814697, lon: 145.710006713867, country: "Australia", name: "Cairns" }, - { cap: false, pop: 0.106, lat: -19.2999992370605, lon: 146.830001831055, country: "Australia", name: "Townsville" }, - { cap: false, pop: 0.059, lat: -23.4300003051758, lon: 150.479995727539, country: "Australia", name: "Rockhampton" }, - { cap: false, pop: 0.405, lat: -33, lon: 151.910003662109, country: "Australia", name: "Newcastle" }, - { cap: false, pop: 0.175, lat: -43, lon: 147.5, country: "Australia", name: "Hobart" }, - { cap: false, pop: 0.109, lat: -45.8600006103516, lon: 170.5, country: "New Zealand", name: "Dunedin" }, - { cap: false, pop: 0.256, lat: 48.6545677185059, lon: -123.569107055664, country: "Canada", name: "Victoria" }, - { cap: true, pop: 0.164, lat: 6.60109615325928, lon: 2.63250279426575, country: "Benin", name: "Porto Novo" }, - { cap: false, pop: 1.030, lat: 4.13665008544922, lon: 9.706374168396, country: "Cameroon", name: "Douala" }, - { cap: false, pop: 0.708, lat: -5.19043016433716, lon: 119.722793579102, country: "Indonesia", name: "Vjuag Padang" }, - { cap: false, pop: 0.112, lat: -3.3865532875061, lon: 129.312927246094, country: "Indonesia", name: "Ambon" }, - { cap: false, pop: 1.604, lat: 37.5894508361816, lon: 126.767440795898, country: "Korea Rep", name: "Inch`on" }, - { cap: false, pop: 1.680, lat: 39.0317153930664, lon: 121.598197937012, country: "China", name: "Dalian" }, - { cap: false, pop: 1.227, lat: 45.4421310424805, lon: -122.641677856445, country: "US", name: "Portland" }, - { cap: false, pop: 0.810, lat: -3.12230491638184, lon: -60.0146179199219, country: "Brazil", name: "Manaus" }, - { cap: false, pop: 0.227, lat: -2.46000003814697, lon: -54.6100006103516, country: "Brazil", name: "Santarem" }, - { cap: false, pop: 0.053, lat: -46.4099998474121, lon: 168.449996948242, country: "New Zealand", name: "Invercargill" }, - { cap: false, pop: 0.049, lat: -10.2600002288818, lon: 40.1800003051758, country: "Tanzania", name: "Mtwara" }, - { cap: false, pop: 0.100, lat: -18.2299995422363, lon: 49.4099998474121, country: "Madagascar", name: "Toamasina" }, - { cap: false, pop: 0.235, lat: -29.1499996185303, lon: 26.2600002288818, country: "South Africa", name: "Bloemfontein" }, - { cap: false, pop: 0.414, lat: -20.2000007629395, lon: 28.7099990844727, country: "Zimbabwe", name: "Bulawayo" }, - { cap: false, pop: 0.061, lat: -17.8299999237061, lon: 25.8799991607666, country: "Zambia", name: "Livingstone" }, - { cap: false, pop: 0.290, lat: 24.4300003051758, lon: 39.7000007629395, country: "Saudi Arabia", name: "Al Madinah" }, - { cap: false, pop: 0.000, lat: 21.7600002288818, lon: 31.2800006866455, country: "Sudan", name: "Wadi Halfa" }, - { cap: false, pop: 0.191, lat: 24.0799999237061, lon: 32.9500007629395, country: "Egypt", name: "Aswan" }, - { cap: false, pop: 0.000, lat: 25.9099998474121, lon: 13.9099998474121, country: "Libya", name: "Murzuq" }, - { cap: false, pop: 0.000, lat: 27.7000007629395, lon: -8.15999984741211, country: "Algeria", name: "Tindouf" }, - { cap: false, pop: 0.050, lat: 16.9599990844727, lon: 7.98000001907349, country: "Niger", name: "Agadez" }, - { cap: false, pop: 0.140, lat: 13.1800003051758, lon: 30.1599998474121, country: "Sudan", name: "El Obeid" }, - { cap: false, pop: 0.125, lat: 0.0500000007450581, lon: 18.4599990844727, country: "Zaire", name: "Mbandaka" }, - { cap: false, pop: 0.015, lat: 60.6500015258789, lon: -135.009994506836, country: "Canada", name: "Whitehorse" }, - { cap: false, pop: 0.095, lat: -53.1500015258789, lon: -70.8000030517578, country: "Chile", name: "Punte Arenas" }, - { cap: false, pop: 0.084, lat: -41.4799995422363, lon: -73, country: "Chile", name: "Puerto Montt" }, - { cap: false, pop: 0.000, lat: -51.7099990844727, lon: -69.4100036621094, country: "Argentina", name: "Rio Gallegos" }, - { cap: false, pop: 0.097, lat: -45.8300018310547, lon: -67.5, country: "Argentina", name: "Comodoro Rivadavia" }, - { cap: false, pop: 0.327, lat: 29.9599990844727, lon: 32.560001373291, country: "Egypt", name: "Suez" }, - { cap: false, pop: 3.350, lat: 31.0746040344238, lon: 29.9778099060059, country: "Egypt", name: "Alexandria" }, - { cap: false, pop: 0.000, lat: -15.0500001907349, lon: 40.7000007629395, country: "Mozambique", name: "Mocambique" }, - { cap: false, pop: 9.950, lat: 19.0453472137451, lon: 73.1723480224609, country: "India", name: "Bombay" }, - { cap: true, pop: 2.548, lat: 36.596492767334, lon: 2.99369311332703, country: "Algeria", name: "Algiers" }, - { cap: false, pop: 1.940, lat: 49.989673614502, lon: 36.2083129882813, country: "Ukraine", name: "Kharkov" }, - { cap: false, pop: 1.600, lat: 48.4228897094727, lon: 35.1378936767578, country: "Ukraine", name: "Dnepropetrovsk" }, - { cap: true, pop: 0.482, lat: 59.2775726318359, lon: 24.7520561218262, country: "Estonia", name: "Tallinn" }, - { cap: false, pop: 0.000, lat: 47.810001373291, lon: 97, country: "Mongolia", name: "Uliastay" }, - { cap: true, pop: 1.313, lat: 18.4997291564941, lon: -69.9104919433594, country: "Dominican Rp", name: "Santo Domingo" }, - { cap: true, pop: 0.064, lat: 4.93300008773804, lon: 114.967002868652, country: "Brunei", name: "Bandar Seri Begawan" }, - { cap: true, pop: 0.095, lat: 13.4452724456787, lon: -16.4946155548096, country: "Gambia", name: "Banjul" }, - { cap: true, pop: 0.370, lat: 10.6397342681885, lon: -61.490062713623, country: "Trinidad", name: "Port of Spain" }, - { cap: false, pop: 0.302, lat: 16.97438621521, lon: -99.9314956665039, country: "Mexico", name: "Acapulco" }, - { cap: false, pop: 0.000, lat: 64.4001617431641, lon: 177.130187988281, country: "Russia", name: "Anadyr" }, - { cap: false, pop: 0.003, lat: 65.6699981689453, lon: -37.3118667602539, country: "Greenland", name: "Angmagssalik" }, - { cap: false, pop: 0.185, lat: -23.8325366973877, lon: -70.2254486083984, country: "Chile", name: "Antofagasta" }, - { cap: false, pop: 0.294, lat: 40.75, lon: 140.669998168945, country: "Japan", name: "Aomori" }, - { cap: false, pop: 0.436, lat: 32.0430526733398, lon: 20.3086757659912, country: "Libya", name: "Banghazi" }, - { cap: false, pop: 0.000, lat: -15.75, lon: 133.220001220703, country: "Australia", name: "Birdum" }, - { cap: false, pop: 0.000, lat: 2.75, lon: -60.5, country: "Brazil", name: "Boa Vista" }, - { cap: false, pop: 0.280, lat: -6.61999988555908, lon: -79.8300018310547, country: "Peru", name: "Chiclayo" }, - { cap: false, pop: 0.223, lat: -8.930100440979, lon: -78.4531478881836, country: "Peru", name: "Chimbote" }, - { cap: false, pop: 0.001, lat: 58.710765838623, lon: -94.1800003051758, country: "Canada", name: "Churchill" }, - { cap: false, pop: 0.686, lat: 9.98798847198486, lon: 76.5217819213867, country: "India", name: "Cochin" }, - { cap: false, pop: 0.675, lat: -36.8832969665527, lon: -72.8516387939453, country: "Chile", name: "Concepcion" }, - { cap: false, pop: 0.062, lat: -31, lon: -71.0199966430664, country: "Chile", name: "Coquimbo" }, - { cap: false, pop: 0.073, lat: -12.7014999389648, lon: 130.994552612305, country: "Australia", name: "Darwin" }, - { cap: true, pop: 0.120, lat: 11.5, lon: 43.0999984741211, country: "Djibouti", name: "Djibouti" }, - { cap: false, pop: 0.022, lat: -32.0441665649414, lon: 115.9345703125, country: "Australia", name: "Fremantle" }, - { cap: false, pop: 0.495, lat: 5.34999990463257, lon: 100.547142028809, country: "Malaysia", name: "George Town" }, - { cap: false, pop: 0.001, lat: 69.3831405639648, lon: -53.6300010681152, country: "Greenland", name: "Godhavn" }, - { cap: true, pop: 0.012, lat: 64.2711868286133, lon: -51.5800018310547, country: "Greenland", name: "Godthab" }, - { cap: false, pop: 0.296, lat: 44.6300010681152, lon: -63.5800018310547, country: "Canada", name: "Halifax" }, - { cap: false, pop: 0.007, lat: 70.3913269042969, lon: 23.9063415527344, country: "Norway", name: "Hammerfest" }, - { cap: false, pop: 0.000, lat: 67.3499984741211, lon: 86.5500030517578, country: "Russia", name: "Igarka" }, - { cap: false, pop: 0.019, lat: 27.2000007629395, lon: 2.52999997138977, country: "Algeria", name: "In Salah" }, - { cap: false, pop: 0.003, lat: 68.2699966430664, lon: -133.669998168945, country: "Canada", name: "Inuvik" }, - { cap: false, pop: 0.050, lat: -4.94999980926514, lon: 30, country: "Tanzania", name: "Kigoma" }, - { cap: false, pop: 0.069, lat: 61.1500015258789, lon: 47, country: "Russia", name: "Kotlas" }, - { cap: false, pop: 0.094, lat: 27, lon: -13.1800003051758, country: "W Sahara", name: "Laayoune" }, - { cap: false, pop: 0.217, lat: 1.420086145401, lon: 124.884239196777, country: "Indonesia", name: "Manado" }, - { cap: false, pop: 0.306, lat: 12.9499998092651, lon: 75.1608810424805, country: "India", name: "Mangalore" }, - { cap: false, pop: 0.535, lat: 31.1499996185303, lon: -8, country: "Morocco", name: "Marrakech" }, - { cap: true, pop: 0.038, lat: -26.3033809661865, lon: 31.1912975311279, country: "Swaziland", name: "Mbabne" }, - { cap: false, pop: 0.449, lat: 32.8827476501465, lon: 129.857467651367, country: "Japan", name: "Nagasaki" }, - { cap: false, pop: 0.510, lat: -5.78000020980835, lon: -35.25, country: "Brazil", name: "Natal" }, - { cap: false, pop: 0.033, lat: -41.2999992370605, lon: 173.270004272461, country: "New Zealand", name: "Nelson" }, - { cap: false, pop: 0.004, lat: 64.5862808227539, lon: -165.270004272461, country: "US", name: "Nome" }, - { cap: false, pop: 0.174, lat: 69.3300018310547, lon: 88.0999984741211, country: "Russia", name: "Noril`sk" }, - { cap: false, pop: 0.022, lat: 20.8999996185303, lon: -16.825647354126, country: "Mauritania", name: "Nouadnibou" }, - { cap: false, pop: 0.600, lat: 53.7000007629395, lon: 87.1699981689453, country: "Russia", name: "Novokuznetsk" }, - { cap: false, pop: 0.097, lat: 46.9199981689453, lon: -122.879997253418, country: "US", name: "Olympia" }, - { cap: false, pop: 0.297, lat: -0.917578816413879, lon: 100.475059509277, country: "Indonesia", name: "Padang" }, - { cap: false, pop: 0.787, lat: -3, lon: 104.830001831055, country: "Indonesia", name: "Palembang" }, - { cap: false, pop: 0.155, lat: 38.1412391662598, lon: 21.8831691741943, country: "Greece", name: "Patras" }, - { cap: false, pop: 0.269, lat: 53.2000007629395, lon: 158.720001220703, country: "Russia", name: "Petropavloski-Kamchatskiy" }, - { cap: true, pop: 0.083, lat: 42.5, lon: 19.3999996185303, country: "Montenegro", name: "Podgorica" }, - { cap: false, pop: 0.294, lat: -4.63870811462402, lon: 12.0580930709839, country: "Congo", name: "Pointe Noire" }, - { cap: false, pop: 0.124, lat: -0.819999992847443, lon: 9.15334415435791, country: "Gabon", name: "Port Gentil" }, - { cap: false, pop: 0.016, lat: 54.420280456543, lon: -130.048080444336, country: "Canada", name: "Prince Rupert" }, - { cap: false, pop: 0.121, lat: 45.338134765625, lon: -65.6499481201172, country: "Canada", name: "Saint John" }, - { cap: false, pop: 0.091, lat: 15.9512100219727, lon: -16.2978382110596, country: "Senegal", name: "Saint Louis" }, - { cap: false, pop: 0.000, lat: 66.5699996948242, lon: 66.5800018310547, country: "Russia", name: "Salekhard" }, - { cap: false, pop: 0.241, lat: 41.3199996948242, lon: 36.3699989318848, country: "Turkey", name: "Samsun" }, - { cap: false, pop: 0.600, lat: -2.5, lon: -44.4300575256348, country: "Brazil", name: "Sao Luis" }, - { cap: true, pop: 0.341, lat: 43.8699989318848, lon: 18.4300003051758, country: "Bosnia/Herz", name: "Sarajevo" }, - { cap: false, pop: 0.000, lat: 70.5285720825195, lon: -22.9963226318359, country: "Greenland", name: "Scoresbyund" }, - { cap: false, pop: 0.029, lat: 50.2825469970703, lon: -66.4025421142578, country: "Canada", name: "Sept-Iles" }, - { cap: false, pop: 0.003, lat: 60.1199989318848, lon: -149.449996948242, country: "US", name: "Seward" }, - { cap: true, pop: 0.445, lat: 42, lon: 21.5300006866455, country: "Macedonia", name: "Skopje" }, - { cap: false, pop: 0.000, lat: 22.8299999237061, lon: 5.55000019073486, country: "Algeria", name: "Tamanrasset" }, - { cap: false, pop: 0.000, lat: 77.6699981689453, lon: -69, country: "Greenland", name: "Thule" }, - { cap: false, pop: 0.000, lat: 71.6999969482422, lon: 128.75, country: "Russia", name: "Tiksi" }, - { cap: false, pop: 0.055, lat: -23.2901554107666, lon: 44.0190925598145, country: "Madagascar", name: "Toliara" }, - { cap: false, pop: 0.354, lat: -7.92999982833862, lon: -79, country: "Peru", name: "Trujillo" }, - { cap: false, pop: 0.604, lat: 17.75, lon: 83.3300018310547, country: "India", name: "Vishakhapatnam" }, - { cap: false, pop: 0.116, lat: 67.8000030517578, lon: 64.3300018310547, country: "Russia", name: "Vorkuta" }, - { cap: false, pop: 0.230, lat: 31.9699993133545, lon: 54.4500007629395, country: "Iran", name: "Yazd" }, - { cap: false, pop: 0.282, lat: 29.6000003814697, lon: 60.8300018310547, country: "Iran", name: "Zahedan" }, - { cap: false, pop: 0.318, lat: 12.861159324646, lon: 45.1800003051758, country: "Yemen", name: "Aden" }, - { cap: true, pop: 1.500, lat: 9.02999973297119, lon: 38.7000007629395, country: "Ethiopia", name: "Adis Abeba" }, - { cap: true, pop: 1.375, lat: 29.1949901580811, lon: 48.0027770996094, country: "Kuwait", name: "Al Kuwayt" }, - { cap: true, pop: 0.663, lat: -18.8700008392334, lon: 47.5, country: "Madagascar", name: "Antananarivo" }, - { cap: true, pop: 1.250, lat: 24.6499996185303, lon: 46.7700004577637, country: "Saudi Arabia", name: "Ar Riyad" }, - { cap: true, pop: 0.275, lat: 15.3299999237061, lon: 38.9700012207031, country: "Eritrea", name: "Asmara" }, - { cap: true, pop: 0.700, lat: -25.2199993133545, lon: -57.6699981689453, country: "Paraguay", name: "Asuncion" }, - { cap: true, pop: 3.027, lat: 38.1216011047363, lon: 23.6548633575439, country: "Greece", name: "Athens" }, - { cap: false, pop: 1.120, lat: 40.6500015258789, lon: 109.980003356934, country: "China", name: "Baotou" }, - { cap: false, pop: 4.040, lat: 41.5299987792969, lon: 2.17000007629395, country: "Spain", name: "Barcelona" }, - { cap: false, pop: 1.140, lat: 11.0142946243286, lon: -74.6800003051758, country: "Colombia", name: "Barranquilla" }, - { cap: false, pop: 0.292, lat: -19.7692832946777, lon: 35.0231704711914, country: "Mozambique", name: "Beira" }, - { cap: true, pop: 1.675, lat: 33.7799987792969, lon: 35.6579437255859, country: "Lebanon", name: "Beirut" }, - { cap: true, pop: 0.005, lat: 17.1200008392334, lon: -88.8000030517578, country: "Belize", name: "Belmopan" }, - { cap: false, pop: 0.239, lat: 60.3499984741211, lon: 5.49067831039429, country: "Norway", name: "Bergen" }, - { cap: true, pop: 0.109, lat: 11.9109897613525, lon: -15.6499996185303, country: "GuineaBissau", name: "Bissau" }, - { cap: false, pop: 1.790, lat: -33.8040084838867, lon: 18.6904315948486, country: "South Africa", name: "cape Town" }, - { cap: false, pop: 0.625, lat: 51.5, lon: -3.15000009536743, country: "UK", name: "Cardiff" }, - { cap: false, pop: 2.475, lat: 33.5444107055664, lon: -7.53409194946289, country: "Morocco", name: "Casablanca" }, - { cap: true, pop: 0.038, lat: 4.92000007629395, lon: -52.4000015258789, country: "Fr Guiana", name: "Cayenne" }, - { cap: false, pop: 1.392, lat: 22.4799995422363, lon: 91.8327941894531, country: "Bangladesh", name: "Chittagong" }, - { cap: true, pop: 2.050, lat: 7.01999998092651, lon: 80.0883331298828, country: "Sri Lanka", name: "Colombo" }, - { cap: true, pop: 0.800, lat: 9.52000045776367, lon: -12.8000001907349, country: "Guinea", name: "Conakry" }, - { cap: true, pop: 1.428, lat: 14.6300001144409, lon: -16.8480949401855, country: "Senegal", name: "Dakar" }, - { cap: false, pop: 1.405, lat: 39.75, lon: -105.069999694824, country: "US", name: "Denver" }, - { cap: true, pop: 0.595, lat: 38.6300010681152, lon: 68.9000015258789, country: "Tajikistan", name: "Dushanfe" }, - { cap: false, pop: 0.785, lat: 53.5699996948242, lon: -113.269996643066, country: "Canada", name: "Edmonton" }, - { cap: false, pop: 1.871, lat: 30.4699993133545, lon: 30.8500003814697, country: "Egypt", name: "Giza" }, - { cap: true, pop: 0.525, lat: 8.38277053833008, lon: -12.9102764129639, country: "Sierra Leone", name: "Freetown" }, - { cap: true, pop: 0.616, lat: 42.8800010681152, lon: 74.7699966430664, country: "Kyrgyzstan", name: "Frunze" }, - { cap: false, pop: 0.805, lat: 44.4550895690918, lon: 8.92229557037354, country: "Italy", name: "Genova" }, - { cap: true, pop: 0.188, lat: 6.76999998092651, lon: -58.1699981689453, country: "Guyana", name: "Georgetown" }, - { cap: false, pop: 0.711, lat: 57.75, lon: 12, country: "Sweden", name: "Goteborg" }, - { cap: true, pop: 0.890, lat: -17.8299999237061, lon: 31.0200004577637, country: "Zimbabwe", name: "Harare" }, - { cap: true, pop: 2.125, lat: 23.0489521026611, lon: -82.4164505004883, country: "Cuba", name: "Havana" }, - { cap: false, pop: 1.300, lat: 21.6200008392334, lon: 39.3733062744141, country: "Saudi Arabia", name: "Jiddah" }, - { cap: true, pop: 0.460, lat: 0.319999992847443, lon: 32.5800018310547, country: "Uganda", name: "Kampala" }, - { cap: false, pop: 0.538, lat: 11.9200000762939, lon: 8.52000045776367, country: "Nigeria", name: "Kano" }, - { cap: false, pop: 1.845, lat: 22.6734161376953, lon: 120.341484069824, country: "Taiwan", name: "Kao-Hsiung" }, - { cap: false, pop: 5.300, lat: 24.8500003814697, lon: 67.0299987792969, country: "Pakistan", name: "Karachi" }, - { cap: false, pop: 0.601, lat: 48.5299987792969, lon: 135.070007324219, country: "Russia", name: "Khabarovsk" }, - { cap: true, pop: 0.924, lat: 15.5500001907349, lon: 32.5299987792969, country: "Sudan", name: "Khartoum" }, - { cap: true, pop: 0.665, lat: 47, lon: 28.8299999237061, country: "Moldova", name: "Kishinev" }, - { cap: true, pop: 1.685, lat: 55.7200012207031, lon: 12.5500001907349, country: "Denmark", name: "Kobenhavn" }, - { cap: true, pop: 3.800, lat: 6.44999980926514, lon: 3.29999995231628, country: "Nigeria", name: "Lagos" }, - { cap: false, pop: 0.255, lat: 49.3240203857422, lon: 0.219999998807907, country: "France", name: "Le Havre" }, - { cap: true, pop: 0.236, lat: -0.504144549369812, lon: 9.49045658111572, country: "Gabon", name: "Libreville" }, - { cap: true, pop: 0.234, lat: -13.9200000762939, lon: 33.8199996948242, country: "Malawi", name: "Lilongwe" }, - { cap: true, pop: 4.344, lat: -12.0679960250854, lon: -76.8235549926758, country: "Peru", name: "Lima" }, - { cap: true, pop: 2.250, lat: 38.7299995422363, lon: -9.13000011444092, country: "Portugal", name: "Lisboa" }, - { cap: false, pop: 1.525, lat: 53.4226875305176, lon: -2.76683640480042, country: "UK", name: "Liverpool" }, - { cap: true, pop: 0.400, lat: 6.28000020980835, lon: 1.35000002384186, country: "Togo", name: "Lome" }, - { cap: false, pop: 9.764, lat: 34, lon: -118.25, country: "US", name: "Los Angeles" }, - { cap: true, pop: 1.460, lat: -9, lon: 13.4617786407471, country: "Angola", name: "Luanda" }, - { cap: false, pop: 0.543, lat: -11.6800003051758, lon: 27.5499992370605, country: "Zaire", name: "Lumumbashi" }, - { cap: true, pop: 0.536, lat: -15.4300003051758, lon: 28.1700000762939, country: "Zambia", name: "Lusaka" }, - { cap: true, pop: 0.031, lat: 3.64468479156494, lon: 8.81999969482422, country: "Eq Guinea", name: "Malabo" }, - { cap: true, pop: 5.474, lat: 14.5500001907349, lon: 121.173408508301, country: "Philippines", name: "Manila" }, - { cap: false, pop: 1.225, lat: 43.2999992370605, lon: 5.38000011444092, country: "France", name: "Marseille" }, - { cap: true, pop: 0.050, lat: 23.5166397094727, lon: 58.6274795532227, country: "Oman", name: "Masqat" }, - { cap: false, pop: 0.200, lat: 23.3615112304688, lon: -106.269996643066, country: "Mexico", name: "Mazatlan" }, - { cap: false, pop: 0.442, lat: -4.01999998092651, lon: 39.6699981689453, country: "Kenya", name: "Mombasa" }, - { cap: true, pop: 0.465, lat: 6.51743936538696, lon: -10.7700004577637, country: "Liberia", name: "Monrovia" }, - { cap: true, pop: 1.550, lat: -34.9199981689453, lon: -56.1699981689453, country: "Uruguay", name: "Montevideo" }, - { cap: true, pop: 13.100, lat: 55.75, lon: 37.7000007629395, country: "Russia", name: "Moscow" }, - { cap: true, pop: 1.286, lat: -1.16999995708466, lon: 36.8300018310547, country: "Kenya", name: "Nairobi" }, - { cap: false, pop: 2.875, lat: 40.8300018310547, lon: 14.2700004577637, country: "Italy", name: "Napoli" }, - { cap: false, pop: 16.472, lat: 40.75, lon: -74.0999984741211, country: "US", name: "New York" }, - { cap: false, pop: 0.329, lat: 40.7200012207031, lon: -74.1999969482422, country: "US", name: "Newark" }, - { cap: true, pop: 0.285, lat: 18.0300006866455, lon: -15.7828607559204, country: "Mauritania", name: "Nouakchott" }, - { cap: false, pop: 0.138, lat: 55.574535369873, lon: 9.90299892425537, country: "Denmark", name: "Odense" }, - { cap: false, pop: 0.526, lat: 15.6199998855591, lon: 32.4799995422363, country: "Sudan", name: "Omdurman" }, - { cap: false, pop: 0.629, lat: 35.75, lon: -0.519999980926514, country: "Algeria", name: "Oran" }, - { cap: true, pop: 0.720, lat: 59.9300003051758, lon: 10.7200002670288, country: "Norway", name: "Oslo" }, - { cap: true, pop: 0.442, lat: 12.4799995422363, lon: -1.66999995708466, country: "Burkina Faso", name: "Ouagadouou" }, - { cap: false, pop: 0.724, lat: 38.1300010681152, lon: 13.3999996185303, country: "Italy", name: "Palermo" }, - { cap: true, pop: 0.625, lat: 8.94999980926514, lon: -79.4000015258789, country: "Panama", name: "Panama" }, - { cap: true, pop: 0.241, lat: 5.92999982833862, lon: -55.2299995422363, country: "Suriname", name: "Paramaribo" }, - { cap: false, pop: 0.994, lat: -31.9758644104004, lon: 115.923370361328, country: "Australia", name: "Perth" }, - { cap: true, pop: 0.152, lat: -9.55000019073486, lon: 147.414520263672, country: "Papua N Guin", name: "Port Moresby" }, - { cap: false, pop: 1.225, lat: 41.1500015258789, lon: -8.48794841766357, country: "Portugal", name: "Porto" }, - { cap: false, pop: 0.203, lat: 31.6000003814697, lon: 65.5, country: "Afghanistan", name: "Qandahar" }, - { cap: false, pop: 1.326, lat: 14.6499996185303, lon: 121.029998779297, country: "Philippines", name: "Quezon City" }, - { cap: true, pop: 0.980, lat: 33.9201965332031, lon: -6.74804067611694, country: "Morocco", name: "Rabat" }, - { cap: true, pop: 0.138, lat: 64.3132629394531, lon: -21.336820602417, country: "Iceland", name: "Reykjavik" }, - { cap: true, pop: 1.005, lat: 56.8800010681152, lon: 24.0499992370605, country: "latvia", name: "Riga" }, - { cap: true, pop: 3.175, lat: 41.8800010681152, lon: 12.5200004577637, country: "Italy", name: "Roma" }, - { cap: false, pop: 2.050, lat: -12.6002569198608, lon: -38.4799995422363, country: "Brazil", name: "Salvador" }, - { cap: false, pop: 0.848, lat: 29.6299991607666, lon: 52.5699996948242, country: "Iran", name: "Shiraz" }, - { cap: true, pop: 1.450, lat: 59.2446327209473, lon: 18.0842685699463, country: "Sweden", name: "Stockholm" }, - { cap: false, pop: 2.028, lat: -7.40000009536743, lon: 112.684371948242, country: "Indonesia", name: "Surabaja" }, - { cap: false, pop: 0.657, lat: 23.1700000762939, lon: 120.230003356934, country: "Taiwan", name: "T`ai-nan" }, - { cap: false, pop: 0.595, lat: 27.9973583221436, lon: -82.5930252075195, country: "US", name: "Tampa" }, - { cap: true, pop: 1.670, lat: 31.9171981811523, lon: 34.8568344116211, country: "Israel", name: "Tel Aviv-Yafo" }, - { cap: false, pop: 0.706, lat: 40.6300010681152, lon: 22.7999992370605, country: "Greece", name: "Thessaloniki" }, - { cap: true, pop: 2.325, lat: 41.247932434082, lon: 69.3498687744141, country: "Uzbekistan", name: "Toshkent" }, - { cap: false, pop: 0.198, lat: 34.3437576293945, lon: 36.0070686340332, country: "Lebanon", name: "Tripoli" }, - { cap: false, pop: 0.675, lat: -32.9000015258789, lon: -71.2993392944336, country: "Chile", name: "Valparaiso" }, - { cap: false, pop: 1.381, lat: 49.274299621582, lon: -122.963066101074, country: "Canada", name: "Vancouver" }, - { cap: false, pop: 0.648, lat: 43.1300010681152, lon: 131.960433959961, country: "Russia", name: "Vladivostok" }, - { cap: false, pop: 0.017, lat: -23.1018676757813, lon: 14.6171045303345, country: "Namibia", name: "Walvis Bay" }, - { cap: true, pop: 0.115, lat: -22.5699996948242, lon: 17.1000003814697, country: "Namibia", name: "Windhoek" }, - { cap: true, pop: 0.350, lat: -41.2103958129883, lon: 175.144943237305, country: "New Zealand", name: "Wellington" }, - { cap: false, pop: 2.077, lat: 47.5885543823242, lon: -122.316650390625, country: "US", name: "Seattle" }, - { cap: false, pop: 2.099, lat: 32.7614593505859, lon: -117.125495910645, country: "US", name: "San Diego" }, - { cap: false, pop: 0.110, lat: -20.2600002288818, lon: -69.9132614135742, country: "Chile", name: "Iquique" }, - { cap: true, pop: 0.243, lat: 24.2360076904297, lon: 54.619270324707, country: "Untd Arab Em", name: "Abu Zaby" }, - { cap: false, pop: 0.199, lat: 7.57660102844238, lon: -72.0054550170898, country: "Venezuela", name: "San Cristobal" }, - { cap: false, pop: 0.509, lat: 46.25, lon: 48, country: "Russia", name: "Astrakhan" }, - { cap: false, pop: 0.000, lat: 30.1386032104492, lon: 9.81835079193115, country: "Libya", name: "Ghadamis" }, - { cap: false, pop: 0.077, lat: -31.3051528930664, lon: -57.7087745666504, country: "Uruguay", name: "Salto" }, - { cap: false, pop: 0.012, lat: 62.5206146240234, lon: -114.061363220215, country: "Canada", name: "Yellowknife" }, - { cap: false, pop: 0.043, lat: 19.7148151397705, lon: -155.067291259766, country: "US", name: "Hilo" }, - { cap: false, pop: 0.763, lat: 21.3211765289307, lon: -157.806182861328, country: "US", name: "Honolulu" }, - { cap: false, pop: 0.184, lat: 61.188648223877, lon: -149.172973632813, country: "US", name: "Anchorage" }, - { cap: false, pop: 0.040, lat: 64.8387451171875, lon: -147.651184082031, country: "US", name: "Fairbanks" }, - { cap: false, pop: 0.020, lat: 58.3910064697266, lon: -134.132476806641, country: "US", name: "Juneau" }, - { cap: false, pop: 0.629, lat: 37.30810546875, lon: -121.847457885742, country: "US", name: "San Jose" }, - { cap: false, pop: 0.386, lat: 28.5581398010254, lon: -105.966636657715, country: "Mexico", name: "Chihuaha" }, - { cap: false, pop: 0.385, lat: 19.0096759796143, lon: -96.0840606689453, country: "Mexico", name: "Veracruz" }, - { cap: false, pop: 0.154, lat: 16.9209060668945, lon: -96.9420394897461, country: "Mexico", name: "Oaxaca" }, - { cap: false, pop: 0.000, lat: 78.1999969482422, lon: 15.6599998474121, country: "Norway", name: "longyearbyen" }, - { cap: true, pop: 5.396, lat: 22.4284057617188, lon: 114.145706176758, country: "UK", name: "Hong Kong" }, - { cap: false, pop: 0.775, lat: 22.3798961639404, lon: 114.230117797852, country: "UK", name: "Kowloon" }, - { cap: false, pop: 3.025, lat: 1.22979354858398, lon: 104.177116394043, country: "Singapore", name: "Singapore" }, - ]; - - this.capitals = this.locations.filter(city => city.cap); - this.cities = this.locations.filter(city => !city.cap); - return this.locations - } -} -``` - - - - - -```razor - public static class WorldLocations - { - public static List GetAll() - { - return WorldLocations.Init(); - } - - public static List GetCities() - { - List all = WorldLocations.Init(); - return all.Where(c => c.Cap == false).ToList(); - } - - public static List GetCapitals() - { - List all = WorldLocations.Init(); - return all.Where(c => c.Cap == true).ToList(); - } - - public static List Init() - { - List cities = new List() { - // console.log("WorldLocations init"); - new WorldCity() { Cap = false, Pop = 0.468, Lat = 68.9635467529297, Lon = 33.0860404968262, Country = "Russia", Name = "Murmansk" }, - new WorldCity() { Cap = false, Pop = 0.416, Lat = 64.5206680297852, Lon = 40.6461601257324, Country = "Russia", Name = "Arkhangelsk" }, - new WorldCity() { Cap = false, Pop = 5.825, Lat = 59.9518890380859, Lon = 30.4533271789551, Country = "Russia", Name = "Saint Petersburg" }, - new WorldCity() { Cap = false, Pop = 0.152, Lat = 59.5709991455078, Lon = 150.780014038086, Country = "Russia", Name = "Magadan" }, - new WorldCity() { Cap = false, Pop = 1.160, Lat = 58.0002365112305, Lon = 56.2324638366699, Country = "Russia", Name = "Perm'" }, - new WorldCity() { Cap = false, Pop = 1.620, Lat = 56.8465423583984, Lon = 60.6101303100586, Country = "Russia", Name = "Yekaterinburg" }, - new WorldCity() { Cap = false, Pop = 2.025, Lat = 56.2896766662598, Lon = 43.9406700134277, Country = "Russia", Name = "Nizhniy Novgorod" }, - new WorldCity() { Cap = false, Pop = 1.800, Lat = 55.8628082275391, Lon = -4.26994752883911, Country = "UK", Name = "Glasgow" }, - new WorldCity() { Cap = false, Pop = 1.140, Lat = 55.7330055236816, Lon = 49.1454658508301, Country = "Russia", Name = "Kazan'" }, - new WorldCity() { Cap = false, Pop = 1.325, Lat = 55.1450004577637, Lon = 61.3926124572754, Country = "Russia", Name = "Chelyabinsk" }, - new WorldCity() { Cap = false, Pop = 1.175, Lat = 55.063304901123, Lon = 73.2502899169922, Country = "Russia", Name = "Omsk" }, - new WorldCity() { Cap = false, Pop = 1.600, Lat = 55.0321006774902, Lon = 82.9428482055664, Country = "Russia", Name = "Novosibirsk" }, - new WorldCity() { Cap = false, Pop = 1.100, Lat = 54.8217353820801, Lon = 56.0961265563965, Country = "Russia", Name = "Ufa" }, - new WorldCity() { Cap = true, Pop = 0.582, Lat = 54.6885681152344, Lon = 25.2759666442871, Country = "Lithuania", Name = "Vilnius" }, - new WorldCity() { Cap = false, Pop = 0.685, Lat = 54.5869255065918, Lon = -5.90966033935547, Country = "UK", Name = "Belfast" }, - new WorldCity() { Cap = false, Pop = 0.909, Lat = 54.3662033081055, Lon = 18.624942779541, Country = "Poland", Name = "Gdansk" }, - new WorldCity() { Cap = true, Pop = 1.650, Lat = 53.8999366760254, Lon = 27.5755672454834, Country = "Byelarus", Name = "Minsk" }, - new WorldCity() { Cap = false, Pop = 1.540, Lat = 53.8087120056152, Lon = -1.49752748012543, Country = "UK", Name = "Leeds" }, - new WorldCity() { Cap = false, Pop = 2.225, Lat = 53.5711212158203, Lon = 10.027606010437, Country = "Germany", Name = "Hamburg" }, - new WorldCity() { Cap = false, Pop = 2.775, Lat = 53.479663848877, Lon = -2.26177859306335, Country = "UK", Name = "Manchester" }, - new WorldCity() { Cap = false, Pop = 0.710, Lat = 53.3740425109863, Lon = -1.46298921108246, Country = "UK", Name = "Sheffield" }, - new WorldCity() { Cap = true, Pop = 1.140, Lat = 53.3415603637695, Lon = -6.25734663009644, Country = "Ireland", Name = "Dublin" }, - new WorldCity() { Cap = false, Pop = 1.505, Lat = 53.1385955810547, Lon = 50.0961799621582, Country = "Russia", Name = "Samara" }, - new WorldCity() { Cap = false, Pop = 0.800, Lat = 53.0801048278809, Lon = 8.85762596130371, Country = "Germany", Name = "Bremen" }, - new WorldCity() { Cap = true, Pop = 5.061, Lat = 52.5162734985352, Lon = 13.3275728225708, Country = "Germany", Name = "Berlin" }, - new WorldCity() { Cap = false, Pop = 2.675, Lat = 52.4927520751953, Lon = -1.86334776878357, Country = "UK", Name = "Birmingham" }, - new WorldCity() { Cap = true, Pop = 1.860, Lat = 52.3730430603027, Lon = 4.89483308792114, Country = "Netherlands", Name = "Amsterdam" }, - new WorldCity() { Cap = false, Pop = 0.626, Lat = 52.3174324035645, Lon = 104.247833251953, Country = "Russia", Name = "Irkutsk" }, - new WorldCity() { Cap = true, Pop = 2.323, Lat = 52.244945526123, Lon = 21.0118789672852, Country = "Poland", Name = "Warsaw" }, - new WorldCity() { Cap = false, Pop = 1.110, Lat = 51.925594329834, Lon = 4.48515224456787, Country = "Netherlands", Name = "Rotterdam" }, - new WorldCity() { Cap = false, Pop = 1.061, Lat = 51.7779083251953, Lon = 19.4764404296875, Country = "Poland", Name = "Lodz" }, - new WorldCity() { Cap = false, Pop = 0.568, Lat = 51.5138130187988, Lon = 7.46641826629639, Country = "Germany", Name = "Dortmund" }, - new WorldCity() { Cap = false, Pop = 0.515, Lat = 51.4893379211426, Lon = 6.77530431747437, Country = "Germany", Name = "Duisburg" }, - new WorldCity() { Cap = true, Pop = 11.100, Lat = 51.4879112243652, Lon = -0.177998125553131, Country = "UK", Name = "london" }, - new WorldCity() { Cap = false, Pop = 3.867, Lat = 51.3540420532227, Lon = 7.12243509292603, Country = "Germany", Name = "Essen" }, - new WorldCity() { Cap = false, Pop = 0.700, Lat = 51.3493309020996, Lon = 12.3980741500854, Country = "Germany", Name = "Leipzig" }, - new WorldCity() { Cap = false, Pop = 1.100, Lat = 51.207347869873, Lon = 4.42605447769165, Country = "Belgium", Name = "Antwerpen" }, - new WorldCity() { Cap = false, Pop = 0.640, Lat = 51.1218185424805, Lon = 17.0381278991699, Country = "Poland", Name = "Wroclaw" }, - new WorldCity() { Cap = false, Pop = 0.465, Lat = 51.0475540161133, Lon = 3.73629117012024, Country = "Belgium", Name = "Gent" }, - new WorldCity() { Cap = false, Pop = 0.670, Lat = 51.0456809997559, Lon = 13.7053575515747, Country = "Germany", Name = "Dresden" }, - new WorldCity() { Cap = false, Pop = 0.671, Lat = 51.0299987792969, Lon = -114.050003051758, Country = "Canada", Name = "Calgary" }, - new WorldCity() { Cap = false, Pop = 1.760, Lat = 50.9423446655273, Lon = 6.93487167358398, Country = "Germany", Name = "Koln" }, - new WorldCity() { Cap = true, Pop = 2.385, Lat = 50.8370475769043, Lon = 4.36761236190796, Country = "Belgium", Name = "Bruxelles" }, - new WorldCity() { Cap = false, Pop = 0.570, Lat = 50.7345581054688, Lon = 7.09981870651245, Country = "Germany", Name = "Bonn" }, - new WorldCity() { Cap = false, Pop = 1.020, Lat = 50.6320838928223, Lon = 3.06290125846863, Country = "France", Name = "Lille" }, - new WorldCity() { Cap = false, Pop = 0.750, Lat = 50.6225280761719, Lon = 5.56943559646606, Country = "Belgium", Name = "Liege" }, - new WorldCity() { Cap = true, Pop = 2.900, Lat = 50.4481582641602, Lon = 30.5021114349365, Country = "Ukraine", Name = "Kiev" }, - new WorldCity() { Cap = false, Pop = 1.855, Lat = 50.129997253418, Lon = 8.66816711425781, Country = "Germany", Name = "Frankfurt am Main" }, - new WorldCity() { Cap = true, Pop = 1.325, Lat = 50.1058959960938, Lon = 14.4565200805664, Country = "Czech Repub", Name = "Prague" }, - new WorldCity() { Cap = false, Pop = 0.828, Lat = 50.0622406005859, Lon = 19.9450569152832, Country = "Poland", Name = "Krakow" }, - new WorldCity() { Cap = false, Pop = 0.625, Lat = 49.9211692810059, Lon = -97.1244430541992, Country = "Canada", Name = "Winnipeg" }, - new WorldCity() { Cap = false, Pop = 0.614, Lat = 49.879207611084, Lon = 73.20263671875, Country = "Kazakhstan", Name = "Karaganda" }, - new WorldCity() { Cap = false, Pop = 0.790, Lat = 49.8373107910156, Lon = 24.0345211029053, Country = "Ukraine", Name = "Lvov" }, - new WorldCity() { Cap = false, Pop = 0.450, Lat = 49.2029800415039, Lon = 16.6162452697754, Country = "Czech Repub", Name = "Brno" }, - new WorldCity() { Cap = true, Pop = 9.775, Lat = 48.8815536499023, Lon = 2.43283271789551, Country = "France", Name = "Paris" }, - new WorldCity() { Cap = false, Pop = 1.360, Lat = 48.7102470397949, Lon = 44.4836311340332, Country = "Russia", Name = "Volgograd" }, - new WorldCity() { Cap = false, Pop = 0.400, Lat = 48.5834350585938, Lon = 7.76799440383911, Country = "France", Name = "Strasbourg" }, - new WorldCity() { Cap = false, Pop = 0.335, Lat = 48.2975959777832, Lon = 14.2939014434814, Country = "Austria", Name = "Linz" }, - new WorldCity() { Cap = true, Pop = 1.875, Lat = 48.2021179199219, Lon = 16.3209857940674, Country = "Austria", Name = "Vienna" }, - new WorldCity() { Cap = false, Pop = 1.955, Lat = 48.1409759521484, Lon = 11.5429534912109, Country = "Germany", Name = "Munchen" }, - new WorldCity() { Cap = false, Pop = 2.200, Lat = 48.0401458740234, Lon = 37.7370529174805, Country = "Ukraine", Name = "Donets'k" }, - new WorldCity() { Cap = true, Pop = 0.548, Lat = 47.928596496582, Lon = 106.912353515625, Country = "Mongolia", Name = "Ulaanbaatar" }, - new WorldCity() { Cap = true, Pop = 2.565, Lat = 47.5146255493164, Lon = 19.0942497253418, Country = "Hungary", Name = "Budapest" }, - new WorldCity() { Cap = false, Pop = 1.150, Lat = 47.3440055847168, Lon = 123.964965820313, Country = "China", Name = "Qiqihar" }, - new WorldCity() { Cap = false, Pop = 0.185, Lat = 47.2654609680176, Lon = 11.3499822616577, Country = "Austria", Name = "Innsbruck" }, - new WorldCity() { Cap = false, Pop = 1.165, Lat = 47.2320976257324, Lon = 39.6880378723145, Country = "Russia", Name = "Rostov-na-Donu" }, - new WorldCity() { Cap = false, Pop = 0.465, Lat = 47.2194328308105, Lon = -1.56156122684479, Country = "France", Name = "Nantes" }, - new WorldCity() { Cap = false, Pop = 0.325, Lat = 47.0649223327637, Lon = 15.4311008453369, Country = "Austria", Name = "Graz" }, - new WorldCity() { Cap = true, Pop = 0.299, Lat = 46.9482078552246, Lon = 7.44573640823364, Country = "Switzerland", Name = "Bern" }, - new WorldCity() { Cap = false, Pop = 0.603, Lat = 46.802074432373, Lon = -71.2449340820313, Country = "Canada", Name = "Quebec" }, - new WorldCity() { Cap = false, Pop = 1.185, Lat = 46.5722007751465, Lon = 30.6839370727539, Country = "Ukraine", Name = "Odessa" }, - new WorldCity() { Cap = false, Pop = 2.670, Lat = 45.7552185058594, Lon = 126.622634887695, Country = "China", Name = "Harbin" }, - new WorldCity() { Cap = false, Pop = 1.275, Lat = 45.7470817565918, Lon = 4.85540056228638, Country = "France", Name = "Lyon" }, - new WorldCity() { Cap = false, Pop = 2.921, Lat = 45.541015625, Lon = -73.6535339355469, Country = "Canada", Name = "Montreal" }, - new WorldCity() { Cap = false, Pop = 3.750, Lat = 45.4733810424805, Lon = 9.19046401977539, Country = "Italy", Name = "Milano" }, - new WorldCity() { Cap = false, Pop = 0.420, Lat = 45.4247741699219, Lon = 12.370719909668, Country = "Italy", Name = "Venezia" }, - new WorldCity() { Cap = true, Pop = 0.819, Lat = 45.3742179870605, Lon = -75.650749206543, Country = "Canada", Name = "Ottawa" }, - new WorldCity() { Cap = false, Pop = 1.550, Lat = 45.0748748779297, Lon = 7.66642618179321, Country = "Italy", Name = "Torino" }, - new WorldCity() { Cap = false, Pop = 2.012, Lat = 44.924186706543, Lon = -93.3077926635742, Country = "US", Name = "Minneapolis" }, - new WorldCity() { Cap = false, Pop = 0.640, Lat = 44.8414726257324, Lon = -0.599498748779297, Country = "France", Name = "Bordeaux" }, - new WorldCity() { Cap = true, Pop = 1.400, Lat = 44.7996826171875, Lon = 20.4125556945801, Country = "Serbia", Name = "Beograd" }, - new WorldCity() { Cap = true, Pop = 2.250, Lat = 44.4304847717285, Lon = 26.1229763031006, Country = "Romania", Name = "Bucuresti" }, - new WorldCity() { Cap = false, Pop = 1.740, Lat = 43.8813171386719, Lon = 125.312652587891, Country = "China", Name = "Changchung" }, - new WorldCity() { Cap = false, Pop = 1.170, Lat = 43.8502159118652, Lon = 126.56706237793, Country = "China", Name = "Jilin" }, - new WorldCity() { Cap = false, Pop = 1.040, Lat = 43.7826652526855, Lon = 87.5865173339844, Country = "China", Name = "Urumqi" }, - new WorldCity() { Cap = false, Pop = 0.640, Lat = 43.7815742492676, Lon = 11.207745552063, Country = "Italy", Name = "Firenze" }, - new WorldCity() { Cap = false, Pop = 3.427, Lat = 43.7207679748535, Lon = -79.4126358032227, Country = "Canada", Name = "Toronto" }, - new WorldCity() { Cap = false, Pop = 0.541, Lat = 43.5999603271484, Lon = 1.43798303604126, Country = "France", Name = "Toulouse" }, - new WorldCity() { Cap = false, Pop = 0.985, Lat = 43.2821578979492, Lon = -2.97378325462341, Country = "Spain", Name = "Bilbao" }, - new WorldCity() { Cap = true, Pop = 1.190, Lat = 43.2550621032715, Lon = 76.9126281738281, Country = "Kazakhstan", Name = "Almaty" }, - new WorldCity() { Cap = false, Pop = 0.816, Lat = 43.2104644775391, Lon = -77.635612487793, Country = "US", Name = "Rochester" }, - new WorldCity() { Cap = false, Pop = 1.375, Lat = 43.0679473876953, Lon = -87.9907379150391, Country = "US", Name = "Milwaukee" }, - new WorldCity() { Cap = false, Pop = 1.900, Lat = 43.0552520751953, Lon = 141.345474243164, Country = "Japan", Name = "Sapporo" }, - new WorldCity() { Cap = false, Pop = 1.483, Lat = 42.8986625671387, Lon = -78.8484344482422, Country = "US", Name = "Buffalo" }, - new WorldCity() { Cap = true, Pop = 1.205, Lat = 42.7072639465332, Lon = 23.3318710327148, Country = "Bulgaria", Name = "Sofia" }, - new WorldCity() { Cap = false, Pop = 4.692, Lat = 42.3943138122559, Lon = -83.0789260864258, Country = "US", Name = "Detroit" }, - new WorldCity() { Cap = false, Pop = 3.972, Lat = 42.3752975463867, Lon = -71.1025848388672, Country = "US", Name = "Boston" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 41.8591575622559, Lon = 123.905570983887, Country = "China", Name = "Fushun" }, - new WorldCity() { Cap = false, Pop = 7.717, Lat = 41.826545715332, Lon = -87.6413040161133, Country = "US", Name = "Chicago" }, - new WorldCity() { Cap = false, Pop = 3.840, Lat = 41.8021621704102, Lon = 123.383056640625, Country = "China", Name = "Shenyang" }, - new WorldCity() { Cap = true, Pop = 1.460, Lat = 41.721809387207, Lon = 44.7831268310547, Country = "Georgia", Name = "Tbilisi" }, - new WorldCity() { Cap = false, Pop = 0.575, Lat = 41.6512641906738, Lon = -0.878205060958862, Country = "Spain", Name = "Zaragoza" }, - new WorldCity() { Cap = false, Pop = 2.218, Lat = 41.3907165527344, Lon = -81.7275085449219, Country = "US", Name = "Cleveland" }, - new WorldCity() { Cap = true, Pop = 0.211, Lat = 41.3316535949707, Lon = 19.8318042755127, Country = "Albania", Name = "Tirane" }, - new WorldCity() { Cap = false, Pop = 1.300, Lat = 41.1152458190918, Lon = 122.977012634277, Country = "China", Name = "Anshan" }, - new WorldCity() { Cap = false, Pop = 5.750, Lat = 41.0659561157227, Lon = 29.0060691833496, Country = "Turkey", Name = "Istanbul" }, - new WorldCity() { Cap = false, Pop = 0.682, Lat = 40.693920135498, Lon = -111.89217376709, Country = "US", Name = "Salt Lake City" }, - new WorldCity() { Cap = false, Pop = 2.219, Lat = 40.4972038269043, Lon = -79.9970855712891, Country = "US", Name = "Pittsburgh" }, - new WorldCity() { Cap = true, Pop = 4.650, Lat = 40.4422187805176, Lon = -3.69096946716309, Country = "Spain", Name = "Madrid" }, - new WorldCity() { Cap = true, Pop = 2.020, Lat = 40.3242988586426, Lon = 49.8162384033203, Country = "Azerbaijan", Name = "Baku" }, - new WorldCity() { Cap = true, Pop = 1.315, Lat = 40.2080230712891, Lon = 44.5326690673828, Country = "Armenia", Name = "Yerevan" }, - new WorldCity() { Cap = false, Pop = 0.964, Lat = 40.0446434020996, Lon = -82.9927062988281, Country = "US", Name = "Columbus" }, - new WorldCity() { Cap = true, Pop = 2.400, Lat = 39.929328918457, Lon = 32.853271484375, Country = "Turkey", Name = "Ankara" }, - new WorldCity() { Cap = false, Pop = 5.209, Lat = 39.9275512695313, Lon = -75.2182235717773, Country = "US", Name = "Philadelphia" }, - new WorldCity() { Cap = true, Pop = 6.450, Lat = 39.906192779541, Lon = 116.388038635254, Country = "China", Name = "Beijing" }, - new WorldCity() { Cap = false, Pop = 0.246, Lat = 39.9044532775879, Lon = 41.2918243408203, Country = "Turkey", Name = "Erzurum" }, - new WorldCity() { Cap = false, Pop = 0.366, Lat = 39.6575813293457, Lon = 66.9476013183594, Country = "Uzbekistan", Name = "Samarkand" }, - new WorldCity() { Cap = false, Pop = 1.060, Lat = 39.6154441833496, Lon = 118.180213928223, Country = "China", Name = "Tangshan" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 39.4709167480469, Lon = -0.367400944232941, Country = "Spain", Name = "Valencia" }, - new WorldCity() { Cap = false, Pop = 1.960, Lat = 39.3218841552734, Lon = -76.6183776855469, Country = "US", Name = "Baltimore" }, - new WorldCity() { Cap = false, Pop = 0.305, Lat = 39.2251434326172, Lon = 9.10890960693359, Country = "Italy", Name = "Cagliari" }, - new WorldCity() { Cap = false, Pop = 1.480, Lat = 39.1480102539063, Lon = -84.4770202636719, Country = "US", Name = "Cincinnati" }, - new WorldCity() { Cap = false, Pop = 4.880, Lat = 39.1284141540527, Lon = 117.18522644043, Country = "China", Name = "Tianjin" }, - new WorldCity() { Cap = true, Pop = 1.600, Lat = 39.0285148620605, Lon = 125.757514953613, Country = "Korea D P Rp", Name = "Pyongyang" }, - new WorldCity() { Cap = false, Pop = 1.272, Lat = 38.9941177368164, Lon = -94.6265640258789, Country = "US", Name = "Kansas City" }, - new WorldCity() { Cap = true, Pop = 3.221, Lat = 38.8909111022949, Lon = -76.9538345336914, Country = "US", Name = "Washington D.C." }, - new WorldCity() { Cap = false, Pop = 2.203, Lat = 38.6388854980469, Lon = -90.3419799804688, Country = "US", Name = "St. Louis" }, - new WorldCity() { Cap = false, Pop = 0.866, Lat = 38.5670166015625, Lon = -121.422706604004, Country = "US", Name = "Sacramento" }, - new WorldCity() { Cap = false, Pop = 0.971, Lat = 38.0809783935547, Lon = 46.2901191711426, Country = "Iran", Name = "Tabriz" }, - new WorldCity() { Cap = false, Pop = 1.190, Lat = 38.0770950317383, Lon = 114.559707641602, Country = "China", Name = "Shijiazhuang" }, - new WorldCity() { Cap = true, Pop = 0.398, Lat = 37.9504203796387, Lon = 58.3901329040527, Country = "Turkmenistan", Name = "Ashkhabad" }, - new WorldCity() { Cap = false, Pop = 1.660, Lat = 37.8930549621582, Lon = 112.551704406738, Country = "China", Name = "Taiyuan" }, - new WorldCity() { Cap = true, Pop = 15.850, Lat = 37.542350769043, Lon = 126.935249328613, Country = "Korea Rep", Name = "Seoul" }, - new WorldCity() { Cap = false, Pop = 0.945, Lat = 37.3726463317871, Lon = -5.97083187103271, Country = "Spain", Name = "Sevilla" }, - new WorldCity() { Cap = false, Pop = 0.778, Lat = 36.9999809265137, Lon = 35.3243637084961, Country = "Turkey", Name = "Adana" }, - new WorldCity() { Cap = false, Pop = 0.796, Lat = 36.8792915344238, Lon = -76.2685699462891, Country = "US", Name = "Norfolk" }, - new WorldCity() { Cap = true, Pop = 1.225, Lat = 36.8188133239746, Lon = 10.1659603118896, Country = "Tunisia", Name = "Tunis" }, - new WorldCity() { Cap = false, Pop = 0.830, Lat = 36.7914962768555, Lon = 118.062042236328, Country = "China", Name = "Zibo" }, - new WorldCity() { Cap = false, Pop = 1.460, Lat = 36.6555366516113, Lon = 116.967056274414, Country = "China", Name = "Jinan" }, - new WorldCity() { Cap = false, Pop = 0.571, Lat = 36.3355674743652, Lon = 43.1371269226074, Country = "Iraq", Name = "Mosul" }, - new WorldCity() { Cap = false, Pop = 1.464, Lat = 36.2900695800781, Lon = 59.596851348877, Country = "Iran", Name = "Mashhad" }, - new WorldCity() { Cap = false, Pop = 1.216, Lat = 36.2155456542969, Lon = 37.1592826843262, Country = "Syria", Name = "Aleppo" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 36.1134300231934, Lon = 103.599594116211, Country = "China", Name = "Lanzhou" }, - new WorldCity() { Cap = false, Pop = 2.206, Lat = 35.8635368347168, Lon = 128.591384887695, Country = "Korea Rep", Name = "Taegu" }, - new WorldCity() { Cap = true, Pop = 6.400, Lat = 35.7744750976563, Lon = 51.4476509094238, Country = "Iran", Name = "Tehran" }, - new WorldCity() { Cap = true, Pop = 23.620, Lat = 35.6830558776855, Lon = 139.809188842773, Country = "Japan", Name = "Tokyo" }, - new WorldCity() { Cap = false, Pop = 1.089, Lat = 35.5045700073242, Lon = 139.72721862793, Country = "Japan", Name = "Kawasaki" }, - new WorldCity() { Cap = false, Pop = 0.742, Lat = 35.4895896911621, Lon = -97.5302963256836, Country = "US", Name = "Oklahoma City" }, - new WorldCity() { Cap = false, Pop = 2.993, Lat = 35.437385559082, Lon = 139.619659423828, Country = "Japan", Name = "Yokohama" }, - new WorldCity() { Cap = false, Pop = 0.479, Lat = 35.2058143615723, Lon = -80.8356857299805, Country = "US", Name = "Charlotte" }, - new WorldCity() { Cap = false, Pop = 3.800, Lat = 35.1578674316406, Lon = 129.0546875, Country = "Korea Rep", Name = "Pusan" }, - new WorldCity() { Cap = false, Pop = 4.800, Lat = 35.1549224853516, Lon = 136.920593261719, Country = "Japan", Name = "Nagoya" }, - new WorldCity() { Cap = false, Pop = 0.853, Lat = 35.1147270202637, Lon = -90.0003280639648, Country = "US", Name = "Memphis" }, - new WorldCity() { Cap = false, Pop = 1.479, Lat = 35.0091285705566, Lon = 135.754821777344, Country = "Japan", Name = "Kyoto" }, - new WorldCity() { Cap = false, Pop = 1.170, Lat = 34.757682800293, Lon = 113.641777038574, Country = "China", Name = "Zhengzhou" }, - new WorldCity() { Cap = false, Pop = 0.431, Lat = 34.7338752746582, Lon = 36.7181739807129, Country = "Syria", Name = "Homs" }, - new WorldCity() { Cap = false, Pop = 0.740, Lat = 34.6713485717773, Lon = 112.361236572266, Country = "China", Name = "Luoyang" }, - new WorldCity() { Cap = false, Pop = 15.040, Lat = 34.6355285644531, Lon = 135.519119262695, Country = "Japan", Name = "Osaka" }, - new WorldCity() { Cap = true, Pop = 1.179, Lat = 34.5309066772461, Lon = 69.1367568969727, Country = "Afghanistan", Name = "Kabul" }, - new WorldCity() { Cap = false, Pop = 1.575, Lat = 34.377555847168, Lon = 132.444778442383, Country = "Japan", Name = "Hiroshima" }, - new WorldCity() { Cap = false, Pop = 2.050, Lat = 34.265697479248, Lon = 108.883361816406, Country = "China", Name = "Xian" }, - new WorldCity() { Cap = false, Pop = 0.535, Lat = 34.0435676574707, Lon = -4.99554777145386, Country = "Morocco", Name = "Fes" }, - new WorldCity() { Cap = false, Pop = 1.963, Lat = 33.7957000732422, Lon = -84.3492279052734, Country = "US", Name = "Atlanta" }, - new WorldCity() { Cap = true, Pop = 0.204, Lat = 33.7181510925293, Lon = 73.060546875, Country = "Pakistan", Name = "Islamabad" }, - new WorldCity() { Cap = false, Pop = 0.836, Lat = 33.6058044433594, Lon = 73.0437469482422, Country = "Pakistan", Name = "Rawalpindi" }, - new WorldCity() { Cap = true, Pop = 1.850, Lat = 33.5193023681641, Lon = 36.3134536743164, Country = "Syria", Name = "Damascus" }, - new WorldCity() { Cap = false, Pop = 1.482, Lat = 33.5090217590332, Lon = -112.110260009766, Country = "US", Name = "Phoenix" }, - new WorldCity() { Cap = true, Pop = 3.841, Lat = 33.3340377807617, Lon = 44.397834777832, Country = "Iraq", Name = "Baghdad" }, - new WorldCity() { Cap = false, Pop = 2.727, Lat = 32.763729095459, Lon = -96.663688659668, Country = "US", Name = "Dallas" }, - new WorldCity() { Cap = false, Pop = 0.987, Lat = 32.6513900756836, Lon = 51.6791877746582, Country = "Iran", Name = "Esfahan" }, - new WorldCity() { Cap = false, Pop = 2.290, Lat = 32.0483665466309, Lon = 118.768905639648, Country = "China", Name = "Nanjing" }, - new WorldCity() { Cap = true, Pop = 1.250, Lat = 31.9493827819824, Lon = 35.9329071044922, Country = "Jordan", Name = "Amman" }, - new WorldCity() { Cap = false, Pop = 0.595, Lat = 31.6308898925781, Lon = 74.8715515136719, Country = "India", Name = "Amritsar" }, - new WorldCity() { Cap = false, Pop = 3.025, Lat = 31.5450534820557, Lon = 74.3406753540039, Country = "Pakistan", Name = "Lahore" }, - new WorldCity() { Cap = false, Pop = 1.104, Lat = 31.4089508056641, Lon = 73.0834579467773, Country = "Pakistan", Name = "Faisalabad" }, - new WorldCity() { Cap = false, Pop = 9.300, Lat = 31.2478694915771, Lon = 121.47265625, Country = "China", Name = "Shanghai" }, - new WorldCity() { Cap = false, Pop = 1.810, Lat = 30.6700687408447, Lon = 104.071273803711, Country = "China", Name = "Chengdu" }, - new WorldCity() { Cap = false, Pop = 3.490, Lat = 30.5724983215332, Lon = 114.279220581055, Country = "China", Name = "Wuhan" }, - new WorldCity() { Cap = false, Pop = 0.617, Lat = 30.503490447998, Lon = 47.7608642578125, Country = "Iraq", Name = "Al Basra" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 30.2526245117188, Lon = 120.165077209473, Country = "China", Name = "Hangzhou" }, - new WorldCity() { Cap = true, Pop = 9.300, Lat = 30.0779113769531, Lon = 31.2507972717285, Country = "Egypt", Name = "Cairo" }, - new WorldCity() { Cap = false, Pop = 1.185, Lat = 29.9563789367676, Lon = -90.0986862182617, Country = "US", Name = "New Orleans" }, - new WorldCity() { Cap = false, Pop = 2.755, Lat = 29.7718296051025, Lon = -95.407112121582, Country = "US", Name = "Houston" }, - new WorldCity() { Cap = false, Pop = 0.084, Lat = 29.6507034301758, Lon = 91.1320877075195, Country = "China", Name = "Lhasa" }, - new WorldCity() { Cap = false, Pop = 2.450, Lat = 29.5441036224365, Lon = 106.522689819336, Country = "China", Name = "Chongqing" }, - new WorldCity() { Cap = false, Pop = 0.968, Lat = 29.4299221038818, Lon = -98.5245742797852, Country = "US", Name = "San Antonio" }, - new WorldCity() { Cap = false, Pop = 1.030, Lat = 28.6712398529053, Lon = 115.88941192627, Country = "China", Name = "Nanchang" }, - new WorldCity() { Cap = true, Pop = 0.273, Lat = 28.5687255859375, Lon = 77.2167510986328, Country = "India", Name = "New Delhi" }, - new WorldCity() { Cap = false, Pop = 7.200, Lat = 28.5264587402344, Lon = 77.2243728637695, Country = "India", Name = "Delhi" }, - new WorldCity() { Cap = false, Pop = 1.190, Lat = 28.1976413726807, Lon = 112.968482971191, Country = "China", Name = "Changsha" }, - new WorldCity() { Cap = true, Pop = 0.320, Lat = 27.7120170593262, Lon = 85.3129501342773, Country = "Nepal", Name = "Kathmandu" }, - new WorldCity() { Cap = true, Pop = 0.012, Lat = 27.44260597229, Lon = 89.6673278808594, Country = "Bhutan", Name = "Thimbu" }, - new WorldCity() { Cap = false, Pop = 1.025, Lat = 26.9051132202148, Lon = 75.8012771606445, Country = "India", Name = "Jaipur" }, - new WorldCity() { Cap = false, Pop = 1.060, Lat = 26.8494281768799, Lon = 80.9197235107422, Country = "India", Name = "Lucknow" }, - new WorldCity() { Cap = false, Pop = 1.010, Lat = 26.5719413757324, Lon = 106.700302124023, Country = "China", Name = "Guiyang" }, - new WorldCity() { Cap = false, Pop = 1.875, Lat = 26.4578304290771, Lon = 80.3178634643555, Country = "India", Name = "Kanpur" }, - new WorldCity() { Cap = false, Pop = 0.890, Lat = 26.0710163116455, Lon = 119.303520202637, Country = "China", Name = "Fuzhou" }, - new WorldCity() { Cap = false, Pop = 2.827, Lat = 25.8321304321289, Lon = -80.2702178955078, Country = "US", Name = "Miami" }, - new WorldCity() { Cap = false, Pop = 2.015, Lat = 25.6773529052734, Lon = -100.317085266113, Country = "Mexico", Name = "Monterrey" }, - new WorldCity() { Cap = false, Pop = 1.025, Lat = 25.6138973236084, Lon = 85.1353454589844, Country = "India", Name = "Patna" }, - new WorldCity() { Cap = false, Pop = 0.800, Lat = 25.3801860809326, Lon = 68.3664703369141, Country = "Pakistan", Name = "Hyderabad" }, - new WorldCity() { Cap = false, Pop = 0.925, Lat = 25.2820110321045, Lon = 82.9563369750977, Country = "India", Name = "Benares" }, - new WorldCity() { Cap = true, Pop = 0.310, Lat = 25.2036418914795, Lon = 51.4972343444824, Country = "Qatar", Name = "Doha" }, - new WorldCity() { Cap = false, Pop = 1.280, Lat = 25.0510330200195, Lon = 102.702125549316, Country = "China", Name = "Kunming" }, - new WorldCity() { Cap = true, Pop = 6.130, Lat = 25.0350914001465, Lon = 121.506729125977, Country = "Taiwan", Name = "Taipei" }, - new WorldCity() { Cap = false, Pop = 0.715, Lat = 24.1436424255371, Lon = 120.670280456543, Country = "Taiwan", Name = "T`ai-chung" }, - new WorldCity() { Cap = true, Pop = 3.430, Lat = 23.7099189758301, Lon = 90.4071426391602, Country = "Bangladesh", Name = "Dhaka" }, - new WorldCity() { Cap = false, Pop = 3.050, Lat = 23.0961952209473, Lon = 113.293609619141, Country = "China", Name = "Guangzhou" }, - new WorldCity() { Cap = false, Pop = 2.400, Lat = 23.0397911071777, Lon = 72.5668640136719, Country = "India", Name = "Ahmadabad" }, - new WorldCity() { Cap = false, Pop = 0.648, Lat = 22.8426475524902, Lon = 89.5582427978516, Country = "Bangladesh", Name = "Khulna" }, - new WorldCity() { Cap = false, Pop = 11.100, Lat = 22.5435371398926, Lon = 88.3342208862305, Country = "India", Name = "Calcutta" }, - new WorldCity() { Cap = false, Pop = 0.435, Lat = 22.2432346343994, Lon = -97.8426284790039, Country = "Mexico", Name = "Tampico" }, - new WorldCity() { Cap = false, Pop = 0.533, Lat = 21.975944519043, Lon = 96.0841522216797, Country = "Burma", Name = "Mandalay" }, - new WorldCity() { Cap = false, Pop = 0.550, Lat = 21.4273815155029, Lon = 39.8148384094238, Country = "Saudi Arabia", Name = "Mecca" }, - new WorldCity() { Cap = false, Pop = 1.302, Lat = 21.1557579040527, Lon = 79.089111328125, Country = "India", Name = "Nagpur" }, - new WorldCity() { Cap = true, Pop = 1.500, Lat = 21.0319480895996, Lon = 105.81990814209, Country = "Vietnam", Name = "Hanoi" }, - new WorldCity() { Cap = false, Pop = 0.385, Lat = 20.8613586425781, Lon = 106.679794311523, Country = "Vietnam", Name = "Haiphong" }, - new WorldCity() { Cap = false, Pop = 0.400, Lat = 20.8218688964844, Lon = -89.552864074707, Country = "Mexico", Name = "Merida" }, - new WorldCity() { Cap = false, Pop = 2.325, Lat = 20.6735916137695, Lon = -103.343795776367, Country = "Mexico", Name = "Guadalajara" }, - new WorldCity() { Cap = false, Pop = 0.207, Lat = 19.6157131195068, Lon = 37.2196884155273, Country = "Sudan", Name = "Bur Sudan" }, - new WorldCity() { Cap = true, Pop = 14.100, Lat = 19.4270458221436, Lon = -99.127571105957, Country = "Mexico", Name = "Mexico City" }, - new WorldCity() { Cap = false, Pop = 1.055, Lat = 19.0486316680908, Lon = -98.1929473876953, Country = "Mexico", Name = "Puebla de Zaragoza" }, - new WorldCity() { Cap = false, Pop = 1.775, Lat = 18.5357475280762, Lon = 73.8522720336914, Country = "India", Name = "Pune" }, - new WorldCity() { Cap = true, Pop = 0.880, Lat = 18.5266170501709, Lon = -72.3431091308594, Country = "Haiti", Name = "Port-au-Prince" }, - new WorldCity() { Cap = true, Pop = 1.775, Lat = 18.4006156921387, Lon = -66.0817565917969, Country = "Puerto Rico", Name = "San Juan" }, - new WorldCity() { Cap = true, Pop = 0.770, Lat = 18.0157127380371, Lon = -76.7973022460938, Country = "Jamaica", Name = "Kingston" }, - new WorldCity() { Cap = false, Pop = 2.750, Lat = 17.3945465087891, Lon = 78.4850311279297, Country = "India", Name = "Hyderabad" }, - new WorldCity() { Cap = true, Pop = 2.800, Lat = 16.8722229003906, Lon = 96.1248931884766, Country = "Burma", Name = "Rangoon" }, - new WorldCity() { Cap = true, Pop = 0.427, Lat = 15.3614444732666, Lon = 44.2095031738281, Country = "Yemen", Name = "Sanaa" }, - new WorldCity() { Cap = true, Pop = 1.400, Lat = 14.6180076599121, Lon = -90.52490234375, Country = "Guatemala", Name = "Guatemala" }, - new WorldCity() { Cap = true, Pop = 0.552, Lat = 14.0990505218506, Lon = -87.2030944824219, Country = "Honduras", Name = "Tegucigalpa" }, - new WorldCity() { Cap = true, Pop = 6.450, Lat = 13.7455711364746, Lon = 100.552665710449, Country = "Thailand", Name = "Bangkok" }, - new WorldCity() { Cap = true, Pop = 0.920, Lat = 13.7014122009277, Lon = -89.2002334594727, Country = "El Salvador", Name = "San Salvador" }, - new WorldCity() { Cap = true, Pop = 0.398, Lat = 13.6045436859131, Lon = 2.08344984054565, Country = "Niger", Name = "Niamey" }, - new WorldCity() { Cap = false, Pop = 4.475, Lat = 13.0615034103394, Lon = 80.2478256225586, Country = "India", Name = "Madras" }, - new WorldCity() { Cap = false, Pop = 2.950, Lat = 12.9747505187988, Lon = 77.5877304077148, Country = "India", Name = "Bangalore" }, - new WorldCity() { Cap = true, Pop = 0.646, Lat = 12.6529502868652, Lon = -7.98648166656494, Country = "Mali", Name = "Bamako" }, - new WorldCity() { Cap = true, Pop = 0.682, Lat = 12.1514730453491, Lon = -86.2730331420898, Country = "Nicaragua", Name = "Managua" }, - new WorldCity() { Cap = true, Pop = 0.700, Lat = 11.564736366272, Lon = 104.913192749023, Country = "Cambodia", Name = "Phnom Penh" }, - new WorldCity() { Cap = false, Pop = 3.100, Lat = 10.7591819763184, Lon = 106.662452697754, Country = "Vietnam", Name = "Ho Chi Minh City" }, - new WorldCity() { Cap = false, Pop = 0.891, Lat = 10.6450433731079, Lon = -71.6371459960938, Country = "Venezuela", Name = "Maracaibo" }, - new WorldCity() { Cap = true, Pop = 3.600, Lat = 10.4960489273071, Lon = -66.8982849121094, Country = "Venezuela", Name = "Caracas" }, - new WorldCity() { Cap = false, Pop = 0.498, Lat = 10.0656652450562, Lon = -69.3391952514648, Country = "Venezuela", Name = "Barquisimeto" }, - new WorldCity() { Cap = true, Pop = 0.670, Lat = 9.93047618865967, Lon = -84.07861328125, Country = "Costa Rica", Name = "San Jose" }, - new WorldCity() { Cap = false, Pop = 0.960, Lat = 9.91398620605469, Lon = 78.1217269897461, Country = "India", Name = "Madurai" }, - new WorldCity() { Cap = false, Pop = 1.144, Lat = 7.37884044647217, Lon = 3.8952784538269, Country = "Nigeria", Name = "Ibadan" }, - new WorldCity() { Cap = false, Pop = 0.409, Lat = 7.08008003234863, Lon = 125.613677978516, Country = "Philippines", Name = "Davao" }, - new WorldCity() { Cap = false, Pop = 0.253, Lat = 6.45053863525391, Lon = 7.4920802116394, Country = "Nigeria", Name = "Enugu" }, - new WorldCity() { Cap = false, Pop = 2.095, Lat = 6.24114656448364, Lon = -75.5920333862305, Country = "Colombia", Name = "Medellin" }, - new WorldCity() { Cap = true, Pop = 1.250, Lat = 5.55856275558472, Lon = -0.200923636555672, Country = "Ghana", Name = "Accra" }, - new WorldCity() { Cap = true, Pop = 1.950, Lat = 5.32485723495483, Lon = -4.02188682556152, Country = "Ivory Coast", Name = "Abidjan" }, - new WorldCity() { Cap = true, Pop = 4.260, Lat = 4.63021993637085, Lon = -74.0805130004883, Country = "Colombia", Name = "Bogota" }, - new WorldCity() { Cap = true, Pop = 0.474, Lat = 4.3658561706543, Lon = 18.5623416900635, Country = "Cent Af Rep", Name = "Bangui" }, - new WorldCity() { Cap = true, Pop = 0.654, Lat = 3.86512303352356, Lon = 11.5136413574219, Country = "Cameroon", Name = "Yaounde" }, - new WorldCity() { Cap = false, Pop = 1.374, Lat = 3.58524203300476, Lon = 98.6755981445313, Country = "Indonesia", Name = "Medan" }, - new WorldCity() { Cap = false, Pop = 1.400, Lat = 3.45685529708862, Lon = -76.5224380493164, Country = "Colombia", Name = "Cali" }, - new WorldCity() { Cap = true, Pop = 1.475, Lat = 3.1502103805542, Lon = 101.707672119141, Country = "Malaysia", Name = "Kuala Lumpur" }, - new WorldCity() { Cap = true, Pop = 0.600, Lat = 2.04117751121521, Lon = 45.3441429138184, Country = "Somalia", Name = "Muqdisho" }, - new WorldCity() { Cap = false, Pop = 0.283, Lat = 0.519284904003143, Lon = 25.1961479187012, Country = "Zaire", Name = "Kisangani" }, - new WorldCity() { Cap = true, Pop = 1.050, Lat = -0.229498133063316, Lon = -78.524284362793, Country = "Ecuador", Name = "Quito" }, - new WorldCity() { Cap = false, Pop = 0.179, Lat = -3.75289535522461, Lon = -73.1914901733398, Country = "Peru", Name = "Iquitos" }, - new WorldCity() { Cap = false, Pop = 1.825, Lat = -3.78332185745239, Lon = -38.5889015197754, Country = "Brazil", Name = "Fortaleza" }, - new WorldCity() { Cap = true, Pop = 0.586, Lat = -4.28518676757813, Lon = 15.2851486206055, Country = "Congo", Name = "Brazzaville" }, - new WorldCity() { Cap = false, Pop = 0.291, Lat = -5.89221096038818, Lon = 22.4027786254883, Country = "Zaire", Name = "Kananga" }, - new WorldCity() { Cap = true, Pop = 1.300, Lat = -6.81735897064209, Lon = 39.2533493041992, Country = "Tanzania", Name = "Dar es Salaam" }, - new WorldCity() { Cap = false, Pop = 1.800, Lat = -6.91243028640747, Lon = 107.606903076172, Country = "Indonesia", Name = "Bandung" }, - new WorldCity() { Cap = false, Pop = 2.625, Lat = -8.08516788482666, Lon = -34.9146385192871, Country = "Brazil", Name = "Recife" }, - new WorldCity() { Cap = false, Pop = 0.155, Lat = -12.7177352905273, Lon = 13.464879989624, Country = "Angola", Name = "Benguela" }, - new WorldCity() { Cap = true, Pop = 1.568, Lat = -15.7921094894409, Lon = -47.8977470397949, Country = "Brazil", Name = "Brasilia" }, - new WorldCity() { Cap = false, Pop = 0.447, Lat = -16.3975391387939, Lon = -71.5227432250977, Country = "Peru", Name = "Arequipa" }, - new WorldCity() { Cap = true, Pop = 0.993, Lat = -16.4990062713623, Lon = -68.1462478637695, Country = "Bolivia", Name = "La Paz" }, - new WorldCity() { Cap = false, Pop = 0.990, Lat = -16.7266998291016, Lon = -49.254810333252, Country = "Brazil", Name = "Goiania" }, - new WorldCity() { Cap = false, Pop = 0.442, Lat = -17.7887916564941, Lon = -63.1974182128906, Country = "Bolivia", Name = "Santa Cruz de La Sierra" }, - new WorldCity() { Cap = false, Pop = 0.087, Lat = -19.0421352386475, Lon = -65.2558822631836, Country = "Bolivia", Name = "Sucre" }, - new WorldCity() { Cap = false, Pop = 2.950, Lat = -19.8517208099365, Lon = -43.9090690612793, Country = "Brazil", Name = "Belo Horizonte" }, - new WorldCity() { Cap = false, Pop = 10.150, Lat = -22.7215728759766, Lon = -43.4551773071289, Country = "Brazil", Name = "Rio de Janeiro" }, - new WorldCity() { Cap = false, Pop = 15.175, Lat = -23.5813045501709, Lon = -46.6228981018066, Country = "Brazil", Name = "Sao Paulo" }, - new WorldCity() { Cap = false, Pop = 1.065, Lat = -23.9547004699707, Lon = -46.3094940185547, Country = "Brazil", Name = "Santos" }, - new WorldCity() { Cap = true, Pop = 0.095, Lat = -24.6614418029785, Lon = 25.7948017120361, Country = "Botswana", Name = "Gaborone" }, - new WorldCity() { Cap = false, Pop = 1.700, Lat = -25.4304790496826, Lon = -49.2845077514648, Country = "Brazil", Name = "Curitiba" }, - new WorldCity() { Cap = true, Pop = 0.960, Lat = -25.7313461303711, Lon = 28.2183723449707, Country = "South Africa", Name = "Pretoria" }, - new WorldCity() { Cap = true, Pop = 1.070, Lat = -25.9621543884277, Lon = 32.5736923217773, Country = "Mozambique", Name = "Maputo" }, - new WorldCity() { Cap = false, Pop = 3.650, Lat = -26.1789569854736, Lon = 28.0043087005615, Country = "South Africa", Name = "Johannesburg" }, - new WorldCity() { Cap = false, Pop = 1.149, Lat = -27.4539127349854, Lon = 153.026489257813, Country = "Australia", Name = "Brisbane" }, - new WorldCity() { Cap = false, Pop = 1.550, Lat = -29.8363723754883, Lon = 30.9421882629395, Country = "South Africa", Name = "Durban" }, - new WorldCity() { Cap = false, Pop = 2.600, Lat = -30.0395336151123, Lon = -51.2079887390137, Country = "Brazil", Name = "Porto Alegre" }, - new WorldCity() { Cap = false, Pop = 1.070, Lat = -31.3162784576416, Lon = -64.1798553466797, Country = "Argentina", Name = "Cordoba" }, - new WorldCity() { Cap = false, Pop = 0.292, Lat = -31.6168975830078, Lon = -60.6978416442871, Country = "Argentina", Name = "Santa Fe" }, - new WorldCity() { Cap = false, Pop = 0.650, Lat = -32.8974380493164, Lon = -68.8297348022461, Country = "Argentina", Name = "Mendoza" }, - new WorldCity() { Cap = false, Pop = 1.045, Lat = -32.9377365112305, Lon = -60.6639404296875, Country = "Argentina", Name = "Rosario" }, - new WorldCity() { Cap = true, Pop = 4.100, Lat = -33.475025177002, Lon = -70.6475143432617, Country = "Chile", Name = "Santiago" }, - new WorldCity() { Cap = false, Pop = 0.690, Lat = -33.8815765380859, Lon = 25.4842987060547, Country = "South Africa", Name = "Port Elizabeth" }, - new WorldCity() { Cap = false, Pop = 3.365, Lat = -33.8897743225098, Lon = 151.028198242188, Country = "Australia", Name = "Sydney" }, - new WorldCity() { Cap = true, Pop = 10.750, Lat = -34.6654014587402, Lon = -58.4095916748047, Country = "Argentina", Name = "Buenos Aires" }, - new WorldCity() { Cap = true, Pop = 0.271, Lat = -35.349925994873, Lon = 149.041625976563, Country = "Australia", Name = "Canberra" }, - new WorldCity() { Cap = false, Pop = 0.850, Lat = -36.893253326416, Lon = 174.801055908203, Country = "New Zealand", Name = "Auckland" }, - new WorldCity() { Cap = false, Pop = 2.833, Lat = -37.8529586791992, Lon = 145.075103759766, Country = "Australia", Name = "Melbourne" }, - new WorldCity() { Cap = false, Pop = 0.224, Lat = -38.7252731323242, Lon = -62.2740669250488, Country = "Argentina", Name = "Bahia Blanca" }, - new WorldCity() { Cap = false, Pop = 0.320, Lat = -43.5489158630371, Lon = 172.683654785156, Country = "New Zealand", Name = "Christchurch" }, - new WorldCity() { Cap = true, Pop = 0.900, Lat = 60.1964225769043, Lon = 24.9766998291016, Country = "Finland", Name = "Helsinki" }, - new WorldCity() { Cap = false, Pop = 0.310, Lat = 34.745231628418, Lon = 10.7592582702637, Country = "Tunisia", Name = "Sfax" }, - new WorldCity() { Cap = false, Pop = 1.411, Lat = 34.6638412475586, Lon = 135.181838989258, Country = "Japan", Name = "Kobe" }, - new WorldCity() { Cap = false, Pop = 0.490, Lat = 31.7737464904785, Lon = 35.2252197265625, Country = "Israel", Name = "Jerusalem" }, - new WorldCity() { Cap = false, Pop = 0.616, Lat = 10.1782207489014, Lon = -68.0031127929688, Country = "Venezuela", Name = "Valencia" }, - new WorldCity() { Cap = false, Pop = 1.255, Lat = -2.20381617546082, Lon = -79.9093933105469, Country = "Ecuador", Name = "Guayaquil" }, - new WorldCity() { Cap = false, Pop = 4.054, Lat = 37.7275123596191, Lon = -122.308815002441, Country = "US", Name = "San Francisco" }, - new WorldCity() { Cap = false, Pop = 0.630, Lat = 55.8752517700195, Lon = -3.29878330230713, Country = "UK", Name = "Edinburgh" }, - new WorldCity() { Cap = false, Pop = 0.239, Lat = 45.7002830505371, Lon = 13.9328374862671, Country = "Italy", Name = "Trieste" }, - new WorldCity() { Cap = false, Pop = 1.750, Lat = 33.3099060058594, Lon = 130.317184448242, Country = "Japan", Name = "Fukuoka" }, - new WorldCity() { Cap = false, Pop = 1.525, Lat = 33.6818656921387, Lon = 130.797454833984, Country = "Japan", Name = "Kita Kyushu" }, - new WorldCity() { Cap = true, Pop = 0.303, Lat = 12.1041393280029, Lon = 15.2408237457275, Country = "Chad", Name = "N'Djamena" }, - new WorldCity() { Cap = true, Pop = 0.991, Lat = 32.7516174316406, Lon = 13.2118225097656, Country = "Libya", Name = "Tripoli" }, - new WorldCity() { Cap = false, Pop = 1.550, Lat = 38.4389190673828, Lon = 27.2057685852051, Country = "Turkey", Name = "Izmir" }, - new WorldCity() { Cap = true, Pop = 3.000, Lat = -4.38867473602295, Lon = 15.4692935943604, Country = "Zaire", Name = "Kinshasa" }, - new WorldCity() { Cap = false, Pop = 0.978, Lat = -34.9185371398926, Lon = 138.870681762695, Country = "Australia", Name = "Adelaide" }, - new WorldCity() { Cap = true, Pop = 8.600, Lat = -6.29390430450439, Lon = 106.762466430664, Country = "Indonesia", Name = "Jakarta" }, - new WorldCity() { Cap = false, Pop = 1.025, Lat = -7.02784442901611, Lon = 110.444259643555, Country = "Indonesia", Name = "Semarang" }, - new WorldCity() { Cap = false, Pop = 0.264, Lat = -12.0435400009155, Lon = -76.8356323242188, Country = "Peru", Name = "Callao" }, - new WorldCity() { Cap = false, Pop = 1.200, Lat = -1.60532903671265, Lon = -48.316276550293, Country = "Brazil", Name = "Belem" }, - new WorldCity() { Cap = false, Pop = 1.270, Lat = 36.1483535766602, Lon = 120.434127807617, Country = "China", Name = "Qingdao" }, - new WorldCity() { Cap = true, Pop = 0.377, Lat = 18.0017318725586, Lon = 102.680236816406, Country = "Laos", Name = "Vientiane" }, - new WorldCity() { Cap = false, Pop = 0.220, Lat = 47.8011703491211, Lon = 13.0908985137939, Country = "Austria", Name = "Salzburg" }, - new WorldCity() { Cap = true, Pop = 0.698, Lat = 45.8070755004883, Lon = 15.9643859863281, Country = "Croatia", Name = "Zagreb" }, - new WorldCity() { Cap = true, Pop = 0.273, Lat = -3.26908373832703, Lon = 29.5335865020752, Country = "Burundi", Name = "Bujumbura" }, - new WorldCity() { Cap = true, Pop = 0.185, Lat = 35.1650695800781, Lon = 33.3851623535156, Country = "Cyprus", Name = "Nicosia" }, - new WorldCity() { Cap = true, Pop = 0.182, Lat = -2.11793518066406, Lon = 29.9914855957031, Country = "Rwanda", Name = "Kigali" }, - new WorldCity() { Cap = true, Pop = 0.233, Lat = 46.068302154541, Lon = 14.639612197876, Country = "Slovenia", Name = "Ljubljana" }, - new WorldCity() { Cap = true, Pop = 0.109, Lat = -29.2567100524902, Lon = 27.8903884887695, Country = "Lesotho", Name = "Maseru" }, - new WorldCity() { Cap = true, Pop = 0.133, Lat = 49.740406036377, Lon = 6.27325582504272, Country = "Luxembourg", Name = "Luxembourg" }, - new WorldCity() { Cap = false, Pop = 0.770, Lat = 51.903621673584, Lon = 4.30062437057495, Country = "Netherlands", Name = "The Hague" }, - new WorldCity() { Cap = true, Pop = 0.435, Lat = 48.2745094299316, Lon = 17.2698059082031, Country = "Slovakia", Name = "Bratislava" }, - new WorldCity() { Cap = false, Pop = 0.201, Lat = 52.1100006103516, Lon = -106.629997253418, Country = "Canada", Name = "Saskatoon" }, - new WorldCity() { Cap = false, Pop = 0.187, Lat = 50.4099998474121, Lon = -104.650001525879, Country = "Canada", Name = "Regina" }, - new WorldCity() { Cap = false, Pop = 1.038, Lat = 31.7800006866455, Lon = -106.449996948242, Country = "US", Name = "El Paso" }, - new WorldCity() { Cap = false, Pop = 0.636, Lat = 30.3299999237061, Lon = -81.6600036621094, Country = "US", Name = "Jacksonville" }, - new WorldCity() { Cap = false, Pop = 0.002, Lat = 51.3300018310547, Lon = -80.7300033569336, Country = "Canada", Name = "Moosonee" }, - new WorldCity() { Cap = false, Pop = 0.002, Lat = 54.8600006103516, Lon = -67.0100021362305, Country = "Canada", Name = "Schefferville" }, - new WorldCity() { Cap = false, Pop = 0.008, Lat = 53.310001373291, Lon = -60.5499992370605, Country = "Canada", Name = "Goose Bay" }, - new WorldCity() { Cap = false, Pop = 0.202, Lat = -8.75, Lon = -63.9000015258789, Country = "Brazil", Name = "Porto Velho" }, - new WorldCity() { Cap = false, Pop = 0.185, Lat = -13.6000003814697, Lon = -71.8600006103516, Country = "Peru", Name = "Cuzco" }, - new WorldCity() { Cap = false, Pop = 0.280, Lat = -15.5500001907349, Lon = -56.0499992370605, Country = "Brazil", Name = "Cuiaba" }, - new WorldCity() { Cap = false, Pop = 0.220, Lat = -27.3999996185303, Lon = -58.9000015258789, Country = "Argentina", Name = "Resistencia" }, - new WorldCity() { Cap = false, Pop = 0.032, Lat = 16.7600002288818, Lon = -3.00999999046326, Country = "Mali", Name = "Tombouctoo" }, - new WorldCity() { Cap = false, Pop = 0.255, Lat = 11.8800001144409, Lon = 13.2600002288818, Country = "Niger", Name = "Maiduguri" }, - new WorldCity() { Cap = false, Pop = 0.145, Lat = -5.80999994277954, Lon = 13.4499998092651, Country = "Zaire", Name = "Matadi" }, - new WorldCity() { Cap = false, Pop = 0.203, Lat = -12.7299995422363, Lon = 15.7799997329712, Country = "Angola", Name = "Huambo" }, - new WorldCity() { Cap = false, Pop = 0.145, Lat = -28.6599998474121, Lon = 24.8299999237061, Country = "South Africa", Name = "Kimberley" }, - new WorldCity() { Cap = false, Pop = 0.320, Lat = -33.0299987792969, Lon = 27.8999996185303, Country = "South Africa", Name = "East london" }, - new WorldCity() { Cap = false, Pop = 0.247, Lat = -7.32999992370605, Lon = 19, Country = "Zaire", Name = "Kahemba" }, - new WorldCity() { Cap = false, Pop = 0.054, Lat = -6.17999982833862, Lon = 35.75, Country = "Tanzania", Name = "Dodoma" }, - new WorldCity() { Cap = false, Pop = 0.019, Lat = 68.3499984741211, Lon = 17.2999992370605, Country = "Norway", Name = "Narvik" }, - new WorldCity() { Cap = false, Pop = 0.160, Lat = 34.4599990844727, Lon = 62.2099990844727, Country = "Afghanistan", Name = "Herat" }, - new WorldCity() { Cap = false, Pop = 0.006, Lat = 55.8800010681152, Lon = 37.75, Country = "Russia", Name = "Druzba" }, - new WorldCity() { Cap = false, Pop = 0.146, Lat = 39.4799995422363, Lon = 76, Country = "China", Name = "Kashi" }, - new WorldCity() { Cap = false, Pop = 9.415, Lat = 24.9799995422363, Lon = 121.529998779297, Country = "Taiwan", Name = "Chingmei" }, - new WorldCity() { Cap = false, Pop = 0.166, Lat = 16.4599990844727, Lon = 107.699996948242, Country = "Vietnam", Name = "Hue" }, - new WorldCity() { Cap = false, Pop = 0.073, Lat = 1.5, Lon = 110.430000305176, Country = "Malaysia", Name = "Kuching" }, - new WorldCity() { Cap = false, Pop = 0.208, Lat = -1.21000003814697, Lon = 116.860000610352, Country = "Indonesia", Name = "Balikpapan" }, - new WorldCity() { Cap = false, Pop = 0.168, Lat = 50.3300018310547, Lon = 110.75, Country = "Russia", Name = "Chatanga" }, - new WorldCity() { Cap = false, Pop = 0.006, Lat = 52.0499992370605, Lon = 113.580001831055, Country = "Russia", Name = "Chita" }, - new WorldCity() { Cap = false, Pop = 0.001, Lat = 67.5800018310547, Lon = 133.410003662109, Country = "Russia", Name = "Verkhoyansk" }, - new WorldCity() { Cap = false, Pop = 0.187, Lat = 62.0099983215332, Lon = 129.830001831055, Country = "Russia", Name = "Yakutsk" }, - new WorldCity() { Cap = false, Pop = 0.006, Lat = 59.3300018310547, Lon = 143.25, Country = "Russia", Name = "Okhotsk" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 50.0800018310547, Lon = 45.5299987792969, Country = "Russia", Name = "Nikolayevsk" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 46.9599990844727, Lon = 142.75, Country = "Russia", Name = "Yuzhno-Sakhalinsk" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = -23.6299991607666, Lon = 133.929992675781, Country = "Australia", Name = "Alice Springs" }, - new WorldCity() { Cap = false, Pop = 0.039, Lat = -16.8500003814697, Lon = 145.710006713867, Country = "Australia", Name = "Cairns" }, - new WorldCity() { Cap = false, Pop = 0.106, Lat = -19.2999992370605, Lon = 146.830001831055, Country = "Australia", Name = "Townsville" }, - new WorldCity() { Cap = false, Pop = 0.059, Lat = -23.4300003051758, Lon = 150.479995727539, Country = "Australia", Name = "Rockhampton" }, - new WorldCity() { Cap = false, Pop = 0.405, Lat = -33, Lon = 151.910003662109, Country = "Australia", Name = "Newcastle" }, - new WorldCity() { Cap = false, Pop = 0.175, Lat = -43, Lon = 147.5, Country = "Australia", Name = "Hobart" }, - new WorldCity() { Cap = false, Pop = 0.109, Lat = -45.8600006103516, Lon = 170.5, Country = "New Zealand", Name = "Dunedin" }, - new WorldCity() { Cap = false, Pop = 0.256, Lat = 48.6545677185059, Lon = -123.569107055664, Country = "Canada", Name = "Victoria" }, - new WorldCity() { Cap = true, Pop = 0.164, Lat = 6.60109615325928, Lon = 2.63250279426575, Country = "Benin", Name = "Porto Novo" }, - new WorldCity() { Cap = false, Pop = 1.030, Lat = 4.13665008544922, Lon = 9.706374168396, Country = "Cameroon", Name = "Douala" }, - new WorldCity() { Cap = false, Pop = 0.708, Lat = -5.19043016433716, Lon = 119.722793579102, Country = "Indonesia", Name = "Vjuag Padang" }, - new WorldCity() { Cap = false, Pop = 0.112, Lat = -3.3865532875061, Lon = 129.312927246094, Country = "Indonesia", Name = "Ambon" }, - new WorldCity() { Cap = false, Pop = 1.604, Lat = 37.5894508361816, Lon = 126.767440795898, Country = "Korea Rep", Name = "Inch`on" }, - new WorldCity() { Cap = false, Pop = 1.680, Lat = 39.0317153930664, Lon = 121.598197937012, Country = "China", Name = "Dalian" }, - new WorldCity() { Cap = false, Pop = 1.227, Lat = 45.4421310424805, Lon = -122.641677856445, Country = "US", Name = "Portland" }, - new WorldCity() { Cap = false, Pop = 0.810, Lat = -3.12230491638184, Lon = -60.0146179199219, Country = "Brazil", Name = "Manaus" }, - new WorldCity() { Cap = false, Pop = 0.227, Lat = -2.46000003814697, Lon = -54.6100006103516, Country = "Brazil", Name = "Santarem" }, - new WorldCity() { Cap = false, Pop = 0.053, Lat = -46.4099998474121, Lon = 168.449996948242, Country = "New Zealand", Name = "Invercargill" }, - new WorldCity() { Cap = false, Pop = 0.049, Lat = -10.2600002288818, Lon = 40.1800003051758, Country = "Tanzania", Name = "Mtwara" }, - new WorldCity() { Cap = false, Pop = 0.100, Lat = -18.2299995422363, Lon = 49.4099998474121, Country = "Madagascar", Name = "Toamasina" }, - new WorldCity() { Cap = false, Pop = 0.235, Lat = -29.1499996185303, Lon = 26.2600002288818, Country = "South Africa", Name = "Bloemfontein" }, - new WorldCity() { Cap = false, Pop = 0.414, Lat = -20.2000007629395, Lon = 28.7099990844727, Country = "Zimbabwe", Name = "Bulawayo" }, - new WorldCity() { Cap = false, Pop = 0.061, Lat = -17.8299999237061, Lon = 25.8799991607666, Country = "Zambia", Name = "Livingstone" }, - new WorldCity() { Cap = false, Pop = 0.290, Lat = 24.4300003051758, Lon = 39.7000007629395, Country = "Saudi Arabia", Name = "Al Madinah" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 21.7600002288818, Lon = 31.2800006866455, Country = "Sudan", Name = "Wadi Halfa" }, - new WorldCity() { Cap = false, Pop = 0.191, Lat = 24.0799999237061, Lon = 32.9500007629395, Country = "Egypt", Name = "Aswan" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 25.9099998474121, Lon = 13.9099998474121, Country = "Libya", Name = "Murzuq" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 27.7000007629395, Lon = -8.15999984741211, Country = "Algeria", Name = "Tindouf" }, - new WorldCity() { Cap = false, Pop = 0.050, Lat = 16.9599990844727, Lon = 7.98000001907349, Country = "Niger", Name = "Agadez" }, - new WorldCity() { Cap = false, Pop = 0.140, Lat = 13.1800003051758, Lon = 30.1599998474121, Country = "Sudan", Name = "El Obeid" }, - new WorldCity() { Cap = false, Pop = 0.125, Lat = 0.0500000007450581, Lon = 18.4599990844727, Country = "Zaire", Name = "Mbandaka" }, - new WorldCity() { Cap = false, Pop = 0.015, Lat = 60.6500015258789, Lon = -135.009994506836, Country = "Canada", Name = "Whitehorse" }, - new WorldCity() { Cap = false, Pop = 0.095, Lat = -53.1500015258789, Lon = -70.8000030517578, Country = "Chile", Name = "Punte Arenas" }, - new WorldCity() { Cap = false, Pop = 0.084, Lat = -41.4799995422363, Lon = -73, Country = "Chile", Name = "Puerto Montt" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = -51.7099990844727, Lon = -69.4100036621094, Country = "Argentina", Name = "Rio Gallegos" }, - new WorldCity() { Cap = false, Pop = 0.097, Lat = -45.8300018310547, Lon = -67.5, Country = "Argentina", Name = "Comodoro Rivadavia" }, - new WorldCity() { Cap = false, Pop = 0.327, Lat = 29.9599990844727, Lon = 32.560001373291, Country = "Egypt", Name = "Suez" }, - new WorldCity() { Cap = false, Pop = 3.350, Lat = 31.0746040344238, Lon = 29.9778099060059, Country = "Egypt", Name = "Alexandria" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = -15.0500001907349, Lon = 40.7000007629395, Country = "Mozambique", Name = "Mocambique" }, - new WorldCity() { Cap = false, Pop = 9.950, Lat = 19.0453472137451, Lon = 73.1723480224609, Country = "India", Name = "Bombay" }, - new WorldCity() { Cap = true, Pop = 2.548, Lat = 36.596492767334, Lon = 2.99369311332703, Country = "Algeria", Name = "Algiers" }, - new WorldCity() { Cap = false, Pop = 1.940, Lat = 49.989673614502, Lon = 36.2083129882813, Country = "Ukraine", Name = "Kharkov" }, - new WorldCity() { Cap = false, Pop = 1.600, Lat = 48.4228897094727, Lon = 35.1378936767578, Country = "Ukraine", Name = "Dnepropetrovsk" }, - new WorldCity() { Cap = true, Pop = 0.482, Lat = 59.2775726318359, Lon = 24.7520561218262, Country = "Estonia", Name = "Tallinn" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 47.810001373291, Lon = 97, Country = "Mongolia", Name = "Uliastay" }, - new WorldCity() { Cap = true, Pop = 1.313, Lat = 18.4997291564941, Lon = -69.9104919433594, Country = "Dominican Rp", Name = "Santo Domingo" }, - new WorldCity() { Cap = true, Pop = 0.064, Lat = 4.93300008773804, Lon = 114.967002868652, Country = "Brunei", Name = "Bandar Seri Begawan" }, - new WorldCity() { Cap = true, Pop = 0.095, Lat = 13.4452724456787, Lon = -16.4946155548096, Country = "Gambia", Name = "Banjul" }, - new WorldCity() { Cap = true, Pop = 0.370, Lat = 10.6397342681885, Lon = -61.490062713623, Country = "Trinidad", Name = "Port of Spain" }, - new WorldCity() { Cap = false, Pop = 0.302, Lat = 16.97438621521, Lon = -99.9314956665039, Country = "Mexico", Name = "Acapulco" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 64.4001617431641, Lon = 177.130187988281, Country = "Russia", Name = "Anadyr" }, - new WorldCity() { Cap = false, Pop = 0.003, Lat = 65.6699981689453, Lon = -37.3118667602539, Country = "Greenland", Name = "Angmagssalik" }, - new WorldCity() { Cap = false, Pop = 0.185, Lat = -23.8325366973877, Lon = -70.2254486083984, Country = "Chile", Name = "Antofagasta" }, - new WorldCity() { Cap = false, Pop = 0.294, Lat = 40.75, Lon = 140.669998168945, Country = "Japan", Name = "Aomori" }, - new WorldCity() { Cap = false, Pop = 0.436, Lat = 32.0430526733398, Lon = 20.3086757659912, Country = "Libya", Name = "Banghazi" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = -15.75, Lon = 133.220001220703, Country = "Australia", Name = "Birdum" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 2.75, Lon = -60.5, Country = "Brazil", Name = "Boa Vista" }, - new WorldCity() { Cap = false, Pop = 0.280, Lat = -6.61999988555908, Lon = -79.8300018310547, Country = "Peru", Name = "Chiclayo" }, - new WorldCity() { Cap = false, Pop = 0.223, Lat = -8.930100440979, Lon = -78.4531478881836, Country = "Peru", Name = "Chimbote" }, - new WorldCity() { Cap = false, Pop = 0.001, Lat = 58.710765838623, Lon = -94.1800003051758, Country = "Canada", Name = "Churchill" }, - new WorldCity() { Cap = false, Pop = 0.686, Lat = 9.98798847198486, Lon = 76.5217819213867, Country = "India", Name = "Cochin" }, - new WorldCity() { Cap = false, Pop = 0.675, Lat = -36.8832969665527, Lon = -72.8516387939453, Country = "Chile", Name = "Concepcion" }, - new WorldCity() { Cap = false, Pop = 0.062, Lat = -31, Lon = -71.0199966430664, Country = "Chile", Name = "Coquimbo" }, - new WorldCity() { Cap = false, Pop = 0.073, Lat = -12.7014999389648, Lon = 130.994552612305, Country = "Australia", Name = "Darwin" }, - new WorldCity() { Cap = true, Pop = 0.120, Lat = 11.5, Lon = 43.0999984741211, Country = "Djibouti", Name = "Djibouti" }, - new WorldCity() { Cap = false, Pop = 0.022, Lat = -32.0441665649414, Lon = 115.9345703125, Country = "Australia", Name = "Fremantle" }, - new WorldCity() { Cap = false, Pop = 0.495, Lat = 5.34999990463257, Lon = 100.547142028809, Country = "Malaysia", Name = "George Town" }, - new WorldCity() { Cap = false, Pop = 0.001, Lat = 69.3831405639648, Lon = -53.6300010681152, Country = "Greenland", Name = "Godhavn" }, - new WorldCity() { Cap = true, Pop = 0.012, Lat = 64.2711868286133, Lon = -51.5800018310547, Country = "Greenland", Name = "Godthab" }, - new WorldCity() { Cap = false, Pop = 0.296, Lat = 44.6300010681152, Lon = -63.5800018310547, Country = "Canada", Name = "Halifax" }, - new WorldCity() { Cap = false, Pop = 0.007, Lat = 70.3913269042969, Lon = 23.9063415527344, Country = "Norway", Name = "Hammerfest" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 67.3499984741211, Lon = 86.5500030517578, Country = "Russia", Name = "Igarka" }, - new WorldCity() { Cap = false, Pop = 0.019, Lat = 27.2000007629395, Lon = 2.52999997138977, Country = "Algeria", Name = "In Salah" }, - new WorldCity() { Cap = false, Pop = 0.003, Lat = 68.2699966430664, Lon = -133.669998168945, Country = "Canada", Name = "Inuvik" }, - new WorldCity() { Cap = false, Pop = 0.050, Lat = -4.94999980926514, Lon = 30, Country = "Tanzania", Name = "Kigoma" }, - new WorldCity() { Cap = false, Pop = 0.069, Lat = 61.1500015258789, Lon = 47, Country = "Russia", Name = "Kotlas" }, - new WorldCity() { Cap = false, Pop = 0.094, Lat = 27, Lon = -13.1800003051758, Country = "W Sahara", Name = "Laayoune" }, - new WorldCity() { Cap = false, Pop = 0.217, Lat = 1.420086145401, Lon = 124.884239196777, Country = "Indonesia", Name = "Manado" }, - new WorldCity() { Cap = false, Pop = 0.306, Lat = 12.9499998092651, Lon = 75.1608810424805, Country = "India", Name = "Mangalore" }, - new WorldCity() { Cap = false, Pop = 0.535, Lat = 31.1499996185303, Lon = -8, Country = "Morocco", Name = "Marrakech" }, - new WorldCity() { Cap = true, Pop = 0.038, Lat = -26.3033809661865, Lon = 31.1912975311279, Country = "Swaziland", Name = "Mbabne" }, - new WorldCity() { Cap = false, Pop = 0.449, Lat = 32.8827476501465, Lon = 129.857467651367, Country = "Japan", Name = "Nagasaki" }, - new WorldCity() { Cap = false, Pop = 0.510, Lat = -5.78000020980835, Lon = -35.25, Country = "Brazil", Name = "Natal" }, - new WorldCity() { Cap = false, Pop = 0.033, Lat = -41.2999992370605, Lon = 173.270004272461, Country = "New Zealand", Name = "Nelson" }, - new WorldCity() { Cap = false, Pop = 0.004, Lat = 64.5862808227539, Lon = -165.270004272461, Country = "US", Name = "Nome" }, - new WorldCity() { Cap = false, Pop = 0.174, Lat = 69.3300018310547, Lon = 88.0999984741211, Country = "Russia", Name = "Noril`sk" }, - new WorldCity() { Cap = false, Pop = 0.022, Lat = 20.8999996185303, Lon = -16.825647354126, Country = "Mauritania", Name = "Nouadnibou" }, - new WorldCity() { Cap = false, Pop = 0.600, Lat = 53.7000007629395, Lon = 87.1699981689453, Country = "Russia", Name = "Novokuznetsk" }, - new WorldCity() { Cap = false, Pop = 0.097, Lat = 46.9199981689453, Lon = -122.879997253418, Country = "US", Name = "Olympia" }, - new WorldCity() { Cap = false, Pop = 0.297, Lat = -0.917578816413879, Lon = 100.475059509277, Country = "Indonesia", Name = "Padang" }, - new WorldCity() { Cap = false, Pop = 0.787, Lat = -3, Lon = 104.830001831055, Country = "Indonesia", Name = "Palembang" }, - new WorldCity() { Cap = false, Pop = 0.155, Lat = 38.1412391662598, Lon = 21.8831691741943, Country = "Greece", Name = "Patras" }, - new WorldCity() { Cap = false, Pop = 0.269, Lat = 53.2000007629395, Lon = 158.720001220703, Country = "Russia", Name = "Petropavloski-Kamchatskiy" }, - new WorldCity() { Cap = true, Pop = 0.083, Lat = 42.5, Lon = 19.3999996185303, Country = "Montenegro", Name = "Podgorica" }, - new WorldCity() { Cap = false, Pop = 0.294, Lat = -4.63870811462402, Lon = 12.0580930709839, Country = "Congo", Name = "Pointe Noire" }, - new WorldCity() { Cap = false, Pop = 0.124, Lat = -0.819999992847443, Lon = 9.15334415435791, Country = "Gabon", Name = "Port Gentil" }, - new WorldCity() { Cap = false, Pop = 0.016, Lat = 54.420280456543, Lon = -130.048080444336, Country = "Canada", Name = "Prince Rupert" }, - new WorldCity() { Cap = false, Pop = 0.121, Lat = 45.338134765625, Lon = -65.6499481201172, Country = "Canada", Name = "Saint John" }, - new WorldCity() { Cap = false, Pop = 0.091, Lat = 15.9512100219727, Lon = -16.2978382110596, Country = "Senegal", Name = "Saint Louis" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 66.5699996948242, Lon = 66.5800018310547, Country = "Russia", Name = "Salekhard" }, - new WorldCity() { Cap = false, Pop = 0.241, Lat = 41.3199996948242, Lon = 36.3699989318848, Country = "Turkey", Name = "Samsun" }, - new WorldCity() { Cap = false, Pop = 0.600, Lat = -2.5, Lon = -44.4300575256348, Country = "Brazil", Name = "Sao Luis" }, - new WorldCity() { Cap = true, Pop = 0.341, Lat = 43.8699989318848, Lon = 18.4300003051758, Country = "Bosnia/Herz", Name = "Sarajevo" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 70.5285720825195, Lon = -22.9963226318359, Country = "Greenland", Name = "Scoresbyund" }, - new WorldCity() { Cap = false, Pop = 0.029, Lat = 50.2825469970703, Lon = -66.4025421142578, Country = "Canada", Name = "Sept-Iles" }, - new WorldCity() { Cap = false, Pop = 0.003, Lat = 60.1199989318848, Lon = -149.449996948242, Country = "US", Name = "Seward" }, - new WorldCity() { Cap = true, Pop = 0.445, Lat = 42, Lon = 21.5300006866455, Country = "Macedonia", Name = "Skopje" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 22.8299999237061, Lon = 5.55000019073486, Country = "Algeria", Name = "Tamanrasset" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 77.6699981689453, Lon = -69, Country = "Greenland", Name = "Thule" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 71.6999969482422, Lon = 128.75, Country = "Russia", Name = "Tiksi" }, - new WorldCity() { Cap = false, Pop = 0.055, Lat = -23.2901554107666, Lon = 44.0190925598145, Country = "Madagascar", Name = "Toliara" }, - new WorldCity() { Cap = false, Pop = 0.354, Lat = -7.92999982833862, Lon = -79, Country = "Peru", Name = "Trujillo" }, - new WorldCity() { Cap = false, Pop = 0.604, Lat = 17.75, Lon = 83.3300018310547, Country = "India", Name = "Vishakhapatnam" }, - new WorldCity() { Cap = false, Pop = 0.116, Lat = 67.8000030517578, Lon = 64.3300018310547, Country = "Russia", Name = "Vorkuta" }, - new WorldCity() { Cap = false, Pop = 0.230, Lat = 31.9699993133545, Lon = 54.4500007629395, Country = "Iran", Name = "Yazd" }, - new WorldCity() { Cap = false, Pop = 0.282, Lat = 29.6000003814697, Lon = 60.8300018310547, Country = "Iran", Name = "Zahedan" }, - new WorldCity() { Cap = false, Pop = 0.318, Lat = 12.861159324646, Lon = 45.1800003051758, Country = "Yemen", Name = "Aden" }, - new WorldCity() { Cap = true, Pop = 1.500, Lat = 9.02999973297119, Lon = 38.7000007629395, Country = "Ethiopia", Name = "Adis Abeba" }, - new WorldCity() { Cap = true, Pop = 1.375, Lat = 29.1949901580811, Lon = 48.0027770996094, Country = "Kuwait", Name = "Al Kuwayt" }, - new WorldCity() { Cap = true, Pop = 0.663, Lat = -18.8700008392334, Lon = 47.5, Country = "Madagascar", Name = "Antananarivo" }, - new WorldCity() { Cap = true, Pop = 1.250, Lat = 24.6499996185303, Lon = 46.7700004577637, Country = "Saudi Arabia", Name = "Ar Riyad" }, - new WorldCity() { Cap = true, Pop = 0.275, Lat = 15.3299999237061, Lon = 38.9700012207031, Country = "Eritrea", Name = "Asmara" }, - new WorldCity() { Cap = true, Pop = 0.700, Lat = -25.2199993133545, Lon = -57.6699981689453, Country = "Paraguay", Name = "Asuncion" }, - new WorldCity() { Cap = true, Pop = 3.027, Lat = 38.1216011047363, Lon = 23.6548633575439, Country = "Greece", Name = "Athens" }, - new WorldCity() { Cap = false, Pop = 1.120, Lat = 40.6500015258789, Lon = 109.980003356934, Country = "China", Name = "Baotou" }, - new WorldCity() { Cap = false, Pop = 4.040, Lat = 41.5299987792969, Lon = 2.17000007629395, Country = "Spain", Name = "Barcelona" }, - new WorldCity() { Cap = false, Pop = 1.140, Lat = 11.0142946243286, Lon = -74.6800003051758, Country = "Colombia", Name = "Barranquilla" }, - new WorldCity() { Cap = false, Pop = 0.292, Lat = -19.7692832946777, Lon = 35.0231704711914, Country = "Mozambique", Name = "Beira" }, - new WorldCity() { Cap = true, Pop = 1.675, Lat = 33.7799987792969, Lon = 35.6579437255859, Country = "Lebanon", Name = "Beirut" }, - new WorldCity() { Cap = true, Pop = 0.005, Lat = 17.1200008392334, Lon = -88.8000030517578, Country = "Belize", Name = "Belmopan" }, - new WorldCity() { Cap = false, Pop = 0.239, Lat = 60.3499984741211, Lon = 5.49067831039429, Country = "Norway", Name = "Bergen" }, - new WorldCity() { Cap = true, Pop = 0.109, Lat = 11.9109897613525, Lon = -15.6499996185303, Country = "GuineaBissau", Name = "Bissau" }, - new WorldCity() { Cap = false, Pop = 1.790, Lat = -33.8040084838867, Lon = 18.6904315948486, Country = "South Africa", Name = "cape Town" }, - new WorldCity() { Cap = false, Pop = 0.625, Lat = 51.5, Lon = -3.15000009536743, Country = "UK", Name = "Cardiff" }, - new WorldCity() { Cap = false, Pop = 2.475, Lat = 33.5444107055664, Lon = -7.53409194946289, Country = "Morocco", Name = "Casablanca" }, - new WorldCity() { Cap = true, Pop = 0.038, Lat = 4.92000007629395, Lon = -52.4000015258789, Country = "Fr Guiana", Name = "Cayenne" }, - new WorldCity() { Cap = false, Pop = 1.392, Lat = 22.4799995422363, Lon = 91.8327941894531, Country = "Bangladesh", Name = "Chittagong" }, - new WorldCity() { Cap = true, Pop = 2.050, Lat = 7.01999998092651, Lon = 80.0883331298828, Country = "Sri Lanka", Name = "Colombo" }, - new WorldCity() { Cap = true, Pop = 0.800, Lat = 9.52000045776367, Lon = -12.8000001907349, Country = "Guinea", Name = "Conakry" }, - new WorldCity() { Cap = true, Pop = 1.428, Lat = 14.6300001144409, Lon = -16.8480949401855, Country = "Senegal", Name = "Dakar" }, - new WorldCity() { Cap = false, Pop = 1.405, Lat = 39.75, Lon = -105.069999694824, Country = "US", Name = "Denver" }, - new WorldCity() { Cap = true, Pop = 0.595, Lat = 38.6300010681152, Lon = 68.9000015258789, Country = "Tajikistan", Name = "Dushanfe" }, - new WorldCity() { Cap = false, Pop = 0.785, Lat = 53.5699996948242, Lon = -113.269996643066, Country = "Canada", Name = "Edmonton" }, - new WorldCity() { Cap = false, Pop = 1.871, Lat = 30.4699993133545, Lon = 30.8500003814697, Country = "Egypt", Name = "Giza" }, - new WorldCity() { Cap = true, Pop = 0.525, Lat = 8.38277053833008, Lon = -12.9102764129639, Country = "Sierra Leone", Name = "Freetown" }, - new WorldCity() { Cap = true, Pop = 0.616, Lat = 42.8800010681152, Lon = 74.7699966430664, Country = "Kyrgyzstan", Name = "Frunze" }, - new WorldCity() { Cap = false, Pop = 0.805, Lat = 44.4550895690918, Lon = 8.92229557037354, Country = "Italy", Name = "Genova" }, - new WorldCity() { Cap = true, Pop = 0.188, Lat = 6.76999998092651, Lon = -58.1699981689453, Country = "Guyana", Name = "Georgetown" }, - new WorldCity() { Cap = false, Pop = 0.711, Lat = 57.75, Lon = 12, Country = "Sweden", Name = "Goteborg" }, - new WorldCity() { Cap = true, Pop = 0.890, Lat = -17.8299999237061, Lon = 31.0200004577637, Country = "Zimbabwe", Name = "Harare" }, - new WorldCity() { Cap = true, Pop = 2.125, Lat = 23.0489521026611, Lon = -82.4164505004883, Country = "Cuba", Name = "Havana" }, - new WorldCity() { Cap = false, Pop = 1.300, Lat = 21.6200008392334, Lon = 39.3733062744141, Country = "Saudi Arabia", Name = "Jiddah" }, - new WorldCity() { Cap = true, Pop = 0.460, Lat = 0.319999992847443, Lon = 32.5800018310547, Country = "Uganda", Name = "Kampala" }, - new WorldCity() { Cap = false, Pop = 0.538, Lat = 11.9200000762939, Lon = 8.52000045776367, Country = "Nigeria", Name = "Kano" }, - new WorldCity() { Cap = false, Pop = 1.845, Lat = 22.6734161376953, Lon = 120.341484069824, Country = "Taiwan", Name = "Kao-Hsiung" }, - new WorldCity() { Cap = false, Pop = 5.300, Lat = 24.8500003814697, Lon = 67.0299987792969, Country = "Pakistan", Name = "Karachi" }, - new WorldCity() { Cap = false, Pop = 0.601, Lat = 48.5299987792969, Lon = 135.070007324219, Country = "Russia", Name = "Khabarovsk" }, - new WorldCity() { Cap = true, Pop = 0.924, Lat = 15.5500001907349, Lon = 32.5299987792969, Country = "Sudan", Name = "Khartoum" }, - new WorldCity() { Cap = true, Pop = 0.665, Lat = 47, Lon = 28.8299999237061, Country = "Moldova", Name = "Kishinev" }, - new WorldCity() { Cap = true, Pop = 1.685, Lat = 55.7200012207031, Lon = 12.5500001907349, Country = "Denmark", Name = "Kobenhavn" }, - new WorldCity() { Cap = true, Pop = 3.800, Lat = 6.44999980926514, Lon = 3.29999995231628, Country = "Nigeria", Name = "Lagos" }, - new WorldCity() { Cap = false, Pop = 0.255, Lat = 49.3240203857422, Lon = 0.219999998807907, Country = "France", Name = "Le Havre" }, - new WorldCity() { Cap = true, Pop = 0.236, Lat = -0.504144549369812, Lon = 9.49045658111572, Country = "Gabon", Name = "Libreville" }, - new WorldCity() { Cap = true, Pop = 0.234, Lat = -13.9200000762939, Lon = 33.8199996948242, Country = "Malawi", Name = "Lilongwe" }, - new WorldCity() { Cap = true, Pop = 4.344, Lat = -12.0679960250854, Lon = -76.8235549926758, Country = "Peru", Name = "Lima" }, - new WorldCity() { Cap = true, Pop = 2.250, Lat = 38.7299995422363, Lon = -9.13000011444092, Country = "Portugal", Name = "Lisboa" }, - new WorldCity() { Cap = false, Pop = 1.525, Lat = 53.4226875305176, Lon = -2.76683640480042, Country = "UK", Name = "Liverpool" }, - new WorldCity() { Cap = true, Pop = 0.400, Lat = 6.28000020980835, Lon = 1.35000002384186, Country = "Togo", Name = "Lome" }, - new WorldCity() { Cap = false, Pop = 9.764, Lat = 34, Lon = -118.25, Country = "US", Name = "Los Angeles" }, - new WorldCity() { Cap = true, Pop = 1.460, Lat = -9, Lon = 13.4617786407471, Country = "Angola", Name = "Luanda" }, - new WorldCity() { Cap = false, Pop = 0.543, Lat = -11.6800003051758, Lon = 27.5499992370605, Country = "Zaire", Name = "Lumumbashi" }, - new WorldCity() { Cap = true, Pop = 0.536, Lat = -15.4300003051758, Lon = 28.1700000762939, Country = "Zambia", Name = "Lusaka" }, - new WorldCity() { Cap = true, Pop = 0.031, Lat = 3.64468479156494, Lon = 8.81999969482422, Country = "Eq Guinea", Name = "Malabo" }, - new WorldCity() { Cap = true, Pop = 5.474, Lat = 14.5500001907349, Lon = 121.173408508301, Country = "Philippines", Name = "Manila" }, - new WorldCity() { Cap = false, Pop = 1.225, Lat = 43.2999992370605, Lon = 5.38000011444092, Country = "France", Name = "Marseille" }, - new WorldCity() { Cap = true, Pop = 0.050, Lat = 23.5166397094727, Lon = 58.6274795532227, Country = "Oman", Name = "Masqat" }, - new WorldCity() { Cap = false, Pop = 0.200, Lat = 23.3615112304688, Lon = -106.269996643066, Country = "Mexico", Name = "Mazatlan" }, - new WorldCity() { Cap = false, Pop = 0.442, Lat = -4.01999998092651, Lon = 39.6699981689453, Country = "Kenya", Name = "Mombasa" }, - new WorldCity() { Cap = true, Pop = 0.465, Lat = 6.51743936538696, Lon = -10.7700004577637, Country = "Liberia", Name = "Monrovia" }, - new WorldCity() { Cap = true, Pop = 1.550, Lat = -34.9199981689453, Lon = -56.1699981689453, Country = "Uruguay", Name = "Montevideo" }, - new WorldCity() { Cap = true, Pop = 13.100, Lat = 55.75, Lon = 37.7000007629395, Country = "Russia", Name = "Moscow" }, - new WorldCity() { Cap = true, Pop = 1.286, Lat = -1.16999995708466, Lon = 36.8300018310547, Country = "Kenya", Name = "Nairobi" }, - new WorldCity() { Cap = false, Pop = 2.875, Lat = 40.8300018310547, Lon = 14.2700004577637, Country = "Italy", Name = "Napoli" }, - new WorldCity() { Cap = false, Pop = 16.472, Lat = 40.75, Lon = -74.0999984741211, Country = "US", Name = "New York" }, - new WorldCity() { Cap = false, Pop = 0.329, Lat = 40.7200012207031, Lon = -74.1999969482422, Country = "US", Name = "Newark" }, - new WorldCity() { Cap = true, Pop = 0.285, Lat = 18.0300006866455, Lon = -15.7828607559204, Country = "Mauritania", Name = "Nouakchott" }, - new WorldCity() { Cap = false, Pop = 0.138, Lat = 55.574535369873, Lon = 9.90299892425537, Country = "Denmark", Name = "Odense" }, - new WorldCity() { Cap = false, Pop = 0.526, Lat = 15.6199998855591, Lon = 32.4799995422363, Country = "Sudan", Name = "Omdurman" }, - new WorldCity() { Cap = false, Pop = 0.629, Lat = 35.75, Lon = -0.519999980926514, Country = "Algeria", Name = "Oran" }, - new WorldCity() { Cap = true, Pop = 0.720, Lat = 59.9300003051758, Lon = 10.7200002670288, Country = "Norway", Name = "Oslo" }, - new WorldCity() { Cap = true, Pop = 0.442, Lat = 12.4799995422363, Lon = -1.66999995708466, Country = "Burkina Faso", Name = "Ouagadouou" }, - new WorldCity() { Cap = false, Pop = 0.724, Lat = 38.1300010681152, Lon = 13.3999996185303, Country = "Italy", Name = "Palermo" }, - new WorldCity() { Cap = true, Pop = 0.625, Lat = 8.94999980926514, Lon = -79.4000015258789, Country = "Panama", Name = "Panama" }, - new WorldCity() { Cap = true, Pop = 0.241, Lat = 5.92999982833862, Lon = -55.2299995422363, Country = "Suriname", Name = "Paramaribo" }, - new WorldCity() { Cap = false, Pop = 0.994, Lat = -31.9758644104004, Lon = 115.923370361328, Country = "Australia", Name = "Perth" }, - new WorldCity() { Cap = true, Pop = 0.152, Lat = -9.55000019073486, Lon = 147.414520263672, Country = "Papua N Guin", Name = "Port Moresby" }, - new WorldCity() { Cap = false, Pop = 1.225, Lat = 41.1500015258789, Lon = -8.48794841766357, Country = "Portugal", Name = "Porto" }, - new WorldCity() { Cap = false, Pop = 0.203, Lat = 31.6000003814697, Lon = 65.5, Country = "Afghanistan", Name = "Qandahar" }, - new WorldCity() { Cap = false, Pop = 1.326, Lat = 14.6499996185303, Lon = 121.029998779297, Country = "Philippines", Name = "Quezon City" }, - new WorldCity() { Cap = true, Pop = 0.980, Lat = 33.9201965332031, Lon = -6.74804067611694, Country = "Morocco", Name = "Rabat" }, - new WorldCity() { Cap = true, Pop = 0.138, Lat = 64.3132629394531, Lon = -21.336820602417, Country = "Iceland", Name = "Reykjavik" }, - new WorldCity() { Cap = true, Pop = 1.005, Lat = 56.8800010681152, Lon = 24.0499992370605, Country = "latvia", Name = "Riga" }, - new WorldCity() { Cap = true, Pop = 3.175, Lat = 41.8800010681152, Lon = 12.5200004577637, Country = "Italy", Name = "Roma" }, - new WorldCity() { Cap = false, Pop = 2.050, Lat = -12.6002569198608, Lon = -38.4799995422363, Country = "Brazil", Name = "Salvador" }, - new WorldCity() { Cap = false, Pop = 0.848, Lat = 29.6299991607666, Lon = 52.5699996948242, Country = "Iran", Name = "Shiraz" }, - new WorldCity() { Cap = true, Pop = 1.450, Lat = 59.2446327209473, Lon = 18.0842685699463, Country = "Sweden", Name = "Stockholm" }, - new WorldCity() { Cap = false, Pop = 2.028, Lat = -7.40000009536743, Lon = 112.684371948242, Country = "Indonesia", Name = "Surabaja" }, - new WorldCity() { Cap = false, Pop = 0.657, Lat = 23.1700000762939, Lon = 120.230003356934, Country = "Taiwan", Name = "T`ai-nan" }, - new WorldCity() { Cap = false, Pop = 0.595, Lat = 27.9973583221436, Lon = -82.5930252075195, Country = "US", Name = "Tampa" }, - new WorldCity() { Cap = true, Pop = 1.670, Lat = 31.9171981811523, Lon = 34.8568344116211, Country = "Israel", Name = "Tel Aviv-Yafo" }, - new WorldCity() { Cap = false, Pop = 0.706, Lat = 40.6300010681152, Lon = 22.7999992370605, Country = "Greece", Name = "Thessaloniki" }, - new WorldCity() { Cap = true, Pop = 2.325, Lat = 41.247932434082, Lon = 69.3498687744141, Country = "Uzbekistan", Name = "Toshkent" }, - new WorldCity() { Cap = false, Pop = 0.198, Lat = 34.3437576293945, Lon = 36.0070686340332, Country = "Lebanon", Name = "Tripoli" }, - new WorldCity() { Cap = false, Pop = 0.675, Lat = -32.9000015258789, Lon = -71.2993392944336, Country = "Chile", Name = "Valparaiso" }, - new WorldCity() { Cap = false, Pop = 1.381, Lat = 49.274299621582, Lon = -122.963066101074, Country = "Canada", Name = "Vancouver" }, - new WorldCity() { Cap = false, Pop = 0.648, Lat = 43.1300010681152, Lon = 131.960433959961, Country = "Russia", Name = "Vladivostok" }, - new WorldCity() { Cap = false, Pop = 0.017, Lat = -23.1018676757813, Lon = 14.6171045303345, Country = "Namibia", Name = "Walvis Bay" }, - new WorldCity() { Cap = true, Pop = 0.115, Lat = -22.5699996948242, Lon = 17.1000003814697, Country = "Namibia", Name = "Windhoek" }, - new WorldCity() { Cap = true, Pop = 0.350, Lat = -41.2103958129883, Lon = 175.144943237305, Country = "New Zealand", Name = "Wellington" }, - new WorldCity() { Cap = false, Pop = 2.077, Lat = 47.5885543823242, Lon = -122.316650390625, Country = "US", Name = "Seattle" }, - new WorldCity() { Cap = false, Pop = 2.099, Lat = 32.7614593505859, Lon = -117.125495910645, Country = "US", Name = "San Diego" }, - new WorldCity() { Cap = false, Pop = 0.110, Lat = -20.2600002288818, Lon = -69.9132614135742, Country = "Chile", Name = "Iquique" }, - new WorldCity() { Cap = true, Pop = 0.243, Lat = 24.2360076904297, Lon = 54.619270324707, Country = "Untd Arab Em", Name = "Abu Zaby" }, - new WorldCity() { Cap = false, Pop = 0.199, Lat = 7.57660102844238, Lon = -72.0054550170898, Country = "Venezuela", Name = "San Cristobal" }, - new WorldCity() { Cap = false, Pop = 0.509, Lat = 46.25, Lon = 48, Country = "Russia", Name = "Astrakhan" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 30.1386032104492, Lon = 9.81835079193115, Country = "Libya", Name = "Ghadamis" }, - new WorldCity() { Cap = false, Pop = 0.077, Lat = -31.3051528930664, Lon = -57.7087745666504, Country = "Uruguay", Name = "Salto" }, - new WorldCity() { Cap = false, Pop = 0.012, Lat = 62.5206146240234, Lon = -114.061363220215, Country = "Canada", Name = "Yellowknife" }, - new WorldCity() { Cap = false, Pop = 0.043, Lat = 19.7148151397705, Lon = -155.067291259766, Country = "US", Name = "Hilo" }, - new WorldCity() { Cap = false, Pop = 0.763, Lat = 21.3211765289307, Lon = -157.806182861328, Country = "US", Name = "Honolulu" }, - new WorldCity() { Cap = false, Pop = 0.184, Lat = 61.188648223877, Lon = -149.172973632813, Country = "US", Name = "Anchorage" }, - new WorldCity() { Cap = false, Pop = 0.040, Lat = 64.8387451171875, Lon = -147.651184082031, Country = "US", Name = "Fairbanks" }, - new WorldCity() { Cap = false, Pop = 0.020, Lat = 58.3910064697266, Lon = -134.132476806641, Country = "US", Name = "Juneau" }, - new WorldCity() { Cap = false, Pop = 0.629, Lat = 37.30810546875, Lon = -121.847457885742, Country = "US", Name = "San Jose" }, - new WorldCity() { Cap = false, Pop = 0.386, Lat = 28.5581398010254, Lon = -105.966636657715, Country = "Mexico", Name = "Chihuaha" }, - new WorldCity() { Cap = false, Pop = 0.385, Lat = 19.0096759796143, Lon = -96.0840606689453, Country = "Mexico", Name = "Veracruz" }, - new WorldCity() { Cap = false, Pop = 0.154, Lat = 16.9209060668945, Lon = -96.9420394897461, Country = "Mexico", Name = "Oaxaca" }, - new WorldCity() { Cap = false, Pop = 0.000, Lat = 78.1999969482422, Lon = 15.6599998474121, Country = "Norway", Name = "longyearbyen" }, - new WorldCity() { Cap = true, Pop = 5.396, Lat = 22.4284057617188, Lon = 114.145706176758, Country = "UK", Name = "Hong Kong" }, - new WorldCity() { Cap = false, Pop = 0.775, Lat = 22.3798961639404, Lon = 114.230117797852, Country = "UK", Name = "Kowloon" }, - new WorldCity() { Cap = false, Pop = 3.025, Lat = 1.22979354858398, Lon = 104.177116394043, Country = "Singapore", Name = "Singapore" }, - }; - - return cities; +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="WorldLocations" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "series": [ + { + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "$dataSourceRef": "+doc:WorldLocations", + "shapeMemberPath": "Points" + } + ] } } +} ``` - - ## API リファレンス diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx index 667e76f4ff..2d50ff53f6 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx @@ -9,7 +9,6 @@ llms: description: "インフラジスティックスの {Platform} JavaScript マップ データ ユーティリティを使用して、地理的データを生成します。" --- import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; # {Platform} ワールド ユーティリティ @@ -18,414 +17,26 @@ import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBloc ## コード スニペット - - -```ts -export default class WorldUtils { - - // calculate geo-paths between two locations using great circle formula - public static calcPaths(origin: any, dest: any): any[] { - let interval = 200; - let paths: any[] = [[]]; - let pathID = 0; - let distance = this.calcDistance(origin, dest); - if (distance <= interval) { - paths[pathID].push({ x: origin.lon, y: origin.lat }); - paths[pathID].push({ x: dest.lon, y: dest.lat }); - } else { - let current = origin; - let previous = origin; - - for (let dist = interval; dist <= distance; dist += interval) - { - previous = current - paths[pathID].push({ x: current.lon, y: current.lat }); - - let bearing = this.calcBearing(current, dest); - current = this.calcDestination(current, bearing, interval); - // ensure geo-path wrap around the world through the new date-line - if (previous.lon > 150 && current.lon < -150) { - paths[pathID].push({ x: 180, y: current.lat }); - paths.push([]); - pathID++ - current = { lon: -180, lat: current.lat } - } else if (previous.lon < -150 && current.lon > 150) { - paths[pathID].push({ x: -180, y: current.lat }); - paths.push([]); - pathID++ - current = { lon: 180, lat: current.lat } - } - } - paths[pathID].push({ x: dest.lon, y: dest.lat }); - } - return paths; - } - - // calculate bearing angle between two locations - public static calcBearing(origin: any, dest: any) : number - { - origin = this.toRadianLocation(origin); - dest = this.toRadianLocation(dest); - let range = (dest.lon - origin.lon); - let y = Math.sin(range) * Math.cos(dest.lat); - let x = Math.cos(origin.lat) * Math.sin(dest.lat) - - Math.sin(origin.lat) * Math.cos(dest.lat) * Math.cos(range); - let angle = Math.atan2(y, x); - return this.toDegreesNormalized(angle); - } - - // calculate destination for origin location and travel distance - public static calcDestination(origin: any, bearing: number, distance: number): any { - let radius = 6371.0; - origin = this.toRadianLocation(origin); - bearing = this.toRadians(bearing); - distance = distance / radius; // angular distance in radians - - let lat = Math.asin(Math.sin(origin.lat) * Math.cos(distance) + - Math.cos(origin.lat) * Math.sin(distance) * Math.cos(bearing)); - let x = Math.sin(bearing) * Math.sin(distance) * Math.cos(origin.lat); - let y = Math.cos(distance) - Math.sin(origin.lat) * Math.sin(origin.lat); - let lon = origin.lon + Math.atan2(x, y); - // normalize lon to coordinate between -180º and +180º - lon = (lon + 3 * Math.PI) % (2 * Math.PI) - Math.PI; - - lon = this.toDegrees(lon); - lat = this.toDegrees(lat); - - return { lon: lon, lat: lat }; - } - - // calculate distance between two locations - public static calcDistance(origin: any, dest: any) : number { - origin = this.toRadianLocation(origin); - dest = this.toRadianLocation(dest); - let sinProd = Math.sin(origin.lat) * Math.sin(dest.lat); - let cosProd = Math.cos(origin.lat) * Math.cos(dest.lat); - let lonDelta = (dest.lon - origin.lon); - - let angle = Math.acos(sinProd + cosProd * Math.cos(lonDelta)); - let distance = angle * 6371.0; - return distance; // * 6371.0; // in km - } - - public static toRadianLocation(geoPoint: any) : any { - let x = this.toRadians(geoPoint.lon); - let y = this.toRadians(geoPoint.lat); - return { lon: x, lat: y }; - } - - public static toRadians(degrees: number) : number - { - return degrees * Math.PI / 180; - } - - public static toDegrees(radians: number) : number { - return (radians * 180.0 / Math.PI); - } - - public static toDegreesNormalized(radians: number) : number - { - let degrees = this.toDegrees(radians); - degrees = (degrees + 360) % 360; - return degrees; - } - - // converts latitude coordinate to a string - public static toStringLat(latitude: number) : string { - let str = Math.abs(latitude).toFixed(1) + "°"; - return latitude > 0 ? str + "N" : str + "S"; - } - - // converts longitude coordinate to a string - public static toStringLon(coordinate: number) : string { - let val = Math.abs(coordinate); - let str = val < 100 ? val.toFixed(1) : val.toFixed(0); - return coordinate > 0 ? str + "°E" : str + "°W"; - } - - public static toStringAbbr(value: number) : string { - if (value > 1000000000000) { - return (value / 1000000000000).toFixed(1) + " T" - } else if (value > 1000000000) { - return (value / 1000000000).toFixed(1) + " B" - } else if (value > 1000000) { - return (value / 1000000).toFixed(1) + " M" - } else if (value > 1000) { - return (value / 1000).toFixed(1) + " K" - } - return value.toFixed(0); - } - - public static getLongitude(location: any) : number { - if (location.x) return location.x; - if (location.lon) return location.lon; - if (location.longitude) return location.longitude; - return Number.NaN; - } - - public static getLatitude(location: any) : number { - if (location.y) return location.y; - if (location.lat) return location.lat; - if (location.latitude) return location.latitude; - return Number.NaN; - } - - public static getBounds(locations: any[]) : any { - let minLat = 90; - let maxLat = -90; - let minLon = 180; - let maxLon = -180; - - for (const location of locations) { - const crrLon = this.getLongitude(location); - if (!Number.isNaN(crrLon)) { - minLon = Math.min(minLon, crrLon); - maxLon = Math.max(maxLon, crrLon); - } - - const crrLat = this.getLatitude(location); - if (!Number.isNaN(crrLat)) { - minLat = Math.min(minLat, crrLat); - maxLat = Math.max(maxLat, crrLat); - } - } - - const geoBounds = { - left: minLon, - top: minLat, - width: Math.abs(maxLon - minLon), - height: Math.abs(maxLat - minLat) - }; - return geoBounds; - } -} -``` - - - - - -```razor - public static class WorldUtils - { - public static List> CalcPaths(GeoLocation origin, GeoLocation dest) - { - int interval = 200; - List> paths = new List>() { new List() }; - int pathID = 0; - double distance = WorldUtils.CalcDistance(origin, dest); - - if (distance <= interval) - { - Console.WriteLine("Distance Less Than Equal To Interval!"); - paths[pathID].Add(new Point() { X = dest.Lon, Y = dest.Lat }); - } - else - { - Console.WriteLine("Distance Greater Than Interval!"); - GeoLocation current = origin; - GeoLocation previous = origin; - - for (int dist = interval; dist <= distance; dist += interval) - { - previous = current; - - paths[pathID].Add(new Point() { X = current.Lon, Y = current.Lat }); - - double bearing = WorldUtils.CalcBearing(current, dest); - current = WorldUtils.CalcDestination(current, bearing, interval); - - if (previous.Lon > 150 && current.Lon < -150) - { - paths[pathID].Add(new Point() { X = 180, Y = current.Lat }); - paths.Add(new List()); - pathID++; - current = new GeoLocation() { Lon = -180, Lat = current.Lat }; - } - else if (previous.Lon < -150 && current.Lon > 150) - { - paths[pathID].Add(new Point() { X = -180, Y = current.Lat }); - paths.Add(new List()); - pathID++; - current = new GeoLocation() { Lon = 180, Lat = current.Lat }; - } - } - - paths[pathID].Add(new Point() { X = dest.Lon, Y = dest.Lat }); - - } - - return paths; - - } - - public static double CalcBearing(GeoLocation origin, GeoLocation dest) - { - origin = WorldUtils.ToRadianLocation(origin); - dest = WorldUtils.ToRadianLocation(dest); - - double range = (dest.Lon - origin.Lon); - - double y = Math.Sin(range) * Math.Cos(dest.Lat); - double x = Math.Cos(origin.Lat) * Math.Sin(dest.Lat) - Math.Sin(origin.Lat) * Math.Cos(dest.Lat) * Math.Cos(range); - double angle = Math.Atan2(y, x); - - return WorldUtils.ToDegreesNormalized(angle); - } - - public static GeoLocation CalcDestination(GeoLocation origin, double bearing, double distance) - { - double radius = 6371.0; - - origin = WorldUtils.ToRadianLocation(origin); - bearing = WorldUtils.ToRadians(bearing); - - distance = distance / radius; - - double lat = Math.Asin(Math.Sin(origin.Lat) * Math.Cos(distance) + - Math.Cos(origin.Lat) * Math.Sin(distance) * Math.Cos(bearing)); - double x = Math.Sin(bearing) * Math.Sin(distance) * Math.Cos(origin.Lat); - double y = Math.Cos(distance) - Math.Sin(origin.Lat) * Math.Sin(origin.Lat); - double lon = origin.Lon + Math.Atan2(x, y); - // normalize lon to coordinate between -180º and +180º - lon = (lon + 3 * Math.PI) % (2 * Math.PI) - Math.PI; - - lon = WorldUtils.ToDegrees(lon); - lat = WorldUtils.ToDegrees(lat); - - return new GeoLocation() { Lat = lat, Lon = lon }; - } - - public static double CalcDistance(GeoLocation origin, GeoLocation dest) - { - origin = WorldUtils.ToRadianLocation(origin); - dest = WorldUtils.ToRadianLocation(dest); - - double sinProd = Math.Sin(origin.Lat) * Math.Sin(dest.Lat); - double cosProd = Math.Cos(origin.Lat) * Math.Cos(dest.Lat); - double lonDelta = (dest.Lon - origin.Lon); - - double angle = Math.Acos(sinProd + cosProd * Math.Cos(lonDelta)); - double distance = angle * 6371.0; - return distance; - } - - public static GeoLocation ToRadianLocation(GeoLocation geoPoint) - { - double x = WorldUtils.ToRadians(geoPoint.Lon); - double y = WorldUtils.ToRadians(geoPoint.Lat); - - return new GeoLocation() { Lon = x, Lat = y }; - } - - public static double ToRadians(double degrees) - { - return degrees * Math.PI / 180; - } - - public static double ToDegrees(double radians) - { - return (radians * 180.0 / Math.PI); - } - - public static double ToDegreesNormalized(double radians) - { - double degrees = WorldUtils.ToDegrees(radians); - degrees = (degrees + 360) % 360; - return degrees; - } - - public static string ToStringLat(double latitude) - { - string str = Math.Abs(latitude) + "°"; - return latitude > 0 ? str + "N" : str + "S"; - } - - public static string ToStringLon(double coordinate) - { - double val = Math.Abs(coordinate); - string str = val.ToString(); - return coordinate > 0 ? str + "°E" : str + "°W"; - } - - public static string ToStringAbbr(double value) - { - if (value > 1000000000000) - { - return (value / 1000000000000).ToString("N1") + " T"; - } - else if (value > 1000000000) - { - return (value / 1000000000).ToString("N1") + " B"; - } - else if (value > 1000000) - { - return (value / 1000000).ToString("N1") + " M"; - } - else if (value > 1000) - { - return (value / 1000).ToString("N1") + " K"; - } - return value.ToString("N0"); - } - - public static double GetLongitude(GeoLocation location) - { - return location.Lon; - } - - public static double GetLatitude(GeoLocation location) - { - return location.Lat; - } - - public static Rect GetBounds(List locations) - { - double minLat = 90; - double maxLat = -90; - double minLon = 180; - double maxLon = -180; - - foreach (GeoLocation gl in locations) - { - double curLon = WorldUtils.GetLongitude(gl); - double curLat = WorldUtils.GetLatitude(gl); - - if (!double.IsNaN(curLon)) +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="WorldUtils" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "GeographicMap", + "name": "geoMap", + "series": [ { - minLon = Math.Min(minLon, curLon); - maxLon = Math.Max(maxLon, curLon); + "type": "GeographicPolylineSeries", + "name": "lineSeries", + "dataSourceRef": "WorldFlights", + "$dataSourceRef": "+doc:WorldUtils", + "shapeMemberPath": "Points" } - - if (!double.IsNaN(curLat)) - { - minLat = Math.Min(minLat, curLat); - maxLat = Math.Min(maxLat, curLat); - } - } - - Rect geoBounds = new Rect(minLon, minLat, Math.Abs(maxLon - minLon), Math.Abs(maxLat - minLat)); - return geoBounds; - } - - public static List GetNightShapes() - { - List line = new List(); - - for (int lon = -180; lon <= 180; lon += 1) - { - double x = lon; - double y = 75 * Math.Cos(lon * Math.PI / 180); - line.Add(new Point(x, y)); - } - - return line; + ] } } +} ``` - - ## API リファレンス From 7aa79aeaca56b50a5f8c8dd6e5e96c6e10cd598c Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 09:26:30 -0400 Subject: [PATCH 056/155] Make the emission check honest, and fix what it then found MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The check asked the emitter for a composed channel as though "a...b,c" were one token. No such channel exists, so nothing came out and nothing was checked: every codeBehind fence and every Component Modules fence had been passing vacuously. It now emits each region the way the generator composes them, mirrors the generator's rule about marking a definition that marks parts of itself, and understands channel="auto". What that turned up: - The multiple sources Summary asked for code="allCode" — the attribute is channel — so it emitted markup and the page showed the same markup twice. Its imports are empty on Blazor and the XAML platforms, and there is no code behind to show on the XAML platforms at all; both fences are scoped. - The local data page's data block referenced a definition that marks nothing, so it was empty on every platform. It states its own marker. Also collapses the data grid module sections, which were the last hand written ones outside the web only pages, and the remote data source, which the library already holds. --print --platform= prints what each fence emits, which is the only way to read the output of a page gated away from a platform. --- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 50 +++++++++ docs/xplat/scripts/check-snippet-emission.mjs | 73 +++++++++++-- .../geo-map-binding-multiple-sources.mdx | 4 +- .../components/grids/data-grid/local-data.mdx | 13 ++- .../components/grids/data-grid/overview.mdx | 100 ++++++------------ .../grids/data-grid/remote-data.mdx | 75 +++++-------- .../geo-map-binding-multiple-sources.mdx | 4 +- .../components/grids/data-grid/local-data.mdx | 52 ++------- 8 files changed, 204 insertions(+), 167 deletions(-) diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md index fd0fc7e7e9..4934b8b929 100644 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md @@ -1339,3 +1339,53 @@ where a renderer constructs itself. On the portable platforms a renderer is buil an adapter, and the adapter is declared by the assembly hosting the controls — so there the caller passes the renderer in. The assembly filter is per build for the same reason: the data visualization assembly is not called the same thing on every platform. + +## What the checks found once they were made honest + +Three of the tools were reporting success on work they were not doing, and fixing them turned up real +defects rather than tool noise. + +- **A composed channel was never emitted.** `check-snippet-emission.mjs` asked the emitter for + `"bindingImports...bindingInit,bindingCode"` as though it were one channel token. No such channel + exists, so nothing came out and nothing was checked — every `codeBehind` and every Component Modules + fence had passed vacuously. It now emits each region the way the generator composes them, and fails + only when every region of a fence is empty. +- **The checker marked definitions the generator would not.** It set `$type` on the root + unconditionally, so a definition that marks parts of itself was checked as though it wanted the + whole element. It now mirrors the generator's rule. +- **`channel="auto"` is not a region**, and asking for it as one produced nothing. It emits with the + definition's own markers instead, which is what the generator does. + +The defects that surfaced: + +- `geo-map-binding-multiple-sources`'s Summary asked for `code="allCode"` — the attribute is + `channel`, so that fence silently emitted markup and the page showed the same markup twice. Its + imports fence is empty on Blazor and the XAML platforms, and `allCode` is empty on the XAML + platforms, which declare all of it; both are scoped now. +- `grids/data-grid/local-data`'s data block was a `ref=` fence asking for `data`, and the definition + it referenced marks nothing — so the block was empty on every platform. It states its own marker. + +`--print --platform=` on the checker prints what each fence emits, which is the only way to read +the output of a page gated away from a platform. + +## Uno + +`--platform=Uno` failed on the first fence of the first page: there is no `editor-templates/Uno`, and +emission needs a folder template. Uno emits the same XAML dialect as WinUI against the same +Microsoft.UI.Xaml types and differs only in how a project is assembled, which no snippet shows — so a +platform with no template of its own borrows from the platform whose output it shares. Uno now +generates both locales, with `XamDataGrid` and the same prefixes WinUI uses. + +## The library project emitter + +Injecting file access into `CodeGenerationFolderTemplate` left its `FileAccess` unset in that harness, +and every provider's `GetEmitterTemplate` went straight to `LoadTemplate` — a null reference on the +first handler item, which is where the build stopped. It defaults to System.IO where System.IO exists, +as `CodeGenerationLibrary.FromFolder` does; a host without it is the case with something to declare. +Verified by running the emitter over all eight platforms: exit 0, no exceptions. + +Still open there, and logged by the run rather than silent: a supporting item is not emitted into that +project, so the four shape styling handlers reference types it does not write. The harness writes one +file per item through a per-platform scaffold, and a supporting item needs its declarations beside the +component — which needs a provider method and an import per platform. The pipelines do not compile +that project today, so nothing is red. diff --git a/docs/xplat/scripts/check-snippet-emission.mjs b/docs/xplat/scripts/check-snippet-emission.mjs index a6316bc4d4..a547b47937 100644 --- a/docs/xplat/scripts/check-snippet-emission.mjs +++ b/docs/xplat/scripts/check-snippet-emission.mjs @@ -31,6 +31,10 @@ if (!EXAMPLES) { const args = process.argv.slice(2); const LANG = (args.find(a => a.startsWith('--lang=')) || '--lang=en').slice(7); const ONLY = args.find(a => !a.startsWith('--')); +// Printing is how a page gated away from a platform gets reviewed at all: its fences are emitted +// here and nowhere else, so without this the output can only be proved non-empty, not read. +const PRINT = args.some(a => a === '--print'); +const PRINT_PLATFORM = (args.find(a => a.startsWith('--platform=')) || '').slice(11); const SNIPPET_API = process.env.IG_SNIPPET_API ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'; @@ -81,6 +85,28 @@ const walk = (dir) => { }; walk(path.join(ROOT, 'src', 'content', LANG, 'components')); +/** The regions a fence's channel names, presets expanded and delimiters dropped. */ +function regionsOf(channel) { + const presets = { codeBehind: 'bindingImports...bindingInit,bindingCode' }; + const expanded = presets[channel.trim()] ?? channel; + return expanded.split(/(?:\.\.\.|,)/).map(one => one.trim()).filter(Boolean); +} + +/** Whether any sidecar under this node includes something, as the generator asks it. */ +function hasInclusionMarker(node) { + if (Array.isArray(node)) return node.some(hasInclusionMarker); + if (!node || typeof node !== 'object') return false; + for (const [key, value] of Object.entries(node)) { + if (key.startsWith('$') && !['$styleOptions', '$comment', '$setInCode', '$assignInCode'].includes(key)) { + const markers = Array.isArray(value) ? value + : typeof value === 'object' && value !== null ? Object.values(value) : [value]; + if (markers.some(m => typeof m === 'string' && m.trim().startsWith('+'))) return true; + } + if (typeof value === 'object' && hasInclusionMarker(value)) return true; + } + return false; +} + let checked = 0, failures = 0, skipped = 0; const byId = new Map(); for (const file of files.sort()) { @@ -117,17 +143,50 @@ for (const file of files.sort()) { if (out === null || out.trim() === '') { throw new Error('emitted nothing'); } + if (PRINT && (!PRINT_PLATFORM || PRINT_PLATFORM === platform)) { + console.log(`\n--- ${where} [${platform}] markup`); + console.log(out.split('\n').map(l => ' ' + l).join('\n')); + } } } else { // Channels go through the marked form the generator uses; asking for the whole // definition on that channel is enough to prove it emits. - const parsed = JSON.parse(body); - const root = parsed.descriptions?.content ?? parsed; - root['$type'] = `+check:${channel}`; - if (parsed.onViewInit) parsed['$onViewInit'] = `+check:${channel}`; - if (parsed.onInit) parsed['$onInit'] = `+check:${channel}`; - api.emitSnippets(JSON.stringify(parsed), platform, { - ...opts, forceCodeBehind: channel === 'code' }); + // + // One region at a time, because a fence may ask for several — "a...b" and "a,b" + // are one block built from two regions, and neither name is a channel token on + // its own. Emitting the composed string would ask for a channel that cannot + // exist, which produces nothing and proves nothing. + let produced = ''; + // "auto" is not a region: the definition's own markers say which channel it + // wants, and they are already in the body. Emitting it unchanged is the check. + for (const region of channel.trim() === 'auto' ? [null] : regionsOf(channel)) { + const parsed = JSON.parse(body); + const root = parsed.descriptions?.content ?? parsed; + // Marked the way the generator marks it, or this checks something the pages + // do not emit: a definition that marks parts of itself is asking for those + // parts, and marking its root as well would widen it to the whole element. + if (region !== null) { + if (!hasInclusionMarker(root)) root['$type'] = `+check:${region}`; + if (parsed.onViewInit) parsed['$onViewInit'] = `+check:${region}`; + if (parsed.onInit) parsed['$onInit'] = `+check:${region}`; + if (parsed.modules !== undefined) parsed['$modules'] = `+check:${region}`; + } + const out = api.emitSnippets(JSON.stringify(parsed), platform, { + ...opts, forceCodeBehind: region === 'code' }); + const asked = region === null + ? out.find(s => s.content && s.content.trim()) + : out.find(s => s.key === `check:${region}`) + ?? out.find(s => s.channel === region); + if (asked?.content?.trim()) produced += asked.content; + if (PRINT && (!PRINT_PLATFORM || PRINT_PLATFORM === platform)) { + console.log(`\n--- ${where} [${platform}] ${region ?? 'auto'}`); + console.log((asked?.content?.trim() || '(nothing)').split('\n') + .map(l => ' ' + l).join('\n')); + } + } + // A region this platform writes nothing to drops out, as the generator drops it + // — but a fence where every region is empty produces an empty block. + if (produced.trim() === '') throw new Error('emitted nothing'); } } catch (e) { failures++; diff --git a/docs/xplat/src/content/en/components/geo-map-binding-multiple-sources.mdx b/docs/xplat/src/content/en/components/geo-map-binding-multiple-sources.mdx index 5d9e26835c..8232e7f3d1 100644 --- a/docs/xplat/src/content/en/components/geo-map-binding-multiple-sources.mdx +++ b/docs/xplat/src/content/en/components/geo-map-binding-multiple-sources.mdx @@ -214,7 +214,7 @@ Create object with airport points and For your convenience, all above code snippets are combined into one code block below that you can easily copy to your project. -```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="bindingImports" +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="bindingImports" exclude="Blazor,Xaml" { "type": "GeographicMap", "name": "geoMap", @@ -253,7 +253,7 @@ For your convenience, all above code snippets are combined into one code block b } ``` -```json-snippet source="/maps/geo-map/binding-multiple-sources" code="allCode" +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="allCode" exclude="Xaml" { "type": "GeographicMap", "name": "geoMap", diff --git a/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx b/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx index 4ac61cc1f4..e34eb201f1 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/local-data.mdx @@ -168,7 +168,18 @@ The following sample demonstrates the {ProductName} Data Table / Data Grid data The data the grid is bound to: -```json-snippet ref="localData" source="/grids/data-grid/binding-local-data" channel="data" +```json-snippet source="/grids/data-grid/binding-local-data" channel="data" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "$dataSourceRef": "+doc:data" + } + } +} ``` ## API References diff --git a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx index 4d8d1324e9..a4d833acb7 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/overview.mdx @@ -58,34 +58,23 @@ npm install --save {PackageInputs} The `Grid` requires the following modules: - -```razor -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbDataGridModule)); -``` - - - -```ts -import { IgrDataGridModule } from 'igniteui-react-data-grids'; -import { IgrDataGrid } from 'igniteui-react-data-grids'; - -IgrDataGridModule.register(); -``` - - - -```ts -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcDataGridModule } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; - -ModuleManager.register( - IgcDataGridModule -); +```json-snippet source="/grids/data-grid/overview" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid" + } + }, + "modules": [ + "grids/DataGridModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` -
@@ -93,46 +82,25 @@ ModuleManager.register( The optional `Grid` features, seen above, requires the following modules: - -```razor -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbDataGridModule), - typeof(IgbDataGridToolbarModule), - typeof(IgbSparklineModule) -); -``` - - - -```ts -import { IgrGridColumnOptionsModule } from 'igniteui-react-data-grids'; -import { IgrDataGridToolbarModule } from "igniteui-react-data-grids"; -import { IgrSparklineModule } from 'igniteui-react-charts'; - -IgrGridColumnOptionsModule.register(); -IgrDataGridToolbarModule.register(); -IgrSparklineModule.register(); -``` - - - -```ts -import { IgcGridColumnOptionsModule } from 'igniteui-webcomponents-data-grids'; -import { IgcGridColumnOptionsComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridToolbarModule } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridToolbarComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; -import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; - -ModuleManager.register( - IgcGridColumnOptionsModule, - IgcDataGridToolbarModule, - IgcSparklineModule -); +```json-snippet source="/grids/data-grid/overview" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid" + } + }, + "modules": [ + "grids/DataGridModule", + "grids/DataGridToolbarModule", + "charts/SparklineModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` -
diff --git a/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx b/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx index d59f375aba..6386ad0e14 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/remote-data.mdx @@ -38,36 +38,23 @@ In addition to the core and {Platform} data grid packages you will also have to The `Grid` requires the following modules: - -```razor -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbDataGridModule)); -``` - - - -```ts -import './odatajs-4.0.0'; -import { IgrDataGridModule } from 'igniteui-react-data-grids'; -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { ODataVirtualDataSource } from 'igniteui-react-datasources'; - -IgrDataGridModule.register(); -``` - - - -```ts -import './odatajs-4.0.0'; -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcDataGridModule } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; -import { ODataVirtualDataSource } from 'igniteui-webcomponents-dataSource'; - -ModuleManager.register(IgcDataGridModule); +```json-snippet source="/grids/data-grid/binding-remote-data" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid" + } + }, + "modules": [ + "grids/DataGridModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` -
@@ -98,25 +85,19 @@ Now that the {Platform} data grid module is imported, the next step is the basic Assign the data source to the grid. -```ts -private virtualData: ODataVirtualDataSource; -// ... -const vds = new ODataVirtualDataSource(); -vds.baseUri = ("https://services.odata.org/V4/Northwind/Northwind.svc"); -vds.entitySet = ("Orders"); -this.virtualData = vds; -``` - - -```ts -const vds = new ODataVirtualDataSource(); -vds.baseUri = ("https://services.odata.org/V4/Northwind/Northwind.svc"); -vds.entitySet = ("Orders"); - -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = vds; +```json-snippet source="/grids/data-grid/binding-remote-data" channel="data" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "NorthwindOrders", + "$dataSourceRef": "+doc:data" + } + } +} ``` - ## API References diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-sources.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-sources.mdx index 9047833e0c..fd1fdbbce9 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-sources.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-sources.mdx @@ -216,7 +216,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; 上記すべてのコード スニペットを以下のコード ブロックにまとめて、プロジェクトに簡単にコピーできます。 -```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="bindingImports" +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="bindingImports" exclude="Blazor,Xaml" { "type": "GeographicMap", "name": "geoMap", @@ -255,7 +255,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; } ``` -```json-snippet source="/maps/geo-map/binding-multiple-sources" code="allCode" +```json-snippet source="/maps/geo-map/binding-multiple-sources" channel="allCode" exclude="Xaml" { "type": "GeographicMap", "name": "geoMap", diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx index 020ffa0dad..034cf9fa65 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/local-data.mdx @@ -166,50 +166,18 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; } ``` -```json-snippet ref="localData" source="/grids/data-grid/binding-local-data" channel="data" -```ts -public data: any[]; -public initData() { - const names: string[] = [ - "Intel CPU", "AMD CPU", - "Intel Motherboard", "AMD Motherboard", "Nvidia Motherboard", - "Nvidia GPU", "Gigabyte GPU", "Asus GPU", "AMD GPU", "MSI GPU", - "Corsair Memory", "Patriot Memory", "Skill Memory", - "Samsung HDD", "WD HDD", "Seagate HDD", "Intel HDD", "Asus HDD", - "Samsung SSD", "WD SSD", "Seagate SSD", "Intel SSD", "Asus SSD", - "Samsung Monitor", "Asus Monitor", "LG Monitor", "HP Monitor" ]; - - const countries: string[] = ["USA", "UK", "France", "Canada", "Poland", - "Denmark", "Croatia", "Australia", "Seychelles", - "Sweden", "Germany", "Japan", "Ireland", - "Barbados", "Jamaica", "Cuba", "Spain",]; - const status: string[] = [ "Packing", "Shipped", "Delivered"] - const sales: any[] = []; - - for (let i = 0; i < 200; i++) { - const price = this.getRandomNumber(10000, 90000) / 100; - const items = this.getRandomNumber(4, 30); - const value = Math.round(price * items); - const margin = this.getRandomNumber(2, 5); - const profit = Math.round((price * margin / 100) * items); - const country = this.getRandomItem(countries); - sales.push({ - Country: country, - CountryFlag: this.getCountryFlag(country), - Margin: margin, - OrderDate: this.getRandomDate(), - OrderItems: items, - OrderValue: value, - ProductID: 1001 + i, - ProductName: this.getRandomItem(names), - ProductPrice: price, - Profit: Math.round(profit), - Status: this.getRandomItem(status), - }); +```json-snippet source="/grids/data-grid/binding-local-data" channel="data" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "ProductOrders", + "$dataSourceRef": "+doc:data" } - - this.data = sales; } +} ``` From b7f8f09c954d3aa4256181a33fdf19b54b5a03db Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 09:28:28 -0400 Subject: [PATCH 057/155] Mirror the data grid module and data source collapses into the jp copies The mirror adds fences but leaves what they replace, so the remote data page kept the hand written data source block and a duplicate of its markup fence. Every page's fences match between the two locales again. --- .../components/grids/data-grid/overview.mdx | 100 ++++++------------ .../grids/data-grid/remote-data.mdx | 74 +++++-------- 2 files changed, 62 insertions(+), 112 deletions(-) diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx index bc0c70b7aa..e87a9659e2 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/overview.mdx @@ -58,34 +58,23 @@ npm install --save {PackageInputs} `Grid` を作成するには、以下のモジュールが必要です。 - -```razor -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbDataGridModule)); -``` - - - -```ts -import { IgrDataGridModule } from 'igniteui-react-data-grids'; -import { IgrDataGrid } from 'igniteui-react-data-grids'; - -IgrDataGridModule.register(); -``` - - - -```ts -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcDataGridModule } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; - -ModuleManager.register( - IgcDataGridModule -); +```json-snippet source="/grids/data-grid/overview" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid" + } + }, + "modules": [ + "grids/DataGridModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` -
@@ -93,46 +82,25 @@ ModuleManager.register( 上記のオプションの `Grid` 機能を使用するには、以下のモジュールが必要です。 - -```razor -// in Program.cs file - -builder.Services.AddIgniteUIBlazor( - typeof(IgbDataGridModule), - typeof(IgbDataGridToolbarModule), - typeof(IgbSparklineModule) -); -``` - - - -```ts -import { IgrGridColumnOptionsModule } from 'igniteui-react-data-grids'; -import { IgrDataGridToolbarModule } from "igniteui-react-data-grids"; -import { IgrSparklineModule } from 'igniteui-react-charts'; - -IgrGridColumnOptionsModule.register(); -IgrDataGridToolbarModule.register(); -IgrSparklineModule.register(); -``` - - - -```ts -import { IgcGridColumnOptionsModule } from 'igniteui-webcomponents-data-grids'; -import { IgcGridColumnOptionsComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridToolbarModule } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridToolbarComponent } from 'igniteui-webcomponents-data-grids'; -import { IgcSparklineModule } from 'igniteui-webcomponents-charts'; -import { IgcSparklineComponent } from 'igniteui-webcomponents-charts'; - -ModuleManager.register( - IgcGridColumnOptionsModule, - IgcDataGridToolbarModule, - IgcSparklineModule -); +```json-snippet source="/grids/data-grid/overview" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid" + } + }, + "modules": [ + "grids/DataGridModule", + "grids/DataGridToolbarModule", + "charts/SparklineModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` -
diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx index 9044cf7323..b6b745db52 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/remote-data.mdx @@ -38,36 +38,23 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; `Grid` を作成するには、以下のモジュールが必要です。 - -```razor -// in Program.cs file - -builder.Services.AddIgniteUIBlazor(typeof(IgbDataGridModule)); -``` - - - -```ts -import './odatajs-4.0.0'; -import { IgrDataGridModule } from 'igniteui-react-data-grids'; -import { IgrDataGrid } from 'igniteui-react-data-grids'; -import { ODataVirtualDataSource } from 'igniteui-react-datasources'; - -IgrDataGridModule.register(); +```json-snippet source="/grids/data-grid/binding-remote-data" channel="modulesImports...moduleRegistration" exclude="Xaml" +{ + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid" + } + }, + "modules": [ + "grids/DataGridModule" + ], + "$modules": [ + "+doc:modulesImports", + "+doc:moduleRegistration" + ] +} ``` - - - -```ts -import './odatajs-4.0.0'; -import { ModuleManager } from 'igniteui-webcomponents-core'; -import { IgcDataGridModule } from 'igniteui-webcomponents-data-grids'; -import { IgcDataGridComponent } from 'igniteui-webcomponents-data-grids'; -import { ODataVirtualDataSource } from 'igniteui-webcomponents-dataSource'; - -ModuleManager.register(IgcDataGridModule); -``` -
@@ -98,25 +85,20 @@ ModuleManager.register(IgcDataGridModule); データ ソースをグリッドに割り当てます。 -```ts -private virtualData: ODataVirtualDataSource; -// ... -const vds = new ODataVirtualDataSource(); -vds.baseUri = ("https://services.odata.org/V4/Northwind/Northwind.svc"); -vds.entitySet = ("Orders"); -this.virtualData = vds; -``` - - -```ts -const vds = new ODataVirtualDataSource(); -vds.baseUri = ("https://services.odata.org/V4/Northwind/Northwind.svc"); -vds.entitySet = ("Orders"); -let grid1 = (document.getElementById("grid") as IgcDataGridComponent); -grid1.dataSource = vds; +```json-snippet source="/grids/data-grid/binding-remote-data" channel="data" +{ + "skipAlterDataCasing": true, + "descriptions": { + "content": { + "type": "DataGrid", + "name": "grid", + "dataSourceRef": "NorthwindOrders", + "$dataSourceRef": "+doc:data" + } + } +} ``` - ## API リファレンス From 27c7e5d116da8f17f66dee7a555a0db02c08cf08 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Wed, 12 Aug 2026 12:57:18 -0400 Subject: [PATCH 058/155] Three checks anyone can run, and workflows that run the same scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The snippet tooling had absolute paths into one developer's home directory in six scripts. That works until anyone else runs them, and it cannot work in CI at all. Resolution is stated once now, in lib/snippet-toolchain.mjs, in the order a run should prefer: an environment variable, then a peer checkout, then a package. With no peer, igniteui-xplat-examples is cloned at the branch matching the branch under check — the same matching dev-tools' own builds use, because a change spanning both repositories is made on same-named branches and a check that read main would review it against the wrong samples. check-snippet-schema.mjs checks every definition on every page, in both locales, against the schema the descriptions declare. The checking itself moves to lib/snippet-schema.mjs, shared with the generator, so the two cannot disagree about what is valid. Its messages name the property, suggest the nearest real one, and list what an enumeration accepts — a misspelled enum value is the most common mistake, and "must be equal to one of the allowed values" does not say which those are. samples-runtime/ loads every sample in the examples repository into chromium with the real component renderer and the published packages, and reports anything that errors. It follows the Web Components test host's discipline, because that host loads hundreds of samples into one page without it falling over: errors collected rather than thrown, unused refs cleaned up on render, the renderer's own teardown between samples, and idle, flush and animation idle waited for in that order. The data and handlers come from the product's own library emission rather than a second implementation that reads the library folder. A failure is retried once. A sample that fails in sequence and passes on its own inherited something from the sample before it, which is a finding about the component rather than about the sample, and it is reported as its own kind. A page that stops answering is restarted, as the xsharp runner restarts a host it cannot reach, and a crash is reported with everything available at that moment: the stage it reached, what the renderer had objected to, what the page logged, the components the sample names, and what the page was holding — a dead tab cannot be revisited. The collapse notes and the WinUI/Uno plan move to dev-tools, beside the emitter they are about. --- .github/workflows/samples-runtime.yml | 101 ++ .github/workflows/snippet-checks.yml | 92 + .gitignore | 4 +- WINUI-UNO-PLAN.md | 1384 --------------- docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md | 1391 --------------- docs/xplat/scripts/add-xaml-snippets.mjs | 2 +- .../scripts/check-snippet-code-channels.mjs | 14 +- .../scripts/check-snippet-divergence.mjs | 8 +- docs/xplat/scripts/check-snippet-emission.mjs | 21 +- docs/xplat/scripts/check-snippet-schema.mjs | 99 ++ docs/xplat/scripts/ci/resolve-examples.mjs | 31 + docs/xplat/scripts/compare-web-blocks.mjs | 12 +- docs/xplat/scripts/generate.mjs | 174 +- docs/xplat/scripts/lib/api-map-names.mjs | 2 +- docs/xplat/scripts/lib/snippet-schema.mjs | 305 ++++ docs/xplat/scripts/lib/snippet-toolchain.mjs | 276 +++ docs/xplat/scripts/plan-snippet-collapse.mjs | 14 +- docs/xplat/scripts/samples-runtime/.gitignore | 2 + docs/xplat/scripts/samples-runtime/README.md | 34 + docs/xplat/scripts/samples-runtime/harness.js | 408 +++++ docs/xplat/scripts/samples-runtime/index.html | 31 + .../scripts/samples-runtime/package-lock.json | 1515 +++++++++++++++++ .../scripts/samples-runtime/package.json | 27 + docs/xplat/scripts/samples-runtime/run.mjs | 658 +++++++ package.json | 5 +- src/data/api-map/README.md | 2 +- 26 files changed, 3644 insertions(+), 2968 deletions(-) create mode 100644 .github/workflows/samples-runtime.yml create mode 100644 .github/workflows/snippet-checks.yml delete mode 100644 WINUI-UNO-PLAN.md delete mode 100644 docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md create mode 100644 docs/xplat/scripts/check-snippet-schema.mjs create mode 100644 docs/xplat/scripts/ci/resolve-examples.mjs create mode 100644 docs/xplat/scripts/lib/snippet-schema.mjs create mode 100644 docs/xplat/scripts/lib/snippet-toolchain.mjs create mode 100644 docs/xplat/scripts/samples-runtime/.gitignore create mode 100644 docs/xplat/scripts/samples-runtime/README.md create mode 100644 docs/xplat/scripts/samples-runtime/harness.js create mode 100644 docs/xplat/scripts/samples-runtime/index.html create mode 100644 docs/xplat/scripts/samples-runtime/package-lock.json create mode 100644 docs/xplat/scripts/samples-runtime/package.json create mode 100644 docs/xplat/scripts/samples-runtime/run.mjs diff --git a/.github/workflows/samples-runtime.yml b/.github/workflows/samples-runtime.yml new file mode 100644 index 0000000000..bd17ec6f45 --- /dev/null +++ b/.github/workflows/samples-runtime.yml @@ -0,0 +1,101 @@ +name: Samples load check + +# Every sample loaded into chromium with the real component renderer and the published +# igniteui-webcomponents-* packages, checked for errors. +# +# The snippet checks prove a definition emits code. They cannot prove the sample it came from works: a +# property can be spelled right, typed right, and still leave a component throwing on load. This is the +# other half, and it is the same script anyone runs locally: +# +# node docs/xplat/scripts/samples-runtime/run.mjs +# +# The packages come from the registry here, which is what a reader of the documentation installs. A +# local run can point at a locally built set with --packages= when checking a build before it +# ships. + +permissions: + contents: read + +on: + pull_request: + branches: [ master, vnext ] + paths: + - 'docs/xplat/scripts/samples-runtime/**' + - '.github/workflows/samples-runtime.yml' + schedule: + # Nightly, because what this checks is the published packages against the samples: neither changes + # because of anything in this repository, and both change without it. + - cron: '0 3 * * *' + workflow_dispatch: + inputs: + filter: + description: 'Only samples whose path contains this' + required: false + type: string + +jobs: + load-every-sample: + runs-on: ubuntu-latest + timeout-minutes: 90 + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Use Node.js 24.x + uses: actions/setup-node@v4 + with: + node-version: 24 + + # The library a sample binds to is emitted by the product's own code generating renderer, which + # ships in dev-tools rather than in a package. Same build the snippet checks use. + - name: Checkout dev-tools + uses: actions/checkout@v4 + with: + repository: Infragistics-Developer-Tools/dev-tools + path: dev-tools + token: ${{ secrets.DEV_TOOLS_TOKEN }} + + - name: Set up .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '8.x' + + - name: Build the snippet emitter + working-directory: dev-tools/XPlatform/Main/Source/DataVisualization.JS/DataVisualization + run: dotnet build DV.Shared.DESCRIPTION.JS.csproj -c Debug + + - name: Bundle the snippet emitter + working-directory: dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike + run: | + npm install --no-audit --no-fund + node collect-ts.js + npm run build + + - name: Resolve the examples checkout + id: examples + run: | + node docs/xplat/scripts/ci/resolve-examples.mjs --print-path >> "$GITHUB_OUTPUT" + + - name: Install the harness and chromium + working-directory: docs/xplat/scripts/samples-runtime + run: | + npm install --no-audit --no-fund + npx playwright install --with-deps chromium + + - name: Load every sample + working-directory: docs/xplat/scripts/samples-runtime + env: + XPLAT_EXAMPLES: ${{ steps.examples.outputs.path }} + IG_SNIPPET_API: ${{ github.workspace }}/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs + run: | + node run.mjs ${{ inputs.filter && format('--filter={0}', inputs.filter) || '' }} + + - name: Keep what the emitted library looked like + if: always() + uses: actions/upload-artifact@v4 + with: + name: emitted-library + path: docs/xplat/scripts/samples-runtime/generated + if-no-files-found: ignore + retention-days: 7 diff --git a/.github/workflows/snippet-checks.yml b/.github/workflows/snippet-checks.yml new file mode 100644 index 0000000000..e4fa74d314 --- /dev/null +++ b/.github/workflows/snippet-checks.yml @@ -0,0 +1,92 @@ +name: Snippet checks + +# What a json-snippet has to survive before a page can ship: the schema the descriptions declare, and +# emission on every platform — including the platforms a page is gated away from, which is where a +# definition breaks unnoticed. +# +# Both jobs run the same scripts anyone runs locally: +# node docs/xplat/scripts/check-snippet-schema.mjs +# node docs/xplat/scripts/check-snippet-emission.mjs +# +# Locally those find a peer dev-tools and igniteui-xplat-examples checkout. Here there are none, so +# dev-tools is checked out and its emitter built, and the examples are cloned at the branch matching +# the branch under review — the same matching dev-tools' own builds use. + +permissions: + contents: read + +on: + pull_request: + branches: [ master, vnext ] + paths: + - 'docs/xplat/src/content/**' + - 'docs/xplat/scripts/**' + - '.github/workflows/snippet-checks.yml' + workflow_dispatch: + +jobs: + snippets: + runs-on: ubuntu-latest + timeout-minutes: 45 + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Use Node.js 24.x + uses: actions/setup-node@v4 + with: + node-version: 24 + cache: 'npm' + + - name: Install dependencies + run: npm ci + + # The emitter is the product's own code generating renderer, transpiled to run in node. It ships + # in dev-tools rather than in a package, so it is built here. Once igniteui-webcomponents-core + # exports the snippet recorder, this step can be dropped and IG_SNIPPET_API pointed at the + # installed package instead — lib/snippet-toolchain.mjs already resolves it that way. + - name: Checkout dev-tools + uses: actions/checkout@v4 + with: + repository: Infragistics-Developer-Tools/dev-tools + path: dev-tools + token: ${{ secrets.DEV_TOOLS_TOKEN }} + + - name: Set up .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: '8.x' + + - name: Build the snippet emitter + working-directory: dev-tools/XPlatform/Main/Source/DataVisualization.JS/DataVisualization + run: dotnet build DV.Shared.DESCRIPTION.JS.csproj -c Debug + + - name: Bundle the snippet emitter + working-directory: dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike + run: | + npm install --no-audit --no-fund + node collect-ts.js + npm run build + + # The samples and the code generation library a snippet is emitted against. Resolved to the + # examples branch matching this one, so a change spanning both repositories is checked against + # the samples it was written for. + - name: Resolve the examples checkout + id: examples + run: | + node docs/xplat/scripts/ci/resolve-examples.mjs --print-path >> "$GITHUB_OUTPUT" + + - name: Check the schema + env: + XPLAT_EXAMPLES: ${{ steps.examples.outputs.path }} + IG_SNIPPET_API: ${{ github.workspace }}/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs + run: node docs/xplat/scripts/check-snippet-schema.mjs + + - name: Check emission on every platform + env: + XPLAT_EXAMPLES: ${{ steps.examples.outputs.path }} + IG_SNIPPET_API: ${{ github.workspace }}/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs + run: | + node docs/xplat/scripts/check-snippet-emission.mjs --lang=en + node docs/xplat/scripts/check-snippet-emission.mjs --lang=jp diff --git a/.gitignore b/.gitignore index 6fb7863ad4..84ad7ca61c 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,6 @@ Thumbs.db # Editor .vscode/* !.vscode/extensions.json -.idea/ \ No newline at end of file +.idea/ +# Clone made by the snippet checks when there is no peer igniteui-xplat-examples checkout +.snippet-cache/ diff --git a/WINUI-UNO-PLAN.md b/WINUI-UNO-PLAN.md deleted file mode 100644 index 31d14d2d45..0000000000 --- a/WINUI-UNO-PLAN.md +++ /dev/null @@ -1,1384 +0,0 @@ -# WinUI & Uno Documentation Emission — Work Plan - -**Status:** planning complete, not started -**Owner:** _unassigned_ -**Repos in play:** `igniteui-documentation` (target), `igniteui-xplat-docs` (source of un-ported Data Grid content), `winui-samples` (sample sources) -**Last updated:** 2026-08-05 - -This document is self-contained: it records the current architecture, the locked -decisions, the measured content inventory, and a phased task list. Anyone picking -this up should be able to start at Phase 0 without re-deriving the analysis. - ---- - -## 1. Goal - -Emit Ignite UI documentation for two new platforms — **WinUI** and **Uno** — from the -existing xplat MDX source in `docs/xplat/`, alongside the four current platforms -(Angular, React, Web Components, Blazor). This requires: - -1. Registering the two platforms in the Astro build (new sites, new build matrix). -2. A platform-filtering model that scales past four platforms, so web-only topics - stop emitting for WinUI/Uno (and for the mobile platforms that come later). -3. XAML + C# snippets for every in-scope topic, sourced from `winui-samples`. -4. Porting the **Data Grid** topic set, which was never carried from - `igniteui-xplat-docs` into the Astro docs, and marking it non-web-only. -5. A live sample host that serves the shared samples to both new doc sites. - ---- - -## 2. Locked decisions - -| # | Decision | Rationale / consequence | -|---|---|---| -| D1 | **Samples are served live from an Uno WASM host.** One samples browser, compiled from the shared sample sources via Uno to WebAssembly, hosted like the existing `*-demos` sites. Both WinUI and Uno docs embed the live iframe. | Reuses the existing `` / `code-view` iframe contract with no doc-side component change. WinUI pages additionally link to the WinUI source in `winui-samples`. | -| D2 | **Platform *groups* plus an `include` allowlist.** Group aliases resolve at build time; the non-web group is named **`NonWeb`** (not `Xaml`), because mobile and other non-web platforms will join it. `include` is added alongside `exclude` and wins over it. | Group naming stays valid as platforms are added. `include: ["Web"]` on a web-only topic means every future non-web platform is excluded automatically — no repeat migration. | -| D3 | **Two separate sites.** WinUI and Uno each get their own `PLATFORM` build, base URL, dev port and `dist/` output, symmetric with React/WC/Blazor. | Per-product URLs and product-switcher entries; doubles the build matrix. | -| D4 | **Scope = components that have WinUI samples.** A component's doc set emits for WinUI/Uno if `winui-samples` has **any** sample for that component. | See §4 for the measured matrix. | -| D5 | **An individual missing sample never excludes a topic.** Only a component with *zero* WinUI samples is excluded wholesale (e.g. Financial Chart, most inputs). Individual unmatched sample routes are a backfill/triage item, not a suppression trigger. | Set by review of the coverage data; some doc sample references are hand-built one-offs rather than entries in the examples repos, so an unmatched route is not evidence the component is unsupported. | -| D7 | **OPEN — translation vs common-JSON emission for snippet generation.** Translation has 84/149 groups covered today but cannot serve the 33 code-only groups at all. Emission removes the guesswork and gets code-behind for free, at the cost of a subsetting mechanism, bolstered forced-code-behind, and back-conversion. **The deciding factor: both paths require the same prerequisite** — see §6.5.2. | Comparison and the decision criterion in **§6.5**. Not to be settled by default; the next increment of translation work is the part that gets thrown away if emission wins. | -| D6 | **API name resolution: ship on the existing heuristic for now, but re-incorporate the apiMaps as a committed follow-up.** The apiMaps are the correct mechanism — the product builds already generate the authoritative canonical ↔ platform name mapping for every type and member. Prefix-plus-casing guessing is a stopgap, accepted only to unblock the launch. | Interim posture in §6.3.2; the committed workstream is **§6.4** and **Phase 7**. Interim rule: do not hand-patch MDX at scale to work around resolution failures — that debt would have to be unpicked. | - ---- - -## 3. How platform emission works today - -Understanding these five mechanisms is a prerequisite for Phase 0–1. - -### 3.1 Platform selection - -One Astro build per platform per locale. `PLATFORM` env var (or `.platform.json`) -selects it — [docs/xplat/astro.config.ts:36](docs/xplat/astro.config.ts#L36). Scripts in -[docs/xplat/package.json](docs/xplat/package.json) wrap this per platform -(`dev:react`, `build:blazor`, …), and the root [package.json](package.json) re-exports -convenience aliases. - -### 3.2 Token substitution - -`vitePluginPlatformTokens` — [docs/xplat/astro.config.ts:197](docs/xplat/astro.config.ts#L197) -— rewrites `{Platform}`, `{ProductName}`, `{GridSample}`, `{environment:*}` etc. in -`.mdx` before the MDX compiler runs. Values come from the per-platform -`replacements` array in [docs/xplat/docConfig.json](docs/xplat/docConfig.json) -(148 entries for React alone). - -### 3.3 Conditional content — `PlatformBlock` - -`` is **inlined at build time** by -`inlinePlatformBlocks` — [docs/xplat/astro.config.ts:121](docs/xplat/astro.config.ts#L121) -— a depth-aware parser that keeps matching content and strips the rest. The -component import is then removed by regex. This logic lives in this repo, so -group-alias support (D2) can be added here. Authoring rules: -[docs/xplat/AI-AGENT-PLATFORM-BLOCK.md](docs/xplat/AI-AGENT-PLATFORM-BLOCK.md). - -### 3.4 Conditional navigation — `toc.json` - -`buildFilteredToc` — [docs/xplat/astro.config.ts:271](docs/xplat/astro.config.ts#L271) -— reads `src/content/{lang}/toc.json`, drops nodes whose `exclude` array contains the -active platform, merges `platforms.` badge overrides, and writes -`generated/{Platform}/{lang}/components/toc.json`. Badge override rules: -[docs/xplat/PLATFORM-LABELS.md](docs/xplat/PLATFORM-LABELS.md). - -**This is blacklist-only today** — there is no `include`. Nearly every entry that is -not Angular-relevant already carries `"exclude": ["Angular"]`. - -### 3.5 Samples - -`` renders a -`code-view` custom element that iframes the platform's hosted samples browser and -pulls code tabs from `/code-viewer/*.json` on the same host. The host URL per -platform and per environment comes from `docConfig.json → .samplesBrowsers` -(e.g. React → `https://www.infragistics.com/react-demos`); dev builds proxy -`/code-viewer` — [src/integration.ts:701](src/integration.ts#L701). - -> `Sample.astro`, `ApiLink.astro`, `PlatformBlock.astro` and `DocsAside.astro` are -> imported from the **external npm package `igniteui-astro-components@0.0.27`**, not -> from this repo. See risk R3. - ---- - -## 4. Content inventory (measured) - -Counted against `docs/xplat/src/content/en/components` (280 MDX topics, 769 `` -usages) and `winui-samples/samples` (**279** samples across 15 components). - -### 4.1 Components that emit for WinUI/Uno — have WinUI samples - -| Sample component | WinUI samples | Doc topics referencing it | -|---|---|---| -| `charts/data-chart` | 66 | 34 | -| `charts/category-chart` | 60 | 25 | -| `maps/geo-map` | 24 | 22 | -| `grids/data-grid` | 37 | 1 (+32 to port, §5.4) | -| `gauges/radial-gauge` | 20 | 1 | -| `gauges/linear-gauge` | 17 | 1 | -| `gauges/bullet-graph` | 13 | 1 | -| `charts/sparkline` | 8 | 2 | -| `charts/data-pie-chart` | 8 | 1 | -| `charts/toolbar` | 7 | 1 | -| `charts/tree-map` | 5 | 2 | -| `charts/dashboard-tile` | 5 | 1 | -| `charts/pie-chart` | 4 | 2 | -| `charts/doughnut-chart` | 3 | 2 | -| `inputs/color-editor` | 1 | 1 | - -**59 existing topics** reference at least one sample that already exists for WinUI. -168 distinct sample routes already match between the docs and `winui-samples`. - -### 4.2 Components suppressed for WinUI/Uno — zero WinUI samples - -`charts/financial-chart` (8 topics) · `excel/excel-library` (8) · -`excel/spreadsheet` (9) · `grids/grid`, `grids/list`, `grids/tree`, Grid Lite and the -`{GridSample}` / `{TreeGridSample}` / `{PivotGridSample}` / `{HierarchicalGridSample}` / -`{ComponentSample}` web-grid families (~150 topic references) · all `inputs/*` except -`color-editor` · all `layouts/*` (incl. Dock Manager) · all `notifications/*` · -all `scheduling/*` · `menus/nav-bar`, `menus/nav-drawer` · `interactions/chat`, -`interactions/query-builder` · `themes/*` · `ai/*`. - -`menus/toolbar.mdx` **does** emit — its samples are `charts/toolbar`. - -**Zoom Slider is an exception to the zero-samples rule:** `charts/zoomslider` has no -WinUI sample folder today, but the control is coming, so `zoomslider-overview.mdx` -emits and the sample is a Phase 2/4 backfill item. - -### 4.3 Sample routes referenced by in-scope topics with no matching WinUI folder - -42 routes — a **triage list, not an exclusion list** (D5). Some are expected to be -hand-authored samples that never existed in the examples repos; the rest are -genuine backfill candidates for `winui-samples`. Full list in Appendix C. - -Distribution: `charts/data-chart` 19 · `charts/financial-chart` 9 (component is -excluded anyway) · `charts/category-chart` 7 · `charts/pie-chart` 3 · -`charts/sparkline` 2 · `charts/doughnut-chart` 1 · `grids/data-grid` 1. - -### 4.4 WinUI samples with no doc reference - -110 of 279 — including **36 of the 37 `grids/data-grid` samples**, which is a direct -consequence of the Data Grid topics never being ported (§5.4). The remainder -(data-chart 17, category-chart 15, radial-gauge 11, geo-map 9, linear-gauge 8, -bullet-graph 5, sparkline 4, …) are candidates for new sections in existing topics. - ---- - -## 5. Phased work plan - -Phases 0–2 are sequential and blocking. Phases 3–4 are the content bulk and can run -in parallel per component family once Phase 1 lands. Phase 5 is required for the -sites to have an entry point. Phase 6 gates merge. **Phase 7 is committed, not -optional** — it replaces the heuristic name resolution the launch ships on. - -### Phase 0 — Register the platforms - -Goal: `PLATFORM=WinUI npm run dev:winui` boots and serves the existing xplat content -unfiltered. No content correctness yet. - -| File | Change | -|---|---| -| [src/platform.ts:29](src/platform.ts#L29) | `PlatformKey` += `'winui' \| 'uno'` | -| [src/platform.ts:165](src/platform.ts#L165) | `PLATFORM_DEFS` entries — `navType: 'infragistics'`, shared `IG_STYLES` / `IG_SCRIPTS` | -| [src/platform.ts:182](src/platform.ts#L182) | `IGDOCS_PLATFORMS` += `WinUI` / `Uno`: `base` (§8 Q1), `devPort` 4335 / 4336, `root: '/general-getting-started'`, title, description | -| [src/platform.ts:271](src/platform.ts#L271) | `getNavConfig` case list += both keys | -| [src/lib/api-platform-config.ts:1](src/lib/api-platform-config.ts#L1) | `PlatformName` += `'WinUI' \| 'Uno'`; `PLATFORM_MAP` += `winui`, `uno`; `API_PLATFORM_CONFIGS` entries (`folder`, prefix, `pascalCaseMembers: true`, `apiPackages` → `Infragistics.WinUI.*`) | -| [src/lib/platform-context.ts:17](src/lib/platform-context.ts#L17) | `PLATFORMS` entries: `productName`, `productSpinal`, `packages`, `links.github` / `forums` / `repoSamples` → `winui-samples` | -| [src/lib/platform-context.ts:11](src/lib/platform-context.ts#L11) | **Blocker:** `PlatformName` is re-exported from `igniteui-astro-components/lib/types`. Switch this import to the local `api-platform-config.ts` type (already a duplicate definition) or bump the package — see R3 | -| [src/integration.ts:118](src/integration.ts#L118) | `API_DOCS_FOLDER_BY_PLATFORM` += entries, or intentionally omit so no `api/*/llms.txt` URL is emitted (§8 Q2) | -| [src/llms.ts:197](src/llms.ts#L197) | `IGDOCS_PLATFORMS` set += `'winui'`, `'uno'` | -| [src/virtual-modules.d.ts:28](src/virtual-modules.d.ts#L28) | platform union += both | -| [src/plugins/remark-env-vars.ts:26](src/plugins/remark-env-vars.ts#L26) | key→name map += both | -| [docs/xplat/docConfig.json](docs/xplat/docConfig.json) | New `WinUI` / `Uno` blocks: `replacements` (`{Platform}`, `{ProductName}`, `{PackageCore}`, `{RepoSamples}`, sample-path tokens), `samplesBrowsers` (Phase 2 host), `samplesGithubFile` / `samplesGithubTree` → `winui-samples`, `apiDocRoot` | -| [docs/xplat/package.json](docs/xplat/package.json) | `generate:` / `dev:` / `build:` / `build-staging:` / `build-production:` / `preview:` scripts for both platforms | -| [package.json](package.json) | Root `xplat:*:winui` / `:uno` aliases | -| [docs/xplat/scripts/generate.mjs](docs/xplat/scripts/generate.mjs) | Code-fence language → platform map (`xaml`, `csharp`) and content-detection regexes for XAML/`Xam*` types | - -**Acceptance:** dev server boots for both platforms; `{Platform}` renders as `WinUI` / -`Uno`; no unresolved `{Token}` leaks into output; sidebar renders. - -**Status: done and verified.** `npm run generate:winui` emits 365 MDX files; the dev -server boots on 4335; `/radial-gauge` and `/charts/types/area-chart` return 200 with -``, title *"…| Ignite UI for WinUI"*, -`

WinUI Radial Gauge Overview

`, zero unresolved `{Token}`s, and no -cross-platform name leakage (0 `Igr`/`Igb`/`Igx`; the single `Igc` hit is the docs UI's -own `IgcTabsComponent`). - -> ⚠️ **Defect this exposed — unresolved `ApiLink`s fabricate type names.** -> `ApiLink.astro` sets `displayLabel = label ?? (member ? `${baseType}.${member}` : -> baseType)` where `baseType = prefixed ? prefix + type : type`. With no WinUI registry -> yet, **every** link falls through to code text — and that text has `Xam` prepended. -> For controls this is correct (`RadialGauge` → `XamRadialGauge`). For the unprefixed -> helper types it renders a type **that does not exist**: -> -> | Doc stem | Renders | Real WinUI name | -> |---|---|---| -> | `RadialGaugeRange` | `XamRadialGaugeRange` | `RadialGaugeRange` | -> | `LinearGraphRange` | `XamLinearGraphRange` | `LinearGraphRange` | -> | `DataGridToolbar` | `XamDataGridToolbar` | `DataGridToolbar` | -> | `ColumnSortDescription` | `XamColumnSortDescription` | `ColumnSortDescription` | -> | `RangeBarSeries`, `TreeMap` | `Xam…` | not present in `winui-samples` — confirm | -> -> This is R7 in visible output: not a dead link but **wrong prose**. Keeping -> `prefixed: true` is still the right call on volume — the correctly-prefixed controls -> account for ≈506 refs (`DataChart` 295, `DataLegend` 80, `RadialGauge` 56, -> `GeographicMap` 40, `PieChart` 13, `BulletGraph` 12, `LinearGauge` 10) against ≈5–10 -> mislabelled helper refs. The registry (§6.2) fixes it properly by resolving the bare -> form when no `Xam` form exists. Until then, treat the table above as a known-wrong -> list; per-usage `prefixed={false}` is available but counts as the debt §6.3.2 -> guardrail 4 warns about. - -### Phase 1 — Platform groups + `include` - -Goal: web-only content stops emitting for WinUI/Uno, and the model survives adding -mobile platforms. - -1. **New shared module** `src/lib/platform-groups.ts`: - ```ts - export const PLATFORM_GROUPS = { - Web: ['Angular', 'React', 'WebComponents', 'Blazor'], - NonWeb: ['WinUI', 'Uno'], // mobile joins here - }; - export function resolvePlatformList(names: string[]): string[]; // expands aliases - export function emitsFor(platform: string, node: { include?: string[]; exclude?: string[] }): boolean; - ``` - Semantics: expand aliases in `include`, `exclude` and `PlatformBlock for=`. If - `include` is present and the active platform is not in the resolved set → drop. - Otherwise apply `exclude`. `include` wins on conflict. - -2. **Consumers** — all four must use the shared resolver, or filtering diverges - between dev, generated output and the link checkers: - - `buildFilteredToc` — [docs/xplat/astro.config.ts:281](docs/xplat/astro.config.ts#L281) - (also strip `include` from generated output alongside `exclude` / `platforms`) - - `inlinePlatformBlocks` — [docs/xplat/astro.config.ts:121](docs/xplat/astro.config.ts#L121) - - [docs/xplat/scripts/generate.mjs](docs/xplat/scripts/generate.mjs) (docfx-style - comment blocks and toc filtering) - - [scripts/check-relative-links.mjs:58](scripts/check-relative-links.mjs#L58) and - `:178`, [docs/xplat/scripts/resolve-api-links.mjs:66](docs/xplat/scripts/resolve-api-links.mjs#L66), - `scripts/check-mdx-links.mjs` platform args, - [scripts/apply-react-platform-fixes.mjs:131](scripts/apply-react-platform-fixes.mjs#L131) - -3. **Migrate `toc.json`** ([docs/xplat/src/content/en/toc.json](docs/xplat/src/content/en/toc.json) - and the `jp` copy) using the §4.2 matrix. Policy: - - Web-only entry → `"include": ["Web"]` (future-proof; supersedes the need to name - each new non-web platform). Existing `"exclude": ["Angular"]` can stay for - Angular-specific suppression within the Web group. - - Shared DV entry (charts / gauges / maps) → leave as is. - - WinUI/Uno-only entry (Data Grid family) → `"include": ["NonWeb"]`, replacing the - current `"exclude": ["Angular","Blazor","WebComponents","React"]` idiom. - Do this with a scripted migration driven by a checked-in component→group table, then - review the diff — this touches ~250 entries. - -4. **Docs:** update [docs/xplat/AI-AGENT-PLATFORM-BLOCK.md](docs/xplat/AI-AGENT-PLATFORM-BLOCK.md) - (valid platform names, group aliases, `for="NonWeb"`) and - [docs/xplat/PLATFORM-LABELS.md](docs/xplat/PLATFORM-LABELS.md) (`include` semantics, - new platform names for badge overrides). - -**Acceptance:** a WinUI build's sidebar contains only §4.1 components plus General; -a React/WC/Blazor/Angular build's sidebar and page count are **byte-identical to -before** (this is the regression that matters most). - -### Phase 2 — Uno WASM sample host - -Goal: `` renders a live sample and code tabs on both new sites, with no change -to the MDX or to the `Sample` component. - -1. Stand up an Uno WASM samples browser over the shared sample sources - (`winui-samples/samples` — 279 samples, each a `Sample.xaml` + `Sample.xaml.cs` - pair plus data files). Model the ingest on - [winui-samples/scripts/ingest-samples.ps1](../winui-samples/scripts/ingest-samples.ps1), - which already produces a route table (`charts/category-chart/annotations-all`) that - matches the doc `sample=` paths exactly. -2. **Reproduce the samples-browser contract** so the existing component works unchanged: - an iframe route per sample path, and `/code-viewer/.json` returning the file - list for the code tabs. Confirm the JSON shape against an existing host - (`react-demos`) before building. -3. Deploy to a stable staging + production URL; wire both into - `docConfig.json → WinUI.samplesBrowsers` and `Uno.samplesBrowsers`. -4. WinUI-specific affordance: a "view the WinUI source" link to the matching - `winui-samples` folder (via `samplesGithubFile` / `samplesGithubTree`), plus a short - note that the embedded preview is the Uno WASM build of the same sample. -5. Decide the fallback for a doc sample route with no sample on the host (the §4.3 - triage list) — recommended: the component renders a neutral "sample not available - for this platform" placeholder rather than a broken iframe, and the route is logged - at build time so the backfill list stays current. - -**Acceptance:** `geo-map.mdx` and `radial-gauge.mdx` built for WinUI show a live -sample and XAML/C# code tabs; a known-missing route degrades without a console error. - -### Phase 3 — Port the Data Grid topic set - -**Source:** `igniteui-xplat-docs/doc/en/components/grids/data-grid/*.md` — 32 topics, -4,533 lines. **Target:** `docs/xplat/src/content/en/components/grids/data-grid/*.mdx`. - -The Astro toc **already contains** these 32 entries under "Table / Grid" pointing at -`grids/data-grid/*.mdx` — the files were never created, so those nodes currently -reference nothing. Only the landing page `grids/data-grid.mdx` exists. - -Per topic: -- docfx `` … `` comments → `` -- `` `sample="/grids/data-grid/x", height="600", alt="…"` `` → `` -- frontmatter → Astro schema (`title`, `description`, `keywords`, `license`, - `mentionedTypes`, `namespace`, `llms.description`); `_description` / `_keywords` / - `_canonicalLink` are docfx-era names -- backticked type names → `` where a target exists (see R1) -- `../data-grid.md` style links → `.mdx` -- toc entries → `"include": ["NonWeb"]` -- **Suppress the web deprecation banner.** These topics open with a "this control has - been deprecated, migrate to Grid" note scoped to Blazor/WebComponents. The Data Grid - is the *primary* grid on WinUI/Uno — the note must not leak into their output. -- Add XAML/C# snippets: **32 of the 38** referenced sample routes already exist in - `winui-samples`, so snippets can be lifted from `Sample.xaml` / `Sample.xaml.cs`. - -Sizeable topics to schedule first: `overview` (475 lines), `column-pinning` (400), -`column-types` (365), `cell-editing` (333), `column-summaries` (306), -`column-chooser` (293). - -**Acceptance:** all 32 pages build for WinUI and Uno, appear in the sidebar, are absent -from all four web builds, and pass the relative-link and MDX-link checkers. - -### Phase 4 — XAML/C# snippets for the 59 in-scope existing topics - -For each topic in §4.1, add WinUI/Uno code alongside the existing four platforms, -inside `` (or `for="WinUI"` / `for="Uno"` where the two -genuinely differ — package names and `using` directives most likely). - -- Source of truth: `Sample.xaml` (markup) and `Sample.xaml.cs` (code-behind) in the - matching `winui-samples` folder. -- **Trim the harness.** Sample XAML wraps the control in `XamPropertyEditorPanel` / - `PropertyEditorPropertyDescription` scaffolding and layout `Grid`s that must not - appear in a doc snippet; the code-behind carries a `ComponentRenderer` / - `…DescriptionModule.Register` block for the same reason. Snippets should show the - control element and the relevant handler only. -- Type naming is **not uniformly prefixed**: `igGauges:XamRadialGauge`, - `igDataGrids:XamDataGrid`, but `ig:DataGridToolbar`. Do not machine-derive names from - a prefix rule. -- Suggested batching, largest first: `charts/types/*` (17 topics) → - `charts/features/*` (16) → `geo-map-*` (16) → gauges (3) → `dashboard-tile`, - `menus/toolbar`, `inputs/color-editor`, `charts/chart-overview`, `charts/chart-features`. -- Where a section's only sample is on the §4.3 triage list, keep the prose and - snippet and let the sample placeholder handle it (D5) — do not suppress the section. - -**Acceptance:** every in-scope topic has non-empty WinUI/Uno code for each section -that has code for the web platforms; `PlatformBlock` open/close counts balance -(`grep -c` check documented in the authoring guide). - -### Phase 5 — General / setup topics - -Strictly outside "components with samples" (D4), but the sites cannot ship without -them: `IGDOCS_PLATFORMS.root` points at `/general-getting-started`. - -Minimum set, WinUI- and Uno-specific language (Visual Studio / project templates / -`PackageReference` / licensed NuGet feed), modelled on the existing Blazor -installation topics ([general-nuget-feed.mdx](docs/xplat/src/content/en/components/general-nuget-feed.mdx), -[general-installing-blazor.mdx](docs/xplat/src/content/en/components/general-installing-blazor.mdx)): - -- Getting Started (WinUI) / Getting Started (Uno) -- Adding the licensed NuGet feed (can likely be shared with Blazor via group) -- Licensing -- Changelog (new per-platform topic, mirroring `general-changelog-dv-*.mdx`) - -Everything else under General (CLI, MCP, OSS vs premium, Next.js, update guide) is -web-only → `include: ["Web"]`. - -### Phase 6 — Validation & CI - -- `npm run check-relative-links:ci` — extend the generate chain and the platform lists - to cover WinUI/Uno. -- `npm run check-mdx-links:winui` / `:uno` — needs an API link index or an explicit - skip (R1). -- `npm run check:llms-metadata`, `npm run lint:md`, `npm run spellcheck` — add - `WinUI`, `Uno`, `XamDataGrid`, `XamRadialGauge`, `igGauges`, `igDataGrids`, - `SkiaSharp`, etc. to [cspell.json](cspell.json). -- CI/CD: add both platforms to [.github/workflows/ci.yml](.github/workflows/ci.yml), - [cd-xplat-en.yml](.github/workflows/cd-xplat-en.yml) and - [_cd-deploy.yml](.github/workflows/_cd-deploy.yml). -- Regression gate: web-platform page inventories unchanged before/after Phase 1. - -### Phase 7 — Re-incorporate the apiMaps (committed follow-up) - -Specified in full in **§6.4**. Replaces prefix-plus-casing guessing with the -product-generated canonical ↔ platform name mapping, by making the registry generator -alias-aware. Scheduled after the WinUI/Uno launch; **not optional** — it is the -mechanism the docs are supposed to use, and it also fixes the ≈460 `ApiLink`s already -failing on React. - -Blocking dependencies to raise now, since they sit outside this repo: -- product builds must emit `WinUI` and `Uno` entries in apiMap `names[]` -- the apiMaps need a durable home once `igniteui-xplat-docs` is retired - -Interim work must not create debt that this phase has to unpick — see §6.3.2 guardrail 4. - ---- - -## 6. Emission matrix (source of truth for Phase 1 migration) - -| Doc area | WinUI / Uno | Mechanism | -|---|---|---| -| Charts — types, features, overview, API | **emit** | default (shared) | -| Gauges — radial, linear, bullet | **emit** | default | -| Maps — `geo-map*`, `maps/map-api` | **emit** | default | -| Data Grid — `grids/data-grid/*` (32, ported) | **emit, exclusively** | `include: ["NonWeb"]` | -| `grids/grids.mdx` + `grids/theming.mdx` — the legacy DataGrid landing/theming pages, dead today (excluded for all four web platforms) | **emit, exclusively** — becomes the WinUI/Uno grid landing page. Provisional reading, revisit during Phase 3 | `include: ["NonWeb"]` | -| `grids/data-grid.mdx` — despite the name, the **web** Grid landing page (`{GridSample}`) | hide | `include: ["Web"]` | -| `dashboard-tile`, `menus/toolbar`, `inputs/color-editor` | **emit** | default | -| Zoom Slider — control is coming; no WinUI sample yet | **emit** | default; sample is a backfill item | -| General — Getting Started / NuGet / Licensing / Changelog | **emit** (new, Phase 5) | new topics | -| Financial / Stock Chart | hide | `include: ["Web"]` | -| Grid, Tree Grid, Hierarchical Grid, Pivot Grid, Grid Lite, List, Tree | hide | `include: ["Web"]` | -| Spreadsheet, Excel Library, Excel Utility | hide **for now — deferred, see §6.1** | `include: ["Web"]` | -| Inputs (except Color Editor), Layouts, Notifications, Scheduling, Menus (navbar / drawer) | hide | `include: ["Web"]` | -| Chat, Query Builder, Dock Manager, Tile Manager | hide | `include: ["Web"]` | -| AI-Assisted Development (Agent Workflow, Skills, CLI MCP, Theming MCP, Maker Framework) | hide **for now — deferred, see §6.1** | `include: ["Web"]` | -| Themes / Styling, CLI, Next.js, Update Guide, Localization(i18n) | hide | `include: ["Web"]` | - -### 6.1 Deferred, not rejected - -Two areas are excluded in this pass but are expected back. **Adapt the existing -topics rather than authoring new ones** when they return — the prose is largely -platform-neutral and the exclusion is a scoping decision, not a content judgement. - -| Area | Why deferred | When it returns | -|---|---|---| -| **Excel Library / Spreadsheet / Excel Utility** (18 topics) | No WinUI samples yet | Re-include by relaxing `include: ["Web"]` on those toc entries and adding `NonWeb` snippets; the Excel document API is largely platform-agnostic so most prose survives as is | -| **AI-Assisted Development** (5 topics) | Web-tooling framing (npm/CLI/MCP setup) | Same mechanism; needs the setup language re-cut for Visual Studio / NuGet before it emits | - -Keep both out of the Phase 1 `include: ["Web"]` migration script's "permanent" bucket -so re-inclusion is a one-line toc change per entry, not a re-port. - ---- - -## 6.2 API link registry — how it is produced, and what WinUI/Uno needs - -Assumption for this plan: **WinUI and Uno will have an API link index.** The chain -below is traced end to end; the one genuinely missing piece is called out in step 5. - -### The chain today (Blazor — the exact template for a .NET platform) - -| Step | Where | What happens | -|---|---|---| -| 1 | `api-docs/scripts/blazor.js fetch` | Restores `IgniteUI.Blazor.Trial` NuGet packages (feed in `api-docs/scripts/Nuget.Config`) and extracts the DLLs into `blazor_build/temp/` | -| 2 | `dotnet tool run docfx blazor_build/docfx-build-IgniteUI.Blazor.json` | docfx metadata over `temp/IgniteUI.Blazor.dll`, filtered by `IgniteUI.Blazor.filterConfig.yml` → `temp/api/*.yml` → `temp/api-json` (+ `temp/api-raw`) | -| 3 | `blazor_build/blazor-merge-toc.js` | Merges to one per-package JSON under `api-docs/src/data//` (gitignored — fetched, not committed), registered in `api-docs/src/data/platforms-config.json` with a version entry and `jsonFile` | -| 4 | api-docs Astro site | Renders `/api/blazor/IgniteUI.Blazor/latest/classes/IgbDataGrid`; `src/data/api-search-index.ts` walks the same JSON for the site's own search index | -| 5 | **nothing** | ⚠️ **The ApiLink registry has no generator.** The four snapshots in this repo were added by hand in PR #256 (Jun 2026, "Add local ApiLink registry snapshots"). `api-docs` produces a *search* index (`u/n/k/v/p/g/m`), which is a **different shape** from the ApiLink registry (`p/k/u/s/m` keyed by symbol name) | -| 6 | `igniteui-documentation` | Snapshots committed at `src/data/api-link-index//{staging,prod}-latest.json` + `manifest.json`; loaded by `loadApiLinkIndex()` — [src/lib/platform-context.ts](src/lib/platform-context.ts) | -| 7 | `igniteui-astro-components/src/components/mdx/ApiLink/ApiLink.astro` + `api-link-index.ts` | Resolves symbol → URL at render time | - -### Registry contract (from a working snapshot) - -```jsonc -{ - "platform": "blazor", "version": "latest", "generatedAt": "2026-06-03T…", - "packages": ["IgniteUI.Blazor", "IgniteUI.Blazor.Documents.Excel", …], - "symbols": { - "IgbDataGrid": [{ - "p": "IgniteUI.Blazor", // package id - "u": "/api/blazor/IgniteUI.Blazor/latest/classes/IgbDataGrid", // URL path - "k": "class", "s": "classes", // kind, url segment - "m": { "ResolveEventBehavior()": "ResolveEventBehavior()", … } // member → anchor - }] - } -} -``` -Angular ≈ 7.6 MB / Blazor ≈ 13.1 MB / React ≈ 6.6 MB (2,619 symbols) / WC ≈ 5.5 MB. - -**The resolver is already platform-agnostic** — [api-link-index.ts](../igniteui-astro-components/src/components/mdx/ApiLink/api-link-index.ts) -takes `prefix` / `prefixed` / `suffix` / `classSuffix` from platform context and only -requires a `symbols` map. No resolver change is needed for WinUI/Uno; the single -package-side blocker is the `PlatformName` union at -`igniteui-astro-components/src/lib/types.ts:1`. - -### Work required - -1. **`api-docs`: a `winui_build/` docfx pipeline** mirroring `blazor_build/`. Metadata - inputs are the assemblies the samples reference — - `Infragistics.WinUI.{Charts,DataGrid,Gauges,Maps,Layouts,Inputs,DataVisualization}` - plus `Infragistics.Core{,.Charts,.DataGrid,.DataVisualization,.Maps}` and - `Infragistics.Core.Platform.WinUI`. Needs a `filterConfig.yml`, a fetch step, and - `platforms-config.json` entries for `winui` (and `uno`). **Open:** is there a - `Infragistics.WinUI.*.Trial` NuGet package to fetch, or must this build from the - `dev-tools/XPlatform` output that `winui-samples/**/Sample.csproj` references by - `HintPath`? -2. **Write the missing registry generator** (step 5) — best placed in `api-docs`, which - already holds the source JSON and the URL-shaping logic. Model it on - `src/data/api-search-index.ts`, which walks exactly the right data and reuses - `api-sections.ts` for member categorization; emit the `p/k/u/s/m` shape instead. - This also retires the hand-maintained snapshots for the four existing platforms. -3. **`igniteui-astro-components`:** extend `PlatformName` (public repo, branchable). -4. **`igniteui-documentation`:** commit `src/data/api-link-index/{winui,uno}/*.json`, - add both to `manifest.json`, and add `winui` / `uno` to - `API_DOCS_FOLDER_BY_PLATFORM` — [src/integration.ts:118](src/integration.ts#L118). - ---- - -## 6.3 Platform name divergence — what affordance exists - -Short answer: **there is no rename map at render time.** Unlike the -`igniteui-xplat-docs` gulpfile, which resolved canonical → platform names through the -product-generated `apiMap/` JSON on every build, the Astro `ApiLink` resolves -*mechanically* against the registry. The affordances are: - -| Affordance | Handles | Does not handle | -|---|---|---| -| `prefix` + `prefixed` prop (default `true`) | `Igx` / `Igr` / `Igc` / `Igb` prefixing. `buildCandidateNames()` tries **both** `${prefix}${type}` and the bare `type` | — | -| `classSuffix` + `suffix` prop | Angular/WC `…Component` suffix | — | -| Case-insensitive member match (`member`, `upperFirst`, `lowercase`, then normalized scan) | Blazor `SuspendNotifications()` ↔ React `suspendNotifications` | genuine renames | -| `pkg`, `kind` props | ambiguity between packages/kinds | renames | -| `label` prop | rendered text only | resolution | -| `PlatformBlock` around the whole `ApiLink` | anything, by hand | scale | -| Statuses `resolved / ambiguous / member-missing / missing / unavailable` | unresolved renders as highlighted code text + checker report | — | - -The apiMap knowledge **is** used in this repo, but only at **authoring time**: -[docs/xplat/scripts/resolve-api-links.mjs](docs/xplat/scripts/resolve-api-links.mjs) -reads the `apiMap/*/*.apiMap.json` files (sibling `igniteui-xplat-docs` clone, else -fetched from GitHub raw) plus each topic's `mentionedTypes` frontmatter to convert -backticked names into ``. It is **not wired into any npm script or workflow** — -a one-shot migration tool, not a build step. - -### Measured exposure for the in-scope WinUI/Uno topics - -| `` — 2,150 refs | count | -|---|---| -| canonical name identical to the doc name | 1,611 | -| doc uses the **unprefixed stem** (`RadialGauge`, `DataChart`, `DataLegend`, `GeographicMap`, `BulletGraph`, `LinearGauge`, `PieChart`, …) | 525 (18 distinct) | -| true divergence — `DataSource` → `IDataSource` | 14 (1 distinct) | - -| `` — 1,034 refs | count | -|---|---| -| identical to canonical modulo casing | 1,002 | -| absent from the apiMap | 32 | -| **true rename** | **0** | - -The apiMap contains 7,418 non-casing member renames (`ItemsSource` → `dataSource`, -`HighlightedItemsSource` → `highlightedDataSource`, `XAxis` → `barFragmentXAxis`, -`.ctor` → `init`), but they sit on members these DV topics never reference. **The -rename problem is real in the data and almost absent in the content we need.** - -### Consequence — use the prefix mechanism, not an alias table - -Verified against the actual WinUI sources (1,913 files in `winui-samples`): the -**controls** are `Xam`-prefixed (`XamRadialGauge`, `XamDataChart`, `XamDataGrid`, -`XamGeographicMap`, `XamBulletGraph`, `XamLinearGauge`, `XamPieChart`, `XamSparkline`, -`XamDoughnutChart`, `XamDataLegend`), while **helper types are not** — real WinUI uses -`RadialGaugeRange` and `LinearGraphRange`, even though the apiMap's legacy -`originalName` for those is `XamRadialGaugeRange` / `XamLinearGraphRange`. So the -apiMap originals are legacy-XAML canonical and are **not** a reliable source of modern -WinUI names. - -Because `buildCandidateNames()` already tries the prefixed **and** bare form, setting -`prefix: 'Xam'` with `prefixed: true` (no `classSuffix`) resolves both shapes with no -new machinery: `RadialGauge` → tries `XamRadialGauge`, `RadialGauge`; `RadialGaugeRange` -→ tries `XamRadialGaugeRange`, `RadialGaugeRange`. Whichever the registry actually -contains wins. *(This supersedes an earlier `prefixed: false` note.)* - -### 6.3.1 The mechanism is heuristic, and it fails silently - -Two structural weaknesses, both confirmed by reading `findIndexedSymbol()` and by -measurement. **Neither is acceptable to rely on for a new platform**, so the mitigation -in §6.3.2 is part of the plan, not an optional extra. - -**(a) "Which classes don't take a prefix?" — it does not know.** It brute-forces the -candidate list `[Igr+Type+Suffix, Igr+Type, Type+Suffix, Type]` and returns the **first -candidate name that yields exactly one match**. Unprefixed classes work only by the -*absence* of the prefixed name from the registry. When **both** exist with different -URLs, the prefixed one silently wins and the bare type is unreachable — and no -ambiguity is reported, because ambiguity is only detected *within* a single candidate -name, never across candidates: - -| Platform | Shadowed bare names | Examples | -|---|---|---| -| React | 8 | `Calendar`, `Axis`, `Legend`, `Series`, `SeriesCollection`, `Sparkline`, `AxisCollection` | -| Blazor | 7 | `Axis`, `Legend`, `Series`, `SeriesCollection`, `Size`, `Sparkline` | -| Web Components | 4 | `SortingExpression`, `RenderFunction`, `AxisCollection`, `SeriesCollection` | -| Angular | 3 | `TransactionService`, `AxisCollection`, `SeriesCollection` | - -The only per-type opt-out is writing `prefixed={false}` by hand in the MDX. - -**(b) Per-platform member renames have no affordance at all.** Only casing variants are -tried (`member`, `upperFirst`, `lowercase`, then a normalized scan). A genuine rename -returns `member-missing`, the link degrades to highlighted code text, and nothing but -the checker notices. - -**Current state for a shipping platform** — the resolver re-implemented faithfully and -run over all 280 English xplat topics for React, with `PlatformBlock` filtering applied -and `{Token}` types excluded (n = 6,182): - -| Outcome | Count | Share | -|---|---|---| -| resolved | 5,722 | 92.6% | -| `missing` | 270 | 4.4% | -| `member-missing` | 190 | 3.1% | - -≈460 `ApiLink`s already fail on React. The failures are exactly the categories in -question — `GeographicMap.WindowRect`, `SeriesViewer.Legend`, `CrosshairLayer.fill`, -`PolarLineSeries.line` (renames); `DataGrid`, `DataGridColumn`, `DataSource` (the legacy -DataGrid types — **the ones the Phase 3 port depends on**, absent from the React -registry today); and hardcoded cross-platform names leaking into shared content -(`IgbDataChart`, `IgcGrid`, `IgxDataChart`). - -### 6.3.2 Interim posture — proceed on the heuristic, with eyes open - -**Decision (D6): ship WinUI/Uno on the existing mechanism for now.** Set -`prefix: 'Xam'` with `prefixed: true` and no `classSuffix`; the resolver's -prefixed-then-bare candidate order covers `RadialGauge` → `XamRadialGauge` and -`RadialGaugeRange` → `RadialGaugeRange`. Accept that a share of links will not resolve -and will render as highlighted code text. - -This is explicitly a **stopgap**, accepted to unblock Phases 0–5, not the intended end -state. The proper mechanism is §6.4 and is a committed follow-up, not a contingency. - -Interim guardrails: - -1. **Emit exact names, not stems,** in the generated registry — keep both the `Xam` and - bare forms as real keys wherever both types exist. -2. **Make cross-candidate collisions visible.** Have `check-mdx-links` report when more - than one candidate name matches with different URLs; today that resolves silently to - the prefixed one. Benefits all four existing platforms immediately. -3. **Treat `member-missing` as a CI signal, not noise** — it is currently the only - automated detector of a rename. Triage the ≈190 existing React cases before the new - platforms add their own. -4. **Do not hand-patch MDX at scale** to work around resolution failures. Per-type - `prefixed={false}` props and `PlatformBlock`-wrapped `ApiLink`s are debt that §6.4 - would then have to unpick. Cap hand fixes to the bounded set: the 32 unmapped - members and the 14 `DataSource` → `IDataSource` refs. - ---- - -## 6.4 Planned: restore apiMap-driven name resolution - -**Position: the apiMaps are the correct mechanism for cross-platform name resolution, -and prefix-plus-casing guessing is not.** The product builds already generate the -authoritative canonical ↔ platform-specific mapping for every type and every member; -`igniteui-xplat-docs` consumed it on every build. The Astro docs dropped that and -substituted a heuristic, which is why ≈460 `ApiLink`s silently fail on React today -(§6.3.1). This section is a committed workstream to put it back — scheduled after the -WinUI/Uno launch, but planned and specified now so the interim work does not obstruct it. - -### What the apiMaps provide - -`igniteui-xplat-docs/apiMap//*.apiMap.json`, generated by the product builds: - -```jsonc -{ - "types": [{ - "originalName": "PropertyEditor", // canonical (legacy XAML) - "originalNamespace": "Infragistics.Controls.Description", - "packageName": "igniteui-core", - "names": [{ "platform": "WebComponents", "mappedName": "IgcPropertyEditor", "fileName": "…" }], - "members": [{ "originalName": "ActualProperties", - "names": [{ "platform": "WebComponents", - "mappedName": "actualDataSource", "mappedType": "…" }] }] - }] -} -``` - -Coverage today: ~3,008 types per web platform (Blazor 2,349) and **7,418 non-casing -member renames** — `ItemsSource` → `dataSource`, `HighlightedItemsSource` → -`highlightedDataSource`, `XAxis` → `barFragmentXAxis`, `.ctor` → `init`. None of these -are recoverable by any prefix or casing rule. - -### Design — bake the mapping into the registry, not the resolver - -Preferred approach, because it needs **no** change to `igniteui-astro-components` and -**no** change to MDX: - -1. The registry generator (§6.2 step 2) takes the apiMaps as a second input alongside - the docfx/TypeDoc JSON. -2. For each symbol it emits, it adds **alias `symbols` keys** for every platform's - `mappedName`, and **alias entries inside `m`** pointing at the canonical member's - anchor. `` then resolves against WinUI's `ItemsSource` - anchor on the WinUI build, and against `dataSource` on the WC build. -3. Aliases carry provenance so the checker can distinguish "resolved via alias" from - "resolved directly" and report alias coverage per platform. -4. **Precedence, not replacement.** The existing fuzzy matching (platform prefix, - class suffix, case-insensitive members) **stays in place as the fallback**. An - apiMap direct hit is authoritative and wins; where the apiMap has no entry, the - current heuristic still applies. This keeps every link that resolves today - working, and confines the change to adding correctness where the map knows better - — rather than a flag-day switch to registry-only resolution. - - Resolution order becomes: **apiMap direct hit → registry exact name → prefixed / - suffixed / case-folded candidates (today's behaviour)**. - -Alternative, if aliasing in the registry proves insufficient: restore an authoring-time -resolution pass — extend -[docs/xplat/scripts/resolve-api-links.mjs](docs/xplat/scripts/resolve-api-links.mjs) -from a one-shot into a build step that rewrites canonical names to per-platform names in -generated output. Rejected as the primary approach because it re-introduces a build-time -content rewrite and cannot help the `ApiLink` runtime. - -### Upstream dependency — apiMaps must cover WinUI and Uno - -`names[]` currently carries only `Angular`, `React`, `WebComponents`, `Blazor`. **The -product builds must emit `WinUI` and `Uno` platform entries.** Do **not** substitute -`originalName`: it is legacy XAML and diverges from shipping WinUI — the map says -`XamRadialGaugeRange` / `XamLinearGraphRange` where real WinUI has `RadialGaugeRange` / -`LinearGraphRange` (verified against 1,913 files in `winui-samples`). Without real WinUI -entries the alias table is one-directional: usable to translate *web* names onto a WinUI -registry keyed by canonical names, but not authoritative for what WinUI actually calls -things. - -Also to settle: where the apiMaps live once `igniteui-xplat-docs` is retired. Today the -only consumer resolves them from a sibling clone or GitHub raw -(`resolve-api-links.mjs`). They need a durable home — published artifact from the -product build, or vendored into `api-docs` beside the docfx output. - -### Acceptance criteria - -- Registry generator emits aliases; alias coverage reported per platform. -- React `ApiLink` resolution ≥ 99% (from 92.6%), `member-missing` → near zero. -- Fuzzy matching retained as the fallback; **no link that resolves today regresses**. -- Cross-candidate shadowing (`Calendar`, `Axis`, `Legend`, `Series`, …) reported by the - checker, and resolved by an apiMap direct hit wherever the map covers the symbol. -- `DataGrid`, `DataGridColumn`, `DataSource` resolve on every platform that documents - them. -- No `prefixed={false}` or `PlatformBlock`-wrapped `ApiLink` remains as a workaround for - a name that the apiMap could have resolved. - ---- - -## 6.5 Snippet generation: translation now, common-JSON emission later - -### Where Phase 4 got to - -The implemented pass ([add-xaml-snippets.mjs](docs/xplat/scripts/add-xaml-snippets.mjs)) -*translates*: it reads the sibling web snippet in each group, maps names through the -apiMap, and sources element/attribute spellings and values from the real -`winui-samples` markup. Result: **84 of 149 snippet groups** covered, 168 blocks -across both locales, all well-formed, zero element names absent from the sample -corpus. - -Every remaining gap and every bug found along the way traces to the same root cause — -translation has to *infer* what the target platform needs: - -| Found by | Issue | -|---|---| -| review | children dropped (31 groups flattened away the nested structure the topic taught) | -| review | `*Name` properties are string references on the web, object bindings in XAML | -| review | data-chart series↔axis wiring differs structurally from web | -| accuracy test | apiMap inversion is ambiguous (`dataSource` → `ItemsSource` *or* `DataSource`) | -| accuracy test | dotted canonicals (`shapeStyle.strokeThickness`) are paths, not property names | -| XML check | 32 code-only groups cannot be served at all — no markup to translate | - -### The better foundation - -`igniteui-xplat-examples` already has the facility to take a **common JSON syntax and -emit the markup and code-behind for a sample, per platform**. Pointing that at snippets -removes the inference entirely: - -- no web→XAML translation, so no apiMap inversion and no invention risk -- nesting is correct by construction — the emitter knows that XAML needs - `` where the web platforms take plain children -- **code-behind comes free**, which is the only way the 32 code-only groups get served -- **a snippet can force something into code-behind** rather than markup, per platform. - This is not a nicety: the same concept is markup on one platform and imperative on - another (a XAML `{Binding ElementName=…}` versus a web `xAxisName="xAxis"` string; - a collection built in `OnLoaded` versus declared inline), and the doc often wants - the imperative form shown deliberately. Translation cannot decide this — it only - sees the shape the web snippet happens to have. -- one mechanism serves every platform, including WPF and MAUI when they arrive -- the `*Name` / axis-binding classes of bug stop being possible - -**The missing capability is subsetting**: taking just the portion of a sample that a -given snippet should show. Today a sample is all-or-nothing, which is why the doc body -carries hand-sculpted minimal illustrations while the sample widget serves the full -source. Snippet-level regions in the JSON (named, referenced from MDX) would close it. - -### Sandbox checking - -Worth building either way, and it is what makes "all snippets check" enforceable rather -than aspirational. Two tiers, because they have different reach: - -1. **Static validation — runs anywhere, including CI on Linux.** Verify every element, - property and enum value against the apiMap plus the sample corpus, and parse each - XAML block as XML. This is what Phase 4 already does; it catches names and shape but - not types or bindings. -2. **Compile validation — requires Windows for WinUI.** Emit a project per snippet (or - one project with many snippet `UserControl`s), build it, and attribute errors back to - the originating snippet. This catches wrong types, wrong enum members, and broken - bindings — the classes static checking cannot see. **It cannot run on macOS**, so it - belongs in a Windows CI job. - -The hard part is the ancillary binding requirements, and `LibraryProjectEmitter` -(`dev-tools/XPlatform/Main/Source/LibraryProjectEmitter/`) is the natural home: a mode -that emits all library items for WinUI at all required xmlns aliases, **exposing every -data alias on one common data context**, so any snippet resolves without per-snippet -scaffolding. - -Measured against the 84 blocks currently emitted, that context is small: - -| Requirement | Count | Values | -|---|---|---| -| Data-context properties bound | 11 | `EmployeesSalesData` (17), `ProductOrders` (4), `WorldCities`, `TemperatureAnnotatedData`, `CountryRenewableElectricity`, `CountryNames`, `WorldCapitals`, `SalesData`, `CountryRenewableCallouts`, `RealEstateData`, `NorthwindOrders` | -| `ElementName` targets | 4 | `grid`, `chart`, `xAxis`, `yAxis` | -| Distinct XAML elements | 38 | `XamDataGrid`, `TextColumn`, `ColumnWidth`, `GeographicSymbolSeries`, `CategoryXAxis`, … | - -The same two-tier approach generalises to the other platforms — a React/WC/Blazor -snippet can be type-checked or compiled by the equivalent harness, which would catch -the pre-existing web-side defects this work already surfaced by accident (the jp -`IgbLinearGauge`, the unterminated tag, `IgbDataChart` leaking into shared content). - -### 6.5.2 Decision — OPEN, and it should not be settled by default - -Both paths converge on the **same prerequisite**, which is what makes this worth -deciding now rather than drifting: - -> The 33 code-only groups (22%) are the ones translation **cannot serve at all** — there -> is no markup to translate, so they need C# either lifted from `Sample.xaml.cs` by hand- -> rolled extraction, or emitted by forcing code-behind. Either way, code-behind -> generation is the next piece of work. - -That symmetry is the decision criterion: - -| | Translation (continue) | Common-JSON emission | -|---|---|---| -| Covered today | 84/149 (56%) | 0, but the resolution table seeds it (§6.5.1) | -| Code-only groups | hand-rolled C# extraction from `Sample.xaml.cs` | forced code-behind, per platform | -| Verifiability | markup provable (copy + name-check + XML parse); **C# not locally verifiable** | three tiers: generated JSON schema validates the definition, emitter is deterministic, compile sandbox proves the output builds | -| Nesting / `*Name` / axis wiring | per-class guards, indefinitely | correct by construction | -| Other platforms, WPF/MAUI later | re-translate each time | same mechanism | -| Needs | nothing new | subsetting mechanism, bolstered forced-code-behind, back-conversion, emitter run environment | - -**Consequence: the next increment of translation work is precisely the part that gets -thrown away if emission wins** — and it is also the least verifiable part, since there is -no local compile check for generated C#. Spending it twice is the avoidable outcome. - -**A generated JSON validation schema closes the verification gap.** A schema can be -emitted for the input JSON, derived from the same component metadata the renderer uses — -so it stays in sync with the API surface instead of being hand-maintained. That matters -more than it first appears: - -- **It replaces approximation with authority.** The translation path had to *infer* - whether a name was real, via apiMap lookup plus a 279-sample corpus check — which is - why absence from the corpus was only weak evidence. A generated schema validates - element names, property names and enum values against the actual API surface. -- **It catches errors at authoring time**, in the editor, before emission — and in CI as - a cheap gate that runs anywhere, no Windows needed. -- **It makes the subsetting syntax discoverable and validated**, which answers the - earlier objection that a prefix-based marker would be ad hoc: whatever the selector - shape, the schema documents and enforces it. -- Combined with the compile sandbox it gives two independent tiers — the schema proves - the *definition* is well-formed and references real API, the sandbox proves the - *emitted output* builds and binds. - -**Feasibility — the honest read.** The pieces all exist; none of it is speculative: -`CodeGeneratingComponentRenderer` already emits samples and can pick markup or code; -the sample JSON already exists, so back-conversion is *mapping*, not authoring; -`LibraryProjectEmitter` is the natural home for the sandbox project and the common data -context, which the measurements show is small (11 bound properties, 4 `ElementName` -targets). The two genuine unknowns are: - -1. **How universally forced code-behind can be made to work**, per platform — 22% of - groups depend on it, and support is currently partial. This is the main feasibility - risk and should be spiked first, because it gates the emitter path *and* is needed by - the translation path anyway. -2. **Where the emitter runs.** Node against the latest WC npm packages is cheap but - exercises the already-working platform; the WinUI alpha/released packages test the - platform that actually needs proving, at the cost of a Windows job. - -**Suggested way to settle it:** spike (1) against a handful of the 33 code-only groups — -one grid, one chart, one gauge. If forced code-behind can produce those three, emission -is feasible and translation should stop where it is (84 groups stand as-is, no C# -extraction written). If it cannot, that is decisive too: the translator continues and the -sandbox becomes the way to keep its output honest. - -Either way, the static checks stay: apiMap + corpus name verification, XML -well-formedness, en/jp lockstep, and the byte-identical web-platform regression. They -caught every defect in this work so far and are independent of which path wins. - -When the emitter path is picked up, the sequence is: sample subsetting in the common -JSON → per-platform snippet emission (with forced code-behind) → -`LibraryProjectEmitter` sandbox mode exposing the common data context → compile check in -Windows CI, static check retained as the fast gate. The requirement tables above are the -starting spec. - -### 6.5.1 Design notes for the deferred work - -**What subsetting actually has to express.** Measured over the 149 snippet groups in -non-suppressed topics: - -| Share | Case | Consequence for the design | -|---|---|---| -| 93 (62%) | component **with its children shown** | the dominant case: "root element + the children under discussion", not arbitrary fragment extraction | -| 33 (22%) | element + properties mutated from **code-behind** | forced code-behind is load-bearing, not an edge case — see the prerequisite below | -| 9 (6%) | anemic full component definition | falls out of the dominant case with an empty child selection | -| 2 (1%) | individual child, surrounding scope implied | rare; a "root + implied ancestors" flag rather than its own mechanism | -| 12 (8%) | install commands / prose-only code | out of emitter scope; authored by hand | - -So the mechanism needs: pick a root, pick which of its properties to show, pick which -children to include, and force any of it to code-behind. Arbitrary slicing is not -required. - -**Prerequisite: forced code-behind needs bolstering before this path is viable.** -`CodeGeneratingComponentRenderer` supports forcing code in some cases, but not -universally, and coverage differs by platform. At 22% of all groups — the second-largest -case, and the one the translation pass cannot serve at all — this is not a detail to -discover late. Scope it as explicit work in its own right: audit which -element/property/platform combinations can currently be forced to code-behind, then -close the gaps, per platform. Until that holds, the emitter path cannot replace -hand-authored snippets for a fifth of the corpus, and any migration would stall exactly -where the translator already stalls. - -**Marker syntax — a name prefix is probably not enough.** A prefix on property or type -names (stripped at emit time) keeps the sample JSON valid and colocates the intent, but -it cannot express *per-snippet* membership, and one sample commonly backs several -snippets — `grids/data-grid/overview.mdx` alone draws four groups from one sample. A -property in snippet A but not snippet B has no single prefix. Options that do scale: - -- **Named snippet regions declared beside the sample definition** — each names a root, - an include list of properties, a child selection and an `emitAs: markup | code-behind`. - The sample definition stays pristine and MDX references `sample=X#snippet=sorting`. - Costs a small schema. -- **Tags on elements/properties**, with a snippet selecting by tag. Colocated and - supports many snippets per sample, at the price of verbosity in the sample JSON. - -**Back-conversion is cheaper than it looks.** Converting today's snippets to shared JSON -is *not* authoring from scratch: the sample JSON already exists (it is what emits the -samples), so back-conversion means mapping each doc snippet to a subset selector over an -existing sample. Phase 4 already computed that mapping — `add-xaml-snippets.mjs` resolves -each group to a concrete (sample, element) pair, and 84 groups resolve today. That -resolution table is the seed for back-conversion, and the residual gaps are already -enumerated by class. - -**Where to run the emitter.** Node against the latest Web Components npm packages is the -cheaper CI path but exercises the platform that already works; running the emitter from -the alpha/released **WinUI** packages tests the platform whose output is least proven and -is the only way to validate XAML-specific shapes (property-element collections, element -bindings). Suggested split: WinUI emitter run as the correctness gate in Windows CI, -node/WC as a fast smoke check everywhere else. - ---- - -## 6.6 Spike findings — emitter path is more feasible than assumed - -Researched against `dev-tools` on branch **`gmurray/winui`**, which already carries WinUI -emission work. Three questions, three answers. - -### 1. Forced imperative code emission — in better shape than feared - -There are **two** granularities, not one: - -| Mechanism | Scope | State | -|---|---|---| -| `CodeGenerationRendererOptions.ForceCodeBehind` | whole emission | implemented for every doc-relevant platform | -| `MustSetInCode(context, val)` | **per property**, virtual | implemented, and already overridden by the WinUI emitter | - -Markup *and* code-behind emitters both exist for Angular, React, WebComponents, WPF, -WinUI/Uno and Blazor. Code-behind-only platforms (WindowsForms, Kotlin, Swift) are -irrelevant to this doc set. - -Two details that matter: - -- `CodeGenerationTargetPlatforms.WinUI` **and `.Uno` already exist**, dispatching to - `WinUIXamlCodeGeneratingComponentRendererCodeEmitter : WPFXamlCodeGeneratingComponentRendererCodeEmitter`. - The subclass exists specifically to handle where WinUI XAML cannot do what WPF can — - `string[]` and typed enum collections have no property-level TypeConverter and a null - getter, and `x:Static` is WPF-only — so it routes those through `MustSetInCode` instead. - That is real, considered work, not a stub. -- **"Cheat and use WPF" is already the implemented design for code-behind.** WinUI/Uno - `ForceCodeBehind` deliberately returns the *WPF* code-behind emitter, which already - rewrites namespaces on the way out: `System.Windows.Media` → - `Microsoft.UI.Xaml.Media` + `Windows.UI` + `Microsoft.UI`, and - `System.Windows.Controls` → `Microsoft.UI.Xaml.Controls`. - -**So the gap is not in the C# mechanism.** Per-property routing to code already exists, -which is what case (c) — "show how to mutate properties from code-behind" — needs. - -### 2. Node + public packages, or .NET? - -The emitters **are transpiled and ship in `igniteui-core`**. Present in the built TS -surface: Angular (template + code-behind), React (markup + code-behind), WebComponents -(markup + code-behind), Blazor (razor + code-behind), GTK, Kotlin, Swift, WindowsForms, -and — importantly — **`WPFXamlCodeGeneratingComponentRendererCodeEmitter` and -`WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter`**. - -Not shipped: the **WinUI subclass**, because it is new on this branch and has not been -transpiled yet. - -The one genuinely missing JS capability is **loading the code-gen library from disk**: - -| | .NET | JS/TS | -|---|---|---| -| `FromJson(string)` / `fromJson` | yes | yes | -| `ToJson()` / `toJson` | yes | yes | -| Load from disk (`File.ReadAllText`, `-CONFIG.json`) | yes — several paths | **no** | - -So JS needs a **prebaked JSON of the library**, exactly as suspected. - -#### Preferred fix: make `CodeGenerationLibrary` usable from web, via injected file access - -Since the product will need amending anyway for subsetting, the better move is to make the -library loadable from JS rather than to reimplement its behaviour — the categorization and -partitioning rules are the valuable part and must not be duplicated or allowed to drift. - -**The product must never reference node.** The dependency is injected inward: - -``` -CodeGenerationLibrary.FromFolder(path, fileAccess) // fileAccess passed in - │ - ├── .NET caller → System.IO-backed implementation (stays behind #if WPF || PCL) - └── node caller → fs-backed implementation written in TS/JS, outside the product -``` - -The interface itself is plain and transpiles; only the *System.IO implementation* stays -guarded. The product gains no knowledge of node, and the JS build carries no `System.IO` -reference. - -**The required surface is small** — 7 call sites over 4 APIs: - -| API | Call sites | -|---|---| -| `File.ReadAllText` | 6 | -| `File.Exists` | 5 | -| `Directory.Exists` | 3 | -| `Path.*` (`GetFileNameWithoutExtension`, `GetExtension`, `GetDirectoryName`, `Combine`) | 5 | -| `DirectoryInfo.GetDirectories()` / `.GetFiles()` | 2 | - -so roughly `fileExists`, `directoryExists`, `readAllText`, `getFiles`, `getDirectories`, -plus pure-string path helpers. - -**What then stays shared, in one place** — this is the behaviour worth protecting: -`GetItemType`'s data/template/event-handler categorization; `AddPlatformsFromFile`'s -per-type dispatch; the region extraction regexes (`begin template`, `begin content`, -`begin imports`, `begin styles`, `begin supportingMethods`, `begin supportingTypes`, -`begin eventHandler`, `begin emitterOnly`, `begin data`, `begin async data`); -`LoadConfig`'s `-CONFIG.json` handling; the `INFO.txt` / `SOURCE.txt` skips; and the -`Tests` folder recursion in `ProcessFolders`. - -**One non-IO blocker to fix in the same change.** `GetPlatformFromFile` resolves a -filename to a platform by reflection (`typeof(CodeGenerationLibraryItemPlatform).GetFields()`), -which will not transpile. `ParsePlatform` next door does the same job with -`Enum.TryParse(val, true, out p)` and sits *outside* the guards — so it already transpiles. -Rewriting `GetPlatformFromFile` to use that removes the last platform-specific dependency, -after which there is little reason for the `#if WPF || PCL` guard around the loading logic -to exist at all. - -**Note the build implication:** node needs the *rebuilt* `igniteui-core` TS, not the -currently published npm package — the disk-loading gap persists until the product change -is transpiled. - -#### Verified build facts (spike, `dev-tools` branch `gmurray/json-snippets`) - -| Check | Result | -|---|---| -| Local transpile on **macOS** — `dotnet build DV.Shared.DESCRIPTION.JS.csproj` | **works**: 0 errors, ~72s (dotnet 8.0.414; `Translator/bin/buildNC` is prebuilt) | -| TS emitted | `TS/igniteui-core/CodeGenerationLibrary.ts` + `…Item`, `…ItemType`, `…ItemPlatform`, `…ItemContentConfiguration` | -| Emitters emitted | all, including **`WPFXamlCodeGeneratingComponentRendererCodeEmitter.ts`** and `WPFCodeBehindCodeGeneratingComponentRendererCodeEmitter.ts` | -| Disk loading in the JS surface | **absent** — built TS exposes only `fromJson` / `toJson` / `hasItem` / `getKeys` / `getItem`, confirming the `#if WPF \|\| PCL` guard is what excludes it | -| WinUI emitter on this branch | **absent** — that work is on `gmurray/winui`; so XAML emission here means the **WPF** emitter, which is consistent with snippets omitting `xmlns` | - -**Ingestion pattern to copy** — `XSharpTestHost.WC` already does exactly what the spike -needs, so it is a proven mechanism rather than a new one: - -- `gulp productSource` copies local TS from `Source/*.JS/**/bin/**/TS/**/*.ts` (plus - `Translator/bin//TS`, `WCCore`, `TSCore`) into `src/ig/igniteui-core`, synthesising - an `index.ts` per directory. -- `tsconfig.json` `paths` map `igniteui-core/*` → `src/ig/igniteui-core/*` **first**, with - `node_modules/igniteui-webcomponents-core` as fallback — so a local build shadows the - published package without any other change. - -#### Product change — done, plus one blocker found by doing it - -Applied to `CodeGenerationLibrary.cs` on `gmurray/json-snippets`: - -- **`ICodeGenerationLibraryFileAccess`** — 5 members (`FileExists`, `DirectoryExists`, - `ReadAllText`, `GetFiles`, `GetDirectories`), marked `[DontHide]` / `[DontObfuscate]`, - passed *into* `CodeGenerationLibrary`. The product references no host file API. -- **`SystemIOCodeGenerationLibraryFileAccess`** — the System.IO implementation, left - behind `#if WPF || PCL`; `FromFolder(path)` keeps working on .NET by delegating to - `FromFolder(path, fileAccess)`. -- **Guard narrowed** so the shared loading logic (categorization, partitioning, - region extraction, `-CONFIG.json`, `INFO.txt`/`SOURCE.txt` skips, `Tests` recursion) - compiles on every platform. -- **Path helpers** added as pure string operations, handling both separators, rather than - widening the interface. -- **Reflection removed** from `GetPlatformFromFile` in favour of `Enum.TryParse`, matching - what `ParsePlatform` already does. - -`CodeGenerationLibrary` was already `[DontHide]` / `[DontObfuscate]` at class level. -**A release build still needs checking for obfuscation issues.** - -**⚠️ Blocker: the JS build has no working regex, so region extraction cannot run there.** - -| Finding | Detail | -|---|---| -| `System.Text.RegularExpressions` | not available in the JS build; the codebase aliases `Regex = System.RegExp` under `TINYCLR` | -| `System.RegExp` mock surface | `Exec(string): string`, `Test`, `Compile` — **no capture-group or match-index access**, and the loading path needs group 4 in 10 places across 11 patterns | -| `CodeGeneratingRegexHelper.Execute` | its `TINYCLR` branch **returns `input` unchanged — a no-op** | - -That last point is a latent product issue well beyond this spike: the **Angular** emitter -uses `CodeGeneratingRegexHelper` in ~9 places (`import {…} from …` rewriting, `Ig[crx]` -renaming, `CodeGenHelper.getDescription<…>` / `findByName<…>` substitution, event-arg -rewriting), so **Angular emission from a JS/WC build is silently degraded today**. - -**There is an established fix, and it needs no translator change.** `Script.Literal` is -already used to reach native JS regex: - -```csharp -#if JS - _exp = (RegExp)Script.Literal("new RegExp(patt_)"); // DataSeriesDataProviderAnalyzer -#elif JAVA || SWIFT || KOTLIN - _exp = new RegExp(patt_); -#else - _exp = new Regex(patt_); -#endif -``` - -(also in `RevealCore/BaseRendererComponent.cs`). So `CodeGeneratingRegexHelper`'s JS branch -can be implemented with `Script.Literal` to run a global regex and expose group values, -match index and length — reproducing the .NET branch's reverse-and-splice semantics — -without touching the corelib mock. Fixing it there benefits every JS-built consumer, not -just snippet emission. - -**Next steps in order:** implement the JS branch of `CodeGeneratingRegexHelper` → rebuild -`DV.Shared.DESCRIPTION.JS` and confirm `fromFolder` appears in the emitted TS → write the -node-side `ICodeGenerationLibraryFileAccess` over `fs` → ingest local TS the way -`XSharpTestHost.WC` does → round-trip against the 84 existing XAML blocks. - -Two ways to bridge it in the meantime, the second avoiding .NET in the loop: - -- **Bake with .NET**: run `ToJson()` once and commit/publish the result; node consumes it - via `fromJson()`. Simplest, but puts a .NET step in the pipeline. -- **Reimplement the library parse in node** — likely the better option. The disk-loading - side is not complex: it walks the `igniteui-xplat-examples` code-gen library files and - the adjacent `-CONFIG.json`, then hands the result to the same `FromJson` shape the JS - `CodeGenerationLibrary` already accepts. Since `fromJson` is public on the TS side, a - node-side loader only has to *produce that JSON* — it does not need to replicate any of - the emitter logic. That keeps the whole prototype in node with public packages and no - .NET in the loop. - -**Recommended prototype: node + the public packages, using the WPF XAML emitter.** This -works because of a decision already taken for other reasons — snippets omit the `xmlns` -declaration (§6.3 / D-WPF), and that declaration is the principal WPF↔WinUI XAML -divergence. The residual delta is the enumerable `MustSetInCode` set above. - -Fallback if the WPF emitter proves too divergent: .NET with the **`.Core` assemblies** -from the WinUI NuGets. Emission is netstandard code, so this likely does **not** need -Windows — only the *compile sandbox* does. - -### 3. Marking include/exclude in the JSON - -- The library and template JSON are read through a generic dictionary model - (`JsonDictionaryItem`, `FromJson`/`ToJson` throughout), so **additive marker keys are - feasible** without disturbing existing parsing. -- **No JSON-schema emitter exists yet** in the DV shared source — emitting one is new - work, which matches how it was raised. That is also the reason a marker convention need - not be constrained by an existing schema: the emitter can be extended alongside it. -- On ergonomics: a **name prefix cannot express per-snippet membership** (§6.5.1 — one - sample commonly backs several snippets, and a property may be in one and not another). - A sibling key (`"$snippet": ["sorting"]`) or a separate `snippets` section keyed by name - both scale, keep the sample definition valid, and are straightforward to describe in a - generated schema. - -### Verification: round-trip against what already exists - -The 84 XAML blocks currently in the content are the comparison corpus. If the emitter can -reproduce them — same element, same property set, same nesting — the path is proven on -real cases rather than on a toy. The resolution table from Phase 4 supplies each block's -(sample, element) pair, so the comparison is mechanical. - -**Verdict: worth doing the spike.** The pieces that exist are further along than assumed -(WinUI/Uno target platforms, a WinUI emitter subclass, per-property code routing, -transpiled WPF XAML emitter). The genuinely new work is narrow: prebake the library JSON, -choose a marker convention, and extend the schema emitter. - ---- - -## 6.7 Snippet marker design — recording zones - -Settled direction: **the sample JSON stays complete and runnable**, and snippets are cut -from it by marking regions. Keeping the definition whole is what makes automated snippet -tests and screenshot capture possible later, so nothing here may reduce a sample to a -fragment. - -### Why recording, not filtering - -A subset *selector* cannot express the important cases. Consider wanting to show only two -property assignments on a `LineSeries` — no construction of the series, no chart. Filtering -the definition would remove the context the emitter needs; recording does not: - -> The emitter walks the entire runnable definition as usual. Output is only **recorded** -> while inside an inclusion zone (or outside an exclusion zone). The two assignments are -> captured; the constructor lines are walked but discarded. - -**This has a single place to live.** `CodeGeneratingCodeWriter` holds one `StringBuilder` -and every emitter writes through `Write` / `WriteLine` / `WriteCode` / `NewLine`. Gating -those four is the whole mechanism — no per-emitter changes. - -### Markers - -Prefix the *name* of an element type or property in the JSON. The prefix is stripped before -the description model sees the name, and retained as metadata the emitters consult: - -| Part | Meaning | -|---|---| -| `+` / `-` | begin an inclusion zone / an exclusion zone | -| id | which snippet the zone belongs to — one runnable sample can back several snippets, which is the common case (the Data Grid overview topic draws four) | -| channel | which output the snippet wants (below) | - -### Channels — and two different mechanisms - -Default is the **main markup**. Two other channels are needed, and only one of them is a -recording zone: - -| Channel | Wanted output | Mechanism | -|---|---|---| -| markup *(default)* | the platform's markup form | recording gate over emission | -| code-behind | the imperative form — e.g. property assignment rather than an attribute | recording gate over emission, with `ForceCodeBehind` / `MustSetInCode` for that region | -| handler | a library event handler, **essentially verbatim** | **not emission at all** — read directly from the library | - -That last row matters for scoping: the handler text already exists as extracted content on -the library item (`CodeGenerationLibraryItem.getContentForPlatform(...)` → the `handler` -field that `ExtractEventHandlerContent` produced from `WinUI.cs`/`Web.ts`/…). A snippet -asking for a handler needs a *lookup*, not a code-generation pass — so the marker's job -there is only to name which library item and which channel. - -### Open points for the syntax - -- **Delimiting.** The prefix must be strippable without ambiguity against real names, and - must keep the JSON valid. A delimited token — `~+sorting:code~HeaderClickAction` — is - unambiguous and easy to strip; a bare sigil (`+HeaderClickAction`) reads better but - cannot carry an id or channel. -- **Schema.** The generated JSON schema (§6.5) must accept marked names, i.e. property - names become pattern-based rather than a fixed enumeration. This is the extension already - anticipated for the schema emitter. -- **Indentation rebasing.** The writer tracks indent through `IncreaseIndent` / - `DecreaseIndent`. Recording that opens six levels deep would emit a deeply indented - snippet; the gate should capture the indent at record-start and subtract it. -- **Line granularity.** `Write` emits partial lines, so toggling mid-line could split - output. Markers sit on element/property boundaries, so the gate should open and close at - line boundaries. -- **Zone nesting.** Inclusion inside exclusion (and vice versa) needs defined precedence; - a small stack in the writer covers it, consistent with how `PlatformBlock` nesting is - handled in the docs pipeline. - ---- - -## 7. Risks - -| # | Risk | Mitigation | -|---|---|---| -| R1 | **API links.** 7,383 `` usages across 232 topics need a WinUI/Uno registry. The chain is understood (§6.2) but **no registry generator exists in any repo** — the four current snapshots are hand-made, so this is net-new tooling plus a new docfx pipeline, on a repo (`api-docs`) this plan does not own. | Build the generator early (§6.2 step 2) — it is the long-lead item and it also de-risks the existing four platforms. Until it lands, `ApiLink` renders highlighted text and the checker reports unresolved, so content work in Phases 3–4 is **not blocked**, only its CI gate is. | -| R2 | **Filtering migration blast radius.** ~250 toc entries plus many `PlatformBlock`s change in Phase 1; a mistake silently drops content from a *shipping* web platform. | Script the migration from a checked-in table; gate on a before/after page-inventory diff per web platform. | -| R3 | **`igniteui-astro-components@0.0.27` is external.** It owns `PlatformName`, `Sample.astro`, `ApiLink.astro` and the sidebar types. Adding platforms may require a package release outside this repo. | `PlatformName` is already duplicated locally in `api-platform-config.ts` — import from there. For `Sample` / `ApiLink` behaviour, decide package bump vs. local override early (§8 Q3); it gates Phase 2 and R1. | -| R4 | **Snippet quality.** Raw `Sample.xaml` includes property-editor and layout scaffolding; naive extraction produces noisy, misleading snippets. | Manual or template-driven extraction of the control element + relevant handler; treat generated snippets as drafts. | -| R5 | **Web-grid token machinery.** `{ComponentSample}`, `_componentKey` frontmatter and the `grids/_shared/` templates exist for the four web grids. A WinUI build must not expand them. | Covered by `include: ["Web"]` on those topics; verify `generate.mjs` shared-file expansion is skipped for the new platforms. | -| R7 | **The `ApiLink` resolver is heuristic and fails silently** (§6.3.1). It brute-forces prefixed/bare candidates and takes the first single match, so it cannot know which classes are unprefixed and silently shadows bare names when both forms exist (8 in React, 7 Blazor, 4 WC, 3 Angular). Per-platform member renames have no affordance at all. **≈460 `ApiLink`s already fail on React (92.6% resolved)** — including `DataGrid` / `DataGridColumn` / `DataSource`, which the Phase 3 port depends on. WinUI/Uno is the worst case: shared MDX carries web-mapped names, the registry will carry canonical XAML names. **Accepted for the launch** (D6, §6.3.2) with guardrails: exact names in the registry, cross-candidate collisions reported by `check-mdx-links`, `member-missing` treated as a CI signal, and no large-scale hand-patching of MDX. **Fixed properly by Phase 7 / §6.4** — the apiMaps re-incorporated as the resolution mechanism. Do **not** treat apiMap `originalName` as the modern WinUI name — it is legacy XAML (`XamRadialGaugeRange` vs the real `RadialGaugeRange`). | -| R6 | **Uno ≠ WinUI in packages/namespaces.** Snippets authored as `for="NonWeb"` may be wrong for Uno where assembly or `using` lines differ. | Establish the Uno package/namespace story before Phase 4 (§8 Q5); split blocks where they differ. | - ---- - -## 8. Open questions (need answers from outside this repo) - -1. ~~**Branding & URLs**~~ — **settled.** These ship under the **Ultimate UI** brand, - not Ignite UI: - | | WinUI | Uno | - |---|---|---| - | `productName` / `title` | Infragistics Ultimate UI for WinUI | Infragistics Ultimate UI for Uno Platform | - | `{ProductNameShort}` | Ultimate UI | Ultimate UI | - | switcher `label` | WinUI | Uno Platform | - | `base` | `/products/ultimate-ui-winui/winui/components` | `/products/ultimate-ui-uno/uno/components` | - | `productSpinal` | `ultimate-ui-winui` | `ultimate-ui-uno` | - - No `ignite-ui` in either slug. The `{ProductLink*}` tokens keep their `ignite-ui-*` - slugs — they are cross-links to the Ignite UI products, not to these. - Still open: whether these appear in the existing Infragistics nav / product switcher. -2. **API reference** — resolved into concrete work in §6.2. Remaining unknowns: - (a) is there an `Infragistics.WinUI.*.Trial` NuGet package for the docfx fetch step, - or does it build from the `dev-tools/XPlatform` output? (b) who owns adding the - `winui`/`uno` pipeline to `api-docs`? (c) what are the Uno assembly names? -3. **`igniteui-astro-components`** — public repo, so branchable. Only `PlatformName` - (`src/lib/types.ts:1`) blocks Phase 0; the ApiLink resolver needs no change. Confirm - release cadence so this repo can consume a version rather than pin a fork. -4. **Uno WASM host** — owner, build pipeline, and staging/production URLs. Does it - reproduce the `/code-viewer/*.json` contract, or does `Sample` need a new mode? -5. **Uno samples** — shared source with `winui-samples` plus an Uno head project, or a - separate repo? What are the Uno package IDs and namespaces? -6. **Locales** — assume `en` only for v1; confirm whether `jp` is expected, since - `toc.json` exists per locale and the migration would need to cover both. -7. **Mobile platforms** — names and grouping, so `PLATFORM_GROUPS` is right the first - time (`NonWeb` chosen over `Xaml` specifically to accommodate them). - ---- - -## Appendix A — key files - -| Concern | File | -|---|---| -| Platform registry, nav, ports, base URLs | [src/platform.ts](src/platform.ts) | -| API package config, `PlatformName`, `PLATFORM_MAP` | [src/lib/api-platform-config.ts](src/lib/api-platform-config.ts) | -| Per-platform product metadata, api-link index loading | [src/lib/platform-context.ts](src/lib/platform-context.ts) | -| Token substitution, `PlatformBlock` inlining, toc filtering | [docs/xplat/astro.config.ts](docs/xplat/astro.config.ts) | -| Per-platform tokens, sample hosts, api roots | [docs/xplat/docConfig.json](docs/xplat/docConfig.json) | -| Navigation source | [docs/xplat/src/content/en/toc.json](docs/xplat/src/content/en/toc.json) | -| docfx-era generator (platform blocks, shared expansion) | [docs/xplat/scripts/generate.mjs](docs/xplat/scripts/generate.mjs) | -| Authoring rules for conditional content | [docs/xplat/AI-AGENT-PLATFORM-BLOCK.md](docs/xplat/AI-AGENT-PLATFORM-BLOCK.md), [docs/xplat/PLATFORM-LABELS.md](docs/xplat/PLATFORM-LABELS.md) | -| Un-ported Data Grid source | `igniteui-xplat-docs/doc/en/components/grids/data-grid/` | -| WinUI sample sources + route table generator | `winui-samples/samples/`, `winui-samples/scripts/ingest-samples.ps1` | -| API doc generation, docfx pipeline, platform registry | `api-docs` (private, default branch `vnext`) — `blazor_build/`, `scripts/blazor.js`, `src/data/platforms-config.json`, `src/data/api-search-index.ts` | -| `ApiLink` runtime + resolver + `PlatformName` | `igniteui-astro-components` (public, `master`) — `src/components/mdx/ApiLink/`, `src/lib/types.ts` | -| Committed registry snapshots | [src/data/api-link-index/](src/data/api-link-index/) + `manifest.json` | - -## Appendix B — useful commands - -```bash -# per-platform dev (existing platforms) -npm run xplat:dev:react - -# full link-check chain as CI runs it -npm run check-relative-links:ci - -# metadata / lint / spelling -npm run check:llms-metadata && npm run lint:md && npm run spellcheck - -# PlatformBlock balance check on a file -grep -c '' file.mdx -``` - -## Appendix C — sample-route triage list (42) - -Referenced by in-scope topics, no matching folder in `winui-samples`. Per D5 these do -**not** suppress any topic — triage each as (a) hand-authored sample that never -existed in the examples repos, (b) route-name drift, or (c) genuine backfill. - -``` -charts/category-chart/column-chart-with-highlighting -charts/category-chart/high-frequency -charts/category-chart/high-volume -charts/category-chart/line-chart-with-animations -charts/category-chart/line-chart-with-annotations -charts/category-chart/marker-templates -charts/category-chart/tooltip-template -charts/data-chart/axis-crossing -charts/data-chart/axis-sharing -charts/data-chart/chart-navigation -charts/data-chart/composite-chart -charts/data-chart/crosshair-layer-styling -charts/data-chart/dash-array-axes -charts/data-chart/dash-array-series -charts/data-chart/final-value-layer-styling -charts/data-chart/radial-proportional-category-angle-axis -charts/data-chart/range-bar-chart -charts/data-chart/scatter-marker-options -charts/data-chart/series-value-overlay -charts/data-chart/stacked-chart-types -charts/data-chart/timeline-axis-type -charts/data-chart/tooltip-template -charts/data-chart/type-scatter-area-series -charts/data-chart/type-scatter-contour-series -charts/data-chart/type-scatter-hd-series -charts/data-chart/type-scatter-polygon-series -charts/doughnut-chart/selection -charts/financial-chart/axis-types # component excluded (no WinUI samples) -charts/financial-chart/data-legend # ” -charts/financial-chart/data-legend-formatting-currency # ” -charts/financial-chart/data-legend-styling-props # ” -charts/financial-chart/data-tooltip # ” -charts/financial-chart/data-tooltip-formatting-currency# ” -charts/financial-chart/data-tooltip-styling-props # ” -charts/financial-chart/multiple-data # ” -charts/financial-chart/trendlines # ” -charts/pie-chart/animation -charts/pie-chart/explosion -charts/pie-chart/selection -charts/sparkline/display-types -charts/sparkline/grid -charts/zoomslider/overview # control coming; sample needed -grids/data-grid/type-marketing-table -``` diff --git a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md b/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md deleted file mode 100644 index 4934b8b929..0000000000 --- a/docs/xplat/SNIPPET-COLLAPSE-DECISIONS.md +++ /dev/null @@ -1,1391 +0,0 @@ -# Snippet collapse decisions - -When a topic's hand written per-platform snippets are replaced by one `json-snippet` block, the -generated markup usually matches what the topic showed before. Where it does not, the difference is -deliberate, and this file is why. - -Read it when a comparison run reports a topic that no longer matches the published documentation. -An entry here means the run is right and the old page was wrong. A difference with no entry here is -a regression in the transform. - -Trivial collapses are not listed. A collapse is trivial when every platform already showed the same -thing and the JSON reproduces it; there is nothing to remember. Listed below is everything else. - -## Standing policies - -These apply to every topic, not just the ones named below. - -### XAML snippets are not evidence - -The XAML blocks in the documentation have never been exercised — nothing compiles or runs them, so -nothing has ever caught them being wrong. Where XAML disagrees with the web platforms, the web -platforms win, and the XAML block is overwritten with the group's decision. No XAML value is -preserved on the strength of being different. - -This is not a guess about which is likelier to be right. It is that one side has been checked and -the other has not. - -### Never turn an imperative block into markup - -A section the platforms taught in code keeps teaching it in code. This is not a matter of taste: - -- A value being set imperatively may be a signal that the imperative path is the only one that - works. -- On React and Blazor a declared value can be reapplied when the component re-renders, so markup can - actively undo what the reader is trying to do. The two forms are not interchangeable. - -Going the other way — declarative teaching emitted as code — is safe by comparison, but still -undesirable where the declarative form would have done, so it is not a free move either. - -A definition stays declarative regardless, because that is what a sample has to be to run. Forcing -code behind is what turns it into the imperative block the topic showed, and that is why the -mechanism exists. - -Five sections had been collapsed the wrong way. `geo-map-navigation`'s Window Coordinates, -`geo-map-binding-multiple-shapes`' Map Background, and the code snippet sections of -`geo-map-type-scatter-contour-series` and `-area-series` are fixed and now force code behind. The two -imagery topics needed a product fix first and are collapsed correctly now; see below. - -`scripts/audit-imperative.py` compares every collapsed section against what it replaced and reports -any where a web platform's block was code and the fence now emits markup. - -### The imagery topics needed a metadata fix first - -`geo-map-display-osm-imagery` and `-esri-imagery` were collapsed wrongly, put back, and collapsed -again once the product side was fixed. All three web platforms taught the same thing — a bare map in -markup, and the imagery built and assigned in code: - -```ts -const tileSource = new IgcOpenStreetMapImagery(); -geoMap.backgroundContent = tileSource; -``` - -The first collapse printed the imagery as a child element instead, which changed imperative teaching -into declarative. Both pages now carry two fences: the map, with `"$backgroundContent": -"-doc:markup"` so the imagery stays out of it, and a `channel="code"` fence marking -`"$backgroundContent": "+doc:code"`, which prints the imagery being constructed and assigned. That is -what every platform showed. - -**A correction to an earlier version of this note.** It claimed those nested elements were not -registered and so could not work. That was wrong — `igc-open-street-map-imagery` and its siblings are -registered, each by its own module, and the library resolves child elements through its own -`TypeRegistrar` rather than the browser's custom element registry. Nesting is a legitimate form. The -collapse was wrong for one reason, not two: it changed what the page taught. - -### The component suffix was wrong on nine types - -Emitting the code fence at all needed a fix in the product. The renderer named the class -`IgcOpenStreetMapImageryComponent`, which does not exist — the package exports -`IgcOpenStreetMapImagery`, registered under that name by `IgcOpenStreetMapImageryModule`. The scales -were right, `IgcValueBrushScaleComponent` really does carry the suffix, so this was per-type knowledge -that was missing. - -`GetItemTypeHelper` appends the platform's component suffix unless the description metadata carries -`__skipSuffix`, and that is written only for types marked `[JsonAPISkipSuffix]`. The wrapper's real -name is decided elsewhere, in `TSExportResolver`, which adds the suffix only for types carrying -`XamWrapper` for TS. These nine are exported without it but carried no attribute, so the two -disagreed — and the renderer has a `//TODO: need to detect if suffix is required here.` at the spot. - -`[JsonAPISkipSuffix]` is now on `AzureMapsImagery`, `ArcGISOnlineMapImagery`, `BingMapsMapImagery`, -`OpenStreetMapImagery`, `TileGeneratorMapImagery`, `GeographicMapImagery`, `CustomMapImagery`, -`HeatTileGenerator` and `ShapefileConverter` — the last being what `ShapeDataSource` is called before -the platform rename. - -Regenerating the descriptions is a build of `Infragistics.jQuery.sln`, or of the specific JS project, -followed by copying the `JsonAPI` output into `Description/Generated`. Two of those files carry -mutations that are deliberately not taken: `HeatTileGenerator` regenerates -`public override string Type` as `public virtual string Type`, and `DashboardTileModule` has its own. -`HeatTileGenerator` was therefore edited by hand to add the one metadata line and keep `override`; -everything else was copied, and each copy differs from what it replaced by that line alone. - -### The Esri sample stored a style name where a URI belongs - -`display-esri-imagery.json` set `mapServerUri` to `"WorldOceansMap"`, which is the name of a style -rather than an address. The running Web Components sample resolves those names through its own -`EsriUtility`, so the sample was only ever half ported. The three descriptions now hold the URIs that -utility resolves to, which is what the collapsed code fence prints. - -The page's "Esri Utility" section stays hand written. It is the source of a helper class the reader -writes, in the same category as the WorldUtils resource pages, not a component to describe. - -### What the imperative audit is expected to flag - -Several of the audit's reports are expected, and it is worth knowing which, so that a real one is not -lost among them: - -- **Data loading and framework scaffolding.** `binding-data-csv`, `binding-data-json-points`, - `binding-shp-file` and the shape series topics showed `connectedCallback`, `componentDidMount` and - `@Component` blocks that fetch data. That is not component configuration, and the collapsed pages - load the same data from a handler item. -- **Bindings that cannot be attributes.** `chart-annotations`' Callout Layer shows Web Components - assigning `calloutsDataSource` in script because an object cannot go in an attribute. The emitter - already writes that as the companion code fence. -- **`binding-multiple-sources`' Summary**, discussed under that topic below. - -A report outside those categories means a section's teaching changed, which is not allowed. - -### Saying a property is set in code, and that it is not bound - -Two sidecars, both naming properties against the platforms they apply to: - -```json -"$setInCode": { "backgroundContent": ["angular", "react", "webComponents"] }, -"$assignInCode": { "backgroundContent": ["angular", "react", "webComponents"] } -``` - -`$setInCode` says the property is set in code rather than written into the markup, which is what the -description metadata already says for properties that can never be markup — a data source on Web -Components, for one. This says it for one element, for the cases the metadata does not cover. - -`$assignInCode` is the stronger form: assigned in code, **and not bound**. Needed because setting a -property in code does not mean the same thing everywhere. On Web Components it is an assignment, but -on Angular it is a template binding — `[backgroundContent]="osmImagery"` — which is still -declarative, and reapplied whenever the framework re-renders. A topic that assigned the property -imperatively cannot be reproduced by a binding. - -Both are per property, and that is not a detail. Tried first as one build wide style, it turned nine -pages' Angular bindings into assignments, `[dataSource]="salesData"` among them, on pages that taught -the binding. The same element commonly has one property that wants assigning and others that should -keep binding. - -They belong on the element whose property they name. `tileImagery` is a property of the tile series, -so the sidecar goes there, not on the map above it. - -### Where the value comes from, and why it is safe - -`directAssignment` is a style option: a property holding an element is built where it is assigned, two -statements, rather than as a lazily constructed backing field. The field is the sounder habit and on -Angular and React the necessary one; the documentation blocks did the former, so the option exists and -the documentation build turns it on. - -Referring to a local means dropping the `this.`, and that is only safe where a local exists. Four -things make it so, none of them inferred by reading emitted text: - -- `SupportsDirectAssignment(property)` on the emitter: the reference lands in the same scope as the - construction. Web Components and Blazor markup always; Angular only for a property marked - `$assignInCode`, because until it stops binding its reference is a template expression that reads a - member. Default false, so a platform nobody has considered keeps the field. -- `DeclaresRootAsLocal` on the emitter that builds the value: it names its root `var name = new T()`. -- A shadowing local — `var osmImagery = this.osmImagery;` — written when the value ended up as a - field anyway, so the reference still resolves. The emitter already does this for elements - themselves. -- The flag is set by the conversion that built the local, not by "this property holds an element". The - first attempt used the latter and turned `scatterLineSeries1.xAxis = this.xAxis` into `= xAxis` on - chart-markers, dropping a real field qualification. - -### Regions, and what goes between them - -A fence can ask for several regions, and the delimiter says what separates them: - -``` -channel="bindingImports...bindingFields,bindingInit,bindingCode" -``` - -`,` joins two regions directly and `...` puts the platform's own comment ellipsis between them, which -is what the hand written blocks did — they were excerpts from different parts of a file, not one run -of statements. A region this platform writes nothing to drops out and takes its delimiter with it, so -a block never opens or ends on a stray mark. `codeBehind` is a preset for the common spelling. - -### Three emitter fixes these needed - -- **A nested element's construction was recorded into the markup.** Converting a property that holds - an element builds it with its own emitter into a buffer, and while that ran the parent's markup zone - was still open, so the construction was captured inside an opening tag. The recorder now takes a - pushed context for the nested build — rather than simply not recording, so that markers inside the - converted element still work. -- **Sidecars did not reach nested elements.** The nested path handed over only the markers, and gated - the comment on markers being present, so an element carrying only a comment or only a - `$setInCode` got nothing. Each sidecar is now passed on its own account. -- **Blank lines inside converted blocks.** Separators written for properties that then emitted - nothing. Constructing one object is a run of statements, so they go. - -### A sidecar can splay by platform - -Where the platforms genuinely taught different mechanics, one definition says so: - -```json -"$type": { "blazor": "+doc:code", "default": "+doc:markup" } -``` - -Which is how `charts/features/chart-overlays` now emits a factory method for Blazor, as its page -always did, and markup everywhere else. Before this existed the choice was to overwrite one -platform's teaching, which the rule above does not allow. - -- Any sidecar takes the form, and it nests: each platform's entry is a marker or a list of them. -- The platform names are the ones `$styleOptions` already uses — `angular`, `react`, - `webComponents`, `blazor`, `winUI`, `uno`, `wpf` — matched without regard to case, with `default` - covering the rest. A name outside that set is a schema error rather than a marker that quietly - applies nowhere. -- Resolution is in the renderer, beside the style options, so anything using the emitter gets it — - including the runtime render pass, which is not a documentation build. -- The fallback to `default` is worked out one sidecar at a time, so an element can splay two of them - where one names this platform and the other only names a default. -- A fence whose definition splays channels asks for `channel="auto"`, since it can no longer name - one: it takes whichever channel this platform's marker chose, and labels the block with that - language. - -### Prose beats sample, sample beats a platform - -A number the topic states in its text is visible to the reader and is what the snippet has to show. -Below that, the running sample decides, because it is the thing that actually executes. A value that -only one platform's block carries decides nothing. - -### Whitespace and colour spelling are set by the build, not by the topic - -Three differences are not per-topic decisions and will show up in every collapsed topic at once: - -- **Attribute indentation.** Only React's emitter indented an element's attributes under its tag; - Angular, Web Components and Blazor left them at the tag's own indent, and XAML had the option but - it was off. `indentAttributes` was added for the markup platforms and is on for the documentation - build, so all five now match how the topics have always been written. - - React was left out of that at first, on the grounds that it indented already. It does, but the - option carries a second meaning: it leaves the opening tag's line unterminated so that each - attribute ends the line before it, which is what lets an excluded attribute take its line break - with it. Without it, a snippet that printed only some of an element's attributes began with a - blank line, and an element with no attributes put its `>` on a line of its own. React asks for it - now. Turning it on also exposed that the flag was read in code behind, where there is no open line - to close, leaving a blank line between an element's declaration and its first property on all three - indenting platforms; the renderer now tracks whether a tag line is actually open. -- **Colour notation.** Each emitter picked its own, so the same `#bddcfc` came out as - `rgba(189, 220, 252, 1)` on Web Components and `#bddcfc` on Blazor. The build now pins - `colorNotation: hex` and `pascalCaseColorNames`, giving a colour name where one exists — - `DodgerBlue` — and hex otherwise. -- **Numeric delimiting.** Angular writes numbers undelimited, React braces them, the rest quote - them. Set per platform in the build rather than repeated in every snippet. - -None of these change what a snippet means. They are listed because a diff that shows every line of -every snippet moving is otherwise alarming. - -### The emitter is loaded from a working copy, for now - -`generate.mjs` resolves the snippet emitter from the local `dev-tools` build, and `XPLAT_EXAMPLES` -points at a working copy of the examples repository. That is deliberate while the renderer and the -library are still being changed — a collapse often needs a fix on both sides in the same step. - -Once the renderer work is published this has to become an ordinary package import, with the library -read from the published examples package rather than a path on someone's disk. Until then no other -machine can reproduce a generation run, so treat the generated output as unverifiable anywhere but -here. - -### A sample is a source, not an authority - -A section may be illustrating something the peered sample does not cover. Where the platforms agree -with each other and disagree with the sample, the agreement is the stronger signal: pin to the -sample and overlay the snippet's values, rather than restate the whole thing inline. Overlaying also -narrows the gap for later work, since the overlaid names are then present on both sides. - -### A snippet is a whole sample that shows part of itself - -A topic showing one element is still backed by a complete, runnable definition; what varies is how -much of it is printed. The definition holds the whole chart, and the element the section is about -carries `"$type": "+doc:markup"` so only that element reaches the page. Writing the element on its -own instead would print the same block, but the definition could not be run — and the intent is a -later pass that renders every snippet through the ComponentRenderer and captures screenshots, which -only works if each one stands up on its own. - -Two snippets had been written as bare fragments and are now full definitions: the marker reset in -`charts/features/chart-markers` and the overlay text styling in `charts/features/chart-overlays`. -An audit against every type that roots a sample anywhere in the examples repository found no others. - -Two things had to change for this to work: - -- `emitChannel` marked the root, which includes everything beneath it, so a definition that marked - part of itself got printed whole. The root is now left alone when the definition carries its own - markers. -- A definition that marks part of itself produces two snippets — the whole sample and the part — and - the markup path asked for the whole one. It now takes the part. - -A fragment also hid a real bug behind a plausible-looking block. `LineSeries` in the marker reset -had `xMemberPath`/`yMemberPath` copied from the scatter section above it; a `LineSeries` is a -category series and takes `valueMemberPath`. Rootless, it validated; in a chart, the schema caught -it. It reads `valueMemberPath` against a `CategoryXAxis` now. - -### chart-overlays: Blazor taught this one in code, and no longer does - -The three original blocks disagreed about more than spelling. Web Components and XAML declared the -layer in markup; Blazor showed a `public Series StylingOverlayText()` factory that built one, set -nine styling properties and returned it. That is the one case so far where the platforms taught -different mechanics for the same section, so the rule about not changing the teaching cannot be -satisfied for all three at once. - -Neither one wins now. The definition splays its marker by platform, so Blazor emits the layer built -in code and the other four emit it declared in markup, which is what each page always showed. That -mechanism did not exist when this section was first collapsed; markup was chosen for everyone, and -the note here used to argue for it. The properties are a union of the sample, the web markup and the -styling the Blazor block set. - -Where the two disagreed on values, the exercised markup was taken: `overlayTextHorizontalMargin` 0 -and `overlayTextVerticalMargin` 20, not the 5 and 5 the Blazor block used. The sample supplies -`targetAxisRef`, which none of the three blocks mentioned. - -## geo-map-display-heat-imagery - -### The heat tiles are built by a handler - -The sample was a bare map, with everything interesting in per-platform code, so the port added -`MapDisplayHeatImageryOnViewInit`: it fetches `UsaCitiesPopulation.csv`, reads latitude, longitude and -population into three parallel arrays, builds the `HeatTileGenerator` from them, wraps it in a -`TileGeneratorMapImagery` and adds the tile series. That is what the running Web Components sample -does, and the page's three code blocks were the same thing spelled three ways. - -Web platforms only, and `Web.ts` only: this page has never carried a Blazor or XAML block, so the -fences exclude them rather than inventing content for them. - -### The web worker stays hand written - -The generator can hand its work to a worker, which the page teaches in its own section, and that -wiring is not portable: `new Worker("../heatworker.worker", { type: "module" })` on one bundler is an -imported worker constructor on another, and each platform's block shows a different worker file. The -handler sets everything else and says in a comment where the worker went. Nothing is lost from the -page — the section that teaches it is still there, and it is the only place it was ever explained. - -### A heading was reaching only one platform - -Not a collapse decision, but found while doing it: the Web Components block from the Web Worker -section was closed *after* the `## Dependencies` heading, so that heading sat inside it and only Web -Components readers ever saw it. Fixed in both languages. - -A sweep for the same shape finds 798 headings inside platform blocks across the documentation, but -that count means little — a section that genuinely applies to one platform is written exactly that -way. This one was accidental because the section it titles has blocks for all three platforms -beneath it. - -## geo-map-binding-data-model - -### The sample was backported, as a handler - -No sample existed here either. The port added `samples/maps/geo-map/binding-data-model.json` — a -bare map with one `onViewInit` item, `MapBindingDataModelOnViewInit` — generated by -`code-gen-tools/backport-flight-routes.py` from the same two upstream repositories as -`binding-multiple-sources`. - -It has to be a handler rather than a description. The sample draws seven flights as fourteen series, -a polyline for each route and a symbol series for its two cities, each pair in the flight's own -colour. Fourteen series built from seven rows is not something a description states, and it is how -every platform's sample teaches it, so the handler keeps the teaching as it was. - -Series order is the Web Components sample's: route first, then its cities, so the markers draw on -top of the line. The Blazor sample adds them the other way round. - -### The geodesic maths sits in its own item, and the fence asks for one of the two - -`WorldUtils` already exists in the `WorldFlights` item, and this handler cannot reach it there: the -web side's sibling import only resolves when a sample references both items, and this sample binds no -data source at all. - -So the maths is a second item, `MapGeodesicsOnViewInit`, which the sample lists first. Every item in -an init list contributes its members to the same component, so the series building calls the helpers -without importing anything — the one way the library can share code today. Its own entry method does -nothing and says so; it exists because an item in an init list is called by name. - -That leaves the topic showing both handlers, which is not what it teaches. Fences now take `item=`: - -``` -```json-snippet channel="handler" item="MapBindingDataModelOnViewInit" -``` - -The named handlers are the only ones left in the copy handed to the emitter, so the block holds just -them while the fence still states the whole sample. A name that matches no handler the sample runs is -an error rather than an empty block. It takes a comma separated list. - -With it the snippet is 74 lines on the web platforms and 80 on the .NET ones, against 76 to 94 for the -hand-written blocks it replaces. Inlining the maths instead would have been 180 and 322. - -### Two more emitter fixes - -- **Platform directives reached the page.** `//WPF: System.Action` and its like are instructions to - the sample generator. A single-method handler never showed them, because taking the signature off - took everything above it too; this item's region declares more than one thing, keeps its signature, - and so printed the directive as though it were code. They are stripped from snippet output now — - `//WPF:`, `//WinUI:`, `//GTK:` and `//WindowsForms:`, which is the whole vocabulary the library - uses. Four expectations in the emitter suite held the directive and were updated. -- The snippet machinery is now spread across the renderer and `generate.mjs` — marker parsing, the - signature omission, the directive strip, and this item filter. Once it stops moving it wants to be - one helper class in the Description code generation area, beside the rest of that tooling, rather - than half of it living in a documentation build script. - -### Two emitter bugs this page turned up - -- `emitChannel` marked a sample's `onInit`/`onViewInit` lists for **whatever** channel was asked for, - including markup and the binding code the companion fence probes. A handler writes neither, so the - library item ended up requested and never emitted, which is fatal. It now marks them only for the - channels a handler writes to. -- `omitHandlerSignature` took everything between the first `{` and the last `}` in a region, on the - assumption that a region is one method. This item's C# region declares the types it needs and then - the handler, so the option cut `public class GeoLocation {` off the front and dedented the rest by - the wrong amount — a snippet that started mid-class. It now counts braces and leaves a region - holding more than one declaration alone, which is what its own documentation always claimed. - -## geo-map-binding-multiple-sources - -### The sample was backported before the page was collapsed - -No sample existed in the examples repository for this page — only downstream, in -`igniteui-wc-examples`. The port added `samples/maps/geo-map/binding-multiple-sources.json` and the -three data items it binds, so the page's `source=` now names something real. - -The data is computed rather than listed: flight paths are great circle arcs interpolated between -city pairs at 200km intervals, and the airports are whichever cities those flights touch. So the -port carries the arithmetic, in `WorldFlights` — the city list, the geodesic maths, and the flight -assembly — with `WorldAirports` and `WorldGridlines` beside it. The library has no way to share code -between items, so the latter two import from `WorldFlights` and only work alongside it. Every sample -that binds one binds all three, so this holds for now; a shared-dependency or dedup mechanism would -be the better answer. - -Both languages are copied from the samples that already run this code, not written for the port: - -- TypeScript from `igniteui-wc-examples`, `binding-multiple-sources/src` (2e103c2). -- C# from `igniteui-blazor-examples`, `binding-multiple-sources/Services` (dde6269eac85), which is - also where `GeoLocation`, `WorldCity`, `FlightInfo` and `CoordinateLine` are declared. - -The examples repository's `code-gen-tools/backport-world-connections.py` splices those into the three -items, TypeScript and C# together, so the two cannot drift. Regenerate rather than editing the -emitted files; it takes the library path and the two sample folders. - -**The documentation's own resource pages are not the source, and have drifted.** -`geo-map-resources-world-util`, `-world-connections` and `-world-locations` publish a version of the -same code, and it differs from what runs: `WorldConnections` is an instance class where the sample's -is static, `WorldUtils` still has `Console.WriteLine` debugging in it, and `AddAirport` counts flights -per city where the sample's does not — which is why the sample's `WorldCity` has no `Flights` -property. Those three pages are themselves candidates for generating from the library later. - -`Point` is the one type that differs between the .NET platforms: `IgniteUI.Blazor.Controls` for -Blazor, which is what the Blazor sample itself imports, `Infragistics.Core` for WinUI and -`System.Windows` for WPF, following the shape data items already in the library. - -### Which platform's values won - -The three platforms disagreed, and the downstream sample settles it — it agrees with React and -Blazor throughout, so those values are the ones kept: - -- Flights: `rgba(196, 14, 14, 0.05)` at thickness 4. Angular's block said - `rgba(147, 15, 180, 0.5)` at thickness 3. -- Airports: `markerBrush` `#aad3df`. Angular said `White`. -- Gridlines: `Gray` at thickness 1. - -Angular's Gridlines block was not a gridlines block at all — it was the Flights series pasted again, -`name="polylineSeries"` and all, so the page showed the same series twice and never showed the -gridlines. It also carried two syntax errors: `datasource = worldFlights` as a bare unquoted -attribute, and `thickness={3.0}`, which is JSX interpolation inside an Angular template. - -The two running samples disagree with each other as well, and the Blazor one loses both times: it -draws the flights at `rgba(196, 14, 14, 0.2)` rather than `0.05`, and outlines the airports in -`Black` rather than `rgb(73, 73, 73)`. Every other source — the WC sample, and the Angular, React and -Blazor blocks on the page — says otherwise, so the snippet keeps 0.05 and the grey. A comparison run -against the Blazor sample will flag both; that is the Blazor sample being the odd one out. - -Angular's block also defined three `ng-template` tooltips, which neither other web platform had. -They are dropped: this page teaches binding several sources to one map, and the tooltip templates -belong to the tooltip topics. - -### Summary is now generated from the same definition - -The section says the snippets above are combined for copying, so it emits the imports, the whole -map, and `allCode`. What it no longer carries is the framework scaffolding the hand-written version -had — Angular's `@Component` decorator and class declaration, and its `windowRect` assignment. - -The imperative audit reports this section, and it is the one place the report is expected. Angular's -Summary block was a whole component class, so it counts as code, while every Angular block in the -sections above it was markup — the Summary was a different presentation of the same declarative -teaching, not an imperative alternative to it. What the audit is really seeing is that the class -scaffolding is gone, which is the standing decision about page scaffolding rather than a change of -mechanics. - -### Three things about markers this page pinned down - -- An element wanted on more than one channel takes a **list**: `"$type": ["+doc:markup", - "+doc:bindingCode"]`. That is how the first section shows the map and the data binding beside it. -- Excluding children is done on the **parent's property**, `"$series": "-doc:markup"`, not by - marking the children. -- Both of the forms that do not work — a comma separated string, and an exclusion marker on the - child itself — are **silently ignored**. Nothing is emitted for them and no error is raised, so a - mistyped marker reads as "this element was not wanted". Worth an error. - -## geo-map-shape-styling - -### Required Imports is generated, and lists more than it used to - -The section is worked out from the example itself: the components it uses, plus the types its -styling handler brings, which are two separate regions — -`channel="bindingImports,handlersImports"`. - -It lists more than the hand written version did, and more correctly. The page named -`IgxGeographicShapeSeries` where the class is `IgxGeographicShapeSeriesComponent`, and omitted -`IgxGeographicMapComponent` entirely; both are now there, and the two `igniteui-angular-core` -imports are one statement. - -Getting there needed two things that were missing rather than broken: - -- `ShapeFileOnViewInit` and `ShapeFileStyling` held content for Blazor and WinUI only, so the - handler emitted nothing on the web platforms. Both now have a `Web.ts`, written in the `Igc` - dialect the other 195 items use. -- `TransformHandlerCode` was compiled out of this build, so a handler kept the Web Components type - names whatever platform was asked for. See the renderer commit; it is fixed. - -### The three styling sections are still by hand - -Shape Random, Scale and Range Styling each construct a helper from `ShapeStylingUtility` — a class -the neighbouring topic teaches — and wire it to `styleShape`. The library's `ShapeFileStyling` does -something else entirely, colouring by continent, so there is nothing to point at. They would need -three new library items plus the utility itself, which is a larger piece of authoring than a -collapse. - -Note for anyone reading the commit history: an earlier message said `handlersImports` was not among -the regions a recording zone can cover. That was wrong twice over — the region captures correctly, -and the real obstacles were the two above. - -## The spreadsheet topics are not collapsible yet - -`Spreadsheet` has no description type. It is not among the 1190 definitions the schema is generated -from, and there are no spreadsheet sample JSONs in the examples repository — the directory does not -exist, so the samples those pages show are authored some other way. Without a description the -renderer has nothing to emit from, so this is a limit of what is described rather than a judgement -about the pages. - -That accounts for `spreadsheet-configuring`, `spreadsheet-overview`, `spreadsheet-commands` and the -smaller spreadsheet pages — roughly 50 blocks. They become collapsible the day the component is -described, and nothing else needs to change for that. - -The same check turns up two other kinds of root that are not components and never will be: - -- **data classes** — `WorldCity`, `SampleDataType`, `List` — a page defining the shape of its data -- **page scaffolding** — `div`, `html`, `script` — the wrapper a sample sits in - -## chart-performance - -### The axis guidelines showed a property the financial chart does not have - -Axis Intervals and Axis Labels Visibility each demonstrate one guideline on the three charts that -have it, so each is one fence with an **array body** — several definitions, emitted in order with a -blank line between, which is the shape the hand written blocks had. - -Collapsing them caught an error the page has carried on all four platforms: - -```html - -``` - -`FinancialChart` has no `xAxisInterval`. It has some forty other `xAxis` properties, and a time based -x axis, which is presumably why an interval is not among them. `CategoryChart` has both. The -collapsed snippet sets only `yAxisInterval` there; the schema rejects the other, which is how it came -to light. Label visibility is fine on both charts and is unchanged. - -Data Structure and Data Filtering are not collapsed. They teach a `FlattenDataSource` helper the -reader writes, which is not a component. - - -Three sections collapsed. Axis Types needed the array form — a snippet body that is a list of -definitions rather than one — because it shows a FinancialChart and a DataChart side by side, and -neither is a child of the other. It is the only place in the set that needs it. - -### Chart Markers and Chart Resolution stay imperative - -These sections show a property being set on a chart the reader already has: - -```ts -this.Chart.markerTypes.clear(); -this.Chart.markerTypes.add(MarkerType.None); -``` - -That is the lesson — how to fix a slow chart you already have — so they are emitted as code rather -than as markup. `channel="code"` forces code behind, which is exactly what that emitter is for, and -every platform shows the assignment again: - -```ts -igxCategoryChart1.markerTypes = [MarkerType.None]; -``` - -Each section carries two snippets rather than one array, because the original made the same -distinction in comments: "on CategoryChart or FinancialChart", then "on LineSeries of DataChart". - -The one difference from the originals is that the generated code constructs the chart first, where -the page assumed one already existed. It is more to read but it stands on its own. - -Two faults in the originals go with it: the Angular, React and Web Components blocks wrote -`this.Chart.Resolution` with a capital R, which is not the property on those platforms, and the -Blazor block set `this.Chart.Resolution = 10;` twice. - -### What is left in this topic - -- **Data Structure** shows two whole data classes, one recommended and one not. There is no component - in it; it is advice about how to shape data, and a description says what a component is. -- **Data Filtering** and the guideline sections are prose with no snippet to collapse. - -## geo-map imagery topics - -`display-osm-imagery` and `display-esri-imagery` each carried a bare map in markup and, for every -platform, a code block constructing the imagery object and assigning it to `backgroundContent`. -Seven blocks and eleven blocks respectively, saying one thing. - -`backgroundContent` is an ordinary described property whose value is another description, so the -whole thing is one JSON with the imagery nested inside the map. The generated markup nests the -imagery element declaratively and needs no code at all — check-snippet-code-channels.mjs confirms -neither snippet produces a line of binding code on any platform, which is what makes dropping the -companion code blocks safe rather than merely tidier. - -Expect the shape to change: the page taught "construct the imagery and assign it in code" and now -shows it nested in the markup. Both do what the prose says — set `backgroundContent` to the imagery -object — and the nested form is what the running sample does. - -### What is left in these topics, and why - -- **`display-bing-imagery`** is not collapsed. Its code block resolves the imagery URI from - `window.location`, rewriting `http:` to `https:` to match the hosting page. That is a runtime - workaround rather than configuration, and no description can express it. The declarative half — - `apiKey` and `imageryStyle` — could be collapsed on its own, but that would leave the page setting - the same two properties in two places. -- **The Esri Utility section** is not collapsed. It shows `EsriUtility.getUri(EsriStyle.WorldOceansMap)`, - a helper class the topic is teaching. There is no component being described there, only a call. - -## linear-gauge - -The cleanest of the three gauges: six of the nine sections matched their own sample outright. XAML -again carries the hero sample's values throughout — `NeedleShape="Needle"` where every web platform -says `Custom`, `#79797a` where they say `DodgerBlue` — and again loses. - -### Highlight Needle — value taken from the sample, needle brush kept - -The topic ran `value=70` against the sample's 50, and the prose states no number, so the sample -decides and it is now 50 — which also puts it in step with every other section in the topic. - -The topic additionally sets `needleBrush="Blue"`, which the sample does not. It is kept: the section -exists to show a second needle, and colouring the main one is what makes the two distinguishable. -Every web platform sets it. - -### Tick Marks — value kept at 50 - -`/gauges/linear-gauge/tickmarks` runs `value=10`; every platform's snippet and every neighbouring -section runs 50. Platform agreement outweighs the sample, and 10 would make this one section -inexplicably different from the rest of the page. - -### Summary — constructed as a union - -As with the other two gauges, rebuilt as the union of the sections above it rather than the separate -configuration the published page carried. It now includes the highlight needle properties the -published Summary omitted. - -## radial-gauge - -The same shape as bullet-graph, including the same cause: every XAML block carries the values of the -hero `animation` sample — `MinimumValue=0, MaximumValue=50, Value=25, Interval=5`, scale angles -120/60, `BackingShape="Circular"`, `#d6d6d6` — rather than each section's own. Expect every XAML -block in this topic to differ from the published page. - -Eight of the ten sections collapsed to their own sample. The rest: - -### Tick Marks — sample pinned, snippet extents kept - -As in bullet-graph, the platforms agree with each other and disagree with `/gauges/radial-gauge/tickmarks` -on the extents: the topic writes `tickStartExtent 0.45, tickEndExtent 0.575, minorTickStartExtent -0.575, minorTickEndExtent 0.5` against the sample's `0.5 / 0.57 / 0.57 / 0.52`. Platforms agreeing -outweighs the sample, so the sample is the source and those four are kept. - -### Ranges — the topic's own ranges kept - -`/gauges/radial-gauge/ranges` runs two ranges in olive and orange with `value=80`; the topic shows -three in red, yellow and green with `value=50`, which is what a section teaching ranges wants. All -the web platforms agree on the topic's version, so it stands, with the sample recorded as the source. - -### Labels and Titles — maximumValue converged to 80 - -The section alone ran `maximumValue=100` where every other section in the topic, and the sample, -run 80. Nothing in the prose depends on it, so it is now 80 like its neighbours. - -### Summary — constructed as a union - -The published Summary was, again, not the union it claims to be: its own palette (`#c6c6c6`, -`Black`, `#ededed`, `Gray`), its own two ranges at 20–40 and 40–60, and `value=70`. Rebuilt as the -union of the sections above it, taking the earlier section's value where two conflict — `value=50`, -`maximumValue=80`. - -As in bullet-graph, the union now contains the Title & Subtitle and Highlight Needle properties the -published Summary omitted. They are among the snippets it says it combines, but they do change what -the reader sees. - -## chart-annotations - -### Paired against samples the page does not show - -Every snippet in this topic is a `CategoryChart`, while the three samples the page embeds are -`DataChart`. The samples the snippets were actually written from — `annotations-final-value` and -`annotations-custom` under `charts/category-chart` — are never mentioned on the page. The XAML -binding to `TemperatureAnnotatedData` is what gives it away: that is `annotations-custom`'s own -`dataSourceRef`. - -Collapsed against those two. The embedded `` tags are left as they are; whether the page -should show a CategoryChart sample next to CategoryChart snippets is a content question, not a -collapse decision. - -### Callout member paths pointed at nothing - -The snippets set `calloutsXMemberPath="index"`, `calloutsYMemberPath="value"` and -`calloutsLabelMemberPath="info"`. The running sample uses `Index`, `Temperature` and `TempInfo`, -and `value` and `info` are not fields of the data at all, so two of the three named nothing. -Taken from the sample. - -### `calloutsAllowedPositions` was being dropped by the emitter - -The prose documents it and the sample sets it, but no platform's snippet showed it, because an enum -collection was emitted only for XAML. It is declared -`Collection:string:CalloutPlacementPositionsCollection:CalloutPlacementPositions`, and a Collection -fell through to sub properties — child elements — which a list of enum values has no representation -as, so it was silently dropped everywhere the emitter did not have to set it in code. -`includedProperties` escaped only because it happens to be declared `Array:string` instead. Fixed in -the renderer; the property is now in the snippet. - -### One thing deliberately left - -- **The Web Components `ts` block is still hand written.** It sets the data sources in code, which - is that platform's idiom, and the collapse only covers markup. It now restates member paths the - generated markup also carries, which is exactly the drift this work exists to remove, so it - should come from the same JSON through the code channel. - -### The XAML callout snippet was in the wrong place - -It sat after the Timeline Styling section rather than with the callout markup it duplicates, which -is why the group looked like a separate snippet. Folded into the callout snippet. - -## bullet-graph - -Six of the nine groups collapsed trivially once XAML was overwritten (Usage, Comparative Measures, -Comparative Ranges, Labels, Backing, Scale). The three below did not. - -### Every XAML block was authored from the wrong sample - -Not drift. The XAML snippets throughout this topic carry the values of the hero `animation` sample -rather than each section's own sample, in all six sections that have one: - -| section | XAML showed | its own sample | `animation` | -| --- | --- | --- | --- | -| Comparative Measures | `Max=120, Value=70, ValueBrush=black, ValueOuterExtent=0.7` | 100 / 50 / dodgerblue / 0.65 | 120 / 70 / #000000 / 0.7 | -| Highlight Value | `Max=120, LabelExtent=0.02` | 100 / 0.025 | 120 / 0.02 | -| Comparative Ranges | ranges 0–40, 40–80, 80–120, extents 0.2 | 0–40, 40–70, 70–100, extents 0.075 | 0–40, 40–80, 80–120, extents 0.2 | -| Tick Marks | `TickEndExtent=0.05, MinorTickCount=5` | 0.05 / 4 | 0.05 / 5 | -| Backing | `#f7f7f7, #d1d1d1, thickness 0` | #bddcfc, dodgerblue, 4 | #f7f7f7, #d1d1d1, 0 | -| Scale | `#dbdbdb, gray, thickness 0` | dodgerblue, darkviolet, 2 | #dbdbdb, gray, 0 | - -Expect every XAML block in this topic to differ from the published page. All of it is intended. - -### Highlight Value — the snippet now matches the prose - -The section reads "a good example is if **value** is 50 and **highlightValue** is set to 25. This -would represent a performance of 50%". Every platform's block, and the peered -`/gauges/bullet-graph/highlight-needle` sample, ran `value=70`, which is 36% and does not illustrate -the sentence above it. - -Collapsed to the sample with `value` overridden to 50, so the page shows what it says it shows. - -The XAML block additionally set `HighlightValueDisplayMode="Overlay"` and never set -`HighlightValue` at all, so it demonstrated nothing. Gone with the rest of the XAML. - -Expect: `value` 70 → 50 on all five platforms. - -### Tick Marks — sample pinned, snippet values overlaid - -The only group where no platform matched its sample. The four web platforms agreed with each other -and disagreed with `/gauges/bullet-graph/tickmarks` on four extents, and set a `targetValue` the -sample does not have: - -| | documentation | sample | -| --- | --- | --- | -| `tickStartExtent` | 0.2 | 0.25 | -| `tickEndExtent` | 0.075 | 0.05 | -| `minorTickStartExtent` | 0.2 | 0.15 | -| `minorTickEndExtent` | 0.1 | 0.05 | -| `targetValue` | 90 | absent | - -Four platforms agreeing outweighs the sample, so the sample is pinned and these five are overlaid. -`targetValue` in particular is carried over deliberately: the sample not having it is what made this -group hard to match, and overlaying it means the name is present on both sides next time. - -Expect: no change on the web platforms. XAML changes. - -### Summary — constructed as a union - -The published Summary was not the union it claims to be. It ran its own palette — `Black`, `Gray`, -`#cecece` where the sections use `DodgerBlue`, `LimeGreen`, `DarkViolet` and `#bddcfc` — and its own -ranges (20–40, 40–60, 60–90 at extents 0.25/0.9, against the sections' 0–40, 40–70, 70–100 at -0.075/0.95). It was a third confabulation rather than a combination of the snippets above it. - -Rebuilt as the actual union of groups 2–8. Two conflicts had to be resolved, both in favour of the -earlier section, which is also what the published Summary did: `value` is 50 rather than the 70 the -tick, label, backing and scale sections use, and `targetValue` is 80 rather than 90. - -One addition to flag: the union includes `highlightValueDisplayMode` and `highlightValue` from the -Highlight Value section, which the published Summary omitted. It is one of the snippets above, so a -union contains it, but it does change how the value bar renders. - - -The section says "all above code snippets are combined into one code block below". It is by -definition the union of the sections above it and no single sample backs it, so it is written inline -rather than pinned. Built from the collapsed form of groups 2–8, which means it inherits the two -decisions above: `value=50` from Highlight Value, and the overlaid tick extents. - -## Types a handler needs beside it: supporting items - -An event handler item's content lands inside the generated component's class, so a class the handler -depends on had nowhere to go. `GetItemType` also made the two shapes mutually exclusive: a file with -a `//begin data` region is a data item and its handler region is never read, so "put the types in the -data region of the same item" was not open either. Nesting the type inside the handler region works -in C# and only in C# — Kotlin, Swift and the rest of what is coming do not all offer nested types — -so that was not the answer. - -A new item type carries them. `CodeGenerationLibraryItemType.Supporting`: a folder whose per-platform -files hold a `//begin supportingTypes` region, emitted at the same scope as the component through a -`supportingTypes` insertion point every sample template now has. In a razor file that scope is the -component's own class, since a razor file has no namespace scope; everywhere else it is a peer. - -A handler names what it needs in its configuration, not in the sample: - - MapShapeRandomStyling/Web-CONFIG.json - { "requires": ["ShapeStylingUtility"] } - -Declared on the item rather than in the sample so a sample naming the handler gets the types without -knowing they exist, and so the item stays self sufficient wherever it is used. The list is flat and -is not followed further — a supporting item requires nothing itself. - -**Dedup is by item name, which is why it is an item.** Two handlers requiring the same types produce -one copy: each name goes through the same set that already stops a handler being emitted twice, and -the first mention decides where the declarations land, which keeps a base class ahead of what extends -it. The alternative considered — a labelled `supportingCode` region inside each handler item — was -rejected for exactly this: it duplicates the content in every item that needs it and has to invent an -identity space (labels) to deduplicate what it duplicated, with the label unverified against the code -inside it. Symbol-level dedup was rejected earlier still: it means parsing declarations in every -language the library targets. - -Emitted on a channel of its own, `supporting`, deliberately not part of `handler`. A topic showing a -handler shows the lines that do the work; the helper class it calls into is usually a separate topic. -A snippet asking a handler for `channel="supporting"` gets the types the handler requires, because -the emission is recorded under the requiring item's name as well as its own — the request is -registered under the name the topic asked for, which is the handler. - -Not yet done: `LibraryProjectEmitter`, the harness that compiles library items, does not emit -supporting items — it writes one file per item through a per-platform scaffold that has no shape for -peer declarations. It logs the skip rather than passing over it silently. A handler requiring one -still generates correctly in a sample. - -## geo-map-shape-styling - -The last of the DataVisualization topics still hand written. Four sections — Random, Scale, Range and -Comparison — each configured a helper from `ShapeStylingUtility` and wired it to `styleShape`. What -was published did not compile: every one of the four called `getStyle(...)`, and the utility, both on -its own topic and in the sample that runs, defines `generate(...)`. Three of the four also read -`this.ShapeRandomStyling` where the field is `this.shapeRandomStyling`. - -Backported from `igniteui-wc-examples/samples/maps/geo-map/shape-styling`, the only downstream repo -that has it. That sample configures all four and switches between them from a dropdown, which the -code generation library cannot express, so it became four samples — `shape-styling-random`, `-scale`, -`-range`, `-comparison` — one per variant, each a map, a shapefile load and one styling. Four rather -than one because everything in `onViewInit` runs: four styling items on one sample would stack four -shape series on one map. - -`ShapeStylingUtility` is the supporting item the four variant items require, so the utility exists -once in the library rather than four times. - -Two changes to what a reader sees, both deliberate: - -- The `import { ShapeRandomStyling } from './ShapeStylingUtility'` line is gone. In a generated - sample there is no such import — the types are peers of the component — so the emitted snippet - cannot carry one. The prose still names the class, and its own topic still publishes the file. -- The snippets now show the shapefile load and the series construction around the styling, where the - hand written ones elided them with `// ...`. The teaching stays imperative throughout, which - `audit-imperative.py` confirms. - -The page's own sample is untouched: it still colours by continent through `ShapeFileStyling`, and the -four new samples back the snippets. - -## The data grid topics, and which block is the reference - -These pages are gated `include: ["NonWeb"]` in the table of contents, so only the XAML platforms -publish them today — but they were published for the web until recently and may be again. That -settles which block a collapse has to reproduce: **the web blocks are authoritative, WebComponents -first**, and the XAML blocks are not evidence of anything, having been generated from the samples on -this branch by `add-xaml-snippets.mjs`. Where a sample disagrees with a web block, the sample is what -has drifted. - -Because the web pages do not generate, a collapse cannot be checked by regenerating them. It is -checked by emitting the fence directly for Angular, React, WebComponents and Blazor with the -generator's own style tables, and reading that against the published block. WinUI is checked the -ordinary way, against the generated page. - -Two things every one of these collapses changes, both accepted: - -- The grid gains `Name="grid"`. The samples name it and the topics' own API sections look it up by - that name, so the name belongs in the markup; the hand written XAML omitted it. -- React's enum values become strings — `headerClickAction="SortByMultipleColumns"` where the page - wrote `{HeaderClickAction.SortByMultipleColumns}`. Both are valid and every collapsed topic writes - the string. Blazor still qualifies its enums, which is what those pages showed. - - **The enum's import block goes with it.** Nothing in the emitted snippet refers to the enum, so a - hand written `import { HeaderClickAction } ...` beside the fence is dead text. Deleted, not kept. - And a page that did need its imports would not keep them by hand either: it would emit them, on - the imports channel, from the same definition. An uncollapsed block next to a collapsed one is the - thing this whole exercise is removing. - - Imperative sections are the exception, and only because their code is not emitted at all: where a - topic teaches an API call, the imports that call needs stay beside it. column-sorting keeps its - `ColumnSortDescription` import for that reason and loses its `HeaderClickAction` one. - -### column-sorting — TriState converged to the web's value - -The sample's grid carries `SortByMultipleColumnsTriState`, which is the initial value of the live -demo's dropdown, while all four web blocks teach `SortByMultipleColumns`. The snippet states the -documented value and stays pinned to the sample, in the way the gauge topics overlay a value the -sample happens to set differently. - -Only the four markup blocks collapsed. The two import blocks above them are kept. - -### column-resizing — the web blocks agree, and correct each other - -Three web blocks state `Deferred`, `Interpolate` and a separator width of 5, against the sample's -`Auto` and 1. The snippet states the documented values. WebComponents wrote -`column-moving-separator-width` on a resizing topic; React and Blazor both say resizing, which -settles it as a typo rather than a fourth opinion. - -The columns come from the documented blocks — FirstName, LastName, Street with `isResizingEnabled` -off, City — replacing the five styled columns the XAML block inherited from the sample. All four -fields exist on EmployeesSalesData, so this is a narrower example rather than a stale one, and the -one the topic is actually about: resizing turned off for a single column. - -### column-moving — SlideOver and 5, not the sample's Auto and 2 - -All three web blocks agree; the sample differs on both. Documented values stated. - -### column-animation — one of the documented values does not exist - -React and WebComponents both state `columnAddingAnimationMode="SlideToLeft"`. That enum's members -are the SlideFrom set — SlideToLeft belongs to exchanging and hiding — so the value is not one the -property can take and the schema rejects it. Blazor hints at the same conclusion by qualifying the -adding property with `ColumnShowingAnimationMode.SlideFromLeft`: a wrong type name, but a valid -value. The snippet states `SlideFromLeft`, which is also what the sample runs. - -The other three documented values are valid and are kept over the sample's: `SlideToRight` rather -than `Crossfade`, `SlideToTopAndFadeOut` rather than `FadeOut`, `SlideFromBottomAndFadeIn` rather -than `SlideFromLeft`. - -Also fixed by collapsing: WebComponents wrote the attribute as `column-addingAnimation-mode`, which -is not the property's name in any casing. - -### row-highlighting, row-pinning — nothing but the name - -Both collapse cleanly. `rowHoverBackground` is stated where the sample omits it, since all four -blocks teach it. The only change to what a reader sees is the grid's Name. - -### column-summaries — Root and RowTop - -`summaryScope` is `Root` — React alone said `Groups` — and `groupSummaryDisplayMode` is `RowTop`, -which the web blocks teach against the sample's `RowBottom`. The summary and group descriptions come -from the sample, since no block states them and they are what the topic is demonstrating. - -The Japanese copy carries a section the English one does not (カスタム集計), so the mirror refuses to -work in spans on this page and the same definition was applied to it directly. That extra section is -untouched and still hand written. - -### horizontal-scrolling — WebComponents ignored, as instructed - -Its block writes `id=` on the columns where it means `field=`, and states a minimum of 200 against -120 everywhere else. The two sections take the sample: the grid's minimum, then the sample's own -twelve columns, each with the width the topic is about. - -This is the first published output to carry the width shorthand: the XAML columns now read -`Width="*>120"` where they had a nested ColumnWidth element. - -### accessibility — not collapsible, and the reason is in the page - -The description has no accessibility property at all, so a snippet cannot state one. The page's own -prose says why: the feature is turned on "by setting `--use-accessibility` property to true -explicitly in CSS, preferably using a div tag around the grid", which is what the Blazor block shows. -The React and WebComponents blocks set a `useAccessibility` attribute instead — whether the component -really takes one is a question for the product, but the description does not model it either way. -Left hand written. - -### overview, Manually Define Columns — a sample that defines columns manually - -The blocks there use ProductID, QuantityPerUnit and UnitsInStock, and nothing in the library carries -the last two, so binding them to the topic's own sample would publish columns showing nothing. The -nearest real definition is `column-auto-generation-sales`: ProductOrders, `autoGenerateColumns` off, -eight columns declared one by one — which is exactly what the section teaches. The snippet states -that sample. - -### cell-editing — CellBatch, with the buttons left where they are - -The prose settles the value: "When set to CellBatch, in order to commit the changes you must...". -Both batch sections state `CellBatch`, so WebComponents' `Cell` goes, and the grid is now one -snippet with each platform's button markup kept beside it in a block of its own. A description -cannot state a button, and the button is the other half of what those sections teach. - -The Error Validation section is not collapsed: it wires `cellValueChanging` and `dataCommitting`, -and the sample carries neither handler, so there is nothing to emit them from. - -### row-grouping — imperative stays imperative, one section, two fences - -WebComponents and React teach these two properties as an assignment; Blazor and XAML teach them as -an attribute. Those are not interchangeable, so each section states its definition once and emits it -twice: `channel="code"` excluding the XAML platforms, and markup excluding the web ones. - -The web output carries the construction line — `var grid = new IgcDataGridComponent();` — before the -assignment, where the page showed the property being set on a grid the reader already has. That is -the shape the code channel produces everywhere, and what chart-performance has been publishing. - -### local-data, column-pinning — the shorthand made these possible - -Both are column-heavy and neither could be collapsed until a column width could be written as -`*>70`. local-data states the React block column for column, which also removes the page's -duplicated XAML block, its unguarded `ts` fence publishing React's data generator to every platform, -and the TODO admitting WebComponents was never written. Its data is now emitted for every platform -from the ProductOrders item. - -column-pinning's block files three columns under a "Columns pinned right" comment and states no -pinning on them. The sample pins them, so the snippet does: a comment contradicted by the markup -beside it is not the reference. - -### A toolbar and its grid are one definition, not two - -column-chooser and column-pinning each pair a toolbar or chooser with the grid it targets. Those go -in one definition with two descriptions — `aboveContent` and `content`, which is how the samples -already hold them — and the emitter writes both elements in order, matching what the blocks showed. -Splitting them into an array of two definitions does not work: `targetGridRef` resolves within the -definition, so a toolbar emitted alone reports the grid as a library item that does not exist. - -### column-chooser — another value that is not a member - -The React and WebComponents blocks state `columnHidingAnimationMode="SlideOver"`. SlideOver belongs -to column *moving*; the hiding modes are the SlideTo and FadeOut set. The sample does not set the -property at all, and the section is about the chooser, so the snippet drops it. - -### column-options, remote-data — WebComponents' minimum width, again - -remote-data's WebComponents block states a minimum of 200 where React, XAML and the sample say 120, -the same disagreement horizontal-scrolling has. 120 stated. - -### skipAlterDataCasing belongs on every grid snippet - -Every grid sample sets it, and without it the web emitters camelise a member of the data: a column -bound to ProductID comes out as `field="productID"`. XAML is unaffected, which is exactly why this -hid — these pages only generate for XAML, so the WinUI checks were clean while the web output, the -one that matters here, was wrong. All 49 grid fences now carry it. - -Worth remembering for any topic that names a field, a member path or a sort key: the flag lives at -the root of the definition, beside `descriptions`, as it does in the samples. - -### row-grouping Summary — the union, as code where the page taught code - -The section claims to combine the snippets above it, so the definition carries both properties and -the three group descriptions its own blocks build. The web platforms and Blazor take it on the code -channel, since that is how those blocks teach it; XAML takes the markup. - -## Checking a collapse for platforms the page does not publish - -The data grid topics are gated to the XAML platforms, so `generate.mjs --platform=React` skips them -entirely: their fences had never once been emitted for the web. Schema validation still ran, but a -schema says nothing about what comes out. Two checks close that, and both belong in the routine for -any gated topic: - -- `check-snippet-emission.mjs` emits every fence for every platform regardless of gating, honouring - only the fence's own `exclude`. 541 emissions across five platforms, and it is what proves a - definition survives the platforms its page happens not to build. -- `compare-web-blocks.mjs` recovers each page from before a commit and sets the block each platform - had beside what the fence emits for it now, per element, reporting attributes gained, lost and - changed. The web blocks are the accurate record for the web — they were published, where the XAML - blocks were generated from the samples — so this is the review that matters on these pages. - -What the comparison turned up, beyond the decisions already recorded: - -- **A validation gap.** Only `descriptions.content` was ever checked, so any other slot went - unexamined. The column chooser fence carried four properties its description does not have — - `showAllText`, `hideAllText`, `height`, `width` — and the emitter dropped them without a word. - Every description in a definition is checked now, and the four properties are gone from the fence. -- **A grid told not to generate columns, with none stated, has none.** The chooser sections lost - their columns that way. Both now state the sample's. -- **The toolbar sections' grids leave room for the toolbar**, which is what `calc(100% - 40px)` was - saying; the fences state it rather than the sample's 100%. -- Enum values come out canonical — `left` becomes `Left`, `thin` becomes `Thin`, - `slideFromRightAndFadeIn` becomes `SlideFromRightAndFadeIn` — which is a correction, and - `120px` becomes `120` because the description takes a number. - -One thing the description cannot express, left as a gap rather than papered over: the column chooser -takes a height, a width and the text on its show-all and hide-all buttons in the published blocks, -and `ColumnChooser` models none of the four. - -## Finishing DataVisualization - -### chart-performance — three sections, and a fourth invalid property - -The two axis sections show the same setting on three chart types in one block, which is what an array -body is for: three definitions, emitted in order. Data Filtering takes the code channel, the shape -this page already publishes elsewhere. - -`xAxisLabelExtent` and `yAxisLabelExtent` are not properties of CategoryChart or FinancialChart — -those expose `xAxisExtent` and `yAxisExtent`, and `labelExtent` is the axis-level name the DataChart -form already used correctly. Fourth invalid value this exercise has turned up. - -### geo-map-display-bing-imagery — the osm pattern - -Markup, then the binding code, with `$setInCode` and `$assignInCode` for the web platforms, exactly -as the OpenStreetMap topic does. The section had only Angular and React blocks before, so Blazor, -WebComponents and the XAML platforms had nothing. - -One thing not carried over: the block listed the three imagery styles as alternatives with `// or` -against each. A definition states one value; the styles are in the topic's own table above. - -A ref= fence cannot be used for the second one. The definition it names carries `$type: -+doc:markup`, and a definition that marks part of itself has its own markers respected, so nothing -lands on the binding channels. Both fences state their markers, which is what the osm topic does. - -### geo-map-binding-shp-file — a published TODO - -The WebComponents block read ` TODO - ADD CODE SNIPPET`. The section teaches loading a shapefile -imperatively, which no sample did — the page's own sample binds `shapefileDataSource` declaratively, -and turning the topic's imperative lesson into that markup is the conversion never to make. So the -loading path is a pair of library items and a sample of its own, and the section emits for every web -platform. - -### geo-map-binding-multiple-shapes — Blazor was reading the wrong scenario - -Its Blazor block still taught the Asia/Europe scenario the page was rewritten away from, while every -collapsed section on the page shut Blazor out for want of a C# port. The four map handlers now have -Blazor implementations, the fences let Blazor in, and the stale block is gone. - -The Summary states the definition twice: the markup, then all four handlers. `allCode` was the -obvious single channel and it carries fields and initialisation but not the handlers. - -### What is left in DataVisualization, and why - -- **geo-map-display-esri-imagery, Esri Utility** — the value taught is a call: - `EsriUtility.getUri(EsriStyle.WorldOceansMap)`. A description states values, not calls, so the - snippet would show a literal URI and lose the utility the section is about. -- **geo-map-resources-world-locations, -world-util** — reference listings of helper classes. The web - copies could come from the library items that already hold them; the Blazor listings need those - items ported to C# first. -- **radial-gauge, dashboard-tile** — package and namespace instructions for Blazor, not component - markup. -- **geo-map-binding-data-csv** — the block is a sample of CSV data. -- **grids/data-grid/type-sparkline-table** — a template column drawing a sparkline per platform, - which needs a template item written; the sparkline templates in the library are for other things. - -### cell-editing, Error Validation — written from the closest sample - -The section wires `cellValueChanging` and `dataCommitting`, and no sample carried either. Two library -items do now — one refusing an empty cell with a message and taking anything else, one committing an -update and refusing everything else — and the topic's own sample names them. - -Two fences, not one, and for a reason worth remembering: a definition that marks part of itself has -its own markers respected, so the same definition carrying `$cellValueChangingRef: "+doc:handler"` -emits the handler and *nothing* for markup. The markup fence states the definition plain; the handler -fence restates it with the markers on the properties that name the handlers. The lead-in sentence -between them is scoped to the platforms the second fence serves, or XAML reads a sentence promising -code that never comes. - -### type-sparkline-table — the sample existed downstream - -The topic pointed `` at a sample that did not exist here. It -does exist in igniteui-wc-examples, so the data generator and the cell template are ported from the -one that runs rather than invented: `ProductsWithHistory` — the sample's own `Products`, reshaped as -an array of rows the way `ProductOrders` is, since that is what `dataSourceRef` binds to — and -`DataGridSparklineTemplate`, which builds the chart in a container once and hands it the row's -history as the grid reuses the cell. - -Blazor's block taught a `RenderFragment` holding a `Sparkline`. The library's Blazor templates are -registered scripts, which is what its samples run, so that is what the collapsed topic shows. - -## What DataVisualization keeps, and why - -The count of "remaining blocks" was misleading for a while because the survey behind it matched -markup fences only — tsx, html, razor, xaml — and everything left on these pages is code. Counting -every fence gives the real picture, and what is left divides into four kinds, none of them a snippet: - -- **Dependencies** — `npm install` lines and the Blazor NuGet and namespace instructions. Setup, not - a component. -- **Component Modules** — the registration each platform performs. The module channel can now be - asked for a sample's module list, which is a fix worth having, but what it yields is the list; the - call around it — `ModuleManager.register(...)`, `@NgModule`, `AddIgniteUIBlazor(...)` — lives in - the platform's template and not in anything a definition can state. These sections need the call, - so they stay as they are. -- **Companion files and utilities** — the Esri utility, whose lesson is the call - `EsriUtility.getUri(EsriStyle.WorldOceansMap)`; the heat map's web worker, which is a file the - reader adds and wires up differently per bundler; the world resource listings, which could come - from the library items holding them once those items are ported to C#. -- **Illustrations of data** — chart-performance's Data Structure, and the CSV on the csv binding - topic. They show the shape data should take, not a component. - -chart-annotations' Callout Layer was the last one that was really a snippet: WebComponents taught the -same properties as assignments beside the markup fence, and now emits them on the code channel. - -## Which components are in scope - -"Everything whose canonical description name does not start with Web" is the rule, and the way to -apply it is not the frontmatter — a page can mention Checkbox and be entirely about the web grid. -The components that carry a XAML name in their metadata are the cross platform set, and there are -twenty five of them: the charts, the gauges, the map, the data grid, the toolbar, the dashboard -tile, the zoom slider, the colour editor, the sparkline, the treemap and the legends. The inputs and -layouts are web only and out of scope even though their names carry no Web prefix. - -Two things that survey turned up, both metadata copy-and-paste: the DataGrid's WindowsForms -qualified name is UltraLinearGauge, and ODataVirtualDataSource's is the pie chart's. - -### menus/toolbar — four sections - -The data chart integration, the data URL icon, the vertical orientation and the colour editor. The -toolbar sits beside the component it targets in one definition; a toolbar stated alone reports its -target as a library item that does not exist, which is how the vertical orientation fence failed -first time. That one names no target, which is also what its block showed. - -### inputs/color-editor — a cross platform component among the web only ones - -Its Usage and Binding to events sections collapse; the handler the event section teaches is a -library item now, on the web, Blazor and .NET, and the topic's sample names it. - -### zoomslider-overview — another sample that only existed downstream - -The topic pointed at /charts/zoomslider/overview, which exists in igniteui-wc-examples and not here. -Ported, and the Code Snippet section states it. - -What these three leave behind is what every component topic keeps: Dependencies and Component -Modules. - -## Component Modules, collapsed after all - -The module list alone was not enough, because a Component Modules section teaches the call around it. -The emitter writes that call now, into a region of its own — `moduleRegistration` — built from the -same list it already wrote for the template, with each platform saying what wraps it: -`@NgModule({ imports: [...] })` for Angular, `ModuleManager.register(...)` for Web Components, an -array and a forEach for React, `builder.Services.AddIgniteUIBlazor(...)` for Blazor, and nothing at -all for the XAML platforms, which have no registration. Angular and Blazor name the file the -registration belongs in, as their hand written blocks did. - -A section is then one fence: `channel="modulesImports...moduleRegistration"`, which is the imports, -an ellipsis comment, and the call. Applied to geo-map, the three gauges, the dashboard tile, the zoom -slider, the colour editor, the toolbar and the multiple shapes topic. - -Two things stay hand written in those sections, and both are instructions rather than component code: -the `npm install` lines, and the Blazor `@using` that belongs in _Imports.razor. - -### Two errors this turned up - -The zoom slider was excluded for Blazor in the table of contents, which is wrong — it ships there — -so that page had been unbuildable for Blazor readers. The exclusion is gone. - -On the multiple shapes topic, three fences and the headings above them were still scoped to the three -web platforms, left from when those handlers had no C# port. The port landed earlier today, so the -fences admit Blazor while the wrappers still shut it out. Both are unwrapped, and Blazor now reads the -Processing sections it was never shown. - -### The resource topics - -geo-map-resources-shape-styling-utility publishes the utility the shape styling topic uses, and that -utility is a supporting item now, so the topic emits it: `channel="supporting"` for the listing and -`handlersImports` for what it imports. Its Required Imports section loses the series type, which -belongs to the handler that calls the utility rather than to the utility itself; the shape styling -topic shows that one. - -The other four — world locations, world connections, world util and the Esri utility — cannot be -emitted yet, and the reason is the library rather than the topics. WorldLocations and WorldConnections -live inside the WorldFlights *data* item, WorldUtils inside a handler item, and there is no way to ask -for one class out of an item. Splitting them into supporting items would be the fix, but a data item's -"requires" is not read — only a handler's is — so WorldFlights would lose the classes its own samples -need. The Esri utility has no item at all. - -What was fixed on those four: each published its TypeScript listing in no platform block at all, so -Blazor readers saw it *and* their own C# copy, and the XAML platforms were shown a language they -cannot use. The listing is scoped to the web platforms now. - -### Asking for one declaration out of an item - -The three world topics did become emittable, and not the way the paragraph above expected. Two routes -were open, and the choice matters beyond these pages. - -Splitting the classes into supporting items was tried first. A data item's `requires` is read now, so -it would have worked — but a supporting item is written where the component is, and WorldLocations is -a thousand lines of city data. Every sample binding WorldFlights would have carried that inside its -own component file rather than beside it, which is worse than what it replaced. - -So an item can mark regions inside itself instead, and a snippet can ask for one by name: - -``` -"dataSourceRef": "WorldFlights", -"$dataSourceRef": "+doc:WorldLocations" -``` - -The item is one file, compiled whole into every sample that uses any of it, and nothing about the -generated sample changes — the file still holds all of it, in the order it was authored. Only the -snippet is narrower. The markers are the same ones the library already reads to find an item's -content, and the region names are the item's own, so a token is asked of the item rather than assumed: -a name it does not declare still means an emitter output region, which is how `content` and -`supportingMethods` keep meaning what they meant. - -Three things had to change for it to hold: - -- A **region writer answers only to its region**, never to its channel. The region content is written - a second time, to a writer of its own, and the channel-matching rule would otherwise have matched - both writers and put that region into the whole-item snippet twice. -- **`requires` is read on data items**, which is what makes a shared class expressible either way. -- **The regions the library treats as structure** are now the emitter's output region names as well as - the library's own markers. Otherwise a marked property referencing a template item with a `content` - region would have been diverted away from the markup writer it meant. - -The C# region for WorldConnections runs to the end of CoordinateLine, because that is what its methods -return and what the published page showed. Emitting it turned up a stray `;` after the opening brace -of `GetFlights` in all three C# copies, left from converting it to a static constructor. - -The Esri utility is still not emittable, and for a different reason: it has no library item, and the -section teaches a *call* — `EsriUtility.getUri(EsriStyle.WorldOceansMap)` — which a description cannot -express. - -### The portable builds - -`JsonSchemaEmitter`'s reflection constructor built its own `ComponentRenderer`, which only exists -where a renderer constructs itself. On the portable platforms a renderer is built from a platform and -an adapter, and the adapter is declared by the assembly hosting the controls — so there the caller -passes the renderer in. The assembly filter is per build for the same reason: the data visualization -assembly is not called the same thing on every platform. - -## What the checks found once they were made honest - -Three of the tools were reporting success on work they were not doing, and fixing them turned up real -defects rather than tool noise. - -- **A composed channel was never emitted.** `check-snippet-emission.mjs` asked the emitter for - `"bindingImports...bindingInit,bindingCode"` as though it were one channel token. No such channel - exists, so nothing came out and nothing was checked — every `codeBehind` and every Component Modules - fence had passed vacuously. It now emits each region the way the generator composes them, and fails - only when every region of a fence is empty. -- **The checker marked definitions the generator would not.** It set `$type` on the root - unconditionally, so a definition that marks parts of itself was checked as though it wanted the - whole element. It now mirrors the generator's rule. -- **`channel="auto"` is not a region**, and asking for it as one produced nothing. It emits with the - definition's own markers instead, which is what the generator does. - -The defects that surfaced: - -- `geo-map-binding-multiple-sources`'s Summary asked for `code="allCode"` — the attribute is - `channel`, so that fence silently emitted markup and the page showed the same markup twice. Its - imports fence is empty on Blazor and the XAML platforms, and `allCode` is empty on the XAML - platforms, which declare all of it; both are scoped now. -- `grids/data-grid/local-data`'s data block was a `ref=` fence asking for `data`, and the definition - it referenced marks nothing — so the block was empty on every platform. It states its own marker. - -`--print --platform=` on the checker prints what each fence emits, which is the only way to read -the output of a page gated away from a platform. - -## Uno - -`--platform=Uno` failed on the first fence of the first page: there is no `editor-templates/Uno`, and -emission needs a folder template. Uno emits the same XAML dialect as WinUI against the same -Microsoft.UI.Xaml types and differs only in how a project is assembled, which no snippet shows — so a -platform with no template of its own borrows from the platform whose output it shares. Uno now -generates both locales, with `XamDataGrid` and the same prefixes WinUI uses. - -## The library project emitter - -Injecting file access into `CodeGenerationFolderTemplate` left its `FileAccess` unset in that harness, -and every provider's `GetEmitterTemplate` went straight to `LoadTemplate` — a null reference on the -first handler item, which is where the build stopped. It defaults to System.IO where System.IO exists, -as `CodeGenerationLibrary.FromFolder` does; a host without it is the case with something to declare. -Verified by running the emitter over all eight platforms: exit 0, no exceptions. - -Still open there, and logged by the run rather than silent: a supporting item is not emitted into that -project, so the four shape styling handlers reference types it does not write. The harness writes one -file per item through a per-platform scaffold, and a supporting item needs its declarations beside the -component — which needs a provider method and an import per platform. The pipelines do not compile -that project today, so nothing is red. diff --git a/docs/xplat/scripts/add-xaml-snippets.mjs b/docs/xplat/scripts/add-xaml-snippets.mjs index 4b80c80c60..b999b304b7 100644 --- a/docs/xplat/scripts/add-xaml-snippets.mjs +++ b/docs/xplat/scripts/add-xaml-snippets.mjs @@ -14,7 +14,7 @@ * * Name resolution is apiMap-authoritative with a fuzzy fallback * (`dataSource` → `ItemsSource` from the map; `headerClickAction` → - * `HeaderClickAction` by convention). See WINUI-UNO-PLAN.md §6.4. + * `HeaderClickAction` by convention). See dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/notes/WINUI-UNO-PLAN.md §6.4. * * **Lockstep is enforced, not assumed.** A topic is edited only when its en and * jp copies agree on the *sequence* of snippet groups — same count, same diff --git a/docs/xplat/scripts/check-snippet-code-channels.mjs b/docs/xplat/scripts/check-snippet-code-channels.mjs index ff5b744222..e90a1f504b 100644 --- a/docs/xplat/scripts/check-snippet-code-channels.mjs +++ b/docs/xplat/scripts/check-snippet-code-channels.mjs @@ -24,23 +24,15 @@ import { readFileSync, readdirSync, statSync } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; import { createRequire } from 'node:module'; +import { loadSnippetApi, resolveExamplesRoot } from './lib/snippet-toolchain.mjs'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const ROOT = path.join(__dirname, '..'); -const EXAMPLES = process.env.XPLAT_EXAMPLES; +const EXAMPLES = resolveExamplesRoot(); -if (!EXAMPLES) { - console.error('usage: XPLAT_EXAMPLES=… node scripts/check-snippet-code-channels.mjs'); - process.exit(2); -} const require = createRequire(import.meta.url); -const SNIPPET_API = process.env.IG_SNIPPET_API - || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'; -const DOM_SHIM = process.env.IG_SNIPPET_DOM_SHIM - || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'; -require(DOM_SHIM); -const api = require(SNIPPET_API); +const api = loadSnippetApi(); const PLATFORMS = ['Angular', 'React', 'WebComponents', 'Blazor', 'WinUI']; const CONTENT = path.join(ROOT, 'src', 'content', 'en', 'components'); diff --git a/docs/xplat/scripts/check-snippet-divergence.mjs b/docs/xplat/scripts/check-snippet-divergence.mjs index 134b7bc175..910bbe6d97 100644 --- a/docs/xplat/scripts/check-snippet-divergence.mjs +++ b/docs/xplat/scripts/check-snippet-divergence.mjs @@ -33,6 +33,7 @@ import { readFileSync, readdirSync, statSync } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; import { createRequire } from 'node:module'; +import { loadSnippetApi, resolveExamplesRoot } from './lib/snippet-toolchain.mjs'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const ROOT = path.join(__dirname, '..'); @@ -98,16 +99,11 @@ function canonicalTag(raw) { * "(w:ItemsSource,xam:ItemsSource,s:DataSource)" — and is the only thing that knows dataSource and * ItemsSource are the same property. */ -const SNIPPET_API_PATH = process.env.IG_SNIPPET_API - || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'; -const SNIPPET_DOM_SHIM = process.env.IG_SNIPPET_DOM_SHIM - || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'; const nameResolver = (() => { try { const require = createRequire(import.meta.url); - require(SNIPPET_DOM_SHIM); - return require(SNIPPET_API_PATH); + return loadSnippetApi(); } catch { return null; // without it, names are compared as written } diff --git a/docs/xplat/scripts/check-snippet-emission.mjs b/docs/xplat/scripts/check-snippet-emission.mjs index a547b47937..f048c9fa0b 100644 --- a/docs/xplat/scripts/check-snippet-emission.mjs +++ b/docs/xplat/scripts/check-snippet-emission.mjs @@ -11,22 +11,20 @@ * It is the check that would have caught skipAlterDataCasing: the web emitters camelise a member of * the data without it, and no XAML run can show that. * - * XPLAT_EXAMPLES= node scripts/check-snippet-emission.mjs [--lang=en] [glob] + * node scripts/check-snippet-emission.mjs [--lang=en] [--print [--platform=WinUI]] [glob] + * + * The emitter and the examples checkout are resolved by lib/snippet-toolchain.mjs: a peer + * checkout locally, or XPLAT_EXAMPLES / IG_SNIPPET_API when they are somewhere else. */ import fs from 'fs'; import path from 'path'; -import { createRequire } from 'module'; import { fileURLToPath } from 'url'; +import { loadSnippetApi, resolveExamplesRoot } from './lib/snippet-toolchain.mjs'; -const require = createRequire(import.meta.url); const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); -const EXAMPLES = process.env.XPLAT_EXAMPLES; -if (!EXAMPLES) { - console.error('set XPLAT_EXAMPLES to the igniteui-xplat-examples checkout'); - process.exit(2); -} +const EXAMPLES = resolveExamplesRoot(); const args = process.argv.slice(2); const LANG = (args.find(a => a.startsWith('--lang=')) || '--lang=en').slice(7); @@ -36,12 +34,7 @@ const ONLY = args.find(a => !a.startsWith('--')); const PRINT = args.some(a => a === '--print'); const PRINT_PLATFORM = (args.find(a => a.startsWith('--platform=')) || '').slice(11); -const SNIPPET_API = process.env.IG_SNIPPET_API - ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'; -const DOM_SHIM = process.env.IG_SNIPPET_DOM_SHIM - ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'; -require(DOM_SHIM); -const api = require(SNIPPET_API); +const api = loadSnippetApi(); const PLATFORMS = ['Angular', 'React', 'WebComponents', 'Blazor', 'WinUI']; diff --git a/docs/xplat/scripts/check-snippet-schema.mjs b/docs/xplat/scripts/check-snippet-schema.mjs new file mode 100644 index 0000000000..a1c14d3e49 --- /dev/null +++ b/docs/xplat/scripts/check-snippet-schema.mjs @@ -0,0 +1,99 @@ +/** + * Every json-snippet on every page, checked against the schema the descriptions declare. + * + * A page states a component as JSON, and the emitter turns it into each platform's code. A property + * the description does not have is not an error the emitter reports — it writes nothing and moves + * on, so the page publishes with a hole in it. This is the check that catches that, and it runs over + * both locales rather than only the one being built. + * + * Usage: + * node scripts/check-snippet-schema.mjs [--lang=en,jp] [--quiet] [path fragment] + * + * The emitter and the examples checkout are resolved by lib/snippet-toolchain.mjs: a peer checkout + * locally, XPLAT_EXAMPLES / IG_SNIPPET_API when they live somewhere else, or a clone of the matching + * examples branch when there is no peer at all. + */ + +import fs from 'fs'; +import path from 'path'; +import { fileURLToPath } from 'url'; +import { + loadSnippetApi, resolveExamplesRoot, mdxFilesUnder, XPLAT_ROOT, +} from './lib/snippet-toolchain.mjs'; +import { snippetsIn, schemaValidator, problemsWith } from './lib/snippet-schema.mjs'; + +const args = process.argv.slice(2); +const LANGS = (args.find(a => a.startsWith('--lang=')) || '--lang=en,jp').slice(7) + .split(',').map(s => s.trim()).filter(Boolean); +const QUIET = args.some(a => a === '--quiet'); +const ONLY = args.find(a => !a.startsWith('--')); + +const examples = resolveExamplesRoot({ quiet: QUIET }); +const api = loadSnippetApi(); + +const say = (message) => { if (!QUIET) console.log(message); }; + +let validator = null; +let checked = 0; +const problems = []; + +for (const lang of LANGS) { + const dir = path.join(XPLAT_ROOT, 'src', 'content', lang, 'components'); + if (!fs.existsSync(dir)) { + console.error(`no content for --lang=${lang} at ${path.relative(XPLAT_ROOT, dir)}`); + process.exit(2); + } + const files = mdxFilesUnder(dir).filter(file => !ONLY || file.includes(ONLY)); + const snippets = snippetsIn(files, { relativeTo: path.join(XPLAT_ROOT, 'src', 'content') }); + if (snippets.length === 0) { + say(`[schema] ${lang}: no json-snippet found${ONLY ? ` under "${ONLY}"` : ''}`); + continue; + } + + // Emitted once and reused across locales: the schema comes from the description metadata, which + // has nothing to do with which language the prose is in, and emitting it is the slow part. + if (validator === null) { + validator = schemaValidator(api, examples, { onProgress: message => say(`[schema] ${message}`) }); + if (validator.dangling.length > 0) { + say(`[schema] ${validator.dangling.length} type(s) are referenced by the schema but not ` + + `defined by it, so their properties go unchecked: ` + + `${validator.dangling.slice(0, 6).join(', ')}` + + (validator.dangling.length > 6 ? ', …' : '')); + } + } + + for (const snippet of snippets) { + checked++; + problems.push(...problemsWith(snippet, validator)); + } + say(`[schema] ${lang}: ${snippets.length} snippet(s) checked`); +} + +if (problems.length === 0) { + console.log(`\n${checked} snippet(s) valid against the schema`); + process.exit(0); +} + +// Grouped by page, because a mistake in a definition that a page states twice is one mistake to fix, +// and a wall of interleaved paths reads as many. +const byFile = new Map(); +for (const problem of problems) { + const file = problem.where.split(':')[0]; + if (!byFile.has(file)) byFile.set(file, []); + byFile.get(file).push(problem); +} + +console.error(''); +for (const [file, list] of byFile) { + console.error(file); + for (const problem of list) { + const line = problem.where.split(':')[1]; + const at = problem.at ? ` ${problem.at}` : ''; + console.error(` line ${line}${at} ${problem.message}`); + } + console.error(''); +} +console.error(`${problems.length} problem(s) in ${checked} snippet(s) across ${byFile.size} page(s)`); +console.error('Every property has to be one the component\'s description declares — the emitter ' + + 'drops anything else without a word, which publishes a page with a hole in it.'); +process.exit(1); diff --git a/docs/xplat/scripts/ci/resolve-examples.mjs b/docs/xplat/scripts/ci/resolve-examples.mjs new file mode 100644 index 0000000000..4ad5491063 --- /dev/null +++ b/docs/xplat/scripts/ci/resolve-examples.mjs @@ -0,0 +1,31 @@ +/** + * Resolves the examples checkout and says where it is. + * + * A workflow needs the path before it can pass it to anything, and it needs the clone to have already + * happened. Both are the same operation, so this is a one-line step that prints the answer: + * + * node docs/xplat/scripts/ci/resolve-examples.mjs --print-path >> "$GITHUB_OUTPUT" + * + * Locally it reports what it found, which is worth knowing before a check runs against the wrong + * samples for twenty minutes. + */ + +import { resolveExamplesRoot, resolveExamplesBranch } from '../lib/snippet-toolchain.mjs'; + +const args = process.argv.slice(2); +const FOR_OUTPUT = args.includes('--print-path'); + +if (args.includes('--branch-only')) { + // Which branch would be used, without cloning anything. + console.log(resolveExamplesBranch(message => console.error(`[examples] ${message}`))); + process.exit(0); +} + +const root = resolveExamplesRoot({ quiet: FOR_OUTPUT }); +if (FOR_OUTPUT) { + // Both, because a workflow reads the first and a person reads the second. + console.log(`path=${root}`); + console.error(`[examples] ${root}`); +} else { + console.log(root); +} diff --git a/docs/xplat/scripts/compare-web-blocks.mjs b/docs/xplat/scripts/compare-web-blocks.mjs index 23b79b05dc..3c91a3f91f 100644 --- a/docs/xplat/scripts/compare-web-blocks.mjs +++ b/docs/xplat/scripts/compare-web-blocks.mjs @@ -18,23 +18,17 @@ import path from 'path'; import { execFileSync } from 'child_process'; import { createRequire } from 'module'; import { fileURLToPath } from 'url'; +import { loadSnippetApi, resolveExamplesRoot } from './lib/snippet-toolchain.mjs'; const require = createRequire(import.meta.url); const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); -const EXAMPLES = process.env.XPLAT_EXAMPLES; -if (!EXAMPLES) { - console.error('set XPLAT_EXAMPLES to the igniteui-xplat-examples checkout'); - process.exit(2); -} +const EXAMPLES = resolveExamplesRoot(); const args = process.argv.slice(2); const BEFORE = (args.find(a => a.startsWith('--before=')) || '--before=HEAD').slice(9); const ONLY = args.find(a => !a.startsWith('--')) || 'grids/data-grid'; -require(process.env.IG_SNIPPET_DOM_SHIM - ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'); -const api = require(process.env.IG_SNIPPET_API - ?? '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'); +const api = loadSnippetApi(); const COMMON = { suppressAutoElementNames: true, suppressNameAttribute: true, omitHandlerSignature: true, directAssignment: true, diff --git a/docs/xplat/scripts/generate.mjs b/docs/xplat/scripts/generate.mjs index faa4812db3..3078046587 100644 --- a/docs/xplat/scripts/generate.mjs +++ b/docs/xplat/scripts/generate.mjs @@ -26,11 +26,13 @@ import path from 'node:path'; import { fileURLToPath } from 'node:url'; // The snippet emitter is a CommonJS bundle of the locally built renderer; see transformJsonSnippets. import { createRequire } from 'node:module'; -import Ajv from 'ajv'; -import draft06 from 'ajv/dist/refs/json-schema-draft-06.json' with { type: 'json' }; // Canonical platform-visibility rules, shared with astro.config.ts and the // link checkers. Node strips the TS types on import (CI runs Node 24). import { emitsFor, forMatches } from '../../../src/lib/platform-groups.ts'; +import { + loadSnippetApi as loadSnippetToolchainApi, resolveExamplesRoot, mdxFilesUnder, +} from './lib/snippet-toolchain.mjs'; +import { snippetsIn, schemaValidator, problemsWith } from './lib/snippet-schema.mjs'; // --------------------------------------------------------------------------- // CLI arguments @@ -406,11 +408,15 @@ function inlinePlatformBlocks(content) { // When that work is published this becomes an ordinary package import and the paths below go away. // --------------------------------------------------------------------------- -const SNIPPET_API_PATH = process.env.IG_SNIPPET_API - || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'; -const SNIPPET_DOM_SHIM = process.env.IG_SNIPPET_DOM_SHIM - || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'; -const SNIPPET_EXAMPLES = process.env.XPLAT_EXAMPLES; +/** + * The examples checkout, resolved when a fence first needs it rather than at start-up: a locale or + * platform whose pages carry no json-snippet should not clone anything. + */ +let snippetExamples = null; +function examplesRoot() { + if (snippetExamples === null) snippetExamples = resolveExamplesRoot(); + return snippetExamples; +} // The fence language each platform's markup is written in, which is what the topic would have // hand written for it. @@ -494,8 +500,7 @@ function loadSnippetApi() { const require = createRequire(import.meta.url); // The renderer drags in Web Components classes that touch window/document at module scope. // Code generation never renders, so the stub is only there to let the modules load. - require(SNIPPET_DOM_SHIM); - snippetApi = require(SNIPPET_API_PATH); + snippetApi = loadSnippetToolchainApi(); return snippetApi; } @@ -526,7 +531,7 @@ function collectSnippetDefinitions(content) { } function sampleFileFor(src) { - return path.join(SNIPPET_EXAMPLES, 'samples', src.replace(/^\//, '') + '.json'); + return path.join(examplesRoot(), 'samples', src.replace(/^\//, '') + '.json'); } /** @@ -585,141 +590,36 @@ function phaseDone(name, detail) { console.log(`[timing] ${name}: ${Date.now() - started}ms${detail ? ' ' + detail : ''}`); } +/** + * Every json-snippet in the pages being built, checked against the schema the descriptions declare. + * + * The checking itself lives in lib/snippet-schema.mjs, shared with check-snippet-schema.mjs, which + * is what CI runs over both locales. Two implementations could disagree about what is valid, and the + * one that mattered would be whichever ran last. + */ function validateJsonSnippets(sourceDir) { - const files = []; - (function walk(dir) { - for (const entry of readdirSync(dir)) { - const full = path.join(dir, entry); - if (statSync(full).isDirectory()) walk(full); - else if (full.endsWith('.mdx')) files.push(full); - } - })(sourceDir); - - const snippets = []; - for (const file of files) { - const text = readFileSync(file, 'utf8'); - if (!text.includes('```json-snippet')) continue; - for (const m of text.matchAll(/```json-snippet *([^\n]*)\n([\s\S]*?)```/g)) { - const line = text.slice(0, m.index).split('\n').length; - // An array body is several definitions in one block, each checked on its own. - let bodies = [m[2]]; - try { - const parsed = JSON.parse(m[2]); - if (Array.isArray(parsed)) bodies = parsed.map(one => JSON.stringify(one)); - } catch { /* reported below, where the message can name the file */ } - for (const body of bodies) snippets.push({ file, line, info: m[1], body }); - } - } + const files = mdxFilesUnder(sourceDir); + const snippets = snippetsIn(files, { relativeTo: ROOT }); if (snippets.length === 0) return; const api = loadSnippetApi(); phase('emit schema'); - const schema = JSON.parse(api.emitJsonSchema(SNIPPET_EXAMPLES)); + const validator = schemaValidator(api, examplesRoot()); phaseDone('emit schema'); + mkdirSync(path.dirname(SNIPPET_SCHEMA_OUT), { recursive: true }); - writeFileSync(SNIPPET_SCHEMA_OUT, JSON.stringify(schema, null, 2), 'utf8'); - - // The schema references some types it never defines — AxisLabelSettings among them — which ajv - // treats as fatal. Stubbing them permissively keeps every other property checkable; the count - // is reported because each one is a property nothing is checking. - const defined = new Set(Object.keys(schema.definitions)); - const referenced = new Set(); - (function walk(node) { - if (node === null || typeof node !== 'object') return; - if (Array.isArray(node)) { node.forEach(walk); return; } - for (const [key, value] of Object.entries(node)) { - if (key === '$ref' && typeof value === 'string' && value.startsWith('#/definitions/')) { - referenced.add(value.slice('#/definitions/'.length)); - } - walk(value); - } - })(schema); - const dangling = [...referenced].filter(name => !defined.has(name)); - for (const name of dangling) schema.definitions[name] = {}; - if (dangling.length > 0) { - console.log(`[generate] json-snippet: ${dangling.length} type(s) referenced but not defined ` + - `by the schema, so their properties go unchecked: ${dangling.slice(0, 5).join(', ')}` + - (dangling.length > 5 ? ', …' : '')); + writeFileSync(SNIPPET_SCHEMA_OUT, JSON.stringify(validator.schema, null, 2), 'utf8'); + if (validator.dangling.length > 0) { + console.log(`[generate] json-snippet: ${validator.dangling.length} type(s) referenced but not ` + + `defined by the schema, so their properties go unchecked: ` + + `${validator.dangling.slice(0, 5).join(', ')}` + + (validator.dangling.length > 5 ? ', …' : '')); } - phase('ajv addSchema'); - // inlineRefs: false is the difference between two seconds and a minute and a half. Every - // property of every description declares a "$key" sidecar referencing one shared marker - // definition — some 48,000 references — and ajv's default is to inline a referenced schema at - // each site rather than compile it once and call it. Told not to, it compiles the marker once. - // The schema on disk keeps the references, so an editor still completes and describes them. - const ajv = new Ajv({ - allErrors: true, strict: false, validateFormats: false, inlineRefs: false, - }); - ajv.addMetaSchema(draft06); - ajv.addSchema(schema, 'snippets'); - phaseDone('ajv addSchema'); - - // Checked against the description the snippet names, not against the union of all of them. - // The union reports every property as unknown once per type that lacks it, which buries the - // one misspelling that is actually wrong under a thousand that are not. - const validators = new Map(); - const validatorFor = (type) => { - if (!validators.has(type)) { - phase(`compile ${type}`); - validators.set(type, schema.definitions[type] - ? ajv.compile({ $ref: `snippets#/definitions/${type}` }) - : null); - phaseDone(`compile ${type}`); - } - return validators.get(type); - }; - const problems = []; - for (const s of snippets) { - const where = `${path.relative(ROOT, s.file)}:${s.line}`; - // A ref= fence carries no definition of its own; the one it names is checked where it is - // written. - if (parseFenceAttributes(s.info).ref) continue; - let parsed; - try { - parsed = JSON.parse(s.body); - } catch (e) { - problems.push(`${where} not valid JSON — ${e.message}`); - continue; - } - if (!parsed || typeof parsed !== 'object') { - problems.push(`${where} a snippet has to be an object describing one component`); - continue; - } - // A snippet needing more than the component — handlers, refs — is written in the sample's - // own shape, with the component under descriptions.content. Every description is checked, - // not only that one: a topic pairing a toolbar with its grid states the toolbar under - // another key, and checking content alone let a column chooser carry four properties its - // description does not have, which the emitter then dropped without a word. - const toCheck = parsed.descriptions && typeof parsed.descriptions === 'object' - ? Object.entries(parsed.descriptions).map(([slot, value]) => ({ slot, value })) - : [{ slot: null, value: parsed }]; - for (const { slot, value } of toCheck) { - checkOne(value, slot ? `${where} (${slot})` : where); - } - } - - function checkOne(parsed, where) { - if (!parsed || typeof parsed !== 'object') { - problems.push(`${where} a description has to be an object`); - return; - } - if (typeof parsed.type !== 'string') { - problems.push(`${where} no "type", so there is nothing to check it against`); - return; - } - const validate = validatorFor(parsed.type); - if (validate === null) { - problems.push(`${where} unknown component type "${parsed.type}"`); - return; - } - if (validate(parsed)) return; - for (const err of validate.errors ?? []) { - const at = err.instancePath || '/'; - problems.push(err.params?.additionalProperty - ? `${where} ${at || '/'} unknown property "${err.params.additionalProperty}"` - : `${where} ${at} ${err.message}`); + for (const snippet of snippets) { + for (const problem of problemsWith(snippet, validator)) { + problems.push(`${problem.where}${problem.at ? ` (${problem.at})` : ''} ${problem.message}`); } } @@ -784,7 +684,7 @@ function transformJsonSnippets(content) { .map(one => marksPartOfItself(one) ? emitChannel(api, one, 'markup', styleDefaults) : api.emitSingleSnippet(one, PLATFORM, { - examplesRoot: SNIPPET_EXAMPLES, + examplesRoot: examplesRoot(), defaultSnippetId: 'main', styleDefaults, })) @@ -1118,7 +1018,7 @@ function emitChannel(api, json, channel, styleDefaults, only) { } const snippets = api.emitSnippets(JSON.stringify(parsed), PLATFORM, { - examplesRoot: SNIPPET_EXAMPLES, + examplesRoot: examplesRoot(), styleDefaults, forceCodeBehind: asCode, }); diff --git a/docs/xplat/scripts/lib/api-map-names.mjs b/docs/xplat/scripts/lib/api-map-names.mjs index ef2cffa328..82282eceb6 100644 --- a/docs/xplat/scripts/lib/api-map-names.mjs +++ b/docs/xplat/scripts/lib/api-map-names.mjs @@ -11,7 +11,7 @@ * 2. fuzzy fallback `headerClickAction` → `HeaderClickAction` (PascalCase) * * This is deliberately additive: names the map does not cover keep resolving the - * way they do today. See WINUI-UNO-PLAN.md §6.4. + * way they do today. See dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/notes/WINUI-UNO-PLAN.md §6.4. */ import { existsSync, readFileSync, readdirSync } from 'node:fs'; diff --git a/docs/xplat/scripts/lib/snippet-schema.mjs b/docs/xplat/scripts/lib/snippet-schema.mjs new file mode 100644 index 0000000000..6c045ae218 --- /dev/null +++ b/docs/xplat/scripts/lib/snippet-schema.mjs @@ -0,0 +1,305 @@ +/** + * Checking a json-snippet against the schema the descriptions themselves declare. + * + * The schema is emitted from the description metadata, so it is not a second statement of what a + * component takes — it is the same statement the emitter works from. A property the schema rejects + * is one the emitter would silently drop, which is how four properties the column chooser does not + * have came to be published: the block looked right and the emitter wrote nothing. + * + * Shared by the generator, which checks as it builds, and by the standalone check, which is what + * runs in CI. One implementation, so the two cannot disagree about what is valid. + */ + +import fs from 'fs'; +import path from 'path'; +import Ajv from 'ajv'; +import draft06 from 'ajv/dist/refs/json-schema-draft-06.json' with { type: 'json' }; +import { fencesOf, mdxFilesUnder } from './snippet-toolchain.mjs'; + +/** + * Every definition a page states, one entry per definition — an array body is several, and each is + * checked on its own. A `ref=` fence carries none: the definition it names is checked where it is + * written. + */ +export function snippetsIn(files, { relativeTo = null } = {}) { + const snippets = []; + for (const file of files) { + const text = fs.readFileSync(file, 'utf8'); + if (!text.includes('```json-snippet')) continue; + const where = relativeTo ? path.relative(relativeTo, file) : file; + for (const fence of fencesOf(text)) { + if (fence.attrs.ref) continue; + let bodies = [fence.body]; + try { + const parsed = JSON.parse(fence.body); + if (Array.isArray(parsed)) bodies = parsed.map(one => JSON.stringify(one)); + } catch { /* reported by the check, which can name the file */ } + for (const body of bodies) { + snippets.push({ file, where: `${where}:${fence.line}`, attrs: fence.attrs, body }); + } + } + } + return snippets; +} + +/** + * A validator over the emitted schema. + * + * Compiled per component type rather than over the union of all of them: the union reports every + * property as unknown once per type that lacks it, which buries the one misspelling that is wrong + * under a thousand that are not. + */ +export function schemaValidator(api, examplesRoot, { onProgress = () => {} } = {}) { + onProgress('emitting the schema from the description metadata'); + const schema = JSON.parse(api.emitJsonSchema(examplesRoot)); + + // The schema references types it never defines — AxisLabelSettings among them — which ajv treats + // as fatal. Stubbing them permissively keeps every other property checkable; they are reported + // because each one is a property nothing is checking. + const defined = new Set(Object.keys(schema.definitions)); + const referenced = new Set(); + (function walk(node) { + if (node === null || typeof node !== 'object') return; + if (Array.isArray(node)) { node.forEach(walk); return; } + for (const [key, value] of Object.entries(node)) { + if (key === '$ref' && typeof value === 'string' && value.startsWith('#/definitions/')) { + referenced.add(value.slice('#/definitions/'.length)); + } + walk(value); + } + })(schema); + const dangling = [...referenced].filter(name => !defined.has(name)); + for (const name of dangling) schema.definitions[name] = {}; + + // inlineRefs: false is the difference between two seconds and a minute and a half. Every + // property of every description declares a "$key" sidecar referencing one shared marker + // definition — some 48,000 references — and ajv's default is to inline a referenced schema at + // each site rather than compile it once and call it. + const ajv = new Ajv({ allErrors: true, strict: false, validateFormats: false, inlineRefs: false }); + ajv.addMetaSchema(draft06); + ajv.addSchema(schema, 'snippets'); + + const compiled = new Map(); + const validatorFor = (type) => { + if (!compiled.has(type)) { + compiled.set(type, schema.definitions[type] + ? ajv.compile({ $ref: `snippets#/definitions/${type}` }) + : null); + } + return compiled.get(type); + }; + + return { schema, dangling, validatorFor, knownTypes: [...defined] }; +} + +/** + * What is wrong with one snippet, as a list of complaints. Empty means valid. + * + * Every description in a definition is checked, not only `descriptions.content`: a topic pairing a + * toolbar with its grid states the toolbar under another key, and checking content alone let a + * column chooser carry four properties its description does not have. + */ +export function problemsWith(snippet, validator) { + const problems = []; + const add = (message, at = null) => problems.push({ where: snippet.where, at, message }); + + let parsed; + try { + parsed = JSON.parse(snippet.body); + } catch (e) { + add(`not valid JSON — ${e.message}`); + return problems; + } + if (!parsed || typeof parsed !== 'object') { + add('a snippet has to be an object describing one component'); + return problems; + } + + const slots = parsed.descriptions && typeof parsed.descriptions === 'object' + ? Object.entries(parsed.descriptions).map(([slot, value]) => ({ slot, value })) + : [{ slot: null, value: parsed }]; + + for (const { slot, value } of slots) { + const label = slot ? `descriptions.${slot}` : null; + if (!value || typeof value !== 'object') { + add('a description has to be an object', label); + continue; + } + if (typeof value.type !== 'string') { + add('no "type", so there is nothing to check it against', label); + continue; + } + const validate = validator.validatorFor(value.type); + if (validate === null) { + const suggestion = closestName(value.type, validator.knownTypes); + add(`unknown component type "${value.type}"` + + (suggestion ? ` — did you mean "${suggestion}"?` : ''), label); + continue; + } + if (validate(value)) continue; + for (const message of describeErrors(validate.errors ?? [], value, validator)) { + add(message, label); + } + } + return problems; +} + +/** + * ajv's errors, said the way someone editing a page needs to hear them. + * + * ajv reports the shape of the failure; what a page author needs is which property, in which + * element, and what would have been accepted. Unknown properties get the nearest name the + * description does have, and a rejected value gets the values the schema allows — an enum + * misspelling is by far the most common mistake, and "must be equal to one of the allowed values" on + * its own does not say which those are. + */ +function describeErrors(errors, value, validator) { + const messages = []; + const seen = new Set(); + + // The union branches of a oneOf produce an error per branch; the one that matters names a real + // property, so the deepest instancePath wins and the branch bookkeeping is dropped. + const deepest = new Map(); + for (const err of errors) { + if (err.keyword === 'if' || err.keyword === 'anyOf' || err.keyword === 'oneOf') continue; + const key = `${err.instancePath}|${err.keyword}|${err.params?.additionalProperty ?? ''}`; + if (!deepest.has(key)) deepest.set(key, err); + } + + // A numeric property accepts the special doubles as strings — "Infinity", "@dbl:NAN" — so a + // value of the wrong type fails both the number branch and that enum. The type error says what + // is wrong; the enum's list of four spellings of infinity says nothing anyone needs. + const typeErrorPaths = new Set([...deepest.values()] + .filter(err => err.keyword === 'type').map(err => err.instancePath)); + for (const [key, err] of [...deepest.entries()]) { + if (err.keyword === 'enum' && typeErrorPaths.has(err.instancePath) && + (err.params?.allowedValues ?? []).some(v => String(v).includes('Infinity'))) { + deepest.delete(key); + } + } + + for (const err of deepest.values()) { + const at = err.instancePath ? err.instancePath.replace(/^\//, '').replace(/\//g, '.') : ''; + const shown = at ? `${at}: ` : ''; + let message; + if (err.params?.additionalProperty) { + const unknown = err.params.additionalProperty; + const known = propertyNamesAt(err, value, validator); + const suggestion = closestName(unknown, known); + message = `${shown}unknown property "${unknown}"` + + (suggestion ? ` — did you mean "${suggestion}"?` : ''); + } else if (err.keyword === 'enum' && Array.isArray(err.params?.allowedValues)) { + const actual = valueAt(value, err.instancePath); + const allowed = err.params.allowedValues; + const suggestion = typeof actual === 'string' ? closestName(actual, allowed) : null; + message = `${shown}${JSON.stringify(actual)} is not one of the accepted values` + + (suggestion ? ` — did you mean ${JSON.stringify(suggestion)}?` : '') + + `\n accepted: ${summarise(allowed)}`; + } else if (err.keyword === 'type') { + const actual = valueAt(value, err.instancePath); + message = `${shown}${JSON.stringify(actual)} ${err.message}`; + } else { + message = `${shown}${err.message}`; + } + if (!seen.has(message)) { + seen.add(message); + messages.push(message); + } + } + return messages; +} + +/** The properties the description at this path does have, for a did-you-mean. */ +function propertyNamesAt(err, value, validator) { + const owner = valueAt(value, err.instancePath); + if (!owner || typeof owner !== 'object' || typeof owner.type !== 'string') return []; + const definition = validator.schema.definitions[owner.type]; + if (!definition) return []; + return Object.keys(collectProperties(definition, validator.schema, new Set())); +} + +/** A definition's properties, following the references it composes itself from. */ +function collectProperties(definition, schema, seen) { + if (!definition || typeof definition !== 'object') return {}; + let properties = { ...(definition.properties ?? {}) }; + for (const branch of [definition.allOf, definition.anyOf, definition.oneOf].flat()) { + if (!branch) continue; + if (branch.$ref && branch.$ref.startsWith('#/definitions/')) { + const name = branch.$ref.slice('#/definitions/'.length); + if (seen.has(name)) continue; + seen.add(name); + properties = { ...properties, ...collectProperties(schema.definitions[name], schema, seen) }; + } else { + properties = { ...properties, ...collectProperties(branch, schema, seen) }; + } + } + return properties; +} + +function valueAt(root, instancePath) { + if (!instancePath) return root; + let current = root; + for (const step of instancePath.replace(/^\//, '').split('/')) { + if (current === null || typeof current !== 'object') return undefined; + current = current[step.replace(/~1/g, '/').replace(/~0/g, '~')]; + } + return current; +} + +function summarise(values, limit = 12) { + const shown = values.slice(0, limit).map(v => JSON.stringify(v)).join(', '); + return values.length > limit ? `${shown}, … (${values.length} in all)` : shown; +} + +/** + * The nearest of a set of names, or null when nothing is near enough. + * + * Case-insensitive first, because "left" for "Left" is the mistake a page makes most often, then by + * edit distance with a threshold that scales with length — a suggestion that is not close is worse + * than none, since it sends the reader to the wrong property. + */ +export function closestName(name, candidates) { + if (!name || !candidates || candidates.length === 0) return null; + const lower = name.toLowerCase(); + const sameLetters = candidates.find(c => String(c).toLowerCase() === lower); + if (sameLetters !== undefined && sameLetters !== name) return sameLetters; + + let best = null; + let bestDistance = Infinity; + for (const candidate of candidates) { + const distance = editDistance(lower, String(candidate).toLowerCase()); + if (distance < bestDistance) { + bestDistance = distance; + best = candidate; + } + } + const allowed = Math.max(2, Math.floor(name.length / 4)); + return bestDistance <= allowed ? best : null; +} + +function editDistance(a, b) { + const previous = Array.from({ length: b.length + 1 }, (_, i) => i); + for (let i = 1; i <= a.length; i++) { + let left = previous[0]; + previous[0] = i; + for (let j = 1; j <= b.length; j++) { + const up = previous[j]; + previous[j] = Math.min( + previous[j] + 1, + previous[j - 1] + 1, + left + (a[i - 1] === b[j - 1] ? 0 : 1)); + left = up; + } + } + return previous[b.length]; +} + +/** Every snippet under a content directory, checked. Returns the problems, in page order. */ +export function checkSnippetsUnder(sourceDir, api, examplesRoot, opts = {}) { + const snippets = snippetsIn(mdxFilesUnder(sourceDir), { relativeTo: opts.relativeTo ?? null }); + if (snippets.length === 0) return { snippets, problems: [], dangling: [] }; + const validator = schemaValidator(api, examplesRoot, opts); + const problems = []; + for (const snippet of snippets) problems.push(...problemsWith(snippet, validator)); + return { snippets, problems, dangling: validator.dangling }; +} diff --git a/docs/xplat/scripts/lib/snippet-toolchain.mjs b/docs/xplat/scripts/lib/snippet-toolchain.mjs new file mode 100644 index 0000000000..3c33c9fb54 --- /dev/null +++ b/docs/xplat/scripts/lib/snippet-toolchain.mjs @@ -0,0 +1,276 @@ +/** + * Where the snippet toolchain comes from: the emitter that turns a json-snippet into a platform's + * code, and the examples repository the samples and code generation library live in. + * + * Both were absolute paths into one developer's home directory, in six scripts. That works until + * anyone else runs them, and it cannot work in CI at all. Resolution is stated once here, in the + * order a run should prefer: + * + * 1. an environment variable, which is how CI and anyone with an unusual layout says where + * 2. a peer checkout beside this repository, which is the ordinary local case + * 3. a package under node_modules, which is how CI will work once the emitter ships in one + * + * Nothing here builds anything. If the emitter is not built, the message says which command builds + * it — guessing and running a build inside a check would hide why a run took four minutes. + */ + +import fs from 'fs'; +import path from 'path'; +import { execFileSync } from 'child_process'; +import { createRequire } from 'module'; +import { fileURLToPath } from 'url'; + +const require = createRequire(import.meta.url); +const HERE = path.dirname(fileURLToPath(import.meta.url)); + +/** docs/xplat, the root the scripts are written relative to. */ +export const XPLAT_ROOT = path.resolve(HERE, '..', '..'); + +/** The repository root, which is where peer checkouts sit beside. */ +export const REPO_ROOT = path.resolve(XPLAT_ROOT, '..', '..'); + +/** Where a clone goes when there is no peer checkout. Ignored by git; safe to delete. */ +export const CACHE_DIR = path.join(REPO_ROOT, '.snippet-cache'); + +const SPIKE_RELATIVE = path.join( + 'XPlatform', 'Main', 'Tests', 'XSharpTesting', 'SnippetEmitterSpike'); + +function firstExisting(candidates) { + for (const candidate of candidates) { + if (candidate && fs.existsSync(candidate)) return candidate; + } + return null; +} + +/** + * The built snippet emitter, as a loaded module. + * + * The renderer's modules touch window and document as they load — they are Web Components classes — + * so a DOM stub is required first. Code generation never renders anything; the stub exists only to + * let the modules evaluate. + */ +let loaded = null; +export function loadSnippetApi() { + if (loaded !== null) return loaded; + const { api, shim } = resolveSnippetApiPaths(); + require(shim); + loaded = require(api); + return loaded; +} + +/** The paths the emitter and its DOM stub were found at, for a script that wants to report them. */ +export function resolveSnippetApiPaths() { + const fromEnv = process.env.IG_SNIPPET_API; + const shimFromEnv = process.env.IG_SNIPPET_DOM_SHIM; + if (fromEnv) { + if (!fs.existsSync(fromEnv)) { + fail(`IG_SNIPPET_API names a file that does not exist:\n ${fromEnv}`); + } + const shim = shimFromEnv ?? path.join(path.dirname(path.dirname(fromEnv)), 'dom-shim.js'); + if (!fs.existsSync(shim)) { + fail(`no DOM stub beside the emitter. Set IG_SNIPPET_DOM_SHIM.\n looked for ${shim}`); + } + return { api: fromEnv, shim, from: 'IG_SNIPPET_API' }; + } + + // A peer dev-tools checkout, which is the ordinary local case. + const spike = firstExisting([ + path.join(REPO_ROOT, '..', 'dev-tools', SPIKE_RELATIVE), + path.join(REPO_ROOT, '..', '..', 'dev-tools', SPIKE_RELATIVE), + ]); + if (spike) { + const api = path.join(spike, 'dist', 'snippet-api.cjs'); + const shim = path.join(spike, 'dom-shim.js'); + if (!fs.existsSync(api)) { + fail(`found a dev-tools checkout but the emitter is not built:\n` + + ` ${api}\n\n` + + `build it with:\n` + + ` cd ${spike}\n` + + ` node collect-ts.js && npm run build`); + } + return { api, shim, from: path.relative(REPO_ROOT, spike) }; + } + + // A package, which is how CI works once the emitter ships in one. Kept last so a local + // checkout always wins: someone with dev-tools open is testing their change to it. + try { + const pkg = require.resolve('igniteui-webcomponents-core/package.json'); + const dir = path.dirname(pkg); + const api = firstExisting([path.join(dir, 'snippet-api.cjs')]); + if (api) return { api, shim: path.join(dir, 'dom-shim.js'), from: 'igniteui-webcomponents-core' }; + } catch { /* not installed, which the message below covers */ } + + fail('no snippet emitter found. Either:\n' + + ' - check out dev-tools beside this repository and build the emitter:\n' + + ` cd ../dev-tools/${SPIKE_RELATIVE}\n` + + ' node collect-ts.js && npm run build\n' + + ' - or set IG_SNIPPET_API to a built snippet-api.cjs'); +} + +/** + * The examples checkout: samples, and the code generation library the samples bind to. + * + * Cloned when there is no peer, at the branch that matches the branch being checked. The matching + * rules are the ones dev-tools uses in Builds/scripts/resolve-xplat-examples-branch.sh, because a + * change that spans both repositories is made on same-named branches in both, and a check that read + * main would review the change against the wrong samples. + */ +export function resolveExamplesRoot({ quiet = false } = {}) { + const say = (message) => { if (!quiet) console.log(`[examples] ${message}`); }; + + if (process.env.XPLAT_EXAMPLES) { + const given = path.resolve(process.env.XPLAT_EXAMPLES); + if (!fs.existsSync(path.join(given, 'code-gen-library'))) { + fail(`XPLAT_EXAMPLES has no code-gen-library in it:\n ${given}`); + } + say(`using XPLAT_EXAMPLES: ${given}`); + return given; + } + + const peer = firstExisting([ + path.join(REPO_ROOT, '..', 'igniteui-xplat-examples', 'code-gen-library'), + path.join(REPO_ROOT, '..', '..', 'igniteui-xplat-examples', 'code-gen-library'), + ]); + if (peer) { + const root = path.dirname(peer); + say(`using the peer checkout: ${root}`); + return root; + } + + const clone = path.join(CACHE_DIR, 'igniteui-xplat-examples'); + const branch = resolveExamplesBranch(say); + if (fs.existsSync(path.join(clone, '.git'))) { + say(`updating the cached clone to ${branch}`); + git(clone, ['fetch', '--depth', '1', 'origin', branch]); + git(clone, ['checkout', '--force', 'FETCH_HEAD']); + } else { + say(`cloning ${branch} into ${path.relative(REPO_ROOT, clone)}`); + fs.mkdirSync(CACHE_DIR, { recursive: true }); + git(REPO_ROOT, ['clone', '--depth', '1', '--branch', branch, EXAMPLES_URL, clone]); + } + return clone; +} + +const EXAMPLES_URL = process.env.XPLAT_EXAMPLES_URL + ?? 'https://github.com/IgniteUI/igniteui-xplat-examples.git'; + +/** + * Which branch of the examples to read. + * + * Same order dev-tools resolves it in: the branch's own name, then any branch whose last segment + * matches — "docs/json-snippets" finds "gmurray/json-snippets" — then the branch this one is + * targeting, then main. Stated as a preference list rather than a lookup because a name that + * matches nothing has to fall all the way back without failing. + */ +export function resolveExamplesBranch(say = () => {}) { + if (process.env.XPLAT_EXAMPLES_BRANCH) { + say(`branch from XPLAT_EXAMPLES_BRANCH: ${process.env.XPLAT_EXAMPLES_BRANCH}`); + return process.env.XPLAT_EXAMPLES_BRANCH; + } + + const here = currentBranch(); + const target = stripRef(process.env.GITHUB_BASE_REF ?? ''); + const remote = remoteBranches(); + + if (here && remote.includes(here)) { + say(`exact branch match: ${here}`); + return here; + } + const lastNode = here ? here.split('/').pop() : null; + if (lastNode) { + const match = remote.find(name => name.split('/').pop() === lastNode); + if (match) { + say(`last segment of "${here}" matches: ${match}`); + return match; + } + } + if (target) { + if (target === 'main' || remote.includes(target)) { + say(`no match for "${here}", using the branch it targets: ${target}`); + return target; + } + const release = target.match(/^release\/(.+)$/); + if (release && remote.includes(release[1])) { + say(`no match for "${here}", using the release it targets: ${release[1]}`); + return release[1]; + } + } + say(`no match for "${here}", using main`); + return 'main'; +} + +function currentBranch() { + // In a pull request the checkout is detached at the merge commit, so the branch under review is + // only in the environment. Locally, git knows. + const fromEnv = stripRef(process.env.GITHUB_HEAD_REF ?? process.env.GITHUB_REF ?? ''); + if (fromEnv) return fromEnv; + try { + const name = execFileSync('git', ['rev-parse', '--abbrev-ref', 'HEAD'], + { cwd: REPO_ROOT, encoding: 'utf8' }).trim(); + return name === 'HEAD' ? null : name; + } catch { + return null; + } +} + +function remoteBranches() { + try { + const out = execFileSync('git', ['ls-remote', '--heads', EXAMPLES_URL], + { encoding: 'utf8', stdio: ['ignore', 'pipe', 'ignore'] }); + return out.split('\n') + .map(line => line.split('\t')[1]) + .filter(Boolean) + .map(ref => ref.replace(/^refs\/heads\//, '')); + } catch { + // Offline, or no access. Falling back to main is better than failing a check that may not + // need the clone at all. + return []; + } +} + +function stripRef(value) { + return value.replace(/^refs\/heads\//, '').trim(); +} + +function git(cwd, args) { + execFileSync('git', args, { cwd, stdio: 'inherit' }); +} + +function fail(message) { + console.error(message); + process.exit(2); +} + +/** `id="x" ref="x" channel="bindingCode" source="/x" exclude="Blazor"` on the fence line. */ +export function parseFenceAttributes(info) { + const attrs = {}; + for (const m of info.matchAll(/(\w+)="([^"]*)"/g)) attrs[m[1]] = m[2]; + return attrs; +} + +/** Every json-snippet fence in a page, with the line it starts on. */ +export function fencesOf(text) { + const fences = []; + for (const m of text.matchAll(/```json-snippet *([^\n]*)\n([\s\S]*?)```/g)) { + fences.push({ + line: text.slice(0, m.index).split('\n').length, + attrs: parseFenceAttributes(m[1]), + info: m[1], + body: m[2], + }); + } + return fences; +} + +/** Every .mdx under a directory. */ +export function mdxFilesUnder(dir) { + const files = []; + (function walk(current) { + for (const entry of fs.readdirSync(current, { withFileTypes: true })) { + const full = path.join(current, entry.name); + if (entry.isDirectory()) walk(full); + else if (entry.name.endsWith('.mdx')) files.push(full); + } + })(dir); + return files.sort(); +} diff --git a/docs/xplat/scripts/plan-snippet-collapse.mjs b/docs/xplat/scripts/plan-snippet-collapse.mjs index 517709834a..66962f226d 100644 --- a/docs/xplat/scripts/plan-snippet-collapse.mjs +++ b/docs/xplat/scripts/plan-snippet-collapse.mjs @@ -30,6 +30,7 @@ import { readFileSync, readdirSync, statSync, existsSync } from 'node:fs'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; import { createRequire } from 'node:module'; +import { loadSnippetApi, resolveExamplesRoot } from './lib/snippet-toolchain.mjs'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); const ROOT = path.join(__dirname, '..'); @@ -45,11 +46,7 @@ const SHOW_BLOCKED = args.includes('--show-blocked'); const SHOW_PLAN = args.includes('--plan'); const CONTENT_DIR = path.join(ROOT, 'src', 'content', LANG, 'components'); -const EXAMPLES = process.env.XPLAT_EXAMPLES; -if (!EXAMPLES) { - console.error('set XPLAT_EXAMPLES to the igniteui-xplat-examples checkout'); - process.exit(2); -} +const EXAMPLES = resolveExamplesRoot(); /** * Where a sample may be found, in the order tried. @@ -63,15 +60,10 @@ if (!EXAMPLES) { const WC_EXAMPLES = process.env.IG_WC_EXAMPLES || '/Users/graham/Documents/GitHub/igniteui-wc-examples'; -const SNIPPET_API_PATH = process.env.IG_SNIPPET_API - || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs'; -const SNIPPET_DOM_SHIM = process.env.IG_SNIPPET_DOM_SHIM - || '/Users/graham/Documents/work/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dom-shim.js'; const api = (() => { const require = createRequire(import.meta.url); - require(SNIPPET_DOM_SHIM); - return require(SNIPPET_API_PATH); + return loadSnippetApi(); })(); // A PlatformBlock gates on groups as well as platforms; any member of a group will do, because a diff --git a/docs/xplat/scripts/samples-runtime/.gitignore b/docs/xplat/scripts/samples-runtime/.gitignore new file mode 100644 index 0000000000..3a2b6db979 --- /dev/null +++ b/docs/xplat/scripts/samples-runtime/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +generated/ diff --git a/docs/xplat/scripts/samples-runtime/README.md b/docs/xplat/scripts/samples-runtime/README.md new file mode 100644 index 0000000000..69aed43fe5 --- /dev/null +++ b/docs/xplat/scripts/samples-runtime/README.md @@ -0,0 +1,34 @@ +# Loading every sample, with the real renderer + +``` +node run.mjs # the published packages +node run.mjs --filter=maps/geo-map # a subset +node run.mjs --limit=20 --headed # a look, with a visible browser +node run.mjs --packages= # a directory of locally built packages +``` + +A sample passes when the renderer reports no errors, the browser throws nothing, and the renderer goes +idle, flushes, and settles its animations. All four are the renderer's own signals, waited for in the +order the Web Components test host waits for them — see `harness.js` for why each one matters. + +What the run reports besides pass and fail: + +- **only in sequence** — the sample failed after another and passed on its own. That is state left + behind by what ran before it, not a broken sample, and the fix is in the component or the renderer. + It fails the run: state that leaks between samples leaks between pages. +- **not checked** — the sample binds to a library item that needs a package this harness does not + install. The modern web grids version on their own line and are not what this documentation covers. +- **references that went unresolved** — neither the renderer nor the library had them. A property + editor whose target sits in another container is the ordinary case and harmless. +- **values that are not members of the enumeration they were given to** — read as the first member, as + the test host reads them, but counted here rather than swallowed. +- **what the page was holding** — after the first sample and after the last, with the biggest jumps. + A page that stops answering is holding something it should have let go of; the run restarts it and + says how often that happened. + +The data and handlers come from the product's own library emission — `emitLibrary` in the snippet +emitter's api, which drives the same code generating renderer the library project emitter drives. The +emitted files are written to `generated/`, which is worth reading when a sample fails for want of +something. + +`node_modules` and `generated` are both disposable. diff --git a/docs/xplat/scripts/samples-runtime/harness.js b/docs/xplat/scripts/samples-runtime/harness.js new file mode 100644 index 0000000000..d5d2a5993c --- /dev/null +++ b/docs/xplat/scripts/samples-runtime/harness.js @@ -0,0 +1,408 @@ +/** + * The page a sample is loaded into, with the real component renderer and the real packages. + * + * The discipline is the Web Components test host's, because that host loads hundreds of samples into + * one page without it falling over, and each part of what it does is there for a reason it learned the + * hard way. What is left out is only the part about interacting with what rendered: this asks whether a + * sample loads, not whether it behaves. + * + * Registration walks the packages' exports rather than naming modules one by one. A list of imports is + * a list to keep in step with the product, and its failure mode is a component that quietly does not + * register — which reads as a broken sample rather than a stale harness. + */ + +import * as core from 'igniteui-webcomponents-core'; +import * as charts from 'igniteui-webcomponents-charts'; +import * as maps from 'igniteui-webcomponents-maps'; +import * as gauges from 'igniteui-webcomponents-gauges'; +import * as dataGrids from 'igniteui-webcomponents-data-grids'; +import * as inputs from 'igniteui-webcomponents-inputs'; +import * as layouts from 'igniteui-webcomponents-layouts'; +import * as dashboards from 'igniteui-webcomponents-dashboards'; +import * as datasources from 'igniteui-webcomponents-datasources'; + +// Emitted by run.mjs through the product's own library emission — the same code generating renderer, +// the same item templates, the same lookup shape the library project emitter writes. See emitLibrary +// in the snippet emitter's api. +import { LibraryManager, CodeGenHelper } from './generated/libraryManager'; + +const namespaces = { core, charts, maps, gauges, dataGrids, inputs, layouts, dashboards, datasources }; + +/** + * Animations advance on a timer rather than on animation frames. + * + * The tick provider drives chart animations through requestAnimationFrame, which a browser throttles or + * pauses when a page is not the one being painted — headless, or one of several. Animations then never + * reach idle, every animated sample waits out its timeout, and what they leave queued piles up until + * the tab dies. Timers fire regardless. Copied from the test host, which installs it for the same + * reason; it changes nothing about the product. + */ +(function installTimerAnimationClock(frameMs) { + if (window.__timerAnimationClock) return; + window.__timerAnimationClock = true; + window.requestAnimationFrame = (cb) => window.setTimeout( + () => cb(typeof performance !== 'undefined' ? performance.now() : Date.now()), frameMs); + window.cancelAnimationFrame = (id) => window.clearTimeout(id); +})(16); + +/** + * An unknown enumeration value becomes the first member rather than an exception. + * + * The host's own accommodation, and it belongs here for the same reason: parse throws, and a throw + * partway through building a component leaves the renderer holding half of one, which the next sample + * then inherits. Counted and reported per sample, so a value that is not a real member is still + * visible — the part a check needs and a host does not. + */ +const enumProblems = []; +(function tolerateUnknownEnumValues() { + const util = core.EnumUtil; + if (!util || typeof util.parse !== 'function' || util.__tolerant) return; + const original = util.parse.bind(util); + util.parse = (type, value, ignoreCase) => { + try { + return original(type, value, ignoreCase); + } catch (e) { + enumProblems.push(`"${value}" is not a value of ${type && type.name ? type.name : type}`); + return 0; + } + }; + util.__tolerant = true; +})(); + +const registered = { descriptions: 0, modules: 0, failures: [] }; +let registering = 0; + +/** Every description module in every package, into a renderer's context. */ +function registerDescriptions(context) { + registering = 0; + for (const [nsName, ns] of Object.entries(namespaces)) { + for (const key of Object.keys(ns)) { + if (!key.endsWith('DescriptionModule')) continue; + try { + ns[key].register(context); + // Per renderer context, so the number is what a renderer knows rather than the sum + // over however many renderers this page happens to keep. + registered.descriptions = Math.max(registered.descriptions, ++registering); + } catch (e) { + registered.failures.push(`${nsName}.${key}: ${e && e.message}`); + } + } + } +} + +/** + * Every component module in every package. + * + * A description says what to build; a module is what makes the element it names exist. Registering all + * of them is what lets one page load every sample — a sample naming a component whose module was not + * registered renders nothing and says nothing. + */ +function registerModules() { + const manager = core.ModuleManager; + for (const [nsName, ns] of Object.entries(namespaces)) { + for (const key of Object.keys(ns)) { + if (!/^Igc[A-Za-z0-9]*Module$/.test(key)) continue; + const module = ns[key]; + if (!module || typeof module.register !== 'function') continue; + try { + manager.register(module); + registered.modules++; + } catch (e) { + registered.failures.push(`${nsName}.${key}: ${e && e.message}`); + } + } + } +} + +/** + * Two renderers, as the host has: one for the sample, one for the property editor beside it. + * + * An editor is a component that drives another component, described in a container of its own. The host + * keeps it on a renderer of its own, and cleans up both between samples. + */ +const renderer = new core.ComponentRenderer(); +const editorRenderer = new core.ComponentRenderer(); + +for (const each of [renderer, editorRenderer]) { + // Errors are collected rather than thrown: the renderer catches what goes wrong while it builds and + // puts it on its own list, which is the difference between a report naming the sample and a stack + // in the console attached to nothing. Without it the first bad property stops the load, and + // everything after it goes unexamined. + each.isProceedOnErrorEnabled = true; + // Unused references are cleaned up as it renders, so tearing a sample down also unregisters what it + // registered — the axis a chart declared does not linger to be found by the next sample. + each.cleanupUnusedOnRender = true; + registerDescriptions(each.context); +} +registerModules(); + +/** + * One of each of the elements a sample is most likely to name, created and thrown away. + * + * The host does this too. Registering a module is not the same as the custom element being defined; + * touching the constructor is what defines it, and a sample that is the first to name one would + * otherwise render into an element the browser does not know yet. + */ +(function defineCommonElements() { + for (const tag of ['igc-data-chart', 'igc-category-chart', 'igc-financial-chart', 'igc-pie-chart', + 'igc-data-grid', 'igc-property-editor-panel', 'igc-bullet-graph', + 'igc-radial-gauge', 'igc-linear-gauge', 'igc-geographic-map', 'igc-sparkline', + 'igc-toolbar', 'igc-legend', 'igc-item-legend']) { + try { + document.createElement(tag); + } catch { /* a tag no installed package defines is not this harness's business */ } + } +})(); + +const SLOTS = ['content', 'editor', 'legend', 'aboveContent', 'aboveContentLeft', 'aboveContentRight', + 'belowContent', 'leftContent', 'rightContent']; + +/** The container a description slot is keyed to. */ +const containerFor = (key) => document.getElementById(key); + +// What a handler reaches the rendered component through, wired the way the host wires it: by container +// name for a description, and by ref name — either spelling — for anything else. +CodeGenHelper.descriptionLookup = (name) => { + const container = containerFor(name); + return container ? container.firstElementChild : null; +}; +CodeGenHelper.findByNameLookup = (name) => { + const capitalised = name.length > 0 ? name[0].toUpperCase() + name.substring(1) : name; + for (const candidate of [name, capitalised]) { + let found = null; + renderer.resolveRefValue(containerFor('content'), candidate, (value) => { found = value; }); + if (found !== null && found !== undefined) return found; + } + return LibraryManager.instance.hasItem(name) ? LibraryManager.instance.getInstance(name) : null; +}; + +/** + * What a reference in a sample resolves to. + * + * The renderer resolves a reference naming an element inside the same description itself; what reaches + * here is a library item — the data a series binds to, or a handler — and the lookup answers for those + * exactly as it does in a generated project. Answering means saying so: the renderer takes the value + * only when "found" is set, and a resolver that assigns the value alone is ignored without a word. + * + * Nothing is cached. The lookup builds an instance per request, which is what a generated sample gets, + * and holding every data set a run has touched is one way to run a page out of memory. + */ +const unresolved = new Set(); + +function addResolver(target) { + target.addReferenceResolver((name, args) => { + if (LibraryManager.instance.hasItem(name)) { + try { + args.referenceValue = LibraryManager.instance.getInstance(name); + args.found = true; + } catch (e) { + unresolved.add(`${name} — the library item would not construct: ${e && e.message}`); + } + return; + } + // A property editor binds to the renderer driving the page. The samples name it "renderer", + // which is the name a generated sample gives the field it assigns. + if (name === 'renderer' || name === 'componentRenderer' || name === 'ComponentRenderer') { + args.referenceValue = renderer; + args.found = true; + return; + } + // Anything else the renderer could not resolve for itself: reported, not answered. A property + // editor whose target is in another container is the common one, and not a load failure. + unresolved.add(name); + }); +} +addResolver(renderer); +addResolver(editorRenderer); + +let teardownProblems = []; + +/** What the test host allows an animation before calling it stuck. */ +const ANIMATION_TIMEOUT = 3000; + +/** + * The state one sample leaves behind, cleared before the next — the host's CleanupPage, which is not + * the same as emptying the containers. + * + * The renderer holds per-container state: what it built, what it is waiting on, which references were + * provided. A sample loaded over the top of another's inherits it, and the symptom is a sample that + * passes alone and fails in a run — a failure that moves. Both renderers, every container, as the host + * does it. What the teardown itself complains about is kept and reported, because a component that + * cannot be torn down is the next sample's problem and worth naming as this one's. + */ +function cleanupPage() { + for (const slot of SLOTS) { + const container = containerFor(slot); + if (!container) continue; + for (const each of [renderer, editorRenderer]) { + try { + each.cleanup(container, true); + } catch (e) { + teardownProblems.push(`${slot}: ${e && e.message}`); + } + } + container.innerHTML = ''; + } +} + +/** Waits for every container to have drawn what it was given. */ +function flushAll() { + const containers = SLOTS.map(containerFor).filter(c => c && c.firstElementChild); + return Promise.all(containers.map(container => new Promise((resolve) => { + let settled = false; + const done = () => { if (!settled) { settled = true; resolve(); } }; + setTimeout(done, 2000); + try { + renderer.waitForFlush(container, done); + } catch { + done(); + } + }))); +} + +/** + * Loads one sample and reports what happened. + * + * The host's order, and each wait is for a different thing. Idle says nothing is queued. Flush says what + * was queued has been drawn. Animation idle says an animated component has settled — and a sample left + * mid-animation carries on into the next one and throws there, which makes the report blame whichever + * sample happened to be loading. A timeout at any of the three is a failure: a sample that never + * settles is doing something it should not. + */ +/** + * How far the load got, said out loud. + * + * A crashed tab answers nothing: the call the runner is waiting on never returns, and all it knows is + * that the page died. These lines are on the console as they happen, so the runner has them already — + * the last one printed is the stage the sample was in when the process went down. + */ +function stage(what) { + console.debug(`[stage] ${what}`); +} + +async function load(sample, options) { + const timeout = (options && options.timeout) || 8000; + + teardownProblems = []; + enumProblems.length = 0; + stage('cleanup'); + cleanupPage(); + const leftBehind = teardownProblems.slice(); + renderer.clearErrors(); + editorRenderer.clearErrors(); + unresolved.clear(); + + // The renderer asks for a reference by this name when a sample says it animates, and calls it once + // the animation settles or the time is up. Providing it is how the host waits for animations, and it + // is also what stops the renderer reporting that reference as missing. + const animated = sample && sample.hasAnimations === true; + let onAnimationIdle = null; + const animationSettled = animated + ? new Promise((resolve) => { onAnimationIdle = resolve; }) + : Promise.resolve(false); + if (animated) { + renderer.provideRefValue(containerFor('content'), 'AnimationIdleHandler', + (timedOutFlag) => { if (onAnimationIdle) onAnimationIdle(timedOutFlag === true); }); + } + + const json = animated + ? JSON.stringify({ ...sample, animationIdleTimeout: ANIMATION_TIMEOUT }) + : JSON.stringify(sample); + + stage('loadJson'); + const thrown = []; + try { + renderer.loadJson(json, containerFor); + } catch (e) { + thrown.push(String((e && e.stack) || e)); + } + + const errors = collectErrors(); + // Anything the renderers object to between the stages, taken as it appears rather than at the end, + // so a stage that never finishes does not take the reason with it. + const duringIdle = []; + + stage('idle'); + let timedOut = false; + let animationTimedOut = false; + if (thrown.length === 0) { + timedOut = await new Promise((resolve) => { + let settled = false; + const timer = setTimeout(() => { + if (settled) return; + settled = true; + resolve(true); + }, timeout); + renderer.queueForIdle(containerFor('content'), () => { + if (settled) return; + settled = true; + clearTimeout(timer); + resolve(false); + }); + }); + + if (!timedOut) { + stage('flush'); + duringIdle.push(...collectErrors()); + await flushAll(); + if (animated) { + stage('animation'); + animationTimedOut = await Promise.race([ + animationSettled, + new Promise((resolve) => setTimeout(() => resolve('gave up'), ANIMATION_TIMEOUT + 1000)), + ]).then(result => result === 'gave up' || result === true); + } + } + } + + stage('done'); + const afterIdle = collectErrors(); + + // Named references the renderer never got a value for: its own account of what is missing, rather + // than this harness's guess from the JSON. + const missingRefs = typeof renderer.getMissingRefs === 'function' + ? renderer.getMissingRefs().slice() : []; + + return { + errors: errors.concat(duringIdle, afterIdle), + thrown, + // What the previous sample left in a state this one had to clear up. Reported against this + // sample because that is when it was found, and named as the previous sample's doing. + leftBehind, + timedOut, + animationTimedOut, + enumProblems: enumProblems.slice(), + unresolved: [...unresolved, ...missingRefs.filter(name => !unresolved.has(name))], + }; +} + +/** + * The errors the renderers have collected, taken off their lists and said out loud as well as returned. + * + * Said out loud because of crashes. With errors collected rather than thrown, everything the renderer + * objected to sits on its list until the load returns — and if the tab dies first, that list dies with + * it. On the console they have left the page by the time it goes, so a crash report can carry what the + * renderer was complaining about on the way down. + */ +function collectErrors() { + const found = []; + for (const each of [renderer, editorRenderer]) { + if (each.hasErrors()) { + for (const error of each.getErrors()) { + found.push(error); + console.debug(`[cr-error] ${error}`); + } + each.clearErrors(); + } + } + return found; +} + +window.igSampleHarness = { + load, + registered: () => registered, + itemCount: () => LibraryManager.instance.itemNames().length, +}; + +// Read by the runner to know the page is usable, rather than guessing with a delay. +window.igSampleHarnessReady = true; diff --git a/docs/xplat/scripts/samples-runtime/index.html b/docs/xplat/scripts/samples-runtime/index.html new file mode 100644 index 0000000000..8ce0577c5d --- /dev/null +++ b/docs/xplat/scripts/samples-runtime/index.html @@ -0,0 +1,31 @@ + + + + + sample load check + + + +
+
+
+
+
+
+
+
+
+
+
+ + + diff --git a/docs/xplat/scripts/samples-runtime/package-lock.json b/docs/xplat/scripts/samples-runtime/package-lock.json new file mode 100644 index 0000000000..5fbf17cba0 --- /dev/null +++ b/docs/xplat/scripts/samples-runtime/package-lock.json @@ -0,0 +1,1515 @@ +{ + "name": "samples-runtime-check", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "samples-runtime-check", + "version": "0.0.0", + "dependencies": { + "igniteui-webcomponents": "^7.1.3", + "igniteui-webcomponents-charts": "^7.1.0", + "igniteui-webcomponents-core": "^7.1.0", + "igniteui-webcomponents-dashboards": "^7.1.0", + "igniteui-webcomponents-data-grids": "^7.1.0", + "igniteui-webcomponents-datasources": "^7.1.0", + "igniteui-webcomponents-excel": "^7.1.0", + "igniteui-webcomponents-gauges": "^7.1.0", + "igniteui-webcomponents-grids": "^7.2.1", + "igniteui-webcomponents-inputs": "^7.1.0", + "igniteui-webcomponents-layouts": "^7.1.0", + "igniteui-webcomponents-maps": "^7.1.0" + }, + "devDependencies": { + "playwright": "^1.49.0", + "vite": "^5.4.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.8.0.tgz", + "integrity": "sha512-0CIZ5itps/8x7BG8dEIhs53BvCUH2PCoogtakwRTut+Arm58sJooJ0AuZhLw2HJYIR5cMLNPBSS728sPho2khQ==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.12" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.8.0.tgz", + "integrity": "sha512-yXSrzeHZBTZadLOlfyhCkJHNeLJnHRnRInwdZ40L7ZiaAtrBwoYlsDrX3v5zB1Utk7CLfzcOVnVVWoXEky7Ceg==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.8.0", + "@floating-ui/utils": "^0.2.12" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.12", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.12.tgz", + "integrity": "sha512-HpCo8tmWzLVad5s2d19EhAz5zqrrQ6s69qd6moPMQvkOuSwDT1YgRfWSVuc4ennqrgv3OHppiOGMQ7oC13yIww==", + "license": "MIT" + }, + "node_modules/@lit-labs/ssr-dom-shim": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@lit-labs/ssr-dom-shim/-/ssr-dom-shim-1.6.0.tgz", + "integrity": "sha512-VHb0ALPMTlgKjM6yIxxoQNnpKyUKLD04VzeQdsiXkMqkvYlAHxq9glGLmgbb889/1GsohSOAjvQYoiBppXFqrQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@lit-labs/virtualizer": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@lit-labs/virtualizer/-/virtualizer-2.1.1.tgz", + "integrity": "sha512-JWxMwnlouLdwpw8spLTuax53WMnSP3xt0dCyxAS7GJr5Otda9MGgR/ghAdfwhSY75TmjbE1T2TqChwoGCw3ggw==", + "license": "BSD-3-Clause", + "dependencies": { + "lit": "^3.2.0", + "tslib": "^2.0.3" + } + }, + "node_modules/@lit/context": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/@lit/context/-/context-1.1.6.tgz", + "integrity": "sha512-M26qDE6UkQbZA2mQ3RjJ3Gzd8TxP+/0obMgE5HfkfLhEEyYE3Bui4A5XHiGPjy0MUGAyxB3QgVuw2ciS0kHn6A==", + "license": "BSD-3-Clause", + "dependencies": { + "@lit/reactive-element": "^1.6.2 || ^2.1.0" + } + }, + "node_modules/@lit/reactive-element": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@lit/reactive-element/-/reactive-element-2.1.2.tgz", + "integrity": "sha512-pbCDiVMnne1lYUIaYNN5wrwQXDtHaYtg7YEFPeW+hws6U47WeFvISGUWekPGKWOP1ygrs0ef0o1VJMk1exos5A==", + "license": "BSD-3-Clause", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.5.0" + } + }, + "node_modules/@napi-rs/lzma-linux-x64-gnu": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@napi-rs/lzma-linux-x64-gnu/-/lzma-linux-x64-gnu-1.5.1.tgz", + "integrity": "sha512-oTXEIha4SsuXdTA4Iyskj0kpdx2yVXdhd75c2v3xGrHFfVMsbhTPZU/nMPL4sWKo4pBHm3aucLaqGlF696dTyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": "^22.20 || ^24.12 || >=25" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.62.4.tgz", + "integrity": "sha512-RrPokAb7dmbxFoeO3TloqHyOjgye8RkBhSqmp4aJMIex4c9r46ZstPnleDQOq1t46VOVjwIuwNogIqbodV1Vvg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.62.4.tgz", + "integrity": "sha512-JKuJc+pnpks2pjy7L/N3v/cAkZxYlnmuZoD840ldbMI5KDbC4iO9NKwPKYdjYFCMAIIlBzYSFHxIJVYzRo2/8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.62.4.tgz", + "integrity": "sha512-krw5uS2STmvJ02x0uTXHbqQNuz+9eZ1iw+qXk9dmW2gvV4jV7O2hEoOnuhFrpOPiel1mBFtqbxYZZtC46hXLOw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.62.4.tgz", + "integrity": "sha512-wsTxtgApb4PrOsNJIm0FZ1h3WvCC+k9uxLJ4ad75hgoS4NiRes2SoJFlDAyMwiUY8IssDqGcHbXuN0sx1tfF1A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.62.4.tgz", + "integrity": "sha512-GUOnQlyZe3yAXhWOtOMsn5Qkrv5E5mZXa0thbARWi5Ei2szlVXJFQhddZ4HbAzh8q92w5twp+CQvs/eFanz9YQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.62.4.tgz", + "integrity": "sha512-/Y7f3QuxjzPKsjA/rfEDa3+0vXqyjmJ50Ln8dPpCmWkKTrUoWHG1cWhTqaAMLob2m2nESWuC7yGrREz019Ztqg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.62.4.tgz", + "integrity": "sha512-81wiiX3v7aqy+T+bT61TJ78yJjRquqFFTTbAPt08imfQQzkPIW8t6aJbkTagtCCrXMNc9D66+geqlK7ydLPNqA==", + "cpu": [ + "arm" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.62.4.tgz", + "integrity": "sha512-9kmDIvNZqdoHOBZgNtpTBeLWYO/LVipM3H/j62P8848/l/VPEQL6N3uxU9pvP1oZAsXyC2MEnFP3ovRjo7WYNQ==", + "cpu": [ + "arm" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.62.4.tgz", + "integrity": "sha512-CcnXHWnXg69g+DX5VWL3FHts3qMRN2uVEHX+BZvGLdd07/gXkn3ePjYtO1LDJvxkGKVHMclKBRa1QUTH+6toYQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.62.4.tgz", + "integrity": "sha512-iFOibiHnTRuhrWLlRsOQFdZJJIa7S8OwkneJr4ocALP16u5yk6lWLINFwhHaEqBFMsKDUZofLkGos7+CPzGB3g==", + "cpu": [ + "arm64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.62.4.tgz", + "integrity": "sha512-XnWYMI7euHlb5a871xPja+Gm7DRCFU+FGRrtS2sMq9N8FvqtpagUy6gD4YOemC5MRk9xbh8+jYMEJbigFQwsgA==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.62.4.tgz", + "integrity": "sha512-qGDAlO0U8xedCcsdRm9oaoQY8DAx/QT7uIxJWhCdx0ceIWX783UC9QSYkdpzAe29wNiVfp24+bZdQmn49o45SQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.62.4.tgz", + "integrity": "sha512-ru4H6ezD7ysA5EiEK6qkkaEb4modH8CTej6kUy/gQi20u3kB3G7Zn8snXXkeJSCOFKG/rbPPtM/+9Wgas1961w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.62.4.tgz", + "integrity": "sha512-2W4MO5WQVJnbJaZdvDb9rhBDuFU1nKIepPFpJUBsTh2k1YY2g+ODViaWuyOAjQ5cOP7NvrvLzt3wvHOoiAvc7w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.62.4.tgz", + "integrity": "sha512-+fxjfuoAmVMCYV5QyjoIpu0cp5DOiOTeqYFk1AVaxGr+/ravWLX89XfQmptsoWcaVy/TGf2hexzbUOrCQIL1CQ==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.62.4.tgz", + "integrity": "sha512-jTn8JfHGL4djjFxPuM06LmNUJDsst2jeVlsd9OmIH6zc5sC9K6rIuO4YajXatLUpBmBKl6b35ro1QZocLi+tcA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.62.4.tgz", + "integrity": "sha512-oCJCJL4pXsoDcP2QZ+JVlPTIRc6266zsIaeJJsWImmF7HO0W8nb6HuSgZlMWxJwaPf8ehbSw8yo0EUw925hKsA==", + "cpu": [ + "s390x" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.62.4.tgz", + "integrity": "sha512-W69hukhZ3KKNRCaMIEzKvcFye42hh0FE1+YoYaf5+Ikacuftoco6yO/xouz0hc5d5W/s3yBro5jRiuEE/Q5vUw==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "glibc" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.62.4.tgz", + "integrity": "sha512-qiXbGG2jkjXhzXpsFZSR2Xpb8DN/UaxYsbb/STbuR/6fpaDgRmmaq1B/LmtF2wQFOFOSsK2jdE0RZ3a0zHn4QA==", + "cpu": [ + "x64" + ], + "dev": true, + "libc": [ + "musl" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.62.4.tgz", + "integrity": "sha512-nWeM//hxv8mIo6jD7Hu4o48DVmV9pbV6gsKaWU+4NFyqHoPKwrkRiZGLKUhOBk8qNmDmpwFtPKg80Bo/Tn4xiQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.62.4.tgz", + "integrity": "sha512-s62SQ/vgsRSvMwDkOEfTqfgASF0f26ZNaQuTA6Aok5lrikf89yI2W0gFHvZb2Jpgc6N8JnOKZgCK2iciO3CsxQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.62.4.tgz", + "integrity": "sha512-J6wGf8TVGbXJq+HH+ttTvrcfNKPbuZecV6KT1B8I18BC5IURUh5kl4Yl5OEP5eFIUoI5BWxCsyYMhFsDx8kekw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.62.4.tgz", + "integrity": "sha512-zmfrQd/0wu6oJs8Vq8KwY/YtsKSsLtKe/HwAP4Wqy8LhWjeT55fHRAkOhYQ12wI3ayS4Tt12d5CDRD7N96SAYQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.62.4.tgz", + "integrity": "sha512-qPzHqdj9rfUD+w79dtE07zi/kFwKyCJqplp5K5ygeLTp7jLpAoc16OAH39HSmRC9UpozaecsleI8uAdEj6v2yw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.62.4.tgz", + "integrity": "sha512-zD6NdeWEByGE9QF9vCrlJ5YQB4oq9q91kPZS37Jwj5hOkvR1lTBSpsKhKDw4IJtbQ35LsTS1HD9DZYGKIshU1Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@types/estree": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.9.tgz", + "integrity": "sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/trusted-types": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz", + "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==", + "license": "MIT" + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/igniteui-i18n-core": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/igniteui-i18n-core/-/igniteui-i18n-core-1.0.5.tgz", + "integrity": "sha512-CO5Rqo5uqgyAfIHbFVuBEmo+fYXgLQ7zxRShqAu+ng8kDS5uwWjKeSGWVZjKMBgxmc6ZWMMbdcWIpGZUSOkPsw==", + "license": "MIT", + "peerDependencies": { + "igniteui-i18n-resources": "1.0.5" + }, + "peerDependenciesMeta": { + "igniteui-i18n-resources": { + "optional": true + } + } + }, + "node_modules/igniteui-webcomponents": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents/-/igniteui-webcomponents-7.2.4.tgz", + "integrity": "sha512-h5hrroBn0kSYCYpj5OH4sKXkFZvdOeqpYnNTKMB5PsqsWexhQICkH5xKjDDj3VPbd135OvzWX5XQN0Nclj2qAQ==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.7.0", + "@lit-labs/virtualizer": "^2.1.0", + "@lit/context": "^1.1.0", + "igniteui-i18n-core": "^1.0.5", + "lit": "^3.3.0" + }, + "engines": { + "node": ">=22" + }, + "peerDependencies": { + "dompurify": "^3.3.0", + "igniteui-i18n-resources": "^1.0.5", + "marked": "^17.0.0", + "marked-shiki": "^1.2.0", + "shiki": "^3.20.0" + }, + "peerDependenciesMeta": { + "dompurify": { + "optional": true + }, + "igniteui-i18n-resources": { + "optional": true + }, + "marked": { + "optional": true + }, + "marked-shiki": { + "optional": true + }, + "shiki": { + "optional": true + } + } + }, + "node_modules/igniteui-webcomponents-charts": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-charts/-/igniteui-webcomponents-charts-7.1.0.tgz", + "integrity": "sha512-OuZKX14MHfL/z1y1zIbKc7FdwU200Y9J86GC3sq7IcDXLpoTXf7iFxrlTPI0W7Bc19bzotiZdpaq8hoKIERABw==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-core": "7.1.0" + } + }, + "node_modules/igniteui-webcomponents-core": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-core/-/igniteui-webcomponents-core-7.1.0.tgz", + "integrity": "sha512-dFNpQwTeuupJlEgTSWQ+SvB/ToTHAJ/6L1P0RvKOnC0+65py3molRrhGZjR9iNjxxBDx1AER/gvFdarvhoU3Jw==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "lit-html": "^3.2.0" + } + }, + "node_modules/igniteui-webcomponents-dashboards": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-dashboards/-/igniteui-webcomponents-dashboards-7.1.0.tgz", + "integrity": "sha512-abDiA+fCQZsGi/J8b/CcfD6IqX2lBcNb5fGDDpEUMKOD0BwDC0tzcHvMjYtkk0r1Nw8u/TSov7Og/UUiA3DEtQ==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-charts": "7.1.0", + "igniteui-webcomponents-core": "7.1.0", + "igniteui-webcomponents-data-grids": "7.1.0", + "igniteui-webcomponents-gauges": "7.1.0", + "igniteui-webcomponents-inputs": "7.1.0", + "igniteui-webcomponents-layouts": "7.1.0", + "igniteui-webcomponents-maps": "7.1.0" + } + }, + "node_modules/igniteui-webcomponents-data-grids": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-data-grids/-/igniteui-webcomponents-data-grids-7.1.0.tgz", + "integrity": "sha512-IMOiHfYRpzdOPTypUX6CMKTkAXc2jkMMWvUMjW/1IfiLNlOQciTIgxob16PnuUXXR0UbI612fg0cnSclbWvWYA==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-core": "7.1.0", + "igniteui-webcomponents-inputs": "7.1.0", + "igniteui-webcomponents-layouts": "7.1.0" + } + }, + "node_modules/igniteui-webcomponents-datasources": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-datasources/-/igniteui-webcomponents-datasources-7.1.0.tgz", + "integrity": "sha512-bRmR2cfshA2fu9Sg+p0tPIG0MUe5RduyjR1lAv7uGkQX8B12VHVo8Uh34h+VcO5Z+9Gs2At2qImVIqs5CTQd5Q==", + "license": "MIT", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-core": "7.1.0" + } + }, + "node_modules/igniteui-webcomponents-excel": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-excel/-/igniteui-webcomponents-excel-7.1.0.tgz", + "integrity": "sha512-1AktNWp12Se1PpzAKX9PMvnG21TMtDCqJuvgLVZ1RfOBZeNr+G5qTnL3uQaxt4qdP4GVX0jrnZGlURhOkyZIwg==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "jszip": "^3.1.5", + "pako": "^1.0.6", + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-core": "7.1.0" + } + }, + "node_modules/igniteui-webcomponents-gauges": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-gauges/-/igniteui-webcomponents-gauges-7.1.0.tgz", + "integrity": "sha512-5kHZW+O7D4GOUdYlB7VL++yMFxPkjLRFK+R9sXuYLMyMNR6v0N373Wk/sg5pthvrqwW/XnjOMSwm24EhZ8ZApg==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-core": "7.1.0" + } + }, + "node_modules/igniteui-webcomponents-grids": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-grids/-/igniteui-webcomponents-grids-7.2.1.tgz", + "integrity": "sha512-G0lm9LiT6GjRcDw6X5n6xcrfiLrhWQ9jD8c+BtlBaSc4kJ2uK1UphNw3roEmlCs18bL/iVokEJT2G68E5x6nMA==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "igniteui-i18n-core": "^1.0.3", + "lit": "^3.3.0", + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-i18n-resources": "^1.0.3" + }, + "peerDependenciesMeta": { + "igniteui-i18n-resources": { + "optional": true + } + } + }, + "node_modules/igniteui-webcomponents-inputs": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-inputs/-/igniteui-webcomponents-inputs-7.1.0.tgz", + "integrity": "sha512-d/ThuClCYjXP9UKZFf9lSm/qKX2JGRQSw7gNJftU6kTqp1nhySvKdraDmnNg3gY7MPzcSReuxAEBSyh6Y/RPOQ==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-core": "7.1.0" + } + }, + "node_modules/igniteui-webcomponents-layouts": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-layouts/-/igniteui-webcomponents-layouts-7.1.0.tgz", + "integrity": "sha512-oSq5BXtCoNa5OuSB7+KcZ4JuGBveCGbmIP9DAa+FaBM/5gajDeu0OxErdrU1I+AhoOUk29ZHLRrz8F5HuqDBOQ==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-core": "7.1.0", + "igniteui-webcomponents-inputs": "7.1.0" + } + }, + "node_modules/igniteui-webcomponents-maps": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/igniteui-webcomponents-maps/-/igniteui-webcomponents-maps-7.1.0.tgz", + "integrity": "sha512-9hqFhtevtIVdHmZNIyBxP/2e8DJEtYA6GAvvThctS6RWcOBtiVyRS9vNxq/eFvSpHIA9bwnn3B5JpGvM8vil2A==", + "license": "Infragistics(R) Ultimate license (http://www.infragistics.com/legal/ultimate/license/)", + "dependencies": { + "tslib": "^2.3.1" + }, + "peerDependencies": { + "igniteui-webcomponents-charts": "7.1.0", + "igniteui-webcomponents-core": "7.1.0" + } + }, + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==", + "license": "MIT" + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "license": "MIT" + }, + "node_modules/jszip": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "license": "(MIT OR GPL-3.0-or-later)", + "dependencies": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" + } + }, + "node_modules/lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "license": "MIT", + "dependencies": { + "immediate": "~3.0.5" + } + }, + "node_modules/lit": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/lit/-/lit-3.3.3.tgz", + "integrity": "sha512-fycuvZg/hkpozL00lm1pEJH5nN/lr9ZXd6mJI2HSN4+Bzc+LDNdEApJ6HFbPkdFNHLvOplIIuJvxkS4XUxqirw==", + "license": "BSD-3-Clause", + "dependencies": { + "@lit/reactive-element": "^2.1.0", + "lit-element": "^4.2.0", + "lit-html": "^3.3.0" + } + }, + "node_modules/lit-element": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-4.2.2.tgz", + "integrity": "sha512-aFKhNToWxoyhkNDmWZwEva2SlQia+jfG0fjIWV//YeTaWrVnOxD89dPKfigCUspXFmjzOEUQpOkejH5Ly6sG0w==", + "license": "BSD-3-Clause", + "dependencies": { + "@lit-labs/ssr-dom-shim": "^1.5.0", + "@lit/reactive-element": "^2.1.0", + "lit-html": "^3.3.0" + } + }, + "node_modules/lit-html": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-3.3.3.tgz", + "integrity": "sha512-el8M6jK2o3RXBnrSHX3ZKrsN8zEV63pSExTO1wYJz7QndGYZ8353e2a5PPX+qHe2aGayfnchQmkAojaWAREOIA==", + "license": "BSD-3-Clause", + "dependencies": { + "@types/trusted-types": "^2.0.2" + } + }, + "node_modules/nanoid": { + "version": "3.3.18", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz", + "integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/playwright": { + "version": "1.62.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.62.1.tgz", + "integrity": "sha512-0M+L3LAD8/nm554LOla9Ayx0j0tmFZ0FBcoQ7F1VuVHpM/XpiC8RcDzBQB8W5+hA8L22THxELzeF+2WcUzvcLg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright-core": "1.62.1" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=20" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "node_modules/playwright-core": { + "version": "1.62.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.62.1.tgz", + "integrity": "sha512-wPYSwEBJY9GHraISXqyqtx0na0LpO3XEX7jNDhntbex7tzUS7kLnZsOlFruFJB4Hi/rhDMjXGqHewDZ68nYZVw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/postcss": { + "version": "8.5.26", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.26.tgz", + "integrity": "sha512-u82N74LFzG8ca+dD8puPnplTXoGH4fTPpVGuIbt36G3qvNlkvfD0lEAZSxaly3KX8TS/L1A1gsCEmvKmBcVbkQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.17", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/rollup": { + "version": "4.62.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.62.4.tgz", + "integrity": "sha512-RXOqwaPsBGjMNMa4sQjDjHieHEZDFoj/Rdr46l2MU5DfEs16wHJPC2RPTPHWhNl+M3aI472LLqFkFKut4SblOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.9" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@napi-rs/lzma-linux-x64-gnu": "1.5.1", + "@rollup/rollup-android-arm-eabi": "4.62.4", + "@rollup/rollup-android-arm64": "4.62.4", + "@rollup/rollup-darwin-arm64": "4.62.4", + "@rollup/rollup-darwin-x64": "4.62.4", + "@rollup/rollup-freebsd-arm64": "4.62.4", + "@rollup/rollup-freebsd-x64": "4.62.4", + "@rollup/rollup-linux-arm-gnueabihf": "4.62.4", + "@rollup/rollup-linux-arm-musleabihf": "4.62.4", + "@rollup/rollup-linux-arm64-gnu": "4.62.4", + "@rollup/rollup-linux-arm64-musl": "4.62.4", + "@rollup/rollup-linux-loong64-gnu": "4.62.4", + "@rollup/rollup-linux-loong64-musl": "4.62.4", + "@rollup/rollup-linux-ppc64-gnu": "4.62.4", + "@rollup/rollup-linux-ppc64-musl": "4.62.4", + "@rollup/rollup-linux-riscv64-gnu": "4.62.4", + "@rollup/rollup-linux-riscv64-musl": "4.62.4", + "@rollup/rollup-linux-s390x-gnu": "4.62.4", + "@rollup/rollup-linux-x64-gnu": "4.62.4", + "@rollup/rollup-linux-x64-musl": "4.62.4", + "@rollup/rollup-openbsd-x64": "4.62.4", + "@rollup/rollup-openharmony-arm64": "4.62.4", + "@rollup/rollup-win32-arm64-msvc": "4.62.4", + "@rollup/rollup-win32-ia32-msvc": "4.62.4", + "@rollup/rollup-win32-x64-gnu": "4.62.4", + "@rollup/rollup-win32-x64-msvc": "4.62.4", + "fsevents": "~2.3.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==", + "license": "MIT" + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "license": "0BSD" + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite/node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + } + } +} diff --git a/docs/xplat/scripts/samples-runtime/package.json b/docs/xplat/scripts/samples-runtime/package.json new file mode 100644 index 0000000000..f921227e62 --- /dev/null +++ b/docs/xplat/scripts/samples-runtime/package.json @@ -0,0 +1,27 @@ +{ + "name": "samples-runtime-check", + "private": true, + "version": "0.0.0", + "type": "module", + "description": "Loads every sample in igniteui-xplat-examples into chromium with the real component renderer and reports anything that errors.", + "scripts": { + "check": "node run.mjs", + "check:local": "node run.mjs --packages=local" + }, + "dependencies": { + "igniteui-webcomponents-charts": "^7.1.0", + "igniteui-webcomponents-core": "^7.1.0", + "igniteui-webcomponents-dashboards": "^7.1.0", + "igniteui-webcomponents-data-grids": "^7.1.0", + "igniteui-webcomponents-datasources": "^7.1.0", + "igniteui-webcomponents-excel": "^7.1.0", + "igniteui-webcomponents-gauges": "^7.1.0", + "igniteui-webcomponents-inputs": "^7.1.0", + "igniteui-webcomponents-layouts": "^7.1.0", + "igniteui-webcomponents-maps": "^7.1.0" + }, + "devDependencies": { + "playwright": "^1.49.0", + "vite": "^5.4.0" + } +} diff --git a/docs/xplat/scripts/samples-runtime/run.mjs b/docs/xplat/scripts/samples-runtime/run.mjs new file mode 100644 index 0000000000..0d8fc58b7c --- /dev/null +++ b/docs/xplat/scripts/samples-runtime/run.mjs @@ -0,0 +1,658 @@ +/** + * Every sample in igniteui-xplat-examples, loaded into chromium with the real component renderer, + * checked for errors. + * + * The snippet checks prove a definition emits code. They cannot prove the sample it came from works: + * a property can be spelled right, typed right and still leave a component throwing on load. This + * runs the other half — the real packages, the real renderer, one page, every sample. + * + * A sample passes when the renderer reports no errors, the browser throws nothing, and the renderer + * goes idle. Idle is its own signal (queueForIdle runs once nothing is pending), so a sample that + * never settles is a failure rather than a slow pass. + * + * Usage: + * node run.mjs # the published packages + * node run.mjs --packages= # a directory of locally built packages + * node run.mjs --filter=geo-map # only samples whose path contains this + * node run.mjs --limit=20 --headed # a quick look, with a visible browser + * node run.mjs --timeout=15000 + * + * The examples checkout is resolved by ../lib/snippet-toolchain.mjs: a peer checkout, XPLAT_EXAMPLES, + * or a clone of the examples branch matching the branch under check. + */ + +import fs from 'fs'; +import path from 'path'; +import { execFileSync } from 'child_process'; +import { fileURLToPath } from 'url'; +import { resolveExamplesRoot } from '../lib/snippet-toolchain.mjs'; + +const HERE = path.dirname(fileURLToPath(import.meta.url)); + +const args = process.argv.slice(2); +const flag = (name, fallback = null) => { + const found = args.find(a => a.startsWith(`--${name}=`)); + return found === undefined ? fallback : found.slice(name.length + 3); +}; +const PACKAGES = flag('packages', 'registry'); +const FILTER = flag('filter'); +const LIMIT = Number(flag('limit', '0')) || 0; +const TIMEOUT = Number(flag('timeout', '8000')); +const HEADED = args.includes('--headed'); +const KEEP_OPEN = args.includes('--keep-open'); +const VERBOSE = args.includes('--verbose'); + +const examples = resolveExamplesRoot(); +const samplesDir = path.join(examples, 'samples'); +if (!fs.existsSync(samplesDir)) { + console.error(`no samples directory in the examples checkout: ${samplesDir}`); + process.exit(2); +} + +/* ------------------------------------------------------------------ packages */ + +/** + * The packages the harness imports. + * + * The registry is the default because that is what a reader of the documentation installs, and a + * check against anything else can pass while the published packages are broken. A local directory is + * for checking a build before it ships; each entry has to be an installable package folder, which is + * what the build produces — a folder of loose output with no package.json cannot be resolved by + * anything, and saying so beats a hundred import failures. + */ +function ensurePackages() { + const modules = path.join(HERE, 'node_modules'); + if (!fs.existsSync(modules)) { + console.log('[runtime] installing the harness dependencies'); + run('npm', ['install', '--no-audit', '--no-fund'], HERE); + } + if (PACKAGES === 'registry') return; + + const dir = path.resolve(PACKAGES); + if (!fs.existsSync(dir)) { + console.error(`--packages names a directory that does not exist: ${dir}`); + process.exit(2); + } + const names = fs.readdirSync(dir).filter(name => name.startsWith('igniteui-webcomponents-')); + if (names.length === 0) { + console.error(`no igniteui-webcomponents-* packages in ${dir}`); + process.exit(2); + } + const missing = names.filter(name => !fs.existsSync(path.join(dir, name, 'package.json'))); + if (missing.length > 0) { + console.error(`these are not installable packages — no package.json in:\n` + + missing.map(name => ` ${path.join(dir, name)}`).join('\n') + '\n\n' + + 'Point --packages at the output of the packaging step, not at intermediate ' + + 'build output.'); + process.exit(2); + } + // Copied over the installed ones rather than symlinked: a symlink would have the local package + // resolve its own dependencies from outside this project, and copying leaves the source + // untouched. node_modules is disposable either way. + for (const name of names) { + const target = path.join(modules, name); + fs.rmSync(target, { recursive: true, force: true }); + fs.cpSync(path.join(dir, name), target, { recursive: true }); + } + console.log(`[runtime] using ${names.length} locally built package(s) from ${dir}`); +} + +function ensureChromium() { + // Playwright downloads browsers on demand and is quiet about having none, which surfaces as a + // launch failure with a message about executables. Asking for it up front makes the wait + // explainable, and it is a no-op once installed. + console.log('[runtime] making sure chromium is available'); + run('npx', ['playwright', 'install', 'chromium'], HERE, { quiet: !VERBOSE }); +} + +function run(command, argv, cwd, { quiet = false } = {}) { + execFileSync(command, argv, { cwd, stdio: quiet ? ['ignore', 'ignore', 'inherit'] : 'inherit' }); +} + +/* ------------------------------------------------------- the sample library */ + +/** + * The code generation library, emitted for Web Components. + * + * Through the product's own emission — the same code generating renderer the library project emitter + * drives, the same per-item templates, the same lookup shape it writes — rather than by reading the + * library folder and deciding for itself which files are data. A second implementation gets the easy + * items right, is wrong about every item whose content the renderer transforms, and drifts from the + * real one the moment either changes. + * + * Only the items the selected samples actually name are emitted. That keeps the browser's module graph + * to what is under check, and keeps a sample for a component this harness does not install from + * failing every other sample by breaking the lookup they all import. + */ +function emitLibrary(api, names) { + const generated = path.join(HERE, 'generated'); + fs.rmSync(generated, { recursive: true, force: true }); + fs.mkdirSync(generated, { recursive: true }); + + const emitted = api.emitLibrary('WebComponents', { + examplesRoot: examples, + only: [...names].sort(), + }); + + // An item importing a package this harness does not install cannot be part of the lookup: every + // item is imported by it, so one unresolvable import stops the page loading at all rather than + // failing the samples that needed that item. Checked here, in node, because the alternative is + // finding out from a bundler error with the whole run already lost. + const unavailable = []; + const usable = {}; + for (const [name, content] of Object.entries(emitted.files)) { + const missing = unresolvableImports(content); + if (missing.length > 0) { + unavailable.push({ item: name.replace(/\.ts$/, ''), missing }); + continue; + } + usable[name] = content; + } + + for (const [name, content] of Object.entries(usable)) { + fs.writeFileSync(path.join(generated, name), content, 'utf8'); + } + const dropped = new Set(unavailable.map(entry => entry.item)); + fs.writeFileSync(path.join(generated, 'libraryManager.ts'), + withoutItems(emitted.manager, dropped), 'utf8'); + return { ...emitted, unavailable }; +} + +/** The bare module specifiers a file imports that nothing here can resolve. */ +function unresolvableImports(content) { + const missing = new Set(); + for (const match of content.matchAll(/from\s+['"]([^'".][^'"]*)['"]/g)) { + const specifier = match[1]; + if (specifier.startsWith('.') || specifier.startsWith('/')) continue; + try { + import.meta.resolve(specifier, `file://${path.join(HERE, 'harness.js')}`); + } catch { + missing.add(specifier); + } + } + return [...missing]; +} + +/** + * The lookup without the items whose files were dropped — both the import and the registration, since + * either one alone would not compile. + */ +function withoutItems(manager, dropped) { + if (dropped.size === 0) return manager; + return manager.split('\n').filter(line => { + for (const name of dropped) { + if (line.includes(`from './${name}'`)) return false; + if (line.includes(`this._items.set("${name}"`)) return false; + if (line.includes(`this._requiredStyles.add("${name}"`)) return false; + } + return true; + }).join('\n'); +} + +/** + * The names a set of samples refer to. + * + * Read off the JSON: any string property whose name ends in "Ref" is a reference. Some name an element + * inside the same description, which the renderer resolves itself and the library simply does not + * have — asking for those costs nothing. + */ +function referenceNamesIn(node, found = new Set()) { + if (Array.isArray(node)) { + for (const item of node) referenceNamesIn(item, found); + return found; + } + if (!node || typeof node !== 'object') return found; + for (const [key, value] of Object.entries(node)) { + if (key.endsWith('Ref') && typeof value === 'string') found.add(value); + else if (typeof value === 'object') referenceNamesIn(value, found); + } + // A sample can also list the handlers it runs at start-up by name. + for (const list of ['onInit', 'onViewInit']) { + const value = node[list]; + if (typeof value === 'string') found.add(value); + else if (Array.isArray(value)) for (const one of value) { + if (typeof one === 'string') found.add(one); + } + } + return found; +} + +/** The packages the harness imports, read from its own dependencies. */ +const PACKAGE_NAMES = Object.keys( + JSON.parse(fs.readFileSync(path.join(HERE, 'package.json'), 'utf8')).dependencies ?? {}); + +/* --------------------------------------------------------------------- samples */ + +function samples() { + const found = []; + (function walk(dir) { + for (const entry of fs.readdirSync(dir, { withFileTypes: true })) { + const full = path.join(dir, entry.name); + if (entry.isDirectory()) walk(full); + else if (entry.name.endsWith('.json')) found.push(full); + } + })(samplesDir); + const relative = found + .map(file => path.relative(samplesDir, file).split(path.sep).join('/')) + .filter(name => !FILTER || name.includes(FILTER)) + .sort(); + return LIMIT > 0 ? relative.slice(0, LIMIT) : relative; +} + +/* ------------------------------------------------------------------------ run */ + +ensurePackages(); +ensureChromium(); + +const list = samples(); +if (list.length === 0) { + console.error(`no samples matched${FILTER ? ` --filter=${FILTER}` : ''}`); + process.exit(2); +} + +const wanted = new Set(); +const parsed = new Map(); +for (const name of list) { + const sample = JSON.parse(fs.readFileSync(path.join(samplesDir, name), 'utf8')); + parsed.set(name, sample); + referenceNamesIn(sample, wanted); +} + +const { loadSnippetApi } = await import('../lib/snippet-toolchain.mjs'); +const library = emitLibrary(loadSnippetApi(), wanted); +console.log(`[runtime] emitted ${library.dataItems} data item(s) and ${library.handlerItems} ` + + `handler item(s) for ${list.length} sample(s)`); +// A sample binding to one of these is not checked, and is reported as such rather than failed. The +// packages in question are the ones the documentation this repository builds does not cover — the +// modern web grids version on their own line — and a check that fails over what it does not install +// says nothing about what it does. +const uncovered = new Set(library.unavailable.map(entry => entry.item)); +if (uncovered.size > 0) { + const packages = new Set(library.unavailable.flatMap(entry => entry.missing)); + console.log(`[runtime] ${uncovered.size} library item(s) need package(s) this harness does not ` + + `install: ${[...packages].join(', ')}`); +} +const realProblems = library.problems.filter(p => p.reason !== 'no such library item'); +if (realProblems.length > 0) { + console.log(`[runtime] ${realProblems.length} library item(s) emitted nothing:`); + for (const problem of realProblems.slice(0, 10)) { + console.log(` ${problem.item}: ${problem.reason}`); + } +} + +const { createServer } = await import('vite'); +const { chromium } = await import('playwright'); + +const server = await createServer({ + root: HERE, + configFile: false, + logLevel: VERBOSE ? 'info' : 'error', + server: { + // The data items live in the examples checkout, outside this project. + fs: { allow: [HERE, examples], strict: false }, + port: 0, + // No hot reloading. A reload part way through a run replaces the page, and with it the harness + // the runner is calling into — which read as a hundred samples failing at once because the + // harness "was undefined". + hmr: false, + }, + // Every package named up front, so the dependency optimiser does its work before the first sample + // rather than discovering a package half way through and reloading the page to use it. + optimizeDeps: { include: PACKAGE_NAMES }, +}); +await server.listen(); +const url = server.resolvedUrls.local[0]; +console.log(`[runtime] harness at ${url}`); + +// The browser's own output, kept in a ring. A tab that dies says why on stderr — a signal, an +// out-of-memory report, a check that failed inside the renderer process — and none of that reaches the +// page's console. Playwright hands it over through the logger, so it is here when a crash needs +// explaining and out of the way when it does not. +const browserLog = []; +const browser = await chromium.launch({ + headless: !HEADED, + logger: { + isEnabled: (name) => name === 'browser', + log: (name, severity, message) => { + browserLog.push(`${severity}: ${String(message).trim()}`); + if (browserLog.length > 60) browserLog.shift(); + }, + }, +}); + +// Everything the browser complains about, attributed to whichever sample was loading at the time. +let current = null; +const browserProblems = new Map(); +const noteProblem = (sample, message) => { + if (!sample) return; + if (!browserProblems.has(sample)) browserProblems.set(sample, []); + browserProblems.get(sample).push(message); +}; + +/** + * A page with the harness on it, ready to be asked for a sample. + * + * Made through a function because a page can be lost — a tab that runs out of memory takes the harness + * with it — and the answer to an unreachable host is to start another one, which is what the xsharp + * test runner does. Restarts are counted and reported: needing one is itself a finding about what a + * sample left behind, even though the run carries on. + */ +let page = null; +let restarts = 0; +let crashed = false; +// The stages the current sample went through, most recent last. +let stages = []; +// Everything the page said while loading it. +let chatter = []; +// What the renderers reported while loading it, streamed out of the page as it happened. +let rendererSaid = []; + +async function openPage() { + if (page !== null) { + await page.close().catch(() => {}); + } + page = await browser.newPage({ viewport: { width: 1280, height: 900 } }); + // Playwright says so when a tab dies, which is the only notice that arrives — the call being + // awaited simply never returns. + page.on('crash', () => { + crashed = true; + noteProblem(current, 'the tab died while this sample was loading'); + }); + page.on('pageerror', (error) => { + // The first frame as well as the message: "cannot read properties of null" says nothing about + // where, and where is the whole question when a component throws during load. + const frame = String(error.stack ?? '').split('\n').find(line => line.trim().startsWith('at ')); + noteProblem(current, `uncaught: ${error.message}${frame ? `\n ${frame.trim()}` : ''}`); + }); + page.on('console', (message) => { + const text = message.text(); + // How far the sample got. Kept per sample so a crash can say which stage it was in, and the + // last few of them are worth showing even when the tab survives. + if (text.startsWith('[stage] ')) { + stages.push(text.slice('[stage] '.length)); + if (stages.length > 12) stages.shift(); + return; + } + // What the renderer objected to, as it objected. Kept separately from the return value, which a + // crashed tab never delivers. + if (text.startsWith('[cr-error] ')) { + rendererSaid.push(text.slice('[cr-error] '.length)); + if (rendererSaid.length > 20) rendererSaid.shift(); + return; + } + // Everything the page says, of any kind, in a ring. A component often logs something on its + // way down, and a warning that means nothing on a good run is the whole story on a bad one. + chatter.push(`${message.type()}: ${text}`); + if (chatter.length > 40) chatter.shift(); + if (message.type() !== 'error') return; + // A sample binding to a remote service is not what this check is about, and a network failure in + // CI would report as a component error. + if (/net::ERR_|Failed to load resource|ERR_NAME_NOT_RESOLVED/.test(text)) return; + noteProblem(current, `console: ${text}`); + }); + await page.goto(url, { waitUntil: 'load' }); + await page.waitForFunction('window.igSampleHarnessReady === true', null, { timeout: 120000 }); +} + +await openPage(); + +const setup = await page.evaluate('window.igSampleHarness.registered()'); +console.log(`[runtime] registered ${setup.descriptions} description module(s) and ` + + `${setup.modules} component module(s)`); +if (setup.failures.length > 0) { + console.log(`[runtime] ${setup.failures.length} module(s) would not register:`); + for (const failure of setup.failures.slice(0, 10)) console.log(` ${failure}`); +} + +console.log(`[runtime] loading ${list.length} sample(s)\n`); + +const failures = []; +const contaminated = []; +const leftBehind = []; +const unresolvedNames = new Map(); +const enumProblems = new Map(); +const skipped = []; +let passed = 0; +// How much the page is holding after each sample. A page that dies part way through a run is holding +// something it should have let go of, and the shape of this says where it started. +const heapBySample = []; +// The last reading taken, so a crash can say what the page was holding beforehand. +let lastHeap = 0; +// Which sample ran before the current one, so a failure that comes from inherited state can name it. +let previous = null; + +for (const name of list) { + const sample = parsed.get(name); + const needsUncovered = [...referenceNamesIn(sample)].filter(ref => uncovered.has(ref)); + if (needsUncovered.length > 0) { + skipped.push({ name, needs: needsUncovered }); + continue; + } + current = name; + let problems = await loadOnce(name, sample); + + // A second attempt, on the same page, for anything that failed. A sample that fails in sequence + // and passes immediately afterwards was not broken: it inherited something the sample before it + // left behind, and that is a finding about the component or the renderer rather than about this + // sample. Reported as its own kind, because the fix is somewhere else entirely. + if (problems.length > 0) { + browserProblems.delete(name); + const second = await loadOnce(name, sample); + if (second.length === 0) { + contaminated.push({ name, after: previous, problems }); + console.log(` LEAK ${name}`); + console.log(` failed after ${previous ?? 'nothing'}, passed on its own`); + for (const problem of problems.slice(0, 3)) console.log(` ${problem}`); + previous = name; + continue; + } + problems = second; + } + + if (problems.length === 0) { + passed++; + if (VERBOSE) console.log(` ok ${name}`); + previous = name; + continue; + } + failures.push({ name, problems }); + console.log(` FAIL ${name}`); + // A crash is reported whole: it cannot be reproduced by reading further down the log. + const show = problems.some(p => p.startsWith('the page stopped answering')) ? problems.length : 6; + for (const problem of problems.slice(0, show)) console.log(` ${problem}`); + if (problems.length > show) console.log(` … and ${problems.length - show} more`); + previous = name; +} + +/** + * That the page still has a harness on it, restarting it if not. + * + * A page can go away underneath a run, and the next call then fails with a message about something + * being undefined, which says nothing about the sample being loaded. Recovering here means a run + * survives it and the report says how often it happened. + */ +async function ensureHarness() { + const present = await page.evaluate('window.igSampleHarnessReady === true').catch(() => false); + if (present === true) return; + restarts++; + await openPage(); +} + +/** + * Everything known about a page that stopped answering. + * + * "Target crashed" on its own says nothing anyone can act on. What is available at that moment: the + * stage the harness had reached, whatever the page said before it went, what the browser process wrote + * to its own log, and how much the page was holding beforehand. All of it, because a crash cannot be + * gone back to — the tab is gone and the state with it. + */ +function describeLostPage(name, error, heapBefore) { + const lines = [`the page stopped answering: ${error.message.split('\n')[0]}`]; + if (crashed) lines.push('playwright reported the tab as crashed'); + if (stages.length > 0) { + lines.push(`reached: ${stages.join(' → ')}`); + lines.push(`so it went down during "${stages[stages.length - 1]}"`); + } + lines.push(`the sample: ${describeSample(name)}`); + // The renderer collects rather than throws, so it may well have said what was wrong before the tab + // went. Those never came back with the call; they came out on the console as they happened. + for (const said of rendererSaid.slice(-8)) lines.push(`the renderer reported: ${said}`); + const said = browserProblems.get(name) ?? []; + for (const problem of said.slice(-6)) lines.push(`the page said: ${problem}`); + for (const line of chatter.slice(-8)) lines.push(`the page logged: ${line}`); + if (heapBefore > 0) { + lines.push(`it was holding ${(heapBefore / (1024 * 1024)).toFixed(0)}MB before this sample`); + } + const fromBrowser = browserLog.filter(line => + /error|fatal|out of memory|oom|signal|crash|check failed|abort/i.test(line)); + for (const line of fromBrowser.slice(-8)) lines.push(`the browser said: ${line}`); + if (fromBrowser.length === 0 && browserLog.length > 0) { + for (const line of browserLog.slice(-4)) lines.push(`the browser said: ${line}`); + } + return lines; +} + +/** + * What a sample is, in a line: the components it names and how many of each. + * + * So a crash report stands on its own. Whoever reads it should not have to open the sample to know it + * was a radial chart with four series. + */ +function describeSample(name) { + const sample = parsed.get(name); + if (!sample) return name; + const counts = new Map(); + (function walk(node) { + if (Array.isArray(node)) { node.forEach(walk); return; } + if (!node || typeof node !== 'object') return; + if (typeof node.type === 'string') counts.set(node.type, (counts.get(node.type) ?? 0) + 1); + for (const value of Object.values(node)) { + if (value && typeof value === 'object') walk(value); + } + })(sample.descriptions ?? sample); + const shown = [...counts].sort((a, b) => b[1] - a[1]).slice(0, 6) + .map(([type, count]) => count > 1 ? `${count}× ${type}` : type); + return shown.join(', ') || 'nothing recognisable'; +} + +/** One attempt at a sample, as a list of complaints. Empty means it loaded clean. */ +async function loadOnce(name, sample) { + let result; + crashed = false; + stages = []; + chatter = []; + rendererSaid = []; + const heapBefore = lastHeap; + try { + await ensureHarness(); + result = await page.evaluate( + ([json, timeout]) => window.igSampleHarness.load(json, { timeout }), + [sample, TIMEOUT]); + } catch (e) { + return describeLostPage(name, e, heapBefore); + } + + for (const missing of result.unresolved) { + unresolvedNames.set(missing, (unresolvedNames.get(missing) ?? 0) + 1); + } + for (const problem of result.enumProblems ?? []) { + enumProblems.set(problem, (enumProblems.get(problem) ?? 0) + 1); + } + for (const problem of result.leftBehind ?? []) { + // The teardown of whatever ran before this one complained. Named against that sample, since + // that is whose state it is. + leftBehind.push({ after: previous, problem }); + } + + const heap = await page.evaluate( + '(performance.memory && performance.memory.usedJSHeapSize) || 0').catch(() => 0); + if (heap > 0) { + heapBySample.push({ name, heap }); + lastHeap = heap; + } + + return [ + ...result.thrown.map(t => `threw: ${t.split('\n')[0]}`), + ...result.errors.map(e => `renderer: ${e.split('\n')[0]}`), + ...(result.timedOut ? [`never went idle within ${TIMEOUT}ms`] : []), + ...(result.animationTimedOut ? ['animations never settled'] : []), + ...(browserProblems.get(name) ?? []), + ]; +} + +current = null; + +if (unresolvedNames.size > 0) { + console.log(`\n[runtime] ${unresolvedNames.size} reference(s) went unresolved — neither the ` + + `renderer nor the library had them, so those samples rendered without them:`); + for (const [name, count] of [...unresolvedNames].slice(0, 10)) { + console.log(` ${name} (${count} sample(s))`); + } +} + +if (skipped.length > 0) { + console.log(`\n[runtime] ${skipped.length} sample(s) not checked: they bind to library items that ` + + `need a package this harness does not install`); + for (const entry of skipped.slice(0, 8)) { + console.log(` ${entry.name} — binds to ${entry.needs.slice(0, 3).join(', ')}` + + (entry.needs.length > 3 ? `, and ${entry.needs.length - 3} more` : '')); + } + if (skipped.length > 8) console.log(` … and ${skipped.length - 8} more`); +} + +if (enumProblems.size > 0) { + console.log(`\n[runtime] ${enumProblems.size} value(s) are not members of the enumeration they ` + + `were given to, and were read as the first member:`); + for (const [problem, count] of [...enumProblems].slice(0, 8)) { + console.log(` ${problem}${count > 1 ? ` (${count} sample(s))` : ''}`); + } +} + +if (leftBehind.length > 0) { + console.log(`\n[runtime] ${leftBehind.length} time(s) a sample could not be torn down cleanly:`); + for (const entry of leftBehind.slice(0, 8)) { + console.log(` after ${entry.after ?? 'nothing'}: ${entry.problem}`); + } +} + +if (contaminated.length > 0) { + console.log(`\n[runtime] ${contaminated.length} sample(s) failed in sequence and passed on their ` + + `own — state left behind by what ran before them:`); + for (const entry of contaminated) { + console.log(` ${entry.name}, after ${entry.after ?? 'nothing'}`); + } +} + +if (restarts > 0) { + console.log(`\n[runtime] the page stopped answering ${restarts} time(s) and was restarted — the ` + + `failures above say which sample was loading and how far it had got`); +} + +if (heapBySample.length > 2) { + const first = heapBySample[0]; + const last = heapBySample[heapBySample.length - 1]; + const mb = (bytes) => (bytes / (1024 * 1024)).toFixed(0); + console.log(`\n[runtime] the page held ${mb(first.heap)}MB after the first sample and ` + + `${mb(last.heap)}MB after the last`); + // The biggest single increases, which is where to look when a run does not survive. + const jumps = heapBySample.slice(1) + .map((entry, i) => ({ name: entry.name, grew: entry.heap - heapBySample[i].heap })) + .filter(entry => entry.grew > 8 * 1024 * 1024) + .sort((a, b) => b.grew - a.grew) + .slice(0, 5); + for (const jump of jumps) console.log(` +${mb(jump.grew)}MB at ${jump.name}`); +} + +console.log(`\n${passed} of ${list.length - skipped.length} sample(s) loaded clean, ` + + `${failures.length} failed, ${contaminated.length} only in sequence, ` + + `${skipped.length} not checked`); + +if (KEEP_OPEN) { + console.log('[runtime] --keep-open: the browser stays up. Ctrl-C when done.'); + await new Promise(() => {}); +} +await browser.close(); +await server.close(); +// A sample that only fails in sequence is a failure of the run, not of the sample — but it is still a +// failure: state that leaks between samples is state that leaks between pages in a browser. +process.exit(failures.length > 0 || contaminated.length > 0 ? 1 : 0); diff --git a/package.json b/package.json index bef717d073..8816e879eb 100644 --- a/package.json +++ b/package.json @@ -160,7 +160,10 @@ "check-relative-links:ci": "npm run sync:generated-from-xplat --prefix docs/angular && npm run sync:generated-from-xplat:jp --prefix docs/angular && npm run generate:en --prefix docs/angular && npm run generate:jp --prefix docs/angular && npm run generate:react --prefix docs/xplat && npm run generate:webcomponents --prefix docs/xplat && npm run generate:blazor --prefix docs/xplat && npm run generate:react:jp --prefix docs/xplat && npm run generate:webcomponents:jp --prefix docs/xplat && npm run generate:blazor:jp --prefix docs/xplat && node scripts/check-relative-links-ci.mjs", "check-relative-links:report": "npm run generate:en --prefix docs/angular && npm run generate:jp --prefix docs/angular && npm run generate:react --prefix docs/xplat && npm run generate:webcomponents --prefix docs/xplat && npm run generate:blazor --prefix docs/xplat && npm run generate:react:jp --prefix docs/xplat && npm run generate:webcomponents:jp --prefix docs/xplat && npm run generate:blazor:jp --prefix docs/xplat && node scripts/check-relative-links-ci.mjs --md=reports/relative-links-report.md", "check-html-links": "node scripts/check-html-links.mjs", - "check-html-links:report": "node scripts/check-html-links.mjs --md=reports/html-links-report.md" + "check-html-links:report": "node scripts/check-html-links.mjs --md=reports/html-links-report.md", + "xplat:check:snippets": "node docs/xplat/scripts/check-snippet-schema.mjs", + "xplat:check:emission": "node docs/xplat/scripts/check-snippet-emission.mjs", + "xplat:check:samples": "node docs/xplat/scripts/samples-runtime/run.mjs" }, "dependencies": { "astro-seo-schema": "^6.0.0", diff --git a/src/data/api-map/README.md b/src/data/api-map/README.md index 6476e78df5..a21b7cd16d 100644 --- a/src/data/api-map/README.md +++ b/src/data/api-map/README.md @@ -56,5 +56,5 @@ Consumers: `Grid`, while `IgcDataGrid` has no entry. Prefer taking XAML element names from the real samples over deriving them here. -See [WINUI-UNO-PLAN.md](../../../WINUI-UNO-PLAN.md) §6.3–§6.4 for the full +See `dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/notes/WINUI-UNO-PLAN.md` §6.3–§6.4 for the full resolution design. From 7f12b1bea73dd0b6e9440edb8d2e2f3a01637063 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Thu, 13 Aug 2026 09:47:20 -0400 Subject: [PATCH 059/155] Run the fences the topics publish, in a browser, against the real renderer The harness was loading the samples, which is the other repository's job. What this one publishes is the fences, so that is what it loads: every json-snippet in every topic, wrapped into a page, rendered by the component renderer from the published packages, with the library a fence binds to emitted by the product's own code generating renderer. Where it had drifted from the way the web test host drives the renderer, it now follows it: allowNullForRemove, isProceedOnErrorEnabled, cleanupUnusedOnRender, a member path transformer rather than asking every item to keep its casing, a null description sent for each occupied slot before cleanup, and errors read again after the teardown rather than only after the load. A page that stops answering is restarted, as the host does, and a run that would otherwise sit forever on a flush or an animation gives up and says how far it got. A fence excerpt that draws nothing is only worth reporting when it binds data: a fence that states a component and no data is what an excerpt looks like, so the pixel check now separates the two. Alongside it, check-snippet-casing reports a fence that disagrees with its sample about skipAlterDataCasing. Casing is altered in concert, so a fence emitting from a sample that skips must skip too, or its member paths are re-cased while its data is not, and nothing else notices. The examples clone now only moves onto another branch in CI. A workspace there is made fresh for the run; a directory on someone's machine was put there by them, and fetching over it discards their work without asking. Co-Authored-By: Claude Opus 5 --- ...amples-runtime.yml => snippet-runtime.yml} | 32 +- docs/xplat/scripts/check-snippet-casing.mjs | 120 +++++ docs/xplat/scripts/lib/snippet-toolchain.mjs | 27 +- .../.gitignore | 1 + .../README.md | 0 .../harness.js | 264 +++++++++- .../index.html | 5 +- .../package-lock.json | 0 .../package.json | 0 docs/xplat/scripts/snippet-runtime/png.mjs | 85 ++++ .../run.mjs | 454 ++++++++++++++++-- .../features/chart-data-aggregations.mdx | 15 +- .../features/chart-data-aggregations.mdx | 15 +- 13 files changed, 956 insertions(+), 62 deletions(-) rename .github/workflows/{samples-runtime.yml => snippet-runtime.yml} (72%) create mode 100644 docs/xplat/scripts/check-snippet-casing.mjs rename docs/xplat/scripts/{samples-runtime => snippet-runtime}/.gitignore (65%) rename docs/xplat/scripts/{samples-runtime => snippet-runtime}/README.md (100%) rename docs/xplat/scripts/{samples-runtime => snippet-runtime}/harness.js (58%) rename docs/xplat/scripts/{samples-runtime => snippet-runtime}/index.html (82%) rename docs/xplat/scripts/{samples-runtime => snippet-runtime}/package-lock.json (100%) rename docs/xplat/scripts/{samples-runtime => snippet-runtime}/package.json (100%) create mode 100644 docs/xplat/scripts/snippet-runtime/png.mjs rename docs/xplat/scripts/{samples-runtime => snippet-runtime}/run.mjs (55%) diff --git a/.github/workflows/samples-runtime.yml b/.github/workflows/snippet-runtime.yml similarity index 72% rename from .github/workflows/samples-runtime.yml rename to .github/workflows/snippet-runtime.yml index bd17ec6f45..e1fce8547c 100644 --- a/.github/workflows/samples-runtime.yml +++ b/.github/workflows/snippet-runtime.yml @@ -1,13 +1,13 @@ -name: Samples load check +name: Snippet load check -# Every sample loaded into chromium with the real component renderer and the published -# igniteui-webcomponents-* packages, checked for errors. +# Every json-snippet fence in the topics loaded into chromium with the real component renderer and the +# published igniteui-webcomponents-* packages, checked for errors. # -# The snippet checks prove a definition emits code. They cannot prove the sample it came from works: a -# property can be spelled right, typed right, and still leave a component throwing on load. This is the -# other half, and it is the same script anyone runs locally: +# The other checks prove a fence emits code. They cannot prove what it publishes renders: a property can +# be spelled right, typed right, and still leave a component throwing on load. This is the other half, +# and it is the same script anyone runs locally: # -# node docs/xplat/scripts/samples-runtime/run.mjs +# node docs/xplat/scripts/snippet-runtime/run.mjs # # The packages come from the registry here, which is what a reader of the documentation installs. A # local run can point at a locally built set with --packages= when checking a build before it @@ -20,8 +20,8 @@ on: pull_request: branches: [ master, vnext ] paths: - - 'docs/xplat/scripts/samples-runtime/**' - - '.github/workflows/samples-runtime.yml' + - 'docs/xplat/scripts/snippet-runtime/**' + - '.github/workflows/snippet-runtime.yml' schedule: # Nightly, because what this checks is the published packages against the samples: neither changes # because of anything in this repository, and both change without it. @@ -29,12 +29,12 @@ on: workflow_dispatch: inputs: filter: - description: 'Only samples whose path contains this' + description: 'Only fences whose page path contains this' required: false type: string jobs: - load-every-sample: + load-every-fence: runs-on: ubuntu-latest timeout-minutes: 90 @@ -47,7 +47,7 @@ jobs: with: node-version: 24 - # The library a sample binds to is emitted by the product's own code generating renderer, which + # The library a fence binds to is emitted by the product's own code generating renderer, which # ships in dev-tools rather than in a package. Same build the snippet checks use. - name: Checkout dev-tools uses: actions/checkout@v4 @@ -78,13 +78,13 @@ jobs: node docs/xplat/scripts/ci/resolve-examples.mjs --print-path >> "$GITHUB_OUTPUT" - name: Install the harness and chromium - working-directory: docs/xplat/scripts/samples-runtime + working-directory: docs/xplat/scripts/snippet-runtime run: | npm install --no-audit --no-fund npx playwright install --with-deps chromium - - name: Load every sample - working-directory: docs/xplat/scripts/samples-runtime + - name: Load every fence + working-directory: docs/xplat/scripts/snippet-runtime env: XPLAT_EXAMPLES: ${{ steps.examples.outputs.path }} IG_SNIPPET_API: ${{ github.workspace }}/dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/dist/snippet-api.cjs @@ -96,6 +96,6 @@ jobs: uses: actions/upload-artifact@v4 with: name: emitted-library - path: docs/xplat/scripts/samples-runtime/generated + path: docs/xplat/scripts/snippet-runtime/generated if-no-files-found: ignore retention-days: 7 diff --git a/docs/xplat/scripts/check-snippet-casing.mjs b/docs/xplat/scripts/check-snippet-casing.mjs new file mode 100644 index 0000000000..7e233ba65d --- /dev/null +++ b/docs/xplat/scripts/check-snippet-casing.mjs @@ -0,0 +1,120 @@ +/** + * Whether a fence agrees with its sample about casing. + * + * Casing is altered in concert: the emitter camelises a data item's members and camelises every member + * path in the markup with them. But it only re-cases the properties it knows to be member paths, whose + * value is a plain path — so a member path buried in an expression is left as written: an aggregation's + * "Sum(Sales) as Sales", a filter string, a grouping of "Country". A sample binding through one of those, + * or binding data built in code, declares `skipAlterDataCasing`, and then neither half is altered. + * + * A fence emitting from that sample has to say the same thing. If the sample skips and the fence does + * not, the fence's member paths get camelised while the data does not, and the topic publishes a + * property bound to nothing. Nothing reports that today: the emitter is doing as it was told, and the + * page looks right. + * + * Usage: + * node scripts/check-snippet-casing.mjs [--lang=en,jp] + */ + +import fs from 'fs'; +import path from 'path'; +import { + resolveExamplesRoot, mdxFilesUnder, fencesOf, XPLAT_ROOT, +} from './lib/snippet-toolchain.mjs'; + +const args = process.argv.slice(2); +const LANGS = (args.find(a => a.startsWith('--lang=')) || '--lang=en,jp').slice(7) + .split(',').map(s => s.trim()).filter(Boolean); + +const examples = resolveExamplesRoot({ quiet: true }); + +/** + * Whether a definition binds anything whose casing matters: data, or a path into it. + * + * A member path, a field name, or a reference to a data item. Everything else — a module list, a + * handler, a style — is emitted the same either way. + */ +function bindsData(node) { + if (Array.isArray(node)) return node.some(bindsData); + if (!node || typeof node !== 'object') return false; + for (const [key, value] of Object.entries(node)) { + if (/MemberPath$/.test(key) && typeof value === 'string') return true; + if (key === 'field' && typeof value === 'string') return true; + if (/^data[A-Za-z]*Ref$/.test(key) && typeof value === 'string') return true; + if (typeof value === 'object' && bindsData(value)) return true; + } + return false; +} + +/** What a sample says about casing, or null when there is no such sample. */ +function sampleSkipsCasing(source) { + const file = path.join(examples, 'samples', source.replace(/^\//, '') + '.json'); + if (!fs.existsSync(file)) return null; + try { + return JSON.parse(fs.readFileSync(file, 'utf8')).skipAlterDataCasing === true; + } catch { + return null; + } +} + +const problems = []; +let checked = 0; +let missingSamples = 0; + +for (const lang of LANGS) { + const dir = path.join(XPLAT_ROOT, 'src', 'content', lang, 'components'); + if (!fs.existsSync(dir)) continue; + for (const file of mdxFilesUnder(dir)) { + const text = fs.readFileSync(file, 'utf8'); + if (!text.includes('```json-snippet')) continue; + const where = path.relative(path.join(XPLAT_ROOT, 'src', 'content'), file); + for (const fence of fencesOf(text)) { + const source = fence.attrs.source; + if (!source || !fence.body.trim()) continue; + const sampleSkips = sampleSkipsCasing(source); + if (sampleSkips === null) { missingSamples++; continue; } + + let parsed; + try { + parsed = JSON.parse(fence.body); + } catch { + continue; // the schema check reports this properly + } + for (const one of Array.isArray(parsed) ? parsed : [parsed]) { + // Only a fence that binds data can be affected. A fence that emits a module list and a + // registration call, or a handler body, names no member path and no data — casing has + // nothing to act on there, and reporting it would be noise. + if (!bindsData(one)) continue; + checked++; + const fenceSkips = one && one.skipAlterDataCasing === true; + if (sampleSkips === fenceSkips) continue; + problems.push({ + where: `${where}:${fence.line}`, + source, + message: sampleSkips + ? 'the sample sets skipAlterDataCasing and the fence does not — the emitted ' + + 'member paths will be re-cased while the data is not' + : 'the fence sets skipAlterDataCasing and the sample does not — the emitted ' + + 'data keeps its casing while the sample\'s does not', + }); + } + } + } +} + +if (missingSamples > 0) { + console.log(`[casing] ${missingSamples} fence(s) name a sample that is not in this checkout`); +} + +if (problems.length === 0) { + console.log(`\n${checked} fence(s) agree with their sample about casing`); + process.exit(0); +} + +console.error(''); +for (const problem of problems) { + console.error(`${problem.where} (source ${problem.source})`); + console.error(` ${problem.message}`); +} +console.error(`\n${problems.length} fence(s) disagree with their sample, of ${checked} checked`); +process.exit(1); diff --git a/docs/xplat/scripts/lib/snippet-toolchain.mjs b/docs/xplat/scripts/lib/snippet-toolchain.mjs index 3c33c9fb54..867fa9a456 100644 --- a/docs/xplat/scripts/lib/snippet-toolchain.mjs +++ b/docs/xplat/scripts/lib/snippet-toolchain.mjs @@ -10,6 +10,9 @@ * 2. a peer checkout beside this repository, which is the ordinary local case * 3. a package under node_modules, which is how CI will work once the emitter ships in one * + * A clone is only moved onto another branch when this is CI. A workspace there is made fresh for the + * run; a directory on someone's machine is theirs. + * * Nothing here builds anything. If the emitter is not built, the message says which command builds * it — guessing and running a build inside a check would hide why a run took four minutes. */ @@ -138,19 +141,33 @@ export function resolveExamplesRoot({ quiet = false } = {}) { } const clone = path.join(CACHE_DIR, 'igniteui-xplat-examples'); - const branch = resolveExamplesBranch(say); if (fs.existsSync(path.join(clone, '.git'))) { + // Moving an existing checkout to another branch is a thing to do in CI and nowhere else. A + // workspace there is made fresh for the run, so the branch has to be resolved every time; on a + // machine, whatever is in that directory is there because someone put it there — a worktree of + // their own clone, a branch under test — and fetching over it discards their work without asking. + if (!IN_CI) { + say(`using the checkout already at ${path.relative(REPO_ROOT, clone)}, as it stands`); + return clone; + } + const branch = resolveExamplesBranch(say); say(`updating the cached clone to ${branch}`); git(clone, ['fetch', '--depth', '1', 'origin', branch]); git(clone, ['checkout', '--force', 'FETCH_HEAD']); - } else { - say(`cloning ${branch} into ${path.relative(REPO_ROOT, clone)}`); - fs.mkdirSync(CACHE_DIR, { recursive: true }); - git(REPO_ROOT, ['clone', '--depth', '1', '--branch', branch, EXAMPLES_URL, clone]); + return clone; } + + const branch = resolveExamplesBranch(say); + say(`cloning ${branch} into ${path.relative(REPO_ROOT, clone)}`); + fs.mkdirSync(CACHE_DIR, { recursive: true }); + git(REPO_ROOT, ['clone', '--depth', '1', '--branch', branch, EXAMPLES_URL, clone]); return clone; } +/** Whether this is a build rather than someone's machine. */ +const IN_CI = process.env.CI === 'true' || process.env.GITHUB_ACTIONS === 'true' || + process.env.TF_BUILD === 'True'; + const EXAMPLES_URL = process.env.XPLAT_EXAMPLES_URL ?? 'https://github.com/IgniteUI/igniteui-xplat-examples.git'; diff --git a/docs/xplat/scripts/samples-runtime/.gitignore b/docs/xplat/scripts/snippet-runtime/.gitignore similarity index 65% rename from docs/xplat/scripts/samples-runtime/.gitignore rename to docs/xplat/scripts/snippet-runtime/.gitignore index 3a2b6db979..7d935c0bad 100644 --- a/docs/xplat/scripts/samples-runtime/.gitignore +++ b/docs/xplat/scripts/snippet-runtime/.gitignore @@ -1,2 +1,3 @@ node_modules/ generated/ +blank-shots/ diff --git a/docs/xplat/scripts/samples-runtime/README.md b/docs/xplat/scripts/snippet-runtime/README.md similarity index 100% rename from docs/xplat/scripts/samples-runtime/README.md rename to docs/xplat/scripts/snippet-runtime/README.md diff --git a/docs/xplat/scripts/samples-runtime/harness.js b/docs/xplat/scripts/snippet-runtime/harness.js similarity index 58% rename from docs/xplat/scripts/samples-runtime/harness.js rename to docs/xplat/scripts/snippet-runtime/harness.js index d5d2a5993c..5465f6fb07 100644 --- a/docs/xplat/scripts/samples-runtime/harness.js +++ b/docs/xplat/scripts/snippet-runtime/harness.js @@ -69,6 +69,131 @@ const enumProblems = []; util.__tolerant = true; })(); +/** + * Canvases asked for at a size that cannot be meant. + * + * A tab dies from running out of memory, and the memory a chart uses is mostly not the JS heap: it is + * the bitmap behind a canvas, four bytes a pixel. A width computed from a bad number — a NaN, an extent + * that came out as an axis's whole range — asks the browser for gigabytes in one call, and the process + * is gone before anything can report it. Watched here, at the setter, so the size is known even when the + * allocation is what kills the page. + */ +const bigCanvases = []; +(function watchCanvasSizes() { + const limit = 8192; // beyond any real component on a 1280×900 page + for (const side of ['width', 'height']) { + const original = Object.getOwnPropertyDescriptor(HTMLCanvasElement.prototype, side); + if (!original || !original.set) continue; + Object.defineProperty(HTMLCanvasElement.prototype, side, { + configurable: true, + enumerable: original.enumerable, + get: original.get, + set(value) { + if (!Number.isFinite(value) || value > limit) { + const note = `canvas ${side} set to ${value}`; + bigCanvases.push(note); + console.debug(`[canvas] ${note}`); + } + original.set.call(this, value); + }, + }); + } +})(); + +/** + * Where memory goes when it does not go on the JS heap. + * + * usedJSHeapSize counts objects, and a tab can die at four gigabytes with a heap that never passed a + * hundred megabytes: the bytes behind a typed array are external to the heap, and so are DOM nodes. A + * crash cannot be gone back to, so the accounting has to be running before it happens — a counter and a + * threshold, said out loud as it crosses each one. + */ +const externalBytes = { arrays: 0, arrayCount: 0, nodes: 0 }; +let announcedAt = 0; +(function watchExternalMemory() { + const announce = () => { + const mb = Math.floor(externalBytes.arrays / (1024 * 1024)); + if (mb < announcedAt + 256) return; + announcedAt = mb - (mb % 256); + console.debug(`[memory] ${announcedAt}MB in ${externalBytes.arrayCount} typed array(s), ` + + `${externalBytes.nodes} node(s) made`); + }; + const widths = { Float64Array: 8, Float32Array: 4, Int32Array: 4, Uint32Array: 4, Int16Array: 2, + Uint16Array: 2, Int8Array: 1, Uint8Array: 1, Uint8ClampedArray: 1 }; + for (const [name, width] of Object.entries(widths)) { + const Original = window[name]; + if (typeof Original !== 'function') continue; + window[name] = new Proxy(Original, { + construct(target, argv, newTarget) { + const first = argv[0]; + const length = typeof first === 'number' ? first + : (first && typeof first.length === 'number' ? first.length : 0); + externalBytes.arrays += length * width; + externalBytes.arrayCount++; + announce(); + return Reflect.construct(target, argv, newTarget); + }, + }); + } + const originalNS = document.createElementNS.bind(document); + document.createElementNS = function (ns, tag, options) { + externalBytes.nodes++; + if (externalBytes.nodes % 5000 === 0) { + console.debug(`[memory] ${externalBytes.nodes} node(s) made`); + } + return originalNS(ns, tag, options); + }; +})(); + +/** + * The extremes of what gets drawn. + * + * A canvas of ordinary size can still take a page down: a path whose coordinates are in the millions + * asks the rasteriser to fill an area that size, and that allocation is neither the JS heap nor the + * canvas's own bitmap. Nothing in the page reports it, so the coordinates are watched as they are + * given — the largest one seen is the difference between "a component is drawing wrongly" and "a + * component is allocating". + */ +const drawn = { maxAbs: 0, calls: 0 }; +(function watchDrawnCoordinates() { + const proto = typeof CanvasRenderingContext2D === 'function' + ? CanvasRenderingContext2D.prototype : null; + if (!proto) return; + let announcedSize = 1e6; + let announcedCalls = 0; + const note = (...values) => { + drawn.calls++; + // Volume as well as size: a million small segments is as much memory as one enormous one, and a + // count that keeps climbing is the shape of a loop that does not end. + if (drawn.calls - announcedCalls >= 250000) { + announcedCalls = drawn.calls; + console.debug(`[drawn] ${drawn.calls} drawing call(s), largest coordinate ` + + `${drawn.maxAbs.toExponential(2)}`); + } + for (const value of values) { + const size = Math.abs(Number(value)); + if (!Number.isFinite(size)) { + console.debug('[drawn] a coordinate that is not a number'); + continue; + } + if (size > drawn.maxAbs) drawn.maxAbs = size; + if (size > announcedSize) { + announcedSize = size * 10; + console.debug(`[drawn] a coordinate of ${size.toExponential(2)}`); + } + } + }; + for (const [name, count] of [['moveTo', 2], ['lineTo', 2], ['rect', 4], ['arc', 3], + ['bezierCurveTo', 6], ['quadraticCurveTo', 4]]) { + const original = proto[name]; + if (typeof original !== 'function') continue; + proto[name] = function (...argv) { + note(...argv.slice(0, count)); + return original.apply(this, argv); + }; + } +})(); + const registered = { descriptions: 0, modules: 0, failures: [] }; let registering = 0; @@ -132,6 +257,11 @@ for (const each of [renderer, editorRenderer]) { // Unused references are cleaned up as it renders, so tearing a sample down also unregisters what it // registered — the axis a chart declared does not linger to be found by the next sample. each.cleanupUnusedOnRender = true; + // On, because the host is always driven with it on: the test client sets allowNullForRemove in every + // page it sends, and the dashboard tile sets it on its own renderer. A description given as null then + // removes what was there — which is also how a container is emptied without going behind the + // renderer's back — rather than being passed over. + each.allowNullForRemove = true; registerDescriptions(each.context); } registerModules(); @@ -176,6 +306,35 @@ CodeGenHelper.findByNameLookup = (name) => { return LibraryManager.instance.hasItem(name) ? LibraryManager.instance.getInstance(name) : null; }; +/** + * Member paths, altered in concert with the data the library emitted. + * + * The emitter alters casing on both halves at once: it camelises a data item's members and camelises + * every member path in the markup with them, so a generated sample matches itself. Here the data comes + * from that same emitter but the paths come from the sample's own JSON, where they are written as the + * description declares them — so this side has to be altered too, or a series binds to nothing and + * every value is missing. + * + * A sample that declares skipAlterDataCasing has bound something that cannot be re-cased, and its data + * was emitted unaltered to match; its paths are left exactly as written. + * + * Installing a transformer is also what turns transforming on: on the web platforms the renderer does + * not consider member path transforms at all unless one is supplied. + */ +let keepCasingAsWritten = false; + +function alterMemberPath(path) { + // "-" is not a member character, as the test hosts have it. + const value = String(path ?? '').split('-').join('_'); + if (keepCasingAsWritten) return value; + return value.split('.').map(segment => /^[A-Za-z]/.test(segment) + ? segment.substring(0, 1).toLowerCase() + segment.substring(1) + : segment).join('.'); +} + +renderer.addMemberPathTransformer(alterMemberPath); +editorRenderer.addMemberPathTransformer(alterMemberPath); + /** * What a reference in a sample resolves to. * @@ -231,6 +390,28 @@ const ANIMATION_TIMEOUT = 3000; * cannot be torn down is the next sample's problem and worth naming as this one's. */ function cleanupPage() { + // First the removal the client sends: every slot that has something in it, described as null. + // + // "Slots whose control was removed from the layout are sent as null descriptions, which the renderer + // treats as a removal request (and destroys the control) when AllowNullForRemove is enabled" — so a + // control is destroyed rather than merely unrendered, which is a different thing from tearing the + // container down and may leave less behind. Through the main renderer, because that is the one a page + // is loaded into. + const occupied = SLOTS.filter(slot => { + const container = containerFor(slot); + return container && container.firstElementChild; + }); + if (occupied.length > 0) { + const descriptions = {}; + for (const slot of occupied) descriptions[slot] = null; + try { + renderer.loadJson(JSON.stringify({ allowNullForRemove: true, descriptions }), containerFor); + } catch (e) { + teardownProblems.push(`removing ${occupied.join(', ')}: ${e && e.message}`); + } + } + + // Then the page level teardown, which is what the client's cleanupPage message runs. for (const slot of SLOTS) { const container = containerFor(slot); if (!container) continue; @@ -241,7 +422,11 @@ function cleanupPage() { teardownProblems.push(`${slot}: ${e && e.message}`); } } - container.innerHTML = ''; + // Deliberately not emptying the container afterwards. The host does not, and it is the + // renderer's business what is in there: removing the elements behind its back leaves it + // holding references to nodes that are no longer in the document, which is a worse state than + // whatever the teardown left. Anything the teardown does not remove is a finding, not + // something for this harness to tidy away. } } @@ -283,11 +468,25 @@ function stage(what) { async function load(sample, options) { const timeout = (options && options.timeout) || 8000; + // Whether this sample's data was emitted unaltered, which decides whether its paths are altered. + keepCasingAsWritten = !!(sample && sample.skipAlterDataCasing === true); + teardownProblems = []; enumProblems.length = 0; + bigCanvases.length = 0; + drawn.maxAbs = 0; + drawn.calls = 0; + externalBytes.arrays = 0; + externalBytes.arrayCount = 0; + externalBytes.nodes = 0; + announcedAt = 0; stage('cleanup'); cleanupPage(); - const leftBehind = teardownProblems.slice(); + // What the renderers objected to while tearing the previous sample down. Collected here rather than + // left for the next drain, because these belong to whatever was on the page before this sample — + // a component that cannot be removed cleanly is the finding, and it is not this sample's fault. + const leftBehind = teardownProblems.concat(collectErrors()); + stage('cleaned'); renderer.clearErrors(); editorRenderer.clearErrors(); unresolved.clear(); @@ -356,6 +555,33 @@ async function load(sample, options) { } stage('done'); + // The handlers a sample lists to run once it is up, invoked the way the host invokes them: the + // library gives the method, bound to its holder, and a sample whose configuration lives in one of + // these renders nothing without it. + const initialisers = []; + if (thrown.length === 0) { + for (const list of ['onInit', 'onViewInit']) { + const value = sample && sample[list]; + const names = typeof value === 'string' ? [value] : Array.isArray(value) ? value : []; + for (const name of names) { + if (!LibraryManager.instance.hasItem(name)) { + initialisers.push(`${name} is not in the library`); + continue; + } + try { + const item = LibraryManager.instance.getInstance(name); + if (typeof item === 'function') item(); + } catch (e) { + initialisers.push(`${name} threw: ${e && e.message}`); + } + } + } + if (initialisers.length === 0 && (sample.onInit || sample.onViewInit)) { + // Something ran, so let it settle before looking at the page. + await flushAll(); + } + } + const afterIdle = collectErrors(); // Named references the renderer never got a value for: its own account of what is missing, rather @@ -372,6 +598,10 @@ async function load(sample, options) { timedOut, animationTimedOut, enumProblems: enumProblems.slice(), + initialisers, + bigCanvases: bigCanvases.slice(), + drawn: { ...drawn }, + externalBytes: { ...externalBytes }, unresolved: [...unresolved, ...missingRefs.filter(name => !unresolved.has(name))], }; } @@ -398,8 +628,38 @@ function collectErrors() { return found; } +/** + * The types in a sample that this page has no description for. + * + * A description module comes from a package, so a sample naming a component whose package is not + * installed cannot be checked here — and reporting it as a failure says the sample is broken when the + * truth is that the harness does not cover it. The renderer's own context is asked, rather than a list + * of families kept by hand, so installing another package changes the answer without changing this. + */ +function unknownTypes(sample) { + const found = new Set(); + const context = renderer.context; + (function walk(node) { + if (Array.isArray(node)) { node.forEach(walk); return; } + if (!node || typeof node !== 'object') return; + if (typeof node.type === 'string') { + try { + const properties = context.getAllProperties(node.type); + if (!properties || properties.length === 0) found.add(node.type); + } catch { + found.add(node.type); + } + } + for (const value of Object.values(node)) { + if (value && typeof value === 'object') walk(value); + } + })(sample.descriptions ?? sample); + return [...found]; +} + window.igSampleHarness = { load, + unknownTypes, registered: () => registered, itemCount: () => LibraryManager.instance.itemNames().length, }; diff --git a/docs/xplat/scripts/samples-runtime/index.html b/docs/xplat/scripts/snippet-runtime/index.html similarity index 82% rename from docs/xplat/scripts/samples-runtime/index.html rename to docs/xplat/scripts/snippet-runtime/index.html index 8ce0577c5d..196e025bcf 100644 --- a/docs/xplat/scripts/samples-runtime/index.html +++ b/docs/xplat/scripts/snippet-runtime/index.html @@ -4,7 +4,10 @@ sample load check +
+
+

Published page review

+

${PLATFORM} · ${LANG}

+

What this branch changes in the pages a reader gets. +${esc(BASELINE)} (${baseCommit}) +→ this branch (${headCommit}).

+
+ +
+
${changed.length}changed
+
${same}identical
+
${directives.length}directive only
+
${added.length}added
+
${removed.length}removed
+
+${totals.added} −${totals.removed}lines
+
${lostTotal}comments lost
+
+ +${lostTotal ? `
+

Comments the page no longer carries${lostTotal}

+
+

Each of these is a decision. A comment explaining code inside a handler belongs in that +handler's source in the examples checkout, where it is emitted with the code. One explaining +generated code has no such home and needs a $comment on the element +it describes. An elision marker is already covered by the ... delimiter +between channel names. Some are simply obsolete.

+
+
${auditBody}
+
` : ''} + +
+

Diffs${changed.length}

+
+

Largest first. A removed line is not automatically a regression — the hand written per platform +blocks had drifted, and collapsing them to one definition corrected that by construction. Rows with a +comment count are marked.

+
+
${diffBody}
+
+ +${plainList('Added', added)} +${plainList('Removed', removed)} +${plainList('Directive only — the apiTerms line and nothing else', directives.map(r => r.rel))} +
`; +} diff --git a/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx b/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx index 1f06e239b5..665ee3c397 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-performance.mdx @@ -206,6 +206,7 @@ This code snippet shows how to remove markers from the {Platform} charts. ```json-snippet channel="code" { + "$comment": "on CategoryChart or FinancialChart", "type": "CategoryChart", "markerTypes": [ "None" ] } @@ -215,7 +216,7 @@ This code snippet shows how to remove markers from the {Platform} charts. { "type": "DataChart", "series": [ - { "type": "LineSeries", "markerType": "None" } + { "$comment": "on LineSeries of DataChart", "type": "LineSeries", "markerType": "None" } ] } ``` @@ -229,6 +230,7 @@ This code snippet shows how to decrease resolution in the {Platform} charts. ```json-snippet channel="code" { + "$comment": "on CategoryChart or FinancialChart", "type": "CategoryChart", "resolution": 10 } @@ -236,6 +238,7 @@ This code snippet shows how to decrease resolution in the {Platform} charts. ```json-snippet channel="code" { + "$comment": "on LineSeries of DataChart", "type": "DataChart", "series": [ { "type": "LineSeries", "resolution": 10 } diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx index c666e9e56f..29bb93676b 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-performance.mdx @@ -208,6 +208,7 @@ export class MultiDataSources { ```json-snippet channel="code" { + "$comment": "on CategoryChart or FinancialChart", "type": "CategoryChart", "markerTypes": [ "None" ] } @@ -217,7 +218,7 @@ export class MultiDataSources { { "type": "DataChart", "series": [ - { "type": "LineSeries", "markerType": "None" } + { "$comment": "on LineSeries of DataChart", "type": "LineSeries", "markerType": "None" } ] } ``` @@ -230,6 +231,7 @@ export class MultiDataSources { ```json-snippet channel="code" { + "$comment": "on CategoryChart or FinancialChart", "type": "CategoryChart", "resolution": 10 } @@ -237,6 +239,7 @@ export class MultiDataSources { ```json-snippet channel="code" { + "$comment": "on LineSeries of DataChart", "type": "DataChart", "series": [ { "type": "LineSeries", "resolution": 10 } diff --git a/src/data/api-map/README.md b/src/data/api-map/README.md index a21b7cd16d..498a1ff109 100644 --- a/src/data/api-map/README.md +++ b/src/data/api-map/README.md @@ -8,6 +8,35 @@ platform's public names, for both types and members. of truth for the mapping. They are read-only inputs — regenerate from a product build rather than hand-editing. +## Layout + +One directory per platform, holding the maps for that platform. The web maps come from the +TypeScript translators; `WinUI/` and `Uno/` come from the ApiGenerator, which now writes a map +wherever it runs. `WPF/` is sparse: those projects are legacy non-SDK and cannot be loaded on macOS, +so their maps need a Windows or CI run. + +`Shared/` is not a platform. The loader reads every directory here and keys forward answers by the +`platform` field on each name, so a file whose entries name several platforms belongs somewhere that +does not claim to be one of them. + +## Overrides + +A file ending `.apiMap.overrides.json` carries the same schema and is read after the maps, so what it +declares sits on top of them. Two things need it: + +- **API suppressed from generation and then exposed by hand.** A generator maps what it generated, so + a member carrying `[TSSuppressWidgetMember]` is absent even though the package ships it — + `ShapefileRecord.Points` is in every web package as `points` and in no generated map. +- **A canonical surface altered by `#if` or a partial class**, for a component the ApiGenerator does + not run for. The canonical name is the TINYCLR one, and the platform's spelling is recorded as a + rename off it. + +Say in the entry's `_comment` where the hand-written exposure actually lives. That is the only +evidence the name is real, and an entry whose name later starts generating normally should be deleted +rather than left to contradict the map. + +See [API-TERMS.md](../../../docs/xplat/API-TERMS.md) for how these are read. + ## Shape ```jsonc From a60300a6205a8846ec4b6ac34af8c493256c082d Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 18 Aug 2026 07:18:03 -0400 Subject: [PATCH 076/155] Interleave a comment above the property it explains The renderer's own $comment writes a remark ahead of an element, and because elements nest, one on a series already lands mid-block. What it cannot do is annotate a single property, and that is what a hand written block used most: a line saying what the next assignment is for. The chart performance topic had one above each of four blocks saying which chart it applied to, and collapsing the blocks took it with them. $comments is keyed by property, so it cannot be confused with the per platform splay a sidecar value may itself be, and each entry lands above the line that property produced, in the platform's own comment syntax. Anchoring is by assignment rather than by mention: without that a comment on resolution lands above the line declaring the chart, because the emitted variable name contains the property name too. An entry matching nothing is reported rather than dropped, since a property renamed out from under its comment would otherwise take the explanation with it silently. Two other things a block was losing: An elision now separates a region's field declarations from the statements below them. A handler that requires a supporting item is emitted with the field holding it -- a class member -- followed by the handler's body, which is statements inside a method. Those are excerpts from two parts of a file, which is what the ... between channel names marks, but here they arrive inside one region and that delimiter has nothing to sit between. Unmarked, the block reads as one run of statements and a reader copying it puts a field declaration in the middle of a method. And a region is dedented rather than trimmed. trim() strips whitespace from the ends of the string, which is the first line's indentation and no other line's, so a method lifted out of a class emitted with its signature flush and its body still indented -- and with a doc comment above the signature, the comment went flush while the method stayed indented under it. The sidecar table said $comment was never emitted, which is backwards; it also now says where each kind of comment belongs, because a comment explaining code inside a handler belongs in that handler's source and not in a sidecar at all. Co-Authored-By: Claude Opus 5 --- docs/xplat/JSON-SNIPPETS.md | 9 +- docs/xplat/scripts/README.md | 32 +- docs/xplat/scripts/lib/snippet-emit.mjs | 219 +++++++++- docs/xplat/scripts/lib/snippet-schema.mjs | 40 ++ docs/xplat/scripts/review-platform-diff.mjs | 407 ------------------ .../charts/features/chart-performance.mdx | 2 +- .../charts/features/chart-performance.mdx | 2 +- 7 files changed, 270 insertions(+), 441 deletions(-) delete mode 100644 docs/xplat/scripts/review-platform-diff.mjs diff --git a/docs/xplat/JSON-SNIPPETS.md b/docs/xplat/JSON-SNIPPETS.md index 56a5d270dd..00fe361b53 100644 --- a/docs/xplat/JSON-SNIPPETS.md +++ b/docs/xplat/JSON-SNIPPETS.md @@ -244,11 +244,18 @@ labelled with that channel's language. | sidecar | meaning | |---|---| -| `$comment` | a note for whoever edits the definition. Never emitted. | +| `$comment` | a remark emitted **ahead of this element**, in the platform's own comment syntax. Give the text alone — `"loads the shapes"`, not `"// loads the shapes"`. Because elements nest, one on a series lands mid-block, above that series' code. | +| `$comments` | the same, but keyed by property, so the remark lands above the line that one property produced: `"$comments": { "markerTypes": "on CategoryChart or FinancialChart" }`. An entry matching no emitted line is reported rather than dropped. | | `$styleOptions` | see [Style options](#style-options) | | `$setInCode` | names the platforms where this property is set in code rather than markup: `"$setInCode": { "dataSourceRef": ["webComponents"] }` | | `$assignInCode` | the same, for a property assigned rather than set | +A comment explaining code **inside a handler** does not belong in a sidecar at all — put it in the +handler's own source in the examples checkout, where it is emitted along with the code it explains. +The sidecars are for the part of a block the renderer generates, which has no other home. An +elision between two excerpts is a third thing again: that is the `...` delimiter between channel +names, and between a class field and the statements under it the emitter writes one itself. + --- ## Style options diff --git a/docs/xplat/scripts/README.md b/docs/xplat/scripts/README.md index 764228b324..df04b9e870 100644 --- a/docs/xplat/scripts/README.md +++ b/docs/xplat/scripts/README.md @@ -13,7 +13,6 @@ snippet validators that are run by hand. | `check-snippet-casing.mjs` | a fence agrees with its sample about member casing | by hand | | `check-snippet-code-channels.mjs` | a markup fence carries the code the markup could not say | by hand | | `check-api-map-accuracy.mjs`, `resolve-api-links.mjs`, `fix-api-link-attrs.mjs` | API links | by hand | -| `review-platform-diff.mjs` | the published pages this branch changes, for one platform, as a diff | by hand | | `lib/`, `platform-blocks.mjs` | shared by the above | | | `snippet-emitter/` | the emitter, bundled from the published packages | CI builds it | | `ci/` | what the workflows call directly | | @@ -22,28 +21,6 @@ See [JSON-SNIPPETS.md](../JSON-SNIPPETS.md) for what a json-snippet is and how t [API-TERMS.md](../API-TERMS.md) for how a backticked API name in prose becomes the reader's own spelling. -## Reviewing what a change does to the pages - -A topic is authored once and emitted per platform, so reading the source does not tell you what a -reader ends up with. `review-platform-diff.mjs` generates both sides — the branch and whatever it is -branched from — and diffs the output: - -``` -node scripts/review-platform-diff.mjs --platform=WebComponents --lang=en --html -``` - -It writes a summary, one `.diff` holding every hunk, a `lost-comments.json`, and with `--html` a page -with the whole review in it. `--baseline=` picks what to compare against (`origin/vnext` by default) -and `--reuse` skips regenerating when the output is already on disk. - -Changes are separated by the judgement they need: **comment** for explanation the emitted page no -longer carries, **code** inside a fence, **prose** outside one. A topic whose only difference is its -`apiTerms` line is set aside as directive-only — without that, every topic differs and the ones that -matter are buried. - -A removed line is not automatically a regression. The hand written per platform blocks had drifted, -and collapsing them to one definition corrected that by construction. - ## Collapsing a topic into snippets The tools that *do* the collapse — planning it, mirroring it into the Japanese copy, comparing what a @@ -55,8 +32,13 @@ the emitter they belong to: dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike/collapse-tools/ ``` -That folder's README says what each one is. They read this checkout and several of them write it, so -they find it beside `dev-tools` or take `XPLAT_DOCS_ROOT`: +That folder's README says what each one is. `review-platform-pages.mjs` is the one to reach for when +judging a collapse: it generates a platform's pages from this branch and from whatever it is branched +from, resolves the `PlatformBlock`s on both sides so a reader of that platform is what is compared, +and diffs the result. + +They read this checkout and several of them write it, so they find it beside `dev-tools` or take +`XPLAT_DOCS_ROOT`: ```sh cd dev-tools/XPlatform/Main/Tests/XSharpTesting/SnippetEmitterSpike diff --git a/docs/xplat/scripts/lib/snippet-emit.mjs b/docs/xplat/scripts/lib/snippet-emit.mjs index f875ff4480..9df9b4f29e 100644 --- a/docs/xplat/scripts/lib/snippet-emit.mjs +++ b/docs/xplat/scripts/lib/snippet-emit.mjs @@ -63,6 +63,97 @@ export function hasInclusionMarker(node) { return false; } +/** + * How each platform writes a comment, in code and in the markup it emits. + * + * Only needed for `$comments`. The renderer writes `$comment` itself and knows each platform's + * syntax; this is the same knowledge, needed here because a comment anchored to a property is placed + * after the renderer has finished. + * + * The markup column is not decoration: an HTML comment inside JSX is rendered text rather than a + * comment, so getting it wrong puts the explanation on the page as content. + */ +const COMMENT_SYNTAX = { + Angular: { code: ['//', ''], markup: [''] }, + WebComponents: { code: ['//', ''], markup: [''] }, + React: { code: ['//', ''], markup: ['{/*', '*/}'] }, + Blazor: { code: ['//', ''], markup: ['@*', '*@'] }, + WPF: { code: ['//', ''], markup: [''] }, + WinUI: { code: ['//', ''], markup: [''] }, + Uno: { code: ['//', ''], markup: [''] }, +}; + +/** + * The lines one `$comments` entry contributes for the platform being emitted. + * + * Accepts the shapes every sidecar accepts — one line, several, or either splayed by platform — so an + * explanation that only applies to some platforms says so the way a marker does. A splay naming no + * key for this platform contributes nothing, which is how a comment is made platform specific. + */ +export function commentLinesFor(value, platformKey) { + if (value == null) return []; + if (typeof value === 'string') return value.split('\n'); + if (Array.isArray(value)) return value.flatMap(one => commentLinesFor(one, platformKey)); + if (typeof value === 'object') { + return Object.hasOwn(value, platformKey) ? commentLinesFor(value[platformKey], platformKey) : []; + } + return []; +} + +/** + * Whether an emitted line is the one a property's comment belongs above. + * + * Matched on the name with everything but letters and digits removed, because the same property is + * `markerTypes` in TypeScript, `MarkerTypes` in C# and `marker-types` in markup, while the comment is + * written once against the name the definition uses. + * + * The line also has to be an assignment of that property rather than any mention of it: without that, + * a comment on `resolution` lands above the line that declares the chart the property belongs to, + * because the emitted variable name contains the type name and often the property name too. + */ +function assignsProperty(line, property) { + const flat = s => s.toLowerCase().replace(/[^a-z0-9]/g, ''); + const target = flat(property); + // Code: `chart.markerTypes = …`, `chart.markerTypes.add(…)`. Markup: `marker-types="…"`. + const match = /^\s*(?:[\w.]*\.)?([\w-]+)\s*(?:=|\.[\w-]+\s*\(|:)/.exec(line) + ?? /^\s*([\w-]+)\s*=\s*["'{]/.exec(line); + return match !== null && flat(match[1]) === target; +} + +/** + * A region as its own block, flush left. + * + * The obvious `.trim()` is wrong here and was: it strips the leading whitespace of the *string*, + * which is the first line's indentation and no other line's. A method lifted out of a class then + * emits with its signature flush and its body still indented four spaces — and where a doc comment + * sits above the signature, the comment goes flush and the signature stays indented, which is what a + * reader sees first. + * + * Taking the smallest indentation any line has and removing that from all of them keeps the block's + * internal shape while moving it out of whatever it was nested in. + */ +function dedent(text) { + const lines = String(text).replace(/\s+$/, '').split('\n'); + while (lines.length > 0 && lines[0].trim() === '') lines.shift(); + if (lines.length === 0) return ''; + + const indentOf = one => /^[ \t]*/.exec(one)[0].length; + const body = lines.slice(1).filter(one => one.trim() !== ''); + + // The renderer hands back a region whose first line is already flush while every other line still + // carries the indentation it had in the file. A minimum taken across all of them is then zero and + // nothing moves — which is how a doc comment ends up against the margin with the method it + // documents indented beneath it. So the first line is judged on its own, and when it is already + // flush the rest are brought up to meet it. + const flushHead = indentOf(lines[0]) === 0 && body.length > 0; + const measured = flushHead ? body : lines.filter(one => one.trim() !== ''); + const strip = Math.min(...measured.map(indentOf)); + if (strip === 0) return lines.join('\n'); + + return [flushHead ? lines[0] : lines[0].slice(strip), + ...lines.slice(1).map(one => one.slice(strip))].join('\n'); +} + /** Every marker string a sidecar value holds, whichever of the three shapes it is written in. */ function markerStrings(value) { if (typeof value === 'string') return [value]; @@ -78,7 +169,7 @@ function markerStrings(value) { * name something that is not a handler. Callers that cannot answer say so by leaving it out, and * then `item=` means what it always meant: one of the handlers the sample runs. */ -export function fenceEmitter({ api, platform, examplesRoot, styleDefaults, knownItem = null }) { +export function fenceEmitter({ api, platform, examplesRoot, styleDefaults, knownItem = null, onWarn = () => {} }) { /** * The definition with all but the named items left out of its init lists. @@ -205,7 +296,7 @@ export function fenceEmitter({ api, platform, examplesRoot, styleDefaults, known pending = part; continue; } - const content = emitChannel(json, part, only).trim(); + const content = dedent(emitChannel(json, part, only)); if (content === '') continue; if (out !== '') { out += '\n'; @@ -351,6 +442,112 @@ export function fenceEmitter({ api, platform, examplesRoot, styleDefaults, known * beside it. Empty content means this platform writes nothing here, which is not an error — a * fence for a channel a platform does not use drops out the way a foreign code block does. */ + + /** + * `$comments` put back into the code the definition produced. + * + * The renderer's own `$comment` writes a remark ahead of an element, which covers a block's + * opening line and — because elements nest — a remark ahead of a series or an axis inside one. + * What it cannot do is annotate a single property, and that is what a hand written block used + * most: a line saying what the next assignment is for. + * + * "$comments": { "markerTypes": "on CategoryChart or FinancialChart" } + * + * Keyed by property, so it cannot be confused with the per platform splay a value may itself be. + * Each entry lands immediately above the line that property produced, indented to match it, in + * the platform's own comment syntax. + * + * An entry that anchors to nothing is reported rather than dropped. A property renamed out from + * under its comment would otherwise take the explanation with it silently, which is the failure + * this whole mechanism exists to stop. + */ + function interleaveComments(json, content, isMarkup) { + if (content === null || content.trim() === '') return content; + if (!content.includes('\n') && !/\$comments/.test(json)) return content; + + const roots = definitionsOf(json) + .map(one => { try { return JSON.parse(one); } catch { return null; } }) + .filter(Boolean); + if (!roots.length) return content; + + const key = platformSidecarKey(); + const [open, close] = (COMMENT_SYNTAX[platform] ?? COMMENT_SYNTAX.WebComponents)[isMarkup ? 'markup' : 'code']; + + // Every $comments entry anywhere in the tree, not only on the root: a definition nests, and + // the property worth explaining is as often on a series as on the chart. + const wanted = []; + (function walk(node) { + if (node === null || typeof node !== 'object') return; + if (Array.isArray(node)) { node.forEach(walk); return; } + for (const [property, value] of Object.entries(node.$comments ?? {})) { + const lines = commentLinesFor(value, key); + if (lines.length) wanted.push({ property, lines }); + } + for (const [k, v] of Object.entries(node)) if (k !== '$comments') walk(v); + })(roots.length === 1 ? roots[0] : roots); + + if (!wanted.length) return content; + + const out = []; + const placed = new Set(); + for (const line of content.split('\n')) { + for (const entry of wanted) { + if (placed.has(entry) || !assignsProperty(line, entry.property)) continue; + const indent = /^\s*/.exec(line)[0]; + for (const text of entry.lines) { + out.push(`${indent}${open} ${text.trim()}${close ? ` ${close}` : ''}`); + } + placed.add(entry); + } + out.push(line); + } + + for (const entry of wanted) { + if (!placed.has(entry)) { + onWarn(`$comments entry for "${entry.property}" matched no emitted line on ${platform};` + + ' the comment was left out.'); + } + } + return out.join('\n'); + } + + + /** + * The elision between a block's field declarations and the statements below them. + * + * A region can hold both. A handler that requires a supporting item is emitted with the field + * that holds it — a class member — followed by the handler's own body, which is statements inside + * a method. They are excerpts from two different parts of a file, exactly what the `...` between + * two channel names marks, but here they arrive inside one region and that delimiter has nothing + * to sit between. + * + * Without the mark the block reads as one run of statements, and a reader copying it puts a field + * declaration in the middle of a method. + */ + function elideAfterFields(content) { + if (content === null || content.trim() === '') return content; + const lines = content.split('\n'); + + // A field: an access modifier, then a name and optional type, then an initialiser. Nothing + // bracketed before the `=`, which is what keeps a method signature out. + const isField = line => /^\s*(?:private|protected|public|internal)\s+[^(){}=]*=[^;]*;\s*$/.test(line); + + let last = -1; + for (let i = 0; i < lines.length; i++) { + if (isField(lines[i])) { last = i; continue; } + if (lines[i].trim() === '') continue; + break; + } + if (last === -1) return content; + + const rest = lines.slice(last + 1).filter(one => one.trim() !== ''); + if (rest.length === 0) return content; + + const after = lines.slice(last + 1); + while (after.length && after[0].trim() === '') after.shift(); + return [...lines.slice(0, last + 1), '// ...', ...after].join('\n'); + } + function emitFence(json, attrs) { const channel = attrs.channel || 'markup'; @@ -360,7 +557,13 @@ export function fenceEmitter({ api, platform, examplesRoot, styleDefaults, known // platform is written in markup on another, and the two are not interchangeable. So the // fence names no channel and takes whichever one the marker chose. const chosen = emitMarkedChannel(json, attrs.item); - return { channel: chosen.channel, content: chosen.content, companion: '' }; + return { + channel: chosen.channel, + content: chosen.channel === 'markup' + ? interleaveComments(json, chosen.content, true) + : interleaveComments(json, elideAfterFields(chosen.content), false), + companion: '', + }; } if (channel === 'markup') { @@ -375,18 +578,22 @@ export function fenceEmitter({ api, platform, examplesRoot, styleDefaults, known .filter(one => one !== null && one.trim() !== '') // Trimmed before joining: several definitions in one block are separated by one // blank line, not by however many the last of them happened to end with. - .map(one => one.trim()) + .map(dedent) .join('\n\n'); return { channel, - content, + content: interleaveComments(json, content, true), companion: content.trim() === '' ? '' : companionCode(json, attrs), }; } // Several regions can be asked for at once, and the delimiter between their names says what // goes between them in the block. See composeChannels. - return { channel, content: composeChannels(json, channel, attrs.item), companion: '' }; + return { + channel, + content: interleaveComments(json, elideAfterFields(composeChannels(json, channel, attrs.item)), false), + companion: '', + }; } return { emitFence, emitChannel, composeChannels, companionCode, definitionsOf }; diff --git a/docs/xplat/scripts/lib/snippet-schema.mjs b/docs/xplat/scripts/lib/snippet-schema.mjs index 6c045ae218..a723f6d78f 100644 --- a/docs/xplat/scripts/lib/snippet-schema.mjs +++ b/docs/xplat/scripts/lib/snippet-schema.mjs @@ -42,6 +42,44 @@ export function snippetsIn(files, { relativeTo = null } = {}) { return snippets; } +/** + * Let any element carry `$comments`. + * + * The descriptions declare `$comment` themselves — a remark ahead of an element — so the emitted + * schema already accepts it. `$comments` is the docs side companion that annotates one property + * rather than the element, applied after the renderer has run, and the descriptions have no reason + * to know about it. + * + * The schema is closed, which is what catches a misspelled property, so a key it has never heard of + * is rejected as a typo. Added here rather than asked for from the package: it costs the emitted + * schema nothing, and waiting on a product release to write a comment in a doc is the wrong + * dependency. + */ +function allowCommentsSidecar(schema) { + // Keyed by property name, with the value in any of the shapes a sidecar takes: the values are + // checked, while the keys are whatever properties the element happens to have. + const entry = { + anyOf: [ + { type: 'string' }, + { type: 'array', items: { type: 'string' } }, + { + type: 'object', + additionalProperties: { + anyOf: [{ type: 'string' }, { type: 'array', items: { type: 'string' } }], + }, + }, + ], + }; + (function walk(node) { + if (node === null || typeof node !== 'object') return; + if (Array.isArray(node)) { node.forEach(walk); return; } + if (node.properties && typeof node.properties === 'object' && !node.properties.$comments) { + node.properties.$comments = { type: 'object', additionalProperties: entry }; + } + for (const value of Object.values(node)) walk(value); + })(schema); +} + /** * A validator over the emitted schema. * @@ -71,6 +109,8 @@ export function schemaValidator(api, examplesRoot, { onProgress = () => {} } = { const dangling = [...referenced].filter(name => !defined.has(name)); for (const name of dangling) schema.definitions[name] = {}; + allowCommentsSidecar(schema); + // inlineRefs: false is the difference between two seconds and a minute and a half. Every // property of every description declares a "$key" sidecar referencing one shared marker // definition — some 48,000 references — and ajv's default is to inline a referenced schema at diff --git a/docs/xplat/scripts/review-platform-diff.mjs b/docs/xplat/scripts/review-platform-diff.mjs deleted file mode 100644 index 8aa6cded2e..0000000000 --- a/docs/xplat/scripts/review-platform-diff.mjs +++ /dev/null @@ -1,407 +0,0 @@ -#!/usr/bin/env node -/** - * The published pages this branch would change, for one platform, as a diff you can read. - * - * A topic is authored once now and emitted per platform, where before each platform's code was - * written out by hand. That is not a change you can review by reading the source: the source is - * smaller than what it replaced, and the question a reviewer actually has is whether the page a - * reader ends up with still says what it did. So this generates both — the branch and whatever it is - * branched from — and diffs the output. - * - * Some of the difference is meant. Hand written per platform code drifted: a property named for one - * platform in another's block, a stale API name, an import list missing a type. Collapsing to one - * definition fixed those by construction, so a hunk that removes something is not automatically a - * regression, and no ranking here can tell you which is which. What it can do is put the hunks in - * front of you sorted by how much they change, and separate the classes of change that need - * different judgement: - * - * comment a comment line the authored block carried and the emitted one does not. Interleaved - * explanation is the one thing the collapse genuinely drops rather than corrects, - * which is why it is counted on its own. - * code inside a fence: the emitted code differs from what was written by hand. - * prose outside a fence: wording, API terms, PlatformBlock gating. - * - * Usage: - * node scripts/review-platform-diff.mjs --platform=WebComponents [--lang=en] - * [--baseline=origin/vnext] [--out=] [--reuse] [--html] - * - * --reuse skips regenerating when output is already on disk, which is what you want while iterating - * on the report itself. --html writes a single page with every diff in it. - */ - -import { execFileSync } from 'node:child_process'; -import { existsSync, mkdirSync, readdirSync, readFileSync, rmSync, statSync, writeFileSync } from 'node:fs'; -import path from 'node:path'; -import process from 'node:process'; - -const arg = (flag, fallback = null) => { - const hit = process.argv.find(a => a.startsWith(flag)); - return hit ? hit.slice(flag.length) : fallback; -}; -const has = flag => process.argv.includes(flag); - -const PLATFORM = arg('--platform=', 'WebComponents'); -const LANG = arg('--lang=', 'en'); -const BASELINE = arg('--baseline=', 'origin/vnext'); -const REUSE = has('--reuse'); -const WANT_HTML = has('--html') || arg('--out=') !== null; - -const XPLAT = path.resolve(import.meta.dirname, '..'); -const REPO = execFileSync('git', ['rev-parse', '--show-toplevel'], { cwd: XPLAT, encoding: 'utf8' }).trim(); -const WORK = process.env.IG_REVIEW_DIR ?? path.join(process.env.TMPDIR ?? '/tmp', 'ig-platform-review'); -const BASE_TREE = path.join(WORK, 'baseline'); -const OUT = arg('--out=', path.join(WORK, `report-${PLATFORM}-${LANG}`)); - -const run = (cmd, args, cwd, allowFail = false) => { - try { - return execFileSync(cmd, args, { cwd, encoding: 'utf8', maxBuffer: 1 << 30, stdio: ['ignore', 'pipe', 'pipe'] }); - } catch (e) { - if (allowFail) return e.stdout ?? ''; - throw new Error(`${cmd} ${args.join(' ')} failed in ${cwd}:\n${e.stderr ?? e.message}`); - } -}; - -/** - * A checkout of the baseline, reused across runs. - * - * Detached on purpose: the ref moves, and a review pinned to whatever it pointed at last week is a - * review of the wrong thing. Re-pointing an existing worktree is cheaper than making a new one, and - * keeps the generated output from the previous run available to --reuse. - */ -function baselineTree() { - const want = run('git', ['rev-parse', BASELINE], REPO).trim(); - if (existsSync(path.join(BASE_TREE, '.git'))) { - const at = run('git', ['rev-parse', 'HEAD'], BASE_TREE).trim(); - if (at !== want) { - console.log(`[review] baseline worktree ${at.slice(0, 9)} -> ${want.slice(0, 9)}`); - run('git', ['checkout', '--detach', want], BASE_TREE); - rmSync(path.join(BASE_TREE, 'docs/xplat/generated'), { recursive: true, force: true }); - } - return; - } - mkdirSync(WORK, { recursive: true }); - rmSync(BASE_TREE, { recursive: true, force: true }); - run('git', ['worktree', 'prune'], REPO); - run('git', ['worktree', 'add', '-f', '--detach', BASE_TREE, want], REPO); - console.log(`[review] baseline worktree at ${want.slice(0, 9)} (${BASELINE})`); -} - -function generate(root, label) { - const out = path.join(root, 'generated', PLATFORM, LANG); - if (REUSE && existsSync(out) && readdirSync(out).length) { - console.log(`[review] ${label}: reusing ${out}`); - return out; - } - console.log(`[review] ${label}: generating ${PLATFORM}/${LANG}...`); - // Not allowFail: a baseline that cannot generate makes every topic look deleted, which reads as - // a catastrophic diff rather than as the tooling problem it is. - run('node', ['scripts/generate.mjs', `--platform=${PLATFORM}`, `--lang=${LANG}`], root); - if (!existsSync(out)) throw new Error(`${label} generated no ${PLATFORM}/${LANG} output`); - return out; -} - -const walk = (dir, base = dir, into = []) => { - for (const entry of readdirSync(dir)) { - const full = path.join(dir, entry); - if (statSync(full).isDirectory()) walk(full, base, into); - else if (entry.endsWith('.mdx')) into.push(path.relative(base, full)); - } - return into; -}; - -/** A unified diff of two files, via git so the hunk headers are the ones a reviewer knows. */ -function diffOf(a, b) { - const out = run('git', ['diff', '--no-index', '--unified=3', '--no-color', '--', a, b], REPO, true); - return out.split('\n').filter(l => !/^(diff --git|index |--- |\+\+\+ )/.test(l)).join('\n').trim(); -} - -const COMMENT = /^\s*(\/\/|\`${term}\``; + index++; + return marked; + }); +} + +function resolvedTargets(content, wanted, platform, where) { + const resolved = resolveApiTerms(content, platform, { repoRoot: REPO_ROOT, where }).content; + const targets = []; + for (let index = 0; index < wanted.length; index++) { + const re = new RegExp(`([\\s\\S]*?)`); + const between = re.exec(resolved)?.[1] ?? ''; + const tag = between.match(ONE_TAG_RE)?.[0]; + targets.push(tag ? canonicalGenerated(tag, wanted[index]) : null); + } + return targets; +} + +function removeUnusedImport(content) { + if (/ targetFor(tag, `${rel} ApiLink ${index + 1}`, typeOverrides)); + } catch (error) { + failures.push(error.message); + continue; + } + + // Prefer a short canonical member. Test it in the real page context on every platform; use the + // explicit canonical Type.Member form wherever that context would change or lose the target. + const platforms = validationPlatforms(file); + const terms = targets.map(target => target.unresolved ?? target.member ?? target.type); + const initial = markedContent(original, terms); + for (const platform of platforms) { + const got = resolvedTargets(initial, targets, platform, rel); + for (let index = 0; index < targets.length; index++) { + if (!targets[index].unresolved && targets[index].member && + (!got[index] || !sameTarget(got[index], targets[index]))) { + terms[index] = `${targets[index].type}.${targets[index].member}`; + } + } + } + + const candidate = markedContent(original, terms); + let safe = true; + for (const platform of platforms) { + const got = resolvedTargets(candidate, targets, platform, rel); + for (let index = 0; index < targets.length; index++) { + if (targets[index].unresolved) continue; + if (!got[index] || !sameTarget(got[index], targets[index])) { + failures.push(`${rel} ApiLink ${index + 1}: \`${terms[index]}\` does not round-trip on ${platform}`); + safe = false; + } + } + } + if (!safe) continue; + + let index = 0; + let updated = original.replace(TAG_RE, () => `\`${terms[index++]}\``); + updated = removeUnusedImport(updated); + if (updated === original) continue; + changedFiles++; + changedLinks += tags.length; + console.log(`${DRY_RUN ? '[dry]' : '[write]'} ${rel} (${tags.length})`); + if (WRITE) fs.writeFileSync(file, updated); +} + +if (failures.length) { + console.error(`\n${failures.length} ApiLink backtransform failure(s):`); + for (const failure of failures) console.error(` ${failure}`); +} +console.log(`\n${DRY_RUN ? 'Would update' : 'Updated'} ${changedFiles} file(s), ${changedLinks} ApiLink call(s).`); +process.exit(failures.length ? 1 : 0); diff --git a/docs/xplat/scripts/check-commercial-license.mjs b/docs/xplat/scripts/check-commercial-license.mjs new file mode 100644 index 0000000000..88c9178570 --- /dev/null +++ b/docs/xplat/scripts/check-commercial-license.mjs @@ -0,0 +1,63 @@ +#!/usr/bin/env node +/** + * Assert that every topic emitted for a desktop product is commercially licensed. + * + * Usage: + * node scripts/check-commercial-license.mjs --platform=WinUI --lang=en + * node scripts/check-commercial-license.mjs --platform=Uno --lang=jp + */ + +import fs from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; + +const args = process.argv.slice(2); +const value = (name) => args.find(arg => arg.startsWith(`${name}=`))?.slice(name.length + 1); +const platform = value('--platform'); +const lang = value('--lang') ?? 'en'; +const desktopPlatforms = new Set(['WinUI', 'Uno']); + +if (!desktopPlatforms.has(platform)) { + console.error('Expected --platform=WinUI or --platform=Uno.'); + process.exit(2); +} + +const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); +const components = path.join(root, 'generated', platform, lang, 'components'); + +if (!fs.existsSync(components)) { + console.error(`Generated output not found: ${components}`); + console.error(`Run generate.mjs --platform=${platform} --lang=${lang} first.`); + process.exit(2); +} + +const files = []; +(function walk(dir) { + for (const entry of fs.readdirSync(dir, { withFileTypes: true })) { + const full = path.join(dir, entry.name); + if (entry.isDirectory()) walk(full); + else if (entry.name.endsWith('.mdx')) files.push(full); + } +})(components); + +const errors = []; +for (const file of files.sort()) { + const text = fs.readFileSync(file, 'utf8'); + const frontmatter = /^---\r?\n([\s\S]*?)\r?\n---(?:\r?\n|$)/.exec(text)?.[1]; + const relative = path.relative(components, file); + + if (frontmatter == null) { + errors.push(`${relative}: missing YAML frontmatter`); + continue; + } + + const licenses = [...frontmatter.matchAll(/^license:\s*(.*?)\s*$/gm)].map(match => match[1]); + if (licenses.length !== 1 || licenses[0] !== 'commercial') { + const actual = licenses.length === 0 ? 'missing' : licenses.join(', '); + errors.push(`${relative}: expected exactly "license: commercial"; found ${actual}`); + } +} + +console.log(`${platform}/${lang}: checked ${files.length} emitted topic(s), ${errors.length} license error(s).`); +for (const error of errors) console.error(` ${error}`); +process.exit(errors.length > 0 ? 1 : 0); diff --git a/docs/xplat/scripts/check-doc-scope.mjs b/docs/xplat/scripts/check-doc-scope.mjs index 2f5ed7904e..22aa3e7ac7 100644 --- a/docs/xplat/scripts/check-doc-scope.mjs +++ b/docs/xplat/scripts/check-doc-scope.mjs @@ -89,6 +89,14 @@ for (const file of pages.sort()) { `Use platformType: xplat-unmapped if its API cannot be resolved.`); } if (mode && mode === IMPLIED[declared]) redundant.push(`${slug}: apiTerms: ${mode} is what ${declared} already implies`); + if (declared === 'xplat') { + const raw = text.match(/]*>/g) ?? []; + const forbidden = raw.filter(tag => !/\sraw(?:\s|=|\/?>)/.test(tag)); + if (forbidden.length > 0) { + errors.push(`${slug}: ${forbidden.length} authored call(s) without the explicit raw attribute. ` + + 'Strict-xplat source requires canonical API terms in backticks.'); + } + } // Publication, which is the toc's business rather than the page's. // @@ -98,7 +106,9 @@ for (const file of pages.sort()) { // is an artefact of the question rather than anything about the page. if (slug.startsWith('grids/_shared/')) continue; - const shown = published.get(slug) ?? [...WEB, ...DESKTOP]; + // Desktop generation drops an unlinked web-only topic. Cross-platform topics still emit even + // when the toc does not name them, so keep the historical publish-everywhere fallback for those. + const shown = published.get(slug) ?? (declared === 'web-only' ? [] : [...WEB, ...DESKTOP]); const desktop = shown.filter(p => DESKTOP.includes(p)); if (declared.startsWith('xplat') && desktop.length === 0) noDesktop.push(slug); if (declared === 'web-only' && desktop.length > 0) desktopLeak.push(`${slug} (${desktop.join(', ')})`); diff --git a/docs/xplat/scripts/generate.mjs b/docs/xplat/scripts/generate.mjs index 6dbda42a3c..a56307fcb1 100644 --- a/docs/xplat/scripts/generate.mjs +++ b/docs/xplat/scripts/generate.mjs @@ -128,6 +128,10 @@ function collectIncludedSlugs(nodes, included = new Set()) { } const TOC_PATH = path.join(ROOT, 'src', 'content', LANG, 'toc.json'); +const INCLUDED_SLUGS = (() => { + if (!existsSync(TOC_PATH)) return new Set(); + return collectIncludedSlugs(JSON.parse(readFileSync(TOC_PATH, 'utf8'))); +})(); const EXCLUDED_SLUGS = (() => { if (!existsSync(TOC_PATH)) return new Set(); const toc = JSON.parse(readFileSync(TOC_PATH, 'utf8')); @@ -184,8 +188,18 @@ function normalizeMarkdownSpacing(content) { return normalized; } +function applyProductLicense(content) { + if (PLATFORM !== 'WinUI' && PLATFORM !== 'Uno') return content; + return content.replace(/^(---\r?\n)([\s\S]*?)(^---)/m, (_match, open, body, close) => { + const licensed = /^license:\s*.*$/m.test(body) + ? body.replace(/^license:\s*.*$/m, 'license: commercial') + : `${body.replace(/\s*$/, '\n')}license: commercial\n`; + return `${open}${licensed}${close}`; + }); +} + function prepareMarkdownOutput(content) { - return normalizeMarkdownSpacing(content); + return normalizeMarkdownSpacing(applyProductLicense(content)); } // --------------------------------------------------------------------------- @@ -954,6 +968,14 @@ function expandSharedFiles(sharedSrcDir, gridsOutDir) { const srcPath = path.join(sharedSrcDir, entry); const raw = readFileSync(srcPath, 'utf8'); + // Shared web theming topics have generated component-specific paths that do not exactly + // match their TOC source path, so TOC exclusion alone cannot identify them. Do not emit + // those routes into the XAML product output. + if ((PLATFORM === 'WinUI' || PLATFORM === 'Uno') && /^platformType:\s*web-only\s*$/m.test(raw)) { + console.log(`[generate] Skipping web-only shared topic: _shared/${entry}`); + continue; + } + // Determine which components this file applies to const applicableKeys = getSharedComponentKeys(raw); @@ -1071,6 +1093,11 @@ function processDir(srcDir, outDir, relBase = '') { continue; } const raw = readFileSync(srcPath, 'utf8'); + if ((PLATFORM === 'WinUI' || PLATFORM === 'Uno') && + /^platformType:\s*web-only\s*$/m.test(raw) && !INCLUDED_SLUGS.has(slug)) { + console.log(`[generate] Skipping unlinked web-only topic: ${slug}`); + continue; + } if (/\.mdx$/.test(entry)) { let content = prepareMarkdownOutput(ensureMdxImports(transformMdxFile(raw, path.join(LANG, 'components', entry)))); // Rewrite _shared/ cross-references so generated files resolve correctly. diff --git a/docs/xplat/src/content.config.ts b/docs/xplat/src/content.config.ts index 0e3f9b7752..74d3fcd8a5 100644 --- a/docs/xplat/src/content.config.ts +++ b/docs/xplat/src/content.config.ts @@ -7,12 +7,12 @@ import { fileURLToPath } from 'node:url'; // src/ → project root const root = path.join(path.dirname(fileURLToPath(import.meta.url)), '..'); -let platform = 'React'; -let lang = 'en'; +let platform = process.env.PLATFORM || 'React'; +let lang = process.env.LANG_CODE || 'en'; try { const cfg = JSON.parse(readFileSync(path.join(root, '.platform.json'), 'utf8')); - platform = cfg.platform ?? platform; - lang = cfg.lang ?? lang; + platform = process.env.PLATFORM || cfg.platform || platform; + lang = process.env.LANG_CODE || cfg.lang || lang; } catch { /* use defaults */ } const docsDir = path.join(root, 'generated', platform, lang, 'components'); diff --git a/docs/xplat/src/content/en/components/charts/chart-api.mdx b/docs/xplat/src/content/en/components/charts/chart-api.mdx index a480a27ce1..6d567451fb 100644 --- a/docs/xplat/src/content/en/components/charts/chart-api.mdx +++ b/docs/xplat/src/content/en/components/charts/chart-api.mdx @@ -10,116 +10,113 @@ llms: description: "The {ProductName} charts provide simple and easy to use APIs to plot your data in CategoryChart, FinancialChart, DataChart, DataPieChart, DoughnutChart, PieChart, and Sparkline UI elements." platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} Charts API -The {ProductName} charts provide simple and easy to use APIs to plot your data in , , , , , , and UI elements. +The {ProductName} charts provide simple and easy to use APIs to plot your data in `CategoryChart`, `FinancialChart`, `XamDataChart`, `DataPieChart`, `XamDoughnutChart`, `XamPieChart`, and `XamSparkline` UI elements. ## {Platform} Category Chart API -The {Platform} has the following API members: +The {Platform} `CategoryChart` has the following API members: | Chart Properties | Axis Properties | Series Properties | |------------------|-----------------|-------------------| -| -
-
-
-
-
-
-
-
-
| -
-
-
-
-
-
-
-
-
- | -
-
-
-
-
-




| +| - `ExcludedProperties`
- `IncludedProperties`
- `XamDataChart.IsHorizontalZoomEnabled`
- `XamDataChart.IsVerticalZoomEnabled`
- `CategoryChart.CrosshairsDisplayMode`
- `TransitionInMode`
- `XamDataChart.HighlightingBehavior`
- `XamDataChart.HighlightingMode`
- `CategoryChart.TrendLineType`
| - `XAxisInterval`
- `CategoryChart.XAxisLabelLocation`
- `XAxisGap`
- `XAxisOverlap`
- `XAxisTitle`
- `YAxisInterval`
- `CategoryChart.YAxisLabelLocation`
- `YAxisTitle`
- `YAxisMinimumValue`
- `YAxisMaximumValue` | - `XamDataChart.Brushes`
- `XamDataChart.Outlines`
- `XamDataChart.MarkerBrushes`
- `XamDataChart.MarkerOutlines`
- `MarkerTypes`
- `CategoryChart.ToolTipType`




| ## {Platform} Financial Chart API -The {Platform} has the following API members: +The {Platform} `FinancialChart` has the following API members: | Chart Properties | Axis Properties | Series Properties | |------------------|-----------------|-------------------| -| -
-
-
-
-
-
-
-
- | -
-
-
-
-
-
-
-
-
- | -
-
-
-
-
-
-
-


| +| - `CategoryChart.ExcludedProperties`
- `CategoryChart.IncludedProperties`
- `XamDataChart.IsHorizontalZoomEnabled`
- `XamDataChart.IsVerticalZoomEnabled`
- `CategoryChart.ToolTipType`
- `CategoryChart.CrosshairsDisplayMode`
- `XamDataChart.HighlightingBehavior`
- `XamDataChart.HighlightingMode`
- `CategoryChart.TrendLineType` | - `XAxisInterval`
- `CategoryChart.XAxisLabelLocation`
- `CategoryChart.XAxisTitle`
- `CategoryChart.YAxisInterval`
- `CategoryChart.YAxisLabelLocation`
- `CategoryChart.YAxisTitle`
- `CategoryChart.YAxisMinimumValue`
- `CategoryChart.YAxisMaximumValue`
- `YAxisMode`
- `XAxisMode` | - `XamDataChart.Brushes`
- `XamDataChart.Outlines`
- `XamDataChart.MarkerBrushes`
- `XamDataChart.MarkerOutlines`
- `CategoryChart.MarkerTypes`
- `IndicatorTypes`
- `VolumeType`
- `ZoomSliderType`


| ## {Platform} Data Chart API -The {Platform} has the following API members: +The {Platform} `XamDataChart` has the following API members: | Chart Properties | Axis Classes | |------------------|--------------| -| -
-
-
-
-
-
-
-
-
-
| - is base class for all axis types
- used with [Category Series](types/column-chart.mdx), [Stacked Series](types/stacked-chart.mdx), and [Financial Series](types/stock-chart.mdx)
- used with [Category Series](types/column-chart.mdx), [Stacked Series](types/stacked-chart.mdx)
- used with [Radial Series](types/radial-chart.mdx)
- used with [Scatter Series](types/scatter-chart.mdx) and [Bar Series](types/bar-chart.mdx)
- used with [Scatter Series](types/scatter-chart.mdx), [Category Series](types/column-chart.mdx), [Stacked Series](types/stacked-chart.mdx), and [Financial Series](types/stock-chart.mdx)
- used with [Polar Series](types/polar-chart.mdx)
- used with [Polar Series](types/polar-chart.mdx) and [Radial Series](types/radial-chart.mdx)
- used with [Category Series](types/column-chart.mdx) and [Financial Series](types/stock-chart.mdx)

| +| - `SeriesViewer.Title`
- `SeriesViewer.Subtitle`
- `IsHorizontalZoomEnabled`
- `IsVerticalZoomEnabled`
- `Brushes`
- `Outlines`
- `MarkerBrushes`
- `MarkerOutlines`
- `Axes`
- `SeriesViewer.Series`
| - `Axis` is base class for all axis types
- `CategoryXAxis` used with [Category Series](types/column-chart.mdx), [Stacked Series](types/stacked-chart.mdx), and [Financial Series](types/stock-chart.mdx)
- `CategoryYAxis` used with [Category Series](types/column-chart.mdx), [Stacked Series](types/stacked-chart.mdx)
- `CategoryAngleAxis` used with [Radial Series](types/radial-chart.mdx)
- `NumericXAxis` used with [Scatter Series](types/scatter-chart.mdx) and [Bar Series](types/bar-chart.mdx)
- `NumericYAxis` used with [Scatter Series](types/scatter-chart.mdx), [Category Series](types/column-chart.mdx), [Stacked Series](types/stacked-chart.mdx), and [Financial Series](types/stock-chart.mdx)
- `NumericAngleAxis` used with [Polar Series](types/polar-chart.mdx)
- `NumericRadiusAxis` used with [Polar Series](types/polar-chart.mdx) and [Radial Series](types/radial-chart.mdx)
- `TimeXAxis` used with [Category Series](types/column-chart.mdx) and [Financial Series](types/stock-chart.mdx)

| -The {Platform} can use the following type of series that inherit from : +The {Platform} `XamDataChart` can use the following type of series that inherit from `XamDataChart.Series`: | Category Series | Stacked Series | |------------------|----------------| -| -
-
-
-
-
-
-
-
-
-
-
- `RangeBarSeries`
-
| -
-
-
-
-
-
-
-
-
-


| +| - `AreaSeries`
- `BarSeries`
- `ColumnSeries`
- `LineSeries`
- `PointSeries`
- `SplineSeries`
- `SplineAreaSeries`
- `StepLineSeries`
- `StepAreaSeries`
- `RangeAreaSeries`
- `RangeColumnSeries`
- `RangeBarSeries`
- `WaterfallSeries`
| - `StackedAreaSeries`
- `StackedBarSeries`
- `StackedColumnSeries`
- `StackedLineSeries`
- `StackedSplineSeries`
- `Stacked100AreaSeries`
- `Stacked100BarSeries`
- `Stacked100ColumnSeries`
- `Stacked100LineSeries`
- `Stacked100SplineSeries`


| | Scatter Series | Financial Series | |----------------|------------------| -| -
-
-
-
-
-
-
-
-

| -
-
-
-
-
-
-
-
-
- and [many more](types/stock-chart.mdx) | +| - `BubbleSeries`
- `HighDensityScatterSeries`
- `ScatterSeries`
- `ScatterLineSeries`
- `ScatterSplineSeries`
- `ScatterAreaSeries`
- `ScatterContourSeries`
- `ScatterPolylineSeries`
- `ScatterPolygonSeries`

| - `FinancialPriceSeries`
- `BollingerBandsOverlay`
- `ForceIndexIndicator`
- `MedianPriceIndicator`
- `MassIndexIndicator`
- `RelativeStrengthIndexIndicator`
- `StandardDeviationIndicator`
- `TypicalPriceIndicator`
- `WeightedCloseIndicator`
- and [many more](types/stock-chart.mdx) | | Radial Series | Polar Series | |---------------|--------------| -| -
-
-
-

| -
-
-
-
-
| +| - `RadialLineSeries`
- `RadialAreaSeries`
- `RadialPieSeries`
- `RadialColumnSeries`

| - `PolarScatterSeries`
- `PolarLineSeries`
- `PolarAreaSeries`
- `PolarSplineSeries`
- `PolarSplineAreaSeries`
| ## {Platform} Data Legend API -The {Platform} has the following API members: - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- +The {Platform} `XamDataLegend` has the following API members: + +- `IncludedColumns` +- `ExcludedColumns` +- `IncludedSeries` +- `ExcludedSeries` +- `ValueFormatAbbreviation` +- `ValueFormatMode` +- `ValueFormatCulture` +- `ValueFormatMinFractions` +- `ValueFormatMaxFractions` +- `ValueTextColor` +- `XamDataChart.TitleTextColor` +- `LabelTextColor` +- `UnitsTextColor` +- `SummaryType` +- `HeaderTextColor` +- `BadgeShape` ## {Platform} Donut Chart API -The {Platform} has the following API members: +The {Platform} `XamDoughnutChart` has the following API members: -- -- -- +- `AllowSliceExplosion` +- `AllowSliceSelection` +- `InnerExtent` ## {Platform} Data Pie Chart API -The {Platform} has the following API members: +The {Platform} `DataPieChart` has the following API members: -- -- -- -- -- +- `HighlightingBehavior` +- `OthersCategoryThreshold` +- `DataPieChart.OthersCategoryType` +- `SelectionMode` +- `SelectionBehavior` ## {Platform} Pie Chart API -The {Platform} has the following API members: +The {Platform} `XamPieChart` has the following API members: -- -- -- -- -- -- +- `LegendItemBadgeTemplate` +- `LegendItemTemplate` +- `LegendLabelMemberPath` +- `OthersCategoryThreshold` +- `XamPieChart.OthersCategoryType` +- `SelectionMode` ## {Platform} Sparkline Chart API -The {Platform} has the following API members: +The {Platform} `XamSparkline` has the following API members: -- -- -- -- -- -- -- +- `DisplayNormalRangeInFront` +- `DisplayType` +- `LowMarkerBrush` +- `LowMarkerSize` +- `LowMarkerVisibility` +- `NormalRangeFill` +- `CategoryChart.UnknownValuePlotting` ## Additional Resources diff --git a/docs/xplat/src/content/en/components/charts/chart-overview.mdx b/docs/xplat/src/content/en/components/charts/chart-overview.mdx index 77d5cabc09..ae40357a1d 100644 --- a/docs/xplat/src/content/en/components/charts/chart-overview.mdx +++ b/docs/xplat/src/content/en/components/charts/chart-overview.mdx @@ -1,6 +1,6 @@ --- title: "{Platform} Charts & Graphs Library | {ProductName}" -description: "{ProductName} Charts & Graphs is an extensive library of data visualizations that enable stunning, interactive charts for your web, mobile and desktop apps. Try for FREE." +description: "{ProductName} Charts & Graphs is an extensive library of data visualizations that enable stunning, interactive charts for your web, mobile and desktop apps. Download free trial." keywords: "{Platform} Charts, Chart, Infragistics" license: commercial mentionedTypes: ["DomainChart", "FinancialChart", "CategoryChart", "DataChart", "CategoryChartType"] diff --git a/docs/xplat/src/content/en/components/charts/features/chart-annotations.mdx b/docs/xplat/src/content/en/components/charts/features/chart-annotations.mdx index 269a165beb..c519b03d94 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-annotations.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-annotations.mdx @@ -28,7 +28,7 @@ The following example demonstrates the annotation layers that are available on t -Like this sample? Get access to our complete {Platform} toolkit and start building your own apps in minutes. Download it for free. +Like this sample? Try the complete {ProductName} toolkit and begin building your own apps. Download free trial. ## {Platform} Crosshair Layer diff --git a/docs/xplat/src/content/en/components/charts/features/chart-axis-options.mdx b/docs/xplat/src/content/en/components/charts/features/chart-axis-options.mdx index c687f57d6a..2acbd488cf 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-axis-options.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-axis-options.mdx @@ -11,8 +11,6 @@ llms: platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} Axis Options @@ -45,9 +43,9 @@ The chart also has the ability to consider auto-rotation of the labels if they w After setting the `autoMarginAndAngleUpdateMode`, you can set the `shouldAutoExpandMarginForInitialLabels` property to true to opt into the automatic margin or set the `shouldConsiderAutoRotationForInitialLabels` property to true for the auto-rotation. You can also further customize the automatic margin that is applied by setting the `autoExpandMarginExtraPadding` and `autoExpandMarginMaximumValue` to provide extra space or a maximum possible margin, respectively. -Custom label formats such as and `DateTimeFormatSpecifier` can be added to each axis via the `xAxisLabelFormatSpecifiers` and `yAxisLabelFormatSpecifiers` collections. Commonly used for applying Intl.NumberFormat and Intl.DateTimeFormat language sensitive number, date and time formatting. In order for a custom format to be applied to the labels, the `yAxisLabelFormat` or `xAxisLabelFormat` need to be set to data item's property name on the `CategoryChart`, eg. `{Date}`. For the `FinancialChart` the number is the context because it uses a numeric axis, therefore this needs to be set to `{0}`. +Custom label formats such as `NumberFormatSpecifier` and `DateTimeFormatSpecifier` can be added to each axis via the `xAxisLabelFormatSpecifiers` and `yAxisLabelFormatSpecifiers` collections. Commonly used for applying Intl.NumberFormat and Intl.DateTimeFormat language sensitive number, date and time formatting. In order for a custom format to be applied to the labels, the `yAxisLabelFormat` or `xAxisLabelFormat` need to be set to data item's property name on the `CategoryChart`, eg. `{Date}`. For the `FinancialChart` the number is the context because it uses a numeric axis, therefore this needs to be set to `{0}`. -The following example formats the yAxis with a to represent $USD prices for top box office movies in the United States. +The following example formats the yAxis with a `NumberFormatSpecifier` to represent $USD prices for top box office movies in the United States. @@ -131,4 +129,3 @@ The following is a list of API members mentioned in the above sections: | `Axes` -> `NumericXAxis` -> `labelSettings.textColor` | `FinancialChart.XAxisLabelForeground` | `CategoryChart.XAxisLabelForeground` | | `Axes` -> `NumericYAxis` -> `labelSettings.visibility` | `FinancialChart.yAxisLabelVisibility` | `CategoryChart.yAxisLabelVisibility` | | `Axes` -> `NumericXAxis` -> `labelSettings.visibility` | `FinancialChart.xAxisLabelVisibility` | `CategoryChart.xAxisLabelVisibility` | - diff --git a/docs/xplat/src/content/en/components/charts/features/chart-data-aggregations.mdx b/docs/xplat/src/content/en/components/charts/features/chart-data-aggregations.mdx index 5475897ca4..c256318594 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-data-aggregations.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-data-aggregations.mdx @@ -17,11 +17,11 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Data Aggregations -In the {ProductName} `CategoryChart` control Data Aggregations feature allows you to group data in the chart by unique values on the and then sort those groups. You may then apply summaries which will be reflected by the range of the and will be displayed in the tooltip when hovering the series. +In the {ProductName} `CategoryChart` control Data Aggregations feature allows you to group data in the chart by unique values on the `xAxisMemberPath` and then sort those groups. You may then apply summaries which will be reflected by the range of the `yAxisMemberPath` and will be displayed in the tooltip when hovering the series. ## {Platform} Data Aggregations Example -The following example depicts a [Column Chart](../types/column-chart.mdx) that groups by the Country member of the and can be changed to other properties within each data item such as Product, MonthName, and Year to aggregate the sales data. Also a summary and sort option is available to get a desirable order for the grouped property. +The following example depicts a [Column Chart](../types/column-chart.mdx) that groups by the Country member of the `xAxisMemberPath` and can be changed to other properties within each data item such as Product, MonthName, and Year to aggregate the sales data. Also a summary and sort option is available to get a desirable order for the grouped property. Note, the abbreviated functions found within the dropdowns for `initialSummaries` and `groupSorts` have be applied as shown to get a correct result based on the property you assign. eg. Sum(sales) as Sales | Sales Desc diff --git a/docs/xplat/src/content/en/components/charts/features/chart-data-annotations.mdx b/docs/xplat/src/content/en/components/charts/features/chart-data-annotations.mdx index 83ea233993..96b7265a12 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-data-annotations.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-data-annotations.mdx @@ -29,7 +29,7 @@ For example, you can annotates stock prices with stock events and patterns. -Like this sample? Get access to our complete {Platform} toolkit and start building your own apps in minutes. Download it for free. +Like this sample? Try the complete {ProductName} toolkit and begin building your own apps. Download free trial. ## {Platform} Data Annotation Slice Layer Example @@ -90,4 +90,3 @@ The following is a list of API members mentioned in the above sections: - `startLabelXDisplayMode` | `startLabelYDisplayMode` | `endLabelXDisplayMode` | `endLabelYDisplayMode` | `centerLabelXDisplayMode`: These properties specify what should annotation labels display on starting, ending, or center of the annotation shape, e.g. mapped data value, mapped data label, axis value, or hide a given annotation label. - `startLabelYMemberPath`: This property is a mapping to the data column representing the axis label for the starting position of `DataAnnotationBandLayer`, `DataAnnotationLineLayer`, `DataAnnotationRectLayer` on the y-axis. - `endLabelYMemberPath`: This property is a mapping to the data column representing the axis label for the ending position of `DataAnnotationBandLayer`, `DataAnnotationLineLayer`, `DataAnnotationRectLayer` on the y-axis. - diff --git a/docs/xplat/src/content/en/components/charts/features/chart-data-legend.mdx b/docs/xplat/src/content/en/components/charts/features/chart-data-legend.mdx index 7ea1abc280..10a159992b 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-data-legend.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-data-legend.mdx @@ -11,7 +11,6 @@ platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; import { Image } from 'astro:assets'; import layoutMode from '@xplat-images/general/layout_mode.png'; @@ -153,20 +152,20 @@ By default, DataLegend will hide names of groups, but you can display group name Several properties are exposed including grouping portions of the legend. -- -- +- `GroupRowMargin` +- `GroupTextMargin` - `groupTextColor` - `groupTextFontSize` - `groupTextFontFamily` - `groupTextFontStyle` -- +- `GroupTextFontStretch` - `groupTextFontWeight` -- +- `HeaderTextMargin` - `headerTextColor` - `headerTextFontSize` - `headerTextFontFamily` - `headerTextFontStyle` -- +- `HeaderTextFontStretch` - `headerTextFontWeight` The `XamDataLegend` has several events that fire when rendering their corresponding row, even during mouse interactions where the values are updating. These events are listed below with a description of what they are designed to be used for: diff --git a/docs/xplat/src/content/en/components/charts/features/chart-data-tooltip.mdx b/docs/xplat/src/content/en/components/charts/features/chart-data-tooltip.mdx index 8ee6a57d60..f8de18bd28 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-data-tooltip.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-data-tooltip.mdx @@ -12,7 +12,6 @@ platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; import { Image } from 'astro:assets'; import layoutMode from '@xplat-images/general/layout_mode.png'; @@ -147,19 +146,19 @@ The following example demonstrates usage of the styling properties mentioned abo Several properties are exposed including grouping portions of the tooltip. -- +- `GroupTextMargin` - `groupTextColor` - `groupTextFontSize` - `groupTextFontFamily` - `groupTextFontStyle` -- +- `GroupTextFontStretch` - `groupTextFontWeight` -- +- `HeaderTextMargin` - `headerTextColor` - `headerTextFontSize` - `headerTextFontFamily` - `headerTextFontStyle` -- +- `HeaderTextFontStretch` - `headerTextFontWeight` diff --git a/docs/xplat/src/content/en/components/charts/features/chart-navigation.mdx b/docs/xplat/src/content/en/components/charts/features/chart-navigation.mdx index 976279190c..fefe93d702 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-navigation.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-navigation.mdx @@ -27,7 +27,7 @@ The following example shows all of the available panning and zooming options tha -Like this sample? Get access to our complete {Platform} toolkit and start building your own apps in minutes. Download it for free. +Like this sample? Try the complete {ProductName} toolkit and begin building your own apps. Download free trial. ## Chart Navigation with User Interactions diff --git a/docs/xplat/src/content/en/components/charts/types/bar-chart.mdx b/docs/xplat/src/content/en/components/charts/types/bar-chart.mdx index 8cc8ba6bf3..1d31afe212 100644 --- a/docs/xplat/src/content/en/components/charts/types/bar-chart.mdx +++ b/docs/xplat/src/content/en/components/charts/types/bar-chart.mdx @@ -1,6 +1,6 @@ --- title: "{Platform} Bar Chart and Graph | {ProductName}" -description: "{Platform} Bar Chart is among the most common category chart types used to quickly compare frequency, count, total, or average of data in different categories. Try for FREE." +description: "{Platform} Bar Chart is among the most common category chart types used to quickly compare frequency, count, total, or average of data in different categories. Download free trial." keywords: "{Platform} Charts, Bar Chart, Bar Graph, Horizontal Chart, Infragistics" license: commercial mentionedTypes: ["DataChart", "BarSeries", "StackedBarSeries", "Stacked100BarSeries", "RangeBarSeries", "Series"] @@ -10,7 +10,6 @@ llms: platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Bar Chart The {ProductName} Bar Chart, Bar Graph, or Horizontal Bar Chart, is among the most common category chart types used to quickly compare frequency, count, total, or average of data in different categories with data encoded by horizontal bars with equal heights but different lengths. This chart is ideal for showing variations in the value of an item over time. Data is represented using a collection of rectangles that extend from the left to right of the chart towards the values of data points. Bar Chart is very similar to [Column Chart](column-chart.mdx) except that Bar Chart renders with 90 degrees clockwise rotation and therefore it has horizontal orientation (left to right) while [Column Chart](column-chart.mdx) has vertical orientation (up and down) @@ -120,7 +119,7 @@ Range values are represented on the X-Axis and categories are displayed on the Y The Range Bar Chart is identical to the [Range Column Chart](column-chart.mdx#{PlatformLower}-range-column-chart) in all aspects except that the ranges are represented as a set of horizontal bars rather than vertical columns. -You can create this type of chart in the control by binding your data to a . The series reads low and high values from `LowMemberPath` and `HighMemberPath`, and it typically uses a `NumericXAxis` with a `CategoryYAxis`, as shown in the example below: +You can create this type of chart in the `XamDataChart` control by binding your data to a `RangeBarSeries`. The series reads low and high values from `LowMemberPath` and `HighMemberPath`, and it typically uses a `NumericXAxis` with a `CategoryYAxis`, as shown in the example below: diff --git a/docs/xplat/src/content/en/components/charts/types/data-pie-chart.mdx b/docs/xplat/src/content/en/components/charts/types/data-pie-chart.mdx index 4804a398e1..66dd1ddb0a 100644 --- a/docs/xplat/src/content/en/components/charts/types/data-pie-chart.mdx +++ b/docs/xplat/src/content/en/components/charts/types/data-pie-chart.mdx @@ -1,6 +1,6 @@ --- title: {Platform} Pie Charts and Graphs | {ProductName} -description: The {ProductName} data pie chart is a specialized UI control that renders a pie chart, consisting of a circular area divided into sections. Try for FREE. +description: The {ProductName} data pie chart is a specialized UI control that renders a pie chart, consisting of a circular area divided into sections. Download free trial. keywords: {Platform} charts, pie chart, {ProductName}, Infragistics, data binding, slice selection, animation, highlighting, legend license: commercial diff --git a/docs/xplat/src/content/en/components/charts/types/line-chart.mdx b/docs/xplat/src/content/en/components/charts/types/line-chart.mdx index 92f2c5d7bf..a87188b278 100644 --- a/docs/xplat/src/content/en/components/charts/types/line-chart.mdx +++ b/docs/xplat/src/content/en/components/charts/types/line-chart.mdx @@ -1,6 +1,6 @@ --- title: "{Platform} Line Chart and Graph | {ProductName}" -description: The {Platform} Line chart is capable of handling high volumes of data, ranging into millions of data points, and updating them every few milliseconds. Try for FREE. +description: The {Platform} Line chart is capable of handling high volumes of data, ranging into millions of data points, and updating them every few milliseconds. Download free trial. keywords: "{Platform} Charts, Line Chart, Line Graph, Infragistics" license: commercial mentionedTypes: ["DomainChart", "CategoryChart", "DataChart", "Legend", "PolarLineSeries", "RadialLineSeries", "StackedLineSeries", "Stacked100LineSeries", "Series", "CategoryChartType"] diff --git a/docs/xplat/src/content/en/components/charts/types/pie-chart.mdx b/docs/xplat/src/content/en/components/charts/types/pie-chart.mdx index 5794de5c12..89ab4de0ad 100644 --- a/docs/xplat/src/content/en/components/charts/types/pie-chart.mdx +++ b/docs/xplat/src/content/en/components/charts/types/pie-chart.mdx @@ -1,6 +1,6 @@ --- title: "{Platform} Pie Charts and Graphs | {ProductName}" -description: The {ProductName} pie chart is a specialized UI control that renders a pie chart, consisting of a circular area divided into sections. Try for FREE. +description: The {ProductName} pie chart is a specialized UI control that renders a pie chart, consisting of a circular area divided into sections. Download free trial. keywords: "{Platform} charts, pie chart, {ProductName}, Infragistics, data binding, slice selection, slice explosion, animation" license: commercial mentionedTypes: ["PieChart", "DataChart"] diff --git a/docs/xplat/src/content/en/components/charts/types/sparkline-chart.mdx b/docs/xplat/src/content/en/components/charts/types/sparkline-chart.mdx index 911430a1ff..1f63b4f002 100644 --- a/docs/xplat/src/content/en/components/charts/types/sparkline-chart.mdx +++ b/docs/xplat/src/content/en/components/charts/types/sparkline-chart.mdx @@ -22,7 +22,7 @@ The following example shows all the different types of `Sparkline` available. Th -Like this sample? Get access to our complete {Platform} toolkit and start building your own apps in minutes. Download it for free. +Like this sample? Try the complete {ProductName} toolkit and begin building your own apps. Download free trial. ## Sparkline Recommendations diff --git a/docs/xplat/src/content/en/components/charts/types/stock-chart.mdx b/docs/xplat/src/content/en/components/charts/types/stock-chart.mdx index c729c168c2..02809b6ebc 100644 --- a/docs/xplat/src/content/en/components/charts/types/stock-chart.mdx +++ b/docs/xplat/src/content/en/components/charts/types/stock-chart.mdx @@ -1,6 +1,6 @@ --- title: "{Platform} Stock/Financial Charts | {ProductName}" -description: The {ProductName} Stock Chart is a composite visualization that renders stock ticker data, or price data in an interactive time-series display. Try for FREE. +description: The {ProductName} Stock Chart is a composite visualization that renders stock ticker data, or price data in an interactive time-series display. Download free trial. keywords: "{Platform} Charts, Stock Chart, Financial Chart, Candlestick Chart, OHLC Chart, Infragistics" license: commercial mentionedTypes: ["DomainChart", "FinancialChart", "FinancialChartType", "IndicatorTypes", "ZoomSliderType", "Series"] @@ -10,7 +10,6 @@ llms: platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Stock Chart @@ -18,7 +17,7 @@ The {ProductName} Stock Chart, sometimes referred to as {Platform} Financial Cha ## {Platform} Stock Chart Example -You can create Stock Chart using the control by binding your data and optionally setting property to value, as shown in the example below. +You can create Stock Chart using the `FinancialChart` control by binding your data and optionally setting `FinancialChart.ChartType` property to `FinancialChartType.Line` value, as shown in the example below. @@ -79,7 +78,7 @@ If you need a Stock Chart with more features such as composite other series, you ## {Platform} Chart Annotations -The Crosshair Annotation Layer provides crossing lines that meet at the actual value of every targeted series. Crosshair types include: Horizontal, Vertical, and Both. The Crosshairs can also be configured to snap to data points by setting the property to true, otherwise the crosshairs will be interpolated between data points. Annotations can also be enabled to display the crosshair's value along the axis. +The Crosshair Annotation Layer provides crossing lines that meet at the actual value of every targeted series. Crosshair types include: Horizontal, Vertical, and Both. The Crosshairs can also be configured to snap to data points by setting the `DomainChart.CrosshairsSnapToData` property to true, otherwise the crosshairs will be interpolated between data points. Annotations can also be enabled to display the crosshair's value along the axis. The Final Value Layer provides a quick view along the axis of the ending value displayed in a series. @@ -102,20 +101,20 @@ The following panes are available: Financial Indicators are often used by traders to measure changes and to show trends in stock prices. These indicators are usually displayed below the price pane because they do not share the same Y-Axis scale. By default the indicator panes are not displayed. The toolbar allows the end user to select which indicator to display at run time. -In order to display an indicator pane initially, the property must be set to a least one type of indicator, as demonstrated in the following code: +In order to display an indicator pane initially, the `IndicatorTypes` property must be set to a least one type of indicator, as demonstrated in the following code: ### Volume Pane The volume pane represents the number of shares traded during a given period. Low volume would indicate little interest, while high volume would indicate high interest with a lot of trades. This can be displayed using column, line or area chart types. The toolbar allows the end user to display the volume pane by selecting a chart type to render the data at runtime. In order the display the pane, a volume type must be set, as demonstrated in the following code: ### Price Pane -This pane displays stock prices and shows the stock's high, low, open and close prices over time. In addition it can display trend lines and overlays. Your end user can choose different chart types from the toolbar. By default, the chart type is set to . You can override the default setting, as demonstrated in the following code: +This pane displays stock prices and shows the stock's high, low, open and close prices over time. In addition it can display trend lines and overlays. Your end user can choose different chart types from the toolbar. By default, the chart type is set to `Auto`. You can override the default setting, as demonstrated in the following code: Note that is recommended to use line chart type if plotting multiple data sources or if plotting data source with a lot of data points. ### Zoom Pane -This pane controls the zoom of all the displayed panes. This pane is displayed by default. It can be turned off by setting the to `none` as demonstrated in the following code: +This pane controls the zoom of all the displayed panes. This pane is displayed by default. It can be turned off by setting the `ZoomSliderType` to `none` as demonstrated in the following code: -Note that you should set the option to the same value as the option is set to. This way, the zoom slider will show correct preview of the price pane. The following code demonstrates how to do this: +Note that you should set the `ZoomSliderType` option to the same value as the `FinancialChart.ChartType` option is set to. This way, the zoom slider will show correct preview of the price pane. The following code demonstrates how to do this: In this example, the stock chart is plotting revenue for United States. @@ -132,4 +131,4 @@ You can find more information about related chart features in these topics: - [Chart Performance](../features/chart-performance.mdx) ## API References - +`FinancialChart` diff --git a/docs/xplat/src/content/en/components/general-changelog-dv-blazor.mdx b/docs/xplat/src/content/en/components/general-changelog-dv-blazor.mdx index 9cf62cbd72..3ca4af6d7a 100644 --- a/docs/xplat/src/content/en/components/general-changelog-dv-blazor.mdx +++ b/docs/xplat/src/content/en/components/general-changelog-dv-blazor.mdx @@ -59,7 +59,7 @@ All notable changes for each version of {ProductName} are documented on this pag |------------|---------|-------------| | 3817 | IgbInput and other web inputs | Components were not registered on load; `defineAllComponents` registration was restored. | | 3743 | IgbGrid | Filtering event detail payload now uses `FilteringExpressionsTree` instead of the previous incorrect type. | -| 2129 | Web inputs | `ReportValidity` and `CheckValidity` returned the wrong type on , `IgbCombo`, `IgbDatePicker`, , , , , and . | +| 2129 | Web inputs | `ReportValidity` and `CheckValidity` returned the wrong type on `Checkbox`, `IgbCombo`, `IgbDatePicker`, `DateRangePicker`, `Input`, `Rating`, `Select`, `Slider` and `Textarea`. | | 2123 | Web inputs | Focus options were not marshalled correctly; they are now treated as a plain object. | | 3684 | IgbChat and other web components | Enum-typed properties were not serialized correctly when passed through the renderer element. | | 3777 | IgbRadialGauge, IgbLinearGauge, IgbBulletGraph | Null reference exception could occur in the gauges. | @@ -94,8 +94,8 @@ All notable changes for each version of {ProductName} are documented on this pag ### New Components - [IgbChat](./interactivity/chat.mdx) - A chat UI component for displaying messages and input interaction. This component is in preview and under active development. Some features are not yet implemented, and APIs may evolve in upcoming releases. -- [IgbSplitter](./layouts/splitter.mdx) - The component provides a resizable split-pane layout that divides the view into two panels — *start* and *end* — separated by a draggable bar. -- [IgbHighlight](./inputs/highlight.mdx) - The component provides efficient searching and highlighting of text projected into it via its default slot. +- [IgbSplitter](./layouts/splitter.mdx) - The `Splitter` component provides a resizable split-pane layout that divides the view into two panels — *start* and *end* — separated by a draggable bar. +- [IgbHighlight](./inputs/highlight.mdx) - The `Highlight` component provides efficient searching and highlighting of text projected into it via its default slot. ### AI Skills @@ -258,9 +258,9 @@ As of the 2025.2 release, we no longer support .NET 6. This corresponds with the #### User Annotations -In {ProductName}, you can now annotate the with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. +In {ProductName}, you can now annotate the `XamDataChart` with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. -This is directly integrated with the available tools of the . +This is directly integrated with the available tools of the `Grid.Toolbar`. {Platform} user-annotation-create @@ -268,8 +268,8 @@ This is directly integrated with the available tools of the -- +- `CategoryAngleAxis.ShouldAvoidAnnotationCollisions` +- `CategoryAngleAxis.ShouldAutoTruncateAnnotations` ### {PackageMaps} (Geographic Map) @@ -293,7 +293,7 @@ Ability for axis annotations to automatically detect collisions and truncate to - The merging can be configured on the grid level to apply either: - `OnSort` - only when the column is sorted. - `Always` - always, regardless of data operations. - The default is `OnSort`. + The default `GridBaseDirective.CellMergeMode` is `OnSort`. ```razor @@ -304,7 +304,7 @@ Ability for axis annotations to automatically detect collisions and truncate to - **Column Pinning** - - Added ability to pin individual columns to a specific side (start or end of the grid), so that you can now have pinning from both sides. This can be done either declaratively by setting the property on the column: + - Added ability to pin individual columns to a specific side (start or end of the grid), so that you can now have pinning from both sides. This can be done either declaratively by setting the `Column.PinningPosition` property on the column: ```razor @@ -325,7 +325,7 @@ col.Pinned = true; ``` - - If property is not set on a column, the column will default to the position specified on the grid's pinning options for columns. + - If property `Column.PinningPosition` is not set on a column, the column will default to the position specified on the grid's pinning options for columns. - **Sorting and Grouping Improvements** - Improved sorting algorithm efficiency using Schwartzian transformation. This is a technique, also known as decorate-sort-undecorate, which avoids recomputing the sort keys by temporarily associating them with the original data records. @@ -334,23 +334,23 @@ col.Pinned = true; - Optimized grouping operations. - **Other Improvements** - - A column's and constrain the user-specified width so that it cannot go outside their bounds. - - The property can now be set as simple strings "local" and "remote" and does not require importing the enum. + - A column's `Column.MinWidth` and `ColumnState.MaxWidth` constrain the user-specified width so that it cannot go outside their bounds. + - The `GridBaseDirective.PagingMode` property can now be set as simple strings "local" and "remote" and does not require importing the `GridPagingMode` enum. ### General #### Added -- +- `DateRangePicker` #### Changed - Updated the readonly styles of most form associated components across all themes to better signify when a component is in a readonly state. -- - - Behavioral change: default placement is "bottom" now. - - Behavioral change: will not render an arrow indicator by default unless with-arrow is set. - - Breaking change: events will no longer return its anchor target in its detail property. You can still access it at event.target.anchor. +- `Tooltip` + - Behavioral change: `Tooltip` default placement is "bottom" now. + - Behavioral change: `Tooltip` will not render an arrow indicator by default unless with-arrow is set. + - Breaking change: `Tooltip` events will no longer return its anchor target in its detail property. You can still access it at event.target.anchor. #### Deprecated -- - is deprecated. Use to render an arrow indicator. +- `Tooltip` - `DisableArrow` is deprecated. Use `WithArrow` to render an arrow indicator. ### Bug Fixes @@ -366,27 +366,27 @@ col.Pinned = true; **Breaking Changes** -- `AzureMapsMapImagery` was renamed to -- `AzureMapsImageryStyle.Imagery` was renamed to +- `AzureMapsMapImagery` was renamed to `AzureMapsImagery` +- `AzureMapsImageryStyle.Imagery` was renamed to `AzureMapsImageryStyle.Satellite` - The following `AzureMapsImageryStyle.Imagery` enum values were renamed to include the Overlay suffix: - - , - - - - - - - - - - - - - - - - - - - - - - + - `AzureMapsImageryStyle.TerraOverlay`, + - `AzureMapsImageryStyle.LabelsRoadOverlay` + - `AzureMapsImageryStyle.LabelsDarkGreyOverlay` + - `AzureMapsImageryStyle.HybridRoadOverlay` + - `AzureMapsImageryStyle.HybridDarkGreyOverlay` + - `AzureMapsImageryStyle.WeatherRadarOverlay` + - `AzureMapsImageryStyle.WeatherInfraredOverlay` + - `AzureMapsImageryStyle.TrafficAbsoluteOverlay` + - `AzureMapsImageryStyle.TrafficRelativeOverlay` + - `AzureMapsImageryStyle.TrafficRelativeDarkOverlay` + - `AzureMapsImageryStyle.TrafficDelayOverlay` + - `AzureMapsImageryStyle.TrafficReducedOverlay` ### {PackageCharts} (Charts) #### New Axis Label Events -The following events have been added to the to allow you to detect different operations on the axis labels: +The following events have been added to the `XamDataChart` to allow you to detect different operations on the axis labels: - `LabelMouseDown` - `LabelMouseUp` @@ -397,34 +397,34 @@ The following events have been added to the to a #### Companion Axis -Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. +Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the `CategoryAngleAxis.CompanionAxisEnabled` property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. #### RadialPieSeries Inset Outlines -There is a new property called to control how outlines on the are rendered. Setting this value to **true** will inset the outlines within the slice shape, whereas a **false** (default) value will place the outlines half-in half-out along the edge of the slice shape. +There is a new property called `RadialPieSeries.UseInsetOutlines` to control how outlines on the `RadialPieSeries` are rendered. Setting this value to **true** will inset the outlines within the slice shape, whereas a **false** (default) value will place the outlines half-in half-out along the edge of the slice shape. **Breaking Changes** -- A fix was made due to an issue where the and properties on class were reversed. This will change the values that and return. +- A fix was made due to an issue where the `ChartMouseEventArgs.PlotAreaPosition` and `ChartMouseEventArgs.ChartPosition` properties on `ChartMouseEventArgs` class were reversed. This will change the values that `PlotAreaPosition` and `ChartPosition` return. ### {PackageGrids} (Grids) #### Cell Suffix Content -Added support for suffix content within the cells that allows you to add additional text or icons to the end of the cell value and style it. The full list of added properties for the cell suffix content is listed below and is available on the and class: +Added support for suffix content within the cells that allows you to add additional text or icons to the end of the cell value and style it. The full list of added properties for the cell suffix content is listed below and is available on the `DataGridColumn` and `DataGridCellEventArgs.CellInfo` class: -- -- +- `DataGridColumn.SuffixText` +- `DataGridColumn.SuffixTextColor` - `SuffixTextFont` -- -- -- -- -- -- -- -- -- +- `DataGridColumn.SuffixIconName` +- `DataGridColumn.SuffixIconCollectionName` +- `DataGridColumn.SuffixIconStroke` +- `DataGridColumn.SuffixIconFill` +- `DataGridColumn.SuffixIconViewBoxLeft` +- `DataGridColumn.SuffixIconViewBoxTop` +- `DataGridColumn.SuffixIconViewBoxWidth` +- `DataGridColumn.SuffixIconViewBoxHeight` +- `DataGridColumn.TextDecoration` Please note that the maximum size available for the icons is 24x24. You can provide an icon that is larger or smaller than this, but you will need to configure the viewbox settings in order to properly scale it to fit in the 24x24 space so it is fully visible. @@ -432,29 +432,29 @@ Please note that the maximum size available for the icons is 24x24. You can prov | Bug Number | Control | Description | |------------|---------|------------------| -|31624 | | Resizing the containing window of the causes the chart to fail to render the series| -|37307 | | JS Heap, Nodes, and Listeners leakage on IgbCheckBox| -|37930 | | Data Annotation Overlay Text Color not working| -|27304 | | Zoom rectangle is not positioned the same as the background rectangle| -|30600 | | No textStyle property for either the chart or series (pie chart has this)| -|38231 | | Unpinned column does not return to the original position if hidden columns exist| +|31624 | `CategoryChart` | Resizing the containing window of the `CategoryChart` causes the chart to fail to render the series| +|37307 | `Checkbox` | JS Heap, Nodes, and Listeners leakage on IgbCheckBox| +|37930 | `XamDataChart` | Data Annotation Overlay Text Color not working| +|27304 | `XamDataChart` | Zoom rectangle is not positioned the same as the background rectangle| +|30600 | `XamDoughnutChart` | No textStyle property for either the chart or series (pie chart has this)| +|38231 | `Grid` | Unpinned column does not return to the original position if hidden columns exist| |33861 | Excel Library | Adding line chart corrupts excel File for German culture| ### Enhancements #### IgbBulletGraph -- Added new property +- Added new `XamLinearGauge.LabelsVisible` property #### Charts - New properties added to the DataToolTipLayer, ItemToolTipLayer, and CategoryToolTipLayer to aid in styling: `ToolTipBackground`, `ToolTipBorderBrush`, and `ToolTipBorderThickness` -- New properties added to the DataLegend to aid in styling: , , and . The and default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. +- New properties added to the DataLegend to aid in styling: `ContentBackground`, `ContentBorderBrush`, and `ContentBorderThickness`. The `ContentBorderBrush` and `ContentBorderThickness` default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. -- Added a new property to called that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. +- Added a new property to `ChartMouseEventArgs` called `WorldPosition` that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. -- Added to and . This allows you to configure the opacity applied to highlighted series. +- Added `SeriesViewer.HighlightingFadeOpacity` to `SeriesViewer` and `DomainChart`. This allows you to configure the opacity applied to highlighted series. #### IgbDataGrid @@ -462,7 +462,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov #### IgbLinearGauge -- Added new property +- Added new `XamLinearGauge.LabelsVisible` property ## **{PackageVerChanges-25-1-AUG}** @@ -471,7 +471,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov #### Azure Map Imagery Support -The now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. +The `XamGeographicMap` now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. Note: Support for Bing Maps imagery is being phased out. Existing enterprise keys can still be used to access Bing Maps, ensuring your current applications continue to function while you transition to Azure maps. @@ -482,25 +482,25 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft | Bug Number | Control | Description | |------------|---------|------------------| -|26952 | | e.Detail is null in Change event in Razor/JS| -|26953 | | Marking a tab selected won't apply on subsequent attempts| -|31910 | | An error will happen when I bind a value using the "@bind-Value" syntax and click the clear button| -|31323 | , , `IgbCombo` | A NullReferenceException happens when the data type has a collection-type property, and the 1st element of that collection is null| -|38903 | | Dropdown list is not displaying in the correct location for components inside the tab| -|[139](https://github.com/IgniteUI/igniteui-blazor/issues/139) | , | Date picker and data time input do not support nullable values| +|26952 | `Tabs` | e.Detail is null in Change event in Razor/JS| +|26953 | `Tabs` | Marking a tab selected won't apply on subsequent attempts| +|31910 | `DatePicker` | An error will happen when I bind a value using the "@bind-Value" syntax and click the clear button| +|31323 | `XamDataChart`, `Grid`, `IgbCombo` | A NullReferenceException happens when the data type has a collection-type property, and the 1st element of that collection is null| +|38903 | `Tabs` | Dropdown list is not displaying in the correct location for components inside the tab| +|[139](https://github.com/IgniteUI/igniteui-blazor/issues/139) | `DatePicker`, `DateTimeInput` | Date picker and data time input do not support nullable values| ### General The following properties of these components are now nullable: -- : -- : , -- : , , -- : , , -- `DateTimePicker`: , , -- : -- : , , , , , -- : , -- : , -- : , , +- `Button`: `Form` +- `Calendar`: `DatePicker.SpecialDates`, `DatePicker.DisabledDates` +- `Combo`: `ValueKey`, `DisplayKey`, `GroupKey` +- `DatePicker`: `Value`, `Min`, `Max` +- `DateTimePicker`: `Value`, `Min`, `Max` +- `Dropdown`: `PieChartBase.SelectedItem` +- `Input`: `Pattern`, `MinLength`, `MaxLength`, `DatePicker.Min`, `DatePicker.Max`, `Step` +- `DatePicker.Select`: `DatePicker.Value`, `PieChartBase.SelectedItem` +- `Tile`: `ColumnState.ColStart`, `RowStart` +- `TileManager`: `MinColumnWidth`, `MinRowHeight`, `Gap` ## **{PackageVerChanges-25-1-JULY}** @@ -508,9 +508,9 @@ The following properties of these components are now nullable: | Bug Number | Control | Description | |------------|---------|------------------| -|36448 | | Radial label format properties do not work. (eg. Title, SubTitles)| -|37718 | | Unexpected scrolling occurred when a new row was added to a grid that is in a tab panel| -|37855 | | Crypto.randomUID not found error is thrown if a grid contains HeaderTemplate and the page is accessed using unsecured(http) protocol| +|36448 | `XamRadialGauge` | Radial label format properties do not work. (eg. Title, SubTitles)| +|37718 | `Tab` | Unexpected scrolling occurred when a new row was added to a grid that is in a tab panel| +|37855 | `Grid` | Crypto.randomUID not found error is thrown if a grid contains HeaderTemplate and the page is accessed using unsecured(http) protocol| ### {PackageCharts} (Charts) @@ -536,16 +536,16 @@ For more details please visit: - Data Annotation Slice Layer - Data Annotation Strip Layer -- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. +- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose `LayoutMode` property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. -- The property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. +- The `SeriesViewer.DefaultInteraction` property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. -- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. +- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an `ValueLayer.OverlayText` property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. - [Trendline Layer](./charts/features/chart-trendlines.mdx) series type that allows you to apply a single trend line per trend line layer to a particular series. This allows the usage of multiple trend lines on a single series since you can have multiple [TrendlineLayer](./charts/features/chart-overlays.mdx) series types in the chart. ### General -- component provides a way to display a tooltip for a specific element. To use, set content as desired and link via the property to the target element's id: +- `Tooltip` component provides a way to display a tooltip for a specific element. To use, set content as desired and link via the `Anchor` property to the target element's id: @@ -558,25 +558,25 @@ For more details please visit: - The tooltip can be further customized with `Show/HideDelay`, around the target and customizable `Show/HideTriggers` events. + The tooltip can be further customized with `Show/HideDelay`, `Placement` around the target and customizable `Show/HideTriggers` events. ### Changes - A number of enumerations have been renamed and/or merged with others. Renames (with affected components): - - ( and ) has been renamed to - - (), (), (), (), () have been merged and renamed to - - () has been renamed to - - () and () have been merged and renamed to - - ( and ) and () have been merged and renamed to - - () has been renamed to - - () has been renamed to/merged with - - ( and ) has been renamed to - - () and () have been merged and renamed to - - ( and ) has been renamed to - - ( and ) has been renamed to -- - - Simplified configuration by removing the need to define separate panel and linking the panel and tab header. The `Panel` property and the `IgbTabPanel` itself have been removed. Content can be now assigned directly to the and header text can be set conveniently via the new property or by projecting an element to `slot="label"` for more involved customization. + - `BaseAlertLikePosition` (`Snackbar` and `Toast`) has been renamed to `AbsolutePosition` + - `ButtonGroupAlignment` (`ButtonGroup`), `CalendarOrientation` (`Calendar`), `CardActionsOrientation` (`CardActions`), `DatePickerOrientation` (`DatePicker`), `RadioGroupAlignment` (`RadioGroup`) have been merged and renamed to `ContentOrientation` + - `CalendarBaseSelection` (`Calendar`) has been renamed to `CalendarSelection` + - `CarouselAnimationType` (`Carousel`) and `StepperHorizontalAnimation` (`Stepper`) have been merged and renamed to `HorizontalTransitionAnimation` + - `CheckboxBaseLabelPosition` (`Checkbox` and `Switch`) and `RadioLabelPosition` (`Radio`) have been merged and renamed to `ToggleLabelPosition` + - `DatePickerMode` (`DatePicker`) has been renamed to `PickerMode` + - `DatePickerHeaderOrientation` (`DatePicker`) has been renamed to/merged with `CalendarHeaderOrientation` + - `DropdownPlacement` (`Dropdown` and `DatePicker.Select`) has been renamed to `PopoverPlacement` + - `DropdownScrollStrategy` (`Dropdown`) and `SelectScrollStrategy` (`DatePicker.Select`) have been merged and renamed to `PopoverScrollStrategy` + - `SliderBaseTickOrientation` (`Slider` and `RangeSlider`) has been renamed to `SliderTickOrientation` + - `Slider.TickLabelRotation` (`Slider` and `RangeSlider`) has been renamed to `SliderTickLabelRotation` +- `Tabs` + + Simplified configuration by removing the need to define separate panel and linking the panel and tab header. The `Panel` property and the `IgbTabPanel` itself have been removed. Content can be now assigned directly to the `Tab` and header text can be set conveniently via the new `DatePicker.Label` property or by projecting an element to `slot="label"` for more involved customization. Before: @@ -621,37 +621,37 @@ For more details please visit: ``` -- - - & are now `double` instead of `string` -- - - has been renamed to - - has been renamed to - - now defaults to `Auto` to correctly reflect the default behavior -- - - has been renamed to -- - - & are now `string` properties instead of explicit enums +- `Input` + - `DatePicker.Min` & `DatePicker.Max` are now `double` instead of `string` +- `Stepper` + - `ActiveStepChangingArgsEventArgs` has been renamed to `ActiveStepChangingEventArgs` + - `ActiveStepChangedArgsEventArgs` has been renamed to `ActiveStepChangedEventArgs` + - `StepperTitlePosition` now defaults to `Auto` to correctly reflect the default behavior +- `Tree` + - `TreeSelectionChangeEventArgs` has been renamed to `TreeSelectionEventArgs` +- `Textarea` + - `Autocapitalize` & `Input.InputMode` are now `string` properties instead of explicit enums ### {PackageGrids} (Grids) -- +- `Column` - Added events: `HiddenChange`, `ExpandedChange`, `WidthChange`, `PinnedChange` -- +- `Grid` - Added events: `GroupingExpressionsChange`, `GroupingExpansionStateChange` -- - - Added new parameter in args for `GridCreated` event -- , , - - Added property - - represents a list of key-value pairs [row ID, expansion state]. +- `RowIsland` + - Added new parameter `GridCreatedEventArgsDetail.ParentRowData` in `GridCreatedEventArgsDetail` args for `GridCreated` event +- `Grid`, `HierarchicalGrid`, `TreeGrid` + - Added property - `GridBaseDirective.ExpansionStates` - represents a list of key-value pairs [row ID, expansion state]. - Added event: `ExpansionStatesChange` - Type of `Rendered` event is changed from `VoidHandler` to `ComponentBoolValueChangedEventHandler` - Type of DataChanging event is changed from `ForOfDataChangingEventHandler` to `ForOfDataChangeEventHandler` - Type of DataChanged event is changed from `VoidHandler` to `ForOfDataChangeEventHandler` -- +- `PivotDataSelector` - Added events: `ColumnsExpandedChange`, `RowsExpandedChange`, `FiltersExpandedChange`, `ValuesExpandedChange` ### {PackageDashboards} (Dashboards) -- The now supports propagating the aggregations from its DataGrid view to the chart visualization such as sorting, grouping, filtering and selection. This is currently supported by binding the `DashboardTile.ItemsSource` of the to an instance of . +- The `DashboardTile` now supports propagating the aggregations from its DataGrid view to the chart visualization such as sorting, grouping, filtering and selection. This is currently supported by binding the `DashboardTile.ItemsSource` of the `DashboardTile` to an instance of `LocalDataSource`. ### Enhancements @@ -666,8 +666,8 @@ For more details please visit: | Bug Number | Control | Description | |------------|---------|------------------| -|25997 | | Summaries are only showing for first grouped child row| -|37023 | | Tooltips are cut-off/offscreen if overflow hidden is set.| +|25997 | `Grid` | Summaries are only showing for first grouped child row| +|37023 | `XamDataChart` | Tooltips are cut-off/offscreen if overflow hidden is set.| |37244 | Excel Library | Custom Data Validation is not working| ## **{PackageVerChanges-24-2-MAY}** @@ -676,8 +676,8 @@ For more details please visit: | Bug Number | Control | Description | |------------|---------|------------------| -|37271 | | ParentRowData included to IGridCreatedEventArgs| -|37681 | | Category Chart - values labels are should appear above columns when there is adequate space| +|37271 | `HierarchicalGrid` | ParentRowData included to IGridCreatedEventArgs| +|37681 | `XamDataChart` | Category Chart - values labels are should appear above columns when there is adequate space| |37244 | Excel Library | Custom Data Validation is not working| ## **{PackageVerChanges-24-2-APR}** @@ -689,24 +689,24 @@ For more details please visit: ### Enhancements #### List -- Added new property on called +- Added new property on `ListItem` called `Tabs.Selected` #### Accordion -- Added new events and `Close` +- Added new events `DatePicker.Open` and `Close` ### {PackageGrids} - **All Grids** - - Allow applying initial filtering through property + - Allow applying initial filtering through `FilteringExpressionsTree` property ### Bug Fixes | Bug Number | Control | Description | |------------|---------|------------------| -|25602 | | Loading a layout with one of the date-specific filter operators results in a TypeError console error| +|25602 | `Grid` | Loading a layout with one of the date-specific filter operators results in a TypeError console error| |28480 | `IgbCombo` | Undefined reference error is thrown when a datasource is replaced| -|32598 | | Multi-selection is not working correctly -|36374 | | A previous value was bound when a form was submitted on any touch device| +|32598 | `Grid` | Multi-selection is not working correctly +|36374 | `Input` | A previous value was bound when a form was submitted on any touch device| |37214|General|Intermittent error in Blazor's WebCallback.Register() ## **{PackageVerChanges-24-2-MAR}** @@ -714,14 +714,14 @@ For more details please visit: ### {PackageGrids} - **All Grids** - - Added new for the columns of the grid, allowing the developers to skip some of the summaries + - Added new `DisabledSummaries` for the columns of the grid, allowing the developers to skip some of the summaries - Encapsulate internal grid action button ### Bug Fixes | Bug Number | Control | Description | |------------|---------|------------------| -|35497 | | When ShowAsync and HideAsync Are Called, the Subsequent Code Is Not Executed| +|35497 | `Dialog` | When ShowAsync and HideAsync Are Called, the Subsequent Code Is Not Executed| ## **{PackageVerChanges-24-2-FEB}** @@ -729,9 +729,9 @@ For more details please visit: #### Toolbar -- Added new `GroupHeaderTextStyle` property to and . If set, it will apply to all actions. -- Added new property on called which controls the horizontal alignment of the title text. -- Added new property on called which controls the spacing between items inside the panel. +- Added new `GroupHeaderTextStyle` property to `Grid.Toolbar` and `ToolPanel`. If set, it will apply to all `ToolActionGroupHeader` actions. +- Added new property on `ToolAction` called `SeriesViewer.TitleHorizontalAlignment` which controls the horizontal alignment of the title text. +- Added new property on `ToolActionSubPanel` called `ToolPanel.ItemSpacing` which controls the spacing between items inside the panel. ### Bug Fixes @@ -740,18 +740,18 @@ The following table lists the bug fixes made for the {ProductName} toolset for t | Bug Number | Control | Description | |------------|---------|------------------| |29998 | `IgbCombo` | The Change event callback was fired multiple times in .NET 8| -|30286 | | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| -|34776 | | Repeatedly showing and hiding the IgbDataChart causes memory leakage in JS Heap| -|32906 | | IgbDataChart is showing two xAxis on the top| -|33605 | | ScatterLineSeries is not showing the color of the line correctly in the legend| -|35498 | | Tooltips for the series specified in IncludedSeries are not displayed| -|31344 | | Two way binding for the SelectedRows doesn't work| -|34149 | | Repeatedly showing and hiding the IgbGrid causes memory leakage in JS Heap| -|34224 | | 'There are multiple .NET runtimes present' error is thrown when the app changes from Server mode to WebAssembly mode if 'InteractiveAuto' is used for the render mode| -|34654 | | NullReferenceException is thrown if a data contains an empty list| -|35439 | | CPU usage and Memory consumption are abnormally high when the app is opened in multiple tabs| -|36024 | | The JS heap size never reduced when moving back and forth between two pages with IgbGrid component| -|34053 | | The position of the scale label is shifted| +|30286 | `XamDataChart` | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| +|34776 | `XamDataChart` | Repeatedly showing and hiding the IgbDataChart causes memory leakage in JS Heap| +|32906 | `XamDataChart` | IgbDataChart is showing two xAxis on the top| +|33605 | `XamDataChart` | ScatterLineSeries is not showing the color of the line correctly in the legend| +|35498 | `XamDataChart` | Tooltips for the series specified in IncludedSeries are not displayed| +|31344 | `Grid` | Two way binding for the SelectedRows doesn't work| +|34149 | `Grid` | Repeatedly showing and hiding the IgbGrid causes memory leakage in JS Heap| +|34224 | `Grid` | 'There are multiple .NET runtimes present' error is thrown when the app changes from Server mode to WebAssembly mode if 'InteractiveAuto' is used for the render mode| +|34654 | `Grid` | NullReferenceException is thrown if a data contains an empty list| +|35439 | `Grid` | CPU usage and Memory consumption are abnormally high when the app is opened in multiple tabs| +|36024 | `Grid` | The JS heap size never reduced when moving back and forth between two pages with IgbGrid component| +|34053 | `XamRadialGauge` | The position of the scale label is shifted| |36176 | Excel Library | Exception occurs when loading an Excel workbook that has a LET function| |36379 | Excel Library | Colors with any alpha channel in an excel workbook fail to load| |26218 | Excel Library | Chart's plot area right margin becomes narrower and fill pattern and fill foreground are gone just by loading an Excel file| @@ -785,18 +785,18 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ### General - New [Carousel](./layouts/carousel.mdx) component. -- - - Changed `change` event argument type from to +- `Input` + - Changed `change` event argument type from `ComponentDataValueChangedEventArgs` to `ComponentValueChangedEventArgs` ## **{PackageVerChanges-24-1-SEP}** ### {PackageCharts} (Charts) -- New [Data Pie Chart](./charts/types/data-pie-chart.mdx) - The is a new component that renders a pie chart. This component works similarly to the , in that it will automatically detect the properties on your underlying data model while allowing selection, highlighting, animation and legend support via the ItemLegend component. +- New [Data Pie Chart](./charts/types/data-pie-chart.mdx) - The `DataPieChart` is a new component that renders a pie chart. This component works similarly to the `CategoryChart`, in that it will automatically detect the properties on your underlying data model while allowing selection, highlighting, animation and legend support via the ItemLegend component. -- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. +- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. -- +- `Grid.Toolbar` - New ToolActionCheckboxList A new CheckboxList ToolAction that displays a collection of items with checkboxes for selecting. A grid inside ToolAction CheckboxList grows in height up to 5 items, then a scrollbar is displayed. @@ -813,124 +813,124 @@ The following table lists the bug fixes made for the {ProductName} toolset for t - New [Banner](./notifications/banner.mdx) component. - New [DatePicker](./scheduling/date-picker.mdx) component. -- New component. -- - - Added method. This allows to register and replace icons by SVG files. +- New `Divider` component. +- `Icon` + - Added `SetIconRef` method. This allows to register and replace icons by SVG files. - All components now use icons by reference internally so that it's easy to replace them without explicitly providing custom templates. -- , , , , , , , , **IgbSelectComponent** - - Toggle methods , , methods return **true** now on success. Otherwise **false**. -- - - Added and properties. also supports two-way binding. +- `Combo`, `DatePicker`, `Dialog`, `Dropdown`, `ExpansionPanel`, `NavDrawer`, `Toast`, `Snackbar`, **IgbSelectComponent** + - Toggle methods `DatePicker.Show`, `DatePicker.Hide`, `DatePicker.Toggle` methods return **true** now on success. Otherwise **false**. +- `RadioGroup` + - Added `DatePicker.Name` and `DatePicker.Value` properties. `DatePicker.Value` also supports two-way binding. **Breaking Changes** - Renamed old **IgbDatePicker** to **IgbXDatePicker**. -- Removed component. Use native form instead. +- Removed `Form` component. Use native form instead. - Removed `size` property in favor of the `--ig-size` CSS custom property for the following components: - - , ,, , , , , , , , , , -- , , , - - Renamed property type to . -- - - Renamed property type to . -- , - - Changed event argument type from to . -- - - The `IgbCombo` is now of generic type and the type is now of type `T[]`. This means that either you need to specify `T` or it will be inferred by the assigned type. - - Removed , , properties. + - `Avatar`, `Button`,`IconButton`, `Calendar`, `Chip`, `Dropdown`, `Icon`, `Input`, `List`, `Rating`, `Snackbar`, `Tabs`, `Tree` +- `Badge`, `Chip`, `LinearProgress`, `CircularProgress` + - Renamed `Button.Variant` property type to `StyleVariant`. +- `Calendar` + - Renamed `FieldPipeArgs.WeekStart` property type to `WeekDays`. +- `Checkbox`, `Switch` + - Changed `Change` event argument type from `ComponentBoolValueChangedEventArgs` to `CheckboxChangeEventArgs`. +- `Combo` + - The `IgbCombo` is now of generic type and the `DatePicker.Value` type is now of type `T[]`. This means that either you need to specify `T` or it will be inferred by the assigned `DatePicker.Value` type. + - Removed `PositionStrategy`, `Flip`, `SameWidth` properties. - **IgbSelectComponent** - - Removed , , properties. -- - - Removed `MaxValue` and `MinValue` properties. Use and instead. -- - - Removed property. -- - - Removed old named and properties. Use and . - - Removed old named and properties. Use and . - - Changed type also to `string`. -- - - Changed event argument type from to . -- - - Removed `AriaThumbLower` and `AriaThumbUpper` properties. Use and instead. -- - - Renamed property to . + - Removed `PositionStrategy`, `Flip`, `SameWidth` properties. +- `DateTimeInput` + - Removed `MaxValue` and `MinValue` properties. Use `DatePicker.Max` and `DatePicker.Min` instead. +- `Dropdown` + - Removed `PositionStrategy` property. +- `Input` + - Removed old named `MaxLength` and `MinLength` properties. Use `MaxLength` and `MinLength`. + - Removed old named `Rating.ReadOnly` and `InputMode` properties. Use `DatePicker.ReadOnly` and `InputMode`. + - Changed `InputMode` type also to `string`. +- `Radio` + - Changed event argument type from `ComponentBoolValueChangedEventArgs` to `RadioChangeEventArgs`. +- `RangeSlider` + - Removed `AriaThumbLower` and `AriaThumbUpper` properties. Use `ThumbLabelLower` and `ThumbLabelUpper` instead. +- `Rating` + - Renamed `ReadOnly` property to `DatePicker.ReadOnly`. ### {PackageGrids} - **All Grids** - Added `GetColumns` / `GetColumnsAsync` methods, which return the grid columns collection. - Added new `RowClick` event. -- - - Added property for a . - - Added horizontal layout. Can be enabled inside the new property as `RowLayout` `Horizontal`. - - Added row dimension summaries for horizontal layout only. Can be enabled for each by setting to **true**. - - Added `HorizontalSummariesPosition` property to the , configuring horizontal summaries position. - - Added row headers for the row dimensions. Can be enabled inside the new property as `ShowHeaders` **true**. +- `PivotGrid` + - Added `Sortable` property for a `PivotDimension`. + - Added horizontal layout. Can be enabled inside the new `PivotUI` property as `RowLayout` `Horizontal`. + - Added row dimension summaries for horizontal layout only. Can be enabled for each `PivotDimension` by setting `HorizontalSummary` to **true**. + - Added `HorizontalSummariesPosition` property to the `PivotUI`, configuring horizontal summaries position. + - Added row headers for the row dimensions. Can be enabled inside the new `PivotUI` property as `ShowHeaders` **true**. - Keyboard navigation now can move in to row headers back and forth from any row dimension headers or column headers. - Added keyboard interactions for row dimension collapse using ALT + arrows and row headers sorting using CTRL + arrows. **Breaking Changes** - **All Grids** - - + - `RowIsland` - Removed `DisplayDensity` deprecated property. - - Renamed , , `ContentColumns` properties to , and `ContentColumnList`. Recommended to use the new `GetColumns` method instead. - - Renamed `RowDelete` and `RowAdd` event argument type to . - - Renamed `ContextMenu` event argument type to . - - Removed , , events `RowID` and properties. Use `RowKey` instead. -- - - removed `ShowPivotConfigurationUI` property. Use and set inside it the new `ShowConfiguration` option. -- - - Removed `Movable` property. Use Grid's property now. - - Removed `ColumnChildren` property. Use instead. -- - - Removed property. Use instead. -- - - Removed `IsFirstPageDisabled` and `IsLastPageDisabled` properties. Use and instead. + - Renamed `Grid.Columns`, `ActualColumns`, `ContentColumns` properties to `GridBaseDirective.ColumnList`, `Grid.ActualColumnList` and `ContentColumnList`. Recommended to use the new `GetColumns` method instead. + - Renamed `RowDelete` and `RowAdd` event argument type to `RowDataCancelableEventArgs`. + - Renamed `ContextMenu` event argument type to `GridContextMenuEventArgs`. + - Removed `GridEditEventArgs`, `GridEditDoneEventArgs`, `PinRowEventArgs` events `RowID` and `Grid.PrimaryKey` properties. Use `RowKey` instead. +- `PivotGrid` + - removed `ShowPivotConfigurationUI` property. Use `PivotUI` and set inside it the new `ShowConfiguration` option. +- `Column` + - Removed `Movable` property. Use Grid's `Grid.Moving` property now. + - Removed `ColumnChildren` property. Use `ChildColumns` instead. +- `ColumnGroup` + - Removed `Children` property. Use `Column.ChildColumns` instead. +- `Paginator` + - Removed `IsFirstPageDisabled` and `IsLastPageDisabled` properties. Use `IsFirstPage` and `IsLastPage` instead. ## **{PackageVerChanges-24-1-JUN}** ### General -- , - exposed to enable validation rules being enforced without restricting user input. -- - property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. -- - is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the property of and/or instead. +- `Input`, `Textarea` - exposed `Input.ValidateOnly` to enable validation rules being enforced without restricting user input. +- `Dropdown` - `PositionStrategy` property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. +- `DockManager` - `SplitPane` `IsMaximized` is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the `IsMaximized` property of `TabGroupPane` and/or `ContentPane` instead. ### {PackageGrids} - `DisplayDensity` deprecated in favor of the `--ig-size` CSS custom property. Check out the [Grid Size](./grids/_shared/size.mdx) topic for more. -- - The type of Columns, Rows, Filters from option is now array of IgbPivotDimension - `IgbPivotDimension[]`, it was `IgbPivotDimensionCollection` previously. +- `PivotGrid` - The type of Columns, Rows, Filters from `PivotConfiguration` option is now array of IgbPivotDimension - `IgbPivotDimension[]`, it was `IgbPivotDimensionCollection` previously. -The type of Values from option is now array of IgbPivotValue - `IgbPivotValue[]`, it was `IgbPivotValueCollection` previously. +The type of Values from `PivotConfiguration` option is now array of IgbPivotValue - `IgbPivotValue[]`, it was `IgbPivotValueCollection` previously. ### {PackageCharts} (Charts) -- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property toggles grouping with each series opting in can assign group text via the property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. +- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property `GroupRowVisible` toggles grouping with each series opting in can assign group text via the `CrosshairLayer.DataLegendGroup` property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. -- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for and . Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. +- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for `CategoryChart` and `XamDataChart`. Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and `SeriesViewer.SelectedSeriesItems` are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. -- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. +- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. -- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the property. +- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a `SeriesViewer.HighlightingMode` property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the `SeriesViewer.HighlightingTransitionDuration` property. -- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new . Can be toggled via and styled via . +- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new `XYChart.HighlightedItemsSource`. Can be toggled via `SeriesViewer.HighlightedValuesDisplayMode` and styled via `FillBrushes`. -- - New option for ToolAction for outlining a border around specific tools of choice. +- `Grid.Toolbar` - New `ToolActionGroupHeader.IsHighlighted` option for ToolAction for outlining a border around specific tools of choice. ### {PackageGauges} (Gauges) -- - - New label for the highlight needle. and and many other styling related properties for the HighlightLabel were added. +- `XamRadialGauge` + - New label for the highlight needle. `HighlightLabelText` and `HighlightLabelSnapsToNeedlePivot` and many other styling related properties for the HighlightLabel were added. ## **{PackageVerChanges-23-2-APR2}** ### {PackageCharts} (Charts) -Data Filtering via the property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. +Data Filtering via the `XYChart.InitialFilter` property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. -- - - The Performance bar will now reflect a difference between the value and new when the is applied to the 'Overlay' setting. The highlight value will show a filtered/subset measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. -- - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. -- - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamBulletGraph` + - The Performance bar will now reflect a difference between the value and new `XamRadialGauge.HighlightValue` when the `XamRadialGauge.HighlightValueDisplayMode` is applied to the 'Overlay' setting. The highlight value will show a filtered/subset measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. +- `XamLinearGauge` + - New highlight needle was added. `XamRadialGauge.HighlightValue` and `XamRadialGauge.HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamRadialGauge` + - New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. ## **{PackageVerChanges-23-2-APR}** @@ -946,31 +946,31 @@ Data Filtering via the - - New property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. - - New property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. - - New property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. -- - - Added property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. -- - - added. When enabled selecting the same value will reset the component. **Behavioral change** - In previous releases this was the default behavior of the rating component. Make sure to set if you need to keep this behavior in your application. -- , +- `DockManager` + - New `ProximityDock` property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. + - New `ContainedInBoundaries` property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. + - New `ShowPaneHeaders` property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. +- `Tree` + - Added `ToggleNodeOnClick` property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. +- `Rating` + - `AllowReset` added. When enabled selecting the same value will reset the component. **Behavioral change** - In previous releases this was the default behavior of the rating component. Make sure to set `AllowReset` if you need to keep this behavior in your application. +- `DatePicker.Select`, `Dropdown` - exposed `selectedItem`, `items` and `groups` getters -- - - New title/subtitle properties. , will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and . Finally, the new will allow the value to correspond with the needle's position. - - New and properties for the . This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamRadialGauge` + - New title/subtitle properties. `TitleText`, `SubtitleText` will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and `TitleExtent`. Finally, the new `TitleDisplaysValue` will allow the value to correspond with the needle's position. + - New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) + - New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. - `RadialChart` - New Label Mode - The for the now exposes a property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. + The `CategoryAngleAxis` for the now exposes a `LabelMode` property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. ### General -- , , , - - has been renamed to -- - - has been renamed to - - has been renamed to +- `Input`, `MaskInput`, `DateTimeInput`, `Rating` + - `ReadOnly` has been renamed to `DatePicker.ReadOnly` +- `Input` + - `MaxLength` has been renamed to `MaxLength` + - `MinLength` has been renamed to `MinLength` ### Deprecations @@ -982,18 +982,18 @@ Data Filtering via the - - `MinValue` and `MaxValue` properties have been deprecated. Please, use and instead. -- - - `AriaLabelLower` and `AriaLabelUpper` properties have been deprecated. Please, use and instead. +- `DateTimeInput` + - `MinValue` and `MaxValue` properties have been deprecated. Please, use `DatePicker.Min` and `DatePicker.Max` instead. +- `RangeSlider` + - `AriaLabelLower` and `AriaLabelUpper` properties have been deprecated. Please, use `ThumbLabelLower` and `ThumbLabelUpper` instead. ### Removed - Removed our own `dir` attribute which shadowed the default one. This is a non-breaking change. -- - `ariaLabel` shadowed property. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Slider` - `ariaLabel` shadowed property. This is a non-breaking change. +- `Checkbox` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Switch` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Radio` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. ## **{PackageVerChanges-23-2-JAN}** @@ -1003,14 +1003,14 @@ Data Filtering via the and now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. +- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The `CategoryChart` and `XamDataChart` now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. ## **{PackageVerChanges-23-2}** ### {PackageGrids} - Toolbar - - Save tool action has been added to save the chart to an image via the clipboard. -- Vertical orientation has been added via the toolbar's property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. +- Vertical orientation has been added via the toolbar's `Toolbar.Orientation` property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. - Custom SVG icons support was added via the toolbar's `renderImageFromText` method, further enhancing custom tool creation. ### {PackageGrids} (Grid) @@ -1021,13 +1021,13 @@ Data Filtering via the [Toolbar](./menus/toolbar.mdx) - component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tools when linked to our or components, but it also gives you the ability to create custom tools for your project. +- [Toolbar](./menus/toolbar.mdx) - component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tools when linked to our `XamDataChart` or `CategoryChart` components, but it also gives you the ability to create custom tools for your project. ### {PackageCharts} (Charts) -- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the and by adding to the new collection. +- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the `ValueLayer` is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the `CategoryChart` and `FinancialChart` by adding to the new `XYChart.ValueLines` collection. -- It is now possible to apply a **dash array** to the different parts of the series of the . You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. +- It is now possible to apply a **dash array** to the different parts of the series of the `XamDataChart`. You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. ## **{PackageVerChanges-22-2.65}** ### New Components @@ -1041,7 +1041,7 @@ Data Filtering via the has been introduced to from , and part of the event arguments that are emitted by the `RowAdded` and `RowDeleted` events. When the grid has a primary key attribute added, then the emitted primaryKey event argument represents the row ID, otherwise it defaults to null. +- A new argument `Grid.PrimaryKey` has been introduced to `RowDataEventArgs` from `ActiveStepChangingEventArgs.Detail`, and part of the event arguments that are emitted by the `RowAdded` and `RowDeleted` events. When the grid has a primary key attribute added, then the emitted primaryKey event argument represents the row ID, otherwise it defaults to null. - `RowSelectionChanging` event arguments are changed. Now, the `OldSelection`, `NewSelection`, `Added` and `Removed` collections no longer consist of the row keys of the selected elements when the grid has set a primaryKey, but now in any case the row data is emitted. - When the grid is working with remote data and a primary key has been set, the selected rows that are not currently part of the grid view will be emitted for a partial row data object. - When selected row is deleted from the grid component `RowSelectionChanging` event will no longer be emitted. @@ -1050,15 +1050,15 @@ Data Filtering via the properties `InBaseDimension` and `InOption` have been deprecated and renamed to `BaseDimension` and `Options` respectively. +- The `PivotDateDimension` properties `InBaseDimension` and `InOption` have been deprecated and renamed to `BaseDimension` and `Options` respectively. ### {PackageInputs} (Inputs) -- , the StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) is now trimmed down to DatePart instead of DateTimeInputDatePart -- and , added component validation along with styles for invalid state +- `DateTimeInput`, the StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) is now trimmed down to DatePart instead of DateTimeInputDatePart +- `Radio` and `RadioGroup`, added component validation along with styles for invalid state - `IgbMask`, added the capability to escape mask pattern literals. -- added a property that controls the shape of the badge and can be either or `Rounded`. The default shape of the badge is rounded. -- , the `RoundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added attribute that can be , `Rounded` or . The default shape of the avatar is . +- `Badge` added a `Avatar.Shape` property that controls the shape of the badge and can be either `Square` or `Rounded`. The default shape of the badge is rounded. +- `Avatar`, the `RoundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added `Shape` attribute that can be `Square`, `Rounded` or `Circle`. The default shape of the avatar is `Square`. ### {PackageDockManager} (DockManager) @@ -1086,7 +1086,7 @@ Added significant improvements to default behaviors, and refined the Category Ch - Responsive layouts for horizontal label rotation based on browser / screen size. - Enhanced rendering for rounded labels on all platforms. - Added marker properties to StackedFragmentSeries. -- Added property. +- Added `SeriesViewer.ShouldPanOnMaximumZoom` property. - New Category Axis Properties: - ZoomMaximumCategoryRange - ZoomMaximumItemSpan @@ -1107,33 +1107,33 @@ Added significant improvements to default behaviors, and refined the Category Ch - GroupSortDescriptions -[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using | . These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. +[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using `XYChart.IncludedProperties` | `XYChart.ExcludedProperties`. These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. ### {PackageGrids} (Data Grid) -- Changed **{IgPrefix}Column** to -- Changed **GridCellEventArgs** to -- Changed **GridSelectionMode** to -- Changed **SummaryOperand** to +- Changed **{IgPrefix}Column** to `DataGridColumn` +- Changed **GridCellEventArgs** to `DataGridCellEventArgs` +- Changed **GridSelectionMode** to `DataGridSelectionMode` +- Changed **SummaryOperand** to `DataSourceSummaryOperand` ## **{PackageVerChanges-22-1}** ### {PackageCharts} (Charts) -- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the , but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. +- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the `SeriesViewer.Legend`, but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. - Added the highly-configurable [DataToolTip](./charts/features/chart-data-tooltip.mdx) which displays values and titles of series as well as legend badges of series in a tooltip. This is now the default tooltip for all chart types. -- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the property to true. From there, you can set the property to determine how long your animation should take to complete and the to determine the type of animation that takes place. -- Added `AssigningCategoryStyle` event, is now available to all series in . This event is handled when you want to conditionally configure aspects of the series items such as background-color and highlighting. -- New enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. +- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the `IsTransitionInEnabled` property to true. From there, you can set the `TransitionInDuration` property to determine how long your animation should take to complete and the `TransitionInMode` to determine the type of animation that takes place. +- Added `AssigningCategoryStyle` event, is now available to all series in `XamDataChart`. This event is handled when you want to conditionally configure aspects of the series items such as `CrosshairLayer.Fill` background-color and highlighting. +- New `AllowedPositions` enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. - New corner radius properties added for Annotation Layers; used to round-out the corners of each of the callouts. Note, a corner radius has now been added by default. - - for CalloutLayer - - for FinalValueLayer - - and for CrosshairLayer -- New and enumeration to enable scrollbars in various ways. When paired with or , you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. -- New , determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. , , `PercentChangeAxis`). -- New determines whether to include the spline shape in the axis range requested of the axis. -- New , determines the maximum allowed value for the plotted series when using . The gap determines the amount of space between columns or bars of plotted series. -- New , determines the minimum allowed pixel-based value for the plotted series when using to ensure there is always some spacing between each category. + - `CalloutCornerRadius` for CalloutLayer + - `AxisAnnotationBackgroundCornerRadius` for FinalValueLayer + - `CrosshairLayer.XAxisAnnotationBackgroundCornerRadius` and `CrosshairLayer.YAxisAnnotationBackgroundCornerRadius` for CrosshairLayer +- New `SeriesViewer.HorizontalViewScrollbarMode` and `SeriesViewer.VerticalViewScrollbarMode` enumeration to enable scrollbars in various ways. When paired with `XYChart.IsVerticalZoomEnabled` or `XYChart.IsHorizontalZoomEnabled`, you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. +- New `NumericXAxis.FavorLabellingScaleEnd`, determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. `NumericXAxis`, `NumericYAxis`, `PercentChangeAxis`). +- New `IsSplineShapePartOfRange` determines whether to include the spline shape in the axis range requested of the axis. +- New `XAxisMaximumGap`, determines the maximum allowed value for the plotted series when using `XAxisGap`. The gap determines the amount of space between columns or bars of plotted series. +- New `XAxisMinimumGapSize`, determines the minimum allowed pixel-based value for the plotted series when using `XAxisGap` to ensure there is always some spacing between each category. ### {PackageGrids} (Data Grid) @@ -1161,11 +1161,11 @@ The following breaking changes were introduced ### {PackageGrids} (Data Grid) -- Changed property from type string[] to string. +- Changed `ComboEditor.ValueField` property from type string[] to string. ### {PackageInputs} (Inputs) -- A new `ValueChanged` event supports 2-way binding and should only be handled if you have not bound the property. In order to read the Value field from the control without data binding the `ValueChanged` event should be handled, otherwise if your data is not bound you should use GetCurrentValueAsync to read the controls Value. +- A new `ValueChanged` event supports 2-way binding and should only be handled if you have not bound the `DatePicker.Value` property. In order to read the Value field from the control without data binding the `ValueChanged` event should be handled, otherwise if your data is not bound you should use GetCurrentValueAsync to read the controls Value. #### Date Picker - Changed `ValueChanged` event to `SelectedValueChanged`. @@ -1202,29 +1202,29 @@ For example, ``` ``` instead of ``` ``` This release introduces a few improvements and simplifications to visual design and configuration options for the geographic map and all chart components. -- Changed property's type to **YAxisLabelLocation** from **AxisLabelLocation** in and -- Changed property's type to **XAxisLabelLocation** from **AxisLabelLocation** in -- Added property to -- Added support for representing geographic series of in a legend -- Added crosshair lines by default in and -- Added crosshair annotations by default in and -- Added final value annotation by default in +- Changed `XYChart.YAxisLabelLocation` property's type to **YAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` and `CategoryChart` +- Changed `XYChart.XAxisLabelLocation` property's type to **XAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` +- Added `XYChart.XAxisLabelLocation` property to `CategoryChart` +- Added support for representing geographic series of `XamGeographicMap` in a legend +- Added crosshair lines by default in `FinancialChart` and `CategoryChart` +- Added crosshair annotations by default in `FinancialChart` and `CategoryChart` +- Added final value annotation by default in `FinancialChart` - Added new properties in Category Chart and Financial Chart: - - and other properties for customizing crosshairs lines - - and other properties for customizing crosshairs annotations - - and other properties for customizing final value annotations - - that allow changing opacity of series fill (e.g. Area chart) - - that allows changing thickness of markers + - `XYChart.CrosshairsLineThickness` and other properties for customizing crosshairs lines + - `XYChart.CrosshairsAnnotationXAxisBackground` and other properties for customizing crosshairs annotations + - `XYChart.FinalValueAnnotationsBackground` and other properties for customizing final value annotations + - `XYChart.AreaFillOpacity` that allow changing opacity of series fill (e.g. Area chart) + - `XYChart.MarkerThickness` that allows changing thickness of markers - Added new properties in Category Chart, Financial Chart, Data Chart, and Geographic Map: - - that allows which marker type is assigned to multiple series in the same chart - - for setting badge shape of all series represented in a legend - - for setting badge complexity on all series in a legend + - `SeriesViewer.MarkerAutomaticBehavior` that allows which marker type is assigned to multiple series in the same chart + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape of all series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on all series in a legend - Added new properties in Series in Data Chart and Geographic Map: - - for setting badge shape on specific series represented in a legend - - for setting badge complexity on specific series in a legend + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape on specific series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on specific series in a legend - Changed default vertical crosshair line stroke from #000000 to #BBBBBB in category chart and series -- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's property to `SmartIndexed` enum value -- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's property to `MatchSeries` enum value +- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's `SeriesViewer.MarkerAutomaticBehavior` property to `SmartIndexed` enum value +- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's `SeriesViewer.LegendItemBadgeMode` property to `MatchSeries` enum value - Changed color palette of series and markers displayed in all charts to improve accessibility | Old brushes/outlines | New outline/brushes | @@ -1242,38 +1242,38 @@ This release introduces a few improvements and simplifications to visual design - Added `SelectionChanged` event. Used to detect changes on selection interactions e.g. Multiple row selection. - Breaking Changes: - - Changed grid's SummaryScope property's type to SummaryScope from - - Changed GroupHeaderDisplayMode property's type to GroupHeaderDisplayMode from + - Changed grid's SummaryScope property's type to SummaryScope from `DataSourceSummaryScope` + - Changed GroupHeaderDisplayMode property's type to GroupHeaderDisplayMode from `DataSourceSectionHeaderDisplayMode` ## **{PackageVerChanges-21-1}** ### New Visual Designs #### Charts & Maps -This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. , , and . +This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. `XamDataChart`, `CategoryChart`, and `FinancialChart`. - Changed Bar/Column/Waterfall series to have square corners instead of rounded corners - Changed Scatter High Density series’ colors for heat min property from #8a5bb1 to #000000 - Changed Scatter High Density series’ colors for heat max property from #ee5879 to #ee5879 - Changed Financial/Waterfall series’ `NegativeBrush` and `NegativeOutline` properties from #C62828 to #ee5879 - Changed marker's thickness to 2px from 1px -- Changed marker's fill to match the marker's outline for , , , . You can use set property to Normal to undo this change -- Compressed labelling for the and +- Changed marker's fill to match the marker's outline for `PointSeries`, `BubbleSeries`, `ScatterSeries`, `PolarScatterSeries`. You can use set `XYChart.MarkerFillMode` property to Normal to undo this change +- Compressed labelling for the `TimeXAxis` and `OrdinalTimeXAxis` - New Marker Properties: - - series. - Can be set to `MatchMarkerOutline` so the marker depends on the outline - - series. - Can be set to a value 0 to 1 - - series. - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color + - series.`XYChart.MarkerFillMode` - Can be set to `MatchMarkerOutline` so the marker depends on the outline + - series.`XYChart.MarkerFillOpacity` - Can be set to a value 0 to 1 + - series.`XYChart.MarkerOutlineMode` - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color - New Series Property: - - series. - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series -- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the , listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series +- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the `XYChart.ComputedPlotAreaMarginMode`, listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - New Highlighting Properties - - chart. - Sets whether hovered or non-hovered series to fade, brighten - - chart. - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item + - chart.`SeriesViewer.HighlightingMode` - Sets whether hovered or non-hovered series to fade, brighten + - chart.`SeriesViewer.HighlightingBehavior` - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item - Note, in previous releases the highlighting was limited to fade on hover. - Added Highlighting Stacked, Scatter, Polar, Radial, and Shape series: - Added Annotation layers to Stacked, Scatter, Polar, Radial, and Shape series: @@ -1296,8 +1296,8 @@ for example: #### Chart Legend -- Added horizontal property to ItemLegend that can be used with Bubble, Donut, and Pie Chart -- Added property - Enables series highlighting when hovering over legend items +- Added horizontal `Toolbar.Orientation` property to ItemLegend that can be used with Bubble, Donut, and Pie Chart +- Added `SeriesViewer.LegendHighlightingMode` property - Enables series highlighting when hovering over legend items #### Geographic Map @@ -1312,29 +1312,29 @@ These features are CTP ### {PackageGrids} (Data Grid) -- Added aka Excel-style Editing, instantly begin editing when typing. -- Added property - By default double-clicking is required to enter edit mode. This can be set to to allow for edit mode to occur when selecting a new cell. -- Added property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) -- Added property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) -- Added - method. -- Added Row Range Selection - With property set to MultipleRow the following new functionality is now included: +- Added `EditOnKeyPress` aka Excel-style Editing, instantly begin editing when typing. +- Added `EditModeClickAction` property - By default double-clicking is required to enter edit mode. This can be set to `SingleClick` to allow for edit mode to occur when selecting a new cell. +- Added `EnterKeyBehaviors` property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) +- Added `EnterKeyBehaviorAfterEdit` property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) +- Added `Grid.SelectAllRows` - method. +- Added Row Range Selection - With `GridSelectionMode` property set to MultipleRow the following new functionality is now included: - Click and drag to select rows - SHIFT and click to select multiple rows. - SHIFT and press the + arrow keys to select multiple rows. -- Pressing space bar toggles selection of active row via property set to MultipleRow or SingleRow +- Pressing space bar toggles selection of active row via `GridSelectionMode` property set to MultipleRow or SingleRow - Added Column Summaries to Column Options Dialog. ### {PackageInputs} (Inputs) #### Date Picker -- - Toggles Today button visibility -- - Adds a label above the date value -- property - adds custom text when no value is selected -- - Customize input date string e.g. (`yyyy-MM-dd`) -- - Specifies whether to display selected dates as LongDate or ShortDate -- - Specifies first day of week -- - Specifies when to display first week of the year, e.g. (First Full Week, First Four day Week) -- - Toggles Week number visibility -- & - Date limits, specifying a range of available selectable dates. +- `DatePicker.ShowTodayButton` - Toggles Today button visibility +- `DatePicker.Label` - Adds a label above the date value +- `DatePicker.Placeholder` property - adds custom text when no value is selected +- `IWorksheetCellFormat.FormatString` - Customize input date string e.g. (`yyyy-MM-dd`) +- `DateFormat` - Specifies whether to display selected dates as LongDate or ShortDate +- `DatePicker.FirstDayOfWeek` - Specifies first day of week +- `DatePicker.FirstWeekOfYear` - Specifies when to display first week of the year, e.g. (First Full Week, First Four day Week) +- `DatePicker.ShowWeekNumbers` - Toggles Week number visibility +- `DatePicker.MinDate` & `DatePicker.MaxDate` - Date limits, specifying a range of available selectable dates. - Added Accessibility diff --git a/docs/xplat/src/content/en/components/general-changelog-dv-react.mdx b/docs/xplat/src/content/en/components/general-changelog-dv-react.mdx index fd86d44717..eb0fef70ad 100644 --- a/docs/xplat/src/content/en/components/general-changelog-dv-react.mdx +++ b/docs/xplat/src/content/en/components/general-changelog-dv-react.mdx @@ -19,8 +19,6 @@ import chartdefaults3 from '@xplat-images/chartDefaults3.png'; import chartdefaults4 from '@xplat-images/chartDefaults4.png'; import Badge from 'igniteui-astro-components/components/mdx/Badge.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {ProductName} Changelog @@ -40,8 +38,8 @@ All notable changes for each version of {ProductName} are documented on this pag #### Changed -- : Updated to use the latest `igniteui-dockmanager@2.1.0` with new `minResizeWidth` and `minResizeHeight` properties, `paneFlyoutToggle` event; additional `layoutChange` event detail and fixes. See the [full changelog](https://github.com/IgniteUI/igniteui-dockmanager/blob/master/CHANGELOG.md#210). -- Updated to use the latest `igniteui-webcomponents@7.1.0` including new and container components and fixes. See the [full changelog](https://github.com/IgniteUI/igniteui-webcomponents/blob/master/CHANGELOG.md#710---2026-03-19). +- `DockManager`: Updated to use the latest `igniteui-dockmanager@2.1.0` with new `minResizeWidth` and `minResizeHeight` properties, `paneFlyoutToggle` event; additional `layoutChange` event detail and fixes. See the [full changelog](https://github.com/IgniteUI/igniteui-dockmanager/blob/master/CHANGELOG.md#210). +- Updated to use the latest `igniteui-webcomponents@7.1.0` including new `Splitter` and `Highlight` container components and fixes. See the [full changelog](https://github.com/IgniteUI/igniteui-webcomponents/blob/master/CHANGELOG.md#710---2026-03-19). #### New Features @@ -110,18 +108,18 @@ All notable changes for each version of {ProductName} are documented on this pag ### {PackageGrids} (Grids) -- , , , +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid` - Improved performance by dynamically adjusting the scroll throttle based on the data displayed in grid. **Breaking Changes** -- , , , +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid` - Original `data` array mutations (like adding/removing/moving records in the original array) are no longer detected automatically. Components need an array reference change for the change to be detected. **Localization(i18n)** -- , , , , , , , , , , , - - New `Intl` implementation for the grid components that format and render data like dates and numbers. Updated `Intl` implementation for , , and . +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid`, `Combo`, `DatePicker`, `DateRangePicker`, `Calendar`, `Carousel`, `Chip`, `Input`, `Tree` + - New `Intl` implementation for the grid components that format and render data like dates and numbers. Updated `Intl` implementation for `Calendar`, `DatePicker`, and `DateRangePicker`. - New localization implementation for the currently supported languages for all components that have resource strings in the currently supported languages. - New public localization API and package named `igniteui-i18n-resources` containing the new resources that are used in conjunction. @@ -177,9 +175,9 @@ Added OthersCategoryBrush and OthersCategoryOutline to DataPieChart and Proporti #### User Annotations -In {ProductName}, you can now annotate the with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. +In {ProductName}, you can now annotate the `XamDataChart` with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. -This is directly integrated with the available tools of the . +This is directly integrated with the available tools of the `Grid.Toolbar`. {Platform} user-annotation-create @@ -187,8 +185,8 @@ This is directly integrated with the available tools of the -- +- `CategoryAngleAxis.ShouldAvoidAnnotationCollisions` +- `CategoryAngleAxis.ShouldAutoTruncateAnnotations` ### {PackageMaps} (Geographic Map) @@ -207,10 +205,10 @@ Ability for axis annotations to automatically detect collisions and truncate to ### New Components -- Added component +- Added `Chat` component ### {PackageGrids} (Grids) -- , , +- `Grid`, `TreeGrid`, `HierarchicalGrid` - Introduced a new cell merging feature that allows you to configure and merge cells in a column based on same data or other custom condition, into a single cell. It can be enabled on the individual columns: @@ -293,7 +291,7 @@ Ability for axis annotations to automatically detect collisions and truncate to #### Azure Map Imagery Support -The now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. +The `XamGeographicMap` now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. Note: Support for Bing Maps imagery is being phased out. Existing enterprise keys can still be used to access Bing Maps, ensuring your current applications continue to function while you transition to Azure maps. @@ -303,7 +301,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft #### New Axis Label Events -The following events have been added to the to allow you to detect different operations on the axis labels: +The following events have been added to the `XamDataChart` to allow you to detect different operations on the axis labels: - `LabelMouseDown` - `LabelMouseUp` @@ -314,34 +312,34 @@ The following events have been added to the to a #### Companion Axis -Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. +Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the `CategoryAngleAxis.CompanionAxisEnabled` property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. #### RadialPieSeries Inset Outlines -There is a new property called to control how outlines on the are rendered. Setting this value to **true** will inset the outlines within the slice shape, whereas a **false** (default) value will place the outlines half-in half-out along the edge of the slice shape. +There is a new property called `RadialPieSeries.UseInsetOutlines` to control how outlines on the `RadialPieSeries` are rendered. Setting this value to **true** will inset the outlines within the slice shape, whereas a **false** (default) value will place the outlines half-in half-out along the edge of the slice shape. **Breaking Changes** -- A fix was made due to an issue where the and properties on class were reversed. This will change the values that and return. +- A fix was made due to an issue where the `ChartMouseEventArgs.PlotAreaPosition` and `ChartMouseEventArgs.ChartPosition` properties on `ChartMouseEventArgs` class were reversed. This will change the values that `PlotAreaPosition` and `ChartPosition` return. ### {PackageGrids} (Grids) #### Cell Suffix Content -Added support for suffix content within the cells that allows you to add additional text or icons to the end of the cell value and style it. The full list of added properties for the cell suffix content is listed below and is available on the and class: +Added support for suffix content within the cells that allows you to add additional text or icons to the end of the cell value and style it. The full list of added properties for the cell suffix content is listed below and is available on the `DataGridColumn` and `CellInfo` class: -- -- +- `DataGridColumn.SuffixText` +- `DataGridColumn.SuffixTextColor` - `SuffixTextFont` -- -- -- -- -- -- -- -- -- +- `DataGridColumn.SuffixIconName` +- `DataGridColumn.SuffixIconCollectionName` +- `DataGridColumn.SuffixIconStroke` +- `DataGridColumn.SuffixIconFill` +- `DataGridColumn.SuffixIconViewBoxLeft` +- `DataGridColumn.SuffixIconViewBoxTop` +- `DataGridColumn.SuffixIconViewBoxWidth` +- `DataGridColumn.SuffixIconViewBoxHeight` +- `DataGridColumn.TextDecoration` Please note that the maximum size available for the icons is 24x24. You can provide an icon that is larger or smaller than this, but you will need to configure the viewbox settings in order to properly scale it to fit in the 24x24 space so it is fully visible. @@ -349,28 +347,28 @@ Please note that the maximum size available for the icons is 24x24. You can prov | Bug Number | Control | Description | |------------|---------|-------------| -|31624 | | Resizing the containing window of the causes the chart to fail to render the series| -|27304 | | Zoom rectangle is not positioned the same as the background rectangle| -|37930 | | Data Annotation Overlay Text Color not working| -|30600 | | No textStyle property for either the chart or series (pie chart has this)| -|38231 | | Unpinned column does not return to the original position if hidden columns exist| +|31624 | `CategoryChart` | Resizing the containing window of the `CategoryChart` causes the chart to fail to render the series| +|27304 | `XamDataChart` | Zoom rectangle is not positioned the same as the background rectangle| +|37930 | `XamDataChart` | Data Annotation Overlay Text Color not working| +|30600 | `XamDoughnutChart` | No textStyle property for either the chart or series (pie chart has this)| +|38231 | `Grid` | Unpinned column does not return to the original position if hidden columns exist| |33861 | Excel Library | Adding line chart corrupts excel File for German culture| ### Enhancements #### IgrBulletGraph -- Added new property +- Added new `XamLinearGauge.LabelsVisible` property #### Charts - New properties added to the DataToolTipLayer, ItemToolTipLayer, and CategoryToolTipLayer to aid in styling: `ToolTipBackground`, `ToolTipBorderBrush`, and `ToolTipBorderThickness` -- New properties added to the DataLegend to aid in styling: , , and . The and default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. +- New properties added to the DataLegend to aid in styling: `ContentBackground`, `ContentBorderBrush`, and `ContentBorderThickness`. The `ContentBorderBrush` and `ContentBorderThickness` default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. -- Added a new property to called that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. +- Added a new property to `ChartMouseEventArgs` called `WorldPosition` that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. -- Added to and . This allows you to configure the opacity applied to highlighted series. +- Added `SeriesViewer.HighlightingFadeOpacity` to `SeriesViewer` and `DomainChart`. This allows you to configure the opacity applied to highlighted series. - Expose `CalloutLabelUpdating` event for domain charts. @@ -380,7 +378,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov #### IgrLinearGauge -- Added new property +- Added new `XamLinearGauge.LabelsVisible` property ## **{PackageVerChanges-25-1-SEP}** @@ -473,7 +471,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov | Bug Number | Control | Description | |------------|---------|------------------| -|36448 | | Radial label format properties do not work. (eg. Title, SubTitles)| +|36448 | `XamRadialGauge` | Radial label format properties do not work. (eg. Title, SubTitles)| ### {PackageCharts} (Charts) @@ -499,23 +497,23 @@ For more details please visit: - Data Annotation Slice Layer - Data Annotation Strip Layer -- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. +- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose `LayoutMode` property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. -- The property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. +- The `DefaultInteraction` property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. -- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. +- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an `ValueLayer.OverlayText` property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. - [Trendline Layer](./charts/features/chart-trendlines.mdx) series type that allows you to apply a single trend line per trend line layer to a particular series. This allows the usage of multiple trend lines on a single series since you can have multiple [TrendlineLayer](./charts/features/chart-overlays.mdx) series types in the chart. ### {PackageDashboards} (Dashboards) -- The now supports propagating the aggregations from its DataGrid view to the chart visualization such as sorting, grouping, filtering and selection. This is currently supported by binding the `DashboardTile.ItemsSource` of the to an instance of . +- The `DashboardTile` now supports propagating the aggregations from its DataGrid view to the chart visualization such as sorting, grouping, filtering and selection. This is currently supported by binding the `DashboardTile.ItemsSource` of the `DashboardTile` to an instance of `LocalDataSource`. ### {PackageGrids} **Breaking Changes** -- The & are now part of the igniteui-react-data-grids package. +- The `Grid` & `MultiColumnComboBox` are now part of the igniteui-react-data-grids package. ### Enhancements @@ -530,9 +528,9 @@ For more details please visit: | Bug Number | Control | Description | |------------|---------|------------------| -|25997 | | Summaries are only showing for first grouped child row| -|37023 | | Tooltips are cut-off/offscreen if overflow hidden is set.| -|37685 | | Poor rendering of numbers formatted with Arial font.| +|25997 | `Grid` | Summaries are only showing for first grouped child row| +|37023 | `XamDataChart` | Tooltips are cut-off/offscreen if overflow hidden is set.| +|37685 | `Spreadsheet` | Poor rendering of numbers formatted with Arial font.| |37244 | Excel Library | Custom Data Validation is not working.| ## **{PackageVerChanges-24-2-APR2}** @@ -543,11 +541,11 @@ With 19.0.0 the React product introduces many breaking changes done to improve a [Update Guide](./update-guide.mdx) ### Removed -- removed, use instead. -- removed, use instead. -- removed, use instead. -- `ActiveStepChangingArgs` removed, use instead. -- `ActiveStepChangedArgs` removed, use instead. +- `CheckboxChangeEventArgs` removed, use `CheckboxChangeEventArgs` instead. +- `RadioChangeEventArgs` removed, use `RadioChangeEventArgs` instead. +- `RangeSliderValue` removed, use `RangeSliderValueEventArgs` instead. +- `ActiveStepChangingArgs` removed, use `ActiveStepChangingEventArgs` instead. +- `ActiveStepChangedArgs` removed, use `ActiveStepChangedEventArgs` instead. ### Enhancements @@ -569,29 +567,29 @@ igr-tab-panel component is removed. The igr-tab now encompasses both the tab hea ### Enhancements #### List -- Added new property on called +- Added new property on `ListItem` called `Selected` #### Accordion -- Added new events and `Close` +- Added new events `DatePicker.Open` and `Close` ### {PackageGrids} - **All Grids** - - Allow applying initial filtering through property + - Allow applying initial filtering through `GridBaseDirective.FilteringExpressionsTree` property ### Deprecations -- The `clicked` event of the is deprecated. Use the native `onClick` handler. +- The `clicked` event of the `DataGridCellEventArgs.Button` is deprecated. Use the native `onClick` handler. ### Bug Fixes | Bug Number | Control | Description | |------------|---------|------------------| -|25602 | | Loading a layout with one of the date-specific filter operators results in a TypeError console error| -|28480 | | Undefined reference error is thrown when a datasource is replaced| -|30319 | | Records are sorted despite no value changed| -|32598 | | Multi-selection is not working correctly -|36374 | | A previous value was bound when a form was submitted on any touch device| +|25602 | `Grid` | Loading a layout with one of the date-specific filter operators results in a TypeError console error| +|28480 | `Combo` | Undefined reference error is thrown when a datasource is replaced| +|30319 | `Grid` | Records are sorted despite no value changed| +|32598 | `Grid` | Multi-selection is not working correctly +|36374 | `Input` | A previous value was bound when a form was submitted on any touch device| ## **{PackageVerChanges-24-2-MAR}** @@ -612,15 +610,15 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ### {PackageCommon} - Added new `allowSplitterDock` property for `Dockmanager` that allows docking directly in a split. -- Added new `useFixedSize` property for the of `Dockmanager` that allows new resize behavior. +- Added new `useFixedSize` property for the `SplitPane` of `Dockmanager` that allows new resize behavior. ### Enhancements #### Toolbar -- Added new `groupHeaderTextStyle` property to and . If set, it will apply to all actions. -- Added new property on called which controls the horizontal alignment of the title text. -- Added new property on called `itemSpacing` which controls the spacing between items inside the panel. +- Added new `groupHeaderTextStyle` property to `Grid.Toolbar` and `ToolPanel`. If set, it will apply to all `ToolActionGroupHeader` actions. +- Added new property on `ToolAction` called `SeriesViewer.TitleHorizontalAlignment` which controls the horizontal alignment of the title text. +- Added new property on `ToolActionSubPanel` called `itemSpacing` which controls the spacing between items inside the panel. ### Bug Fixes @@ -628,16 +626,16 @@ The following table lists the bug fixes made for the {ProductName} toolset for t | Bug Number | Control | Description | |------------|---------|------------------| -|30286 | | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| -|32906 | | is showing two xAxis on the top| -|33605 | | ScatterLineSeries is not showing the color of the line correctly in the legend| -|34776 | | Repeatedly showing and hiding the causes memory leakage in JS Heap| -|35498 | | Tooltips for the series specified in IncludedSeries are not displayed| -|34324 | | Column hiding through condition in the grid template is not working| -|34678 | | Enum values coerced to strings, breaking expected numeric behavior in some grid properties| -|32093 | | PivotDateDimensionOptions are not applied to the PivotDateDimension| -|34053 | | The position of the scale label is shifted| -|35496 | | Error when setting styles in Excel with images| +|30286 | `XamDataChart` | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| +|32906 | `XamDataChart` | `XamDataChart` is showing two xAxis on the top| +|33605 | `XamDataChart` | ScatterLineSeries is not showing the color of the line correctly in the legend| +|34776 | `XamDataChart` | Repeatedly showing and hiding the `XamDataChart` causes memory leakage in JS Heap| +|35498 | `XamDataChart` | Tooltips for the series specified in IncludedSeries are not displayed| +|34324 | `Grid` | Column hiding through condition in the grid template is not working| +|34678 | `Grid` | Enum values coerced to strings, breaking expected numeric behavior in some grid properties| +|32093 | `PivotGrid` | PivotDateDimensionOptions are not applied to the PivotDateDimension| +|34053 | `XamRadialGauge` | The position of the scale label is shifted| +|35496 | `Spreadsheet` | Error when setting styles in Excel with images| |36176 | Excel Library | Exception occurs when loading an Excel workbook that has a LET function| |36379 | Excel Library | Colors with any alpha channel in an excel workbook fail to load| |26218 | Excel Library | Chart's plot area right margin becomes narrower and fill pattern and fill foreground are gone just by loading an Excel file| @@ -669,18 +667,18 @@ DashboardTile ### General - New [Carousel](./layouts/carousel.mdx) component. -- - - Changed `change` event argument type from to +- `Input` + - Changed `change` event argument type from `ComponentDataValueChangedEventArgs` to `ComponentValueChangedEventArgs` ## **{PackageVerChanges-24-1-SEP}** ### {PackageCharts} (Charts) -- New [Data Pie Chart](./charts/types/data-pie-chart.mdx) - The is a new component that renders a pie chart. This component works similarly to the , in that it will automatically detect the properties on your underlying data model while allowing selection, highlighting, animation and legend support via the ItemLegend component. +- New [Data Pie Chart](./charts/types/data-pie-chart.mdx) - The `DataPieChart` is a new component that renders a pie chart. This component works similarly to the `CategoryChart`, in that it will automatically detect the properties on your underlying data model while allowing selection, highlighting, animation and legend support via the ItemLegend component. -- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. +- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. -- +- `Grid.Toolbar` - New ToolActionCheckboxList A new CheckboxList ToolAction that displays a collection of items with checkboxes for selecting. A grid inside ToolAction CheckboxList grows in height up to 5 items, then a scrollbar is displayed. @@ -697,55 +695,55 @@ DashboardTile - New [Banner](./notifications/banner.mdx) component. - New [DatePicker](./scheduling/date-picker.mdx) component. -- New component. +- New `Divider` component. - Added support for native events to all components. -- - - Added method. This allows to register and replace icons by SVG files. +- `Icon` + - Added `setIconRef` method. This allows to register and replace icons by SVG files. - All components now use icons by reference internally so that it's easy to replace them without explicitly providing custom templates. -- , , , , , , , , **IgrSelectComponent** +- `Combo`, `DatePicker`, `Dialog`, `Dropdown`, `ExpansionPanel`, `NavDrawer`, `Toast`, `Snackbar`, **IgrSelectComponent** - Toggle methods `show`, `hide`, `toggle` methods return **true** now on success, otherwise **false**. -- **IgrButtonComponent**, , , , , , , , , **IgrSelectComponent**, +- **IgrButtonComponent**, `IconButton`, `Checkbox`, `Switch`, `Combo`, `DateTimeInput`, `Input`, `MaskInput`, `Radio`, **IgrSelectComponent**, `Textarea` - Deprecated custom `focus` and `blur` events. Use the native `onFocus` and `onBlur` events instead -- - - Added and properties. +- `RadioGroup` + - Added `DatePicker.Name` and `DatePicker.Value` properties. **Breaking Changes** - Renamed old **IgrDatePicker** to **IgrXDatePicker**. -- Removed component. Use native form instead. +- Removed `Form` component. Use native form instead. - Removed `size` property in favor of the `--ig-size` CSS custom property for the following components: - - , **IgrButtonComponent**, , , , , , , , , , , -- , , , - - Renamed property type to . -- - - Renamed property type to . -- , - - Changed `change` event argument type from to . -- , **IgrSelectComponent** + - `Avatar`, **IgrButtonComponent**, `IconButton`, `Calendar`, `Chip`, `Dropdown`, `Icon`, `Input`, `List`, `Rating`, `Snackbar`, `Tabs`, `Tree` +- `Badge`, `Chip`, `LinearProgress`, `CircularProgress` + - Renamed `IconButton.Variant` property type to `StyleVariant`. +- `Calendar` + - Renamed `FieldPipeArgs.WeekStart` property type to `WeekDays`. +- `Checkbox`, `Switch` + - Changed `change` event argument type from `ComponentBoolValueChangedEventArgs` to `CheckboxChangeEventArgs`. +- `Combo`, **IgrSelectComponent** - Removed `positionStrategy`, `flip`, `sameWidth` properties. -- +- `DateTimeInput` - Removed `maxValue` and `minValue` properties. Use `max` and `min` instead. -- +- `Dropdown` - Removed `positionStrategy` property. -- +- `Input` - Removed old named `maxlength` and `minlength` properties. Use `maxLength` and `minLength`. - Removed old named `readonly` and `inputmode` properties. Use `readOnly` and `inputMode`. - Changed `inputMode` type also to `string`. -- - - Changed `change` event argument type from to . -- +- `Radio` + - Changed `change` event argument type from `ComponentBoolValueChangedEventArgs` to `RadioChangeEventArgs`. +- `RangeSlider` - Removed `ariaThumbLower` and `ariaThumbUpper` properties. Use `thumbLabelLower` and `thumbLabelUpper` instead. -- +- `Rating` - Renamed `readonly` property to `readOnly`. ### {PackageGrids} - **All Grids** - Added new `RowClick` event. -- - - Added `sortable` property for a . +- `PivotGrid` + - Added `sortable` property for a `PivotDimension`. - Added horizontal layout. Can be enabled inside the new `pivotUI` property as `rowLayout` `horizontal`. - - Added row dimension summaries for horizontal layout only. Can be enabled for each by setting `horizontalSummary` to **true**. + - Added row dimension summaries for horizontal layout only. Can be enabled for each `PivotDimension` by setting `horizontalSummary` to **true**. - Added `horizontalSummariesPosition` property to the `pivotUI`, configuring horizontal summaries position. - Added row headers for the row dimensions. Can be enabled inside the new `pivotUI` property as `showHeaders` **true**. - Keyboard navigation now can move in to row headers back and forth from any row dimension headers or column headers. @@ -754,103 +752,103 @@ DashboardTile **Breaking Changes** - **All Grids** - - + - `RowIsland` - Removed `displayDensity` deprecated property. - Renamed `actualColumns`, `contentColumns` properties to `actualColumnList` and `contentColumnList`. Use `columns` or `columnList` property to get all columns now. - - Renamed `rowDelete` and `rowAdd` event argument type to . - - Renamed `contextMenu` event argument type to . - - Removed , , events `rowID` and `primaryKey` properties. Use `rowKey` instead. -- + - Renamed `rowDelete` and `rowAdd` event argument type to `RowDataCancelableEventArgs`. + - Renamed `contextMenu` event argument type to `GridContextMenuEventArgs`. + - Removed `GridEditEventArgs`, `GridEditDoneEventArgs`, `PinRowEventArgs` events `rowID` and `primaryKey` properties. Use `rowKey` instead. +- `PivotGrid` - removed `showPivotConfigurationUI` property. Use `pivotUI` and set inside it the new `showConfiguration` option. -- +- `Column` - Removed `movable` property. Use Grid's `moving` property now. - Removed `columnChildren` property. Use `childColumns` instead. -- +- `ColumnGroup` - Removed `children` property. Use `childColumns` instead. -- +- `Paginator` - Removed `isFirstPageDisabled` and `isLastPageDisabled` properties. Use `isFirstPage` and `isLastPage` instead. ## **{PackageVerChanges-24-1-JUN}** ### {PackageCommon} -- , - exposed to enable validation rules being enforced without restricting user input. -- - property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. -- - is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the property of and/or instead. +- `Input`, `Textarea` - exposed `Input.ValidateOnly` to enable validation rules being enforced without restricting user input. +- `Dropdown` - `PositionStrategy` property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. +- `DockManager` - `SplitPane` `IsMaximized` is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the `IsMaximized` property of `TabGroupPane` and/or `ContentPane` instead. ### {PackageGrids} - `DisplayDensity` deprecated in favor of the `--ig-size` CSS custom property. Check out the [Grid Size](./grids/_shared/size.mdx) topic for more. -- - Configuration of the component can now be applied correctly. +- `PivotGrid` - Configuration of the component can now be applied correctly. ### {PackageCharts} (Charts) -- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property toggles grouping with each series opting in can assign group text via the property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. +- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property `GroupRowVisible` toggles grouping with each series opting in can assign group text via the `CrosshairLayer.DataLegendGroup` property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. -- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for and . Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. +- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for `CategoryChart` and `XamDataChart`. Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and `SeriesViewer.SelectedSeriesItems` are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. -- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. +- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. -- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the property. +- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a `SeriesViewer.HighlightingMode` property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the `SeriesViewer.HighlightingTransitionDuration` property. -- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new . Can be toggled via and styled via `FillBrushes`. +- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new `XYChart.HighlightedItemsSource`. Can be toggled via `SeriesViewer.HighlightedValuesDisplayMode` and styled via `FillBrushes`. -- - New option for ToolAction for outlining a border around specific tools of choice. +- `Grid.Toolbar` - New `ToolActionGroupHeader.IsHighlighted` option for ToolAction for outlining a border around specific tools of choice. ### {PackageGauges} (Gauges) -- - - New label for the highlight needle. and and many other styling related properties for the HighlightLabel were added. +- `XamRadialGauge` + - New label for the highlight needle. `HighlightLabelText` and `HighlightLabelSnapsToNeedlePivot` and many other styling related properties for the HighlightLabel were added. ## **{PackageVerChanges-23-2-MAR}** ### {PackageCharts} -- New Data Filtering via the property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. +- New Data Filtering via the `XYChart.InitialFilter` property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. - `RadialChart` - New Label Mode - The for the now exposes a property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. + The `CategoryAngleAxis` for the now exposes a `LabelMode` property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. ### {PackageGrids} -- New [](./grids/hierarchical-grid/overview.mdx) component +- New [`HierarchicalGrid`](./grids/hierarchical-grid/overview.mdx) component ### {PackageGauges} -- - - New title/subtitle properties. , will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and . Finally, the new will allow the value to correspond with the needle's position. - - New and properties for the . This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. -- - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. -- - - The Performance bar will now reflect a difference between the value and new when the is applied to the 'Overlay' setting. The highlight value will show a filtered/subset completed measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. +- `XamRadialGauge` + - New title/subtitle properties. `TitleText`, `SubtitleText` will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and `TitleExtent`. Finally, the new `TitleDisplaysValue` will allow the value to correspond with the needle's position. + - New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) + - New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamLinearGauge` + - New highlight needle was added. `XamRadialGauge.HighlightValue` and `XamRadialGauge.HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamBulletGraph` + - The Performance bar will now reflect a difference between the value and new `XamRadialGauge.HighlightValue` when the `XamRadialGauge.HighlightValueDisplayMode` is applied to the 'Overlay' setting. The highlight value will show a filtered/subset completed measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. ### {PackageCommon} -- New component -- New component -- - - New property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. - - New property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. - - New property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. -- , , , - - `Readonly` has been renamed to -- - - `Maxlength` has been renamed to - - `Minlength` has been renamed to -- +- New `Textarea` component +- New `ButtonGroup` component +- `DockManager` + - New `ProximityDock` property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. + - New `ContainedInBoundaries` property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. + - New `ShowPaneHeaders` property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. +- `Input`, `MaskInput`, `DateTimeInput`, `Rating` + - `Readonly` has been renamed to `DatePicker.ReadOnly` +- `Input` + - `Maxlength` has been renamed to `MaxLength` + - `Minlength` has been renamed to `MinLength` +- `Tree` - Added `toggleNodeOnClick` property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. -- +- `Rating` - `allowReset` added. When enabled selecting the same value will reset the component. **Behavioral change** - In previous releases this was the default behavior of the rating component. Make sure to set `allowReset` if you need to keep this behavior in your application. -- , +- `DatePicker.Select`, `Dropdown` - exposed `selectedItem`, `items` and `groups` getters #### Deprecations -- The component has been deprecated. Please, use the native form element instead. +- The `Form` component has been deprecated. Please, use the native form element instead. - The `size` property and attribute have been deprecated for all components. Use the `--ig-size` CSS custom property instead. The following example sets the size of the avatar component to small: ```css @@ -859,24 +857,24 @@ DashboardTile } ``` -- - - `MinValue` and `MaxValue` properties have been deprecated. Please, use and instead. -- - - `AriaLabelLower` and `AriaLabelUpper` properties have been deprecated. Please, use and instead. +- `DateTimeInput` + - `MinValue` and `MaxValue` properties have been deprecated. Please, use `DatePicker.Min` and `DatePicker.Max` instead. +- `RangeSlider` + - `AriaLabelLower` and `AriaLabelUpper` properties have been deprecated. Please, use `ThumbLabelLower` and `ThumbLabelUpper` instead. #### Removed - Removed our own `dir` attribute which shadowed the default one. This is a non-breaking change. -- - `ariaLabel` shadowed property. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Slider` - `ariaLabel` shadowed property. This is a non-breaking change. +- `Checkbox` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Switch` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Radio` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. ## **{PackageVerChanges-23-2-JAN}** ### {PackageCharts} (Charts) -- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The and now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. +- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The `CategoryChart` and `XamDataChart` now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. ## **{PackageVerChanges-23-2-DEC}** @@ -889,7 +887,7 @@ DashboardTile ### {PackageGrids} - Toolbar - - Save tool action has been added to save the chart to an image via the clipboard. -- Vertical orientation has been added via the toolbar's property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. +- Vertical orientation has been added via the toolbar's `Toolbar.Orientation` property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. - Custom SVG icons support was added via the toolbar's `renderImageFromText` method, further enhancing custom tool creation. - [Grid](./grids/data-grid.mdx) - This is a new fully functional cross-platform grid and includes features like filtering, sorting, templates, row selection, row grouping, row pinning and movable columns. @@ -902,13 +900,13 @@ DashboardTile ### New Components -- [Toolbar](./menus/toolbar.mdx) - This component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tool items when linked to our or components. You'll be able to create custom tools for your project allowing end users to provide changes, offering an endless amount of customization. +- [Toolbar](./menus/toolbar.mdx) - This component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tool items when linked to our `XamDataChart` or `CategoryChart` components. You'll be able to create custom tools for your project allowing end users to provide changes, offering an endless amount of customization. ### {PackageCharts} (Charts) -- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the and by adding to the new collection. +- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the `ValueLayer` is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the `CategoryChart` and `FinancialChart` by adding to the new `XYChart.ValueLines` collection. -- It is now possible to apply a **dash array** to the different parts of the series of the . You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. +- It is now possible to apply a **dash array** to the different parts of the series of the `XamDataChart`. You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. ## **{PackageVerChanges-22-2}** @@ -917,7 +915,7 @@ Added significant improvements to default behaviors, and refined the Category Ch - Responsive layouts for horizontal label rotation based on browser / screen size. - Enhanced rendering for rounded labels on all platforms. - Added marker properties to StackedFragmentSeries. -- Added property. +- Added `SeriesViewer.ShouldPanOnMaximumZoom` property. - New Category Axis Properties: - ZoomMaximumCategoryRange - ZoomMaximumItemSpan @@ -938,32 +936,32 @@ Added significant improvements to default behaviors, and refined the Category Ch - GroupSortDescriptions -[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using | . These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. +[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using `XYChart.IncludedProperties` | `XYChart.ExcludedProperties`. These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. ### {PackageGrids} (Data Grid) -- Changed **{IgPrefix}Column** to -- Changed **GridCellEventArgs** to -- Changed **GridSelectionMode** to -- Changed **SummaryOperand** to +- Changed **{IgPrefix}Column** to `DataGridColumn` +- Changed **GridCellEventArgs** to `DataGridCellEventArgs` +- Changed **GridSelectionMode** to `DataGridSelectionMode` +- Changed **SummaryOperand** to `DataSourceSummaryOperand` ## **{PackageVerChanges-22-1}** ### {PackageCharts} (Charts) -- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the , but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. +- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the `SeriesViewer.Legend`, but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. - Added the highly-configurable [DataToolTip](./charts/features/chart-data-tooltip.mdx) which displays values and titles of series as well as legend badges of series in a tooltip. This is now the default tooltip for all chart types. -- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the property to true. From there, you can set the property to determine how long your animation should take to complete and the to determine the type of animation that takes place. -- Added `AssigningCategoryStyle` event, is now available to all series in . This event is handled when you want to conditionally configure aspects of the series items such as background-color and highlighting. -- New enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. +- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the `IsTransitionInEnabled` property to true. From there, you can set the `TransitionInDuration` property to determine how long your animation should take to complete and the `TransitionInMode` to determine the type of animation that takes place. +- Added `AssigningCategoryStyle` event, is now available to all series in `XamDataChart`. This event is handled when you want to conditionally configure aspects of the series items such as `CrosshairLayer.Fill` background-color and highlighting. +- New `AllowedPositions` enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. - New corner radius properties added for Annotation Layers; used to round-out the corners of each of the callouts. Note, a corner radius has now been added by default. - - for CalloutLayer - - for FinalValueLayer - - and for CrosshairLayer -- New and enumeration to enable scrollbars in various ways. When paired with or , you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. -- New , determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. , , `PercentChangeAxis`). -- New determines whether to include the spline shape in the axis range requested of the axis. -- New , determines the maximum allowed value for the plotted series when using . The gap determines the amount of space between columns or bars of plotted series. -- New , determines the minimum allowed pixel-based value for the plotted series when using to ensure there is always some spacing between each category. + - `CalloutCornerRadius` for CalloutLayer + - `AxisAnnotationBackgroundCornerRadius` for FinalValueLayer + - `CrosshairLayer.XAxisAnnotationBackgroundCornerRadius` and `CrosshairLayer.YAxisAnnotationBackgroundCornerRadius` for CrosshairLayer +- New `SeriesViewer.HorizontalViewScrollbarMode` and `SeriesViewer.VerticalViewScrollbarMode` enumeration to enable scrollbars in various ways. When paired with `XYChart.IsVerticalZoomEnabled` or `XYChart.IsHorizontalZoomEnabled`, you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. +- New `NumericXAxis.FavorLabellingScaleEnd`, determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. `NumericXAxis`, `NumericYAxis`, `PercentChangeAxis`). +- New `IsSplineShapePartOfRange` determines whether to include the spline shape in the axis range requested of the axis. +- New `XAxisMaximumGap`, determines the maximum allowed value for the plotted series when using `XAxisGap`. The gap determines the amount of space between columns or bars of plotted series. +- New `XAxisMinimumGapSize`, determines the minimum allowed pixel-based value for the plotted series when using `XAxisGap` to ensure there is always some spacing between each category. ### {PackageGrids} (Data Grid) @@ -974,13 +972,13 @@ Added New Feature - [Row Paging](./grids/_shared/paging.mdx) which is used to sp ### {PackageGrids} (Data Grid) #### Data Grid -- Added , of type string[], in the to be used when your items in the drop down contain a key that consists of multiple fields. +- Added `ComboBoxColumn.ValueMultiField`, of type string[], in the `ComboBoxColumn` to be used when your items in the drop down contain a key that consists of multiple fields. The following breaking changes were introduced -- Changed property from type string[] to string. +- Changed `ComboEditor.ValueField` property from type string[] to string. ### {PackageInputs} (Inputs) @@ -1002,29 +1000,29 @@ Please ensure package "lit-html": "^2.0.0" or newer is added to your project for This release introduces a few improvements and simplifications to visual design and configuration options for the geographic map and all chart components. -- Changed property's type to **YAxisLabelLocation** from **AxisLabelLocation** in and -- Changed property's type to **XAxisLabelLocation** from **AxisLabelLocation** in -- Added property to -- Added support for representing geographic series of in a legend -- Added crosshair lines by default in and -- Added crosshair annotations by default in and -- Added final value annotation by default in +- Changed `XYChart.YAxisLabelLocation` property's type to **YAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` and `CategoryChart` +- Changed `XYChart.XAxisLabelLocation` property's type to **XAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` +- Added `XYChart.XAxisLabelLocation` property to `CategoryChart` +- Added support for representing geographic series of `XamGeographicMap` in a legend +- Added crosshair lines by default in `FinancialChart` and `CategoryChart` +- Added crosshair annotations by default in `FinancialChart` and `CategoryChart` +- Added final value annotation by default in `FinancialChart` - Added new properties in Category Chart and Financial Chart: - - and other properties for customizing crosshairs lines - - and other properties for customizing crosshairs annotations - - and other properties for customizing final value annotations - - that allow changing opacity of series fill (e.g. Area chart) - - that allows changing thickness of markers + - `XYChart.CrosshairsLineThickness` and other properties for customizing crosshairs lines + - `XYChart.CrosshairsAnnotationXAxisBackground` and other properties for customizing crosshairs annotations + - `XYChart.FinalValueAnnotationsBackground` and other properties for customizing final value annotations + - `XYChart.AreaFillOpacity` that allow changing opacity of series fill (e.g. Area chart) + - `XYChart.MarkerThickness` that allows changing thickness of markers - Added new properties in Category Chart, Financial Chart, Data Chart, and Geographic Map: - - that allows which marker type is assigned to multiple series in the same chart - - for setting badge shape of all series represented in a legend - - for setting badge complexity on all series in a legend + - `SeriesViewer.MarkerAutomaticBehavior` that allows which marker type is assigned to multiple series in the same chart + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape of all series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on all series in a legend - Added new properties in Series in Data Chart and Geographic Map: - - for setting badge shape on specific series represented in a legend - - for setting badge complexity on specific series in a legend + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape on specific series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on specific series in a legend - Changed default vertical crosshair line stroke from #000000 to #BBBBBB in category chart and series -- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's property to `SmartIndexed` enum value -- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's property to `MatchSeries` enum value +- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's `SeriesViewer.MarkerAutomaticBehavior` property to `SmartIndexed` enum value +- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's `SeriesViewer.LegendItemBadgeMode` property to `MatchSeries` enum value - Changed color palette of series and markers displayed in all charts to improve accessibility | Old brushes/outlines | New outline/brushes | @@ -1043,37 +1041,37 @@ This release introduces a few improvements and simplifications to visual design - Added `SelectionChanged` event. Used to detect changes on selection interactions e.g. Multiple row selection. - Breaking Changes: - - Changed grid's SummaryScope property's type to SummaryScope from - - Changed GroupHeaderDisplayMode property's type to GroupHeaderDisplayMode from + - Changed grid's SummaryScope property's type to SummaryScope from `DataSourceSummaryScope` + - Changed GroupHeaderDisplayMode property's type to GroupHeaderDisplayMode from `DataSourceSectionHeaderDisplayMode` ## **{PackageVerChanges-21-1}** ### {PackageCharts} (Charts) -This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. , , and . +This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. `XamDataChart`, `CategoryChart`, and `FinancialChart`. - Changed Bar/Column/Waterfall series to have square corners instead of rounded corners - Changed Scatter High Density series’ colors for heat min property from #8a5bb1 to #000000 - Changed Scatter High Density series’ colors for heat max property from #ee5879 to #ee5879 - Changed Financial/Waterfall series’ `NegativeBrush` and `NegativeOutline` properties from #C62828 to #ee5879 - Changed marker's thickness to 2px from 1px -- Changed marker's fill to match the marker's outline for , , , . You can use set property to Normal to undo this change -- Compressed labelling for the and +- Changed marker's fill to match the marker's outline for `PointSeries`, `BubbleSeries`, `ScatterSeries`, `PolarScatterSeries`. You can use set `XYChart.MarkerFillMode` property to Normal to undo this change +- Compressed labelling for the `TimeXAxis` and `OrdinalTimeXAxis` - New Marker Properties: - - series. - Can be set to `MatchMarkerOutline` so the marker depends on the outline - - series. - Can be set to a value 0 to 1 - - series. - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color + - series.`XYChart.MarkerFillMode` - Can be set to `MatchMarkerOutline` so the marker depends on the outline + - series.`XYChart.MarkerFillOpacity` - Can be set to a value 0 to 1 + - series.`XYChart.MarkerOutlineMode` - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color - New Series Property: - - series. - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series -- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the , listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series +- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the `XYChart.ComputedPlotAreaMarginMode`, listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - New Highlighting Properties - - chart. - Sets whether hovered or non-hovered series to fade, brighten - - chart. - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item + - chart.`SeriesViewer.HighlightingMode` - Sets whether hovered or non-hovered series to fade, brighten + - chart.`SeriesViewer.HighlightingBehavior` - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item - Note, in previous releases the highlighting was limited to fade on hover. - Added Highlighting Stacked, Scatter, Polar, Radial, and Shape series: - Added Annotation layers to Stacked, Scatter, Polar, Radial, and Shape series: @@ -1096,8 +1094,8 @@ for example: #### Chart Legend -- Added horizontal property to ItemLegend that can be used with Bubble, Donut, and Pie Chart -- Added property - Enables series highlighting when hovering over legend items +- Added horizontal `Toolbar.Orientation` property to ItemLegend that can be used with Bubble, Donut, and Pie Chart +- Added `SeriesViewer.LegendHighlightingMode` property - Enables series highlighting when hovering over legend items ### {PackageMaps} (GeoMap) @@ -1113,31 +1111,31 @@ These features are CTP ### {PackageGrids} (Data Grid) -- Added aka Excel-style Editing, instantly begin editing when typing. -- Added property - By default double-clicking is required to enter edit mode. This can be set to `SingleClick` to allow for edit mode to occur when selecting a new cell. -- Added property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) -- Added property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) -- Added - method. -- Added Row Range Selection - With property set to MultipleRow the following new functionality is now included: +- Added `EditOnKeyPress` aka Excel-style Editing, instantly begin editing when typing. +- Added `Grid.EditModeClickAction` property - By default double-clicking is required to enter edit mode. This can be set to `SingleClick` to allow for edit mode to occur when selecting a new cell. +- Added `EnterKeyBehaviors` property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) +- Added `EnterKeyBehaviorAfterEdit` property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) +- Added `Grid.SelectAllRows` - method. +- Added Row Range Selection - With `GridSelectionMode` property set to MultipleRow the following new functionality is now included: - Click and drag to select rows - SHIFT and click to select multiple rows. - SHIFT and press the + arrow keys to select multiple rows. -- Pressing space bar toggles selection of active row via property set to MultipleRow or SingleRow +- Pressing space bar toggles selection of active row via `GridSelectionMode` property set to MultipleRow or SingleRow - Added Column Summaries to Column Options Dialog. ### {PackageInputs} (Inputs) #### Date Picker -- - Toggles Today button visibility -- - Adds a label above the date value -- property - adds custom text when no value is selected -- - Customize input date string e.g. (`yyyy-MM-dd`) -- - Specifies whether to display selected dates as LongDate or ShortDate -- - Specifies first day of week -- - Specifies when to display first week of the year, e.g. (First Full Week, First Four day Week) -- - Toggles Week number visibility -- & - Date limits, specifying a range of available selectable dates. +- `DatePicker.ShowTodayButton` - Toggles Today button visibility +- `DatePicker.Label` - Adds a label above the date value +- `DatePicker.Placeholder` property - adds custom text when no value is selected +- `IWorksheetCellFormat.FormatString` - Customize input date string e.g. (`yyyy-MM-dd`) +- `DateFormat` - Specifies whether to display selected dates as LongDate or ShortDate +- `DatePicker.FirstDayOfWeek` - Specifies first day of week +- `DatePicker.FirstWeekOfYear` - Specifies when to display first week of the year, e.g. (First Full Week, First Four day Week) +- `DatePicker.ShowWeekNumbers` - Toggles Week number visibility +- `DatePicker.MinDate` & `DatePicker.MaxDate` - Date limits, specifying a range of available selectable dates. - Added Accessibility diff --git a/docs/xplat/src/content/en/components/general-changelog-dv-wc.mdx b/docs/xplat/src/content/en/components/general-changelog-dv-wc.mdx index 4281055387..59159559eb 100644 --- a/docs/xplat/src/content/en/components/general-changelog-dv-wc.mdx +++ b/docs/xplat/src/content/en/components/general-changelog-dv-wc.mdx @@ -20,8 +20,6 @@ import chartdefaults4 from '@xplat-images/chartDefaults4.png'; import Badge from 'igniteui-astro-components/components/mdx/Badge.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {ProductName} Changelog @@ -88,18 +86,18 @@ All notable changes for each version of {ProductName} are documented on this pag ### {PackageGrids} (Grids) -- , , , +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid` - Improved performance by dynamically adjusting the scroll throttle based on the data displayed in grid. **Breaking Changes** -- , , , +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid` - Original `data` array mutations (like adding/removing/moving records in the original array) are no longer detected automatically. Components need an array reference change for the change to be detected. **Localization(i18n)** -- , , , , , , , , , , , - - New `Intl` implementation for the grid components that format and render data like dates and numbers. Updated `Intl` implementation for , , and that previously used it in `igniteui-webcomponents`. +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid`, `Combo`, `DatePicker`, `DateRangePicker`, `Calendar`, `Carousel`, `Chip`, `Input`, `Tree` + - New `Intl` implementation for the grid components that format and render data like dates and numbers. Updated `Intl` implementation for `Calendar`, `DatePicker`, and `DateRangePicker` that previously used it in `igniteui-webcomponents`. - New localization implementation for the currently supported languages for all components that have resource strings in the currently supported languages. - New public localization API and package named `igniteui-i18n-resources` containing the new resources that are used in conjunction. **PDF export** @@ -144,9 +142,9 @@ Added OthersCategoryBrush and OthersCategoryOutline to DataPieChart and Proporti #### User Annotations -In {ProductName}, you can now annotate the with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. +In {ProductName}, you can now annotate the `XamDataChart` with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. -This is directly integrated with the available tools of the . +This is directly integrated with the available tools of the `PivotGrid.Toolbar`. {Platform} user-annotation-create @@ -154,8 +152,8 @@ This is directly integrated with the available tools of the -- +- `CategoryAngleAxis.ShouldAvoidAnnotationCollisions` +- `CategoryAngleAxis.ShouldAutoTruncateAnnotations` ### {PackageMaps} (Geographic Map) @@ -177,10 +175,10 @@ Ability for axis annotations to automatically detect collisions and truncate to ### New Components -- Added component +- Added `Chat` component ### {PackageGrids} (Grids) -- , , +- `Grid`, `TreeGrid`, `HierarchicalGrid` - Introduced a new cell merging feature that allows you to configure and merge cells in a column based on same data or other custom condition, into a single cell. It can be enabled on the individual columns: @@ -266,7 +264,7 @@ Ability for axis annotations to automatically detect collisions and truncate to #### Azure Map Imagery Support -The now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. +The `XamGeographicMap` now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. Note: Support for Bing Maps imagery is being phased out. Existing enterprise keys can still be used to access Bing Maps, ensuring your current applications continue to function while you transition to Azure maps. @@ -276,7 +274,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft #### New Axis Label Events -The following events have been added to the to allow you to detect different operations on the axis labels: +The following events have been added to the `XamDataChart` to allow you to detect different operations on the axis labels: - `LabelMouseDown` - `LabelMouseUp` @@ -287,34 +285,34 @@ The following events have been added to the to a #### Companion Axis -Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. +Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the `CategoryAngleAxis.CompanionAxisEnabled` property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. #### RadialPieSeries Inset Outlines -There is a new property called to control how outlines on the are rendered. Setting this value to **true** will inset the outlines within the slice shape, whereas a **false** (default) value will place the outlines half-in half-out along the edge of the slice shape. +There is a new property called `RadialPieSeries.UseInsetOutlines` to control how outlines on the `RadialPieSeries` are rendered. Setting this value to **true** will inset the outlines within the slice shape, whereas a **false** (default) value will place the outlines half-in half-out along the edge of the slice shape. **Breaking Changes** -- A fix was made due to an issue where the and properties on class were reversed. This will change the values that and return. +- A fix was made due to an issue where the `ChartMouseEventArgs.PlotAreaPosition` and `ChartMouseEventArgs.ChartPosition` properties on `ChartMouseEventArgs` class were reversed. This will change the values that `PlotAreaPosition` and `ChartPosition` return. ### {PackageGrids} #### Cell Suffix Content -Added support for suffix content within the cells that allows you to add additional text or icons to the end of the cell value and style it. The full list of added properties for the cell suffix content is listed below and is available on the and class: +Added support for suffix content within the cells that allows you to add additional text or icons to the end of the cell value and style it. The full list of added properties for the cell suffix content is listed below and is available on the `DataGridColumn` and `DataGridCellEventArgs.CellInfo` class: -- -- +- `DataGridColumn.SuffixText` +- `DataGridColumn.SuffixTextColor` - `SuffixTextFont` -- -- -- -- -- -- -- -- -- +- `DataGridColumn.SuffixIconName` +- `DataGridColumn.SuffixIconCollectionName` +- `DataGridColumn.SuffixIconStroke` +- `DataGridColumn.SuffixIconFill` +- `DataGridColumn.SuffixIconViewBoxLeft` +- `DataGridColumn.SuffixIconViewBoxTop` +- `DataGridColumn.SuffixIconViewBoxWidth` +- `DataGridColumn.SuffixIconViewBoxHeight` +- `DataGridColumn.TextDecoration` Please note that the maximum size available for the icons is 24x24. You can provide an icon that is larger or smaller than this, but you will need to configure the viewbox settings in order to properly scale it to fit in the 24x24 space so it is fully visible. @@ -323,28 +321,28 @@ Please note that the maximum size available for the icons is 24x24. You can prov | Bug Number | Control | Description | |------------|---------|-------------| -|27304| | Zoom rectangle is not positioned the same as the background rectangle| -|37930| | Data Annotation Overlay Text Color not working| -|30600| | No textStyle property for either the chart or series (pie chart has this)| -|31624| | Resizing the containing window of the Category Chart causes the chart to fail to render the series| -|38231| | Unpinned column does not return to the original position if hidden columns exist| +|27304| `XamDataChart` | Zoom rectangle is not positioned the same as the background rectangle| +|37930| `XamDataChart` | Data Annotation Overlay Text Color not working| +|30600| `XamDoughnutChart` | No textStyle property for either the chart or series (pie chart has this)| +|31624| `CategoryChart` | Resizing the containing window of the Category Chart causes the chart to fail to render the series| +|38231| `Grid` | Unpinned column does not return to the original position if hidden columns exist| |33861| Excel Library | Adding line chart corrupts excel File for German culture| ### Enhancements #### BulletGraph -- Added new property +- Added new `XamLinearGauge.LabelsVisible` property #### Charts - New properties added to the DataToolTipLayer, ItemToolTipLayer, and CategoryToolTipLayer to aid in styling: `ToolTipBackground`, `ToolTipBorderBrush`, and `ToolTipBorderThickness` -- New properties added to the DataLegend to aid in styling: , , and . The and default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. +- New properties added to the DataLegend to aid in styling: `ContentBackground`, `ContentBorderBrush`, and `ContentBorderThickness`. The `ContentBorderBrush` and `ContentBorderThickness` default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. -- Added a new property to called that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. +- Added a new property to `ChartMouseEventArgs` called `WorldPosition` that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. -- Added to and . This allows you to configure the opacity applied to highlighted series. +- Added `SeriesViewer.HighlightingFadeOpacity` to `SeriesViewer` and `DomainChart`. This allows you to configure the opacity applied to highlighted series. - Expose `CalloutLabelUpdating` event for domain charts. @@ -354,7 +352,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov #### IgcLinearGauge -- Added new property +- Added new `XamLinearGauge.LabelsVisible` property ## **{PackageVerChanges-25-1-AUG}** @@ -428,7 +426,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov | Bug Number | Control | Description | |------------|---------|------------------| -|36448 | | Radial label format properties do not work. (eg. Title, SubTitles)| +|36448 | `XamRadialGauge` | Radial label format properties do not work. (eg. Title, SubTitles)| ### {PackageCharts} @@ -456,17 +454,17 @@ For more details please visit: - Data Annotation Strip Layer -- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. +- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose `LayoutMode` property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. -- The property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. +- The `DefaultInteraction` property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. -- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. +- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an `ValueLayer.OverlayText` property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. - [Trendline Layer](./charts/features/chart-trendlines.mdx) series type that allows you to apply a single trend line per trend line layer to a particular series. This allows the usage of multiple trend lines on a single series since you can have multiple [TrendlineLayer](./charts/features/chart-overlays.mdx) series types in the chart. ### {PackageDashboards} -- The now supports propagating the aggregations from its DataGrid view to the chart visualization such as sorting, grouping, filtering and selection. This is currently supported by binding the `DashboardTile.ItemsSource` of the to an instance of `IgcLocalDataSource`. +- The `DashboardTile` now supports propagating the aggregations from its DataGrid view to the chart visualization such as sorting, grouping, filtering and selection. This is currently supported by binding the `DashboardTile.ItemsSource` of the `DashboardTile` to an instance of `IgcLocalDataSource`. ### {PackageGrids} @@ -488,8 +486,8 @@ For more details please visit: | Bug Number | Control | Description | |------------|---------|------------------| |25997 | `IgcDataGrid` | Summaries are only showing for first grouped child row| -|37023 | | Tooltips are cut-off/offscreen if overflow hidden is set.| -|37685 | | Poor rendering of numbers formatted with Arial font.| +|37023 | `XamDataChart` | Tooltips are cut-off/offscreen if overflow hidden is set.| +|37685 | `Spreadsheet` | Poor rendering of numbers formatted with Arial font.| |37244 | Excel Library | Custom Data Validation is not working.| ## **{PackageVerChanges-24-2-APR}** @@ -497,17 +495,17 @@ For more details please visit: ### {PackageGrids} - **All Grids** - - Allow applying initial filtering through property + - Allow applying initial filtering through `FilteringExpressionsTree` property ### Bug Fixes | Bug Number | Control | Description | |------------|---------|------------------| -| 28480 | | Undefined reference error is thrown when a datasource is replaced| +| 28480 | `Combo` | Undefined reference error is thrown when a datasource is replaced| | 25602 | `IgcDataGrid` | Loading a layout with one of the date-specific filter operators results in a TypeError console error| | 30319 | `IgcDataGrid` | Records are sorted despite no value changed| | 32598 | `IgcDataGrid` | Multi-selection is not working correctly -| 36374 | | A previous value was bound when a form was submitted on any touch device| +| 36374 | `Input` | A previous value was bound when a form was submitted on any touch device| ## **{PackageVerChanges-24-2-FEB}** @@ -515,9 +513,9 @@ For more details please visit: #### Toolbar -- Added new `GroupHeaderTextStyle` property to and . If set, it will apply to all actions. -- Added new property on called which controls the horizontal alignment of the title text. -- Added new property on called which controls the spacing between items inside the panel. +- Added new `GroupHeaderTextStyle` property to `PivotGrid.Toolbar` and `ToolPanel`. If set, it will apply to all `ToolActionGroupHeader` actions. +- Added new property on `ToolAction` called `SeriesViewer.TitleHorizontalAlignment` which controls the horizontal alignment of the title text. +- Added new property on `ToolActionSubPanel` called `ToolPanel.ItemSpacing` which controls the spacing between items inside the panel. ### Bug Fixes @@ -525,13 +523,13 @@ The following table lists the bug fixes made for the {ProductName} toolset for t | Bug Number | Control | Description | |------------|---------|------------------| -| 30286 | | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| -| 32906 | | is showing two xAxis on the top| -| 33605 | | ScatterLineSeries is not showing the color of the line correctly in the legend| -| 34776 | | Repeatedly showing and hiding the causes memory leakage in JS Heap| -| 35498 | | Tooltips for the series specified in IncludedSeries are not displayed| -| 34053 | | The position of the scale label is shifted| -| 35496 | | Error when setting styles in Excel with images| +| 30286 | `XamDataChart` | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| +| 32906 | `XamDataChart` | `XamDataChart` is showing two xAxis on the top| +| 33605 | `XamDataChart` | ScatterLineSeries is not showing the color of the line correctly in the legend| +| 34776 | `XamDataChart` | Repeatedly showing and hiding the `XamDataChart` causes memory leakage in JS Heap| +| 35498 | `XamDataChart` | Tooltips for the series specified in IncludedSeries are not displayed| +| 34053 | `XamRadialGauge` | The position of the scale label is shifted| +| 35496 | `Spreadsheet` | Error when setting styles in Excel with images| | 26218 | Excel Library | Chart's plot area right margin becomes narrower and fill pattern and fill foreground are gone just by loading an Excel file| | 34083 | Excel Library | TextOperatorConditionalFormat's is not loaded/saved properly if the text contains = in a template Excel file| | 35495 | Excel Library | Pictures in cells are lost when a template file is loaded| @@ -561,11 +559,11 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ### {PackageCharts} -- New [Data Pie Chart](./charts/types/data-pie-chart.mdx) - The is a new component that renders a pie chart. This component works similarly to the , in that it will automatically detect the properties on your underlying data model while allowing selection, highlighting, animation and legend support via the ItemLegend component. +- New [Data Pie Chart](./charts/types/data-pie-chart.mdx) - The `DataPieChart` is a new component that renders a pie chart. This component works similarly to the `CategoryChart`, in that it will automatically detect the properties on your underlying data model while allowing selection, highlighting, animation and legend support via the ItemLegend component. -- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. +- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. -- +- `PivotGrid.Toolbar` - New ToolActionCheckboxList A new CheckboxList ToolAction that displays a collection of items with checkboxes for selecting. A grid inside ToolAction CheckboxList grows in height up to 5 items, then a scrollbar is displayed. @@ -582,10 +580,10 @@ The following table lists the bug fixes made for the {ProductName} toolset for t - **All Grids** - Added new `RowClick` event. -- - - Added `sortable` property for a . +- `PivotGrid` + - Added `sortable` property for a `PivotDimension`. - Added horizontal layout. Can be enabled inside the new `pivotUI` property as `rowLayout` `horizontal`. - - Added row dimension summaries for horizontal layout only. Can be enabled for each by setting `horizontalSummary` to **true**. + - Added row dimension summaries for horizontal layout only. Can be enabled for each `PivotDimension` by setting `horizontalSummary` to **true**. - Added `horizontalSummariesPosition` property to the `pivotUI`, configuring horizontal summaries position. - Added row headers for the row dimensions. Can be enabled inside the new `pivotUI` property as `showHeaders` **true**. - Keyboard navigation now can move in to row headers back and forth from any row dimension headers or column headers. @@ -593,84 +591,84 @@ The following table lists the bug fixes made for the {ProductName} toolset for t **Breaking Changes** - **All Grids** - - + - `RowIsland` - Removed `displayDensity` deprecated property. - Renamed `actualColumns`, `contentColumns` properties to `actualColumnList` and `contentColumnList`. Use `column` or `columnList` property to get all columns now. - - Renamed `rowDelete` and `rowAdd` event argument type to . - - Renamed `contextMenu` event argument type to . - - Removed , , events `rowID` and `primaryKey` properties. Use `rowKey` instead. -- + - Renamed `rowDelete` and `rowAdd` event argument type to `RowDataCancelableEventArgs`. + - Renamed `contextMenu` event argument type to `GridContextMenuEventArgs`. + - Removed `GridEditEventArgs`, `GridEditDoneEventArgs`, `PinRowEventArgs` events `rowID` and `primaryKey` properties. Use `rowKey` instead. +- `PivotGrid` - removed `showPivotConfigurationUI` property. Use `pivotUI` and set inside it the new `showConfiguration` option. -- +- `Column` - Removed `movable` property. Use Grid's `moving` property now. - Removed `columnChildren` property. Use `childColumns` instead. -- +- `ColumnGroup` - Removed `children` property. Use `childColumns` instead. -- +- `Paginator` - Removed `isFirstPageDisabled` and `isLastPageDisabled` properties. Use `isFirstPage` and `isLastPage` instead. ## **{PackageVerChanges-24-1-JUN}** ### {PackageCommon} -- , - exposed to enable validation rules being enforced without restricting user input. -- - property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. -- - is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the property of and/or instead. +- `Input`, `Textarea` - exposed `Input.ValidateOnly` to enable validation rules being enforced without restricting user input. +- `Dropdown` - `PositionStrategy` property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. +- `DockManager` - `SplitPane` `IsMaximized` is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the `IsMaximized` property of `TabGroupPane` and/or `ContentPane` instead. ### {PackageGrids} - `DisplayDensity` deprecated in favor of the `--ig-size` CSS custom property. Check out the [Grid Size](./grids/_shared/size.mdx) topic for more regarding the Grid. ### {PackageCharts} -- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property toggles grouping with each series opting in can assign group text via the property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. +- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property `GroupRowVisible` toggles grouping with each series opting in can assign group text via the `CrosshairLayer.DataLegendGroup` property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. -- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for and . Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. +- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for `CategoryChart` and `XamDataChart`. Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and `SeriesViewer.SelectedSeriesItems` are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. -- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. +- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. -- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the property. +- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a `SeriesViewer.HighlightingMode` property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the `SeriesViewer.HighlightingTransitionDuration` property. -- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new . Can be toggled via and styled via `FillBrushes`. +- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new `XYChart.HighlightedItemsSource`. Can be toggled via `SeriesViewer.HighlightedValuesDisplayMode` and styled via `FillBrushes`. -- - New option for ToolAction for outlining a border around specific tools of choice. +- `PivotGrid.Toolbar` - New `ToolActionGroupHeader.IsHighlighted` option for ToolAction for outlining a border around specific tools of choice. ### {PackageGauges} -- - - New label for the highlight needle. and and many other styling related properties for the HighlightLabel were added. +- `XamRadialGauge` + - New label for the highlight needle. `HighlightLabelText` and `HighlightLabelSnapsToNeedlePivot` and many other styling related properties for the HighlightLabel were added. ## **{PackageVerChanges-23-2-MAR}** ### {PackageGrids} -- New [](./grids/hierarchical-grid/overview.mdx) component. +- New [`HierarchicalGrid`](./grids/hierarchical-grid/overview.mdx) component. ### {PackageCharts} -- New Data Filtering via the property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. +- New Data Filtering via the `XYChart.InitialFilter` property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. - `RadialChart` - New Label Mode - The for the now exposes a property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. + The `CategoryAngleAxis` for the now exposes a `LabelMode` property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. ### {PackageGauges} -- - - New title/subtitle properties. , will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and . Finally, the new will allow the value to correspond with the needle's position. - - New and properties for the . This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. -- - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. -- - - The Performance bar will now reflect a difference between the value and new when the is applied to the 'Overlay' setting. The highlight value will show a filtered/subset completed measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. +- `XamRadialGauge` + - New title/subtitle properties. `TitleText`, `SubtitleText` will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and `TitleExtent`. Finally, the new `TitleDisplaysValue` will allow the value to correspond with the needle's position. + - New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) + - New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamLinearGauge` + - New highlight needle was added. `XamRadialGauge.HighlightValue` and `XamRadialGauge.HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamBulletGraph` + - The Performance bar will now reflect a difference between the value and new `XamRadialGauge.HighlightValue` when the `XamRadialGauge.HighlightValueDisplayMode` is applied to the 'Overlay' setting. The highlight value will show a filtered/subset completed measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. ## **{PackageVerChanges-23-2-JAN}** ### {PackageCharts} -- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The and now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. +- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The `CategoryChart` and `XamDataChart` now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. ## **{PackageVerChanges-23-2-DEC}** @@ -685,7 +683,7 @@ The following table lists the bug fixes made for the {ProductName} toolset for t - [Toolbar](./menus/toolbar.mdx) - Save tool action has been added to save the chart to an image via the clipboard. - - Vertical orientation has been added via the toolbar's property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. + - Vertical orientation has been added via the toolbar's `Toolbar.Orientation` property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. - Custom SVG icons support was added via the toolbar's `renderImageFromText` method, further enhancing custom tool creation. @@ -693,13 +691,13 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ### {PackageLayouts} -- [Toolbar](./menus/toolbar.mdx) - This component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tool items when linked to our or components. You'll be able to create custom tools for your project allowing end users to provide changes, offering an endless amount of customization. +- [Toolbar](./menus/toolbar.mdx) - This component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tool items when linked to our `XamDataChart` or `CategoryChart` components. You'll be able to create custom tools for your project allowing end users to provide changes, offering an endless amount of customization. ### {PackageCharts} -- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the and by adding to the new collection. +- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the `ValueLayer` is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the `CategoryChart` and `FinancialChart` by adding to the new `XYChart.ValueLines` collection. -- It is now possible to apply a **dash array** to the different parts of the series of the . You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. +- It is now possible to apply a **dash array** to the different parts of the series of the `XamDataChart`. You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. ## **{PackageVerChanges-22-2.2}** @@ -707,23 +705,23 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ### {PackageGrids} -- A new argument has been introduced to , and part of the event arguments that are emitted by the `RowAdded` and `RowDeleted` events. When the grid has a primary key attribute added, then the emitted primaryKey event argument represents the row ID, otherwise it defaults to undefined. +- A new argument `PivotGrid.PrimaryKey` has been introduced to `RowDataEventArgs`, and part of the event arguments that are emitted by the `RowAdded` and `RowDeleted` events. When the grid has a primary key attribute added, then the emitted primaryKey event argument represents the row ID, otherwise it defaults to undefined. - `RowSelectionChanging` event arguments are changed. Now, the `OldSelection`, `NewSelection`, `Added` and `Removed` collections no longer consist of the row keys of the selected elements when the grid has set a primaryKey, but now in any case the row data is emitted. - When the grid is working with remote data and a primary key has been set, the selected rows that are not currently part of the grid view will be emitted for a partial row data object. - When selected row is deleted from the grid component `RowSelectionChanging` event will no longer be emitted. - The `OnGroupingDone` event has been renamed to `GroupingDone` to not violate the no on-prefixed outputs convention. - The `OnDensityChanged` event has been renamed to `DensityChanged` to not violate the no on-prefixed outputs convention. All components exposing this event are affected. -- : The properties `InBaseDimension` and `InOption` have been deprecated and renamed to `BaseDimension` and `Options` respectively. +- `PivotGrid`: The `PivotDateDimension` properties `InBaseDimension` and `InOption` have been deprecated and renamed to `BaseDimension` and `Options` respectively. ### {PackageInputs} -- , the StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) is now trimmed down to DatePart instead of DateTimeInputDatePart -- and , added component validation along with styles for invalid state +- `DateTimeInput`, the StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) is now trimmed down to DatePart instead of DateTimeInputDatePart +- `Radio` and `RadioGroup`, added component validation along with styles for invalid state - `IgcMask`, added the capability to escape mask pattern literals. -- added a property that controls the shape of the badge and can be either or `Rounded`. The default shape of the badge is rounded. -- , the `RoundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added attribute that can be , `Rounded` or . The default shape of the avatar is . +- `Badge` added a `Avatar.Shape` property that controls the shape of the badge and can be either `Square` or `Rounded`. The default shape of the badge is rounded. +- `Avatar`, the `RoundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added `Shape` attribute that can be `Square`, `Rounded` or `Circle`. The default shape of the avatar is `Square`. ## **{PackageVerChanges-22-2.1}** @@ -738,11 +736,11 @@ The following table lists the bug fixes made for the {ProductName} toolset for t - New [Grid](./grids/data-grid.mdx) component. - New [Tree Grid](./grids/tree-grid/overview.mdx) component. -- : - - Changed **{IgPrefix}Column** to - - Changed **GridCellEventArgs** to - - Changed **GridSelectionMode** to - - Changed **SummaryOperand** to +- `Grid`: + - Changed **{IgPrefix}Column** to `DataGridColumn` + - Changed **GridCellEventArgs** to `DataGridCellEventArgs` + - Changed **GridSelectionMode** to `DataGridSelectionMode` + - Changed **SummaryOperand** to `DataSourceSummaryOperand` ### {PackageCharts} @@ -751,7 +749,7 @@ The following table lists the bug fixes made for the {ProductName} toolset for t - Responsive layouts for horizontal label rotation based on browser / screen size. - Enhanced rendering for rounded labels on all platforms. - Added marker properties to StackedFragmentSeries. -- Added property. +- Added `SeriesViewer.ShouldPanOnMaximumZoom` property. - New Category Axis Properties: - ZoomMaximumCategoryRange - ZoomMaximumItemSpan @@ -771,42 +769,42 @@ The following table lists the bug fixes made for the {ProductName} toolset for t - GroupSorts - GroupSortDescriptions -[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using | . These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. +[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using `XYChart.IncludedProperties` | `XYChart.ExcludedProperties`. These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. ## **{PackageVerChanges-22-1}** ### {PackageGrids} -- : +- `Grid`: - Added New Feature - [Row Paging](./grids/_shared/paging.mdx) which is used to split a large set of data into a sequence of pages that have similar content. With pagination, data can be displayed in a set number of rows, letting users “scroll” through their data, without needing a scroll bar. The UI for table pagination usually includes things like the current page, total pages, and clickable Previous and Next arrows/buttons that let users flip through the pages of data. ### {PackageCharts} -- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the , but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. +- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the `SeriesViewer.Legend`, but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. - Added the highly-configurable [DataToolTip](./charts/features/chart-data-tooltip.mdx) which displays values and titles of series as well as legend badges of series in a tooltip. This is now the default tooltip for all chart types. -- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the property to true. From there, you can set the property to determine how long your animation should take to complete and the to determine the type of animation that takes place. -- Added `AssigningCategoryStyle` event, is now available to all series in . This event is handled when you want to conditionally configure aspects of the series items such as background-color and highlighting. -- New enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. +- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the `IsTransitionInEnabled` property to true. From there, you can set the `TransitionInDuration` property to determine how long your animation should take to complete and the `TransitionInMode` to determine the type of animation that takes place. +- Added `AssigningCategoryStyle` event, is now available to all series in `XamDataChart`. This event is handled when you want to conditionally configure aspects of the series items such as `CrosshairLayer.Fill` background-color and highlighting. +- New `AllowedPositions` enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. - New corner radius properties added for Annotation Layers; used to round-out the corners of each of the callouts. Note, a corner radius has now been added by default. - - for CalloutLayer - - for FinalValueLayer - - and for CrosshairLayer -- New and enumeration to enable scrollbars in various ways. When paired with or , you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. -- New , determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. , , `PercentChangeAxis`). -- New determines whether to include the spline shape in the axis range requested of the axis. -- New , determines the maximum allowed value for the plotted series when using . The gap determines the amount of space between columns or bars of plotted series. -- New , determines the minimum allowed pixel-based value for the plotted series when using to ensure there is always some spacing between each category. + - `CalloutCornerRadius` for CalloutLayer + - `AxisAnnotationBackgroundCornerRadius` for FinalValueLayer + - `CrosshairLayer.XAxisAnnotationBackgroundCornerRadius` and `CrosshairLayer.YAxisAnnotationBackgroundCornerRadius` for CrosshairLayer +- New `SeriesViewer.HorizontalViewScrollbarMode` and `SeriesViewer.VerticalViewScrollbarMode` enumeration to enable scrollbars in various ways. When paired with `XYChart.IsVerticalZoomEnabled` or `XYChart.IsHorizontalZoomEnabled`, you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. +- New `NumericXAxis.FavorLabellingScaleEnd`, determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. `NumericXAxis`, `NumericYAxis`, `PercentChangeAxis`). +- New `IsSplineShapePartOfRange` determines whether to include the spline shape in the axis range requested of the axis. +- New `XAxisMaximumGap`, determines the maximum allowed value for the plotted series when using `XAxisGap`. The gap determines the amount of space between columns or bars of plotted series. +- New `XAxisMinimumGapSize`, determines the minimum allowed pixel-based value for the plotted series when using `XAxisGap` to ensure there is always some spacing between each category. ## **{PackageVerChanges-21-2.1}** ### {PackageGrids} -- : - - Added , of type string[], in the to be used when your items in the drop down contain a key that consists of multiple fields. +- `Grid`: + - Added `ComboBoxColumn.ValueMultiField`, of type string[], in the `ComboBoxColumn` to be used when your items in the drop down contain a key that consists of multiple fields. -The following breaking changes were introduced: Changed property from type string[] to string. +The following breaking changes were introduced: Changed `ComboEditor.ValueField` property from type string[] to string. ### {PackageInputs} @@ -821,7 +819,7 @@ The following breaking changes were introduced: Changed : +- `Grid`: - New Features Added: - [Filter Row](./grids/_shared/filtering.mdx) - [Load/Save Layout Customizations](./grids/_shared/state-persistence.mdx) @@ -830,8 +828,8 @@ The following breaking changes were introduced: Changed - - Changed GroupHeaderDisplayMode property's type to GroupHeaderDisplayMode from + - Changed grid's SummaryScope property's type to SummaryScope from `DataSourceSummaryScope` + - Changed GroupHeaderDisplayMode property's type to GroupHeaderDisplayMode from `DataSourceSectionHeaderDisplayMode` @@ -842,29 +840,29 @@ Please ensure package "lit-html": "^2.0.0" or newer is added to your project for This release introduces a few improvements and simplifications to visual design and configuration options for the geographic map and all chart components. -- Changed property's type to **YAxisLabelLocation** from **AxisLabelLocation** in and -- Changed property's type to **XAxisLabelLocation** from **AxisLabelLocation** in -- Added property to -- Added support for representing geographic series of in a legend -- Added crosshair lines by default in and -- Added crosshair annotations by default in and -- Added final value annotation by default in +- Changed `XYChart.YAxisLabelLocation` property's type to **YAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` and `CategoryChart` +- Changed `XYChart.XAxisLabelLocation` property's type to **XAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` +- Added `XYChart.XAxisLabelLocation` property to `CategoryChart` +- Added support for representing geographic series of `XamGeographicMap` in a legend +- Added crosshair lines by default in `FinancialChart` and `CategoryChart` +- Added crosshair annotations by default in `FinancialChart` and `CategoryChart` +- Added final value annotation by default in `FinancialChart` - Added new properties in Category Chart and Financial Chart: - - and other properties for customizing crosshairs lines - - and other properties for customizing crosshairs annotations - - and other properties for customizing final value annotations - - that allow changing opacity of series fill (e.g. Area chart) - - that allows changing thickness of markers + - `XYChart.CrosshairsLineThickness` and other properties for customizing crosshairs lines + - `XYChart.CrosshairsAnnotationXAxisBackground` and other properties for customizing crosshairs annotations + - `XYChart.FinalValueAnnotationsBackground` and other properties for customizing final value annotations + - `XYChart.AreaFillOpacity` that allow changing opacity of series fill (e.g. Area chart) + - `XYChart.MarkerThickness` that allows changing thickness of markers - Added new properties in Category Chart, Financial Chart, Data Chart, and Geographic Map: - - that allows which marker type is assigned to multiple series in the same chart - - for setting badge shape of all series represented in a legend - - for setting badge complexity on all series in a legend + - `SeriesViewer.MarkerAutomaticBehavior` that allows which marker type is assigned to multiple series in the same chart + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape of all series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on all series in a legend - Added new properties in Series in Data Chart and Geographic Map: - - for setting badge shape on specific series represented in a legend - - for setting badge complexity on specific series in a legend + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape on specific series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on specific series in a legend - Changed default vertical crosshair line stroke from #000000 to #BBBBBB in category chart and series -- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's property to `SmartIndexed` enum value -- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's property to `MatchSeries` enum value +- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's `SeriesViewer.MarkerAutomaticBehavior` property to `SmartIndexed` enum value +- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's `SeriesViewer.LegendItemBadgeMode` property to `MatchSeries` enum value - Changed color palette of series and markers displayed in all charts to improve accessibility | Old brushes/outlines | New outline/brushes | @@ -876,31 +874,31 @@ This release introduces a few improvements and simplifications to visual design ### {PackageGrids} -- : +- `Grid`: - Added `EditOnKeyPress` aka Excel-style Editing, instantly begin editing when typing. - - Added property - By default double-clicking is required to enter edit mode. This can be set to to allow for edit mode to occur when selecting a new cell. - - Added property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) - - Added property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) - - Added - method. - - Added Row Range Selection - With property set to MultipleRow the following new functionality is now included: + - Added `EditModeClickAction` property - By default double-clicking is required to enter edit mode. This can be set to `SingleClick` to allow for edit mode to occur when selecting a new cell. + - Added `EnterKeyBehaviors` property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) + - Added `EnterKeyBehaviorAfterEdit` property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) + - Added `PivotGrid.SelectAllRows` - method. + - Added Row Range Selection - With `GridSelectionMode` property set to MultipleRow the following new functionality is now included: - Click and drag to select rows - SHIFT and click to select multiple rows. - SHIFT and press the + arrow keys to select multiple rows. - - Pressing space bar toggles selection of active row via property set to MultipleRow or SingleRow + - Pressing space bar toggles selection of active row via `GridSelectionMode` property set to MultipleRow or SingleRow - Added Column Summaries to Column Options Dialog. ### {PackageCharts} - Date Picker: - - - Toggles Today button visibility - - - Adds a label above the date value - - property - adds custom text when no value is selected - - - Customize input date string e.g. (`yyyy-MM-dd`) - - - Specifies whether to display selected dates as LongDate or ShortDate - - - Specifies first day of week - - - Specifies when to display first week of the year, e.g. (First Full Week, First Four day Week) - - - Toggles Week number visibility - - & - Date limits, specifying a range of available selectable dates. + - `ShowTodayButton` - Toggles Today button visibility + - `DatePicker.Label` - Adds a label above the date value + - `DatePicker.Placeholder` property - adds custom text when no value is selected + - `IWorksheetCellFormat.FormatString` - Customize input date string e.g. (`yyyy-MM-dd`) + - `DateFormat` - Specifies whether to display selected dates as LongDate or ShortDate + - `FirstDayOfWeek` - Specifies first day of week + - `FirstWeekOfYear` - Specifies when to display first week of the year, e.g. (First Full Week, First Four day Week) + - `DatePicker.ShowWeekNumbers` - Toggles Week number visibility + - `MinDate` & `MaxDate` - Date limits, specifying a range of available selectable dates. - Added Accessibility @@ -918,30 +916,30 @@ These features are CTP ### {PackageCharts} -This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. , , and . +This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. `XamDataChart`, `CategoryChart`, and `FinancialChart`. - Changed Bar/Column/Waterfall series to have square corners instead of rounded corners - Changed Scatter High Density series’ colors for heat min property from #8a5bb1 to #000000 - Changed Scatter High Density series’ colors for heat max property from #ee5879 to #ee5879 - Changed Financial/Waterfall series’ `NegativeBrush` and `NegativeOutline` properties from #C62828 to #ee5879 - Changed marker's thickness to 2px from 1px -- Changed marker's fill to match the marker's outline for , , , . You can use set property to Normal to undo this change -- Compressed labelling for the and +- Changed marker's fill to match the marker's outline for `PointSeries`, `BubbleSeries`, `ScatterSeries`, `PolarScatterSeries`. You can use set `XYChart.MarkerFillMode` property to Normal to undo this change +- Compressed labelling for the `TimeXAxis` and `OrdinalTimeXAxis` - New Marker Properties: - - series. - Can be set to `MatchMarkerOutline` so the marker depends on the outline - - series. - Can be set to a value 0 to 1 - - series. - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color + - series.`XYChart.MarkerFillMode` - Can be set to `MatchMarkerOutline` so the marker depends on the outline + - series.`XYChart.MarkerFillOpacity` - Can be set to a value 0 to 1 + - series.`XYChart.MarkerOutlineMode` - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color - New Series Property: - - series. - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series -- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the , listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series +- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the `XYChart.ComputedPlotAreaMarginMode`, listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - New Highlighting Properties - - chart. - Sets whether hovered or non-hovered series to fade, brighten - - chart. - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item + - chart.`SeriesViewer.HighlightingMode` - Sets whether hovered or non-hovered series to fade, brighten + - chart.`SeriesViewer.HighlightingBehavior` - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item - Note, in previous releases the highlighting was limited to fade on hover. - Added Highlighting Stacked, Scatter, Polar, Radial, and Shape series: - Added Annotation layers to Stacked, Scatter, Polar, Radial, and Shape series: @@ -964,14 +962,14 @@ for example: #### Chart Legend -- Added horizontal property to ItemLegend that can be used with Bubble, Donut, and Pie Chart -- Added property - Enables series highlighting when hovering over legend items +- Added horizontal `Toolbar.Orientation` property to ItemLegend that can be used with Bubble, Donut, and Pie Chart +- Added `SeriesViewer.LegendHighlightingMode` property - Enables series highlighting when hovering over legend items ## **{PackageVerChangedFields}** ### {PackageGrids} -- : +- `Grid`: These breaking changes were introduce in the grid package. @@ -1007,7 +1005,7 @@ income.field = "Income"; ### {PackageGrids} -- : +- `Grid`: - Changed Name of Live Grid - the data grid component and it's corresponding module's names have changed from "LiveGrid" to "DataGrid". @@ -1026,7 +1024,7 @@ import { IgcDataGridModule } from 'igniteui-webcomponents-data-grids'; -- Required Peer Dependency for +- Required Peer Dependency for `Grid` The data grid component requires the "inputs" package. @@ -1131,44 +1129,44 @@ import { IgcLiveGridComponent } from 'igniteui-webcomponents-data-grids/ES5/igc- ### **{PackageCommonVerChanges-5.0.0}** -- - - Added method. This allows to register and replace icons by SVG files. +- `Icon` + - Added `setIconRef` method. This allows to register and replace icons by SVG files. - All components now use icons by reference internally so that it's easy to replace them without explicitly providing custom templates. -- +- `RadioGroup` - Added `name` and `value` properties. **Breaking Changes** -- Removed component. Use native form instead. +- Removed `Button.Form` component. Use native form instead. - Removed `size` property in favor of the `--ig-size` CSS custom property for the following components: - - , ,, , , , , , , , , , + - `Avatar`, `Button`,`IconButton`, `Calendar`, `Chip`, `Dropdown`, `Icon`, `Input`, `List`, `Rating`, `Snackbar`, `Tabs`, `Tree` - Removed custom `igcFocus` and `igcBlur` events. Use the native `focus` and `blur` events instead for the following components: - - , , , , , , , , , **IgcSelectComponent**, -- , , + - `Button`, `IconButton`, `Checkbox`, `Switch`, `Combo`, `DateTimeInput`, `Input`, `MaskInput`, `Radio`, **IgcSelectComponent**, `Textarea` +- `Checkbox`, `Switch` ,`Radio` - Changed `igcChange` event arguments from `CustomEvent` to `CustomEvent<{ checked: boolean; value: string | undefined }>` -- , **IgcSelectComponent** +- `Combo`, **IgcSelectComponent** - Removed `positionStrategy`, `flip`, `sameWidth` properties. -- +- `Dialog` - Renamed The `closeOnEscape` property to `keepOpenOnEscape`. -- +- `Dropdown` - Removed `positionStrategy` property. -- +- `Input` - Removed `maxlength` and `minlength` properties. Use the native `maxLength` and `minLength` properties or `max` and `min` instead. - Renamed `readonly` and `inputmode` properties to `readOnly` and `inputMode`. -- +- `RangeSlider` - Renamed `ariaThumbLower`/`ariaThumbUpper` properties to `thumbLabelLower`/`thumbLabelUpper`. -- +- `Rating` - Renamed `readonly` property to `readOnly`. ### **{PackageCommonVerChanges-4.11.1}** #### Changed -- - Design changes in vertical mode. +- `Stepper` - Design changes in vertical mode. ### **{PackageCommonVerChanges-4.11.0}** #### Changed -- , , - Styling changes in Indigo Theme. +- `Toast`, `Rating`, `Stepper` - Styling changes in Indigo Theme. ### **{PackageCommonVerChanges-4.10.0}** @@ -1176,117 +1174,117 @@ import { IgcLiveGridComponent } from 'igniteui-webcomponents-data-grids/ES5/igc- - New [Banner](./notifications/banner.mdx) component - New [Divider](./layouts/divider.mdx) component - New [DatePicker](./scheduling/date-picker.mdx) component -- - Bind underlying radio components name and checked state through the radio group. +- `RadioGroup` - Bind underlying radio components name and checked state through the radio group. #### Deprecated -- `Inputmode` property. Aligned with the native `inputMode` DOM property instead. +- `Input` `Inputmode` property. Aligned with the native `inputMode` DOM property instead. #### Fixed -- , - passing `undefined` to value sets the underlying input value to undefined. -- - after a form `reset` call correctly update underlying input value and placeholder state. -- - setting `--ig-size` on the item `indicator` CSS Part will now change the size of the icon. -- - double emit of `igcChange` in certain scenarios. -- - mini variant is not initially rendered when not in an open state. -- : +- `Input`, `Textarea` - passing `undefined` to value sets the underlying input value to undefined. +- `MaskInput` - after a form `reset` call correctly update underlying input value and placeholder state. +- `Tree` - setting `--ig-size` on the item `indicator` CSS Part will now change the size of the icon. +- `DateTimeInput` - double emit of `igcChange` in certain scenarios. +- `NavDrawer` - mini variant is not initially rendered when not in an open state. +- `Combo`: - Selecting an entry using the ENTER key now correctly works in single selection mode. - - Turning on the option now clears any previously entered search term. + - Turning on the `DisableFiltering` option now clears any previously entered search term. - Entering a search term in single selection mode that already matches the selected item now works correctly. ### **{PackageCommonVerChanges-4.9.0}** #### Added -- - now allows resetting the selection state via the property. -- , - exposed to enable validation rules being enforced without restricting user input. +- `ButtonGroup` - now allows resetting the selection state via the `PieChartBase.SelectedItems` property. +- `Input`, `Textarea` - exposed `Input.ValidateOnly` to enable validation rules being enforced without restricting user input. #### Changed -- , and - now use the native `Popover` API. +- `Combo`, `DatePicker.Select` and `Dropdown` - now use the native `Popover` API. #### Deprecated -- - property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. +- `Dropdown` - `PositionStrategy` property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. #### Fixed -- - Label in Material theme is broken when component is in read-only mode. +- `DateTimeInput` - Label in Material theme is broken when component is in read-only mode. ### **{PackageCommonVerChanges-4.8.2}** #### Fixed -- - resize handle position for non-suffixed textarea. -- - error when dynamically creating and adding a tab group and tabs in a single call stack. -- / - participate in form submission when initially checked. -- - `igcClosed` fired before the component was actually closed/hidden. +- `Textarea` - resize handle position for non-suffixed textarea. +- `Tabs` - error when dynamically creating and adding a tab group and tabs in a single call stack. +- `Checkbox`/`Switch` - participate in form submission when initially checked. +- `Dialog` - `igcClosed` fired before the component was actually closed/hidden. ### **{PackageCommonVerChanges-4.8.1}** #### Fixed -- - is not applied to an already set value. -- , , - apply form validation synchronously. -- , - Unable to select item when clicking on a wrapping element inside the dropdown/select item slot. -- - active state is correctly applied to the correct tree node on click. +- `DateTimeInput` - `DatePicker.InputFormat` is not applied to an already set value. +- `Checkbox`, `Radio`, `Switch` - apply form validation synchronously. +- `DatePicker.Select`, `Dropdown` - Unable to select item when clicking on a wrapping element inside the dropdown/select item slot. +- `Tree` - active state is correctly applied to the correct tree node on click. ### **{PackageCommonVerChanges-4.8.0}** #### Added -- can now set to none which shows the groups in the order of the provided data. -- / - updated visual looks across themes, new states. +- `Combo` can now set `GroupSorting` to none which shows the groups in the order of the provided data. +- `Button`/`IconButton` - updated visual looks across themes, new states. - `NavBar` - added border in Bootstrap theme. #### Changed -- Grouping in no longer sorts the data. property now affects the sorting direction only of the groups. **Behavioral change**: In previous release the sorting directions of the groups sorted the items as well. If you want to achieve this behavior you can pass already sorted data to the . +- Grouping in `Combo` no longer sorts the data. `GroupSorting` property now affects the sorting direction only of the groups. **Behavioral change**: In previous release the sorting directions of the groups sorted the items as well. If you want to achieve this behavior you can pass already sorted data to the `Combo`. #### Deprecated -- - `aria-label-upper` and `aria-label-lower` are deprecated and will be removed in the next major release. Use `thumb-label-upper` and `thumb-label-lower` instead. +- `Slider` - `aria-label-upper` and `aria-label-lower` are deprecated and will be removed in the next major release. Use `thumb-label-upper` and `thumb-label-lower` instead. #### Fixed -- - Slotted icon size. -- +- `Button` - Slotted icon size. +- `ButtonGroup` - Updated Fluent theme look. - Disabled state in Safari. -- / - Style issues. -- +- `Combo`/`DatePicker.Select` - Style issues. +- `Slider` - Clicks on the slider track now use the track element width as a basis for the calculation. - Input events are no longer emitted while continuously dragging the slider thumb and exceeding upper/lower bounds. - When setting `upper-bound`/`lower-bound` before `min`/`max`, the slider will no longer overwrite the bound properties with the previous values of `min`/`max`. - The `aria-label` bound to the slider thumb is no longer reset on consequent renders. -- +- `Input` - Default validators are run synchronously. - Style issues. -- - `setRangeText()` updates underlying value. +- `DateTimeInput` - `setRangeText()` updates underlying value. ### **{PackageCommonVerChanges-4.7.0}** #### Added -- - Added property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. +- `Tree` - Added `ToggleNodeOnClick` property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. -- - added. When enabled selecting the same value will reset the component. **Behavioral change**: In previous releases this was the default behavior of the rating component. Make sure to set `allowReset` if you need to keep this behavior in your application. +- `Rating` - `AllowReset` added. When enabled selecting the same value will reset the component. **Behavioral change**: In previous releases this was the default behavior of the rating component. Make sure to set `allowReset` if you need to keep this behavior in your application. #### Changed -- Improved WAI-ARIA compliance for , and . +- Improved WAI-ARIA compliance for `Avatar`, `Badge` and `Combo`. #### Fixed -- Active item visual styles for , and . -- - mini variant broken visual style. +- Active item visual styles for `Dropdown`, `DatePicker.Select` and `Combo`. +- `NavDrawer` - mini variant broken visual style. ### **{PackageCommonVerChanges-4.6.0}** #### Added -- `action` slot added to . -- `indicator-expanded` slot added to . -- `toggle-icon-expanded` slot added to . -- , - exposed `selectedItem`, `items` and `groups` getters. +- `action` slot added to `Snackbar`. +- `indicator-expanded` slot added to `ExpansionPanel`. +- `toggle-icon-expanded` slot added to `DatePicker.Select`. +- `DatePicker.Select`, `Dropdown` - exposed `selectedItem`, `items` and `groups` getters. #### Changed - Updated the package to Lit v3. - Components dark variants are now bound to their shadow root. - Components implement default sizes based on current theme. -- - changed events to non-cancellable. +- `ButtonGroup` - changed events to non-cancellable. - Optimized components CSS and reduced bundle size. -- WAI-ARIA improvements for , , and . +- WAI-ARIA improvements for `Icon`, `DatePicker.Select`, `Dropdown` and `List`. #### Fixed -- missing styling parts. -- disabled styles. -- removed unnecessary styles. -- hover state visual design. -- not keeping focus state when switching views. +- `Textarea` missing styling parts. +- `TreeItem` disabled styles. +- `Snackbar` removed unnecessary styles. +- `TreeItem` hover state visual design. +- `Calendar` not keeping focus state when switching views. ### **{PackageCommonVerChanges-4.5.0}** @@ -1294,13 +1292,13 @@ import { IgcLiveGridComponent } from 'igniteui-webcomponents-data-grids/ES5/igc- - New [Text Area](./inputs/text-area.mdx) component. - New [Button Group](./inputs/button-group.mdx) component. -- New . -- now supports CSS transitions. -- Position attribute for and . +- New `ToggleButton`. +- `NavDrawer` now supports CSS transitions. +- Position attribute for `Toast` and `Snackbar`. #### Deprecated -The `size` property and attribute have been deprecated for all components. Use the `--ig-size` CSS custom property instead. The following example sets the size of the component to small: +The `size` property and attribute have been deprecated for all components. Use the `--ig-size` CSS custom property instead. The following example sets the size of the `Avatar` component to small: ```css igc-avatar { @@ -1320,83 +1318,83 @@ igc-avatar { #### Added - The following components are now Form Associated Custom Elements. They are automatically associated with a parent `
` and behave like a browser-provided control: - - & - - - - - - - - - - - - - - - - Single - - - - -- now supports animations. + - `Button` & `IconButton` + - `Checkbox` + - `Combo` + - `DateTimeInput` + - `Input` + - `MaskInput` + - `Radio` + - `Rating` + - Single `Slider` + - `DatePicker.Select` + - `Switch` +- `Stepper` now supports animations. #### Changed -- fluent theme colors. -- indicator styles and color schemas. +- `Rating` fluent theme colors. +- `Stepper` indicator styles and color schemas. #### Deprecated - `IgcForm` component is deprecated. -- : +- `Input`: - `minlength` property is deprecated and will be removed in the next major version. Use `minLength` instead. - `maxlength` property is deprecated and will be removed in the next major version. Use `maxLength` instead. - `readonly` property is deprecated and will be removed in the next major version. Use `readOnly` instead. -- : +- `MaskInput`: - `readonly` property is deprecated and will be removed in the next major version. Use `readOnly` instead. -- : +- `DateTimeInput`: - `readonly` property is deprecated and will be removed in the next major version. Use `readOnly` instead. - `minValue` property is deprecated and will be removed in the next major version. Use `min` instead. - `maxValue` property is deprecated and will be removed in the next major version. Use `max` instead. -- : +- `Rating`: - `readonly` property is deprecated and will be removed in the next major version. Use `readOnly` instead. #### Removed - Removed our own `dir` attribute which shadowed the default one. This is a **non-breaking change**. -- - `ariaLabel` shadowed property. This is a **non-breaking change**. -- - `ariaLabelledBy` shadowed attribute. This is a **non-breaking change**. -- - `ariaLabelledBy` shadowed attribute. This is a **non-breaking change**. -- - `ariaLabelledBy` shadowed attribute. This is a **non-breaking change**. +- `Slider` - `ariaLabel` shadowed property. This is a **non-breaking change**. +- `Checkbox` - `ariaLabelledBy` shadowed attribute. This is a **non-breaking change**. +- `Switch` - `ariaLabelledBy` shadowed attribute. This is a **non-breaking change**. +- `Radio` - `ariaLabelledBy` shadowed attribute. This is a **non-breaking change**. #### Fixed -- - outlined variant styling issues and indigo theme issues. -- - outlined variant styling issues -- - `spinUp/spinDown` calls moving the caret when the input is focused. +- `Input` - outlined variant styling issues and indigo theme issues. +- `DatePicker.Select` - outlined variant styling issues +- `DateTimeInput` - `spinUp/spinDown` calls moving the caret when the input is focused. ### **{PackageCommonVerChanges-4.3.1}** #### Added -- - component animations. +- `Tree` - component animations. - Components border radius is consumed from their schemas. #### Changed -- , , - schema colors. -- - schema colors. -- - updated theming styles and size. +- `Combo`, `Input`, `DatePicker.Select` - schema colors. +- `Dropdown` - schema colors. +- `Icon` - updated theming styles and size. #### Fixed -- - single selection not working in certain scenarios. -- - various styling fixes. -- - border radius with ripple. -- - fixed wrong color in Fluent theme. -- - various styling fixes. -- - assign closest **igc-tree-item** ancestor as a parent. -- - internal **hidden** styles and custom display property. +- `Combo` - single selection not working in certain scenarios. +- `Dropdown` - various styling fixes. +- `IconButton` - border radius with ripple. +- `IconButton` - fixed wrong color in Fluent theme. +- `Input` - various styling fixes. +- `TreeItem` - assign closest **igc-tree-item** ancestor as a parent. +- `Tabs` - internal **hidden** styles and custom display property. ### **{PackageCommonVerChanges-4.3.0}** #### Added -- : +- `Combo`: - `matchDiacritics` to the filtering options property. Defaults to **false**. If set to **true** the filter distinguishes between accented letters and their base letters. Otherwise strings are normalized and then matched. - `selection` property which returns the current selection as an array of data objects. -- : Support explicit height -- : Added animations -- : Added animations -- : Added animations +- `Card`: Support explicit height +- `Dialog`: Added animations +- `Snackbar`: Added animations +- `Toast`: Added animations #### Changed -- : +- `Combo`: - `value` is no longer readonly and can be explicitly set. The value attribute also supports declarative binding, accepting a valid JSON stringified array. - `value` type changed from `string[]` to `ComboValue[]` where @@ -1420,65 +1418,65 @@ interface IgcComboChangeEventArgs { #### Deprecated -- : Deprecated `sameWidth`, `positionStrategy` and `flip`. They will be removed in the next major release. +- `DatePicker.Select`: Deprecated `sameWidth`, `positionStrategy` and `flip`. They will be removed in the next major release. #### Fixed -- : `prefix`/`suffix`/`helper-text` slots not being rendered. -- : Nested tabs selection. -- : Backdrop doesn't overlay elements. -- : Listbox position on initial open state. -- : Stretch vertically in parent container. -- : Wrong colors in fluent theme. +- `DatePicker.Select`: `prefix`/`suffix`/`helper-text` slots not being rendered. +- `Tabs`: Nested tabs selection. +- `Dialog`: Backdrop doesn't overlay elements. +- `Dropdown`: Listbox position on initial open state. +- `Stepper`: Stretch vertically in parent container. +- `Navbar`: Wrong colors in fluent theme. - Animation player throws errors when height is unspecified. -- : Intl.DateTimeFormat issues in Chromium based browsers. +- `DateTimeInput`: Intl.DateTimeFormat issues in Chromium based browsers. ### **{PackageCommonVerChanges-4.2.3}** #### Deprecated -- - Property `closeOnEscape` is deprecated in favor of new property `keepOpenOnEscape`. +- `Dialog` - Property `closeOnEscape` is deprecated in favor of new property `keepOpenOnEscape`. #### Fixed -- - colors in selected focus state. -- - set icon size to match other design system products. -- - removed outline styles for Fluent and Material themes. -- - navigation to date on set value. -- - not taking the full height of their parents. +- `Radio`- colors in selected focus state. +- `IconButton` - set icon size to match other design system products. +- `Chip` - removed outline styles for Fluent and Material themes. +- `Calendar` - navigation to date on set value. +- `Tabs` - not taking the full height of their parents. ### **{PackageCommonVerChanges-4.2.2}** #### Deprecated -- - The `prefix`/`suffix` slots are no longer needed and will be removed in the next major release. +- `Button` - The `prefix`/`suffix` slots are no longer needed and will be removed in the next major release. #### Fixed -- - UI inconsistencies. -- - Fluent theme inconsistencies. -- - Selection via API doesn't work on a searched list. -- - Fluent theme inconsistency. -- - UI inconsistencies. -- - Fluent theme inconsistency. +- `Button` - UI inconsistencies. +- `Calendar` - Fluent theme inconsistencies. +- `Combo` - Selection via API doesn't work on a searched list. +- `Dialog` - Fluent theme inconsistency. +- `Input` - UI inconsistencies. +- `Toast` - Fluent theme inconsistency. - Components missing in defineAllComponents. -- Wrong host sizes for , , and . +- Wrong host sizes for `Avatar`, `Badge`, `Button` and `IconButton`. ### **{PackageCommonVerChanges-4.2.1}** #### Fixed -- - Matching item not activated on filtering in single selection mode. +- `Combo` - Matching item not activated on filtering in single selection mode. ### **{PackageCommonVerChanges-4.2.0}** #### Added -- - Single Selection mode via the `single-select` attribute. +- `Combo` - Single Selection mode via the `single-select` attribute. #### Fixed -- - UI inconsistencies. -- - Doesn't correctly render `igc-icon` and font icons. -- - UI inconsistencies. -- - Can't override item margin. +- `Input` - UI inconsistencies. +- `Badge` - Doesn't correctly render `igc-icon` and font icons. +- `Radio` - UI inconsistencies. +- `NavDrawer` - Can't override item margin. ### **{PackageCommonVerChanges-4.1.1}** #### Fixed -- +- `Input` - position label based on component size. - material themes don't match design. - do not cache the underlying input. @@ -1491,10 +1489,10 @@ interface IgcComboChangeEventArgs { #### Added - New [Stepper](./layouts/stepper.mdx) component. - New [Combo](./inputs/combo/overview.mdx) component. -- - Skip literal positions when deleting symbols in the component +- `MaskInput` - Skip literal positions when deleting symbols in the component #### Fixed -- - Validation state on user input. +- `MaskInput` - Validation state on user input. ### **{PackageCommonVerChanges-4.0.0}** @@ -1508,16 +1506,16 @@ interface IgcComboChangeEventArgs { ### **{PackageCommonVerChanges-3.4.2}** #### Fixed -- Resolved importing error for . +- Resolved importing error for `DateRangeType`. ### **{PackageCommonVerChanges-3.4.1}** #### Changed -- - updated theme with the latest fluent spec. -- - updated weekend days color. +- `Slider` - updated theme with the latest fluent spec. +- `Calendar` - updated weekend days color. #### Fixed -- `selected` attribute breaks content visibility on init. +- `Tabs` `selected` attribute breaks content visibility on init. ### **{PackageCommonVerChanges-3.4.0}** @@ -1526,22 +1524,22 @@ interface IgcComboChangeEventArgs { - New [Select](./inputs/select.mdx) component. #### Fixed -- - range selection a11y improvements. -- - a11y improvements for choosing range values. -- - improved a11y with assistive software now reading the total number of items. -- - added `role="alert"` to the message container for assistive software to read it without the need of focusing. -- - made remove button accessible with the keyboard. -- `prefix`/`suffix` does not align icons to the button text. +- `Calendar` - range selection a11y improvements. +- `RangeSlider` - a11y improvements for choosing range values. +- `Rating` - improved a11y with assistive software now reading the total number of items. +- `Toast` - added `role="alert"` to the message container for assistive software to read it without the need of focusing. +- `Chip` - made remove button accessible with the keyboard. +- `Button` `prefix`/`suffix` does not align icons to the button text. ### **{PackageCommonVerChanges-3.3.1}** #### Changed -- - Removed theme-specified height. +- `Tree` - Removed theme-specified height. #### Fixed -- - Dispose of top-level event listeners. -- - Indeterminate animation in Safari. -- - Child radio components auto-registration. +- `Dropdown` - Dispose of top-level event listeners. +- `LinearProgress` - Indeterminate animation in Safari. +- `RadioGroup` - Child radio components auto-registration. ### **{PackageCommonVerChanges-3.3.0}** @@ -1552,9 +1550,9 @@ interface IgcComboChangeEventArgs { - Typography styles in themes. #### Changed -- - Added support for single selection and empty symbols. -- - Improved slider steps rendering. -- Components will now auto register their dependencies when they are registered in +- `Rating` - Added support for single selection and empty symbols. +- `Slider` - Improved slider steps rendering. +- Components will now auto register their dependencies when they are registered in `defineComponents` @@ -1571,11 +1569,11 @@ Check the official [documentation](https://www.infragistics.com/products/ignite- #### Fixed - Remove input helper text container when it is empty. -- not showing in Safari. -- not showing in Safari. -- stretches correctly in flex containers. +- `Icon` not showing in Safari. +- `Checkbox` not showing in Safari. +- `Button` stretches correctly in flex containers. - Various theming issues. -- - bug fixes and improvements. +- `Dropdown` - bug fixes and improvements. ### **{PackageCommonVerChanges-3.2.0}** @@ -1583,27 +1581,27 @@ Check the official [documentation](https://www.infragistics.com/products/ignite- - New [MaskInput](./inputs/mask-input.mdx) component. - New [ExpansionPanel](./layouts/expansion-panel.mdx) component. - New [Tree](./grids/tree.mdx) component. -- - Added `selected` CSS part and exposed CSS variable to control symbol sizes. -- - Allow slotted content. +- `Rating` - Added `selected` CSS part and exposed CSS variable to control symbol sizes. +- `IconButton` - Allow slotted content. #### Fixed -- - Various styles fixes. +- `NavDrawer` - Various styles fixes. - Buttons - Vertical align and focus management. -- - Overflow for `suffix`/`prefix`. -- - Collapse with small sizes. -- - Overflow behavior. +- `Input` - Overflow for `suffix`/`prefix`. +- `Switch` - Collapse with small sizes. +- `List` - Overflow behavior. ### **{PackageCommonVerChanges-3.1.0}** #### Added -- : Added `prefix` and `suffix` slots. -- : Added `toggle` method. +- `Chip`: Added `prefix` and `suffix` slots. +- `Snackbar`: Added `toggle` method. #### Deprecated -- : Previously exposed `start` and `end` slots are replaced by `prefix` and `suffix`. They remain active, but are now deprecated and will be removed in a future version. +- `Chip`: Previously exposed `start` and `end` slots are replaced by `prefix` and `suffix`. They remain active, but are now deprecated and will be removed in a future version. #### Fixed -- : +- `Chip`: - Auto load internal icons. - Selected chip is misaligned. - Package: ESM internal import paths. @@ -1617,7 +1615,7 @@ Check the official [documentation](https://www.infragistics.com/products/ignite- #### Added - New [DropDown](./inputs/dropdown.mdx) component. -- : Active date can be set via an attribute. +- `Calendar`: Active date can be set via an attribute. ### **{PackageCommonVerChanges-2.1.1}** @@ -1651,16 +1649,16 @@ Example: - Dark Themes - New [Slider](./inputs/slider.mdx) component. - New [RangeSlider](./inputs/slider.mdx) component. -- Support `required` property in component. +- Support `required` property in `Radio` component. #### Changed - Fix checkbox/switch validity status -- Split 's `value: Date | Date[]` property into two properties - `value: Date` and `values: Date[]` -- Replaced 's `hasHeader` property & `has-header` attribute with `hideHeader` & `hide-header` respectively. -- Replaced 's `outlined` property with `elevated`. +- Split `Calendar`'s `value: Date | Date[]` property into two properties - `value: Date` and `values: Date[]` +- Replaced `Calendar`'s `hasHeader` property & `has-header` attribute with `hideHeader` & `hide-header` respectively. +- Replaced `Card`'s `outlined` property with `elevated`. #### Removed -- Removed `igcOpening`, `igcOpened`, `igcClosing` and `igcClosed` events from component. +- Removed `igcOpening`, `igcOpened`, `igcClosing` and `igcClosed` events from `NavDrawer` component. ### **{PackageCommonVerChanges-1.0.0}** @@ -1693,7 +1691,7 @@ Initial release of Ignite UI Web Components ### **{PackageDockManagerVerChanges-1.14.4}** #### Deprecated -- is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the property of and/or instead. +- `SplitPane` `IsMaximized` is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the `IsMaximized` property of `TabGroupPane` and/or `ContentPane` instead. ### **{PackageDockManagerVerChanges-1.14.3}** @@ -1724,13 +1722,13 @@ Initial release of Ignite UI Web Components #### Fixed - Maximizing and unpinning panes leads to unclickable panes. -- Center dock is possible in a pane that has set to **true** if the of is set to **false**. +- Center dock is possible in a pane that has `AcceptsInnerDock` set to **true** if the `AllowInnerDock` of `DockManager` is set to **false**. ### **{PackageDockManagerVerChanges-1.13.0}** #### New features -- Add method. -- Add and properties. +- Add `FocusPane` method. +- Add `AllowInnerDock` and `AcceptsInnerDock` properties. #### Enhancements - Save pane maximized state in layout. @@ -1772,7 +1770,7 @@ Initial release of Ignite UI Web Components #### Enhancements - Include pane information in `splitterResizeStart` and `splitterResizeEnd` events. -- is now exported as class. +- `DockManager` is now exported as class. #### Fixed - Contents in slots with `unpinnedHeaderId` are not updated correctly. @@ -1806,7 +1804,7 @@ Initial release of Ignite UI Web Components ### **{PackageDockManagerVerChanges-1.11.0}** #### New features -- Add options for property for different buttons +- Add options for `ShowHeaderIconOnHover` property for different buttons - Add `horizontal` and `vertical` options for `splitter-handle` CSS part - Add `header-title` CSS part - Add `hover` option for `tab-header-close-button` CSS part in active/inactive states @@ -1815,7 +1813,7 @@ Initial release of Ignite UI Web Components ### **{PackageDockManagerVerChanges-1.10.0}** #### New features -- Add property. +- Add `ShowHeaderIconOnHover` property. #### Fixed - Active pane is not retained on float/dock. @@ -1839,10 +1837,10 @@ Initial release of Ignite UI Web Components #### New features - Customizable floating pane header. -- property per pane. -- property which allows content pane to be docked only inside a document host. -- property for split and tab group panes which allows displaying empty areas. -- property on the dock manager. +- `DatePicker.Disabled` property per pane. +- `DocumentOnly` property which allows content pane to be docked only inside a document host. +- `SplitPane.AllowEmpty` property for split and tab group panes which allows displaying empty areas. +- `DisableKeyboardNavigation` property on the dock manager. #### Fixed - Docking indicators appear over the currently dragged floating pane. @@ -1858,7 +1856,7 @@ Initial release of Ignite UI Web Components ### **{PackageDockManagerVerChanges-1.5.0}** #### New features -- property per pane. +- `AllowMaximize` property per pane. #### Fixed - Unpinned pane is closing automatically upon clicking on its content. diff --git a/docs/xplat/src/content/en/components/general-changelog-dv.mdx b/docs/xplat/src/content/en/components/general-changelog-dv.mdx index 084248ae91..e89f9a227f 100644 --- a/docs/xplat/src/content/en/components/general-changelog-dv.mdx +++ b/docs/xplat/src/content/en/components/general-changelog-dv.mdx @@ -19,8 +19,6 @@ import chartdefaults3 from '@xplat-images/chartDefaults3.png'; import chartdefaults4 from '@xplat-images/chartDefaults4.png'; import Badge from 'igniteui-astro-components/components/mdx/Badge.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {ProductName} Changelog All notable changes for each version of {ProductName} are documented on this page. @@ -111,9 +109,9 @@ Added OthersCategoryBrush and OthersCategoryOutline to DataPieChart and Proporti #### User Annotations -In {ProductName}, you can now annotate the with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. +In {ProductName}, you can now annotate the `XamDataChart` with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. -This is directly integrated with the available tools of the . +This is directly integrated with the available tools of the `Toolbar`. {Platform} user-annotation-create @@ -121,8 +119,8 @@ This is directly integrated with the available tools of the -- +- `CategoryAngleAxis.ShouldAvoidAnnotationCollisions` +- `CategoryAngleAxis.ShouldAutoTruncateAnnotations` ### {PackageMaps} (Geographic Map) @@ -143,7 +141,7 @@ Ability for axis annotations to automatically detect collisions and truncate to #### Azure Map Imagery Support -The now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. +The `XamGeographicMap` now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. Note: Support for Bing Maps imagery is being phased out. Existing enterprise keys can still be used to access Bing Maps, ensuring your current applications continue to function while you transition to Azure maps. @@ -153,7 +151,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft #### New Axis Label Events -The following events have been added to the to allow you to detect different operations on the axis labels: +The following events have been added to the `XamDataChart` to allow you to detect different operations on the axis labels: - `LabelMouseDown` - `LabelMouseUp` @@ -164,46 +162,46 @@ The following events have been added to the to a #### Companion Axis -Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. +Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the `CategoryAngleAxis.CompanionAxisEnabled` property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. #### RadialPieSeries Inset Outlines -There is a new property called to control how outlines on the are rendered. Setting this value to **true** will inset the outlines within the slice shape, whereas a **false** (default) value will place the outlines half-in half-out along the edge of the slice shape. +There is a new property called `UseInsetOutlines` to control how outlines on the `RadialPieSeries` are rendered. Setting this value to **true** will inset the outlines within the slice shape, whereas a **false** (default) value will place the outlines half-in half-out along the edge of the slice shape. **Breaking Changes** -- A fix was made due to an issue where the and properties on class were reversed. This will change the values that and return. +- A fix was made due to an issue where the `ChartMouseEventArgs.PlotAreaPosition` and `ChartMouseEventArgs.ChartPosition` properties on `ChartMouseEventArgs` class were reversed. This will change the values that `PlotAreaPosition` and `ChartPosition` return. ### Enhancements #### IgxBulletGraph -- Added new property +- Added new `XamLinearGauge.LabelsVisible` property #### Charts - New properties added to the DataToolTipLayer, ItemToolTipLayer, and CategoryToolTipLayer to aid in styling: `ToolTipBackground`, `ToolTipBorderBrush`, and `ToolTipBorderThickness` -- New properties added to the DataLegend to aid in styling: , , and . The and default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. +- New properties added to the DataLegend to aid in styling: `ContentBackground`, `ContentBorderBrush`, and `ContentBorderThickness`. The `ContentBorderBrush` and `ContentBorderThickness` default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. -- Added a new property to called that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. +- Added a new property to `ChartMouseEventArgs` called `WorldPosition` that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. -- Added to and . This allows you to configure the opacity applied to highlighted series. +- Added `SeriesViewer.HighlightingFadeOpacity` to `SeriesViewer` and `DomainChart`. This allows you to configure the opacity applied to highlighted series. - Expose `CalloutLabelUpdating` event for domain charts. #### IgxLinearGauge -- Added new property +- Added new `XamLinearGauge.LabelsVisible` property ### Bug Fixes | Bug Number | Control | Description | |------------|---------|-------------| -|31624 | | Resizing the containing window of the causes the chart to fail to render the series| -|27304 | | Zoom rectangle is not positioned the same as the background rectangle| -|37930 | | Data Annotation Overlay Text Color not working| -|30600 | | No textStyle property for either the chart or series (pie chart has this)| +|31624 | `CategoryChart` | Resizing the containing window of the `CategoryChart` causes the chart to fail to render the series| +|27304 | `XamDataChart` | Zoom rectangle is not positioned the same as the background rectangle| +|37930 | `XamDataChart` | Data Annotation Overlay Text Color not working| +|30600 | `XamDoughnutChart` | No textStyle property for either the chart or series (pie chart has this)| |38231 | `IgxGrid` | Unpinned column does not return to the original position if hidden columns exist| |33861 | Excel Library | Adding line chart corrupts excel File for German culture| @@ -214,7 +212,7 @@ There is a new property called | Radial label format properties do not work. (eg. Title, SubTitles)| +|36448 | `XamRadialGauge` | Radial label format properties do not work. (eg. Title, SubTitles)| ### {PackageCharts} (Charts) @@ -244,17 +242,17 @@ For more details please visit: - Data Annotation Slice Layer - Data Annotation Strip Layer -- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. +- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose `LayoutMode` property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. -- The property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. +- The `SeriesViewer.DefaultInteraction` property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. -- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. +- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an `ValueLayer.OverlayText` property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. - [Trendline Layer](./charts/features/chart-trendlines.mdx) series type that allows you to apply a single trend line per trend line layer to a particular series. This allows the usage of multiple trend lines on a single series since you can have multiple [TrendlineLayer](./charts/features/chart-overlays.mdx) series types in the chart. ### {PackageDashboards} (Dashboards) -- The now supports propagating the aggregations from its DataGrid view to the chart visualization such as sorting, grouping, filtering and selection. This is currently supported by binding the `DashboardTile.ItemsSource` of the to an instance of `IgxLocalDataSource`. +- The `DashboardTile` now supports propagating the aggregations from its DataGrid view to the chart visualization such as sorting, grouping, filtering and selection. This is currently supported by binding the `DashboardTile.ItemsSource` of the `DashboardTile` to an instance of `IgxLocalDataSource`. ### {PackageGrids} @@ -275,8 +273,8 @@ For more details please visit: | Bug Number | Control | Description | |------------|---------|------------------| -|37023 | | Tooltips are cut-off/offscreen if overflow hidden is set.| -|37685 | | Poor rendering of numbers formatted with Arial font.| +|37023 | `XamDataChart` | Tooltips are cut-off/offscreen if overflow hidden is set.| +|37685 | `Spreadsheet` | Poor rendering of numbers formatted with Arial font.| |37244 | Excel Library | Custom Data Validation is not working.| ## **{PackageVerChanges-24-2-FEB}** @@ -285,9 +283,9 @@ For more details please visit: #### Toolbar -- Added new `GroupHeaderTextStyle` property to and . If set, it will apply to all actions. -- Added new property on called which controls the horizontal alignment of the title text. -- Added new property on called which controls the spacing between items inside the panel. +- Added new `GroupHeaderTextStyle` property to `Toolbar` and `ToolPanel`. If set, it will apply to all `ToolActionGroupHeader` actions. +- Added new property on `ToolAction` called `SeriesViewer.TitleHorizontalAlignment` which controls the horizontal alignment of the title text. +- Added new property on `ToolActionSubPanel` called `ToolPanel.ItemSpacing` which controls the spacing between items inside the panel. ### Bug Fixes @@ -295,13 +293,13 @@ The following table lists the bug fixes made for the {ProductName} toolset for t | Bug Number | Control | Description | |------------|---------|------------------| -|30286 | | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| -|32906 | | is showing two xAxis on the top| -|33605 | | ScatterLineSeries is not showing the color of the line correctly in the legend| -|35498 | | Tooltips for the series specified in IncludedSeries are not displayed| -|34776 | | Repeatedly showing and hiding the causes memory leakage in JS Heap| -|34053 | | The position of the scale label is shifted| -|35496 | | Error when setting styles in Excel with images| +|30286 | `XamDataChart` | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| +|32906 | `XamDataChart` | `XamDataChart` is showing two xAxis on the top| +|33605 | `XamDataChart` | ScatterLineSeries is not showing the color of the line correctly in the legend| +|35498 | `XamDataChart` | Tooltips for the series specified in IncludedSeries are not displayed| +|34776 | `XamDataChart` | Repeatedly showing and hiding the `XamDataChart` causes memory leakage in JS Heap| +|34053 | `XamRadialGauge` | The position of the scale label is shifted| +|35496 | `Spreadsheet` | Error when setting styles in Excel with images| |36176 | Excel Library | Exception occurs when loading an Excel workbook that has a LET function| |36379 | Excel Library | Colors with any alpha channel in an excel workbook fail to load| |26218 | Excel Library | Chart's plot area right margin becomes narrower and fill pattern and fill foreground are gone just by loading an Excel file| @@ -325,11 +323,11 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ## **{PackageVerChanges-24-1-SEP}** -- [Data Pie Chart](./charts/types/data-pie-chart.mdx) - The is a new component that renders a pie chart. This component works similarly to the , in that it will automatically detect the properties on your underlying data model while allowing selection, highlighting, animation and legend support via the ItemLegend component. +- [Data Pie Chart](./charts/types/data-pie-chart.mdx) - The `DataPieChart` is a new component that renders a pie chart. This component works similarly to the `CategoryChart`, in that it will automatically detect the properties on your underlying data model while allowing selection, highlighting, animation and legend support via the ItemLegend component. -- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. +- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. -- +- `Toolbar` - New ToolActionCheckboxList A new CheckboxList ToolAction that displays a collection of items with checkboxes for selecting. A grid inside ToolAction CheckboxList grows in height up to 5 items, then a scrollbar is displayed. @@ -348,67 +346,67 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ### {PackageCharts} (Charts) -- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property toggles grouping with each series opting in can assign group text via the property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. +- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property `GroupRowVisible` toggles grouping with each series opting in can assign group text via the `CrosshairLayer.DataLegendGroup` property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. -- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for and . Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. +- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for `CategoryChart` and `XamDataChart`. Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and `SeriesViewer.SelectedSeriesItems` are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. -- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the property. +- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a `SeriesViewer.HighlightingMode` property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the `SeriesViewer.HighlightingTransitionDuration` property. -- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new . Can be toggled via and styled via `FillBrushes`. +- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new `XYChart.HighlightedItemsSource`. Can be toggled via `SeriesViewer.HighlightedValuesDisplayMode` and styled via `FillBrushes`. -- - New option for ToolAction for outlining a border around specific tools of choice. +- `Toolbar` - New `ToolActionGroupHeader.IsHighlighted` option for ToolAction for outlining a border around specific tools of choice. ### {PackageGauges} (Gauges) -- - - New label for the highlight needle. and and many other styling related properties for the HighlightLabel were added. +- `XamRadialGauge` + - New label for the highlight needle. `HighlightLabelText` and `HighlightLabelSnapsToNeedlePivot` and many other styling related properties for the HighlightLabel were added. ## **{PackageVerChanges-23-2-MAR}** ### {PackageCharts} -- New Data Filtering via the property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. +- New Data Filtering via the `XYChart.InitialFilter` property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. - `RadialChart` - New Label Mode - The for the now exposes a property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. + The `CategoryAngleAxis` for the now exposes a `LabelMode` property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. ### {PackageGauges} -- - - New title/subtitle properties. , will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and . Finally, the new will allow the value to correspond with the needle's position. - - New and properties for the . This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. -- - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. -- - - The Performance bar will now reflect a difference between the value and new when the is applied to the 'Overlay' setting. The highlight value will show a filtered/subset completed measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. +- `XamRadialGauge` + - New title/subtitle properties. `TitleText`, `SubtitleText` will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and `TitleExtent`. Finally, the new `TitleDisplaysValue` will allow the value to correspond with the needle's position. + - New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) + - New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamLinearGauge` + - New highlight needle was added. `XamRadialGauge.HighlightValue` and `XamRadialGauge.HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamBulletGraph` + - The Performance bar will now reflect a difference between the value and new `XamRadialGauge.HighlightValue` when the `XamRadialGauge.HighlightValueDisplayMode` is applied to the 'Overlay' setting. The highlight value will show a filtered/subset completed measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. ## **{PackageVerChanges-23-2-JAN}** ### {PackageCharts} (Charts) -- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The and now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. +- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The `CategoryChart` and `XamDataChart` now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. ## **{PackageVerChanges-23-2}** ### {PackageGrids} - Toolbar - - Save tool action has been added to save the chart to an image via the clipboard. -- Vertical orientation has been added via the toolbar's property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. +- Vertical orientation has been added via the toolbar's `Toolbar.Orientation` property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. - Custom SVG icons support was added via the toolbar's `renderImageFromText` method, further enhancing custom tool creation. ## **{PackageVerChanges-23-1}** ### New Components -- [Toolbar](./menus/toolbar.mdx) - This component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tool items when linked to our or components. You'll be able to create custom tools for your project allowing end users to provide changes, offering an endless amount of customization. +- [Toolbar](./menus/toolbar.mdx) - This component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tool items when linked to our `XamDataChart` or `CategoryChart` components. You'll be able to create custom tools for your project allowing end users to provide changes, offering an endless amount of customization. ### {PackageCharts} (Charts) -- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the and by adding to the new collection. +- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the `ValueLayer` is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the `CategoryChart` and `FinancialChart` by adding to the new `XYChart.ValueLines` collection. -- It is now possible to apply a **dash array** to the different parts of the series of the . You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. +- It is now possible to apply a **dash array** to the different parts of the series of the `XamDataChart`. You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. ## **{PackageVerChanges-22-2.2}** - Angular 16 support. @@ -423,7 +421,7 @@ Added significant improvements to default behaviors, and refined the Category Ch - Responsive layouts for horizontal label rotation based on browser / screen size. - Enhanced rendering for rounded labels on all platforms. - Added marker properties to StackedFragmentSeries. -- Added property. +- Added `SeriesViewer.ShouldPanOnMaximumZoom` property. - New Category Axis Properties: - ZoomMaximumCategoryRange - ZoomMaximumItemSpan @@ -444,25 +442,25 @@ Added significant improvements to default behaviors, and refined the Category Ch - GroupSortDescriptions -The Chart's [Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using | because these properties are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. +The Chart's [Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using `XYChart.IncludedProperties` | `XYChart.ExcludedProperties` because these properties are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. ## **{PackageVerChanges-22-1}** ### {PackageCharts} (Charts) -- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the , but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. +- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the `SeriesViewer.Legend`, but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. - Added the highly-configurable [DataToolTip](./charts/features/chart-data-tooltip.mdx) which displays values and titles of series as well as legend badges of series in a tooltip. This is now the default tooltip for all chart types. -- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the property to true. From there, you can set the property to determine how long your animation should take to complete and the to determine the type of animation that takes place. -- Added `AssigningCategoryStyle` event, is now available to all series in . This event is handled when you want to conditionally configure aspects of the series items such as background-color and highlighting. -- New enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. +- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the `DataPieChart.IsTransitionInEnabled` property to true. From there, you can set the `DataPieChart.TransitionInDuration` property to determine how long your animation should take to complete and the `DataPieChart.TransitionInMode` to determine the type of animation that takes place. +- Added `AssigningCategoryStyle` event, is now available to all series in `XamDataChart`. This event is handled when you want to conditionally configure aspects of the series items such as `CrosshairLayer.Fill` background-color and highlighting. +- New `AllowedPositions` enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. - New corner radius properties added for Annotation Layers; used to round-out the corners of each of the callouts. Note, a corner radius has now been added by default. - - for CalloutLayer - - for FinalValueLayer - - and for CrosshairLayer -- New and enumeration to enable scrollbars in various ways. When paired with or , you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. -- New , determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. , , `PercentChangeAxis`). -- New determines whether to include the spline shape in the axis range requested of the axis. -- New , determines the maximum allowed value for the plotted series when using . The gap determines the amount of space between columns or bars of plotted series. -- New , determines the minimum allowed pixel-based value for the plotted series when using to ensure there is always some spacing between each category. + - `CalloutCornerRadius` for CalloutLayer + - `AxisAnnotationBackgroundCornerRadius` for FinalValueLayer + - `CrosshairLayer.XAxisAnnotationBackgroundCornerRadius` and `CrosshairLayer.YAxisAnnotationBackgroundCornerRadius` for CrosshairLayer +- New `SeriesViewer.HorizontalViewScrollbarMode` and `SeriesViewer.VerticalViewScrollbarMode` enumeration to enable scrollbars in various ways. When paired with `XYChart.IsVerticalZoomEnabled` or `XYChart.IsHorizontalZoomEnabled`, you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. +- New `NumericXAxis.FavorLabellingScaleEnd`, determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. `NumericXAxis`, `NumericYAxis`, `PercentChangeAxis`). +- New `IsSplineShapePartOfRange` determines whether to include the spline shape in the axis range requested of the axis. +- New `XAxisMaximumGap`, determines the maximum allowed value for the plotted series when using `XAxisGap`. The gap determines the amount of space between columns or bars of plotted series. +- New `XAxisMinimumGapSize`, determines the minimum allowed pixel-based value for the plotted series when using `XAxisGap` to ensure there is always some spacing between each category. ## **{PackageVerChanges-21-2}** @@ -475,29 +473,29 @@ Please ensure package "lit-html": "^2.0.0" or newer is added to your project for This release introduces a few improvements and simplifications to visual design and configuration options for the geographic map and all chart components. -- Changed property's type to **YAxisLabelLocation** from **AxisLabelLocation** in and -- Changed property's type to **XAxisLabelLocation** from **AxisLabelLocation** in -- Added property to -- Added support for representing geographic series of in a legend -- Added crosshair lines by default in and -- Added crosshair annotations by default in and -- Added final value annotation by default in +- Changed `XYChart.YAxisLabelLocation` property's type to **YAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` and `CategoryChart` +- Changed `XYChart.XAxisLabelLocation` property's type to **XAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` +- Added `XYChart.XAxisLabelLocation` property to `CategoryChart` +- Added support for representing geographic series of `XamGeographicMap` in a legend +- Added crosshair lines by default in `FinancialChart` and `CategoryChart` +- Added crosshair annotations by default in `FinancialChart` and `CategoryChart` +- Added final value annotation by default in `FinancialChart` - Added new properties in Category Chart and Financial Chart: - - and other properties for customizing crosshairs lines - - and other properties for customizing crosshairs annotations - - and other properties for customizing final value annotations - - that allow changing opacity of series fill (e.g. Area chart) - - that allows changing thickness of markers + - `XYChart.CrosshairsLineThickness` and other properties for customizing crosshairs lines + - `XYChart.CrosshairsAnnotationXAxisBackground` and other properties for customizing crosshairs annotations + - `XYChart.FinalValueAnnotationsBackground` and other properties for customizing final value annotations + - `XYChart.AreaFillOpacity` that allow changing opacity of series fill (e.g. Area chart) + - `XYChart.MarkerThickness` that allows changing thickness of markers - Added new properties in Category Chart, Financial Chart, Data Chart, and Geographic Map: - - that allows which marker type is assigned to multiple series in the same chart - - for setting badge shape of all series represented in a legend - - for setting badge complexity on all series in a legend + - `SeriesViewer.MarkerAutomaticBehavior` that allows which marker type is assigned to multiple series in the same chart + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape of all series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on all series in a legend - Added new properties in Series in Data Chart and Geographic Map: - - for setting badge shape on specific series represented in a legend - - for setting badge complexity on specific series in a legend + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape on specific series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on specific series in a legend - Changed default vertical crosshair line stroke from #000000 to #BBBBBB in category chart and series -- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's property to `SmartIndexed` enum value -- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's property to `MatchSeries` enum value +- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's `SeriesViewer.MarkerAutomaticBehavior` property to `SmartIndexed` enum value +- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's `SeriesViewer.LegendItemBadgeMode` property to `MatchSeries` enum value - Changed color palette of series and markers displayed in all charts to improve accessibility | Old brushes/outlines | New outline/brushes | @@ -508,30 +506,30 @@ This release introduces a few improvements and simplifications to visual design ## **{PackageVerChanges-21-1}** ### {PackageCharts} (Charts) -This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. , , and . +This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. `XamDataChart`, `CategoryChart`, and `FinancialChart`. - Changed Bar/Column/Waterfall series to have square corners instead of rounded corners - Changed Scatter High Density series’ colors for heat min property from #8a5bb1 to #000000 - Changed Scatter High Density series’ colors for heat max property from #ee5879 to #ee5879 - Changed Financial/Waterfall series’ `NegativeBrush` and `NegativeOutline` properties from #C62828 to #ee5879 - Changed marker's thickness to 2px from 1px -- Changed marker's fill to match the marker's outline for , , , . You can use set property to Normal to undo this change -- Compressed labelling for the and +- Changed marker's fill to match the marker's outline for `PointSeries`, `BubbleSeries`, `ScatterSeries`, `PolarScatterSeries`. You can use set `XYChart.MarkerFillMode` property to Normal to undo this change +- Compressed labelling for the `TimeXAxis` and `OrdinalTimeXAxis` - New Marker Properties: - - series. - Can be set to `MatchMarkerOutline` so the marker depends on the outline - - series. - Can be set to a value 0 to 1 - - series. - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color + - series.`XYChart.MarkerFillMode` - Can be set to `MatchMarkerOutline` so the marker depends on the outline + - series.`XYChart.MarkerFillOpacity` - Can be set to a value 0 to 1 + - series.`XYChart.MarkerOutlineMode` - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color - New Series Property: - - series. - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series -- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the , listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series +- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the `XYChart.ComputedPlotAreaMarginMode`, listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - New Highlighting Properties - - chart. - Sets whether hovered or non-hovered series to fade, brighten - - chart. - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item + - chart.`SeriesViewer.HighlightingMode` - Sets whether hovered or non-hovered series to fade, brighten + - chart.`SeriesViewer.HighlightingBehavior` - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item - Note, in previous releases the highlighting was limited to fade on hover. - Added Highlighting Stacked, Scatter, Polar, Radial, and Shape series: - Added Annotation layers to Stacked, Scatter, Polar, Radial, and Shape series: @@ -554,8 +552,8 @@ for example: #### Chart Legend -- Added horizontal property to ItemLegend that can be used with Bubble, Donut, and Pie Chart -- Added property - Enables series highlighting when hovering over legend items +- Added horizontal `Toolbar.Orientation` property to ItemLegend that can be used with Bubble, Donut, and Pie Chart +- Added `SeriesViewer.LegendHighlightingMode` property - Enables series highlighting when hovering over legend items ### {PackageMaps} (GeoMap) diff --git a/docs/xplat/src/content/en/components/general-getting-started.mdx b/docs/xplat/src/content/en/components/general-getting-started.mdx index ffc5940139..daff550d96 100644 --- a/docs/xplat/src/content/en/components/general-getting-started.mdx +++ b/docs/xplat/src/content/en/components/general-getting-started.mdx @@ -12,7 +12,6 @@ platformType: xplat import DocsAside from 'igniteui-astro-components/components/mdx/DocsAside.astro'; import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; import DownloadCard from 'docs-template/components/mdx/DownloadCard.astro'; import DownloadCardGroup from 'docs-template/components/mdx/DownloadCardGroup.astro'; import { Image } from 'astro:assets'; @@ -304,7 +303,7 @@ npm install igniteui-webcomponents -Next you will need to import the components that you want to use in your `\index.ts` file. You could import one or more components using the function like this: +Next you will need to import the components that you want to use in your `\index.ts` file. You could import one or more components using the `defineComponents` function like this: @@ -318,7 +317,7 @@ defineComponents(IgcAvatarComponent, IgcBadgeComponent); -You could also import all of the components using the function: +You could also import all of the components using the `defineAllComponents` function: diff --git a/docs/xplat/src/content/en/components/geo-map-binding-data-model.mdx b/docs/xplat/src/content/en/components/geo-map-binding-data-model.mdx index e2fac03924..5a863b98de 100644 --- a/docs/xplat/src/content/en/components/geo-map-binding-data-model.mdx +++ b/docs/xplat/src/content/en/components/geo-map-binding-data-model.mdx @@ -38,7 +38,7 @@ The following table summarized data structures required for each type of geograp |`GeographicPolylineSeries`|`shapeMemberPath`|Specifies the name of data column of `dataSource` items that contains the geographic coordinates of lines. This property must be mapped to an array of arrays of objects with x and y properties. | ## Code Snippet -The following code shows how to bind the `GeographicSymbolSeries` to a custom data model that contains geographic locations of some cities of the world stored using longitude and latitude coordinates. Also, we use the `GeographicPolylineSeries` to plot shortest geographic path between these locations using the great circle maths of `\MapGeodesics`, shown in full with the code below +The following code shows how to bind the `GeographicSymbolSeries` to a custom data model that contains geographic locations of some cities of the world stored using longitude and latitude coordinates. Also, we use the `GeographicPolylineSeries` to plot shortest geographic path between these locations using the great circle maths of `MapGeodesics`, shown in full with the code below ```json-snippet source="/maps/geo-map/binding-data-model" { diff --git a/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx index 7888661884..635f87f863 100644 --- a/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/en/components/geo-map-binding-multiple-shapes.mdx @@ -110,7 +110,7 @@ Next, we need to create a map with a few Geographic Series that will later load ## Loading Shapefiles -Next, in constructor of your page, add a `ShapefileRecord` for each shapefile that you want to display in the geographic map component. Each source is given the method that turns its records into data; those methods belong to a `\MapMultipleShapesReaders` class, and the sections below show each of them. +Next, in constructor of your page, add a `ShapefileRecord` for each shapefile that you want to display in the geographic map component. Each source is given the method that turns its records into data; those methods belong to a `MapMultipleShapesReaders` class, and the sections below show each of them. ```json-snippet ref="shapes" source="/maps/geo-map/binding-multiple-shapes" channel="handlersImports...handler" item="MapMultipleShapesLoad" ``` diff --git a/docs/xplat/src/content/en/components/geo-map-display-bing-imagery.mdx b/docs/xplat/src/content/en/components/geo-map-display-bing-imagery.mdx index efc2886ccf..e700c7de30 100644 --- a/docs/xplat/src/content/en/components/geo-map-display-bing-imagery.mdx +++ b/docs/xplat/src/content/en/components/geo-map-display-bing-imagery.mdx @@ -29,7 +29,7 @@ The {Platform} `BingMapsMapImagery` is geographic imagery mapping service provid {/**/} -Angular Bing Maps Imagery +{Platform} Bing Maps imagery @@ -145,7 +145,7 @@ The following table summarized properties of the `BingMapsMapImagery` class: |`cultureName`|string|Represents a property for setting the culture name for the tile source.| |`isDeferredLoad`|boolean|Represents the property that specifies whether or not the Bing Maps service should auto-initialized upon the assignment of valid property values.| |`isInitialized`|boolean|Represents the property that is set to True occurs when geographic imagery tiles from Bing Maps service have been initialized and they are ready for rendering in the map component.| -|`subDomains`||Represents an image collection of URI sub domains| +|`subDomains`|`SubDomainsCollection`|Represents an image collection of URI sub domains| |`tilePath`|string|Represents a property that sets the map tile image URI, this is the actual location of the Bing Maps| diff --git a/docs/xplat/src/content/en/components/geo-map-resources-esri.mdx b/docs/xplat/src/content/en/components/geo-map-resources-esri.mdx index 06dce4f725..fd957b65b0 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-esri.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-esri.mdx @@ -9,11 +9,10 @@ llms: platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Esri Utility -The resource topic provides implementation of an utility that helps with using provided by Esri Maps in . +The resource topic provides implementation of an utility that helps with using `ArcGISOnlineMapImagery` provided by Esri Maps in `XamGeographicMap`. ## Code Snippet @@ -142,5 +141,5 @@ public class EsriStyle ## API References - - +`ArcGISOnlineMapImagery` +`XamGeographicMap` diff --git a/docs/xplat/src/content/en/components/geo-map-resources-shape-styling-utility.mdx b/docs/xplat/src/content/en/components/geo-map-resources-shape-styling-utility.mdx index e372c4a567..4890f66b63 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-shape-styling-utility.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-shape-styling-utility.mdx @@ -9,11 +9,10 @@ llms: platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Shape Styling Utility -The resource topic provides implementation of an utility that helps with styling UI elements of in {Platform} component. +The resource topic provides implementation of an utility that helps with styling UI elements of `GeographicShapeSeries` in {Platform} `XamGeographicMap` component. ## Required Imports @@ -51,5 +50,5 @@ The resource topic provides implementation of an utility that helps with styling ## API References - - +`GeographicShapeSeries` +`XamGeographicMap` diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx index f0c489f9ef..74458f5890 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-connections.mdx @@ -8,8 +8,6 @@ llms: description: "The resource topic provides implementation of data utility for generating locations of airports, flight paths, and geographic gridlines." platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} World Connections The resource topic provides implementation of data utility for generating locations of airports, flight paths, and geographic gridlines. You can use these data sources as reference point for creating your own geographic data. Note that this utility depends on [WorldUtil](./geo-map-resources-world-util.mdx) and [WorldLocations](./geo-map-resources-world-locations.mdx) scripts. @@ -38,4 +36,4 @@ The resource topic provides implementation of data utility for generating locati ## API References - +`XamGeographicMap` diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx index f9a9f3e400..f020e95766 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-locations.mdx @@ -8,8 +8,6 @@ llms: description: "The resource topic provides implementation of data utility for generating geographic locations of cities and capitals of countries." platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} World Locations The resource topic provides implementation of data utility for generating geographic locations of cities and capitals of countries. @@ -38,4 +36,4 @@ The resource topic provides implementation of data utility for generating geogra ## API References - +`XamGeographicMap` diff --git a/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx b/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx index d4110da990..f5261221c7 100644 --- a/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx +++ b/docs/xplat/src/content/en/components/geo-map-resources-world-util.mdx @@ -8,8 +8,6 @@ llms: description: "The resource topic provides implementation of utility that helps with generating {Platform} geographic data." platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} World Utility The resource topic provides implementation of utility that helps with generating {Platform} geographic data. @@ -38,4 +36,4 @@ The resource topic provides implementation of utility that helps with generating ## API References - +`XamGeographicMap` diff --git a/docs/xplat/src/content/en/components/geo-map-shape-files-reference.mdx b/docs/xplat/src/content/en/components/geo-map-shape-files-reference.mdx index 47fe04ed61..1ae40b70ca 100644 --- a/docs/xplat/src/content/en/components/geo-map-shape-files-reference.mdx +++ b/docs/xplat/src/content/en/components/geo-map-shape-files-reference.mdx @@ -8,9 +8,6 @@ llms: description: "Before plotting geo-spatial data in the control, one should get familiar with the following resources which provide general information about maps and geo-spatial data." platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} Shape Files Reference ## Purpose @@ -39,7 +36,7 @@ Before plotting geo-spatial data in the control, one should get familiar with th ## Shape Files Format -The {Platform} control uses popular [Shape Files](http://en.wikipedia.org/wiki/Shapefile#Overview) format as one of the sources for geo-spatial data. Shape files are usually shipped with other file types, generally files with **.shp**, **.shx**, and **.dbf** extensions. +The {Platform} `XamGeographicMap` control uses popular [Shape Files](http://en.wikipedia.org/wiki/Shapefile#Overview) format as one of the sources for geo-spatial data. Shape files are usually shipped with other file types, generally files with **.shp**, **.shx**, and **.dbf** extensions. The following table provides basic information and purpose for each type of shape files. @@ -75,7 +72,7 @@ The following list provides resource tools for editing shape files. ## Shape Files Data Sources -The following list provides resources for obtaining shape files. Also, samples for the control are good source of shape files. These shape files are included in the installer for the Samples Browser. +The following list provides resources for obtaining shape files. Also, samples for the `XamGeographicMap` control are good source of shape files. These shape files are included in the installer for the Samples Browser. - [ESRI - World Map Data](http://www.esri.com/data/download/basemap/index.html) - [ESRI - Census 2010 Tiger/Line® - Shape Files](http://www.census.gov/geo/www/tiger/tgrshp2010/tgrshp2010.html) @@ -99,7 +96,7 @@ The following topics provide additional information related to this topic. ## API References - - - - +`XamGeographicMap` +`GeographicPolylineSeries` +`GeographicShapeSeries` +`ShapefileRecord` diff --git a/docs/xplat/src/content/en/components/geo-map-type-scatter-area-series.mdx b/docs/xplat/src/content/en/components/geo-map-type-scatter-area-series.mdx index 5fc408d810..a25ae79161 100644 --- a/docs/xplat/src/content/en/components/geo-map-type-scatter-area-series.mdx +++ b/docs/xplat/src/content/en/components/geo-map-type-scatter-area-series.mdx @@ -10,7 +10,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Geographic Area Map @@ -35,9 +34,9 @@ The following table summarizes properties of GeographicScatterAreaSeries used fo | Property Name | Property Type | Description | |--------------|---------------| ---------------| -||any|The source of data items to perform triangulation on if the `trianglesSource` property provides no triangulation data.| -|`longitudeMemberPath`|string|The name of the property containing the Longitude for all items bound to the .| -|`latitudeMemberPath`|string|The name of the property containing the Latitude for all items bound to the .| +|`ItemsSource`|any|The source of data items to perform triangulation on if the `trianglesSource` property provides no triangulation data.| +|`longitudeMemberPath`|string|The name of the property containing the Longitude for all items bound to the `ItemsSource`.| +|`latitudeMemberPath`|string|The name of the property containing the Latitude for all items bound to the `ItemsSource`.| |`colorMemberPath`|string|The name of the property containing a value at Latitude and Longitude coordinates of each data item. This numeric value will be be converted to a color when the `ColorScale` property is set.| |`trianglesSource`|any|The source of triangulation data. Setting Triangles of the `TriangulationSource` object to this property improves both runtime performance and geographic series rendering.| |`triangleVertexMemberPath1`|string|The name of the property of the `trianglesSource` items which, for each triangle, contains the index of the first vertex point in the ItemsSource. It is not mandatory to set this property. It is taken by default unless custom triangulation logic is provided.| diff --git a/docs/xplat/src/content/en/components/geo-map-type-scatter-contour-series.mdx b/docs/xplat/src/content/en/components/geo-map-type-scatter-contour-series.mdx index 8b7bd32486..4d1acc03ba 100644 --- a/docs/xplat/src/content/en/components/geo-map-type-scatter-contour-series.mdx +++ b/docs/xplat/src/content/en/components/geo-map-type-scatter-contour-series.mdx @@ -10,7 +10,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Geographic Contour Map @@ -27,7 +26,7 @@ In {Platform} map component, you can use the `GeographicContourLineSeries` to dr The `GeographicContourLineSeries` works a lot like the `GeographicScatterAreaSeries` except that it represents data as contour lines, colored using a fill scale and the geographic scatter area series, represents data as a surface interpolated using a color scale. ## Data Requirements -Similar to other types of geographic series in the map component, the `GeographicContourLineSeries` has the property which can be bound to an array of objects. In addition, each item in the items source must have three data columns, two that store geographic location (longitude and latitude coordinates) and one data column that stores a value associated with the geographic location. These data column, are identified by `longitudeMemberPath`, `latitudeMemberPath`, and `valueMemberPath` properties of the geographic series. +Similar to other types of geographic series in the map component, the `GeographicContourLineSeries` has the `ItemsSource` property which can be bound to an array of objects. In addition, each item in the items source must have three data columns, two that store geographic location (longitude and latitude coordinates) and one data column that stores a value associated with the geographic location. These data column, are identified by `longitudeMemberPath`, `latitudeMemberPath`, and `valueMemberPath` properties of the geographic series. The `GeographicContourLineSeries` automatically performs built-in data triangulation on items in the ItemsSource if no triangulation is set to the `trianglesSource` property. However, computing triangulation can be a very time-consuming process, so the runtime performance will be better when specifying a `TriangulationSource` for this property, especially when a large number of data items are present. ## Data Binding @@ -35,9 +34,9 @@ The following table summarizes properties of `GeographicContourLineSeries` used | Property Name | Property Type | Description | |--------------|---------------| ---------------| -||any|The source of data items to perform triangulation on if the `trianglesSource` property provides no triangulation data.| -|`longitudeMemberPath`|string|The name of the property containing the Longitude for all items bound to the .| -|`latitudeMemberPath`|string|The name of the property containing the Latitude for all items bound to to the .| +|`ItemsSource`|any|The source of data items to perform triangulation on if the `trianglesSource` property provides no triangulation data.| +|`longitudeMemberPath`|string|The name of the property containing the Longitude for all items bound to the `ItemsSource`.| +|`latitudeMemberPath`|string|The name of the property containing the Latitude for all items bound to to the `ItemsSource`.| |`valueMemberPath`|string|The name of the property containing a value at Latitude and Longitude coordinates of each data item. This numeric value will be be converted to a color when the `fillScale` property is set.| |`trianglesSource`|any|Gets or sets the source of triangulation data. Setting Triangles of the TriangulationSource object to this property improves both runtime performance and geographic series rendering.| |`triangleVertexMemberPath1`|string|The name of the property of the TrianglesSource items which, for each triangle, contains the index of the first vertex point in the ItemsSource. It is not mandatory to set this property. It is taken by default unless custom triangulation logic is provided.| diff --git a/docs/xplat/src/content/en/components/grids/data-grid/row-paging.mdx b/docs/xplat/src/content/en/components/grids/data-grid/row-paging.mdx index 37ab50db64..a007fbafab 100644 --- a/docs/xplat/src/content/en/components/grids/data-grid/row-paging.mdx +++ b/docs/xplat/src/content/en/components/grids/data-grid/row-paging.mdx @@ -46,7 +46,7 @@ Table Pagination Negatives: - Page loading may be slow - Users are confused whether actions apply to Page or entire set of data -With the Ignite UI {Platform} grid, we allow the developer to add paging, however, as the grid has infinite scrolling built in by default, we recommend infinite (or virtual) scrolling vs. adding a pager to the grid. With virtualized, infinite scrolling as the default user experience, you get: +With the {ProductName} Data Grid, you can add paging. However, because the Data Grid has infinite scrolling built in by default, we recommend infinite (or virtual) scrolling instead of adding a pager. With virtualized, infinite scrolling as the default user experience, you get: - Best performance while still having control or how much data is ‘paged’ via the scrolling interaction - Natural approach to scrolling all content diff --git a/docs/xplat/src/content/en/components/grids/grids.mdx b/docs/xplat/src/content/en/components/grids/grids.mdx index 4972b7b1e3..8239103f25 100644 --- a/docs/xplat/src/content/en/components/grids/grids.mdx +++ b/docs/xplat/src/content/en/components/grids/grids.mdx @@ -1,6 +1,6 @@ --- title: "{Platform} Grid Layout | Real-Time {Platform} Tables | The Lightweight {Platform} table | Infragistics" -description: Our {Platform} grid layout will help you build dynamic, touch-responsive data grids with little coding and configuration. Get 30-day FREE trial of {ProductName}. +description: Our {Platform} grid layout will help you build dynamic, touch-responsive data grids with little coding and configuration. Download a free trial of {ProductName}. keywords: "{Platform} data grid, infragistics, grids, {ProductName}, table" license: commercial llms: @@ -185,9 +185,11 @@ div#faqs-accordion-wrapper { `} -
+ +
Ignite UI Logo for developer web applications
+
# The Fastest {Platform} Data Grid @@ -230,7 +232,7 @@ In this {Platform} grid example, you can see how users can customize their view -Like this sample? Get access to our complete {Platform} toolkit and start building your own apps in minutes. Download it for free. +Like this sample? Try the complete {ProductName} toolkit and begin building your own apps. Download free trial. ## Why Use a {Platform} Data Grid? @@ -946,8 +948,8 @@ The {ProductName} Data Grid component has built-in virtualization for the rows a
@@ -986,7 +988,7 @@ There are multiple options to get access to our award-winning support at Infragi ## {ProductName} Trial License and Commercial -

{ProductName} is a commercially licensed product available via a subscription model. You can try the {ProductName} product for free when you register for a 30-day trial. When you are done with your Trial Period, you can purchase a license from our web site or by calling sales in your region.

+

{ProductName} is a commercially licensed product available via a subscription model. You can try {ProductName} for free when you download a free trial. When your trial ends, you can purchase a license from our website or by calling sales in your region.


## Frequently Asked Questions diff --git a/docs/xplat/src/content/en/components/maps/map-api.mdx b/docs/xplat/src/content/en/components/maps/map-api.mdx index ca699b5836..c39a54b771 100644 --- a/docs/xplat/src/content/en/components/maps/map-api.mdx +++ b/docs/xplat/src/content/en/components/maps/map-api.mdx @@ -9,91 +9,88 @@ llms: description: "API reference for the {Platform} Geographic Map component covering zoom and viewport management (WorldRect, WindowRect, WindowScale), geographic coordinate conversion (GetGeographicPoint, GetPixelPoint, GetGeographicFromZoom), and the Zoomable interface." platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} Geographic Map API -The {Platform} has the following API members: +The {Platform} `XamGeographicMap` has the following API members: -- -- -- -- -- -- -- -- +- `Zoomable` +- `ZoomToGeographic` +- `WorldRect` +- `WindowRect` +- `WindowScale` +- `GetGeographicFromZoom` +- `GetGeographicPoint` +- `GetPixelPoint` ## {Platform} Geographic Series Types -The {Platform} has 7 types of series and they have the property for data binding. +The {Platform} `XamGeographicMap` has 7 types of series and they have the `ItemsSource` property for data binding. -- -- -- -- -- -- -- +- `GeographicHighDensityScatterSeries` +- `GeographicSymbolSeries` +- `GeographicProportionalSymbolSeries` +- `GeographicPolylineSeries` +- `GeographicShapeSeries` +- `GeographicScatterAreaSeries` +- `GeographicContourLineSeries` In addition, each type of series has specific properties for mapping data items and styling their appearance: ## {Platform} Geographic Symbol Series API -The {Platform} (Geographic Marker Series) has the following API members: +The {Platform} `GeographicSymbolSeries` (Geographic Marker Series) has the following API members: -- -- -- -- -- +- `LatitudeMemberPath` +- `LongitudeMemberPath` +- `GeographicSymbolSeries.MarkerType` +- `MarkerBrush` +- `MarkerOutline` ## {Platform} Geographic Bubble Series API -The {Platform} (Geographic Bubble Series) has the following API members: +The {Platform} `GeographicProportionalSymbolSeries` (Geographic Bubble Series) has the following API members: -- -- -- -- -- -- +- `GeographicSymbolSeries.LatitudeMemberPath` +- `GeographicSymbolSeries.LongitudeMemberPath` +- `RadiusMemberPath` +- `RadiusScale` +- `FillScale` +- `FillMemberPath` ## {Platform} Geographic Shape Series API -The {Platform} and have the same API members: +The {Platform} `GeographicShapeSeries` and `GeographicPolylineSeries` have the same API members: -- -- -- -- +- `GeographicShapeSeries.ShapeMemberPath` +- `Series.Thickness` +- `Series.Brush` +- `Series.Outline` ## {Platform} Geographic Area Series API -The {Platform} has the following API members: +The {Platform} `GeographicScatterAreaSeries` has the following API members: -- -- -- -- +- `GeographicSymbolSeries.LatitudeMemberPath` +- `GeographicSymbolSeries.LongitudeMemberPath` +- `ColorMemberPath` +- `GeographicScatterAreaSeries.ColorScale` ## {Platform} Geographic Contour Series API -The {Platform} has the following API members: +The {Platform} `GeographicContourLineSeries` has the following API members: -- -- -- -- +- `GeographicSymbolSeries.LatitudeMemberPath` +- `GeographicSymbolSeries.LongitudeMemberPath` +- `ValueMemberPath` +- `GeographicProportionalSymbolSeries.FillScale` ## {Platform} Geographic HD Series API -The {Platform} has the following API members: +The {Platform} `GeographicHighDensityScatterSeries` has the following API members: -- -- -- -- \ No newline at end of file +- `GeographicSymbolSeries.LatitudeMemberPath` +- `GeographicSymbolSeries.LongitudeMemberPath` +- `HeatMaximumColor` +- `HeatMinimumColor` \ No newline at end of file diff --git a/docs/xplat/src/content/en/components/menus/toolbar.mdx b/docs/xplat/src/content/en/components/menus/toolbar.mdx index ce23c198e5..193a1ae47a 100644 --- a/docs/xplat/src/content/en/components/menus/toolbar.mdx +++ b/docs/xplat/src/content/en/components/menus/toolbar.mdx @@ -126,35 +126,35 @@ Several pre-existing `ToolAction` items and menus become available when the `Xam Zooming Actions -- `\ZoomMenu`: A `ToolActionIconMenu` that exposes three `ToolActionLabel` items to invoke the `zoomIn` and `zoomOut` methods on the chart for increasing/decreasing the chart's zoom level including `\ZoomReset`, a `ToolActionLabel` that invokes the `resetZoom` method on the chart to reset the zoom level to it's default position. +- `ZoomMenu`: A `ToolActionIconMenu` that exposes three `ToolActionLabel` items to invoke the `zoomIn` and `zoomOut` methods on the chart for increasing/decreasing the chart's zoom level including `ZoomReset`, a `ToolActionLabel` that invokes the `resetZoom` method on the chart to reset the zoom level to it's default position. Trend Actions -- `\AnalyzeMenu`: A `ToolActionIconMenu` that contains several options for configuring different options of the chart. -- `\AnalyzeHeader`: A sub section header. - - `\LinesMenu`: A sub menu containing various tools for showing different dashed horizontal lines on the chart. - - `\LinesHeader`: A sub menu section header for the following three tools: +- `AnalyzeMenu`: A `ToolActionIconMenu` that contains several options for configuring different options of the chart. +- `AnalyzeHeader`: A sub section header. + - `LinesMenu`: A sub menu containing various tools for showing different dashed horizontal lines on the chart. + - `LinesHeader`: A sub menu section header for the following three tools: - `\\MaxValue`: A `ToolActionCheckbox` that displays a dashed horizontal line along the yAxis at the maximum value of the series. - `\\MinValue`: A `ToolActionCheckbox` that displays a dashed horizontal line along the yAxis at the minimum value of the series. - `Average`: A `ToolActionCheckbox` that displays a dashed horizontal line along the yAxis at the average value of the series. - - `\TrendsMenu`: A sub menu containing tools for applying various trendlines to the `XamDataChart` plot area. - - `\TrendsHeader`: A sub menu section header for the following three tools: + - `TrendsMenu`: A sub menu containing tools for applying various trendlines to the `XamDataChart` plot area. + - `TrendsHeader`: A sub menu section header for the following three tools: - **Exponential**: A `ToolActionRadio` that sets the `trendLineType` on each series in the chart to **ExponentialFit**. - **Linear**: A `ToolActionRadio` that sets the `trendLineType` on each series in the chart to **LinearFit**. - **Logarithmic**: A `ToolActionRadio` that sets the `trendLineType` on each series in the the chart to **LogarithmicFit**. -- `\HelpersHeader`: A sub section header. - - `\SeriesAvg`: A `ToolActionCheckbox` that adds or removes a `ValueLayer` to the chart's series collection using the `ValueLayerValueMode` of type `Average`. - - `\ValueLabelsMenu`: A sub menu containing various tools for showing different annotations on the `XamDataChart`'s plot area. - - `\ValueLabelsHeader`: A sub menu section header for the following tools: - - `\ShowValueLabels`: A `ToolActionCheckbox` that toggles data point values by using a `CalloutLayer`. - - `\ShowLastValueLabel`: A `ToolActionCheckbox` that toggles final value axis annotations by using a `FinalValueLayer`. -- `\ShowCrosshairs`: A `ToolActionCheckbox` that toggles mouse-over crosshair annotations via the chart's `crosshairsDisplayMode` property. +- `HelpersHeader`: A sub section header. + - `SeriesAvg`: A `ToolActionCheckbox` that adds or removes a `ValueLayer` to the chart's series collection using the `ValueLayerValueMode` of type `Average`. + - `ValueLabelsMenu`: A sub menu containing various tools for showing different annotations on the `XamDataChart`'s plot area. + - `ValueLabelsHeader`: A sub menu section header for the following tools: + - `ShowValueLabels`: A `ToolActionCheckbox` that toggles data point values by using a `CalloutLayer`. + - `ShowLastValueLabel`: A `ToolActionCheckbox` that toggles final value axis annotations by using a `FinalValueLayer`. +- `ShowCrosshairs`: A `ToolActionCheckbox` that toggles mouse-over crosshair annotations via the chart's `crosshairsDisplayMode` property. - `ShowGridlines`: A `ToolActionCheckbox` that toggles extra gridlines by applying a `MajorStroke` to the X-Axis. Save to Image Action -- `\CopyAsImage`: A `ToolActionLabel` that exposes an option to copy the chart to the clipboard. -- `\CopyHeader`: A sub section header. +- `CopyAsImage`: A `ToolActionLabel` that exposes an option to copy the chart to the clipboard. +- `CopyHeader`: A sub section header. ### SVG Icons diff --git a/docs/xplat/src/content/en/components/spreadsheet-activation.mdx b/docs/xplat/src/content/en/components/spreadsheet-activation.mdx index c77521a65f..1a74860e0e 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-activation.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-activation.mdx @@ -9,7 +9,6 @@ llms: platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Spreadsheet Activation @@ -25,15 +24,15 @@ The {Platform} Spreadsheet component exposes properties that allow you to determ ## Activation Overview -The activation of the {Platform} control is split up between the cells, panes, and worksheets of the current of the spreadsheet. The three "active" properties are described below: +The activation of the {Platform} `Spreadsheet` control is split up between the cells, panes, and worksheets of the current `Workbook` of the spreadsheet. The three "active" properties are described below: -- : Returns or sets the active cell in the spreadsheet. To set it, you must create a new instance of and pass in information about that cell, such as the column and row or the string address of the cell. -- : Returns the active pane in the currently active worksheet of the spreadsheet control. -- : Returns or sets the active worksheet in the of the spreadsheet control. This can be set by setting it to an existing worksheet in the attached to the spreadsheet. +- `ActiveCell`: Returns or sets the active cell in the spreadsheet. To set it, you must create a new instance of `SpreadsheetCell` and pass in information about that cell, such as the column and row or the string address of the cell. +- `ActivePane`: Returns the active pane in the currently active worksheet of the spreadsheet control. +- `ActiveWorksheet`: Returns or sets the active worksheet in the `Workbook` of the spreadsheet control. This can be set by setting it to an existing worksheet in the `Workbook` attached to the spreadsheet. ## Code Snippet -The following code snippet shows setting activation of the cell and worksheet in the control: +The following code snippet shows setting activation of the cell and worksheet in the `Spreadsheet` control: ```ts this.spreadsheet.activeWorksheet = this.spreadsheet.workbook.worksheets(1); @@ -44,7 +43,7 @@ this.spreadsheet.activeCell = new SpreadsheetCell("C5"); ## API References - +`SpreadsheetCell`
-
-
+`Spreadsheet`
+`Workbook`
diff --git a/docs/xplat/src/content/en/components/spreadsheet-chart-adapter.mdx b/docs/xplat/src/content/en/components/spreadsheet-chart-adapter.mdx index 55afcfc5dc..f42bd0343b 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-chart-adapter.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-chart-adapter.mdx @@ -11,11 +11,10 @@ platformType: xplat import DocsAside from 'igniteui-astro-components/components/mdx/DocsAside.astro'; import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Spreadsheet Chart Adapter -The {Platform} Spreadsheet component allows displaying charts in your . +The {Platform} Spreadsheet component allows displaying charts in your `Spreadsheet`. ## {Platform} Spreadsheet Chart Adapter Example @@ -25,10 +24,10 @@ The {Platform} Spreadsheet component allows displaying charts in your +`SpreadsheetChartAdapterBase` you can display the charts in the spreadsheet. The spreadsheet chart adapters creates and initializes chart elements for the spreadsheet based on a Infragistics.Documents.Excel.WorksheetChart instance. -In order to add a WorksheetChart to a worksheet, you must use the method of the worksheet’s Shapes collection. You can find more detail of adding charts in Excel below. +In order to add a WorksheetChart to a worksheet, you must use the `AddChart` method of the worksheet’s Shapes collection. You can find more detail of adding charts in Excel below. Here are the steps by step description : @@ -88,10 +87,10 @@ There are over 35 chart types supported by the Spreadsheet ChartAdapters includi -In the following code snippet, an external [ExcelUtility](./excel-utility.mdx) class is used to save and load a . +In the following code snippet, an external [ExcelUtility](./excel-utility.mdx) class is used to save and load a `Spreadsheet.Workbook`. -When setting up your {Platform} spreadsheet control to add charts, you will need to import the class like so: +When setting up your {Platform} spreadsheet control to add charts, you will need to import the `SpreadsheetChartAdapter` class like so: @@ -165,7 +164,7 @@ ModuleManager.register( ## Code Snippet -The following code snippet demonstrates how to add charts to the currently viewed worksheet in the control: +The following code snippet demonstrates how to add charts to the currently viewed worksheet in the `Spreadsheet` control: ```typescript this.spreadsheet.chartAdapter = new SpreadsheetChartAdapter(); @@ -222,7 +221,7 @@ ExcelUtility.loadFromUrl(process.env.PUBLIC_URL + "/ExcelFiles/ChartData.xlsx"). ## API References - +`SpreadsheetChartAdapterBase`
-
-
+`Spreadsheet`
+`Workbook`
diff --git a/docs/xplat/src/content/en/components/spreadsheet-clipboard.mdx b/docs/xplat/src/content/en/components/spreadsheet-clipboard.mdx index 0654e4b833..0849ff7db2 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-clipboard.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-clipboard.mdx @@ -10,7 +10,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Working with Clipboard @@ -26,7 +25,7 @@ This topic explains how to perform clipboard operations on the {ProductName} spr ## Dependencies -Before making use of the clipboard you will want to import the enumeration: +Before making use of the clipboard you will want to import the `SpreadsheetCommandType` enumeration: @@ -58,7 +57,7 @@ import { SpreadsheetAction } from 'igniteui-webcomponents-spreadsheet'; ## Usage -The following code snippet shows how you can execute commands related to the clipboard in the {Platform} control: +The following code snippet shows how you can execute commands related to the clipboard in the {Platform} `Spreadsheet` control: ```ts public cut(): void { @@ -77,5 +76,5 @@ public paste(): void { ## API References -
-
+`SpreadsheetCommandType`
+`Spreadsheet`
diff --git a/docs/xplat/src/content/en/components/spreadsheet-commands.mdx b/docs/xplat/src/content/en/components/spreadsheet-commands.mdx index bfe4a1f0c7..91e74ac8d8 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-commands.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-commands.mdx @@ -10,11 +10,10 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Working with Commands -The {Platform} Spreadsheet component allows you to perform commands for activating different features of the spreadsheet. This topic explains how to perform different operations with the control using commands. Many of the commands will perform their action based on the active cells, rows, or worksheets. For example two such commands are ZoomIn and ZoomOut. See the enum for a full list. +The {Platform} Spreadsheet component allows you to perform commands for activating different features of the spreadsheet. This topic explains how to perform different operations with the control using commands. Many of the commands will perform their action based on the active cells, rows, or worksheets. For example two such commands are ZoomIn and ZoomOut. See the `SpreadsheetCommandType` enum for a full list. ## {Platform} Working with Commands Example @@ -26,7 +25,7 @@ The {Platform} Spreadsheet component allows you to perform commands for activati ## Dependencies -Before making use of the commands you will want to import the +Before making use of the commands you will want to import the `SpreadsheetCommandType` @@ -118,4 +117,4 @@ function zoomOut(): void { ## API References -
+`SpreadsheetCommandType`
diff --git a/docs/xplat/src/content/en/components/spreadsheet-conditional-formatting.mdx b/docs/xplat/src/content/en/components/spreadsheet-conditional-formatting.mdx index 11c569167e..d529b262e2 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-conditional-formatting.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-conditional-formatting.mdx @@ -10,11 +10,10 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Spreadsheet Conditional Formatting -The {Platform} component allows you to conditionally format the cells of a worksheet. This allows you to highlight different pieces of your data based on a condition. +The {Platform} `Spreadsheet` component allows you to conditionally format the cells of a worksheet. This allows you to highlight different pieces of your data based on a condition. ## {Platform} Spreadsheet Conditional Formatting Example @@ -26,37 +25,37 @@ The {Platform} component allows you to conditiona ## Conditional Formatting Overview -You can configure the conditional formatting of a particular worksheet by using the many `Add` methods exposed on the collection of that worksheet. The first parameter of these `Add` methods is the string region of the worksheet that you would like to apply the conditional format to. +You can configure the conditional formatting of a particular worksheet by using the many `Add` methods exposed on the `ConditionalFormats` collection of that worksheet. The first parameter of these `Add` methods is the string region of the worksheet that you would like to apply the conditional format to. -Many of the conditional formats that you can add to your worksheet have a property that determines the way that the cells should look when the condition in that conditional format holds true. For example, you can use the properties attached to this property such as and to determine the background and font settings of your cells, respectively. +Many of the conditional formats that you can add to your worksheet have a `CellFormat` property that determines the way that the cells should look when the condition in that conditional format holds true. For example, you can use the properties attached to this `CellFormat` property such as `Fill` and `Font` to determine the background and font settings of your cells, respectively. -When a conditional format is created and a applied, there is a subset of properties that are currently supported by the worksheet cell. The properties that are currently honored off of the are , `Border` properties, , and some properties such as strikethrough, underline, italic, bold, and color. Many of these can be seen from the code snippet below. +When a conditional format is created and a `CellFormat` applied, there is a subset of properties that are currently supported by the worksheet cell. The properties that are currently honored off of the `CellFormat` are `Fill`, `Border` properties, `FormatString`, and some `Font` properties such as strikethrough, underline, italic, bold, and color. Many of these can be seen from the code snippet below. -There are a few conditional formats that do not have a property, as their visualization on the cells behaves differently. These conditional formats are the , , and . +There are a few conditional formats that do not have a `CellFormat` property, as their visualization on the cells behaves differently. These conditional formats are the `DataBarConditionalFormat`, `ColorScaleConditionalFormat`, and `IconSetConditionalFormat`. When loading a pre-existing workbook from Excel, the formats will be preserved when that workbook is loaded. The same is true for when you save the workbook out to an Excel file. -The following lists the supported conditional formats in the {Platform} control: - -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s value is above or below the average or standard deviation for the associated range. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value is not set. -- : Added using the method, this conditional format exposes properties which control the coloring of a worksheet cell based on the cell’s value as relative to minimum, midpoint, and maximum threshold values. -- : Added using the method, this conditional format exposes properties which display data bars in a worksheet cell based on the cell’s value as relative to the associated range of values. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s date value falls within a given range of time. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s value is unique or duplicated across the associated range. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value is valid. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value meets the criteria defined by a formula. -- : Added using the method, this conditional format exposes properties which display icons in a worksheet cell based on the cell’s value as relative to threshold values. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value is set. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value is valid. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value meets the criteria defined by a logical operator. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s value is within the top of bottom rank of values across the associated range. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s text value meets the criteria defined by a string and a value as placed in the method’s parameters. -- : Added using the method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s value is unique across the associated range. +The following lists the supported conditional formats in the {Platform} `Spreadsheet` control: + +- `AverageConditionalFormat`: Added using the `AddAverageCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s value is above or below the average or standard deviation for the associated range. +- `BlanksConditionalFormat`: Added using the `AddBlanksCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value is not set. +- `ColorScaleConditionalFormat`: Added using the `AddColorScaleCondition` method, this conditional format exposes properties which control the coloring of a worksheet cell based on the cell’s value as relative to minimum, midpoint, and maximum threshold values. +- `DataBarConditionalFormat`: Added using the `AddDataBarCondition` method, this conditional format exposes properties which display data bars in a worksheet cell based on the cell’s value as relative to the associated range of values. +- `DateTimeConditionalFormat`: Added using the `AddDateTimeCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s date value falls within a given range of time. +- `DuplicateConditionalFormat`: Added using the `AddDuplicateCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s value is unique or duplicated across the associated range. +- `ErrorsConditionalFormat`: Added using the `AddErrorsCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value is valid. +- `FormulaConditionalFormat`: Added using the `AddFormulaCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value meets the criteria defined by a formula. +- `IconSetConditionalFormat`: Added using the `AddIconSetCondition` method, this conditional format exposes properties which display icons in a worksheet cell based on the cell’s value as relative to threshold values. +- `NoBlanksConditionalFormat`: Added using the `AddNoBlanksCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value is set. +- `NoErrorsConditionalFormat`: Added using the `AddNoErrorsCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value is valid. +- `OperatorConditionalFormat`: Added using the `AddOperatorCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether the cell’s value meets the criteria defined by a logical operator. +- `RankConditionalFormat`: Added using the `AddRankCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s value is within the top of bottom rank of values across the associated range. +- `TextOperatorConditionalFormat`: Added using the `AddTextCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s text value meets the criteria defined by a string and a `FormatConditionTextOperator` value as placed in the `AddTextCondition` method’s parameters. +- `UniqueConditionalFormat`: Added using the `AddUniqueCondition` method, this conditional format exposes properties which control the visual attributes of a worksheet cell based on whether a cell’s value is unique across the associated range. ## Dependencies -In order to add conditional formatting to the control, you will need to import the following dependencies: +In order to add conditional formatting to the `Spreadsheet` control, you will need to import the following dependencies: @@ -114,7 +113,7 @@ import { WorkbookColorInfo } from 'igniteui-webcomponents-excel'; ## Code Snippet -The following code snippet demonstrates how to add each of the conditional formats to a spreadsheet in the control: +The following code snippet demonstrates how to add each of the conditional formats to a spreadsheet in the `Spreadsheet` control: @@ -186,21 +185,21 @@ uniqueFormat.cellFormat.font.colorInfo = new WorkbookColorInfo(blue); ## API References -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+`AverageConditionalFormat`
+`BlanksConditionalFormat`
+`ColorScaleConditionalFormat`
+`DataBarConditionalFormat`
+`DateTimeConditionalFormat`
+`DuplicateConditionalFormat`
+`ErrorsConditionalFormat`
+`FormulaConditionalFormat`
+`IconSetConditionalFormat`
+`NoBlanksConditionalFormat`
+`NoErrorsConditionalFormat`
+`OperatorConditionalFormat`
+`RankConditionalFormat`
+`TextOperatorConditionalFormat`
+`UniqueConditionalFormat`
+`FormatConditionTextOperator`
+`Spreadsheet`
diff --git a/docs/xplat/src/content/en/components/spreadsheet-configuring.mdx b/docs/xplat/src/content/en/components/spreadsheet-configuring.mdx index 510c4323c2..8854ac779c 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-configuring.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-configuring.mdx @@ -10,7 +10,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Configuring Spreadsheet @@ -26,11 +25,11 @@ The {Platform} Spreadsheet component allows the user to configure many different ## Configuring Cell Editing -When a user edits a cell value and confirms the new input, the control has the ability to navigate to cells adjacent to the currently active cell on press of the ENTER key, depending on the configuration of the spreadsheet. +When a user edits a cell value and confirms the new input, the `Spreadsheet` control has the ability to navigate to cells adjacent to the currently active cell on press of the ENTER key, depending on the configuration of the spreadsheet. -In order to enable this ENTER key navigation, you can set the property to **true**. If set to false, the active cell will stay the same when pressing the ENTER key. +In order to enable this ENTER key navigation, you can set the `IsEnterKeyNavigationEnabled` property to **true**. If set to false, the active cell will stay the same when pressing the ENTER key. -You can also configure the direction of the adjacent cell navigated to on press of the ENTER key by setting the property to `Down`, `Up`, `Left` or `Right`. +You can also configure the direction of the adjacent cell navigated to on press of the ENTER key by setting the `EnterKeyNavigationDirection` property to `Down`, `Up`, `Left` or `Right`. The following code snippets demonstrate the above: @@ -87,7 +86,7 @@ this.spreadsheet.enterKeyNavigationDirection = SpreadsheetEnterKeyNavigationDire ## Configuring Formula Bar -The {Platform} allows you to configure the visibility of the formula bar by setting the property of the control. +The {Platform} `Spreadsheet` allows you to configure the visibility of the formula bar by setting the `IsFormulaBarVisible` property of the control. The following code snippets demonstrate the above: @@ -121,7 +120,7 @@ this.spreadsheet.isFormulaBarVisible = true; ## Configuring Gridlines -The allows you to configure the visibility of its gridlines by setting the property of the control. +The `Spreadsheet` allows you to configure the visibility of its gridlines by setting the `AreGridlinesVisible` property of the control. The following code snippets demonstrate the above: @@ -155,7 +154,7 @@ this.spreadsheet.areGridlinesVisible = true; ## Configuring Headers -The allows you to configure the visibility of its headers by setting the property of the control. +The `Spreadsheet` allows you to configure the visibility of its headers by setting the `AreHeadersVisible` property of the control. The following code snippets demonstrate the above: @@ -189,13 +188,13 @@ this.spreadsheet.areHeadersVisible = false; ## Configuring Navigation -The control allows you to configure navigation between a worksheet's cells by configuring whether or not the control is in "end mode." End mode is the functionality where, on press of an arrow key, the active cell will be moved from the current cell to the end of the row or column where data exists in the adjacent cells, depending on the direction of the arrow key pressed. This functionality is good for navigating to the end of large blocks of data very quickly. +The `Spreadsheet` control allows you to configure navigation between a worksheet's cells by configuring whether or not the control is in "end mode." End mode is the functionality where, on press of an arrow key, the active cell will be moved from the current cell to the end of the row or column where data exists in the adjacent cells, depending on the direction of the arrow key pressed. This functionality is good for navigating to the end of large blocks of data very quickly. -For example, if you are in end mode, and you click in a large 100x100 block of data, and press the arrow key, this will navigate to the right end of the row that you are in to the furthest right column with data. After this operation, the will pop out of end mode. +For example, if you are in end mode, and you click in a large 100x100 block of data, and press the arrow key, this will navigate to the right end of the row that you are in to the furthest right column with data. After this operation, the `Spreadsheet` will pop out of end mode. -End mode goes into effect at runtime when the user presses the END key, but it can be configured programmatically by setting the property of the spreadsheet control. +End mode goes into effect at runtime when the user presses the END key, but it can be configured programmatically by setting the `IsInEndMode` property of the spreadsheet control. -The following code snippets demonstrate the above, in that the will begin in end mode: +The following code snippets demonstrate the above, in that the `Spreadsheet` will begin in end mode: @@ -227,9 +226,9 @@ this.spreadsheet.isInEndMode = true; ## Configuring Protection -The will respect the protection of a workbook on a worksheet-by-worksheet basis. Configuration for a worksheet's protection can be configured by calling the `Protect()` method on the worksheet to protect it, and the `Unprotect()` method to unprotect it. +The `Spreadsheet` will respect the protection of a workbook on a worksheet-by-worksheet basis. Configuration for a worksheet's protection can be configured by calling the `Protect()` method on the worksheet to protect it, and the `Unprotect()` method to unprotect it. -You can activate or deactivate protection on the control's currently active worksheet by using the code below: +You can activate or deactivate protection on the `Spreadsheet` control's currently active worksheet by using the code below: ```ts this.spreadsheet.activeWorksheet.protect(); @@ -238,15 +237,15 @@ this.spreadsheet.activeWorksheet.unprotect(); ## Configuring Selection -The control allows you to configure the type of selection allowed in the control then modifier keys (SHIFT or CTRL) are pressed by the user. This is done by setting the property of the spreadsheet to one of the following values: +The `Spreadsheet` control allows you to configure the type of selection allowed in the control then modifier keys (SHIFT or CTRL) are pressed by the user. This is done by setting the `SelectionMode` property of the spreadsheet to one of the following values: -- `AddToSelection`: New cell ranges are added to the object's collection without needing to hold down the CTRL key when dragging via the mouse and a range is added with the first arrow key navigation after entering the mode. One can enter the mode by pressing SHIFT + F8. -- `ExtendSelection`: The selection range in the object's collection representing the active cell is updated as one uses the mouse to select a cell or navigating via the keyboard. +- `AddToSelection`: New cell ranges are added to the `SpreadsheetSelection` object's `CellRanges` collection without needing to hold down the CTRL key when dragging via the mouse and a range is added with the first arrow key navigation after entering the mode. One can enter the mode by pressing SHIFT + F8. +- `ExtendSelection`: The selection range in the `SpreadsheetSelection` object's `CellRanges` collection representing the active cell is updated as one uses the mouse to select a cell or navigating via the keyboard. - `Normal`: The selection is replaced when dragging the mouse to select a cell or range of cells. Similarly when navigating via the keyboard a new selection is created. One may add a new range by holding the CTRL key and using the mouse and one may alter the selection range containing the active cell by holding the SHIFT key down while clicking with the mouse or navigating with the keyboard such as with the arrow keys. The - -object mentioned in the descriptions above can be obtained by using the property of the control. +`SpreadsheetSelection` +object mentioned in the descriptions above can be obtained by using the `ActiveSelection` property of the `Spreadsheet` control. The following code snippets demonstrate configuration of the selection mode: @@ -296,13 +295,13 @@ import { SpreadsheetCellSelectionMode } from 'igniteui-webcomponents-spreadsheet this.spreadsheet.selectionMode = SpreadsheetCellSelectionMode.ExtendSelection; ``` -The selection of the control can also be set or obtained programmatically. For single selection, you can set the property Multiple selection is done through the - -object that is returned by the control's property. +The selection of the `Spreadsheet` control can also be set or obtained programmatically. For single selection, you can set the `ActiveCell` property Multiple selection is done through the +`SpreadsheetSelection` +object that is returned by the `Spreadsheet` control's `ActiveSelection` property. The - -object has an `AddCellRange()` method that allows you to programmatically add a range of cells to the selection of the spreadsheet in the form of a new object. +`SpreadsheetSelection` +object has an `AddCellRange()` method that allows you to programmatically add a range of cells to the selection of the spreadsheet in the form of a new `SpreadsheetCellRange` object. The following code snippet demonstrates adding a cell range to the spreadsheet's selection: @@ -312,7 +311,7 @@ this.spreadsheet.activeSelection.addCellRange(new SpreadsheetCellRange(2, 2, 5, ## Configuring Tab Bar Area -The control respects the configuration of the visibility and width of the tab bar area from the of the currently active via the `TabBarWidth` and `TabBarVisibility` properties, respectively. +The `Spreadsheet` control respects the configuration of the visibility and width of the tab bar area from the `Workbook.WindowOptions` of the currently active `Spreadsheet.Workbook` via the `TabBarWidth` and `TabBarVisibility` properties, respectively. The tab bar area is the area that visualizes the worksheet names as tabs in the control. @@ -326,9 +325,9 @@ this.spreadsheet.workbook.windowOptions.tabBarWidth = 200; ## Configuring Zoom Level -The {Platform} Spreadsheet component supports zooming in and out by configuring its property. The zoom level can be a maximum of 400% and a minimum of 10%. +The {Platform} Spreadsheet component supports zooming in and out by configuring its `ZoomLevel` property. The zoom level can be a maximum of 400% and a minimum of 10%. -Setting this property to a number represents the percentage as a whole number, so setting the to 100 is equivalent to setting it to 100%. +Setting this property to a number represents the percentage as a whole number, so setting the `ZoomLevel` to 100 is equivalent to setting it to 100%. The following code snippets show how to configure the spreadsheet's zoom level: @@ -363,8 +362,8 @@ this.spreadsheet.zoomLevel = 200; ## API References - +`SpreadsheetCellRange`
-
-
-
+`SpreadsheetSelection`
+`Spreadsheet`
+`Workbook`
diff --git a/docs/xplat/src/content/en/components/spreadsheet-data-validation.mdx b/docs/xplat/src/content/en/components/spreadsheet-data-validation.mdx index 2db27a083e..231c9e3d0f 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-data-validation.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-data-validation.mdx @@ -10,7 +10,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Data Validation @@ -158,5 +157,4 @@ this.spreadsheet.workbook.worksheets(0).rows(7).cells(0).value = "Check Out Date
## API References - - +`Spreadsheet` diff --git a/docs/xplat/src/content/en/components/spreadsheet-hyperlinks.mdx b/docs/xplat/src/content/en/components/spreadsheet-hyperlinks.mdx index 9ba0646846..238c511d81 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-hyperlinks.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-hyperlinks.mdx @@ -10,7 +10,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Spreadsheet Hyperlinks @@ -26,11 +25,11 @@ The {Platform} Spreadsheet component allows display of pre-existing hyperlinks i ## Hyperlinks Overview -Hyperlinks are added to the control by accessing the `Hyperlinks` collection on the worksheet that you want to place the hyperlink on. This collection has an `Add` method that takes a object, where you can define the cell address, the hyperlink URL to be navigated to, the display text, and a tooltip to optionally be displayed on hover. +Hyperlinks are added to the `Spreadsheet` control by accessing the `Hyperlinks` collection on the worksheet that you want to place the hyperlink on. This collection has an `Add` method that takes a `WorksheetHyperlink` object, where you can define the cell address, the hyperlink URL to be navigated to, the display text, and a tooltip to optionally be displayed on hover. ## Dependencies -When setting up your {Platform} spreadsheet control to use hyperlinks, you will need to import the class like so: +When setting up your {Platform} spreadsheet control to use hyperlinks, you will need to import the `WorksheetHyperlink` class like so: @@ -61,7 +60,7 @@ import { WorksheetHyperlink } from 'igniteui-webcomponents-excel'; ## Code Snippet -The following code snippet demonstrates how to add a hyperlink to the currently viewed worksheet in the {Platform} control: +The following code snippet demonstrates how to add a hyperlink to the currently viewed worksheet in the {Platform} `Spreadsheet` control: @@ -75,6 +74,6 @@ this.spreadsheet.activeWorksheet.hyperlinks().add(new WorksheetHyperlink("A1", " ## API References -
-
+`Spreadsheet`
+`WorksheetHyperlink`
diff --git a/docs/xplat/src/content/en/components/spreadsheet-overview.mdx b/docs/xplat/src/content/en/components/spreadsheet-overview.mdx index d1158a3642..cf5c0cf5e3 100644 --- a/docs/xplat/src/content/en/components/spreadsheet-overview.mdx +++ b/docs/xplat/src/content/en/components/spreadsheet-overview.mdx @@ -11,11 +11,10 @@ platformType: xplat import DocsAside from 'igniteui-astro-components/components/mdx/DocsAside.astro'; import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} Spreadsheet Overview -The {Platform} Spreadsheet (Excel viewer) component is lightweight, feature-rich and supplied with all the necessary options for operating, visualizing, and editing all types of spreadsheet data – scientific, business, financial, and more. All the information can be presented in a tabular format that feels intuitive and easy to navigate across cells, panes, and worksheets. The is complemented by flexible Excel-like interface, detailed charts, and features such as activation, cell editing, conditional formatting, styling, selection, clipboard. +The {Platform} Spreadsheet (Excel viewer) component is lightweight, feature-rich and supplied with all the necessary options for operating, visualizing, and editing all types of spreadsheet data – scientific, business, financial, and more. All the information can be presented in a tabular format that feels intuitive and easy to navigate across cells, panes, and worksheets. The `Spreadsheet` is complemented by flexible Excel-like interface, detailed charts, and features such as activation, cell editing, conditional formatting, styling, selection, clipboard. ## {Platform} Spreadsheet Example @@ -69,7 +68,7 @@ npm install --save {PackageSpreadsheet} ## Component Modules -The requires the following modules: +The `Spreadsheet` requires the following modules: @@ -158,7 +157,7 @@ Now that the {Platform} spreadsheet module is imported, next is the basic config -In the following code snippet, an external [ExcelUtility](./excel-utility.mdx) class is used to save and load a . +In the following code snippet, an external [ExcelUtility](./excel-utility.mdx) class is used to save and load a `Spreadsheet.Workbook`. The following demonstrates how to load a workbook into the {Platform} spreadsheet @@ -226,5 +225,5 @@ ExcelUtility.loadFromUrl(excelFile).then((w: Workbook) => { ## API References -
-
+`Spreadsheet`
+`Workbook`
diff --git a/docs/xplat/src/content/en/toc.json b/docs/xplat/src/content/en/toc.json index f691fd3126..28e6928e07 100644 --- a/docs/xplat/src/content/en/toc.json +++ b/docs/xplat/src/content/en/toc.json @@ -133,6 +133,9 @@ "WebComponents" ], "name": "Getting Started", + "include": [ + "Blazor" + ], "items": [ { "name": "Blazor Server App", @@ -376,16 +379,14 @@ ] }, { - "note": "THIS MAIN NODE FOR OLD XPLAT GRID", "exclude": [ "Angular", "Blazor", "WebComponents", "React" ], - "name": "Grids & Lists", - "header": true, - "href": "grids/grids.mdx" + "name": "Data Grid", + "header": true }, { "note": "THIS MAIN NODE FOR NEW XPLAT GRID", @@ -2086,7 +2087,7 @@ ] }, { - "name": "Table / Grid", + "name": "Data Grid", "href": "grids/data-grid/overview.mdx", "premium": true, "items": [ diff --git a/docs/xplat/src/content/jp/components/charts/chart-api.mdx b/docs/xplat/src/content/jp/components/charts/chart-api.mdx index c9073ab26c..4a1359af99 100644 --- a/docs/xplat/src/content/jp/components/charts/chart-api.mdx +++ b/docs/xplat/src/content/jp/components/charts/chart-api.mdx @@ -11,117 +11,114 @@ llms: description: "{ProductName} チャートは、CategoryChart、FinancialChart、DataChart、DataPieChart、DoughnutChart、PieChart、および Sparkline UI 要素でデータをプロットするためのシンプルで使いやすい API を提供します。" platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} チャート API -{ProductName} チャートは、、および UI 要素でデータをプロットするためのシンプルで使いやすい API を提供します。 +{ProductName} チャートは、`CategoryChart`、`FinancialChart`、`XamDataChart`、`DataPieChart`、`XamDoughnutChart`、`XamPieChart`、および `XamSparkline` UI 要素でデータをプロットするためのシンプルで使いやすい API を提供します。 ## {Platform} カテゴリ チャート API -{Platform} には次の API メンバーがあります。 +{Platform} `CategoryChart` には次の API メンバーがあります。 | チャート プロパティ | 軸プロパティ | シリーズ プロパティ | |-------------------|--------------|-------------------| -| - `CategoryChart.ChartType`
-
-
-
-
-
-
-
-
-
| -
-
-
-
-
-
-
-
-
- | -
-
-
-
-
-




| +| - `CategoryChart.ChartType`
- `ExcludedProperties`
- `IncludedProperties`
- `XamDataChart.IsHorizontalZoomEnabled`
- `XamDataChart.IsVerticalZoomEnabled`
- `CategoryChart.CrosshairsDisplayMode`
- `TransitionInMode`
- `XamDataChart.HighlightingBehavior`
- `XamDataChart.HighlightingMode`
- `CategoryChart.TrendLineType`
| - `XAxisInterval`
- `CategoryChart.XAxisLabelLocation`
- `XAxisGap`
- `XAxisOverlap`
- `XAxisTitle`
- `YAxisInterval`
- `CategoryChart.YAxisLabelLocation`
- `YAxisTitle`
- `YAxisMinimumValue`
- `YAxisMaximumValue` | - `XamDataChart.Brushes`
- `XamDataChart.Outlines`
- `XamDataChart.MarkerBrushes`
- `XamDataChart.MarkerOutlines`
- `MarkerTypes`
- `CategoryChart.ToolTipType`




| ## {Platform} ファイナンシャル チャート API -{Platform} には次の API メンバーがあります。 +{Platform} `FinancialChart` には次の API メンバーがあります。 | チャート プロパティ | 軸プロパティ | シリーズ プロパティ | |-------------------|-------------|--------------------| -| - `FinancialChart.ChartType`
-
-
-
-
-
-
-
-
- | -
-
-
-
-
-
-
-
-
- | -
-
-
-
-
-
-
-


| +| - `FinancialChart.ChartType`
- `CategoryChart.ExcludedProperties`
- `CategoryChart.IncludedProperties`
- `XamDataChart.IsHorizontalZoomEnabled`
- `XamDataChart.IsVerticalZoomEnabled`
- `CategoryChart.ToolTipType`
- `CategoryChart.CrosshairsDisplayMode`
- `XamDataChart.HighlightingBehavior`
- `XamDataChart.HighlightingMode`
- `CategoryChart.TrendLineType` | - `XAxisInterval`
- `CategoryChart.XAxisLabelLocation`
- `CategoryChart.XAxisTitle`
- `CategoryChart.YAxisInterval`
- `CategoryChart.YAxisLabelLocation`
- `CategoryChart.YAxisTitle`
- `CategoryChart.YAxisMinimumValue`
- `CategoryChart.YAxisMaximumValue`
- `YAxisMode`
- `XAxisMode` | - `XamDataChart.Brushes`
- `XamDataChart.Outlines`
- `XamDataChart.MarkerBrushes`
- `XamDataChart.MarkerOutlines`
- `CategoryChart.MarkerTypes`
- `IndicatorTypes`
- `VolumeType`
- `ZoomSliderType`


| ## {Platform} データ チャート API -{Platform} には次の API メンバーがあります。 +{Platform} `XamDataChart` には次の API メンバーがあります。 | チャート プロパティ | 軸クラス | |------------------|--------------| -| - `SeriesViewer.Title`
- `SeriesViewer.Subtitle`
-
-
-
-
-
-
- `DataChart.Axes`
- `SeriesViewer.Series`
| - はすべての軸タイプの基本クラスです
- [カテゴリ シリーズ](./types/column-chart.mdx)、[積層型シリーズ](./types/stacked-chart.mdx)、および[ファイナンシャル シリーズ](./types/stock-chart.mdx)で使用される
- [カテゴリ シリーズ](./types/column-chart.mdx)および[積層型シリーズ](./types/stacked-chart.mdx)で使用される
- [ラジアル シリーズ](./types/radial-chart.mdx)で使用される
- [散布シリーズ](./types/scatter-chart.mdx)および[棒シリーズ](./types/bar-chart.mdx)で使用される
- [散布シリーズ](./types/scatter-chart.mdx)、[カテゴリ シリーズ](./types/column-chart.mdx)、[積層型シリーズ](./types/stacked-chart.mdx)、および[ファイナンシャル シリーズ](./types/stock-chart.mdx)で使用される
- [極座標シリーズ](./types/polar-chart.mdx)で使用される
- [極座標シリーズ](./types/polar-chart.mdx) および[ラジアル シリーズ](./types/radial-chart.mdx)で使用される
- [カテゴリ シリーズ](./types/column-chart.mdx)および[ファイナンシャル シリーズ](./types/stock-chart.mdx)で使用される

| +| - `SeriesViewer.Title`
- `SeriesViewer.Subtitle`
- `IsHorizontalZoomEnabled`
- `IsVerticalZoomEnabled`
- `Brushes`
- `Outlines`
- `MarkerBrushes`
- `MarkerOutlines`
- `DataChart.Axes`
- `SeriesViewer.Series`
| - `Axis` はすべての軸タイプの基本クラスです
- [カテゴリ シリーズ](./types/column-chart.mdx)、[積層型シリーズ](./types/stacked-chart.mdx)、および[ファイナンシャル シリーズ](./types/stock-chart.mdx)で使用される `CategoryXAxis`
- [カテゴリ シリーズ](./types/column-chart.mdx)および[積層型シリーズ](./types/stacked-chart.mdx)で使用される `CategoryYAxis`
- [ラジアル シリーズ](./types/radial-chart.mdx)で使用される `CategoryAngleAxis`
- [散布シリーズ](./types/scatter-chart.mdx)および[棒シリーズ](./types/bar-chart.mdx)で使用される `NumericXAxis`
- [散布シリーズ](./types/scatter-chart.mdx)、[カテゴリ シリーズ](./types/column-chart.mdx)、[積層型シリーズ](./types/stacked-chart.mdx)、および[ファイナンシャル シリーズ](./types/stock-chart.mdx)で使用される `NumericYAxis`
- [極座標シリーズ](./types/polar-chart.mdx)で使用される `NumericAngleAxis`
- [極座標シリーズ](./types/polar-chart.mdx) および[ラジアル シリーズ](./types/radial-chart.mdx)で使用される `NumericRadiusAxis`
- [カテゴリ シリーズ](./types/column-chart.mdx)および[ファイナンシャル シリーズ](./types/stock-chart.mdx)で使用される `TimeXAxis`

| -{Platform} は、 から継承する次のタイプのシリーズを使用できます。 +{Platform} `XamDataChart` は、`XamDataChart.Series` から継承する次のタイプのシリーズを使用できます。 | カテゴリ シリーズ | 積層シリーズ | |------------------|----------------| -| -
-
-
-
-
-
-
-
-
-
-
-
| -
-
-
-
-
-
-
-
-
-


| +| - `AreaSeries`
- `BarSeries`
- `ColumnSeries`
- `LineSeries`
- `PointSeries`
- `SplineSeries`
- `SplineAreaSeries`
- `StepLineSeries`
- `StepAreaSeries`
- `RangeAreaSeries`
- `RangeColumnSeries`
- `WaterfallSeries`
| - `StackedAreaSeries`
- `StackedBarSeries`
- `StackedColumnSeries`
- `StackedLineSeries`
- `StackedSplineSeries`
- `Stacked100AreaSeries`
- `Stacked100BarSeries`
- `Stacked100ColumnSeries`
- `Stacked100LineSeries`
- `Stacked100SplineSeries`


| | 散布シリーズ | ファイナンシャル シリーズ | |----------------|------------------| -| -
-
-
-
-
-
-
-
-

| -
-
-
-
-
-
-
-
-
- おとび [その他](./types/stock-chart.mdx) | +| - `BubbleSeries`
- `HighDensityScatterSeries`
- `ScatterSeries`
- `ScatterLineSeries`
- `ScatterSplineSeries`
- `ScatterAreaSeries`
- `ScatterContourSeries`
- `ScatterPolylineSeries`
- `ScatterPolygonSeries`

| - `FinancialPriceSeries`
- `BollingerBandsOverlay`
- `ForceIndexIndicator`
- `MedianPriceIndicator`
- `MassIndexIndicator`
- `RelativeStrengthIndexIndicator`
- `StandardDeviationIndicator`
- `TypicalPriceIndicator`
- `WeightedCloseIndicator`
- おとび [その他](./types/stock-chart.mdx) | | ラジアル シリーズ | 極座標シリーズ | |---------------|--------------| -| -
-
-
-

| -
-
-
-
-
| +| - `RadialLineSeries`
- `RadialAreaSeries`
- `RadialPieSeries`
- `RadialColumnSeries`

| - `PolarScatterSeries`
- `PolarLineSeries`
- `PolarAreaSeries`
- `PolarSplineSeries`
- `PolarSplineAreaSeries`
| ## {Platform} データ凡例の API -{Platform} には次の API メンバーがあります: - -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- +{Platform} `XamDataLegend` には次の API メンバーがあります: + +- `IncludedColumns` +- `ExcludedColumns` +- `IncludedSeries` +- `ExcludedSeries` +- `ValueFormatAbbreviation` +- `ValueFormatMode` +- `ValueFormatCulture` +- `ValueFormatMinFractions` +- `ValueFormatMaxFractions` +- `ValueTextColor` +- `XamDataChart.TitleTextColor` +- `LabelTextColor` +- `UnitsTextColor` +- `SummaryType` +- `HeaderTextColor` +- `BadgeShape` ## {Platform} ドーナツ チャート API -{Platform} には、次の API メンバーがあります。 +{Platform} `XamDoughnutChart` には、次の API メンバーがあります。 -- -- -- +- `AllowSliceExplosion` +- `AllowSliceSelection` +- `InnerExtent` ## {Platform} データ円チャート API -{Platform} には、次の API メンバーがあります。 +{Platform} `DataPieChart` には、次の API メンバーがあります。 - `DataPieChart.ChartType` -- -- -- -- -- +- `HighlightingBehavior` +- `OthersCategoryThreshold` +- `DataPieChart.OthersCategoryType` +- `SelectionMode` +- `SelectionBehavior` ## {Platform} 円チャート API -{Platform} には、次の API メンバーがあります。 +{Platform} `XamPieChart` には、次の API メンバーがあります。 -- -- -- -- -- -- +- `LegendItemBadgeTemplate` +- `LegendItemTemplate` +- `LegendLabelMemberPath` +- `OthersCategoryThreshold` +- `XamPieChart.OthersCategoryType` +- `SelectionMode` ## {Platform} スパークライン チャート API -{Platform} には、次の API メンバーがあります。 +{Platform} `XamSparkline` には、次の API メンバーがあります。 - `DisplayNormalRangeInFront` -- +- `DisplayType` - `LowMarkerBrush` - `LowMarkerSize` - `LowMarkerVisibility` - `NormalRangeFill` -- +- `CategoryChart.UnknownValuePlotting` ## その他のリソース diff --git a/docs/xplat/src/content/jp/components/charts/chart-overview.mdx b/docs/xplat/src/content/jp/components/charts/chart-overview.mdx index 06ccf365c0..ac47b9d7b9 100644 --- a/docs/xplat/src/content/jp/components/charts/chart-overview.mdx +++ b/docs/xplat/src/content/jp/components/charts/chart-overview.mdx @@ -238,7 +238,6 @@ import igniteUiAngularFinancialChartCustomTooltips1100 from '@xplat-images/chart - 65 を超える {Platform} チャート タイプと複合チャートが含まれており、スマート データ アダプタを使用した類を見ない最も簡単な構成が可能です。 - チャートは、Angular、Blazor、jQuery / JavaScript、React、UNO、UWP、WPF、Windows Forms、WebComponents、WinUI、Xamarin などのすべてのプラットフォームで最適化されています。すべてのプラットフォームで同じ API と機能をサポートします。 - 当社の株価チャートとファイナンシャル チャートは、YahooFinance または Google Finance のようなエクスペリエンスに必要なすべてを 1 行のコードで提供します。 -- Ignite UI for Angular は、Angular 開発者向けの Angular 上に構築されており、サードパーティの依存関係はありません。Angular 用に 100% 最適化されています。 - 他社のパフォーマンスに対してテストします。当社は高速で大量のデータを処理できることを証明できます。大量のデータとリアルタイムのデータ ストリーミングをどのように処理するかをご自身で確認してください。 - 24/5 対応しております。インフラジスティックスは、常にオンラインでグローバル サポートを提供しています。北米、アジア太平洋、中東、およびヨーロッパでは、いつでもご利用いただけます。 - チャートの他に、{Platform} には多くの UI コントロールもあります。アプリケーション構築のための完全な {Platform} ソリューションを提供します! diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-annotations.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-annotations.mdx index 93648c5982..33b28a4291 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-annotations.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-annotations.mdx @@ -30,7 +30,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -このサンプルが気に入りましたか? 完全な {Platform} ツールキットにアクセスして、すばやく独自のアプリの作成を開始します。無料でダウンロードできます。 +このサンプルが気に入りましたか? {ProductName} ツールキットを試して、独自のアプリを構築しましょう。無料トライアルをダウンロードします。 ## {Platform} 十字線レイヤー diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-axis-options.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-axis-options.mdx index ff0119a68e..4fc3689f1c 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-axis-options.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-axis-options.mdx @@ -12,9 +12,6 @@ llms: platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} 軸オプション @@ -48,9 +45,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; `autoMarginAndAngleUpdateMode` を設定した後、`shouldAutoExpandMarginForInitialLabels` プロパティを true に設定して自動マージンをオプトインするか `shouldConsiderAutoRotationForInitialLabels` プロパティを true に設定して自動回転を行うことができます。`autoExpandMarginExtraPadding` と `autoExpandMarginMaximumValue` を設して、それぞれ追加のスペースまたは可能な最大マージンを提供することにより、適用される自動マージンをさらにカスタマイズすることもできます。 - や `DateTimeFormatSpecifier` などのカスタム ラベル書式は、`xAxisLabelFormatSpecifiers` および `yAxisLabelFormatSpecifiers` コレクションを介して各軸に追加できます。一般に、Intl.NumberFormat および Intl.DateTimeFormat の言語に依存した数値、日付、時刻の書式設定を適用するために使用されます。ラベルにカスタム書式を適用するには、`yAxisLabelFormat` または `xAxisLabelFormat` を `CategoryChart` のデータ項目のプロパティ名 (例: `{Date}`) に設定する必要があります。`FinancialChart` の場合、数値軸を使用するため、数値がコンテキストとなり、これを `{0}` に設定する必要があります。 +`NumberFormatSpecifier` や `DateTimeFormatSpecifier` などのカスタム ラベル書式は、`xAxisLabelFormatSpecifiers` および `yAxisLabelFormatSpecifiers` コレクションを介して各軸に追加できます。一般に、Intl.NumberFormat および Intl.DateTimeFormat の言語に依存した数値、日付、時刻の書式設定を適用するために使用されます。ラベルにカスタム書式を適用するには、`yAxisLabelFormat` または `xAxisLabelFormat` を `CategoryChart` のデータ項目のプロパティ名 (例: `{Date}`) に設定する必要があります。`FinancialChart` の場合、数値軸を使用するため、数値がコンテキストとなり、これを `{0}` に設定する必要があります。 -次の例では、yAxis を でフォーマットして、米国のトップ興行収入映画の $USD 価格を表します。 +次の例では、yAxis を `NumberFormatSpecifier` でフォーマットして、米国のトップ興行収入映画の $USD 価格を表します。 @@ -135,4 +132,3 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; | `Axes` -> `NumericXAxis` -> `labelSettings.textColor` | `FinancialChart.XAxisLabelForeground` | `CategoryChart.XAxisLabelForeground` | | `Axes` -> `NumericYAxis` -> `labelSettings.visibility` | `FinancialChart.yAxisLabelVisibility` | `CategoryChart.yAxisLabelVisibility` | | `Axes` -> `NumericXAxis` -> `labelSettings.visibility` | `FinancialChart.xAxisLabelVisibility` | `CategoryChart.xAxisLabelVisibility` | - diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-data-aggregations.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-data-aggregations.mdx index 45b1283aa6..875622bcc2 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-data-aggregations.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-data-aggregations.mdx @@ -19,11 +19,11 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; # {Platform} データ集計 -{ProductName} `CategoryChart` コントロールのデータ集計機能を使用すると、チャート内のデータを の一意の値でグループ化し、それらのグループをソートすることができます。次に、 の範囲に反映され、シリーズにカーソルを合わせるとツールチップに表示される集計を適用できます。 +{ProductName} `CategoryChart` コントロールのデータ集計機能を使用すると、チャート内のデータを `xAxisMemberPath` の一意の値でグループ化し、それらのグループをソートすることができます。次に、`yAxisMemberPath` の範囲に反映され、シリーズにカーソルを合わせるとツールチップに表示される集計を適用できます。 ## {Platform} データ集計の例 -次の例は、 の Country メンバーごとにグループ化する[縦棒チャート](../types/column-chart.mdx)を示しており、各データ項目内の他のプロパティ (Product、MonthName、Year など) に変更して販売データを集計できます。また、グループ化されたプロパティを望ましい順序で取得するために、概要とソートのオプションも利用できます。 +次の例は、`xAxisMemberPath` の Country メンバーごとにグループ化する[縦棒チャート](../types/column-chart.mdx)を示しており、各データ項目内の他のプロパティ (Product、MonthName、Year など) に変更して販売データを集計できます。また、グループ化されたプロパティを望ましい順序で取得するために、概要とソートのオプションも利用できます。 `initialSummaries` と `groupSorts` のドロップダウン内にある短縮関数は、割り当てたプロパティに基づいて正しい結果が得られるように適用されていることに注意してください (例: Sum(sales) as Sales | Sales Desc)。 diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-data-annotations.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-data-annotations.mdx index f5fffc6643..9c5842e385 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-data-annotations.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-data-annotations.mdx @@ -31,7 +31,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -このサンプルが気に入りましたか? 完全な {Platform} ツールキットにアクセスして、すばやく独自のアプリの作成を開始します。無料でダウンロードできます。 +このサンプルが気に入りましたか? {ProductName} ツールキットを試して、独自のアプリを構築しましょう。無料トライアルをダウンロードします。 ## {Platform} データ注釈スライス レイヤーの例 @@ -97,4 +97,3 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - `startLabelXDisplayMode` | `startLabelYDisplayMode` | `endLabelXDisplayMode` | `endLabelYDisplayMode` | `centerLabelXDisplayMode`: これらのプロパティは、注釈形状の開始、終了、または中央に注釈ラベルとして何を表示するかを指定します。たとえば、マップされたデータ値、データ ラベル、軸の値を表示したり、特定の注釈ラベルを非表示にします。 - `startLabelYMemberPath`: このプロパティは、y 軸上の `DataAnnotationBandLayer`、`DataAnnotationLineLayer`、`DataAnnotationRectLayer` の開始位置の軸ラベルを表すデータ列へのマッピングです。 - `endLabelYMemberPath`: このプロパティは、y 軸上の `DataAnnotationBandLayer`、`DataAnnotationLineLayer`、`DataAnnotationRectLayer` の終了位置の軸ラベルを表すデータ列へのマッピングです。 - diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-data-legend.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-data-legend.mdx index 9ce772410b..40fd8b02e2 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-data-legend.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-data-legend.mdx @@ -12,7 +12,6 @@ platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; import { Image } from 'astro:assets'; import layoutMode from '@xplat-images/general/layout_mode.png'; @@ -153,20 +152,20 @@ OHLC 価格の **TypicalPrice** (標準価格) とパーセンテージの **Cha 凡例のグループ化部分を含むいくつかのプロパティが公開されています。 -- -- +- `GroupRowMargin` +- `GroupTextMargin` - `groupTextColor` - `groupTextFontSize` - `groupTextFontFamily` - `groupTextFontStyle` -- +- `GroupTextFontStretch` - `groupTextFontWeight` -- +- `HeaderTextMargin` - `headerTextColor` - `headerTextFontSize` - `headerTextFontFamily` - `headerTextFontStyle` -- +- `HeaderTextFontStretch` - `headerTextFontWeight` `XamDataLegend` には、値が更新されているマウス操作中であっても、対応する行を描画するときに発生するいくつかのイベントがあります。それらのイベントを、その使用目的とあわせて以下に示します: diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-data-tooltip.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-data-tooltip.mdx index d5bb71bdad..e2dbe047cd 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-data-tooltip.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-data-tooltip.mdx @@ -13,7 +13,6 @@ platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; import { Image } from 'astro:assets'; import layoutMode from '@xplat-images/general/layout_mode.png'; @@ -149,19 +148,19 @@ import layoutMode from '@xplat-images/general/layout_mode.png'; ツールチップのグループ化部分を含むいくつかのプロパティが公開されています。 -- +- `GroupTextMargin` - `groupTextColor` - `groupTextFontSize` - `groupTextFontFamily` - `groupTextFontStyle` -- +- `GroupTextFontStretch` - `groupTextFontWeight` -- +- `HeaderTextMargin` - `headerTextColor` - `headerTextFontSize` - `headerTextFontFamily` - `headerTextFontStyle` -- +- `HeaderTextFontStretch` - `headerTextFontWeight` diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-navigation.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-navigation.mdx index 45405a5143..2b3caaa899 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-navigation.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-navigation.mdx @@ -29,7 +29,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -このサンプルが気に入りましたか?完全な {Platform} ツールキットにアクセスして、すばやく独自のアプリの作成を開始します。無料でダウンロードできます。 +このサンプルが気に入りましたか? {ProductName} ツールキットを試して、独自のアプリを構築しましょう。無料トライアルをダウンロードします。 ## ユーザー インタラクションによるチャート ナビゲーション diff --git a/docs/xplat/src/content/jp/components/charts/types/bar-chart.mdx b/docs/xplat/src/content/jp/components/charts/types/bar-chart.mdx index 60cdb09dd0..a30b1b2f81 100644 --- a/docs/xplat/src/content/jp/components/charts/types/bar-chart.mdx +++ b/docs/xplat/src/content/jp/components/charts/types/bar-chart.mdx @@ -11,8 +11,6 @@ llms: platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} 棒チャート @@ -133,7 +131,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; 範囲棒チャートは、範囲が垂直柱ではなく水平棒の集まりとして表される点を除いて、[範囲縦棒チャート](column-chart.mdx#{PlatformLower}-範囲縦棒チャート)とすべての面で同じです。 - コントロールでこのチャート タイプを作成するには、データを にバインドします。このシリーズは `LowMemberPath` および `HighMemberPath` から低値と高値を読み取り、通常は `NumericXAxis` と `CategoryYAxis` を使用します。以下の例をご覧ください。 +`XamDataChart` コントロールでこのチャート タイプを作成するには、データを `RangeBarSeries` にバインドします。このシリーズは `LowMemberPath` および `HighMemberPath` から低値と高値を読み取り、通常は `NumericXAxis` と `CategoryYAxis` を使用します。以下の例をご覧ください。 diff --git a/docs/xplat/src/content/jp/components/charts/types/sparkline-chart.mdx b/docs/xplat/src/content/jp/components/charts/types/sparkline-chart.mdx index 90d1febbdb..7985cb408c 100644 --- a/docs/xplat/src/content/jp/components/charts/types/sparkline-chart.mdx +++ b/docs/xplat/src/content/jp/components/charts/types/sparkline-chart.mdx @@ -28,7 +28,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; -このサンプルが気に入りましたか? 完全な {Platform} ツールキットにアクセスして、すばやく独自のアプリの作成を開始します。無料でダウンロードできます。 +このサンプルが気に入りましたか? {ProductName} ツールキットを試して、独自のアプリを構築しましょう。無料トライアルをダウンロードします。 ## スパークラインの推奨事項 diff --git a/docs/xplat/src/content/jp/components/charts/types/stock-chart.mdx b/docs/xplat/src/content/jp/components/charts/types/stock-chart.mdx index 7f2009e9f2..9870dd6562 100644 --- a/docs/xplat/src/content/jp/components/charts/types/stock-chart.mdx +++ b/docs/xplat/src/content/jp/components/charts/types/stock-chart.mdx @@ -11,8 +11,6 @@ llms: platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} 株価チャート @@ -20,7 +18,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## {Platform} 株価チャートの例 - コントロールでこのチャート タイプを作成するには、以下の例のように、データをバインドし、 プロパティを 値に設定します。 +`FinancialChart` コントロールでこのチャート タイプを作成するには、以下の例のように、データをバインドし、`FinancialChart.ChartType` プロパティを `FinancialChartType.Line` 値に設定します。 @@ -125,14 +123,14 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ボリューム ペインは指定した期間に取引された株式数を表します。出来高の低さは関心が低いことを示し、出来高の多さは取引が多く、関心が高いことを示します。縦棒、折れ線、またはエリア チャート タイプを使用して表示できます。ツールバーでチャート タイプを選択すると、ランタイムにデータを表示するボリューム ペインが表示されます。ペインを表示するには、以下のコードのようにボリューム タイプを設定する必要があります: ### 価格ペイン -このペインは、在庫価格を表示し、経時的な在庫の高値、安値、始値、終値を示します。さらに、トレンドラインおよびオーバーレイを表示できます。ツールバーからチャート タイプを選択できます。デフォルトで、チャート タイプは に設定されています。次のコードに示すように、デフォルト設定をオーバーライドできます: +このペインは、在庫価格を表示し、経時的な在庫の高値、安値、始値、終値を示します。さらに、トレンドラインおよびオーバーレイを表示できます。ツールバーからチャート タイプを選択できます。デフォルトで、チャート タイプは `Auto` に設定されています。次のコードに示すように、デフォルト設定をオーバーライドできます: 注: 複数のデータ ソースまたはデータ ポイントが大量にあるデータ ソースを描画する場合、折れ線チャート タイプを使用してください。 ### ズーム ペイン -このペインはすべての表示されるペインのズームを制御します。このペインはデフォルトで表示されます。以下のコードのように を `none` に設定すると機能を無効にできます: +このペインはすべての表示されるペインのズームを制御します。このペインはデフォルトで表示されます。以下のコードのように `ZoomSliderType` を `none` に設定すると機能を無効にできます: -注: オプションを オプションと同じ値に設定してください。このように、ズーム スライダーは価格ペインの正しいプレビューを表示します。以下のコードはその方法を示しています。 +注: `ZoomSliderType` オプションを `FinancialChart.ChartType` オプションと同じ値に設定してください。このように、ズーム スライダーは価格ペインの正しいプレビューを表示します。以下のコードはその方法を示しています。 この例では、株価チャートは米国の収益をプロットしています。 @@ -154,4 +152,4 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## API リファレンス -
+`FinancialChart`
diff --git a/docs/xplat/src/content/jp/components/general-changelog-dv-blazor.mdx b/docs/xplat/src/content/jp/components/general-changelog-dv-blazor.mdx index 5207db45bf..f0e9e5c045 100644 --- a/docs/xplat/src/content/jp/components/general-changelog-dv-blazor.mdx +++ b/docs/xplat/src/content/jp/components/general-changelog-dv-blazor.mdx @@ -61,7 +61,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; |------------|---------|-------------| | 3817 | IgbInput およびその他の Web 入力 | ロード時にコンポーネントが登録されなかった問題を修正しました。`defineAllComponents` の登録が復元されました。 | | 3743 | IgbGrid | フィルタリング イベントの詳細ペイロードで、以前の誤った型の代わりに `FilteringExpressionsTree` を使用するようになりました。 | -| 2129 | Web 入力 | `ReportValidity` と `CheckValidity` が 、`IgbCombo`、`IgbDatePicker`、 で誤った型を返していた問題を修正しました。 | +| 2129 | Web 入力 | `ReportValidity` と `CheckValidity` が `Checkbox`、`IgbCombo`、`IgbDatePicker`、`DateRangePicker`、`Input`、`Rating`、`Select`、`Slider`、`Textarea` で誤った型を返していた問題を修正しました。 | | 2123 | Web 入力 | フォーカス オプションが正しくマーシャリングされなかった問題を修正しました。プレーン オブジェクトとして処理されるようになりました。 | | 3684 | IgbChat およびその他の Web コンポーネント | レンダラー要素を通じて渡されたときに列挙型プロパティが正しくシリアライズされなかった問題を修正しました。 | | 3777 | IgbRadialGauge、IgbLinearGauge、IgbBulletGraph | ゲージで null 参照例外が発生する可能性があった問題を修正しました。 | @@ -96,8 +96,8 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ### 新しいコンポーネント - [IgbChat](./interactivity/chat.mdx) - メッセージの表示と入力操作を行うためのチャット UI コンポーネントです。このコンポーネントはプレビュー段階であり、現在も活発に開発が進められています。一部の機能はまだ実装されておらず、API は今後のリリースで変更される可能性があります。 -- IgbSplitter - コンポーネントは、ビューを *start* と *end* の 2 つのパネルに分割し、それらをドラッグ可能なバーで区切るサイズ変更可能な分割ペイン レイアウトを提供します。 -- [IgbHighlight](./inputs/highlight.mdx) - コンポーネントは、既定のスロットに投影されたテキストを効率的に検索し、ハイライトする機能を提供します。 +- IgbSplitter - `Splitter` コンポーネントは、ビューを *start* と *end* の 2 つのパネルに分割し、それらをドラッグ可能なバーで区切るサイズ変更可能な分割ペイン レイアウトを提供します。 +- [IgbHighlight](./inputs/highlight.mdx) - `Highlight` コンポーネントは、既定のスロットに投影されたテキストを効率的に検索し、ハイライトする機能を提供します。 ### AI スキル @@ -254,7 +254,7 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と - New dot type, improved outline implementation following WCAG AA accessibility standards and theme based sizing. [#1889](https://github.com/IgniteUI/igniteui-webcomponents/pull/1889) #### ユーザー注釈 -{ProductName} では、ユーザー注釈機能により、実行時に にスライス注釈、ストリップ注釈、ポイント注釈を追加できるようになりました。これにより、エンドユーザーは、スライス注釈を使用して会社の四半期レポートなどの単一の重要イベントを強調したり、ストリップ注釈を使用して期間を持つイベントを示したりすることで、プロットに詳細を追加できます。ポイント注釈またはこれら 3 つの任意の組み合わせを使用して、プロットされたシリーズ上の個々のポイントを呼び出すこともできます。 +{ProductName} では、ユーザー注釈機能により、実行時に `XamDataChart` にスライス注釈、ストリップ注釈、ポイント注釈を追加できるようになりました。これにより、エンドユーザーは、スライス注釈を使用して会社の四半期レポートなどの単一の重要イベントを強調したり、ストリップ注釈を使用して期間を持つイベントを示したりすることで、プロットに詳細を追加できます。ポイント注釈またはこれら 3 つの任意の組み合わせを使用して、プロットされたシリーズ上の個々のポイントを呼び出すこともできます。 #### 軸注釈の衝突検出 軸注釈が自動で衝突を検出し、適切に収まるよう切り詰めます。この機能を有効にするには、次のプロパティを設定します: #### {PackageMaps} (地理マップ) @@ -280,14 +280,14 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と ### 変更 - すべてのテーマにわたってフォームに関連付けられたほとんどのコンポーネントの読み取り専用スタイルを更新し、コンポーネントが読み取り専用状態にあることをより適切に示せるようになりました。 -- - - 動作変更: のデフォルトの placement は 「bottom」 になりました。 - - 動作変更: with-arrow が設定されていない限り、 はデフォルトでは矢印インジケーターをレンダリングしません。 - - 重大な変更: イベントは、detail プロパティに anchor ターゲットを返さなくなりました。引き続き event.target.anchor でアクセスできます。 +- `Tooltip` + - 動作変更: `Tooltip` のデフォルトの placement は 「bottom」 になりました。 + - 動作変更: with-arrow が設定されていない限り、`Tooltip` はデフォルトでは矢印インジケーターをレンダリングしません。 + - 重大な変更: `Tooltip` イベントは、detail プロパティに anchor ターゲットを返さなくなりました。引き続き event.target.anchor でアクセスできます。 ### 非推奨 -- - は非推奨です。矢印インジケーターをレンダリングするには、 を使用してください。 +- `Tooltip` - `DisableArrow` は非推奨です。矢印インジケーターをレンダリングするには、`WithArrow` を使用してください。 ### バグ修正 @@ -301,27 +301,27 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と **重大な変更** -- `AzureMapsMapImagery` は に名前が変更されました。 -- に名前が変更されました。 -- 次の 列挙値は、Overlay サフィックスを含むように名前が変更されました。 - - - - - - - - - - - - - - - - - - - - - - - - +- `AzureMapsMapImagery` は `AzureMapsImagery` に名前が変更されました。 +- `AzureMapsImagery` は `AzureMapsImageryStyle.Satellite` に名前が変更されました。 +- 次の `AzureMapsImageryStyle.Satellite` 列挙値は、Overlay サフィックスを含むように名前が変更されました。 + - `AzureMapsImageryStyle.TerraOverlay` + - `AzureMapsImageryStyle.LabelsRoadOverlay` + - `AzureMapsImageryStyle.LabelsDarkGreyOverlay` + - `AzureMapsImageryStyle.HybridRoadOverlay` + - `AzureMapsImageryStyle.HybridDarkGreyOverlay` + - `AzureMapsImageryStyle.WeatherRadarOverlay` + - `AzureMapsImageryStyle.WeatherInfraredOverlay` + - `AzureMapsImageryStyle.TrafficAbsoluteOverlay` + - `AzureMapsImageryStyle.TrafficRelativeOverlay` + - `AzureMapsImageryStyle.TrafficRelativeDarkOverlay` + - `AzureMapsImageryStyle.TrafficDelayOverlay` + - `AzureMapsImageryStyle.TrafficReducedOverlay` ### {PackageCharts} (チャート) #### 新しい軸ラベル イベント -軸ラベルに対するさまざまな操作を検出できるように、次のイベントが に追加されました。 +軸ラベルに対するさまざまな操作を検出できるように、次のイベントが `XamDataChart` に追加されました。 - `LabelMouseDown` - `LabelMouseUp` @@ -334,20 +334,20 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と #### 対応軸 -X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸を簡単に複製できるようになりました。 プロパティを有効にすると、複製された軸はチャートの反対側に配置され、そこから各軸プロパティを設定できます。 +X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸を簡単に複製できるようになりました。`CategoryAngleAxis.CompanionAxisEnabled` プロパティを有効にすると、複製された軸はチャートの反対側に配置され、そこから各軸プロパティを設定できます。 -- -- +- `CategoryAngleAxis.ShouldAvoidAnnotationCollisions` +- `CategoryAngleAxis.ShouldAutoTruncateAnnotations` ### RadialPieSeries インセット アウトライン - のアウトライン レンダリング方法を制御するために プロパティが追加されました。**true** に設定すると、アウトラインがスライス形状の内側に描画され、**false** (既定値) に設定すると、アウトラインはスライス形状の端に半分内側・半分外側で描画されます。 +`RadialPieSeries` のアウトライン レンダリング方法を制御するために `UseInsetOutlines` プロパティが追加されました。**true** に設定すると、アウトラインがスライス形状の内側に描画され、**false** (既定値) に設定すると、アウトラインはスライス形状の端に半分内側・半分外側で描画されます。 ### {PackageGrids} (グリッド) #### セル サフィックス コンテンツ -セル内のサフィックス コンテンツのサポートが追加されました。これにより、セル値の末尾にテキストやアイコンを追加してスタイルを設定できるようになりました。セル サフィックス コンテンツに追加されたプロパティの完全なリストは以下に示されており、 および クラスで使用できます。 +セル内のサフィックス コンテンツのサポートが追加されました。これにより、セル値の末尾にテキストやアイコンを追加してスタイルを設定できるようになりました。セル サフィックス コンテンツに追加されたプロパティの完全なリストは以下に示されており、`DataGridColumn` および `DataGridCellEventArgs.CellInfo` クラスで使用できます。 @@ -357,18 +357,18 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 -- -- +- `DataGridColumn.SuffixText` +- `DataGridColumn.SuffixTextColor` - `SuffixTextFont` -- -- -- -- -- -- -- -- -- +- `DataGridColumn.SuffixIconName` +- `DataGridColumn.SuffixIconCollectionName` +- `DataGridColumn.SuffixIconStroke` +- `DataGridColumn.SuffixIconFill` +- `DataGridColumn.SuffixIconViewBoxLeft` +- `DataGridColumn.SuffixIconViewBoxTop` +- `DataGridColumn.SuffixIconViewBoxWidth` +- `DataGridColumn.SuffixIconViewBoxHeight` +- `DataGridColumn.TextDecoration` ```razor @@ -408,16 +408,16 @@ col.Pinned = true; - Optimized grouping operations. - **Other Improvements** - - A column's and `MaxWidth` constrain the user-specified width so that it cannot go outside their bounds. - - The property can now be set as simple strings "local" and "remote" and does not require importing the enum. + - A column's `Column.MinWidth` and `MaxWidth` constrain the user-specified width so that it cannot go outside their bounds. + - The `GridBaseDirective.PagingMode` property can now be set as simple strings "local" and "remote" and does not require importing the `GridPagingMode` enum. ### バグ修正 #### 機能拡張 -- +- `DateRangePicker` #### IgbBulletGraph -- 新しい プロパティが追加されました。 +- 新しい `XamLinearGauge.LabelsVisible` プロパティが追加されました。 #### チャート - DataToolTipLayer、ItemToolTipLayer、CategoryToolTipLayer にスタイル設定用の新しいプロパティが追加されました: `ToolTipBackground`、`ToolTipBorderBrush`、および `ToolTipBorderThickness`。 @@ -432,27 +432,27 @@ col.Pinned = true; **Breaking Changes** -- `AzureMapsMapImagery` was renamed to -- `AzureMapsImageryStyle.Imagery` was renamed to +- `AzureMapsMapImagery` was renamed to `AzureMapsImagery` +- `AzureMapsImageryStyle.Imagery` was renamed to `AzureMapsImageryStyle.Satellite` - The following `AzureMapsImageryStyle.Imagery` enum values were renamed to include the Overlay suffix: - - , - - - - - - - - - - - - - - - - - - - - - - + - `AzureMapsImageryStyle.TerraOverlay`, + - `AzureMapsImageryStyle.LabelsRoadOverlay` + - `AzureMapsImageryStyle.LabelsDarkGreyOverlay` + - `AzureMapsImageryStyle.HybridRoadOverlay` + - `AzureMapsImageryStyle.HybridDarkGreyOverlay` + - `AzureMapsImageryStyle.WeatherRadarOverlay` + - `AzureMapsImageryStyle.WeatherInfraredOverlay` + - `AzureMapsImageryStyle.TrafficAbsoluteOverlay` + - `AzureMapsImageryStyle.TrafficRelativeOverlay` + - `AzureMapsImageryStyle.TrafficRelativeDarkOverlay` + - `AzureMapsImageryStyle.TrafficDelayOverlay` + - `AzureMapsImageryStyle.TrafficReducedOverlay` ### {PackageMaps} 地理マップ #### Azure マップ画像のサポート - は、 Azure ベースのマップ画像をサポートし、開発者は複数のアプリケーション タイプにわたって詳細かつ動的なマップを表示できるようになりました。複数のマップ レイヤーを組み合わせて地理データを視覚化し、インタラクティブなマッピング エクスペリエンスを簡単に作成できます。 +`XamGeographicMap` は、 Azure ベースのマップ画像をサポートし、開発者は複数のアプリケーション タイプにわたって詳細かつ動的なマップを表示できるようになりました。複数のマップ レイヤーを組み合わせて地理データを視覚化し、インタラクティブなマッピング エクスペリエンスを簡単に作成できます。 注: Bing マップ画像のサポートは段階的に廃止されます。既存のエンタープライズ キーは引き続き Bing Maps にアクセスするために利用できるため、Azure Maps へ移行する間も現在のアプリケーションをそのまま利用可能です。 @@ -460,30 +460,30 @@ col.Pinned = true; | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|26952 | | Razor/JS の Change イベントで e.Detail が null になる問題を修正。| -|26953 | | タブを選択状態にしても、その後の操作で選択が反映されない問題を修正。| -|31910 | | 「@bind-Value」 構文で値をバインドし、クリア ボタンをクリックするとエラーが発生する問題を修正。| -|31323 | 、`IgbCombo` | データ タイプにコレクション タイプ プロパティがあり、そのコレクションの最初の要素が null の場合に NullReferenceException が発生する問題を修正。| -|38903 | | タブ内に配置されたコンポーネントでドロップダウン リストが正しい位置に表示されない問題を修正。| -|[139](https://github.com/IgniteUI/igniteui-blazor/issues/139) | , | Date Picker および Date Time Input が null 許容値をサポートしていない問題を修正。| +|26952 | `Tabs` | Razor/JS の Change イベントで e.Detail が null になる問題を修正。| +|26953 | `Tabs` | タブを選択状態にしても、その後の操作で選択が反映されない問題を修正。| +|31910 | `DatePicker` | 「@bind-Value」 構文で値をバインドし、クリア ボタンをクリックするとエラーが発生する問題を修正。| +|31323 | `XamDataChart`、`Grid`、`IgbCombo` | データ タイプにコレクション タイプ プロパティがあり、そのコレクションの最初の要素が null の場合に NullReferenceException が発生する問題を修正。| +|38903 | `Tabs` | タブ内に配置されたコンポーネントでドロップダウン リストが正しい位置に表示されない問題を修正。| +|[139](https://github.com/IgniteUI/igniteui-blazor/issues/139) | `DatePicker`, `DateTimeInput` | Date Picker および Date Time Input が null 許容値をサポートしていない問題を修正。| #### 一般 以下のコンポーネントのプロパティが null 許容になりました。 -- : -- : -- : -- : -- `DateTimePicker`: -- : -- : -- : -- : -- : +- `Button`: `Form` +- `Calendar`: `DatePicker.SpecialDates`、`DatePicker.DisabledDates` +- `Combo`: `ValueKey`、`DisplayKey`、`GroupKey` +- `DatePicker`: `Value`、`Min`、`Max` +- `DateTimePicker`: `Value`、`Min`、`Max` +- `Dropdown`: `PieChartBase.SelectedItem` +- `Input`: `Pattern`、`MinLength`、`MaxLength`、`DatePicker.Min`、`DatePicker.Max`、`Step` +- `DatePicker.Select`: `DatePicker.Value`、`PieChartBase.SelectedItem` +- `Tile`: `ColumnState.ColStart`、`RowStart` +- `TileManager`: `MinColumnWidth`、`MinRowHeight`、`Gap` **Breaking Changes** -- A fix was made due to an issue where the and properties on class were reversed. This will change the values that and return. +- A fix was made due to an issue where the `ChartMouseEventArgs.PlotAreaPosition` and `ChartMouseEventArgs.ChartPosition` properties on `ChartMouseEventArgs` class were reversed. This will change the values that `PlotAreaPosition` and `ChartPosition` return. ### **{PackageVerChanges-25-1-JULY}** @@ -491,22 +491,22 @@ col.Pinned = true; | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|36448 | | ラジアル ラベルの書式設定プロパティ (例: Title、SubTitles) が機能しない。| -|37718 | | タブ パネル内のグリッドに新しい行を追加した際に、予期しないスクロールが発生する。| -|37855 | | グリッドに HeaderTemplate が含まれており、ページが安全でない (http) プロトコルを使用してアクセスされた場合、Crypto.randomUID が見つからないというエラーがスローされる。| +|36448 | `XamRadialGauge` | ラジアル ラベルの書式設定プロパティ (例: Title、SubTitles) が機能しない。| +|37718 | `Tab` | タブ パネル内のグリッドに新しい行を追加した際に、予期しないスクロールが発生する。| +|37855 | `Grid` | グリッドに HeaderTemplate が含まれており、ページが安全でない (http) プロトコルを使用してアクセスされた場合、Crypto.randomUID が見つからないというエラーがスローされる。| -- -- +- `DataGridColumn.SuffixText` +- `DataGridColumn.SuffixTextColor` - `SuffixTextFont` -- -- -- -- -- -- -- -- -- +- `DataGridColumn.SuffixIconName` +- `DataGridColumn.SuffixIconCollectionName` +- `DataGridColumn.SuffixIconStroke` +- `DataGridColumn.SuffixIconFill` +- `DataGridColumn.SuffixIconViewBoxLeft` +- `DataGridColumn.SuffixIconViewBoxTop` +- `DataGridColumn.SuffixIconViewBoxWidth` +- `DataGridColumn.SuffixIconViewBoxHeight` +- `DataGridColumn.TextDecoration` Please note that the maximum size available for the icons is 24x24. You can provide an icon that is larger or smaller than this, but you will need to configure the viewbox settings in order to properly scale it to fit in the 24x24 space so it is fully visible. @@ -532,31 +532,31 @@ Please note that the maximum size available for the icons is 24x24. You can prov - データ注釈スライス レイヤー - データ注釈ストリップ レイヤー -- [データ ツールチップ](./charts/features/chart-data-tooltip.mdx)と[データ 凡例](./charts/features/chart-data-legend.mdx)では、ツールチップまたは凡例のコンテンツをテーブルまたは垂直レイアウト構造でレイアウトするために使用できる プロパティが公開されています。 +- [データ ツールチップ](./charts/features/chart-data-tooltip.mdx)と[データ 凡例](./charts/features/chart-data-legend.mdx)では、ツールチップまたは凡例のコンテンツをテーブルまたは垂直レイアウト構造でレイアウトするために使用できる `LayoutMode` プロパティが公開されています。 -- チャートの プロパティが更新され、新しい列挙体 `DragSelect` が含まれるようになりました。これにより、ドラッグされたプレビュー Rect は、その中に含まれるポイントを選択します。 (ベータ版) +- チャートの `SeriesViewer.DefaultInteraction` プロパティが更新され、新しい列挙体 `DragSelect` が含まれるようになりました。これにより、ドラッグされたプレビュー Rect は、その中に含まれるポイントを選択します。 (ベータ版) -- [ValueOverlay と ValueLayer](./charts/features/chart-overlays.mdx) は、上記にリストした [チャート データ注釈](./charts/features/chart-data-annotations.mdx)に加えて、プロット領域に追加の注釈テキストをオーバーレイするために使用できる プロパティを公開するようになりました。これらの注釈の外観は、OverlayText プレフィックスが付いた多くのプロパティを使用して構成できます。たとえば、`OverlayTextBrush` プロパティはオーバーレイ テキストの色を構成します。 (ベータ版) +- [ValueOverlay と ValueLayer](./charts/features/chart-overlays.mdx) は、上記にリストした [チャート データ注釈](./charts/features/chart-data-annotations.mdx)に加えて、プロット領域に追加の注釈テキストをオーバーレイするために使用できる `ValueLayer.OverlayText` プロパティを公開するようになりました。これらの注釈の外観は、OverlayText プレフィックスが付いた多くのプロパティを使用して構成できます。たとえば、`OverlayTextBrush` プロパティはオーバーレイ テキストの色を構成します。 (ベータ版) #### 一般 -- は、特定の要素のツールチップを表示する方法を提供します。使用するには、必要に応じてコンテンツを設定し、 プロパティを介してターゲット要素の ID にリンクします。 +- `Tooltip` は、特定の要素のツールチップを表示する方法を提供します。使用するには、必要に応じてコンテンツを設定し、`Anchor` プロパティを介してターゲット要素の ID にリンクします。 #### 変更内容 - いくつかの列挙は名前が変更され、他の列挙と統合されました。名前の変更 (影響を受けるコンポーネントを含む): - - () は に名前が変更されました。 - - ()、 ()、 ()、 ()、 () が統合され、 に名前が変更されました。 - - () は に名前が変更されました。 - - () と () が統合され、 に名前が変更されました。 - - () と () が統合され、 に名前が変更されました。 - - () は に名前が変更されました。 - - () は に名前変更/統合されました。 - - () は に名前が変更されました。 - - () と () が統合され、 に名前が変更されました。 - - ( および ) の名前が に変更されました。 - - () の名前が に変更されました。 -- + - `BaseAlertLikePosition` (`Snackbar` と `Toast`) は `AbsolutePosition` に名前が変更されました。 + - `ButtonGroupAlignment` (`ButtonGroup`)、`CalendarOrientation` (`Calendar`)、`CardActionsOrientation` (`CardActions`)、`DatePickerOrientation` (`DatePicker`)、`RadioGroupAlignment` (`RadioGroup`) が統合され、`ContentOrientation` に名前が変更されました。 + - `CalendarBaseSelection` (`Calendar`) は `CalendarSelection` に名前が変更されました。 + - `CarouselAnimationType` (`Carousel`) と `StepperHorizontalAnimation` (`Stepper`) が統合され、`HorizontalTransitionAnimation` に名前が変更されました。 + - `CheckboxBaseLabelPosition` (`Checkbox` と `Switch`) と `RadioLabelPosition` (`Radio`) が統合され、`ToggleLabelPosition` に名前が変更されました。 + - `DatePickerMode` (`DatePicker`) は `PickerMode` に名前が変更されました。 + - `DatePickerHeaderOrientation` (`DatePicker`) は `CalendarHeaderOrientation` に名前変更/統合されました。 + - `DropdownPlacement` (`Dropdown` と `DatePicker.Select`) は `PopoverPlacement` に名前が変更されました。 + - `DropdownScrollStrategy` (`Dropdown`) と `SelectScrollStrategy` (`DatePicker.Select`) が統合され、`PopoverScrollStrategy` に名前が変更されました。 + - `SliderBaseTickOrientation` (`Slider` および `RangeSlider`) の名前が `SliderTickOrientation` に変更されました。 + - `Slider.TickLabelRotation` (`Slider` と `RangeSlider`) の名前が `SliderTickLabelRotation` に変更されました。 +- `Tabs` ## {PackageGrids} (グリッド) @@ -565,7 +565,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov #### 機能拡張 -The now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. +The `XamGeographicMap` now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. Note: Support for Bing Maps imagery is being phased out. Existing enterprise keys can still be used to access Bing Maps, ensuring your current applications continue to function while you transition to Azure maps. @@ -586,16 +586,16 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft | Bug Number | Control | Description | |------------|---------|------------------| -|36448 | | Radial label format properties do not work. (eg. Title, SubTitles)| -|37718 | | Unexpected scrolling occurred when a new row was added to a grid that is in a tab panel| -|37855 | | Crypto.randomUID not found error is thrown if a grid contains HeaderTemplate and the page is accessed using unsecured(http) protocol| +|36448 | `XamRadialGauge` | Radial label format properties do not work. (eg. Title, SubTitles)| +|37718 | `Tab` | Unexpected scrolling occurred when a new row was added to a grid that is in a tab panel| +|37855 | `Grid` | Crypto.randomUID not found error is thrown if a grid contains HeaderTemplate and the page is accessed using unsecured(http) protocol| ### バグ修正 | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|37271 | | ParentRowData が IGridCreatedEventArgs に追加される問題。| -|37681 | | カテゴリ チャート - 十分なスペースがあるにもかかわらず、値ラベルが縦棒の上に表示されない。| +|37271 | `HierarchicalGrid` | ParentRowData が IGridCreatedEventArgs に追加される問題。| +|37681 | `XamDataChart` | カテゴリ チャート - 十分なスペースがあるにもかかわらず、値ラベルが縦棒の上に表示されない。| |37244 | Excel Library | カスタム データ検証が機能しない。| ## **{PackageVerChanges-24-2-APR}** @@ -615,16 +615,16 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft - Data Annotation Slice Layer - Data Annotation Strip Layer -- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. +- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose `LayoutMode` property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. -- The property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. +- The `SeriesViewer.DefaultInteraction` property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. -- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. +- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an `ValueLayer.OverlayText` property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. - [Trendline Layer](./charts/features/chart-trendlines.mdx) series type that allows you to apply a single trend line per trend line layer to a particular series. This allows the usage of multiple trend lines on a single series since you can have multiple [TrendlineLayer](./charts/features/chart-overlays.mdx) series types in the chart. ### List -- に新しいプロパティ を追加しました。 +- `ListItem` に新しいプロパティ `Tabs.Selected` を追加しました。 @@ -637,13 +637,13 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft - The tooltip can be further customized with `Show/HideDelay`, around the target and customizable `Show/HideTriggers` events. + The tooltip can be further customized with `Show/HideDelay`, `Tooltip.Placement` around the target and customizable `Show/HideTriggers` events. ### Accordion -- 新しいイベント および `Close` を追加しました。 +- 新しいイベント `DatePicker.Open` および `Close` を追加しました。 - Simplified configuration by removing the need to define separate panel and linking the panel and tab header. The `Panel` property and the `IgbTabPanel` itself have been removed. Content can be now assigned directly to the and header text can be set conveniently via the new property or by projecting an element to `slot="label"` for more involved customization. + Simplified configuration by removing the need to define separate panel and linking the panel and tab header. The `Panel` property and the `IgbTabPanel` itself have been removed. Content can be now assigned directly to the `Tab` and header text can be set conveniently via the new `DatePicker.Label` property or by projecting an element to `slot="label"` for more involved customization. Before: @@ -688,30 +688,30 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft ``` -- - - & are now `double` instead of `string` -- - - has been renamed to - - has been renamed to - - now defaults to `Auto` to correctly reflect the default behavior -- - - has been renamed to -- - - & are now `string` properties instead of explicit enums +- `Input` + - `DatePicker.Min` & `DatePicker.Max` are now `double` instead of `string` +- `Stepper` + - `ActiveStepChangingArgsEventArgs` has been renamed to `ActiveStepChangingEventArgs` + - `ActiveStepChangedArgsEventArgs` has been renamed to `ActiveStepChangedEventArgs` + - `StepperTitlePosition` now defaults to `Auto` to correctly reflect the default behavior +- `Tree` + - `TreeSelectionChangeEventArgs` has been renamed to `TreeSelectionEventArgs` +- `Textarea` + - `Autocapitalize` & `Input.InputMode` are now `string` properties instead of explicit enums ### {PackageGrids} - **すべてのグリッド** - - プロパティを使用して初期フィルタリングの適用が可能になりました。 + - `FilteringExpressionsTree` プロパティを使用して初期フィルタリングの適用が可能になりました。 ### バグ修正 | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|25602 | | 日付特有のフィルター演算子を含むレイアウトを読み込むと、TypeError がコンソールに出力される。| +|25602 | `Grid` | 日付特有のフィルター演算子を含むレイアウトを読み込むと、TypeError がコンソールに出力される。| |28480 | `IgbCombo` | データ ソースを置き換えた際に未定義の参照エラーが発生する。| -|32598 | | 複数選択が正しく動作しない。 -|36374 | | タッチ デバイスでフォームを送信すると、以前の値がバインドされる。| +|32598 | `Grid` | 複数選択が正しく動作しない。 +|36374 | `Input` | タッチ デバイスでフォームを送信すると、以前の値がバインドされる。| |37214|一般|Blazor の WebCallback.Register() で断続的にエラーが発生する。 ### **{PackageVerChanges-24-2-MAR}** @@ -725,23 +725,23 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|35497 | | ShowAsync と HideAsync が呼び出されると、後続のコードは実行されない。| +|35497 | `Dialog` | ShowAsync と HideAsync が呼び出されると、後続のコードは実行されない。| ### **{PackageVerChanges-24-2-FEB}** | Bug Number | Control | Description | |------------|---------|------------------| -|25997 | | Summaries are only showing for first grouped child row| -|37023 | | Tooltips are cut-off/offscreen if overflow hidden is set.| +|25997 | `Grid` | Summaries are only showing for first grouped child row| +|37023 | `XamDataChart` | Tooltips are cut-off/offscreen if overflow hidden is set.| |37244 | Excel Library | Custom Data Validation is not working| ## 機能拡張 ### Toolbar -- に新しい `GroupHeaderTextStyle` プロパティを追加しました。設定されている場合、すべての アクションに適用されます。 -- タイトル テキストの水平方向の配置を制御する という新しいプロパティを に追加しました。 -- に、パネル内の項目間の間隔を制御する という新しいプロパティを追加しました。 +- `Toolbar` と `ToolPanel` に新しい `GroupHeaderTextStyle` プロパティを追加しました。設定されている場合、すべての `ToolActionGroupHeader` アクションに適用されます。 +- タイトル テキストの水平方向の配置を制御する `SeriesViewer.TitleHorizontalAlignment` という新しいプロパティを `ToolAction` に追加しました。 +- `ToolActionSubPanel` に、パネル内の項目間の間隔を制御する `ToolPanel.ItemSpacing` という新しいプロパティを追加しました。 ## バグ修正 @@ -752,7 +752,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft ### {PackageGrids} #### **{PackageVerChanges-24-2-DEC}** -- Added new property on called +- Added new property on `ListItem` called `Tabs.Selected` #### {PackageCharts} (チャート) - [Dashboard Tile](./dashboard-tile.mdx) コンポーネントは、バインドされた ItemsSource コレクションまたは単一のポイントを分析および視覚化し、データのスキーマとカウントに基づいて適切なデータ視覚化を返すコンテナー コントロールです。このコントロールは、組み込みの [Toolbar](./menus/toolbar.mdx) コンポーネントを利用して、実行時に視覚化を変更できるようにし、最小限のコードでデータのさまざまな視覚化を表示できるようにします。 @@ -765,10 +765,10 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft | Bug Number | Control | Description | |------------|---------|------------------| -|25602 | | Loading a layout with one of the date-specific filter operators results in a TypeError console error| +|25602 | `Grid` | Loading a layout with one of the date-specific filter operators results in a TypeError console error| |28480 | `IgbCombo` | Undefined reference error is thrown when a datasource is replaced| -|32598 | | Multi-selection is not working correctly -|36374 | | A previous value was bound when a form was submitted on any touch device| +|32598 | `Grid` | Multi-selection is not working correctly +|36374 | `Input` | A previous value was bound when a form was submitted on any touch device| |37214|General|Intermittent error in Blazor's WebCallback.Register() ## 一般 @@ -781,7 +781,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft ### {PackageCharts} (チャート) -- 新しい[データ円チャート](./charts/types/data-pie-chart.mdx) - は円ャートを表示する新しいコンポーネントです。このコンポーネントは、 と同様に動作し、基になるデータ モデルのプロパティを自動的に検出しながら、ItemLegend コンポーネントを介して選択、強調表示、アニメーション、凡例のサポートを可能にします。 +- 新しい[データ円チャート](./charts/types/data-pie-chart.mdx) - `DataPieChart` は円ャートを表示する新しいコンポーネントです。このコンポーネントは、`CategoryChart` と同様に動作し、基になるデータ モデルのプロパティを自動的に検出しながら、ItemLegend コンポーネントを介して選択、強調表示、アニメーション、凡例のサポートを可能にします。 ## 一般 @@ -789,31 +789,31 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft #### **{PackageVerChanges-24-1-JUN}** -- Added new `GroupHeaderTextStyle` property to and . If set, it will apply to all actions. -- Added new property on called which controls the horizontal alignment of the title text. -- Added new property on called which controls the spacing between items inside the panel. +- Added new `GroupHeaderTextStyle` property to `Toolbar` and `ToolPanel`. If set, it will apply to all `ToolActionGroupHeader` actions. +- Added new property on `ToolAction` called `SeriesViewer.TitleHorizontalAlignment` which controls the horizontal alignment of the title text. +- Added new property on `ToolActionSubPanel` called `ToolPanel.ItemSpacing` which controls the spacing between items inside the panel. ### 一般 -- - ユーザー入力を制限することなく検証ルールを適用できるように を公開しました。 -- - プロパティは非推奨です。ドロップダウンは、ブラウザー ビューポートの最上位レイヤーにコンテナーをレンダリングするために `Popover` API を使用するようになったため、このプロパティは廃止されました。 -- - は非推奨です。分割ペイン レベルで isMaximized を true に設定しても、分割ペインはコンテナーとしてのみ機能し、最大化されて表示される実際のコンテンツがないため、実際の効果はありません。代わりに、 および/または プロパティを使用してください。 +- `Input`、`Textarea` - ユーザー入力を制限することなく検証ルールを適用できるように `Input.ValidateOnly` を公開しました。 +- `Dropdown` - `PositionStrategy` プロパティは非推奨です。ドロップダウンは、ブラウザー ビューポートの最上位レイヤーにコンテナーをレンダリングするために `Popover` API を使用するようになったため、このプロパティは廃止されました。 +- `DockManager` - `SplitPane` の `IsMaximized` は非推奨です。分割ペイン レベルで isMaximized を true に設定しても、分割ペインはコンテナーとしてのみ機能し、最大化されて表示される実際のコンテンツがないため、実際の効果はありません。代わりに、`TabGroupPane` および/または `ContentPane` の `SplitPane.IsMaximized` プロパティを使用してください。 | Bug Number | Control | Description | |------------|---------|------------------| |29998 | `IgbCombo` | The Change event callback was fired multiple times in .NET 8| -|30286 | | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| -|34776 | | Repeatedly showing and hiding the IgbDataChart causes memory leakage in JS Heap| -|32906 | | IgbDataChart is showing two xAxis on the top| -|33605 | | ScatterLineSeries is not showing the color of the line correctly in the legend| -|35498 | | Tooltips for the series specified in IncludedSeries are not displayed| -|31344 | | Two way binding for the SelectedRows doesn't work| -|34149 | | Repeatedly showing and hiding the IgbGrid causes memory leakage in JS Heap| -|34224 | | 'There are multiple .NET runtimes present' error is thrown when the app changes from Server mode to WebAssembly mode if 'InteractiveAuto' is used for the render mode| -|34654 | | NullReferenceException is thrown if a data contains an empty list| -|35439 | | CPU usage and Memory consumption are abnormally high when the app is opened in multiple tabs| -|36024 | | The JS heap size never reduced when moving back and forth between two pages with IgbGrid component| -|34053 | | The position of the scale label is shifted| +|30286 | `XamDataChart` | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| +|34776 | `XamDataChart` | Repeatedly showing and hiding the IgbDataChart causes memory leakage in JS Heap| +|32906 | `XamDataChart` | IgbDataChart is showing two xAxis on the top| +|33605 | `XamDataChart` | ScatterLineSeries is not showing the color of the line correctly in the legend| +|35498 | `XamDataChart` | Tooltips for the series specified in IncludedSeries are not displayed| +|31344 | `Grid` | Two way binding for the SelectedRows doesn't work| +|34149 | `Grid` | Repeatedly showing and hiding the IgbGrid causes memory leakage in JS Heap| +|34224 | `Grid` | 'There are multiple .NET runtimes present' error is thrown when the app changes from Server mode to WebAssembly mode if 'InteractiveAuto' is used for the render mode| +|34654 | `Grid` | NullReferenceException is thrown if a data contains an empty list| +|35439 | `Grid` | CPU usage and Memory consumption are abnormally high when the app is opened in multiple tabs| +|36024 | `Grid` | The JS heap size never reduced when moving back and forth between two pages with IgbGrid component| +|34053 | `XamRadialGauge` | The position of the scale label is shifted| |36176 | Excel Library | Exception occurs when loading an Excel workbook that has a LET function| |36379 | Excel Library | Colors with any alpha channel in an excel workbook fail to load| |26218 | Excel Library | Chart's plot area right margin becomes narrower and fill pattern and fill foreground are gone just by loading an Excel file| @@ -827,7 +827,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft ### {PackageCharts} (チャート) -- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。 プロパティは、各シリーズのグループ化を切り替え、オプトインすると プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 +- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。`GroupRowVisible` プロパティは、各シリーズのグループ化を切り替え、オプトインすると `CrosshairLayer.DataLegendGroup` プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 ## {PackageGauges} (ゲージ) @@ -837,53 +837,53 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft ### {PackageCharts} (チャート) - プロパティによる新しいデータ フィルタリング。フィルター式を適用して、チャート データをレコードのサブセットにフィルターします。大規模なデータのドリルダウンに使用できます。 +`XYChart.InitialFilter` プロパティによる新しいデータ フィルタリング。フィルター式を適用して、チャート データをレコードのサブセットにフィルターします。大規模なデータのドリルダウンに使用できます。 -- - - が 'Overlay' 設定に適用されたとき、パフォーマンス バーには値と新しい の差が反映されるようになりました。ハイライト値には、フィルタリング/サブセットの測定パーセンテージが塗りつぶされた色で表示され、残りのバーの外観は割り当てられた値に対して薄く表示され、リアルタイムでパフォーマンスを示します。 -- - - 新しいハイライト針が追加されました。 の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 -- - - 新しいハイライト針が追加されました。 の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 +- `XamBulletGraph` + - `XamRadialGauge.HighlightValueDisplayMode` が 'Overlay' 設定に適用されたとき、パフォーマンス バーには値と新しい `XamRadialGauge.HighlightValue` の差が反映されるようになりました。ハイライト値には、フィルタリング/サブセットの測定パーセンテージが塗りつぶされた色で表示され、残りのバーの外観は割り当てられた値に対して薄く表示され、リアルタイムでパフォーマンスを示します。 +- `XamLinearGauge` + - 新しいハイライト針が追加されました。`XamRadialGauge.HighlightValue` と `XamRadialGauge.HighlightValueDisplayMode` の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 +- `XamRadialGauge` + - 新しいハイライト針が追加されました。`HighlightValue` と `HighlightValueDisplayMode` の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 - With the release of version 2024.2 and per the [Microsoft .NET lifecycle](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core), we no longer support .NET 3.1, .NET 5, or .NET 7. ## **{PackageVerChanges-23-2-APR}** ### **{PackageVerChanges-23-2-MAR}** - New [Carousel](./layouts/carousel.mdx) component. -- - - Changed `change` event argument type from to +- `Input` + - Changed `change` event argument type from `ComponentDataValueChangedEventArgs` to `ComponentValueChangedEventArgs` ## 新しいコンポーネント ### 新機能 -- - - 新しい プロパティ。有効にすると、ドッキング インジケーターは表示されなくなり、エンド ユーザーは、ドラッグしたペインをターゲット ペインの端に近づけてドラッグすることでドッキングできます。 - - 新しい プロパティ。フローティング ペインを Dock Manager の境界内に保持するかどうかを決定します。デフォルトは **false** です。 - - 新しい プロパティ。ペインのヘッダーをホバー時にのみ表示するか、常に表示するかを決定します。デフォルトは `always` です。 -- - - ノードをクリックすると展開状態が変更されるかどうかを決定する プロパティが追加されました。デフォルトは **false** です。 -- - - が追加されました。有効にすると、同じ値を選択するとコンポーネントがリセットされます。**動作の変更** - 以前のリリースでは、これが Rating コンポーネントのデフォルトの動作でした。アプリケーションでこの動作を維持する必要がある場合は、必ず を設定してください。 -- +- `DockManager` + - 新しい `ProximityDock` プロパティ。有効にすると、ドッキング インジケーターは表示されなくなり、エンド ユーザーは、ドラッグしたペインをターゲット ペインの端に近づけてドラッグすることでドッキングできます。 + - 新しい `ContainedInBoundaries` プロパティ。フローティング ペインを Dock Manager の境界内に保持するかどうかを決定します。デフォルトは **false** です。 + - 新しい `ShowPaneHeaders` プロパティ。ペインのヘッダーをホバー時にのみ表示するか、常に表示するかを決定します。デフォルトは `always` です。 +- `Tree` + - ノードをクリックすると展開状態が変更されるかどうかを決定する `ToggleNodeOnClick` プロパティが追加されました。デフォルトは **false** です。 +- `Rating` + - `AllowReset` が追加されました。有効にすると、同じ値を選択するとコンポーネントがリセットされます。**動作の変更** - 以前のリリースでは、これが Rating コンポーネントのデフォルトの動作でした。アプリケーションでこの動作を維持する必要がある場合は、必ず `AllowReset` を設定してください。 +- `DatePicker.Select`、`Dropdown` - `selectedItem`、`items`、および `groups` ゲッターが公開されました。 -- - - 新しいタイトル/サブタイトルのプロパティ。 はゲージの下部近くに表示されます。さらに、`TitleFontSize`、`TitleFontFamily`、`TitleFontStyle`、`TitleFontWeight`、 など、さまざまなタイトルとサブタイトルのフォント プロパティが追加されました。最後に、新しい により、値を針の位置に対応させることができます。 - - の新しい プロパティと プロパティ。この新機能は、ゲージのラベル、タイトル、サブタイトルが 100% のオプティカル スケーリングを持つサイズを管理します。この新機能の詳細については、[こちら](./radial-gauge.mdx#オプティカル-スケーリング)を参照してください。 - - 新しいハイライト針が追加されました。 の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 +- `XamRadialGauge` + - 新しいタイトル/サブタイトルのプロパティ。`TitleText`、`SubtitleText` はゲージの下部近くに表示されます。さらに、`TitleFontSize`、`TitleFontFamily`、`TitleFontStyle`、`TitleFontWeight`、`TitleExtent` など、さまざまなタイトルとサブタイトルのフォント プロパティが追加されました。最後に、新しい `TitleDisplaysValue` により、値を針の位置に対応させることができます。 + - `XamRadialGauge` の新しい `OpticalScalingEnabled` プロパティと `OpticalScalingSize` プロパティ。この新機能は、ゲージのラベル、タイトル、サブタイトルが 100% のオプティカル スケーリングを持つサイズを管理します。この新機能の詳細については、[こちら](./radial-gauge.mdx#オプティカル-スケーリング)を参照してください。 + - 新しいハイライト針が追加されました。`HighlightValue` と `HighlightValueDisplayMode` の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 - `RadialChart` - 新しいラベル モード - - 新しいタイトル/サブタイトルのプロパティ。 はゲージの下部近くに表示されます。さらに、`TitleFontSize`、`TitleFontFamily`、`TitleFontStyle`、`TitleFontWeight`、 など、さまざまなタイトルとサブタイトルのフォント プロパティが追加されました。最後に、新しい により、値を針の位置に対応させることができます。 - - の新しい プロパティと プロパティ。この新機能は、ゲージのラベル、タイトル、サブタイトルが 100% のオプティカル スケーリングを持つサイズを管理します。この新機能の詳細については、[このトピック](./radial-gauge.mdx#オプティカル-スケーリング)を参照してください。 - - 新しいハイライト針が追加されました。 の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 + - 新しいタイトル/サブタイトルのプロパティ。`TitleText`、`SubtitleText` はゲージの下部近くに表示されます。さらに、`TitleFontSize`、`TitleFontFamily`、`TitleFontStyle`、`TitleFontWeight`、`TitleExtent` など、さまざまなタイトルとサブタイトルのフォント プロパティが追加されました。最後に、新しい `TitleDisplaysValue` により、値を針の位置に対応させることができます。 + - `XamRadialGauge` の新しい `OpticalScalingEnabled` プロパティと `OpticalScalingSize` プロパティ。この新機能は、ゲージのラベル、タイトル、サブタイトルが 100% のオプティカル スケーリングを持つサイズを管理します。この新機能の詳細については、[このトピック](./radial-gauge.mdx#オプティカル-スケーリング)を参照してください。 + - 新しいハイライト針が追加されました。`HighlightValue` と `HighlightValueDisplayMode` の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 - `RadialChart` - 新しいラベル モード - は、ラベルの位置をさらに構成できる プロパティを公開するようになりました。これにより、`Center` 列挙型を選択してデフォルト モードを切り替えることも、ラベルを円形のプロット領域に近づける新しいモード `ClosestPoint` を使用することもできます。 + `CategoryAngleAxis` は、ラベルの位置をさらに構成できる `LabelMode` プロパティを公開するようになりました。これにより、`Center` 列挙型を選択してデフォルト モードを切り替えることも、ラベルを円形のプロット領域に近づける新しいモード `ClosestPoint` を使用することもできます。 -- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. +- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. -- +- `Toolbar` - New ToolActionCheckboxList A new CheckboxList ToolAction that displays a collection of items with checkboxes for selecting. A grid inside ToolAction CheckboxList grows in height up to 5 items, then a scrollbar is displayed. @@ -898,43 +898,43 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft ### 一般 -- - - に名前が変更されました。 -- - - に名前が変更されました。 - - に名前が変更されました。 +- `Input`、`MaskInput`、`DateTimeInput`、`Rating` + - `ReadOnly` は `DatePicker.ReadOnly` に名前が変更されました。 +- `Input` + - `MaxLength` は `MaxLength` に名前が変更されました。 + - `MinLength` は `MinLength` に名前が変更されました。 **Breaking Changes** - Renamed old **IgbDatePicker** to **IgbXDatePicker**. -- Removed component. Use native form instead. +- Removed `Form` component. Use native form instead. - Removed `size` property in favor of the `--ig-size` CSS custom property for the following components: - - , ,, , , , , , , , , , -- , , , - - Renamed property type to . -- - - Renamed property type to . -- , - - Changed event argument type from to . -- - - The `IgbCombo` is now of generic type and the type is now of type `T[]`. This means that either you need to specify `T` or it will be inferred by the assigned type. - - Removed , , properties. + - `Avatar`, `Button`,`IconButton`, `Calendar`, `Chip`, `Dropdown`, `Icon`, `Input`, `List`, `Rating`, `Snackbar`, `Tabs`, `Tree` +- `Badge`, `Chip`, `LinearProgress`, `CircularProgress` + - Renamed `Button.Variant` property type to `StyleVariant`. +- `Calendar` + - Renamed `FieldPipeArgs.WeekStart` property type to `WeekDays`. +- `Checkbox`, `Switch` + - Changed `Change` event argument type from `ComponentBoolValueChangedEventArgs` to `CheckboxChangeEventArgs`. +- `Combo` + - The `IgbCombo` is now of generic type and the `DatePicker.Value` type is now of type `T[]`. This means that either you need to specify `T` or it will be inferred by the assigned `DatePicker.Value` type. + - Removed `PositionStrategy`, `Flip`, `SameWidth` properties. - **IgbSelectComponent** - - Removed , , properties. -- - - Removed `MaxValue` and `MinValue` properties. Use and instead. -- - - Removed property. -- - - Removed old named and properties. Use and . - - Removed old named and properties. Use and . - - Changed type also to `string`. -- - - Changed event argument type from to . -- - - Removed `AriaThumbLower` and `AriaThumbUpper` properties. Use and instead. -- - - Renamed property to . + - Removed `PositionStrategy`, `Flip`, `SameWidth` properties. +- `DateTimeInput` + - Removed `MaxValue` and `MinValue` properties. Use `DatePicker.Max` and `DatePicker.Min` instead. +- `Dropdown` + - Removed `PositionStrategy` property. +- `Input` + - Removed old named `MaxLength` and `MinLength` properties. Use `MaxLength` and `MinLength`. + - Removed old named `Rating.ReadOnly` and `InputMode` properties. Use `DatePicker.ReadOnly` and `InputMode`. + - Changed `InputMode` type also to `string`. +- `Radio` + - Changed event argument type from `ComponentBoolValueChangedEventArgs` to `RadioChangeEventArgs`. +- `RangeSlider` + - Removed `AriaThumbLower` and `AriaThumbUpper` properties. Use `ThumbLabelLower` and `ThumbLabelUpper` instead. +- `Rating` + - Renamed `ReadOnly` property to `DatePicker.ReadOnly`. ### 非推奨 @@ -949,34 +949,34 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft ## 削除済 ### **{PackageVerChanges-23-2-JAN}** -- , - exposed to enable validation rules being enforced without restricting user input. -- - property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. -- - is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the property of and/or instead. +- `Input`, `Textarea` - exposed `Input.ValidateOnly` to enable validation rules being enforced without restricting user input. +- `Dropdown` - `PositionStrategy` property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. +- `DockManager` - `SplitPane` `IsMaximized` is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the `IsMaximized` property of `TabGroupPane` and/or `ContentPane` instead. ### .NET 8.0 のサポート - 2023.2 リリースでは .NET 8 がサポートされます。.NET 8 の詳細については、[Microsoft サイト](https://learn.microsoft.com/ja-jp/dotnet/core/whats-new/dotnet-8)をご確認ください。 -The type of Values from option is now array of IgbPivotValue - `IgbPivotValue[]`, it was `IgbPivotValueCollection` previously. +The type of Values from `PivotConfiguration` option is now array of IgbPivotValue - `IgbPivotValue[]`, it was `IgbPivotValueCollection` previously. ### {PackageCharts} (チャート) -- [チャートのハイライト表示フィルター](./charts/features/chart-highlight-filter.mdx) - は、データのサブセットの内外でハイライト表示およびアニメーション化する方法を公開するようになりました。このハイライト表示の表示はシリーズのタイプによって異なります。列およびエリア シリーズの場合、サブセットはデータの合計セットの上に表示され、サブセットはシリーズの実際のブラシによって色付けされ、合計セットは不透明度を下げます。折れ線シリーズの場合、サブセットは点線で表示されます。 +- [チャートのハイライト表示フィルター](./charts/features/chart-highlight-filter.mdx) - `CategoryChart` と `XamDataChart` は、データのサブセットの内外でハイライト表示およびアニメーション化する方法を公開するようになりました。このハイライト表示の表示はシリーズのタイプによって異なります。列およびエリア シリーズの場合、サブセットはデータの合計セットの上に表示され、サブセットはシリーズの実際のブラシによって色付けされ、合計セットは不透明度を下げます。折れ線シリーズの場合、サブセットは点線で表示されます。 -- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for and . Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. +- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for `CategoryChart` and `XamDataChart`. Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and `SeriesViewer.SelectedSeriesItems` are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. -- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. +- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. -- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the property. +- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a `SeriesViewer.HighlightingMode` property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the `SeriesViewer.HighlightingTransitionDuration` property. -- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new . Can be toggled via and styled via . +- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new `XYChart.HighlightedItemsSource`. Can be toggled via `SeriesViewer.HighlightedValuesDisplayMode` and styled via `FillBrushes`. -- - New option for ToolAction for outlining a border around specific tools of choice. +- `Toolbar` - New `ToolActionGroupHeader.IsHighlighted` option for ToolAction for outlining a border around specific tools of choice. ### **{PackageVerChanges-23-2}** -- - - New label for the highlight needle. and and many other styling related properties for the HighlightLabel were added. +- `XamRadialGauge` + - New label for the highlight needle. `HighlightLabelText` and `HighlightLabelSnapsToNeedlePivot` and many other styling related properties for the HighlightLabel were added. ## {PackageGrids} - Toolbar - @@ -985,12 +985,12 @@ The type of Values from option is now arra - 新規機能: - [状態保持](./grids/_shared/state-persistence.mdx) -- - - The Performance bar will now reflect a difference between the value and new when the is applied to the 'Overlay' setting. The highlight value will show a filtered/subset measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. -- - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. -- - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamBulletGraph` + - The Performance bar will now reflect a difference between the value and new `XamRadialGauge.HighlightValue` when the `XamRadialGauge.HighlightValueDisplayMode` is applied to the 'Overlay' setting. The highlight value will show a filtered/subset measured percentage as a filled in color while the remaining bar's appearance will appear faded to the assigned value, illustrating the performance in real-time. +- `XamLinearGauge` + - New highlight needle was added. `XamRadialGauge.HighlightValue` and `XamRadialGauge.HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamRadialGauge` + - New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. ## **{PackageVerChanges-23-1}** @@ -1000,27 +1000,27 @@ The type of Values from option is now arra ### {PackageCharts} (チャート) -- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - という名前の新しいシリーズ タイプが公開されました。これにより、Maximum、Minimum、Average など、プロットされたデータのさまざまな焦点のオーバーレイを描画できます。これは、新しい コレクションに追加することで、 に適用されます。 +- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - `ValueLayer` という名前の新しいシリーズ タイプが公開されました。これにより、Maximum、Minimum、Average など、プロットされたデータのさまざまな焦点のオーバーレイを描画できます。これは、新しい `XYChart.ValueLines` コレクションに追加することで、`CategoryChart` と `FinancialChart` に適用されます。 ### **{PackageVerChanges-22-2.65}** -- - - New property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. - - New property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. - - New property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. -- - - Added property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. -- - - added. When enabled selecting the same value will reset the component. **Behavioral change** - In previous releases this was the default behavior of the rating component. Make sure to set if you need to keep this behavior in your application. -- , +- `DockManager` + - New `ProximityDock` property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. + - New `ContainedInBoundaries` property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. + - New `ShowPaneHeaders` property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. +- `Tree` + - Added `ToggleNodeOnClick` property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. +- `Rating` + - `AllowReset` added. When enabled selecting the same value will reset the component. **Behavioral change** - In previous releases this was the default behavior of the rating component. Make sure to set `AllowReset` if you need to keep this behavior in your application. +- `DatePicker.Select`, `Dropdown` - exposed `selectedItem`, `items` and `groups` getters -- - - New title/subtitle properties. , will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and . Finally, the new will allow the value to correspond with the needle's position. - - New and properties for the . This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) - - New highlight needle was added. and when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. +- `XamRadialGauge` + - New title/subtitle properties. `TitleText`, `SubtitleText` will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and `TitleExtent`. Finally, the new `TitleDisplaysValue` will allow the value to correspond with the needle's position. + - New `OpticalScalingEnabled` and `OpticalScalingSize` properties for the `XamRadialGauge`. This new feature will manage the size at which labels, titles, and subtitles of the gauge have 100% optical scaling. You can read more about this new feature in this [topic](./radial-gauge.mdx#optical-scaling) + - New highlight needle was added. `HighlightValue` and `HighlightValueDisplayMode` when both are provided a value and 'Overlay' setting, this will make the main needle to appear faded and a new needle will appear. - `RadialChart` - New Label Mode - The for the now exposes a property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. + The `CategoryAngleAxis` for the now exposes a `LabelMode` property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. ### 新しいコンポーネント @@ -1033,7 +1033,7 @@ The type of Values from option is now arra ### {PackageGrids} (データ グリッド) -- 新しい引数 から に導入されました。これは、`RowAdded` および `RowDeleted` イベントによって発行されるイベント引数の一部です。グリッドに主キー属性が追加されている場合、発行された primaryKey イベント引数は行 ID を表し、それ以外の場合はデフォルトで null 値になります。 +- 新しい引数 `PrimaryKey` が `ActiveStepChangingEventArgs.Detail` から `RowDataEventArgs` に導入されました。これは、`RowAdded` および `RowDeleted` イベントによって発行されるイベント引数の一部です。グリッドに主キー属性が追加されている場合、発行された primaryKey イベント引数は行 ID を表し、それ以外の場合はデフォルトで null 値になります。 - `RowSelectionChanging` イベント引数が変更されました。現在、グリッドが primaryKey を設定した場合、`OldSelection`、`NewSelection`、`Added` および `Removed` コレクションは、選択された要素の行キーで構成されなくなりましたが、いずれにしても行データが出力されるようになりました。 - グリッドがリモート データを操作していて、主キーが設定されている場合、現在グリッド ビューに含まれていない選択された行に対して、部分的な行データ オブジェクトが発行されます。 - 選択された行がグリッド コンポーネントから削除されると、`RowSelectionChanging` イベントは発生しなくなります。 @@ -1044,11 +1044,11 @@ The type of Values from option is now arra ### {PackageInputs} (入力) -- 、StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) は、DateTimeInputDatePart ではなく DatePart に切り詰められるようになりました。 -- および は、無効な状態のスタイルとともにコンポーネントの検証が追加されました。 +- `DateTimeInput`、StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) は、DateTimeInputDatePart ではなく DatePart に切り詰められるようになりました。 +- `Radio` および `RadioGroup` は、無効な状態のスタイルとともにコンポーネントの検証が追加されました。 - `IgbMask` は、マスク パターン リテラルをエスケープする機能が追加されました。 -- は、バッジの形状を制御する プロパティを追加し、 または `Rounded` のいずれかになります。デフォルトでは、バッジの形状は rounded です。 -- 、`RoundShape` プロパティは廃止され、将来のバージョンで削除される予定です。ユーザーは、新しく追加された 属性によってアバターの形状を制御できます。これは、、`Rounded`、または にすることができます。アバターのデフォルトの形状は です。 +- `Badge` は、バッジの形状を制御する `Avatar.Shape` プロパティを追加し、`Square` または `Rounded` のいずれかになります。デフォルトでは、バッジの形状は rounded です。 +- `Avatar`、`RoundShape` プロパティは廃止され、将来のバージョンで削除される予定です。ユーザーは、新しく追加された `Shape` 属性によってアバターの形状を制御できます。これは、`Square`、`Rounded`、または `Circle` にすることができます。アバターのデフォルトの形状は `Square`です。 ### {PackageDockManager} (DockManager) @@ -1074,30 +1074,30 @@ The type of Values from option is now arra ### {PackageGrids} (データ グリッド) -- **{IgPrefix}Column** を に変更しました。 -- **GridCellEventArgs** を に変更しました。 -- **GridSelectionMode** を に変更しました。 -- **SummaryOperand** を に変更しました。 +- **{IgPrefix}Column** を `DataGridColumn` に変更しました。 +- **GridCellEventArgs** を `DataGridCellEventArgs` に変更しました。 +- **GridSelectionMode** を `DataGridSelectionMode` に変更しました。 +- **SummaryOperand** を `DataSourceSummaryOperand` に変更しました。 -- It is now possible to apply a **dash array** to the different parts of the series of the . You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. +- It is now possible to apply a **dash array** to the different parts of the series of the `XamDataChart`. You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. ## **{PackageVerChanges-22-1}** ### {PackageCharts} (チャート) -- 高度に構成可能な [DataLegend](./charts/features/chart-data-legend.mdx) コンポーネントが追加されました。これは、 とよく似たコンポーネントですが、シリーズの値を表示し、シリーズの行と値の列をフィルタリングし、値のスタイルとフォーマットを行うための多くの構成プロパティを提供します。 +- 高度に構成可能な [DataLegend](./charts/features/chart-data-legend.mdx) コンポーネントが追加されました。これは、`SeriesViewer.Legend` とよく似たコンポーネントですが、シリーズの値を表示し、シリーズの行と値の列をフィルタリングし、値のスタイルとフォーマットを行うための多くの構成プロパティを提供します。 - 高度に構成可能な [DataToolTip](./charts/features/chart-data-tooltip.mdx) が追加されました。これは、シリーズの値とタイトル、およびシリーズの凡例バッジをツールチップに表示します。これは、すべてのチャート タイプのデフォルトのツールチップになりました。 -- 積層シリーズのアニメーションとトランジションインのサポートが追加されました。 プロパティを true に設定すると、アニメーションを有効にできます。そこから、 プロパティを設定してアニメーションが完了するまでの時間を決定し、 でアニメーションのタイプを決定できます。 -- 追加された `AssigningCategoryStyle` イベントは、 のすべてのシリーズで利用できるようになりました。このイベントは、背景色の やハイライト表示など、シリーズ項目の外観を条件付きで構成する場合に処理されます。 -- CalloutLayer の新しい 列挙体。チャート内のどこにコールアウトを配置するかを制限するために使用されます。デフォルトでは、コールアウトは最適な場所に配置されますが、これは `TopLeft`、`TopRight`、`BottomLeft`、または `BottomRight` を強制するために使用されます。 +- 積層シリーズのアニメーションとトランジションインのサポートが追加されました。`IsTransitionInEnabled` プロパティを true に設定すると、アニメーションを有効にできます。そこから、`TransitionInDuration` プロパティを設定してアニメーションが完了するまでの時間を決定し、`TransitionInMode` でアニメーションのタイプを決定できます。 +- 追加された `AssigningCategoryStyle` イベントは、`XamDataChart` のすべてのシリーズで利用できるようになりました。このイベントは、背景色の `CrosshairLayer.Fill` やハイライト表示など、シリーズ項目の外観を条件付きで構成する場合に処理されます。 +- CalloutLayer の新しい `AllowedPositions` 列挙体。チャート内のどこにコールアウトを配置するかを制限するために使用されます。デフォルトでは、コールアウトは最適な場所に配置されますが、これは `TopLeft`、`TopRight`、`BottomLeft`、または `BottomRight` を強制するために使用されます。 - 注釈レイヤーに追加された新しいコーナー半径プロパティ。各コールアウトのコーナーを丸めるために使用されます。コーナー半径がデフォルトで追加されていることに注意してください。 - - CalloutLayer の - - FinalValueLayer の - - CrosshairLayer の -- さまざまな方法でスクロールバーを有効にするための新しい および 列挙体。 または と組み合わせると、チャートをナビゲートするための軸に沿ったスクロールバーを、常設またはフェードインおよびフェードアウトすることができます。 -- 新しい は、軸がスケールの最後にラベルを表示することを優先するかどうかを決定します。数値軸 (、`PercentChangeAxis` など) とのみ互換性があります。 -- 新しい は、軸に要求された軸範囲にスプライン形状を含めるかどうかを決定します。 -- 新しい は、 を使用するときにプロットされたシリーズの最大許容値を決定します。ギャップは、プロットされたシリーズの列またはバー間のスペースの量を決定します。 -- 新しい は、 を使用するときに、プロットされたシリーズの最小許容ピクセルベース値を決定し、各カテゴリ間に常にある程度の間隔があることを保証します。 + - CalloutLayer の `CalloutCornerRadius` + - FinalValueLayer の `AxisAnnotationBackgroundCornerRadius` + - CrosshairLayer の `CrosshairLayer.XAxisAnnotationBackgroundCornerRadius` と `CrosshairLayer.YAxisAnnotationBackgroundCornerRadius` +- さまざまな方法でスクロールバーを有効にするための新しい `SeriesViewer.HorizontalViewScrollbarMode` および `SeriesViewer.VerticalViewScrollbarMode` 列挙体。`XYChart.IsVerticalZoomEnabled` または `XYChart.IsHorizontalZoomEnabled` と組み合わせると、チャートをナビゲートするための軸に沿ったスクロールバーを、常設またはフェードインおよびフェードアウトすることができます。 +- 新しい `NumericXAxis.FavorLabellingScaleEnd` は、軸がスケールの最後にラベルを表示することを優先するかどうかを決定します。数値軸 (`NumericXAxis`、`NumericYAxis`、`PercentChangeAxis` など) とのみ互換性があります。 +- 新しい `IsSplineShapePartOfRange` は、軸に要求された軸範囲にスプライン形状を含めるかどうかを決定します。 +- 新しい `XAxisMaximumGap` は、`XAxisGap` を使用するときにプロットされたシリーズの最大許容値を決定します。ギャップは、プロットされたシリーズの列またはバー間のスペースの量を決定します。 +- 新しい `XAxisMinimumGapSize` は、`XAxisGap` を使用するときに、プロットされたシリーズの最小許容ピクセルベース値を決定し、各カテゴリ間に常にある程度の間隔があることを保証します。 ### {PackageGrids} (データ グリッド) @@ -1125,7 +1125,7 @@ The type of Values from option is now arra ### {PackageGrids} (データ グリッド) -- プロパティを string[] 型から string に変更しました。 +- `ComboEditor.ValueField` プロパティを string[] 型から string に変更しました。 ## {PackageInputs} (入力) @@ -1159,7 +1159,7 @@ The type of Values from option is now arra - Responsive layouts for horizontal label rotation based on browser / screen size. - Enhanced rendering for rounded labels on all platforms. - Added marker properties to StackedFragmentSeries. -- Added property. +- Added `SeriesViewer.ShouldPanOnMaximumZoom` property. - New Category Axis Properties: - ZoomMaximumCategoryRange - ZoomMaximumItemSpan @@ -1180,7 +1180,7 @@ The type of Values from option is now arra - GroupSortDescriptions -[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using | . These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. +[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using `XYChart.IncludedProperties` | `XYChart.ExcludedProperties`. These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. ### チャートとマップの改善 @@ -1190,20 +1190,20 @@ The type of Values from option is now arra ### **{PackageVerChanges-21-1}** -- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the , but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. +- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the `SeriesViewer.Legend`, but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. - Added the highly-configurable [DataToolTip](./charts/features/chart-data-tooltip.mdx) which displays values and titles of series as well as legend badges of series in a tooltip. This is now the default tooltip for all chart types. -- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the property to true. From there, you can set the property to determine how long your animation should take to complete and the to determine the type of animation that takes place. -- Added `AssigningCategoryStyle` event, is now available to all series in . This event is handled when you want to conditionally configure aspects of the series items such as background-color and highlighting. -- New enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. +- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the `IsTransitionInEnabled` property to true. From there, you can set the `TransitionInDuration` property to determine how long your animation should take to complete and the `TransitionInMode` to determine the type of animation that takes place. +- Added `AssigningCategoryStyle` event, is now available to all series in `XamDataChart`. This event is handled when you want to conditionally configure aspects of the series items such as `CrosshairLayer.Fill` background-color and highlighting. +- New `AllowedPositions` enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. - New corner radius properties added for Annotation Layers; used to round-out the corners of each of the callouts. Note, a corner radius has now been added by default. - - for CalloutLayer - - for FinalValueLayer - - and for CrosshairLayer -- New and enumeration to enable scrollbars in various ways. When paired with or , you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. -- New , determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. , , `PercentChangeAxis`). -- New determines whether to include the spline shape in the axis range requested of the axis. -- New , determines the maximum allowed value for the plotted series when using . The gap determines the amount of space between columns or bars of plotted series. -- New , determines the minimum allowed pixel-based value for the plotted series when using to ensure there is always some spacing between each category. + - `CalloutCornerRadius` for CalloutLayer + - `AxisAnnotationBackgroundCornerRadius` for FinalValueLayer + - `CrosshairLayer.XAxisAnnotationBackgroundCornerRadius` and `CrosshairLayer.YAxisAnnotationBackgroundCornerRadius` for CrosshairLayer +- New `SeriesViewer.HorizontalViewScrollbarMode` and `SeriesViewer.VerticalViewScrollbarMode` enumeration to enable scrollbars in various ways. When paired with `XYChart.IsVerticalZoomEnabled` or `XYChart.IsHorizontalZoomEnabled`, you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. +- New `NumericXAxis.FavorLabellingScaleEnd`, determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. `NumericXAxis`, `NumericYAxis`, `PercentChangeAxis`). +- New `IsSplineShapePartOfRange` determines whether to include the spline shape in the axis range requested of the axis. +- New `XAxisMaximumGap`, determines the maximum allowed value for the plotted series when using `XAxisGap`. The gap determines the amount of space between columns or bars of plotted series. +- New `XAxisMinimumGapSize`, determines the minimum allowed pixel-based value for the plotted series when using `XAxisGap` to ensure there is always some spacing between each category. ### 新しいビジュアル デザイン @@ -1211,12 +1211,12 @@ Added New Feature - [Row Paging](./grids/_shared/paging.mdx) which is used to sp ### チャートとマップ -このリリースでは、すべてのチャート コンポーネントに、いくつかの新しく改善されたビジュアル デザインと構成オプションが導入されています。例えば、、および 。 +このリリースでは、すべてのチャート コンポーネントに、いくつかの新しく改善されたビジュアル デザインと構成オプションが導入されています。例えば、`XamDataChart`、`CategoryChart`、および `FinancialChart`。 ### チャート凡例 -- バブル、ドーナツ、および円チャートで使用できる水平方向の プロパティを ItemLegend に追加しました。 -- プロパティの追加 - 凡例項目にホバーした時にシリーズのハイライト表示を有効にします。 +- バブル、ドーナツ、および円チャートで使用できる水平方向の `Toolbar.Orientation` プロパティを ItemLegend に追加しました。 +- `SeriesViewer.LegendHighlightingMode` プロパティの追加 - 凡例項目にホバーした時にシリーズのハイライト表示を有効にします。 ## 地理マップ @@ -1227,31 +1227,31 @@ Added New Feature - [Row Paging](./grids/_shared/paging.mdx) which is used to sp ### {PackageGrids} (データ グリッド) - `EditOnKeyPress`、(別名: Excel スタイルの編集) を追加し、入力するとすぐに編集を開始します。 -- プロパティを追加しました - デフォルトでは、編集モードに入るにはダブル クリックが必要です。これを に設定して、新しいセルを選択するときに編集モードを実行できるようにすることができます。 -- プロパティの追加 - 別名 Excel スタイル ナビゲーション (Enter 動作) - Enter キーの動作を制御します。たとえば、オプションは none、edit、move up、down、left、right です。 -- プロパティの追加 - 編集モードでは、このプロパティは Enter キーが押されたときを制御します。例えば、オプションは (下、上、右、左のセルに移動) です。 -- メソッドを追加しました。 -- 行範囲の選択を追加しました - プロパティを MultipleRow に設定すると、次の新しい機能が含まれるようになりました: +- `EditModeClickAction` プロパティを追加しました - デフォルトでは、編集モードに入るにはダブル クリックが必要です。これを `SingleClick` に設定して、新しいセルを選択するときに編集モードを実行できるようにすることができます。 +- `EnterKeyBehaviors` プロパティの追加 - 別名 Excel スタイル ナビゲーション (Enter 動作) - Enter キーの動作を制御します。たとえば、オプションは none、edit、move up、down、left、right です。 +- `EnterKeyBehaviorAfterEdit` プロパティの追加 - 編集モードでは、このプロパティは Enter キーが押されたときを制御します。例えば、オプションは (下、上、右、左のセルに移動) です。 +- `SelectAllRows` メソッドを追加しました。 +- 行範囲の選択を追加しました - `GridSelectionMode` プロパティを MultipleRow に設定すると、次の新しい機能が含まれるようになりました: - クリックしてドラッグし、行を選択します。 - SHIFT キーを押しながらクリックして、複数の行を選択します。 - SHIFT キーを押しながら + 矢印キーを押して、複数の行を選択します。 -- スペース バーを押すと、MultipleRow または SingleRow に設定された プロパティを介してアクティブな行の選択が切り替わります。 +- スペース バーを押すと、MultipleRow または SingleRow に設定された `GridSelectionMode` プロパティを介してアクティブな行の選択が切り替わります。 - 列オプション ダイアログに列集計を追加しました。 ### {PackageInputs} (入力) -- A new `ValueChanged` event supports 2-way binding and should only be handled if you have not bound the property. In order to read the Value field from the control without data binding the `ValueChanged` event should be handled, otherwise if your data is not bound you should use GetCurrentValueAsync to read the controls Value. +- A new `ValueChanged` event supports 2-way binding and should only be handled if you have not bound the `DatePicker.Value` property. In order to read the Value field from the control without data binding the `ValueChanged` event should be handled, otherwise if your data is not bound you should use GetCurrentValueAsync to read the controls Value. #### 日付ピッカー -- - 現在の日付のボタンの表示を切り替えます。 -- - 日付値の上にラベルを追加します。 -- プロパティ - 値が選択されていない場合にカスタム テキストを追加します。 -- - 入力日付文字列をカスタマイズします。(例: `yyyy-MM-dd`) -- - 選択した日付を LongDate または ShortDate のどちらとして表示するかを指定します。 -- - 週の最初の曜日を指定します。 -- - 年の最初の週をいつ表示するかを指定します。例えば、最初の 1 週間、最初の 4 日間の週です。 -- - 週番号の表示を切り替えます。 -- & - 使用可能の選択できる日付の範囲を指定する日付制限。 +- `DatePicker.ShowTodayButton` - 現在の日付のボタンの表示を切り替えます。 +- `DatePicker.Label` - 日付値の上にラベルを追加します。 +- `DatePicker.Placeholder` プロパティ - 値が選択されていない場合にカスタム テキストを追加します。 +- `IWorksheetCellFormat.FormatString` - 入力日付文字列をカスタマイズします。(例: `yyyy-MM-dd`) +- `DateFormat` - 選択した日付を LongDate または ShortDate のどちらとして表示するかを指定します。 +- `DatePicker.FirstDayOfWeek` - 週の最初の曜日を指定します。 +- `DatePicker.FirstWeekOfYear` - 年の最初の週をいつ表示するかを指定します。例えば、最初の 1 週間、最初の 4 日間の週です。 +- `DatePicker.ShowWeekNumbers` - 週番号の表示を切り替えます。 +- `DatePicker.MinDate` & `DatePicker.MaxDate` - 使用可能の選択できる日付の範囲を指定する日付制限。 - アクセシビリティの追加 #### Multi-Column ComboBox @@ -1286,29 +1286,29 @@ For example, ``` ``` instead of ``` ``` This release introduces a few improvements and simplifications to visual design and configuration options for the geographic map and all chart components. -- Changed property's type to **YAxisLabelLocation** from **AxisLabelLocation** in and -- Changed property's type to **XAxisLabelLocation** from **AxisLabelLocation** in -- Added property to -- Added support for representing geographic series of in a legend -- Added crosshair lines by default in and -- Added crosshair annotations by default in and -- Added final value annotation by default in +- Changed `XYChart.YAxisLabelLocation` property's type to **YAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` and `CategoryChart` +- Changed `XYChart.XAxisLabelLocation` property's type to **XAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` +- Added `XYChart.XAxisLabelLocation` property to `CategoryChart` +- Added support for representing geographic series of `XamGeographicMap` in a legend +- Added crosshair lines by default in `FinancialChart` and `CategoryChart` +- Added crosshair annotations by default in `FinancialChart` and `CategoryChart` +- Added final value annotation by default in `FinancialChart` - Added new properties in Category Chart and Financial Chart: - - and other properties for customizing crosshairs lines - - and other properties for customizing crosshairs annotations - - and other properties for customizing final value annotations - - that allow changing opacity of series fill (e.g. Area chart) - - that allows changing thickness of markers + - `XYChart.CrosshairsLineThickness` and other properties for customizing crosshairs lines + - `XYChart.CrosshairsAnnotationXAxisBackground` and other properties for customizing crosshairs annotations + - `XYChart.FinalValueAnnotationsBackground` and other properties for customizing final value annotations + - `XYChart.AreaFillOpacity` that allow changing opacity of series fill (e.g. Area chart) + - `XYChart.MarkerThickness` that allows changing thickness of markers - Added new properties in Category Chart, Financial Chart, Data Chart, and Geographic Map: - - that allows which marker type is assigned to multiple series in the same chart - - for setting badge shape of all series represented in a legend - - for setting badge complexity on all series in a legend + - `SeriesViewer.MarkerAutomaticBehavior` that allows which marker type is assigned to multiple series in the same chart + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape of all series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on all series in a legend - Added new properties in Series in Data Chart and Geographic Map: - - for setting badge shape on specific series represented in a legend - - for setting badge complexity on specific series in a legend + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape on specific series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on specific series in a legend - Changed default vertical crosshair line stroke from #000000 to #BBBBBB in category chart and series -- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's property to `SmartIndexed` enum value -- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's property to `MatchSeries` enum value +- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's `SeriesViewer.MarkerAutomaticBehavior` property to `SmartIndexed` enum value +- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's `SeriesViewer.LegendItemBadgeMode` property to `MatchSeries` enum value - Changed color palette of series and markers displayed in all charts to improve accessibility | Old brushes/outlines | New outline/brushes | @@ -1326,38 +1326,38 @@ This release introduces a few improvements and simplifications to visual design - Added `SelectionChanged` event. Used to detect changes on selection interactions e.g. Multiple row selection. - Breaking Changes: - - Changed grid's SummaryScope property's type to SummaryScope from - - Changed GroupHeaderDisplayMode property's type to GroupHeaderDisplayMode from + - Changed grid's SummaryScope property's type to SummaryScope from `DataSourceSummaryScope` + - Changed GroupHeaderDisplayMode property's type to GroupHeaderDisplayMode from `DataSourceSectionHeaderDisplayMode` ## **{PackageVerChanges-21-1}** ### New Visual Designs #### Charts & Maps -This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. , , and . +This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. `XamDataChart`, `CategoryChart`, and `FinancialChart`. - Changed Bar/Column/Waterfall series to have square corners instead of rounded corners - Changed Scatter High Density series’ colors for heat min property from #8a5bb1 to #000000 - Changed Scatter High Density series’ colors for heat max property from #ee5879 to #ee5879 - Changed Financial/Waterfall series’ `NegativeBrush` and `NegativeOutline` properties from #C62828 to #ee5879 - Changed marker's thickness to 2px from 1px -- Changed marker's fill to match the marker's outline for , , , . You can use set property to Normal to undo this change -- Compressed labelling for the and +- Changed marker's fill to match the marker's outline for `PointSeries`, `BubbleSeries`, `ScatterSeries`, `PolarScatterSeries`. You can use set `XYChart.MarkerFillMode` property to Normal to undo this change +- Compressed labelling for the `TimeXAxis` and `OrdinalTimeXAxis` - New Marker Properties: - - series. - Can be set to `MatchMarkerOutline` so the marker depends on the outline - - series. - Can be set to a value 0 to 1 - - series. - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color + - series.`XYChart.MarkerFillMode` - Can be set to `MatchMarkerOutline` so the marker depends on the outline + - series.`XYChart.MarkerFillOpacity` - Can be set to a value 0 to 1 + - series.`XYChart.MarkerOutlineMode` - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color - New Series Property: - - series. - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series -- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the , listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series +- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the `XYChart.ComputedPlotAreaMarginMode`, listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - New Highlighting Properties - - chart. - Sets whether hovered or non-hovered series to fade, brighten - - chart. - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item + - chart.`SeriesViewer.HighlightingMode` - Sets whether hovered or non-hovered series to fade, brighten + - chart.`SeriesViewer.HighlightingBehavior` - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item - Note, in previous releases the highlighting was limited to fade on hover. - Added Highlighting Stacked, Scatter, Polar, Radial, and Shape series: - Added Annotation layers to Stacked, Scatter, Polar, Radial, and Shape series: @@ -1380,8 +1380,8 @@ for example: #### Chart Legend -- Added horizontal property to ItemLegend that can be used with Bubble, Donut, and Pie Chart -- Added property - Enables series highlighting when hovering over legend items +- Added horizontal `Toolbar.Orientation` property to ItemLegend that can be used with Bubble, Donut, and Pie Chart +- Added `SeriesViewer.LegendHighlightingMode` property - Enables series highlighting when hovering over legend items #### Geographic Map @@ -1397,28 +1397,28 @@ These features are CTP ### {PackageGrids} (Data Grid) - Added `EditOnKeyPress` aka Excel-style Editing, instantly begin editing when typing. -- Added property - By default double-clicking is required to enter edit mode. This can be set to to allow for edit mode to occur when selecting a new cell. -- Added property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) -- Added property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) -- Added - method. -- Added Row Range Selection - With property set to MultipleRow the following new functionality is now included: +- Added `EditModeClickAction` property - By default double-clicking is required to enter edit mode. This can be set to `SingleClick` to allow for edit mode to occur when selecting a new cell. +- Added `EnterKeyBehaviors` property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) +- Added `EnterKeyBehaviorAfterEdit` property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) +- Added `SelectAllRows` - method. +- Added Row Range Selection - With `GridSelectionMode` property set to MultipleRow the following new functionality is now included: - Click and drag to select rows - SHIFT and click to select multiple rows. - SHIFT and press the + arrow keys to select multiple rows. -- Pressing space bar toggles selection of active row via property set to MultipleRow or SingleRow +- Pressing space bar toggles selection of active row via `GridSelectionMode` property set to MultipleRow or SingleRow - Added Column Summaries to Column Options Dialog. ### {PackageInputs} (Inputs) #### Date Picker -- - Toggles Today button visibility -- - Adds a label above the date value -- property - adds custom text when no value is selected -- - Customize input date string e.g. (`yyyy-MM-dd`) -- - Specifies whether to display selected dates as LongDate or ShortDate -- - Specifies first day of week -- - Specifies when to display first week of the year, e.g. (First Full Week, First Four day Week) -- - Toggles Week number visibility -- & - Date limits, specifying a range of available selectable dates. +- `DatePicker.ShowTodayButton` - Toggles Today button visibility +- `DatePicker.Label` - Adds a label above the date value +- `DatePicker.Placeholder` property - adds custom text when no value is selected +- `IWorksheetCellFormat.FormatString` - Customize input date string e.g. (`yyyy-MM-dd`) +- `DateFormat` - Specifies whether to display selected dates as LongDate or ShortDate +- `DatePicker.FirstDayOfWeek` - Specifies first day of week +- `DatePicker.FirstWeekOfYear` - Specifies when to display first week of the year, e.g. (First Full Week, First Four day Week) +- `DatePicker.ShowWeekNumbers` - Toggles Week number visibility +- `DatePicker.MinDate` & `DatePicker.MaxDate` - Date limits, specifying a range of available selectable dates. - Added Accessibility diff --git a/docs/xplat/src/content/jp/components/general-changelog-dv-react.mdx b/docs/xplat/src/content/jp/components/general-changelog-dv-react.mdx index fd5efd0d15..8c9a849523 100644 --- a/docs/xplat/src/content/jp/components/general-changelog-dv-react.mdx +++ b/docs/xplat/src/content/jp/components/general-changelog-dv-react.mdx @@ -21,8 +21,6 @@ import chartdefaults4 from '@xplat-images/chartDefaults4.png'; import Badge from 'igniteui-astro-components/components/mdx/Badge.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {ProductName} 変更ログ @@ -93,18 +91,18 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ### {PackageGrids} (グリッド) -- +- `Grid`、`TreeGrid`、`HierarchicalGrid`、`PivotGrid` - グリッドに表示されるデータに基づいてスクロール スロットルを動的に調整することでパフォーマンスを改善しました。 **重大な変更** -- +- `Grid`、`TreeGrid`、`HierarchicalGrid`、`PivotGrid` - 元の `data` 配列の変更 (元の配列へのレコードの追加/削除/移動など) は自動的に検出されなくなりました。変更を検出するには、コンポーネントに配列参照の変更が必要です。 **ローカライゼーション (i18n)** -- - - グリッド コンポーネントで日付や数値などのデータをフォーマットおよびレンダリングするための新しい `Intl` 実装。 の `Intl` 実装を更新しました。 +- `Grid`、`TreeGrid`、`HierarchicalGrid`、`PivotGrid`、`Combo`、`DatePicker`、`DateRangePicker`、`Calendar`、`Carousel`、`Chip`、`Input`、`Tree` + - グリッド コンポーネントで日付や数値などのデータをフォーマットおよびレンダリングするための新しい `Intl` 実装。`Calendar`、`DatePicker`、`DateRangePicker` の `Intl` 実装を更新しました。 - 現在サポートされているすべての言語のリソース文字列を持つすべてのコンポーネントに対する新しいローカライゼーション実装。 - 新しいパブリック ローカライゼーション API と、新しいリソースを含む `igniteui-i18n-resources` という名前のパッケージ。 @@ -156,18 +154,18 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と ### **{PackageVerChanges-25-2-DEC}** -- , , , +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid` - Improved performance by dynamically adjusting the scroll throttle based on the data displayed in grid. **Breaking Changes** -- , , , +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid` - Original `data` array mutations (like adding/removing/moving records in the original array) are no longer detected automatically. Components need an array reference change for the change to be detected. **Localization(i18n)** -- , , , , , , , , , , , - - New `Intl` implementation for the grid components that format and render data like dates and numbers. Updated `Intl` implementation for , , and . +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid`, `Combo`, `DatePicker`, `DateRangePicker`, `Calendar`, `Carousel`, `Chip`, `Input`, `Tree` + - New `Intl` implementation for the grid components that format and render data like dates and numbers. Updated `Intl` implementation for `Calendar`, `DatePicker`, and `DateRangePicker`. - New localization implementation for the currently supported languages for all components that have resource strings in the currently supported languages. - New public localization API and package named `igniteui-i18n-resources` containing the new resources that are used in conjunction. @@ -203,7 +201,7 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と ### ユーザー注釈 -{ProductName} では、ユーザー注釈機能により、実行時に にスライス注釈、ストリップ注釈、ポイント注釈を追加できるようになりました。これにより、エンドユーザーは、スライス注釈を使用して会社の四半期レポートなどの単一の重要イベントを強調したり、ストリップ注釈を使用して期間を持つイベントを示したりすることで、プロットに詳細を追加できます。ポイント注釈またはこれら 3 つの任意の組み合わせを使用して、プロットされたシリーズ上の個々のポイントを呼び出すこともできます。 +{ProductName} では、ユーザー注釈機能により、実行時に `XamDataChart` にスライス注釈、ストリップ注釈、ポイント注釈を追加できるようになりました。これにより、エンドユーザーは、スライス注釈を使用して会社の四半期レポートなどの単一の重要イベントを強調したり、ストリップ注釈を使用して期間を持つイベントを示したりすることで、プロットに詳細を追加できます。ポイント注釈またはこれら 3 つの任意の組み合わせを使用して、プロットされたシリーズ上の個々のポイントを呼び出すこともできます。 ### 軸注釈の衝突検出 @@ -219,15 +217,15 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と #### 新しいコンポーネント -- コンポーネントを追加しました。 +- `Chat` コンポーネントを追加しました。 -This is directly integrated with the available tools of the . +This is directly integrated with the available tools of the `Grid.Toolbar`. {Platform} user-annotation-create #### {PackageGrids} (グリッド) -- +- `Grid`、`TreeGrid`、`HierarchicalGrid` - 同じデータまたはその他のカスタム条件に基づいて列内のセルを 1 つのセルに構成および結合できる新しいセル結合機能を追加しました。 個々の列で有効化できます: @@ -256,10 +254,10 @@ This is directly integrated with the available tools of the Azure マップ画像のサポート - は、 Azure ベースのマップ画像をサポートし、開発者は複数のアプリケーション タイプにわたって詳細かつ動的なマップを表示できるようになりました。複数のマップ レイヤーを組み合わせて地理データを視覚化し、インタラクティブなマッピング エクスペリエンスを簡単に作成できます。 +`XamGeographicMap` は、 Azure ベースのマップ画像をサポートし、開発者は複数のアプリケーション タイプにわたって詳細かつ動的なマップを表示できるようになりました。複数のマップ レイヤーを組み合わせて地理データを視覚化し、インタラクティブなマッピング エクスペリエンスを簡単に作成できます。 ### {PackageCharts} (チャート) -- , , +- `Grid`, `TreeGrid`, `HierarchicalGrid` - Introduced a new cell merging feature that allows you to configure and merge cells in a column based on same data or other custom condition, into a single cell. It can be enabled on the individual columns: @@ -268,7 +266,7 @@ This is directly integrated with the available tools of the - ``` +``` The merging can be configured on the grid level to apply either: @@ -280,7 +278,7 @@ This is directly integrated with the available tools of the - ``` +```
@@ -297,7 +295,7 @@ This is directly integrated with the available tools of the - ``` +```
@@ -326,7 +324,7 @@ This is directly integrated with the available tools of the 新しい軸ラベル イベント -軸ラベルに対するさまざまな操作を検出できるように、次のイベントが に追加されました。 +軸ラベルに対するさまざまな操作を検出できるように、次のイベントが `XamDataChart` に追加されました。 ## 対応軸 @@ -335,7 +333,7 @@ This is directly integrated with the available tools of the now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. +The `XamGeographicMap` now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. Note: Support for Bing Maps imagery is being phased out. Existing enterprise keys can still be used to access Bing Maps, ensuring your current applications continue to function while you transition to Azure maps. @@ -347,11 +345,11 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft | バグ番号 | コントロール | 説明 | |------------|---------|-------------| -|31624 | | を含むウィンドウをリサイズすると、チャートがシリーズをレンダリングできなくなる。| -|27304 | | ズーム長方形が背景長方形と同じ位置に配置されない。| -|38231 | | 非ピン固定列は、非表示が存在する場合に元の位置に戻らない。| -|30600 | | チャートやシリーズに textStyle プロパティが存在しない (円チャートにはある)。| -|37930 | | Data Annotation Overlay のテキスト色が機能しない。| +|31624 | `CategoryChart` | `CategoryChart` を含むウィンドウをリサイズすると、チャートがシリーズをレンダリングできなくなる。| +|27304 | `XamDataChart` | ズーム長方形が背景長方形と同じ位置に配置されない。| +|38231 | `Grid` | 非ピン固定列は、非表示が存在する場合に元の位置に戻らない。| +|30600 | `XamDoughnutChart` | チャートやシリーズに textStyle プロパティが存在しない (円チャートにはある)。| +|37930 | `XamDataChart` | Data Annotation Overlay のテキスト色が機能しない。| |33861 | Excel Library | 折れ線チャートを追加すると、ドイツ語カルチャで Excel ファイルが破損する。| - `LabelMouseDown` @@ -363,15 +361,15 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft #### 機能拡張 -Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. +Added `CompanionAxis` properties to the X and Y axis that allow you to quickly create a clone of an existing axis. When enabled using the `CategoryAngleAxis.CompanionAxisEnabled` property, this will default the cloned axis to the opposite position of the chart and you can then configure that axes' properties. #### IgrBulletGraph -- 新しい プロパティが追加されました。 +- 新しい `XamLinearGauge.LabelsVisible` プロパティが追加されました。 **Breaking Changes** -- A fix was made due to an issue where the and properties on class were reversed. This will change the values that and return. +- A fix was made due to an issue where the `ChartMouseEventArgs.PlotAreaPosition` and `ChartMouseEventArgs.ChartPosition` properties on `ChartMouseEventArgs` class were reversed. This will change the values that `PlotAreaPosition` and `ChartPosition` return. ### チャート @@ -379,24 +377,24 @@ Added `CompanionAxis` properties to the X and Y axis that allow you to quickly c - DataGrid に新しいプロパティ `stopPropagation` が追加されました。これにより、マウス イベントが親要素へバブリングするのを防止できます。 -- -- +- `DataGridColumn.SuffixText` +- `DataGridColumn.SuffixTextColor` - `SuffixTextFont` -- -- -- -- -- -- -- -- -- +- `DataGridColumn.SuffixIconName` +- `DataGridColumn.SuffixIconCollectionName` +- `DataGridColumn.SuffixIconStroke` +- `DataGridColumn.SuffixIconFill` +- `DataGridColumn.SuffixIconViewBoxLeft` +- `DataGridColumn.SuffixIconViewBoxTop` +- `DataGridColumn.SuffixIconViewBoxWidth` +- `DataGridColumn.SuffixIconViewBoxHeight` +- `DataGridColumn.TextDecoration` Please note that the maximum size available for the icons is 24x24. You can provide an icon that is larger or smaller than this, but you will need to configure the viewbox settings in order to properly scale it to fit in the 24x24 space so it is fully visible. ### IgrLinearGauge -- 新しい プロパティが追加されました。 +- 新しい `XamLinearGauge.LabelsVisible` プロパティが追加されました。 ### **{PackageVerChanges-25-1-SEP}** @@ -420,11 +418,11 @@ Please note that the maximum size available for the icons is 24x24. You can prov |[1809](https://github.com/IgniteUI/igniteui-webcomponents/pull/1809)|Switch|新しい thumb hover プロパティを使用するよう修正。| |[1837](https://github.com/IgniteUI/igniteui-webcomponents/pull/1837)|TileManager|内部正規表現のエスケープ不備を修正。| -- New properties added to the DataLegend to aid in styling: , , and . The and default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. +- New properties added to the DataLegend to aid in styling: `ContentBackground`, `ContentBorderBrush`, and `ContentBorderThickness`. The `ContentBorderBrush` and `ContentBorderThickness` default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. -- Added a new property to called that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. +- Added a new property to `ChartMouseEventArgs` called `WorldPosition` that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. -- Added to and . This allows you to configure the opacity applied to highlighted series. +- Added `SeriesViewer.HighlightingFadeOpacity` to `SeriesViewer` and `DomainChart`. This allows you to configure the opacity applied to highlighted series. - Expose `CalloutLabelUpdating` event for domain charts. @@ -537,7 +535,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov ### {PackageDashboards} (ダッシュボード) -- では、ソート、グループ化、フィルタリング、選択などの集計を DataGrid ビューからチャート視覚化に伝播できるようになりました。これは現在、 の `DashboardTile.ItemsSource` を のインスタンスにバインドすることによってサポートされています。 +- `DashboardTile` では、ソート、グループ化、フィルタリング、選択などの集計を DataGrid ビューからチャート視覚化に伝播できるようになりました。これは現在、`DashboardTile` の `DashboardTile.ItemsSource` を `LocalDataSource` のインスタンスにバインドすることによってサポートされています。 ### {PackageGrids} @@ -556,9 +554,9 @@ Please note that the maximum size available for the icons is 24x24. You can prov - チャートは `GetOthersContext()` メソッドを公開するようになりました。これにより、Others (その他) スライスのコンテンツが返されます。 -- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. +- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose `LayoutMode` property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. -- The property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. +- The `DefaultInteraction` property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. - The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an `OverlayText` property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. @@ -568,10 +566,10 @@ Please note that the maximum size available for the icons is 24x24. You can prov | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|25997 | | 集計はグループ化された最初の子行にのみ表示される。| -|37023 | | overflow: hidden が設定されている場合にツールチップが切り取られたり画面外に表示されたりする。 +|25997 | `Grid` | 集計はグループ化された最初の子行にのみ表示される。| +|37023 | `XamDataChart` | overflow: hidden が設定されている場合にツールチップが切り取られたり画面外に表示されたりする。 |37244 | Excel Library | カスタム データ検証が機能しない。. -|37685 | | Arial フォントで書式設定された数値が正しく描画されない。 +|37685 | `Spreadsheet` | Arial フォントで書式設定された数値が正しく描画されない。 ### **{PackageVerChanges-24-2-APR2}** @@ -608,10 +606,10 @@ With 19.0.0 the React product introduces many breaking changes done to improve a ### 機能拡張 #### List -- に新しいプロパティ を追加しました。 +- `ListItem` に新しいプロパティ `Selected` を追加しました。 #### Accordion -- 新しいイベント および `Close` を追加しました。 +- 新しいイベント `DatePicker.Open` および `Close` を追加しました。 igr-tab-panel component is removed. The igr-tab now encompasses both the tab header and the tab content in a single component. @@ -619,12 +617,12 @@ igr-tab-panel component is removed. The igr-tab now encompasses both the tab hea ### 非推奨 -- の `clicked` イベントは非推奨となりました。代わりにネイティブの `onClick` ハンドラーを使用してください。 +- `DataGridCellEventArgs.Button` の `clicked` イベントは非推奨となりました。代わりにネイティブの `onClick` ハンドラーを使用してください。 ### バグ修正 #### **{PackageVerChanges-24-2-MAR1}** -- Added new property on called +- Added new property on `ListItem` called `Selected` #### {PackageGrids} 次の表は、このリリースの {ProductName} ツールセットに対して行われたバグ修正を示しています。 @@ -632,7 +630,7 @@ igr-tab-panel component is removed. The igr-tab now encompasses both the tab hea ### **{PackageVerChanges-24-2-MAR}** - **All Grids** - - Allow applying initial filtering through property + - Allow applying initial filtering through `GridBaseDirective.FilteringExpressionsTree` property ### {PackageGrids} @@ -643,14 +641,14 @@ igr-tab-panel component is removed. The igr-tab now encompasses both the tab hea ### {PackageCommon} - `Dockmanager` に、分割内で直接ドッキングできる新しい `allowSplitterDock` プロパティが追加されました。 -- `Dockmanager` の に新しい `useFixedSize` プロパティが追加され、新しいサイズ変更動作が可能になりました。 +- `Dockmanager` の `SplitPane` に新しい `useFixedSize` プロパティが追加され、新しいサイズ変更動作が可能になりました。 ## 機能拡張 ### Toolbar -- に新しい `groupHeaderTextStyle` プロパティを追加しました。設定されている場合、すべての アクションに適用されます。 -- タイトル テキストの水平方向の配置を制御する という新しいプロパティを に追加しました。 -- に、パネル内の項目間の間隔を制御する `itemSpacing` という新しいプロパティを追加しました。 +- `Grid.Toolbar` と `ToolPanel` に新しい `groupHeaderTextStyle` プロパティを追加しました。設定されている場合、すべての `ToolActionGroupHeader` アクションに適用されます。 +- タイトル テキストの水平方向の配置を制御する `SeriesViewer.TitleHorizontalAlignment` という新しいプロパティを `ToolAction` に追加しました。 +- `ToolActionSubPanel` に、パネル内の項目間の間隔を制御する `itemSpacing` という新しいプロパティを追加しました。 | Bug Number | Control | Description | |------------|---------|------------------| @@ -678,16 +676,16 @@ DashboardTile | Bug Number | Control | Description | |------------|---------|------------------| -|30286 | | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| -|32906 | | is showing two xAxis on the top| -|33605 | | ScatterLineSeries is not showing the color of the line correctly in the legend| -|34776 | | Repeatedly showing and hiding the causes memory leakage in JS Heap| -|35498 | | Tooltips for the series specified in IncludedSeries are not displayed| -|34324 | | Column hiding through condition in the grid template is not working| -|34678 | | Enum values coerced to strings, breaking expected numeric behavior in some grid properties| -|32093 | | PivotDateDimensionOptions are not applied to the PivotDateDimension| -|34053 | | The position of the scale label is shifted| -|35496 | | Error when setting styles in Excel with images| +|30286 | `XamDataChart` | Bubble Series tooltip content is switched to that of nearby bubble data in clicking a bubble| +|32906 | `XamDataChart` | `XamDataChart` is showing two xAxis on the top| +|33605 | `XamDataChart` | ScatterLineSeries is not showing the color of the line correctly in the legend| +|34776 | `XamDataChart` | Repeatedly showing and hiding the `XamDataChart` causes memory leakage in JS Heap| +|35498 | `XamDataChart` | Tooltips for the series specified in IncludedSeries are not displayed| +|34324 | `Grid` | Column hiding through condition in the grid template is not working| +|34678 | `Grid` | Enum values coerced to strings, breaking expected numeric behavior in some grid properties| +|32093 | `PivotGrid` | PivotDateDimensionOptions are not applied to the PivotDateDimension| +|34053 | `XamRadialGauge` | The position of the scale label is shifted| +|35496 | `Spreadsheet` | Error when setting styles in Excel with images| |36176 | Excel Library | Exception occurs when loading an Excel workbook that has a LET function| |36379 | Excel Library | Colors with any alpha channel in an excel workbook fail to load| |26218 | Excel Library | Chart's plot area right margin becomes narrower and fill pattern and fill foreground are gone just by loading an Excel file| @@ -701,39 +699,39 @@ DashboardTile ### 一般 - 新しい [Carousel](./layouts/carousel.mdx) コンポーネント。 -- - - `change` イベント引数タイプを から に変更しました。 +- `Input` + - `change` イベント引数タイプを `ComponentDataValueChangedEventArgs` から `ComponentValueChangedEventArgs` に変更しました。 ## **{PackageVerChanges-24-1-SEP}** ### {PackageCharts} (チャート) -- 新しい[データ円チャート](./charts/types/data-pie-chart.mdx) - は円ャートを表示する新しいコンポーネントです。このコンポーネントは、 と同様に動作し、基になるデータ モデルのプロパティを自動的に検出しながら、ItemLegend コンポーネントを介して選択、強調表示、アニメーション、凡例のサポートを可能にします。 +- 新しい[データ円チャート](./charts/types/data-pie-chart.mdx) - `DataPieChart` は円ャートを表示する新しいコンポーネントです。このコンポーネントは、`CategoryChart` と同様に動作し、基になるデータ モデルのプロパティを自動的に検出しながら、ItemLegend コンポーネントを介して選択、強調表示、アニメーション、凡例のサポートを可能にします。 -- 新しい [比例カテゴリ角度軸](./charts/types/radial-chart.mdx) - スライスをプロットするための、 のラジアル円シリーズの新しい軸。円チャートに似ており、データ ポイントが円グラフ内のセグメントとして表されます。 +- 新しい [比例カテゴリ角度軸](./charts/types/radial-chart.mdx) - スライスをプロットするための、`XamDataChart` のラジアル円シリーズの新しい軸。円チャートに似ており、データ ポイントが円グラフ内のセグメントとして表されます。 ### {PackageCommon} - 新しい [Banner](./notifications/banner.mdx) コンポーネント。 - 新しい [DatePicker](./scheduling/date-picker.mdx) コンポーネント。 -- 新しい コンポーネント。 +- 新しい `Divider` コンポーネント。 - すべてのコンポーネントにネイティブ イベントのサポートが追加されました。 -- - - メソッドが追加されました。これにより、アイコンを SVG ファイルで登録および置き換えることができます。 +- `Icon` + - `setIconRef` メソッドが追加されました。これにより、アイコンを SVG ファイルで登録および置き換えることができます。 - すべてのコンポーネントが内部的な参照によるアイコンを使用するようになり、カスタム テンプレートを明示的に提供しなくても簡単に置き換えられるようになりました。 -- 、**IgrSelectComponent** +- `Combo`、`DatePicker`、`Dialog`、`Dropdown`、`ExpansionPanel`、`NavDrawer`、`Toast`、`Snackbar`、**IgrSelectComponent** - トグル メソッドの `show`、`hide`、`toggle` メソッドは、成功した場合に **true** を返すようになりました。そうでない場合は **false**。 -- **IgrButtonComponent**、、**IgrSelectComponent**、 +- **IgrButtonComponent**、`IconButton`、`Checkbox`、`Switch`、`Combo`、`DateTimeInput`、`Input`、`MaskInput`、`Radio`、**IgrSelectComponent**、`Textarea` - カスタムの `focus` および `blur` イベントは非推奨になりました。代わりにネイティブの `onFocus` および `onBlur` イベントを使用してください。 -- - - および プロパティを追加しました。 +- `RadioGroup` + - `DatePicker.Name` および `DatePicker.Value` プロパティを追加しました。 ## {PackageGrids} ### **{PackageVerChanges-24-1-JUN}** - New [Carousel](./layouts/carousel.mdx) component. -- - - Changed `change` event argument type from to +- `Input` + - Changed `change` event argument type from `ComponentDataValueChangedEventArgs` to `ComponentValueChangedEventArgs` ## {PackageCommon} @@ -741,9 +739,9 @@ DashboardTile - `DisplayDensity` は非推奨となり、代わりに `--ig-size` CSS カスタム プロパティが使用されるようになりました。詳細については、[グリッド サイズ](./grids/_shared/size.mdx) トピックを参照してください。 -- - コンポーネントの構成が正しく適用できるようになりました。 +- `PivotGrid` - コンポーネントの構成が正しく適用できるようになりました。 -- +- `Grid.Toolbar` - New ToolActionCheckboxList A new CheckboxList ToolAction that displays a collection of items with checkboxes for selecting. A grid inside ToolAction CheckboxList grows in height up to 5 items, then a scrollbar is displayed. @@ -758,87 +756,87 @@ DashboardTile ### {PackageCharts} (チャート) -- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。 プロパティは、各シリーズのグループ化を切り替え、オプトインすると プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 +- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。`GroupRowVisible` プロパティは、各シリーズのグループ化を切り替え、オプトインすると `CrosshairLayer.DataLegendGroup` プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 -- [チャートの選択](./charts/features/chart-data-selection.mdx) - 新しいシリーズ選択のスタイル設定。これは、 および のすべてのカテゴリ、財務、およびラジアル シリーズに広く採用されています。シリーズはクリックして異なる色で表示したり、明るくしたり、薄くしたり、フォーカスのアウトラインを表示したりできます。個々のシリーズまたはデータ項目全体を通じて影響を受ける項目を管理します。 -複数のシリーズとマーカーがサポートされています。特定のデータ項目の値間のさまざまな相違点や類似点を示すのに役立ちます。また、`SelectedSeriesItemsChanged` イベントと は、選択内容に基づいたデータ分析を行うポップアップやその他の画面など、アプリケーション内で実行できるその他のアクションを取り巻く堅牢なビジネス要件を構築するための追加の支援として利用できます。 +- [チャートの選択](./charts/features/chart-data-selection.mdx) - 新しいシリーズ選択のスタイル設定。これは、`CategoryChart` および `XamDataChart` のすべてのカテゴリ、財務、およびラジアル シリーズに広く採用されています。シリーズはクリックして異なる色で表示したり、明るくしたり、薄くしたり、フォーカスのアウトラインを表示したりできます。個々のシリーズまたはデータ項目全体を通じて影響を受ける項目を管理します。 +複数のシリーズとマーカーがサポートされています。特定のデータ項目の値間のさまざまな相違点や類似点を示すのに役立ちます。また、`SelectedSeriesItemsChanged` イベントと `SeriesViewer.SelectedSeriesItems` は、選択内容に基づいたデータ分析を行うポップアップやその他の画面など、アプリケーション内で実行できるその他のアクションを取り巻く堅牢なビジネス要件を構築するための追加の支援として利用できます。 -- [比例カテゴリ角度軸](./charts/types/radial-chart.mdx) - のラジアル円シリーズの新しい軸により、データ チャートのすべての追加機能を使用してロバスト可能な視覚化をする円チャートの作成が可能になります。 +- [比例カテゴリ角度軸](./charts/types/radial-chart.mdx) - `XamDataChart` のラジアル円シリーズの新しい軸により、データ チャートのすべての追加機能を使用してロバスト可能な視覚化をする円チャートの作成が可能になります。 ### {PackageGauges} (ゲージ) -- - - ハイライト針の新しいラベル。 および、その他の HighlightLabel の多くのスタイル関連プロパティが追加されました。 +- `XamRadialGauge` + - ハイライト針の新しいラベル。`HighlightLabelText` と `HighlightLabelSnapsToNeedlePivot` および、その他の HighlightLabel の多くのスタイル関連プロパティが追加されました。 **Breaking Changes** - **All Grids** - - + - `RowIsland` - Removed `displayDensity` deprecated property. - Renamed `actualColumns`, `contentColumns` properties to `actualColumnList` and `contentColumnList`. Use `columns` or `columnList` property to get all columns now. - - Renamed `rowDelete` and `rowAdd` event argument type to . - - Renamed `contextMenu` event argument type to . - - Removed , , events `rowID` and `primaryKey` properties. Use `rowKey` instead. -- + - Renamed `rowDelete` and `rowAdd` event argument type to `RowDataCancelableEventArgs`. + - Renamed `contextMenu` event argument type to `GridContextMenuEventArgs`. + - Removed `GridEditEventArgs`, `GridEditDoneEventArgs`, `PinRowEventArgs` events `rowID` and `primaryKey` properties. Use `rowKey` instead. +- `PivotGrid` - removed `showPivotConfigurationUI` property. Use `pivotUI` and set inside it the new `showConfiguration` option. -- +- `Column` - Removed `movable` property. Use Grid's `moving` property now. - Removed `columnChildren` property. Use `childColumns` instead. -- +- `ColumnGroup` - Removed `children` property. Use `childColumns` instead. -- +- `Paginator` - Removed `isFirstPageDisabled` and `isLastPageDisabled` properties. Use `isFirstPage` and `isLastPage` instead. ## **{PackageVerChanges-23-2-MAR}** ### {PackageCharts} -- プロパティによる新しいデータ フィルタリング。フィルター式を適用して、チャート データをレコードのサブセットにフィルターします。大規模なデータのドリルダウンに使用できます。 +- `XYChart.InitialFilter` プロパティによる新しいデータ フィルタリング。フィルター式を適用して、チャート データをレコードのサブセットにフィルターします。大規模なデータのドリルダウンに使用できます。 ### {PackageGrids} -- 新しい [](./grids/hierarchical-grid/overview.mdx) コンポーネント +- 新しい [`HierarchicalGrid`](./grids/hierarchical-grid/overview.mdx) コンポーネント -- - Configuration of the component can now be applied correctly. +- `PivotGrid` - Configuration of the component can now be applied correctly. ### {PackageGauges} -- - - 新しいタイトル/サブタイトルのプロパティ。 はゲージの下部近くに表示されます。さらに、`TitleFontSize`、`TitleFontFamily`、`TitleFontStyle`、`TitleFontWeight`、 など、さまざまなタイトルとサブタイトルのフォント プロパティが追加されました。最後に、新しい により、値を針の位置に対応させることができます。 - - の新しい プロパティと プロパティ。この新機能は、ゲージのラベル、タイトル、サブタイトルが 100% のオプティカル スケーリングを持つサイズを管理します。この新機能の詳細については、[こちら](./radial-gauge.mdx#オプティカル-スケーリング)を参照してください。 - - 新しいハイライト針が追加されました。 の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 -- - - 新しいハイライト針が追加されました。 の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 -- - - が 'Overlay' 設定に適用されたとき、パフォーマンス バーには値と新しい の差が反映されるようになりました。ハイライト値には、フィルタリング/サブセットが完了した測定パーセンテージが塗りつぶされた色で表示され、残りのバーの外観は割り当てられた値に対して薄く表示され、リアルタイムでパフォーマンスを示します。 +- `XamRadialGauge` + - 新しいタイトル/サブタイトルのプロパティ。`TitleText`、`SubtitleText` はゲージの下部近くに表示されます。さらに、`TitleFontSize`、`TitleFontFamily`、`TitleFontStyle`、`TitleFontWeight`、`TitleExtent` など、さまざまなタイトルとサブタイトルのフォント プロパティが追加されました。最後に、新しい `TitleDisplaysValue` により、値を針の位置に対応させることができます。 + - `XamRadialGauge` の新しい `OpticalScalingEnabled` プロパティと `OpticalScalingSize` プロパティ。この新機能は、ゲージのラベル、タイトル、サブタイトルが 100% のオプティカル スケーリングを持つサイズを管理します。この新機能の詳細については、[こちら](./radial-gauge.mdx#オプティカル-スケーリング)を参照してください。 + - 新しいハイライト針が追加されました。`HighlightValue` と `HighlightValueDisplayMode` の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 +- `XamLinearGauge` + - 新しいハイライト針が追加されました。`XamRadialGauge.HighlightValue` と `XamRadialGauge.HighlightValueDisplayMode` の両方に値と 'Overlay' 設定が指定されたとき、メインの針が薄く表示され、新しい針が表示されます。 +- `XamBulletGraph` + - `XamRadialGauge.HighlightValueDisplayMode` が 'Overlay' 設定に適用されたとき、パフォーマンス バーには値と新しい `XamRadialGauge.HighlightValue` の差が反映されるようになりました。ハイライト値には、フィルタリング/サブセットが完了した測定パーセンテージが塗りつぶされた色で表示され、残りのバーの外観は割り当てられた値に対して薄く表示され、リアルタイムでパフォーマンスを示します。 -- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for and . Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. +- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for `CategoryChart` and `XamDataChart`. Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and `SeriesViewer.SelectedSeriesItems` are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. -- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. +- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. -- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the property. +- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a `SeriesViewer.HighlightingMode` property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the `SeriesViewer.HighlightingTransitionDuration` property. -- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new . Can be toggled via and styled via `FillBrushes`. +- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new `XYChart.HighlightedItemsSource`. Can be toggled via `SeriesViewer.HighlightedValuesDisplayMode` and styled via `FillBrushes`. -- - New option for ToolAction for outlining a border around specific tools of choice. +- `Grid.Toolbar` - New `ToolActionGroupHeader.IsHighlighted` option for ToolAction for outlining a border around specific tools of choice. ### {PackageCommon} -- 新しい コンポーネント -- 新しい コンポーネント -- - - 新しい プロパティ。有効にすると、ドッキング インジケーターは表示されなくなり、エンド ユーザーは、ドラッグしたペインをターゲット ペインの端に近づけてドラッグすることでドッキングできます - - 新しい プロパティ。フローティング ペインを Dock Manager の境界内に保持するかどうかを決定します。デフォルトは **false** です。 - - 新しい プロパティ。ペインのヘッダーをホバー時にのみ表示するか、常に表示するかを決定します。デフォルトは `always` です。 -- - - `Readonly` は に名前が変更されました。 -- - - `Maxlength` は に名前が変更されました。 - - `Minlength` は に名前が変更されました。 -- +- 新しい `Textarea` コンポーネント +- 新しい `ButtonGroup` コンポーネント +- `DockManager` + - 新しい `ProximityDock` プロパティ。有効にすると、ドッキング インジケーターは表示されなくなり、エンド ユーザーは、ドラッグしたペインをターゲット ペインの端に近づけてドラッグすることでドッキングできます + - 新しい `ContainedInBoundaries` プロパティ。フローティング ペインを Dock Manager の境界内に保持するかどうかを決定します。デフォルトは **false** です。 + - 新しい `ShowPaneHeaders` プロパティ。ペインのヘッダーをホバー時にのみ表示するか、常に表示するかを決定します。デフォルトは `always` です。 +- `Input`、`MaskInput`、`DateTimeInput`、`Rating` + - `Readonly` は `DatePicker.ReadOnly` に名前が変更されました。 +- `Input` + - `Maxlength` は `MaxLength` に名前が変更されました。 + - `Minlength` は `MinLength` に名前が変更されました。 +- `Tree` - ノードをクリックすると展開状態が変更されるかどうかを決定する `toggleNodeOnClick` プロパティが追加されました。デフォルトは **false** です。 -- +- `Rating` - `allowReset` が追加されました。有効にすると、同じ値を選択するとコンポーネントがリセットされます。**動作の変更** - 以前のリリースでは、これが Rating コンポーネントのデフォルトの動作でした。アプリケーションでこの動作を維持する必要がある場合は、必ず `allowReset` を設定してください。 -- +- `DatePicker.Select`、`Dropdown` - `selectedItem`、`items`、および `groups` ゲッターが公開されました。 ## 非推奨 @@ -846,41 +844,41 @@ DashboardTile ### 削除済 - デフォルトの属性を隠していた独自の `dir` 属性が削除されました。これは互換性のある変更です。 -- - `ariaLabel` シャドウ プロパティ。これは互換性のある変更です。 -- - `ariaLabelledBy` シャドウ属性。これは互換性のある変更です。 -- - `ariaLabelledBy` シャドウ属性。これは互換性のある変更です。 -- - `ariaLabelledBy` シャドウ属性。これは互換性のある変更です。 +- `Slider` - `ariaLabel` シャドウ プロパティ。これは互換性のある変更です。 +- `Checkbox` - `ariaLabelledBy` シャドウ属性。これは互換性のある変更です。 +- `Switch` - `ariaLabelledBy` シャドウ属性。これは互換性のある変更です。 +- `Radio` - `ariaLabelledBy` シャドウ属性。これは互換性のある変更です。 - `RadialChart` - New Label Mode - The for the now exposes a property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. + The `CategoryAngleAxis` for the now exposes a `LabelMode` property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. ### **{PackageVerChanges-23-2-JAN}** -- New [](./grids/hierarchical-grid/overview.mdx) component +- New [`HierarchicalGrid`](./grids/hierarchical-grid/overview.mdx) component ### {PackageCharts} (チャート) -- [チャートのハイライト表示フィルター](./charts/features/chart-highlight-filter.mdx) - は、データのサブセットの内外でハイライト表示およびアニメーション化する方法を公開するようになりました。このハイライト表示の表示はシリーズのタイプによって異なります。列およびエリア シリーズの場合、サブセットはデータの合計セットの上に表示され、サブセットはシリーズの実際のブラシによって色付けされ、合計セットは不透明度を下げます。折れ線シリーズの場合、サブセットは点線で表示されます。 +- [チャートのハイライト表示フィルター](./charts/features/chart-highlight-filter.mdx) - `CategoryChart` と `XamDataChart` は、データのサブセットの内外でハイライト表示およびアニメーション化する方法を公開するようになりました。このハイライト表示の表示はシリーズのタイプによって異なります。列およびエリア シリーズの場合、サブセットはデータの合計セットの上に表示され、サブセットはシリーズの実際のブラシによって色付けされ、合計セットは不透明度を下げます。折れ線シリーズの場合、サブセットは点線で表示されます。 ### **{PackageVerChanges-23-2-DEC}** -- New component -- New component -- - - New property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. - - New property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. - - New property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. -- , , , - - `Readonly` has been renamed to -- - - `Maxlength` has been renamed to - - `Minlength` has been renamed to -- +- New `Textarea` component +- New `ButtonGroup` component +- `DockManager` + - New `ProximityDock` property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. + - New `ContainedInBoundaries` property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. + - New `ShowPaneHeaders` property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. +- `Input`, `MaskInput`, `DateTimeInput`, `Rating` + - `Readonly` has been renamed to `DatePicker.ReadOnly` +- `Input` + - `Maxlength` has been renamed to `MaxLength` + - `Minlength` has been renamed to `MinLength` +- `Tree` - Added `toggleNodeOnClick` property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. -- +- `Rating` - `allowReset` added. When enabled selecting the same value will reset the component. **Behavioral change** - In previous releases this was the default behavior of the rating component. Make sure to set `allowReset` if you need to keep this behavior in your application. -- , +- `DatePicker.Select`, `Dropdown` - exposed `selectedItem`, `items` and `groups` getters @@ -892,10 +890,10 @@ DashboardTile #### **{PackageVerChanges-23-2}** - Removed our own `dir` attribute which shadowed the default one. This is a non-breaking change. -- - `ariaLabel` shadowed property. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. -- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Slider` - `ariaLabel` shadowed property. This is a non-breaking change. +- `Checkbox` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Switch` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- `Radio` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. ## {PackageGrids} - Toolbar - @@ -907,7 +905,7 @@ DashboardTile ### 新しいコンポーネント -- [Toolbar](./menus/toolbar.mdx) コンポーネントは、主にチャート コンポーネントで使用される UI 操作のコンパニオン コンテナーです。ツールバーは、 または コンポーネントにリンクされると、プロパティとツール項目のプリセットで動的に更新されます。プロジェクト用のカスタム ツールを作成して、エンド ユーザーが変更を提供できるようになり、無限のカスタマイズが可能になります。 +- [Toolbar](./menus/toolbar.mdx) コンポーネントは、主にチャート コンポーネントで使用される UI 操作のコンパニオン コンテナーです。ツールバーは、`XamDataChart` または `CategoryChart` コンポーネントにリンクされると、プロパティとツール項目のプリセットで動的に更新されます。プロジェクト用のカスタム ツールを作成して、エンド ユーザーが変更を提供できるようになり、無限のカスタマイズが可能になります。 ## {PackageCharts} (チャート) @@ -918,7 +916,7 @@ DashboardTile - ブラウザー / 画面サイズに基づいた水平ラベル回転のレスポンシブ レイアウト。 - すべてのプラットフォームでの丸型ラベルの描画が強化されました。 - StackedFragmentSeries にマーカー プロパティを追加しました。 -- プロパティを追加しました。 +- `SeriesViewer.ShouldPanOnMaximumZoom` プロパティを追加しました。 - 新しいカテゴリ軸プロパティ: - ZoomMaximumCategoryRange - ZoomMaximumItemSpan @@ -940,35 +938,35 @@ DashboardTile ### {PackageGrids} (データ グリッド) -- **{IgPrefix}Column** を に変更しました。 -- **GridCellEventArgs** を に変更しました。 -- **GridSelectionMode** を に変更しました。 -- **SummaryOperand** を に変更しました。 +- **{IgPrefix}Column** を `DataGridColumn` に変更しました。 +- **GridCellEventArgs** を `DataGridCellEventArgs` に変更しました。 +- **GridSelectionMode** を `DataGridSelectionMode` に変更しました。 +- **SummaryOperand** を `DataSourceSummaryOperand` に変更しました。 ## **{PackageVerChanges-22-1}** ### {PackageCharts} (チャート) -- 高度に構成可能な [DataLegend](./charts/features/chart-data-legend.mdx) コンポーネントが追加されました。これは、 とよく似たコンポーネントですが、シリーズの値を表示し、シリーズの行と値の列をフィルタリングし、値のスタイルとフォーマットを行うための多くの構成プロパティを提供します。 +- 高度に構成可能な [DataLegend](./charts/features/chart-data-legend.mdx) コンポーネントが追加されました。これは、`SeriesViewer.Legend` とよく似たコンポーネントですが、シリーズの値を表示し、シリーズの行と値の列をフィルタリングし、値のスタイルとフォーマットを行うための多くの構成プロパティを提供します。 - 高度に構成可能な [DataToolTip](./charts/features/chart-data-tooltip.mdx) が追加されました。これは、シリーズの値とタイトル、およびシリーズの凡例バッジをツールチップに表示します。これは、すべてのチャート タイプのデフォルトのツールチップになりました。 -- 積層シリーズのアニメーションとトランジションインのサポートが追加されました。 プロパティを true に設定すると、アニメーションを有効にできます。そこから、 プロパティを設定してアニメーションが完了するまでの時間を決定し、 でアニメーションのタイプを決定できます。 -- 追加された `AssigningCategoryStyle` イベントは、 のすべてのシリーズで利用できるようになりました。このイベントは、背景色の やハイライト表示など、シリーズ項目の外観を条件付きで構成する場合に処理されます。 -- CalloutLayer の新しい 列挙体。チャート内のどこにコールアウトを配置するかを制限するために使用されます。デフォルトでは、コールアウトは最適な場所に配置されますが、これは `TopLeft`、`TopRight`、`BottomLeft`、または `BottomRight` を強制するために使用されます。 +- 積層シリーズのアニメーションとトランジションインのサポートが追加されました。`IsTransitionInEnabled` プロパティを true に設定すると、アニメーションを有効にできます。そこから、`TransitionInDuration` プロパティを設定してアニメーションが完了するまでの時間を決定し、`TransitionInMode` でアニメーションのタイプを決定できます。 +- 追加された `AssigningCategoryStyle` イベントは、`XamDataChart` のすべてのシリーズで利用できるようになりました。このイベントは、背景色の `CrosshairLayer.Fill` やハイライト表示など、シリーズ項目の外観を条件付きで構成する場合に処理されます。 +- CalloutLayer の新しい `AllowedPositions` 列挙体。チャート内のどこにコールアウトを配置するかを制限するために使用されます。デフォルトでは、コールアウトは最適な場所に配置されますが、これは `TopLeft`、`TopRight`、`BottomLeft`、または `BottomRight` を強制するために使用されます。 - 注釈レイヤーに追加された新しいコーナー半径プロパティ。各コールアウトのコーナーを丸めるために使用されます。コーナー半径がデフォルトで追加されていることに注意してください。 - - CalloutLayer の - - FinalValueLayer の - - CrosshairLayer の -- さまざまな方法でスクロールバーを有効にするための新しい および 列挙体。 または と組み合わせると、チャートをナビゲートするための軸に沿ったスクロールバーを、常設またはフェードインおよびフェードアウトすることができます。 -- 新しい は、軸がスケールの最後にラベルを表示することを優先するかどうかを決定します。数値軸 (、`PercentChangeAxis` など) とのみ互換性があります。 -- 新しい は、軸に要求された軸範囲にスプライン形状を含めるかどうかを決定します。 -- 新しい は、 を使用するときにプロットされたシリーズの最大許容値を決定します。ギャップは、プロットされたシリーズの列またはバー間のスペースの量を決定します。 -- 新しい は、 を使用するときに、プロットされたシリーズの最小許容ピクセルベース値を決定し、各カテゴリ間に常にある程度の間隔があることを保証します。 + - CalloutLayer の `CalloutCornerRadius` + - FinalValueLayer の `AxisAnnotationBackgroundCornerRadius` + - CrosshairLayer の `XAxisAnnotationBackgroundCornerRadius` と `YAxisAnnotationBackgroundCornerRadius` +- さまざまな方法でスクロールバーを有効にするための新しい `SeriesViewer.HorizontalViewScrollbarMode` および `SeriesViewer.VerticalViewScrollbarMode` 列挙体。`XYChart.IsVerticalZoomEnabled` または `XYChart.IsHorizontalZoomEnabled` と組み合わせると、チャートをナビゲートするための軸に沿ったスクロールバーを、常設またはフェードインおよびフェードアウトすることができます。 +- 新しい `NumericXAxis.FavorLabellingScaleEnd` は、軸がスケールの最後にラベルを表示することを優先するかどうかを決定します。数値軸 (`NumericXAxis`、`NumericYAxis`、`PercentChangeAxis` など) とのみ互換性があります。 +- 新しい `IsSplineShapePartOfRange` は、軸に要求された軸範囲にスプライン形状を含めるかどうかを決定します。 +- 新しい `XAxisMaximumGap` は、`XAxisGap` を使用するときにプロットされたシリーズの最大許容値を決定します。ギャップは、プロットされたシリーズの列またはバー間のスペースの量を決定します。 +- 新しい `XAxisMinimumGapSize` は、`XAxisGap` を使用するときに、プロットされたシリーズの最小許容ピクセルベース値を決定し、各カテゴリ間に常にある程度の間隔があることを保証します。 ### {PackageGrids} (データ グリッド) 新機能 - [行ページング](./grids/_shared/paging.mdx)を追加しました。これは、大量のデータセットを類似したコンテンツを持つ一連のページに分割するために使用されます。ページネーションを使用すると、データを設定された行数で表示することができ、ユーザーはスクロール バーを使用せずにデータを順次閲覧することができます。テーブル ページネーションの UI には通常、現在のページ、合計ページ、ユーザーがページをめくるためのクリック可能な [前へ] と [次へ] の矢印 / ボタンなどが含まれます。 -- It is now possible to apply a **dash array** to the different parts of the series of the . You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. +- It is now possible to apply a **dash array** to the different parts of the series of the `XamDataChart`. You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. ## **{PackageVerChanges-21-2.1}** @@ -977,7 +975,7 @@ Added significant improvements to default behaviors, and refined the Category Ch - Responsive layouts for horizontal label rotation based on browser / screen size. - Enhanced rendering for rounded labels on all platforms. - Added marker properties to StackedFragmentSeries. -- Added property. +- Added `SeriesViewer.ShouldPanOnMaximumZoom` property. - New Category Axis Properties: - ZoomMaximumCategoryRange - ZoomMaximumItemSpan @@ -998,32 +996,32 @@ Added significant improvements to default behaviors, and refined the Category Ch - GroupSortDescriptions -[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using | . These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. +[Chart Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using `XYChart.IncludedProperties` | `XYChart.ExcludedProperties`. These properties on the chart are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. ### {PackageGrids} (データ グリッド) -- Changed **{IgPrefix}Column** to -- Changed **GridCellEventArgs** to -- Changed **GridSelectionMode** to -- Changed **SummaryOperand** to +- Changed **{IgPrefix}Column** to `DataGridColumn` +- Changed **GridCellEventArgs** to `DataGridCellEventArgs` +- Changed **GridSelectionMode** to `DataGridSelectionMode` +- Changed **SummaryOperand** to `DataSourceSummaryOperand` ## データ グリッド ### {PackageInputs} (入力) -- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the , but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. +- Added the highly-configurable [DataLegend](./charts/features/chart-data-legend.mdx) component, which works much like the `SeriesViewer.Legend`, but it shows values of series and provides many configuration properties for filtering series rows and values columns, styling and formatting values. - Added the highly-configurable [DataToolTip](./charts/features/chart-data-tooltip.mdx) which displays values and titles of series as well as legend badges of series in a tooltip. This is now the default tooltip for all chart types. -- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the property to true. From there, you can set the property to determine how long your animation should take to complete and the to determine the type of animation that takes place. -- Added `AssigningCategoryStyle` event, is now available to all series in . This event is handled when you want to conditionally configure aspects of the series items such as background-color and highlighting. -- New enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. +- Added animation and transition-in support for Stacked Series. Animations can be enabled by setting the `IsTransitionInEnabled` property to true. From there, you can set the `TransitionInDuration` property to determine how long your animation should take to complete and the `TransitionInMode` to determine the type of animation that takes place. +- Added `AssigningCategoryStyle` event, is now available to all series in `XamDataChart`. This event is handled when you want to conditionally configure aspects of the series items such as `CrosshairLayer.Fill` background-color and highlighting. +- New `AllowedPositions` enumeration for CalloutLayer. Used to limit where the callouts are to be placed within the chart. By default, the callouts are intelligently placed in the best place but this used to force for example `TopLeft`, `TopRight`, `BottomLeft` or `BottomRight`. - New corner radius properties added for Annotation Layers; used to round-out the corners of each of the callouts. Note, a corner radius has now been added by default. - - for CalloutLayer - - for FinalValueLayer - - and for CrosshairLayer -- New and enumeration to enable scrollbars in various ways. When paired with or , you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. -- New , determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. , , `PercentChangeAxis`). -- New determines whether to include the spline shape in the axis range requested of the axis. -- New , determines the maximum allowed value for the plotted series when using . The gap determines the amount of space between columns or bars of plotted series. -- New , determines the minimum allowed pixel-based value for the plotted series when using to ensure there is always some spacing between each category. + - `CalloutCornerRadius` for CalloutLayer + - `AxisAnnotationBackgroundCornerRadius` for FinalValueLayer + - `XAxisAnnotationBackgroundCornerRadius` and `YAxisAnnotationBackgroundCornerRadius` for CrosshairLayer +- New `SeriesViewer.HorizontalViewScrollbarMode` and `SeriesViewer.VerticalViewScrollbarMode` enumeration to enable scrollbars in various ways. When paired with `XYChart.IsVerticalZoomEnabled` or `XYChart.IsHorizontalZoomEnabled`, you'll be able to persist or fade-in and out the scrollbars along the axes to navigate the chart. +- New `NumericXAxis.FavorLabellingScaleEnd`, determines whether the axis should favor emitting a label at the end of the scale. Only compatible with numeric axes (e.g. `NumericXAxis`, `NumericYAxis`, `PercentChangeAxis`). +- New `IsSplineShapePartOfRange` determines whether to include the spline shape in the axis range requested of the axis. +- New `XAxisMaximumGap`, determines the maximum allowed value for the plotted series when using `XAxisGap`. The gap determines the amount of space between columns or bars of plotted series. +- New `XAxisMinimumGapSize`, determines the minimum allowed pixel-based value for the plotted series when using `XAxisGap` to ensure there is always some spacing between each category. ### 日付ピッカー @@ -1036,29 +1034,29 @@ Added significant improvements to default behaviors, and refined the Category Ch #### {PackageCharts} (チャート) このリリースでは、地理マップとすべてのチャート コンポーネントのビジュアル デザインと構成オプションにいくつかの改善と簡素化が導入されています。 -- プロパティのタイプを **AxisLabelLocation** から **YAxisLabelLocation** に変更しました。 -- の **AxisLabelLocation** から **XAxisLabelLocation** に プロパティのタイプを変更しました。 -- プロパティを追加しました。 -- 凡例で の地理的なシリーズを表すためのサポートが追加されました。 -- にデフォルトの十字線を追加しました。 -- にデフォルトの十字線の注釈を追加しました。 -- にデフォルトで最終値の注釈を追加しました。 +- `FinancialChart` と `CategoryChart` の `XYChart.YAxisLabelLocation` プロパティのタイプを **AxisLabelLocation** から **YAxisLabelLocation** に変更しました。 +- `FinancialChart` の **AxisLabelLocation** から **XAxisLabelLocation** に `XYChart.XAxisLabelLocation` プロパティのタイプを変更しました。 +- `CategoryChart` に `XYChart.XAxisLabelLocation` プロパティを追加しました。 +- 凡例で `XamGeographicMap` の地理的なシリーズを表すためのサポートが追加されました。 +- `FinancialChart` と`CategoryChart` にデフォルトの十字線を追加しました。 +- `FinancialChart` と`CategoryChart` にデフォルトの十字線の注釈を追加しました。 +- `FinancialChart` にデフォルトで最終値の注釈を追加しました。 - カテゴリ チャートとファイナンシャル チャートに新しいプロパティを追加しました: - - 十字線をカスタマイズするための およびその他のプロパティ - - 十字線の注釈をカスタマイズするための およびその他のプロパティ - - 最終値の注釈をカスタマイズするための およびその他のプロパティ - - シリーズ塗りつぶしの不透明度を変更できる (エリア チャートなど) - - マーカーの厚さを変更できる + - 十字線をカスタマイズするための `XYChart.CrosshairsLineThickness` およびその他のプロパティ + - 十字線の注釈をカスタマイズするための `XYChart.CrosshairsAnnotationXAxisBackground` およびその他のプロパティ + - 最終値の注釈をカスタマイズするための `XYChart.FinalValueAnnotationsBackground` およびその他のプロパティ + - シリーズ塗りつぶしの不透明度を変更できる `XYChart.AreaFillOpacity` (エリア チャートなど) + - マーカーの厚さを変更できる `XYChart.MarkerThickness` - カテゴリ チャート、ファイナンシャル チャート、データ チャート、および地理マップに新しいプロパティを追加しました。 - - 同じチャート内の複数のシリーズにどのマーカー タイプを割り当てることができる - - 凡例で表されるすべてのシリーズのバッジの形状を設定するための - - 凡例のすべてのシリーズにバッジの複雑さを設定するための + - 同じチャート内の複数のシリーズにどのマーカー タイプを割り当てることができる `SeriesViewer.MarkerAutomaticBehavior` + - 凡例で表されるすべてのシリーズのバッジの形状を設定するための `SeriesViewer.LegendItemBadgeShape` + - 凡例のすべてのシリーズにバッジの複雑さを設定するための `SeriesViewer.LegendItemBadgeMode` - データ チャートと地理マップのシリーズに新しいプロパティを追加しました。 - - 凡例で表される特定のシリーズにバッジの形状を設定するための - - 凡例の特定のシリーズにバッジの複雑さを設定するための + - 凡例で表される特定のシリーズにバッジの形状を設定するための `SeriesViewer.LegendItemBadgeShape` + - 凡例の特定のシリーズにバッジの複雑さを設定するための `SeriesViewer.LegendItemBadgeMode` - カテゴリ チャートとシリーズで、デフォルトの垂直十字線ストロークを#000000 から #BBBBBB に変更しました。 -- 同じチャートにプロットされたすべてのシリーズのマーカーの図形を円に変更しました。これは、チャートの プロパティを `SmartIndexed` 列挙値に設定することで元に戻すことができます。 -- チャートの凡例のシリーズの簡略化された図形で、円、線、または四角のみを表示します。これは、チャートの プロパティを `MatchSeries` 列挙値に設定することで元に戻すことができます。 +- 同じチャートにプロットされたすべてのシリーズのマーカーの図形を円に変更しました。これは、チャートの `SeriesViewer.MarkerAutomaticBehavior` プロパティを `SmartIndexed` 列挙値に設定することで元に戻すことができます。 +- チャートの凡例のシリーズの簡略化された図形で、円、線、または四角のみを表示します。これは、チャートの `SeriesViewer.LegendItemBadgeMode` プロパティを `MatchSeries` 列挙値に設定することで元に戻すことができます。 - アクセシビリティを向上させるために、すべてのチャートに表示されるシリーズとマーカーのカラー パレットを変更しました | 古いのブラシ/アウトライン | 新のアウトライン/ブラシ | @@ -1071,13 +1069,13 @@ Added significant improvements to default behaviors, and refined the Category Ch - Changed ValueChanged event to `SelectedValueChanged`. #### {PackageCharts} (チャート) -このリリースでは、すべてのチャート コンポーネントに、いくつかの新しく改善されたビジュアル デザインと構成オプションが導入されています。例えば、、および 。 +このリリースでは、すべてのチャート コンポーネントに、いくつかの新しく改善されたビジュアル デザインと構成オプションが導入されています。例えば、`XamDataChart`、`CategoryChart`、および `FinancialChart`。 ## チャート凡例 -- バブル、ドーナツ、および円チャートで使用できる水平方向の プロパティを ItemLegend に追加しました。 -- プロパティの追加 - 凡例項目にホバーした時にシリーズのハイライト表示を有効にします。 +- バブル、ドーナツ、および円チャートで使用できる水平方向の `Toolbar.Orientation` プロパティを ItemLegend に追加しました。 +- `SeriesViewer.LegendHighlightingMode` プロパティの追加 - 凡例項目にホバーした時にシリーズのハイライト表示を有効にします。 ### {PackageMaps} (GeoMap) @@ -1096,31 +1094,31 @@ Added significant improvements to default behaviors, and refined the Category Ch ### {PackageGrids} (データ グリッド) -- 、(別名: Excel スタイルの編集) を追加し、入力するとすぐに編集を開始します。 -- プロパティを追加しました - デフォルトでは、編集モードに入るにはダブル クリックが必要です。これを `SingleClick` に設定して、新しいセルを選択するときに編集モードを実行できるようにすることができます。 -- プロパティの追加 - 別名 Excel スタイル ナビゲーション (Enter 動作) - Enter キーの動作を制御します。たとえば、オプションは none、edit、move up、down、left、right です。 -- プロパティの追加 - 編集モードでは、このプロパティは Enter キーが押されたときを制御します。例えば、オプションは (下、上、右、左のセルに移動) です。 -- メソッドを追加しました。 -- 行範囲の選択を追加しました - プロパティを MultipleRow に設定すると、次の新しい機能が含まれるようになりました: +- `EditOnKeyPress`、(別名: Excel スタイルの編集) を追加し、入力するとすぐに編集を開始します。 +- `Grid.EditModeClickAction` プロパティを追加しました - デフォルトでは、編集モードに入るにはダブル クリックが必要です。これを `SingleClick` に設定して、新しいセルを選択するときに編集モードを実行できるようにすることができます。 +- `EnterKeyBehaviors` プロパティの追加 - 別名 Excel スタイル ナビゲーション (Enter 動作) - Enter キーの動作を制御します。たとえば、オプションは none、edit、move up、down、left、right です。 +- `EnterKeyBehaviorAfterEdit` プロパティの追加 - 編集モードでは、このプロパティは Enter キーが押されたときを制御します。例えば、オプションは (下、上、右、左のセルに移動) です。 +- `Grid.SelectAllRows` メソッドを追加しました。 +- 行範囲の選択を追加しました - `GridSelectionMode` プロパティを MultipleRow に設定すると、次の新しい機能が含まれるようになりました: - クリックしてドラッグし、行を選択します。 - SHIFT キーを押しながらクリックして、複数の行を選択します。 - SHIFT キーを押しながら + 矢印キーを押して、複数の行を選択します。 -- スペース バーを押すと、MultipleRow または SingleRow に設定された プロパティを介してアクティブな行の選択が切り替わります。 +- スペース バーを押すと、MultipleRow または SingleRow に設定された `GridSelectionMode` プロパティを介してアクティブな行の選択が切り替わります。 - 列オプション ダイアログに列集計を追加しました。 ## {PackageInputs} (入力) ### 日付ピッカー -- - 現在の日付のボタンの表示を切り替えます。 -- - 日付値の上にラベルを追加します。 -- プロパティ - 値が選択されていない場合にカスタム テキストを追加します。 -- - 入力日付文字列をカスタマイズします。(例: `yyyy-MM-dd`) -- - 選択した日付を LongDate または ShortDate のどちらとして表示するかを指定します。 -- - 週の最初の曜日を指定します。 -- - 年の最初の週をいつ表示するかを指定します。例えば、最初の 1 週間、最初の 4 日間の週です。 -- - 週番号の表示を切り替えます。 -- & - 使用可能の選択できる日付の範囲を指定する日付制限。 +- `ShowTodayButton` - 現在の日付のボタンの表示を切り替えます。 +- `DatePicker.Label` - 日付値の上にラベルを追加します。 +- `DatePicker.Placeholder` プロパティ - 値が選択されていない場合にカスタム テキストを追加します。 +- `IWorksheetCellFormat.FormatString` - 入力日付文字列をカスタマイズします。(例: `yyyy-MM-dd`) +- `DateFormat` - 選択した日付を LongDate または ShortDate のどちらとして表示するかを指定します。 +- `FirstDayOfWeek` - 週の最初の曜日を指定します。 +- `FirstWeekOfYear` - 年の最初の週をいつ表示するかを指定します。例えば、最初の 1 週間、最初の 4 日間の週です。 +- `ShowWeekNumbers` - 週番号の表示を切り替えます。 +- `MinDate` & `MaxDate` - 使用可能の選択できる日付の範囲を指定する日付制限。 - アクセシビリティの追加 - Changed Bar/Column/Waterfall series to have square corners instead of rounded corners @@ -1128,23 +1126,23 @@ Added significant improvements to default behaviors, and refined the Category Ch - Changed Scatter High Density series’ colors for heat max property from #ee5879 to #ee5879 - Changed Financial/Waterfall series’ `NegativeBrush` and `NegativeOutline` properties from #C62828 to #ee5879 - Changed marker's thickness to 2px from 1px -- Changed marker's fill to match the marker's outline for , , , . You can use set property to Normal to undo this change -- Compressed labelling for the and +- Changed marker's fill to match the marker's outline for `PointSeries`, `BubbleSeries`, `ScatterSeries`, `PolarScatterSeries`. You can use set `XYChart.MarkerFillMode` property to Normal to undo this change +- Compressed labelling for the `TimeXAxis` and `OrdinalTimeXAxis` - New Marker Properties: - - series. - Can be set to `MatchMarkerOutline` so the marker depends on the outline - - series. - Can be set to a value 0 to 1 - - series. - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color + - series.`XYChart.MarkerFillMode` - Can be set to `MatchMarkerOutline` so the marker depends on the outline + - series.`XYChart.MarkerFillOpacity` - Can be set to a value 0 to 1 + - series.`XYChart.MarkerOutlineMode` - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color - New Series Property: - - series. - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series -- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the , listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series +- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the `XYChart.ComputedPlotAreaMarginMode`, listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - New Highlighting Properties - - chart. - Sets whether hovered or non-hovered series to fade, brighten - - chart. - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item + - chart.`SeriesViewer.HighlightingMode` - Sets whether hovered or non-hovered series to fade, brighten + - chart.`SeriesViewer.HighlightingBehavior` - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item - Note, in previous releases the highlighting was limited to fade on hover. - Added Highlighting Stacked, Scatter, Polar, Radial, and Shape series: - Added Annotation layers to Stacked, Scatter, Polar, Radial, and Shape series: @@ -1167,8 +1165,8 @@ for example: #### **{PackageVerChangedFields}** -- Added horizontal property to ItemLegend that can be used with Bubble, Donut, and Pie Chart -- Added property - Enables series highlighting when hovering over legend items +- Added horizontal `Toolbar.Orientation` property to ItemLegend that can be used with Bubble, Donut, and Pie Chart +- Added `SeriesViewer.LegendHighlightingMode` property - Enables series highlighting when hovering over legend items ### {PackageGrids} (データ グリッド) @@ -1181,16 +1179,16 @@ for example: ### **{PackageVerRenamedGrid}** -- Added aka Excel-style Editing, instantly begin editing when typing. -- Added property - By default double-clicking is required to enter edit mode. This can be set to `SingleClick` to allow for edit mode to occur when selecting a new cell. -- Added property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) -- Added property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) -- Added - method. -- Added Row Range Selection - With property set to MultipleRow the following new functionality is now included: +- Added `EditOnKeyPress` aka Excel-style Editing, instantly begin editing when typing. +- Added `Grid.EditModeClickAction` property - By default double-clicking is required to enter edit mode. This can be set to `SingleClick` to allow for edit mode to occur when selecting a new cell. +- Added `EnterKeyBehaviors` property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) +- Added `EnterKeyBehaviorAfterEdit` property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) +- Added `Grid.SelectAllRows` - method. +- Added Row Range Selection - With `GridSelectionMode` property set to MultipleRow the following new functionality is now included: - Click and drag to select rows - SHIFT and click to select multiple rows. - SHIFT and press the + arrow keys to select multiple rows. -- Pressing space bar toggles selection of active row via property set to MultipleRow or SingleRow +- Pressing space bar toggles selection of active row via `GridSelectionMode` property set to MultipleRow or SingleRow - Added Column Summaries to Column Options Dialog. ### {PackageGrids} (データ グリッド) diff --git a/docs/xplat/src/content/jp/components/general-changelog-dv-wc.mdx b/docs/xplat/src/content/jp/components/general-changelog-dv-wc.mdx index ecb8e7e2cb..0a60a3d71e 100644 --- a/docs/xplat/src/content/jp/components/general-changelog-dv-wc.mdx +++ b/docs/xplat/src/content/jp/components/general-changelog-dv-wc.mdx @@ -22,8 +22,6 @@ import Badge from 'igniteui-astro-components/components/mdx/Badge.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {ProductName} 変更ログ @@ -101,18 +99,18 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ### {PackageGrids} (グリッド) -- +- `Grid`、`TreeGrid`、`HierarchicalGrid`、`PivotGrid` - グリッドに表示されるデータに基づいてスクロール スロットルを動的に調整することでパフォーマンスを改善しました。 **重大な変更** -- +- `Grid`、`TreeGrid`、`HierarchicalGrid`、`PivotGrid` - 元の `data` 配列の変更 (元の配列へのレコードの追加/削除/移動など) は自動的に検出されなくなりました。変更を検出するには、コンポーネントに配列参照の変更が必要です。 **ローカライゼーション (i18n)** -- - - グリッド コンポーネントで日付や数値などのデータをフォーマットおよびレンダリングするための新しい `Intl` 実装。以前 `igniteui-webcomponents` で使用されていた の `Intl` 実装を更新しました。 +- `Grid`、`TreeGrid`、`HierarchicalGrid`、`PivotGrid`、`Combo`、`DatePicker`、`DateRangePicker`、`Calendar`、`Carousel`、`Chip`、`Input`、`Tree` + - グリッド コンポーネントで日付や数値などのデータをフォーマットおよびレンダリングするための新しい `Intl` 実装。以前 `igniteui-webcomponents` で使用されていた `Calendar`、`DatePicker`、`DateRangePicker` の `Intl` 実装を更新しました。 - 現在サポートされているすべての言語のリソース文字列を持つすべてのコンポーネントに対する新しいローカライゼーション実装。 - 新しいパブリック ローカライゼーション API と、新しいリソースを含む `igniteui-i18n-resources` という名前のパッケージ。 **PDF エクスポート** @@ -172,18 +170,18 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と ### {PackageCharts} (チャート) -- , , , +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid` - Improved performance by dynamically adjusting the scroll throttle based on the data displayed in grid. **Breaking Changes** -- , , , +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid` - Original `data` array mutations (like adding/removing/moving records in the original array) are no longer detected automatically. Components need an array reference change for the change to be detected. **Localization(i18n)** -- , , , , , , , , , , , - - New `Intl` implementation for the grid components that format and render data like dates and numbers. Updated `Intl` implementation for , , and that previously used it in `igniteui-webcomponents`. +- `Grid`, `TreeGrid`, `HierarchicalGrid`, `PivotGrid`, `Combo`, `DatePicker`, `DateRangePicker`, `Calendar`, `Carousel`, `Chip`, `Input`, `Tree` + - New `Intl` implementation for the grid components that format and render data like dates and numbers. Updated `Intl` implementation for `Calendar`, `DatePicker`, and `DateRangePicker` that previously used it in `igniteui-webcomponents`. - New localization implementation for the currently supported languages for all components that have resource strings in the currently supported languages. - New public localization API and package named `igniteui-i18n-resources` containing the new resources that are used in conjunction. **PDF export** @@ -213,7 +211,7 @@ Dropdown menus and dialogs are now using HTML Popover API to provide better posi #### 新しいコンポーネント -- コンポーネントを追加しました。 +- `Chat` コンポーネントを追加しました。 - Adjusted the schema generation to account for more items to make it more likely to find valid values for properties. @@ -223,9 +221,9 @@ Dropdown menus and dialogs are now using HTML Popover API to provide better posi #### **{PackageVerChanges-25-1-SEP}** -In {ProductName}, you can now annotate the with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. +In {ProductName}, you can now annotate the `XamDataChart` with slice, strip, and point annotations at runtime using the new user annotations feature. This allows the end user to add more details to the plot such as calling out single important events such as company quarter reports by using the slice annotation or events that have a duration by using the strip annotation. You can also call out individual points on the plotted series by using the point annotation or any combination of these three. -This is directly integrated with the available tools of the . +This is directly integrated with the available tools of the `PivotGrid.Toolbar`. {Platform} user-annotation-create @@ -233,13 +231,13 @@ This is directly integrated with the available tools of the -- +- `CategoryAngleAxis.ShouldAvoidAnnotationCollisions` +- `CategoryAngleAxis.ShouldAutoTruncateAnnotations` ### Azure マップ画像のサポート - は、 Azure ベースのマップ画像をサポートし、開発者は複数のアプリケーション タイプにわたって詳細かつ動的なマップを表示できるようになりました。複数のマップ レイヤーを組み合わせて地理データを視覚化し、インタラクティブなマッピング エクスペリエンスを簡単に作成できます。 +`XamGeographicMap` は、 Azure ベースのマップ画像をサポートし、開発者は複数のアプリケーション タイプにわたって詳細かつ動的なマップを表示できるようになりました。複数のマップ レイヤーを組み合わせて地理データを視覚化し、インタラクティブなマッピング エクスペリエンスを簡単に作成できます。 ### {PackageCharts} @@ -256,10 +254,10 @@ Ability for axis annotations to automatically detect collisions and truncate to ### 対応軸 -X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸を簡単に複製できるようになりました。 プロパティを有効にすると、複製された軸はチャートの反対側に配置され、そこから各軸プロパティを設定できます。 +X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸を簡単に複製できるようになりました。`CategoryAngleAxis.CompanionAxisEnabled` プロパティを有効にすると、複製された軸はチャートの反対側に配置され、そこから各軸プロパティを設定できます。 ### RadialPieSeries インセット アウトライン - のアウトライン レンダリング方法を制御するために プロパティが追加されました。**true** に設定すると、アウトラインがスライス形状の内側に描画され、**false** (既定値) に設定すると、アウトラインはスライス形状の端に半分内側・半分外側で描画されます。 +`RadialPieSeries` のアウトライン レンダリング方法を制御するために `UseInsetOutlines` プロパティが追加されました。**true** に設定すると、アウトラインがスライス形状の内側に描画され、**false** (既定値) に設定すると、アウトラインはスライス形状の端に半分内側・半分外側で描画されます。 **重大な変更** @@ -267,17 +265,17 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 ```html - ``` +```
-- クラスの プロパティと プロパティが逆になっている問題が修正されました。これにより、 が返す値が変更されます。 +- `ChartMouseEventArgs` クラスの `PlotAreaPosition` プロパティと `ChartPosition` プロパティが逆になっている問題が修正されました。これにより、`PlotAreaPosition` と `ChartPosition` が返す値が変更されます。 ```html - ``` +``` @@ -294,7 +292,7 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 ```html - ``` +```
@@ -342,7 +340,7 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 #### 機能拡張 -The now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. +The `XamGeographicMap` now supports Azure-based map imagery, allowing developers to display detailed, dynamic maps across multiple application types. You can combine multiple map layers, visualize geographic data, and create interactive mapping experiences with ease. Note: Support for Bing Maps imagery is being phased out. Existing enterprise keys can still be used to access Bing Maps, ensuring your current applications continue to function while you transition to Azure maps. @@ -354,7 +352,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft - DataToolTipLayer、ItemToolTipLayer、CategoryToolTipLayer にスタイル設定用の新しいプロパティが追加されました: `ToolTipBackground`、`ToolTipBorderBrush`、および `ToolTipBorderThickness`。 -- DataLegend にスタイル設定用の新しいプロパティが追加されました: 、および はそれぞれ既定で transparent と 0 に設定されているため、境界線を表示するにはこれらのプロパティを設定する必要があります。 +- DataLegend にスタイル設定用の新しいプロパティが追加されました: `ContentBackground`、`ContentBorderBrush`、および `ContentBorderThickness`。`ContentBorderBrush` と `ContentBorderThickness` はそれぞれ既定で transparent と 0 に設定されているため、境界線を表示するにはこれらのプロパティを設定する必要があります。 #### IgcDataGrid @@ -366,7 +364,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft **Breaking Changes** -- A fix was made due to an issue where the and properties on class were reversed. This will change the values that and return. +- A fix was made due to an issue where the `PlotAreaPosition` and `ChartPosition` properties on `ChartMouseEventArgs` class were reversed. This will change the values that `PlotAreaPosition` and `ChartPosition` return. ### **{PackageVerChanges-25-1-AUG}** @@ -376,18 +374,18 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft [詳細はこちらをご参照ください](https://developer.mozilla.org/ja/docs/Web/CSS/:state) - フォーム関連カスタム要素の有効性の動作: 要素は `:user-invalid` を模倣しようとし、UI またはフォームの `requestSubmit()/reset()` 呼び出しを介して操作されない限り、無効スタイルは適用されません。 -- -- +- `DataGridColumn.SuffixText` +- `DataGridColumn.SuffixTextColor` - `SuffixTextFont` -- -- -- -- -- -- -- -- -- +- `DataGridColumn.SuffixIconName` +- `DataGridColumn.SuffixIconCollectionName` +- `DataGridColumn.SuffixIconStroke` +- `DataGridColumn.SuffixIconFill` +- `DataGridColumn.SuffixIconViewBoxLeft` +- `DataGridColumn.SuffixIconViewBoxTop` +- `DataGridColumn.SuffixIconViewBoxWidth` +- `DataGridColumn.SuffixIconViewBoxHeight` +- `DataGridColumn.TextDecoration` Please note that the maximum size available for the icons is 24x24. You can provide an icon that is larger or smaller than this, but you will need to configure the viewbox settings in order to properly scale it to fit in the 24x24 space so it is fully visible. @@ -428,11 +426,11 @@ Please note that the maximum size available for the icons is 24x24. You can prov - `igcChange` および `igcCancel` イベントの詳細では、基になるコンポーネントの `files` プロパティが返されるようになりました。 -- New properties added to the DataLegend to aid in styling: , , and . The and default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. +- New properties added to the DataLegend to aid in styling: `ContentBackground`, `ContentBorderBrush`, and `ContentBorderThickness`. The `ContentBorderBrush` and `ContentBorderThickness` default to transparent and 0 respectively, so in order to see these borders, you will need to set these properties. -- Added a new property to called that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. +- Added a new property to `ChartMouseEventArgs` called `WorldPosition` that provides the world relative position of the mouse. This position will be a value between 0 and 1 for both the X and Y axis within the axis space. -- Added to and . This allows you to configure the opacity applied to highlighted series. +- Added `SeriesViewer.HighlightingFadeOpacity` to `SeriesViewer` and `DomainChart`. This allows you to configure the opacity applied to highlighted series. - Expose `CalloutLabelUpdating` event for domain charts. @@ -483,7 +481,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov - データ注釈ストリップ レイヤー ### {PackageDashboards} (ダッシュボード) -- では、ソート、グループ化、フィルタリング、選択などの集計を DataGrid ビューからチャート視覚化に伝播できるようになりました。これは現在、 の `DashboardTile.ItemsSource` を `IgcLocalDataSource` のインスタンスにバインドすることによってサポートされています。 +- `DashboardTile` では、ソート、グループ化、フィルタリング、選択などの集計を DataGrid ビューからチャート視覚化に伝播できるようになりました。これは現在、`DashboardTile` の `DashboardTile.ItemsSource` を `IgcLocalDataSource` のインスタンスにバインドすることによってサポートされています。 ### {PackageGrids} @@ -515,14 +513,14 @@ For more details please visit: ### {PackageGrids} - **すべてのグリッド** - - プロパティを使用して初期フィルタリングの適用が可能になりました。 + - `FilteringExpressionsTree` プロパティを使用して初期フィルタリングの適用が可能になりました。 -- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. +- The [Data Tooltip](./charts/features/chart-data-tooltip.mdx) and [Data Legend](./charts/features/chart-data-legend.mdx) expose `LayoutMode` property that you can use to layout the contents of the tooltip or legend in a table or vertical layout structure. -- The property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. +- The `DefaultInteraction` property of the charts has been updated to include a new enumeration - `DragSelect` in which the dragged preview Rect will select the points contained within. -- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. +- The [ValueOverlay and ValueLayer](./charts/features/chart-overlays.mdx), in addition to the [Chart Data Annotations](./charts/features/chart-data-annotations.mdx) listed above now expose an `ValueLayer.OverlayText` property that can be used to overlay additional annotation text in the plot area. These appearance of these annotations can be configured by using the many OverlayText-prefixed properties. For example, the `OverlayTextBrush` property will configure the color of the overlay text. - [Trendline Layer](./charts/features/chart-trendlines.mdx) series type that allows you to apply a single trend line per trend line layer to a particular series. This allows the usage of multiple trend lines on a single series since you can have multiple [TrendlineLayer](./charts/features/chart-overlays.mdx) series types in the chart. @@ -530,11 +528,11 @@ For more details please visit: | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -| 28480 | | データ ソースを置き換えた際に未定義の参照エラーが発生する。| +| 28480 | `Combo` | データ ソースを置き換えた際に未定義の参照エラーが発生する。| | 25602 | `IgcDataGrid` | 日付特有のフィルター演算子を含むレイアウトを読み込むと、TypeError がコンソールに出力される。| | 30319 | `IgcDataGrid` | 値が変更されていないにもかかわらず、レコードがソートされる。| | 32598 | `IgcDataGrid` | 複数選択が正しく動作しない。 -| 36374 | | タッチ デバイスでフォームを送信すると、以前の値がバインドされる。| +| 36374 | `Input` | タッチ デバイスでフォームを送信すると、以前の値がバインドされる。| ### **{PackageVerChanges-24-2-FEB}** @@ -545,9 +543,9 @@ For more details please visit: ### 機能拡張 #### Toolbar -- に新しい `GroupHeaderTextStyle` プロパティを追加しました。設定されている場合、すべての アクションに適用されます。 -- タイトル テキストの水平方向の配置を制御する という新しいプロパティを に追加しました。 -- に、パネル内の項目間の間隔を制御する という新しいプロパティを追加しました。 +- `PivotGrid.Toolbar` と `ToolPanel` に新しい `GroupHeaderTextStyle` プロパティを追加しました。設定されている場合、すべての `ToolActionGroupHeader` アクションに適用されます。 +- タイトル テキストの水平方向の配置を制御する `SeriesViewer.TitleHorizontalAlignment` という新しいプロパティを `ToolAction` に追加しました。 +- `ToolActionSubPanel` に、パネル内の項目間の間隔を制御する `ToolPanel.ItemSpacing` という新しいプロパティを追加しました。 #### バグ修正 次の表は、このリリースの {ProductName} ツールセットに対して行われたバグ修正を示しています。 @@ -561,7 +559,7 @@ For more details please visit: ### **{PackageVerChanges-24-2-DEC}** - **All Grids** - - Allow applying initial filtering through property + - Allow applying initial filtering through `FilteringExpressionsTree` property ### {PackageCharts} @@ -573,16 +571,16 @@ For more details please visit: #### {PackageCharts} -- 新しい[データ円チャート](./charts/types/data-pie-chart.mdx) - は円ャートを表示する新しいコンポーネントです。このコンポーネントは、 と同様に動作し、基になるデータ モデルのプロパティを自動的に検出しながら、ItemLegend コンポーネントを介して選択、強調表示、アニメーション、凡例のサポートを可能にします。 +- 新しい[データ円チャート](./charts/types/data-pie-chart.mdx) - `DataPieChart` は円ャートを表示する新しいコンポーネントです。このコンポーネントは、`CategoryChart` と同様に動作し、基になるデータ モデルのプロパティを自動的に検出しながら、ItemLegend コンポーネントを介して選択、強調表示、アニメーション、凡例のサポートを可能にします。 ### {PackageGrids} - **すべてのグリッド** - 新しい `RowClick` イベントが追加されました。 -- - - に `sortable` プロパティが追加されました。 +- `PivotGrid` + - `PivotDimension` に `sortable` プロパティが追加されました。 - 水平レイアウトが追加されました。新しい `pivotUI` プロパティ内で `rowLayout` `horizontal` として有効にできます。 - - 水平レイアウトのみの行ディメンション サマリーが追加されました。`horizontalSummary` を **true** に設定することで、各 に対して有効にできます。 + - 水平レイアウトのみの行ディメンション サマリーが追加されました。`horizontalSummary` を **true** に設定することで、各 `PivotDimension` に対して有効にできます。 - 水平集計の位置を設定するための `horizontalSummariesPosition` プロパティを `pivotUI` に追加しました。 - 行ディメンションの行ヘッダーが追加されました。新しい `pivotUI` プロパティ内で `showHeaders` **true** として有効にできます。 - キーボード ナビゲーションで行ディメンションヘッダーや列ヘッダーから行ヘッダーへ移動できるようになりました。 @@ -590,20 +588,20 @@ For more details please visit: **重大な変更**: - **すべてのグリッド** - - + - `RowIsland` - `displayDensity` の非推奨のプロパティが削除されました。 - `actualColumns`、`contentColumns` プロパティの名前を、`actualColumnList` および `contentColumnList` に変更しました。すべての列を取得するには、`column` または `columnList` プロパティを使用してください。 - - `rowDelete` および `rowAdd` イベント引数タイプの名前を に変更しました。 - - `contextMenu` イベント引数タイプの名前を に変更しました。 - - イベントの `rowID` および `primaryKey` プロパティが削除されました。代わりに `rowKey` を使用してください。 -- + - `rowDelete` および `rowAdd` イベント引数タイプの名前を `RowDataCancelableEventArgs` に変更しました。 + - `contextMenu` イベント引数タイプの名前を `GridContextMenuEventArgs` に変更しました。 + - `GridEditEventArgs`、`GridEditDoneEventArgs`、`PinRowEventArgs` イベントの `rowID` および `primaryKey` プロパティが削除されました。代わりに `rowKey` を使用してください。 +- `PivotGrid` - `showPivotConfigurationUI` プロパティが削除されました。`pivotUI` を使用して、その中に新しい `showConfiguration` オプションを設定してください。 -- +- `Column` - `movable` プロパティが削除されました。グリッドの `moving` プロパティを使用してください。 - `columnChildren` プロパティが削除されました。代わりに `childColumns` を使用してください。 -- +- `ColumnGroup` - `children` プロパティが削除されました。代わりに `childColumns` を使用してください。 -- +- `Paginator` - `isFirstPageDisabled` および `isLastPageDisabled` プロパティが削除されました。代わりに、`isFirstPage` および `isLastPage` を使用してください。 ## **{PackageVerChanges-24-1-JUN}** @@ -612,30 +610,30 @@ For more details please visit: ### {PackageCommon} -- - ユーザー入力を制限することなく検証ルールを適用できるように を公開しました。 -- - プロパティは非推奨です。ドロップダウンは、ブラウザー ビューポートの最上位レイヤーにコンテナーをレンダリングするために `Popover` API を使用するようになったため、このプロパティは廃止されました。 -- - は非推奨です。分割ペイン レベルで isMaximized を true に設定しても、分割ペインはコンテナーとしてのみ機能し、最大化されて表示される実際のコンテンツがないため、実際の効果はありません。代わりに、 および/または プロパティを使用してください。 +- `Input`、`Textarea` - ユーザー入力を制限することなく検証ルールを適用できるように `Input.ValidateOnly` を公開しました。 +- `Dropdown` - `PositionStrategy` プロパティは非推奨です。ドロップダウンは、ブラウザー ビューポートの最上位レイヤーにコンテナーをレンダリングするために `Popover` API を使用するようになったため、このプロパティは廃止されました。 +- `DockManager` - `SplitPane` の `IsMaximized` は非推奨です。分割ペイン レベルで isMaximized を true に設定しても、分割ペインはコンテナーとしてのみ機能し、最大化されて表示される実際のコンテンツがないため、実際の効果はありません。代わりに、`TabGroupPane` および/または `ContentPane` の `SplitPane.IsMaximized` プロパティを使用してください。 ## {PackageGrids} ### {PackageCharts} -- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。 プロパティは、各シリーズのグループ化を切り替え、オプトインすると プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 +- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。`GroupRowVisible` プロパティは、各シリーズのグループ化を切り替え、オプトインすると `CrosshairLayer.DataLegendGroup` プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 ### {PackageGauges} -- - - ハイライト針の新しいラベル。 および、その他の HighlightLabel の多くのスタイル関連プロパティが追加されました。 +- `XamRadialGauge` + - ハイライト針の新しいラベル。`HighlightLabelText` と `HighlightLabelSnapsToNeedlePivot` および、その他の HighlightLabel の多くのスタイル関連プロパティが追加されました。 ## **{PackageVerChanges-23-2-MAR}** ### {PackageGrids} -- 新しい [](./grids/hierarchical-grid/overview.mdx) ンポーネント +- 新しい [`HierarchicalGrid`](./grids/hierarchical-grid/overview.mdx) ンポーネント -- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. +- New [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to plot slices similar to a pie chart, a type of data visualization where data points are represented as segments within a circular graph. -- +- `PivotGrid.Toolbar` - New ToolActionCheckboxList A new CheckboxList ToolAction that displays a collection of items with checkboxes for selecting. A grid inside ToolAction CheckboxList grows in height up to 5 items, then a scrollbar is displayed. @@ -650,35 +648,35 @@ For more details please visit: ### {PackageCharts} -- プロパティによる新しいデータ フィルタリング。フィルター式を適用して、チャート データをレコードのサブセットにフィルターします。大規模なデータのドリルダウンに使用できます。 +- `XYChart.InitialFilter` プロパティによる新しいデータ フィルタリング。フィルター式を適用して、チャート データをレコードのサブセットにフィルターします。大規模なデータのドリルダウンに使用できます。 - `RadialChart` - 新しいラベル モード - は、ラベルの位置をさらに構成できる プロパティを公開するようになりました。これにより、`Center` 列挙型を選択してデフォルト モードを切り替えることも、ラベルを円形のプロット領域に近づける新しいモード `ClosestPoint` を使用することもできます。 + `CategoryAngleAxis` は、ラベルの位置をさらに構成できる `LabelMode` プロパティを公開するようになりました。これにより、`Center` 列挙型を選択してデフォルト モードを切り替えることも、ラベルを円形のプロット領域に近づける新しいモード `ClosestPoint` を使用することもできます。 ## {PackageGauges} ### **{PackageVerChanges-23-2-JAN}** -- , - exposed to enable validation rules being enforced without restricting user input. -- - property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. -- - is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the property of and/or instead. +- `Input`, `Textarea` - exposed `Input.ValidateOnly` to enable validation rules being enforced without restricting user input. +- `Dropdown` - `PositionStrategy` property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. +- `DockManager` - `SplitPane` `IsMaximized` is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the `IsMaximized` property of `TabGroupPane` and/or `ContentPane` instead. ### {PackageCharts} -- [チャートのハイライト表示フィルター](./charts/features/chart-highlight-filter.mdx) - は、データのサブセットの内外でハイライト表示およびアニメーション化する方法を公開するようになりました。このハイライトの表示はシリーズのタイプによって異なります。列およびエリア シリーズの場合、サブセットはデータの合計セットの上に表示され、サブセットはシリーズの実際のブラシによって色付けされ、合計セットは不透明度を下げます。折れ線シリーズの場合、サブセットは点線で表示されます。 +- [チャートのハイライト表示フィルター](./charts/features/chart-highlight-filter.mdx) - `CategoryChart` と `XamDataChart` は、データのサブセットの内外でハイライト表示およびアニメーション化する方法を公開するようになりました。このハイライトの表示はシリーズのタイプによって異なります。列およびエリア シリーズの場合、サブセットはデータの合計セットの上に表示され、サブセットはシリーズの実際のブラシによって色付けされ、合計セットは不透明度を下げます。折れ線シリーズの場合、サブセットは点線で表示されます。 ### **{PackageVerChanges-23-2-DEC}** -- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property toggles grouping with each series opting in can assign group text via the property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. +- [Data Legend Grouping](./charts/features/chart-data-legend.mdx#{PlatformLower}-data-legend-grouping) & [Data Tooltip Grouping](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-data-tooltip-grouping-for-data-chart) - New grouping feature added. The property `GroupRowVisible` toggles grouping with each series opting in can assign group text via the `CrosshairLayer.DataLegendGroup` property. If the same value is applied to more than one series then they will appear grouped. Useful for large datasets that need to be categorized and organized for all users. -- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for and . Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. +- [Chart Selection](./charts/features/chart-data-selection.mdx) - New series selection styling. This is adopted broadly across all category, financial and radial series for `CategoryChart` and `XamDataChart`. Series can be clicked and shown a different color, brightened or faded, and focus outlines. Manage which items are effected through individual series or entire data item. Multiple series and markers are supported. Useful for illustrating various differences or similarities between values of a particular data item. Also `SelectedSeriesItemsChanged` event and `SeriesViewer.SelectedSeriesItems` are available for additional help to build out robust business requirements surrounding other actions that can take place within an application such as a popup or other screen with data analysis based on the selection. -- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the , to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. +- [Proportional Category Angle Axis](./charts/types/radial-chart.mdx) - New axes for the Radial Pie Series in the `XamDataChart`, to enable creating pie charts in the allowing robust visualizations using all the added power of the data chart. -- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the property. +- [Treemap Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-highlighting) - Now exposes a `SeriesViewer.HighlightingMode` property that allows you to configure the mouse-over highlighting of the items in the tree map. This property takes two options: `Brighten` where the highlight will apply to the item that you hover the mouse over only, and `FadeOthers` where the highlight of the hovered item will remain the same, but everything else will fade out. This highlight is animated, and can be controlled using the `SeriesViewer.HighlightingTransitionDuration` property. -- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new . Can be toggled via and styled via `FillBrushes`. +- [Treemap Percent-based Highlighting](./charts/types/treemap-chart.mdx#{PlatformLower}-treemap-percent-based-highlighting) - New percent-based highlighting, allowing nodes to represent progress or subset of a collection. The appearance is shown as a fill-in of its backcolor up to a specific value either by a member on your data item or by supplying a new `XYChart.HighlightedItemsSource`. Can be toggled via `SeriesViewer.HighlightedValuesDisplayMode` and styled via `FillBrushes`. -- - New option for ToolAction for outlining a border around specific tools of choice. +- `PivotGrid.Toolbar` - New `ToolActionGroupHeader.IsHighlighted` option for ToolAction for outlining a border around specific tools of choice. ### {PackageGrids} @@ -691,38 +689,38 @@ For more details please visit: - [Toolbar](./menus/toolbar.mdx) - クリップボードを介してチャートを画像に保存するための保存ツール アクションが追加されました。 - - ツールバーの プロパティを介して垂直方向が追加されました。デフォルトでは、ツールバーは水平方向ですが、ツールバーを垂直方向に表示できるようになり、ツールが左右にポップアップ表示されます。 + - ツールバーの `Toolbar.Orientation` プロパティを介して垂直方向が追加されました。デフォルトでは、ツールバーは水平方向ですが、ツールバーを垂直方向に表示できるようになり、ツールが左右にポップアップ表示されます。 - ツールバーの `renderImageFromText` メソッドを介してカスタム SVG アイコンのサポートが追加され、カスタム ツールの作成がさらに強化されました。 ### **{PackageVerChanges-23-1}** -- New Data Filtering via the property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. +- New Data Filtering via the `XYChart.InitialFilter` property. Apply filter expressions to filter the chart data to a subset of records. Can be used for drill down large data. - `RadialChart` - New Label Mode - The for the now exposes a property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. + The `CategoryAngleAxis` for the now exposes a `LabelMode` property that allows you to further configure the location of the labels. This allows you to toggle between the default mode by selecting the `Center` enum, or use the new mode, `ClosestPoint`, which will bring the labels closer to the circular plot area. ### {PackageLayouts} -- [Toolbar](./menus/toolbar.mdx) - このコンポーネントは、主にチャート コンポーネントで使用される UI 操作のコンパニオン コンテナーです。ツールバーは、 または コンポーネントにリンクされると、プロパティとツール項目のプリセットで動的に更新されます。プロジェクト用のカスタム ツールを作成して、エンド ユーザーが変更を提供できるようになり、無限のカスタマイズが可能になります。 +- [Toolbar](./menus/toolbar.mdx) - このコンポーネントは、主にチャート コンポーネントで使用される UI 操作のコンパニオン コンテナーです。ツールバーは、`XamDataChart` または `CategoryChart` コンポーネントにリンクされると、プロパティとツール項目のプリセットで動的に更新されます。プロジェクト用のカスタム ツールを作成して、エンド ユーザーが変更を提供できるようになり、無限のカスタマイズが可能になります。 ## {PackageCharts} ### **{PackageVerChanges-22-2.2}** -- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The and now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. +- [Chart Highlight Filter](./charts/features/chart-highlight-filter.mdx) - The `CategoryChart` and `XamDataChart` now expose a way to highlight and animate in and out of a subset of data. The display of this highlight depends on the series type. For column and area series, the subset will be shown on top of the total set of data where the subset will be colored by the actual brush of the series, and the total set will have a reduced opacity. For line series, the subset will be shown as a dotted line. ## {PackageGrids} ### {PackageInputs} -- で StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date)、DateTimeInputDatePart ではなく DatePart に切り詰められるようになりました。 -- および で、無効な状態のスタイルとともにコンポーネントの検証が追加されました。 +- `DateTimeInput` で StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date)、DateTimeInputDatePart ではなく DatePart に切り詰められるようになりました。 +- `Radio` および `RadioGroup` で、無効な状態のスタイルとともにコンポーネントの検証が追加されました。 - `IgcMask` - マスク パターン リテラルをエスケープする機能が追加されました。 -- - バッジの形状を制御する プロパティが追加され、 または `Rounded` のいずれかになります。デフォルトでは、バッジの形状は Rounded です。 -- - `RoundShape` プロパティは非推奨になり、将来のバージョンで削除される予定です。ユーザーは、新しく追加された 属性によってアバターの形状を制御できます。形状属性は、、`Rounded`、または です。アバターの図形はデフォルトで です。 +- `Badge` - バッジの形状を制御する `Avatar.Shape` プロパティが追加され、`Square` または `Rounded` のいずれかになります。デフォルトでは、バッジの形状は Rounded です。 +- `Avatar` - `RoundShape` プロパティは非推奨になり、将来のバージョンで削除される予定です。ユーザーは、新しく追加された `Shape` 属性によってアバターの形状を制御できます。形状属性は、`Square`、`Rounded`、または `Circle` です。アバターの図形はデフォルトで `Square` です。 ## **{PackageVerChanges-22-2.1}** @@ -738,17 +736,17 @@ For more details please visit: - 新しい [Grid](./grids/data-grid.mdx) コンポーネント。 - 新しい [Tree Grid](./grids/tree-grid/overview.mdx) コンポーネント。 -- : - - **{IgPrefix}Column** を に変更しました。 - - **GridCellEventArgs** を に変更しました。 - - **GridSelectionMode** を に変更しました。 - - **SummaryOperand** を に変更しました。 +- `Grid`: + - **{IgPrefix}Column** を `DataGridColumn` に変更しました。 + - **GridCellEventArgs** を `DataGridCellEventArgs` に変更しました。 + - **GridSelectionMode** を `DataGridSelectionMode` に変更しました。 + - **SummaryOperand** を `DataSourceSummaryOperand` に変更しました。 ### **{PackageVerChanges-22-1}** -- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the and by adding to the new collection. +- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - A new series type named the `ValueLayer` is now exposed which can allow you to render an overlay for different focal points of the plotted data such as Maximum, Minimum, and Average. This is applied to the `CategoryChart` and `FinancialChart` by adding to the new `XYChart.ValueLines` collection. -- It is now possible to apply a **dash array** to the different parts of the series of the . You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. +- It is now possible to apply a **dash array** to the different parts of the series of the `XamDataChart`. You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. ## {PackageGrids} @@ -756,31 +754,31 @@ For more details please visit: ### {PackageCharts} -- 高度に構成可能な [DataLegend](./charts/features/chart-data-legend.mdx) コンポーネントを追加しました。これは、 とよく似ていますが、シリーズの値を表示し、シリーズの行と値の列をフィルタリングし、値のスタイルとフォーマットを行うための多くの構成プロパティを提供します。 +- 高度に構成可能な [DataLegend](./charts/features/chart-data-legend.mdx) コンポーネントを追加しました。これは、`SeriesViewer.Legend` とよく似ていますが、シリーズの値を表示し、シリーズの行と値の列をフィルタリングし、値のスタイルとフォーマットを行うための多くの構成プロパティを提供します。 - 高度に構成可能な [DataToolTip](./charts/features/chart-data-tooltip.mdx) が追加されました。これは、シリーズの値とタイトル、およびシリーズの凡例バッジをツールチップに表示します。これは、すべてのチャート タイプのデフォルトのツールチップになりました。 -- 積層シリーズのアニメーションとトランジションインのサポートが追加されました。 プロパティを true に設定すると、アニメーションを有効にできます。そこから、 プロパティを設定してアニメーションが完了するまでの時間を決定し、 でアニメーションのタイプを決定できます。 -- 追加された `AssigningCategoryStyle` イベントは、 のすべてのシリーズで利用できるようになりました。このイベントは、背景色の やハイライト表示など、シリーズ項目の外観を条件付きで構成する場合に処理されます。 -- CalloutLayer の新しい 列挙体。チャート内のどこにコールアウトを配置するかを制限するために使用されます。デフォルトでは、コールアウトは最適な場所に配置されますが、これは `TopLeft`、`TopRight`、`BottomLeft`、または `BottomRight` を強制するために使用されます。 +- 積層シリーズのアニメーションとトランジションインのサポートが追加されました。`IsTransitionInEnabled` プロパティを true に設定すると、アニメーションを有効にできます。そこから、`TransitionInDuration` プロパティを設定してアニメーションが完了するまでの時間を決定し、`TransitionInMode` でアニメーションのタイプを決定できます。 +- 追加された `AssigningCategoryStyle` イベントは、`XamDataChart` のすべてのシリーズで利用できるようになりました。このイベントは、背景色の `CrosshairLayer.Fill` やハイライト表示など、シリーズ項目の外観を条件付きで構成する場合に処理されます。 +- CalloutLayer の新しい `AllowedPositions` 列挙体。チャート内のどこにコールアウトを配置するかを制限するために使用されます。デフォルトでは、コールアウトは最適な場所に配置されますが、これは `TopLeft`、`TopRight`、`BottomLeft`、または `BottomRight` を強制するために使用されます。 - 注釈レイヤーに追加された新しいコーナー半径プロパティ。各コールアウトのコーナーを丸めるために使用されます。コーナー半径がデフォルトで追加されていることに注意してください。 - - CalloutLayer の - - FinalValueLayer の - - CrosshairLayer の -- さまざまな方法でスクロールバーを有効にするための新しい および 列挙体。 または と組み合わせると、チャートをナビゲートするための軸に沿ったスクロールバーを、常設またはフェードインおよびフェードアウトすることができます。 -- 新しい は、軸がスケールの最後にラベルを表示することを優先するかどうかを決定します。数値軸 (、`PercentChangeAxis` など) とのみ互換性があります。 -- 新しい は、軸に要求された軸範囲にスプライン形状を含めるかどうかを決定します。 -- 新しい は、 を使用するときにプロットされたシリーズの最大許容値を決定します。ギャップは、プロットされたシリーズの列またはバー間のスペースの量を決定します。 -- 新しい は、 を使用するときに、プロットされたシリーズの最小許容ピクセルベース値を決定し、各カテゴリ間に常にある程度の間隔があることを保証します。 + - CalloutLayer の `CalloutCornerRadius` + - FinalValueLayer の `AxisAnnotationBackgroundCornerRadius` + - CrosshairLayer の `CrosshairLayer.XAxisAnnotationBackgroundCornerRadius` と `CrosshairLayer.YAxisAnnotationBackgroundCornerRadius` +- さまざまな方法でスクロールバーを有効にするための新しい `SeriesViewer.HorizontalViewScrollbarMode` および `SeriesViewer.VerticalViewScrollbarMode` 列挙体。`XYChart.IsVerticalZoomEnabled` または `XYChart.IsHorizontalZoomEnabled` と組み合わせると、チャートをナビゲートするための軸に沿ったスクロールバーを、常設またはフェードインおよびフェードアウトすることができます。 +- 新しい `NumericXAxis.FavorLabellingScaleEnd` は、軸がスケールの最後にラベルを表示することを優先するかどうかを決定します。数値軸 (`NumericXAxis`、`NumericYAxis`、`PercentChangeAxis` など) とのみ互換性があります。 +- 新しい `IsSplineShapePartOfRange` は、軸に要求された軸範囲にスプライン形状を含めるかどうかを決定します。 +- 新しい `XAxisMaximumGap` は、`XAxisGap` を使用するときにプロットされたシリーズの最大許容値を決定します。ギャップは、プロットされたシリーズの列またはバー間のスペースの量を決定します。 +- 新しい `XAxisMinimumGapSize` は、`XAxisGap` を使用するときに、プロットされたシリーズの最小許容ピクセルベース値を決定し、各カテゴリ間に常にある程度の間隔があることを保証します。 -- : The properties `InBaseDimension` and `InOption` have been deprecated and renamed to `BaseDimension` and `Options` respectively. +- `PivotGrid`: The `PivotDateDimension` properties `InBaseDimension` and `InOption` have been deprecated and renamed to `BaseDimension` and `Options` respectively. ### **{PackageVerChanges-21-2.1}** -- , the StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) is now trimmed down to DatePart instead of DateTimeInputDatePart -- and , added component validation along with styles for invalid state +- `DateTimeInput`, the StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) is now trimmed down to DatePart instead of DateTimeInputDatePart +- `Radio` and `RadioGroup`, added component validation along with styles for invalid state - `IgcMask`, added the capability to escape mask pattern literals. -- added a property that controls the shape of the badge and can be either or `Rounded`. The default shape of the badge is rounded. -- , the `RoundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added attribute that can be , `Rounded` or . The default shape of the avatar is . +- `Badge` added a `Avatar.Shape` property that controls the shape of the badge and can be either `Square` or `Rounded`. The default shape of the badge is rounded. +- `Avatar`, the `RoundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added `Shape` attribute that can be `Square`, `Rounded` or `Circle`. The default shape of the avatar is `Square`. ## {PackageGrids} @@ -797,7 +795,7 @@ For more details please visit: ### {PackageGrids} -- : +- `Grid`: - 新規機能: - [フィルター行](./grids/_shared/filtering.mdx) - [レイアウトのカスタマイズ読み込み/保存](./grids/_shared/state-persistence.mdx) @@ -806,36 +804,36 @@ For more details please visit: - 新規 API: - `SelectionChanged` イベントを追加しました。複数行の選択など、選択のインタラクションの変化を検出するために使用されます。 - 重大な変更: - - グリッドの SummaryScope プロパティのタイプを から SummaryScope に変更しました。 - - GroupHeaderDisplayMode プロパティのタイプを から GroupHeaderDisplayMode に変更しました。 + - グリッドの SummaryScope プロパティのタイプを `DataSourceSummaryScope` から SummaryScope に変更しました。 + - GroupHeaderDisplayMode プロパティのタイプを `DataSourceSectionHeaderDisplayMode` から GroupHeaderDisplayMode に変更しました。 ### {PackageCharts} このリリースでは、地理マップとすべてのチャート コンポーネントのビジュアル デザインと構成オプションにいくつかの改善と簡素化が導入されています。 -- プロパティのタイプを **AxisLabelLocation** から **YAxisLabelLocation** に変更しました。 -- プロパティのタイプを **AxisLabelLocation** から **XAxisLabelLocation** に変更しました。 -- プロパティを追加しました。 -- 凡例で の地理的なシリーズを表すためのサポートが追加されました。 -- にデフォルトの十字線を追加しました。 -- にデフォルトの十字線の注釈を追加しました。 -- にデフォルトで最終値の注釈を追加しました +- `FinancialChart` と `CategoryChart` の `XYChart.YAxisLabelLocation` プロパティのタイプを **AxisLabelLocation** から **YAxisLabelLocation** に変更しました。 +- `FinancialChart` の `XYChart.XAxisLabelLocation` プロパティのタイプを **AxisLabelLocation** から **XAxisLabelLocation** に変更しました。 +- `CategoryChart` に `XYChart.XAxisLabelLocation` プロパティを追加しました。 +- 凡例で `XamGeographicMap` の地理的なシリーズを表すためのサポートが追加されました。 +- `FinancialChart` と `CategoryChart` にデフォルトの十字線を追加しました。 +- `FinancialChart` と `CategoryChart` にデフォルトの十字線の注釈を追加しました。 +- `FinancialChart` にデフォルトで最終値の注釈を追加しました - カテゴリ チャートとファイナンシャル チャートに新しいプロパティを追加しました: - - 十字線をカスタマイズするための およびその他のプロパティ。 - - 十字線の注釈をカスタマイズするための およびその他のプロパティ。 - - 最終値の注釈をカスタマイズするための およびその他のプロパティ。 - - シリーズ塗りつぶしの不透明度を変更できる (エリア チャートなど) - - マーカーの厚さを変更できる + - 十字線をカスタマイズするための `XYChart.CrosshairsLineThickness` およびその他のプロパティ。 + - 十字線の注釈をカスタマイズするための `XYChart.CrosshairsAnnotationXAxisBackground` およびその他のプロパティ。 + - 最終値の注釈をカスタマイズするための `XYChart.FinalValueAnnotationsBackground` およびその他のプロパティ。 + - シリーズ塗りつぶしの不透明度を変更できる `XYChart.AreaFillOpacity` (エリア チャートなど) + - マーカーの厚さを変更できる `XYChart.MarkerThickness` - カテゴリ チャート、ファイナンシャル チャート、データ チャート、および地理マップに新しいプロパティを追加しました。 - - 同じチャート内の複数のシリーズにどのマーカー タイプを割り当てることができる - - 凡例で表されるすべてのシリーズのバッジの形状を設定するための - - 凡例のすべてのシリーズにバッジの複雑さを設定するための + - 同じチャート内の複数のシリーズにどのマーカー タイプを割り当てることができる `SeriesViewer.MarkerAutomaticBehavior` + - 凡例で表されるすべてのシリーズのバッジの形状を設定するための `SeriesViewer.LegendItemBadgeShape` + - 凡例のすべてのシリーズにバッジの複雑さを設定するための `SeriesViewer.LegendItemBadgeMode` - データ チャートと地理マップのシリーズに新しいプロパティを追加しました。 - - 凡例で表される特定のシリーズにバッジの形状を設定するための - - 凡例の特定のシリーズにバッジの複雑さを設定するための + - 凡例で表される特定のシリーズにバッジの形状を設定するための `SeriesViewer.LegendItemBadgeShape` + - 凡例の特定のシリーズにバッジの複雑さを設定するための `SeriesViewer.LegendItemBadgeMode` - カテゴリ チャートとシリーズで、デフォルトの垂直十字線ストロークを #000000 から #BBBBBB に変更しました。 -- 同じチャートにプロットされたすべてのシリーズのマーカーの図形を円に変更しました。これは、チャートの プロパティを `SmartIndexed` 列挙値に設定することで元に戻すことができます。 -- チャートの凡例のシリーズの簡略化された図形で、円、線、または四角のみを表示します。これは、チャートの プロパティを `MatchSeries` 列挙値に設定することで元に戻すことができます。 +- 同じチャートにプロットされたすべてのシリーズのマーカーの図形を円に変更しました。これは、チャートの `SeriesViewer.MarkerAutomaticBehavior` プロパティを `SmartIndexed` 列挙値に設定することで元に戻すことができます。 +- チャートの凡例のシリーズの簡略化された図形で、円、線、または四角のみを表示します。これは、チャートの `SeriesViewer.LegendItemBadgeMode` プロパティを `MatchSeries` 列挙値に設定することで元に戻すことができます。 - アクセシビリティを向上させるために、すべてのチャートに表示されるシリーズとマーカーのカラー パレットを変更しました | 古いのブラシ/アウトライン | 新のアウトライン/ブラシ | @@ -847,61 +845,61 @@ For more details please visit: ### {PackageGrids} -- : +- `Grid`: - `EditOnKeyPress` を追加しました - 別名 Excel スタイルの編集。入力するとすぐに編集を開始します。 - - プロパティを追加しました - デフォルトでは、編集モードに入るにはダブル クリックが必要です。これを に設定して、新しいセルを選択するときに編集モードを実行できるようにすることができます。 - - プロパティ (別名 Excel スタイルのナビゲーション (Enter 動作)) を追加して、Enter キーの動作を制御します。例えば、オプションは (なし、編集、上、下、左、右に移動) です。 - - プロパティを追加しました - 編集モードでは、このプロパティは Enter キーが押されたときを制御します。例えば、オプションは (下、上、右、左のセルに移動) です。 - - メソッドを追加しました。 - - 行範囲の選択を追加しました - プロパティを MultipleRow に設定すると、次の新しい機能が含まれるようになりました: + - `EditModeClickAction` プロパティを追加しました - デフォルトでは、編集モードに入るにはダブル クリックが必要です。これを `SingleClick` に設定して、新しいセルを選択するときに編集モードを実行できるようにすることができます。 + - `EnterKeyBehaviors` プロパティ (別名 Excel スタイルのナビゲーション (Enter 動作)) を追加して、Enter キーの動作を制御します。例えば、オプションは (なし、編集、上、下、左、右に移動) です。 + - `EnterKeyBehaviorAfterEdit` プロパティを追加しました - 編集モードでは、このプロパティは Enter キーが押されたときを制御します。例えば、オプションは (下、上、右、左のセルに移動) です。 + - `PivotGrid.SelectAllRows` メソッドを追加しました。 + - 行範囲の選択を追加しました - `GridSelectionMode` プロパティを MultipleRow に設定すると、次の新しい機能が含まれるようになりました: - クリックしてドラッグし、行を選択します。 - SHIFT キーを押しながらクリックして、複数の行を選択します。 - SHIFT キーを押しながら + 矢印キーを押して、複数の行を選択します。 - - スペース バーを押すと、MultipleRow または SingleRow に設定された プロパティを介してアクティブな行の選択が切り替わります。 + - スペース バーを押すと、MultipleRow または SingleRow に設定された `GridSelectionMode` プロパティを介してアクティブな行の選択が切り替わります。 - 列オプション ダイアログに列集計を追加しました。 ### {PackageCharts} - Date Picker: - - - 現在の日付のボタンの表示を切り替えます。 - - - 日付値の上にラベルを追加します。 - - プロパティ - 値が選択されていない場合にカスタム テキストを追加します。 - - - 入力日付文字列をカスタマイズします。(例: `yyyy-MM-dd`) - - - 選択した日付を LongDate または ShortDate のどちらとして表示するかを指定します。 - - - 週の最初の曜日を指定します。 - - - 年の最初の週をいつ表示するかを指定します。例えば、最初の 1 週間、最初の 4 日間の週です。 - - - 週番号の表示を切り替えます。 - - & - 使用可能の選択できる日付の範囲を指定する日付制限。 + - `ShowTodayButton` - 現在の日付のボタンの表示を切り替えます。 + - `DatePicker.Label` - 日付値の上にラベルを追加します。 + - `DatePicker.Placeholder` プロパティ - 値が選択されていない場合にカスタム テキストを追加します。 + - `IWorksheetCellFormat.FormatString` - 入力日付文字列をカスタマイズします。(例: `yyyy-MM-dd`) + - `DateFormat` - 選択した日付を LongDate または ShortDate のどちらとして表示するかを指定します。 + - `FirstDayOfWeek` - 週の最初の曜日を指定します。 + - `FirstWeekOfYear` - 年の最初の週をいつ表示するかを指定します。例えば、最初の 1 週間、最初の 4 日間の週です。 + - `DatePicker.ShowWeekNumbers` - 週番号の表示を切り替えます。 + - `MinDate` & `MaxDate` - 使用可能の選択できる日付の範囲を指定する日付制限。 - アクセシビリティの追加 ## {PackageMaps} ### {PackageCharts} -このリリースでは、すべてのチャート コンポーネントに、いくつかの新しく改善されたビジュアル デザインと構成オプションが導入されています。例えば、、および 。 +このリリースでは、すべてのチャート コンポーネントに、いくつかの新しく改善されたビジュアル デザインと構成オプションが導入されています。例えば、`XamDataChart`、`CategoryChart`、および `FinancialChart`。 - 棒/縦棒/ウォーターフォール シリーズを、角丸ではなく角が四角になるように変更しました。 - heat min プロパティの 散布高密度シリーズの色を #8a5bb1 から #000000 に変更しました。 - heat max プロパティの 散布高密度シリーズの色を #ee5879 から #ee5879 に変更しました。 - ファイナンシャル/ウォーターフォール シリーズの `NegativeBrush` および `NegativeOutline` プロパティを #C62828 から #ee5879 に変更しました。 - マーカーの厚さを 1 pxから 2 pxに変更しました。 -- のマーカーのアウトラインに一致するようにマーカーの塗りつぶしを変更しました。 プロパティを Normal に設定すると、この変更を元に戻すことができます。 -- および のラベリングを圧縮しました。 +- `PointSeries`、`BubbleSeries`、`ScatterSeries`、`PolarScatterSeries` のマーカーのアウトラインに一致するようにマーカーの塗りつぶしを変更しました。`XYChart.MarkerFillMode` プロパティを Normal に設定すると、この変更を元に戻すことができます。 +- `TimeXAxis` および `OrdinalTimeXAxis` のラベリングを圧縮しました。 - 新しいマーカー プロパティ: - - series. - マーカーがアウトラインに依存するように、`MatchMarkerOutline` に設定できます。 - - series. - 0〜1 の値に設定できます。 - - series. - マーカーのアウトラインが塗りブラシの色に依存するように、`MatchMarkerBrush` に設定できます。 + - series.`XYChart.MarkerFillMode` - マーカーがアウトラインに依存するように、`MatchMarkerOutline` に設定できます。 + - series.`XYChart.MarkerFillOpacity` - 0〜1 の値に設定できます。 + - series.`XYChart.MarkerOutlineMode` - マーカーのアウトラインが塗りブラシの色に依存するように、`MatchMarkerBrush` に設定できます。 - 新シリーズ プロパティ: - - series. - シリーズ アウトラインの表示を切り替えるように設定できます。データ チャートの場合、プロパティはシリーズ上にあることに注意してください。 -- チャートがデフォルトのズーム レベルにあるときにビューポートに導入されるブリード オーバー領域を定義する新しいチャート プロパティを追加しました。一般的な使用例では、軸と最初/最後のデータ ポイントの間にスペースを提供します。以下にリストされている は、マーカーが有効になっているときに自動的にマージンを設定することに注意してください。その他は、厚さを表す `Double` を指定するように設計されており、PlotAreaMarginLeft などがチャートの 4 辺すべてにスペースを調整します。 - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - シリーズ アウトラインの表示を切り替えるように設定できます。データ チャートの場合、プロパティはシリーズ上にあることに注意してください。 +- チャートがデフォルトのズーム レベルにあるときにビューポートに導入されるブリード オーバー領域を定義する新しいチャート プロパティを追加しました。一般的な使用例では、軸と最初/最後のデータ ポイントの間にスペースを提供します。以下にリストされている `XYChart.ComputedPlotAreaMarginMode` は、マーカーが有効になっているときに自動的にマージンを設定することに注意してください。その他は、厚さを表す `Double` を指定するように設計されており、PlotAreaMarginLeft などがチャートの 4 辺すべてにスペースを調整します。 + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - 新しいハイライト表示プロパティ: - - chart. - ホバーされたシリーズとホバーされていないシリーズをフェードまたは明るくするかを設定します。 - - chart. - 真上または最も近い項目など、マウスの位置に応じてシリーズをハイライト表示するかどうかを設定します。 + - chart.`SeriesViewer.HighlightingMode` - ホバーされたシリーズとホバーされていないシリーズをフェードまたは明るくするかを設定します。 + - chart.`SeriesViewer.HighlightingBehavior` - 真上または最も近い項目など、マウスの位置に応じてシリーズをハイライト表示するかどうかを設定します。 - 以前のリリースでは、ハイライト表示はホバー時にフェードするように制限されていたことに注意してください。 - 積層型、散布、極座標、ラジアル、およびシェイプ シリーズにハイライト表示を追加しました。 - 積層型、散布、極座標、ラジアル、およびシェイプ シリーズに注釈レイヤーを追加しました。 @@ -913,14 +911,14 @@ For more details please visit: ### チャート凡例 -- バブル、ドーナツ、および円チャートで使用できる水平方向の プロパティを ItemLegend に追加しました -- プロパティの追加 - 凡例項目にホバーした時にシリーズのハイライト表示を有効にします +- バブル、ドーナツ、および円チャートで使用できる水平方向の `Toolbar.Orientation` プロパティを ItemLegend に追加しました +- `SeriesViewer.LegendHighlightingMode` プロパティの追加 - 凡例項目にホバーした時にシリーズのハイライト表示を有効にします ## **{PackageVerChangedFields}** ### {PackageGrids} -- : +- `Grid`: @@ -931,29 +929,29 @@ For more details please visit: This release introduces a few improvements and simplifications to visual design and configuration options for the geographic map and all chart components. -- Changed property's type to **YAxisLabelLocation** from **AxisLabelLocation** in and -- Changed property's type to **XAxisLabelLocation** from **AxisLabelLocation** in -- Added property to -- Added support for representing geographic series of in a legend -- Added crosshair lines by default in and -- Added crosshair annotations by default in and -- Added final value annotation by default in +- Changed `XYChart.YAxisLabelLocation` property's type to **YAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` and `CategoryChart` +- Changed `XYChart.XAxisLabelLocation` property's type to **XAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` +- Added `XYChart.XAxisLabelLocation` property to `CategoryChart` +- Added support for representing geographic series of `XamGeographicMap` in a legend +- Added crosshair lines by default in `FinancialChart` and `CategoryChart` +- Added crosshair annotations by default in `FinancialChart` and `CategoryChart` +- Added final value annotation by default in `FinancialChart` - Added new properties in Category Chart and Financial Chart: - - and other properties for customizing crosshairs lines - - and other properties for customizing crosshairs annotations - - and other properties for customizing final value annotations - - that allow changing opacity of series fill (e.g. Area chart) - - that allows changing thickness of markers + - `XYChart.CrosshairsLineThickness` and other properties for customizing crosshairs lines + - `XYChart.CrosshairsAnnotationXAxisBackground` and other properties for customizing crosshairs annotations + - `XYChart.FinalValueAnnotationsBackground` and other properties for customizing final value annotations + - `XYChart.AreaFillOpacity` that allow changing opacity of series fill (e.g. Area chart) + - `XYChart.MarkerThickness` that allows changing thickness of markers - Added new properties in Category Chart, Financial Chart, Data Chart, and Geographic Map: - - that allows which marker type is assigned to multiple series in the same chart - - for setting badge shape of all series represented in a legend - - for setting badge complexity on all series in a legend + - `SeriesViewer.MarkerAutomaticBehavior` that allows which marker type is assigned to multiple series in the same chart + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape of all series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on all series in a legend - Added new properties in Series in Data Chart and Geographic Map: - - for setting badge shape on specific series represented in a legend - - for setting badge complexity on specific series in a legend + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape on specific series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on specific series in a legend - Changed default vertical crosshair line stroke from #000000 to #BBBBBB in category chart and series -- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's property to `SmartIndexed` enum value -- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's property to `MatchSeries` enum value +- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's `SeriesViewer.MarkerAutomaticBehavior` property to `SmartIndexed` enum value +- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's `SeriesViewer.LegendItemBadgeMode` property to `MatchSeries` enum value - Changed color palette of series and markers displayed in all charts to improve accessibility | Old brushes/outlines | New outline/brushes | @@ -965,17 +963,17 @@ This release introduces a few improvements and simplifications to visual design ### **{PackageVerChangedImports}** -- : +- `Grid`: - Added `EditOnKeyPress` aka Excel-style Editing, instantly begin editing when typing. - - Added property - By default double-clicking is required to enter edit mode. This can be set to to allow for edit mode to occur when selecting a new cell. - - Added property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) - - Added property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) - - Added - method. - - Added Row Range Selection - With property set to MultipleRow the following new functionality is now included: + - Added `EditModeClickAction` property - By default double-clicking is required to enter edit mode. This can be set to `SingleClick` to allow for edit mode to occur when selecting a new cell. + - Added `EnterKeyBehaviors` property - aka Excel-style Navigation (Enter Behavior) – controls the behavior of the enter key, e.g. Options are (none, edit, move up, down, left, right) + - Added `EnterKeyBehaviorAfterEdit` property - While in edit-mode, this property controls when enter is pressed, e.g. Options are (moves to the cell below, above, right, left) + - Added `PivotGrid.SelectAllRows` - method. + - Added Row Range Selection - With `GridSelectionMode` property set to MultipleRow the following new functionality is now included: - Click and drag to select rows - SHIFT and click to select multiple rows. - SHIFT and press the + arrow keys to select multiple rows. - - Pressing space bar toggles selection of active row via property set to MultipleRow or SingleRow + - Pressing space bar toggles selection of active row via `GridSelectionMode` property set to MultipleRow or SingleRow - Added Column Summaries to Column Options Dialog. ### すべてのパッケージ @@ -997,30 +995,30 @@ These features are CTP ### **{PackageCommonVerChanges-5.1.0}** -This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. , , and . +This release introduces several new and improved visual design and configuration options for all of the chart components, e.g. `XamDataChart`, `CategoryChart`, and `FinancialChart`. - Changed Bar/Column/Waterfall series to have square corners instead of rounded corners - Changed Scatter High Density series’ colors for heat min property from #8a5bb1 to #000000 - Changed Scatter High Density series’ colors for heat max property from #ee5879 to #ee5879 - Changed Financial/Waterfall series’ `NegativeBrush` and `NegativeOutline` properties from #C62828 to #ee5879 - Changed marker's thickness to 2px from 1px -- Changed marker's fill to match the marker's outline for , , , . You can use set property to Normal to undo this change -- Compressed labelling for the and +- Changed marker's fill to match the marker's outline for `PointSeries`, `BubbleSeries`, `ScatterSeries`, `PolarScatterSeries`. You can use set `XYChart.MarkerFillMode` property to Normal to undo this change +- Compressed labelling for the `TimeXAxis` and `OrdinalTimeXAxis` - New Marker Properties: - - series. - Can be set to `MatchMarkerOutline` so the marker depends on the outline - - series. - Can be set to a value 0 to 1 - - series. - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color + - series.`XYChart.MarkerFillMode` - Can be set to `MatchMarkerOutline` so the marker depends on the outline + - series.`XYChart.MarkerFillOpacity` - Can be set to a value 0 to 1 + - series.`XYChart.MarkerOutlineMode` - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color - New Series Property: - - series. - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series -- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the , listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series +- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the `XYChart.ComputedPlotAreaMarginMode`, listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - New Highlighting Properties - - chart. - Sets whether hovered or non-hovered series to fade, brighten - - chart. - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item + - chart.`SeriesViewer.HighlightingMode` - Sets whether hovered or non-hovered series to fade, brighten + - chart.`SeriesViewer.HighlightingBehavior` - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item - Note, in previous releases the highlighting was limited to fade on hover. - Added Highlighting Stacked, Scatter, Polar, Radial, and Shape series: - Added Annotation layers to Stacked, Scatter, Polar, Radial, and Shape series: @@ -1049,7 +1047,7 @@ for example: ### **{PackageCommonVerChanges-4.11.1}** -- : +- `Grid`: These breaking changes were introduce in the grid package. @@ -1085,7 +1083,7 @@ income.field = "Income"; ### **{PackageCommonVerChanges-4.11.0}** -- : +- `Grid`: - Changed Name of Live Grid - the data grid component and it's corresponding module's names have changed from "LiveGrid" to "DataGrid". @@ -1104,7 +1102,7 @@ import { IgcDataGridModule } from 'igniteui-webcomponents-data-grids';
-- Required Peer Dependency for +- Required Peer Dependency for `Grid` The data grid component requires the "inputs" package. @@ -1205,159 +1203,159 @@ import { IgcLiveGridComponent } from 'igniteui-webcomponents-data-grids/ES5/igc- ### 非推奨 #### 修正 -- - 値に `undefined` を渡すと、基になる入力値が undefined に設定されます。 -- - フォームの `reset` の呼び出し後、基になる入力値とプレースホルダーの状態が正しく更新されます。 -- - 項目 `indicator` CSS パーツに `--ig-size` を設定すると、アイコンのサイズが変更されるようになりました。 -- - 特定のシナリオで `igcChange` が二重に発行されます。 -- - ミニ バリアントは、開いた状態でない場合、最初は描画されません。 -- : +- `Input`、`Textarea`- 値に `undefined` を渡すと、基になる入力値が undefined に設定されます。 +- `MaskInput` - フォームの `reset` の呼び出し後、基になる入力値とプレースホルダーの状態が正しく更新されます。 +- `Tree` - 項目 `indicator` CSS パーツに `--ig-size` を設定すると、アイコンのサイズが変更されるようになりました。 +- `DateTimeInput` - 特定のシナリオで `igcChange` が二重に発行されます。 +- `NavDrawer` - ミニ バリアントは、開いた状態でない場合、最初は描画されません。 +- `Combo`: - ENTER キーを使用してエントリを選択すると、単一選択モードで正しく機能するようになりました。 - - オプションをオンにすると、以前に入力した検索語句がクリアされるようになりました。 + - `DisableFiltering` オプションをオンにすると、以前に入力した検索語句がクリアされるようになりました。 - 単一選択モードで、選択した項目に既に一致する検索語を入力すると、正しく機能するようになりました。 ### **{PackageCommonVerChanges-4.9.0}** -- - - Added method. This allows to register and replace icons by SVG files. +- `Icon` + - Added `setIconRef` method. This allows to register and replace icons by SVG files. - All components now use icons by reference internally so that it's easy to replace them without explicitly providing custom templates. -- +- `RadioGroup` - Added `name` and `value` properties. **Breaking Changes** -- Removed component. Use native form instead. +- Removed `Button.Form` component. Use native form instead. - Removed `size` property in favor of the `--ig-size` CSS custom property for the following components: - - , ,, , , , , , , , , , + - `Avatar`, `Button`,`IconButton`, `Calendar`, `Chip`, `Dropdown`, `Icon`, `Input`, `List`, `Rating`, `Snackbar`, `Tabs`, `Tree` - Removed custom `igcFocus` and `igcBlur` events. Use the native `focus` and `blur` events instead for the following components: - - , , , , , , , , , **IgcSelectComponent**, -- , , + - `Button`, `IconButton`, `Checkbox`, `Switch`, `Combo`, `DateTimeInput`, `Input`, `MaskInput`, `Radio`, **IgcSelectComponent**, `Textarea` +- `Checkbox`, `Switch` ,`Radio` - Changed `igcChange` event arguments from `CustomEvent` to `CustomEvent<{ checked: boolean; value: string | undefined }>` -- , **IgcSelectComponent** +- `Combo`, **IgcSelectComponent** - Removed `positionStrategy`, `flip`, `sameWidth` properties. -- +- `Dialog` - Renamed The `closeOnEscape` property to `keepOpenOnEscape`. -- +- `Dropdown` - Removed `positionStrategy` property. -- +- `Input` - Removed `maxlength` and `minlength` properties. Use the native `maxLength` and `minLength` properties or `max` and `min` instead. - Renamed `readonly` and `inputmode` properties to `readOnly` and `inputMode`. -- +- `RangeSlider` - Renamed `ariaThumbLower`/`ariaThumbUpper` properties to `thumbLabelLower`/`thumbLabelUpper`. -- +- `Rating` - Renamed `readonly` property to `readOnly`. ### 追加 #### 変更 -- - ネイティブの `Popover` API を使用するようになりました。 +- `Combo`、`DatePicker.Select`、`Dropdown` - ネイティブの `Popover` API を使用するようになりました。 ### 非推奨 #### 修正 -- - コンポーネントが読み取り専用モードの場合、Material テーマのラベルが壊れます。 +- `DateTimeInput` - コンポーネントが読み取り専用モードの場合、Material テーマのラベルが壊れます。 ### **{PackageCommonVerChanges-4.8.2}** #### 修正 -- - サフィックスのないテキスト領域のサイズ変更ハンドルの位置。 -- - 単一の呼び出しスタックでタブ グループとタブを動的に作成および追加するときにエラーが発生します。 -- / - 最初にチェックしたときにフォームの送信に参加します。 -- - コンポーネントが実際に閉じられる/非表示になる前に `igcClosed` が発生します。 +- `Textarea` - サフィックスのないテキスト領域のサイズ変更ハンドルの位置。 +- `Tabs` - 単一の呼び出しスタックでタブ グループとタブを動的に作成および追加するときにエラーが発生します。 +- `Checkbox`/`Switch` - 最初にチェックしたときにフォームの送信に参加します。 +- `Dialog` - コンポーネントが実際に閉じられる/非表示になる前に `igcClosed` が発生します。 #### **{PackageCommonVerChanges-4.8.1}** -- `Inputmode` property. Aligned with the native `inputMode` DOM property instead. +- `Input` `Inputmode` property. Aligned with the native `inputMode` DOM property instead. #### 修正 -- - は、既に設定されている値には適用されません。 -- - フォーム検証を同期的に適用します。 -- - ドロップダウン/選択項目スロット内のラップ要素をクリックしても項目を選択できません。 -- - アクティブ状態は、クリック時に正しいツリー ノードに正しく適用されます。 +- `DateTimeInput` - `DatePicker.InputFormat` は、既に設定されている値には適用されません。 +- `Checkbox`、`Radio`、`Switch` - フォーム検証を同期的に適用します。 +- `DatePicker.Select`、`Dropdown` - ドロップダウン/選択項目スロット内のラップ要素をクリックしても項目を選択できません。 +- `Tree` - アクティブ状態は、クリック時に正しいツリー ノードに正しく適用されます。 ### **{PackageCommonVerChanges-4.8.0}** #### 追加 -- では、 を none に設定できるようになりました。これにより、提供されたデータの順序でグループが表示されます。 -- / - テーマ間でビジュアルの外観が更新され、新しい状態が追加されました。 +- `Combo` では、`GroupSorting` を none に設定できるようになりました。これにより、提供されたデータの順序でグループが表示されます。 +- `Button`/`IconButton` - テーマ間でビジュアルの外観が更新され、新しい状態が追加されました。 - `NavBar` - Bootstrap テーマに境界線が追加されました。 #### 変更 -- でのグループ化ではデータがソートされなくなりました。 プロパティは、グループのソート方向にのみ影響するようになりました。**動作変更**: 以前のリリースでは、グループのソート方向によって項目もソートされていました。この動作を実現したい場合は、既にソートされたデータを に渡すことができます。 +- `Combo` でのグループ化ではデータがソートされなくなりました。`GroupSorting` プロパティは、グループのソート方向にのみ影響するようになりました。**動作変更**: 以前のリリースでは、グループのソート方向によって項目もソートされていました。この動作を実現したい場合は、既にソートされたデータを `Combo` に渡すことができます。 #### 非推奨 -- - `aria-label-upper` と `aria-label-lower` は非推奨であり、次のメジャー リリースで削除されます。代わりに、`thumb-label-upper` と `thumb-label-lower` を使用してください。 +- `Slider` - `aria-label-upper` と `aria-label-lower` は非推奨であり、次のメジャー リリースで削除されます。代わりに、`thumb-label-upper` と `thumb-label-lower` を使用してください。 #### 修正 -- - スロットアイコンのサイズ。 -- +- `Button` - スロットアイコンのサイズ。 +- `ButtonGroup` - Fluent テーマの外観を更新しました。 - Safari での無効状態。 -- / - スタイルの問題。 -- +- `Combo`/`DatePicker.Select` - スタイルの問題。 +- `Slider` - スライダー トラックのクリックは、トラック要素の幅を計算の基準として使用します。 - スライダーのつまみを連続的にドラッグし、上限/下限を超えても、入力イベントは発生されません。 - `min`/`max` の前に `upper-bound`/`lower-bound` を設定する場合、スライダーはバインドされたプロパティを `min`/`max` の以前の値で上書きしません。 - スライダーのつまみにバインドされた `aria-label` は結果のレンダリングでリセットされなくなりました。 -- +- `Input` - デフォルトの検証は同期的に実行されます。 - スタイルの問題。 -- - `setRangeText()` は基になる値を更新します。 +- `DateTimeInput` - `setRangeText()` は基になる値を更新します。 ### **{PackageCommonVerChanges-4.7.0}** #### 追加 -- - ノードをクリックすると展開状態が変更されるかどうかを決定する プロパティが追加されました。デフォルトは **false** です。 +- `Tree` - ノードをクリックすると展開状態が変更されるかどうかを決定する `ToggleNodeOnClick` プロパティが追加されました。デフォルトは **false** です。 ### 変更 #### 修正 -- 、および のアクティブ項目のビジュアル スタイル。 -- - ミニ バリアントの壊れたビジュアル スタイル。 +- `Dropdown`、`DatePicker.Select`、および `Combo` のアクティブ項目のビジュアル スタイル。 +- `NavDrawer` - ミニ バリアントの壊れたビジュアル スタイル。 ### **{PackageCommonVerChanges-4.6.0}** #### 追加 -- に `action` スロットが追加されました。 -- `indicator-expanded` スロットが に追加されました。 -- `toggle-icon-expanded` スロットが に追加されました。 -- - `selectedItem`、`items`、`groups` ゲッターを公開しました。 +- `Snackbar` に `action` スロットが追加されました。 +- `indicator-expanded` スロットが `ExpansionPanel` に追加されました。 +- `toggle-icon-expanded` スロットが `DatePicker.Select` に追加されました。 +- `DatePicker.Select`、`Dropdown` - `selectedItem`、`items`、`groups` ゲッターを公開しました。 #### 変更 - パッケージを Lit v3 に更新しました。 - コンポーネントのダーク バリアントはシャドウ ルートにバインドされるようになりました。 - コンポーネントは現在のテーマに基づいてデフォルトのサイズを実装します。 -- - イベントをキャンセル不可に変更しました。 +- `ButtonGroup` - イベントをキャンセル不可に変更しました。 - コンポーネント CSS を最適化し、バンドル サイズを縮小しました。 -- の WAI-ARIA が改善されました。 +- `Icon`、`DatePicker.Select`、`Dropdown`、`List` の WAI-ARIA が改善されました。 #### 修正 -- にスタイル設定パーツがありません。 -- の無効なスタイル。 -- の不要なスタイルを削除しました。 -- ホバー状態のビジュアル デザイン。 -- ビューを切り替えても のフォーカス状態が維持されません。 +- `Textarea` にスタイル設定パーツがありません。 +- `TreeItem` の無効なスタイル。 +- `Snackbar` の不要なスタイルを削除しました。 +- `TreeItem` ホバー状態のビジュアル デザイン。 +- ビューを切り替えても `Calendar` のフォーカス状態が維持されません。 #### **{PackageCommonVerChanges-4.5.0}** -- - Slotted icon size. -- +- `Button` - Slotted icon size. +- `ButtonGroup` - Updated Fluent theme look. - Disabled state in Safari. -- / - Style issues. -- +- `Combo`/`DatePicker.Select` - Style issues. +- `Slider` - Clicks on the slider track now use the track element width as a basis for the calculation. - Input events are no longer emitted while continuously dragging the slider thumb and exceeding upper/lower bounds. - When setting `upper-bound`/`lower-bound` before `min`/`max`, the slider will no longer overwrite the bound properties with the previous values of `min`/`max`. - The `aria-label` bound to the slider thumb is no longer reset on consequent renders. -- +- `Input` - Default validators are run synchronously. - Style issues. -- - `setRangeText()` updates underlying value. +- `DateTimeInput` - `setRangeText()` updates underlying value. ### 追加 #### 非推奨 -`size` プロパティと属性は、すべてのコンポーネントで非推奨になりました。代わりに `--ig-size` CSS カスタム プロパティを使用してください。次の例では、 コンポーネントのサイズを小さく設定します: +`size` プロパティと属性は、すべてのコンポーネントで非推奨になりました。代わりに `--ig-size` CSS カスタム プロパティを使用してください。次の例では、`Avatar` コンポーネントのサイズを小さく設定します: -- - added. When enabled selecting the same value will reset the component. **Behavioral change**: In previous releases this was the default behavior of the rating component. Make sure to set `allowReset` if you need to keep this behavior in your application. +- `Rating` - `AllowReset` added. When enabled selecting the same value will reset the component. **Behavioral change**: In previous releases this was the default behavior of the rating component. Make sure to set `allowReset` if you need to keep this behavior in your application. #### 修正 - Safari でのコンボ項目の位置。 @@ -1366,36 +1364,36 @@ import { IgcLiveGridComponent } from 'igniteui-webcomponents-data-grids/ES5/igc- - 遅延データ バインディングを使用したコンボ値と選択状態。 - さまざまなスタイルとテーマの修正と調整 #### **{PackageCommonVerChanges-4.4.0}** -- Active item visual styles for , and . -- - mini variant broken visual style. +- Active item visual styles for `Dropdown`, `DatePicker.Select` and `Combo`. +- `NavDrawer` - mini variant broken visual style. ### 追加 #### 変更 -- - Fluent テーマのカラー。 -- - インジケーターのスタイルとカラー スキーマ。 +- `Rating` - Fluent テーマのカラー。 +- `Stepper` - インジケーターのスタイルとカラー スキーマ。 #### 非推奨 - `IgcForm` コンポーネントは非推奨です。 -- : +- `Input`: - `minlength` プロパティは非推奨になり、次のメジャー バージョンで削除される予定です。代わりに `minLength` を使用してください。 - `maxlength` プロパティは非推奨になり、次のメジャー バージョンで削除される予定です。代わりに `maxLength` を使用してください。 - `readonly` プロパティは非推奨になり、次のメジャー バージョンで削除される予定です。代わりに `readOnly` を使用してください。 -- : +- `MaskInput`: - `readonly` プロパティは非推奨になり、次のメジャー バージョンで削除される予定です。代わりに `readOnly` を使用してください。 -- : +- `DateTimeInput`: - `readonly` プロパティは非推奨になり、次のメジャー バージョンで削除される予定です。代わりに `readOnly` を使用してください。 - `minValue` プロパティは非推奨になり、次のメジャー バージョンで削除される予定です。代わりに `min` を使用してください。 - `maxValue` プロパティは非推奨になり、次のメジャー バージョンで削除される予定です。代わりに `max` を使用してください。 -- : +- `Rating`: - `readonly` プロパティは非推奨になり、次のメジャー バージョンで削除される予定です。代わりに `readOnly` を使用してください。 #### 削除済 - デフォルトの属性を隠していた独自の `dir` 属性が削除されました。これは**互換性のある変更**です。 -- - `ariaLabel` シャドウ プロパティ。これは**互換性のある変更**です。 -- - `ariaLabelledBy` シャドウ属性。これは**互換性のある変更**です。 -- - `ariaLabelledBy` シャドウ属性。これは**互換性のある変更**です。 -- - `ariaLabelledBy` シャドウ属性。これは**互換性のある変更**です。 +- `Slider` - `ariaLabel` シャドウ プロパティ。これは**互換性のある変更**です。 +- `Checkbox` - `ariaLabelledBy` シャドウ属性。これは**互換性のある変更**です。 +- `Switch` - `ariaLabelledBy` シャドウ属性。これは**互換性のある変更**です。 +- `Radio` - `ariaLabelledBy` シャドウ属性。これは**互換性のある変更**です。 ### 修正 @@ -1403,13 +1401,13 @@ import { IgcLiveGridComponent } from 'igniteui-webcomponents-data-grids/ES5/igc- - New [Text Area](./inputs/text-area.mdx) component. - New [Button Group](./inputs/button-group.mdx) component. -- New . -- now supports CSS transitions. -- Position attribute for and . +- New `ToggleButton`. +- `NavDrawer` now supports CSS transitions. +- Position attribute for `Toast` and `Snackbar`. #### 追加 -- - コンポーネントアニメーション。 +- `Tree` - コンポーネントアニメーション。 - コンポーネントの境界半径は、そのスキーマから使用されます。 ```css @@ -1419,87 +1417,87 @@ igc-avatar { ``` #### 変更 -- - スキーマのカラー。 -- - スキーマのカラー。 -- - テーマのスタイルとサイズが更新されました。 +- `Combo`、`Input`、`DatePicker.Select` - スキーマのカラー。 +- `Dropdown` - スキーマのカラー。 +- `Icon` - テーマのスタイルとサイズが更新されました。 ### 修正 #### **{PackageCommonVerChanges-4.3.0}** - The following components are now Form Associated Custom Elements. They are automatically associated with a parent `` and behave like a browser-provided control: - - & - - - - - - - - - - - - - - - - Single - - - - -- now supports animations. + - `Button` & `IconButton` + - `Checkbox` + - `Combo` + - `DateTimeInput` + - `Input` + - `MaskInput` + - `Radio` + - `Rating` + - Single `Slider` + - `DatePicker.Select` + - `Switch` +- `Stepper` now supports animations. #### 追加 -- : +- `Combo`: - `matchDiacritics` をフィルタリング オプション プロパティに追加しました。デフォルトは **false** です。**true** に設定すると、フィルターはアクセント付き文字とその基本文字を区別します。それ以外の場合、文字列は正規化されてから照合されます。 - 現在の選択内容をデータ オブジェクトの配列として返す `selection` プロパティ。 -- : 明示的な高さのサポート -- : アニメーションの追加 +- `Card`: 明示的な高さのサポート +- `Dialog`: アニメーションの追加 #### 変更 -- : +- `Combo`: - `value` は読み取り専用ではなくなり、明示的に設定できるようになりました。value 属性は宣言型のバインディングもサポートしており、有効な JSON 文字列化配列を受け入れます。 #### 非推奨 -- : `sameWidth`、`positionStrategy`、`flip` は非推奨になりました。これらは次のメジャー リリースで削除される予定です。 +- `DatePicker.Select`: `sameWidth`、`positionStrategy`、`flip` は非推奨になりました。これらは次のメジャー リリースで削除される予定です。 #### 修正 -- : `prefix`/`suffix`/`helper-text` スロットが描画されません。 -- : ネストされたタブの選択。 -- : 背景は要素をオーバーレイしません。 -- : 最初に開いた状態でのリストボックスの位置。 -- : 親コンテナ内で垂直方向に引き伸ばします。 -- : Fluent テーマの間違ったカラー。 +- `DatePicker.Select`: `prefix`/`suffix`/`helper-text` スロットが描画されません。 +- `Tabs`: ネストされたタブの選択。 +- `Dialog`: 背景は要素をオーバーレイしません。 +- `Dropdown`: 最初に開いた状態でのリストボックスの位置。 +- `Stepper`: 親コンテナ内で垂直方向に引き伸ばします。 +- `Navbar`: Fluent テーマの間違ったカラー。 - 高さが指定されていない場合、アニメーション プレーヤーはエラーを発生します。 -- : Chromium ベースのブラウザーでの Intl.DateTimeFormat の問題。 +- `DateTimeInput`: Chromium ベースのブラウザーでの Intl.DateTimeFormat の問題。 ### **{PackageCommonVerChanges-4.2.3}** #### 非推奨 -- - `closeOnEscape` プロパティは非推奨となり、代わりに新しい `keepOpenOnEscape` プロパティが使用されます。 +- `Dialog` - `closeOnEscape` プロパティは非推奨となり、代わりに新しい `keepOpenOnEscape` プロパティが使用されます。 #### 修正 -- - 選択されたフォーカス状態のカラー。 -- - 他のデザイン システム製品に合わせてアイコンのサイズを設定します。 -- - Fluent および Material テーマのアウトライン スタイルが削除されました。 -- - 設定された値の日付へのナビゲーション。 -- - 親の高さを完全には取得しません。 +- `Radio`- 選択されたフォーカス状態のカラー。 +- `IconButton` - 他のデザイン システム製品に合わせてアイコンのサイズを設定します。 +- `Chip` - Fluent および Material テーマのアウトライン スタイルが削除されました。 +- `Calendar` - 設定された値の日付へのナビゲーション。 +- `Tabs` - 親の高さを完全には取得しません。 #### **{PackageCommonVerChanges-4.2.2}** -- - single selection not working in certain scenarios. -- - various styling fixes. -- - border radius with ripple. -- - fixed wrong color in Fluent theme. -- - various styling fixes. -- - assign closest **igc-tree-item** ancestor as a parent. -- - internal **hidden** styles and custom display property. +- `Combo` - single selection not working in certain scenarios. +- `Dropdown` - various styling fixes. +- `IconButton` - border radius with ripple. +- `IconButton` - fixed wrong color in Fluent theme. +- `Input` - various styling fixes. +- `TreeItem` - assign closest **igc-tree-item** ancestor as a parent. +- `Tabs` - internal **hidden** styles and custom display property. ### 非推奨 #### 修正 -- - UI の不一致。 -- - Fluent テーマの不一致。 -- - API 経由の選択は検索リストでは機能しません。 -- - Fluent テーマの不一致。 -- - UI の不一致。 -- - Fluent テーマの不一致。 +- `Button` - UI の不一致。 +- `Calendar` - Fluent テーマの不一致。 +- `Combo` - API 経由の選択は検索リストでは機能しません。 +- `Dialog` - Fluent テーマの不一致。 +- `Input` - UI の不一致。 +- `Toast` - Fluent テーマの不一致。 - defineAllComponents にコンポーネントがありません。 -- のホスト サイズが間違っています。 +- `Avatar`、`Badge`、`Button`、`IconButton` のホスト サイズが間違っています。 #### **{PackageCommonVerChanges-4.2.1}** -- : +- `Combo`: - `value` is no longer readonly and can be explicitly set. The value attribute also supports declarative binding, accepting a valid JSON stringified array. - `value` type changed from `string[]` to `ComboValue[]` where @@ -1523,68 +1521,68 @@ interface IgcComboChangeEventArgs {
#### 修正 -- - 単一選択モードでのフィルタリングでは一致する項目がアクティブ化されません。 +- `Combo` - 単一選択モードでのフィルタリングでは一致する項目がアクティブ化されません。 #### **{PackageCommonVerChanges-4.2.0}** -- : `prefix`/`suffix`/`helper-text` slots not being rendered. -- : Nested tabs selection. -- : Backdrop doesn't overlay elements. -- : Listbox position on initial open state. -- : Stretch vertically in parent container. -- : Wrong colors in fluent theme. +- `DatePicker.Select`: `prefix`/`suffix`/`helper-text` slots not being rendered. +- `Tabs`: Nested tabs selection. +- `Dialog`: Backdrop doesn't overlay elements. +- `Dropdown`: Listbox position on initial open state. +- `Stepper`: Stretch vertically in parent container. +- `Navbar`: Wrong colors in fluent theme. - Animation player throws errors when height is unspecified. -- : Intl.DateTimeFormat issues in Chromium based browsers. +- `DateTimeInput`: Intl.DateTimeFormat issues in Chromium based browsers. ### 追加 #### 修正 -- - UI の不一致。 -- - `igc-icon` とフォント アイコンが正しく描画されません。 -- - UI の不一致。 -- - 項目のマージンをオーバーライドできません。 +- `Input` - UI の不一致。 +- `Badge` - `igc-icon` とフォント アイコンが正しく描画されません。 +- `Radio` - UI の不一致。 +- `NavDrawer` - 項目のマージンをオーバーライドできません。 #### **{PackageCommonVerChanges-4.1.1}** -- - colors in selected focus state. -- - set icon size to match other design system products. -- - removed outline styles for Fluent and Material themes. -- - navigation to date on set value. -- - not taking the full height of their parents. +- `Radio`- colors in selected focus state. +- `IconButton` - set icon size to match other design system products. +- `Chip` - removed outline styles for Fluent and Material themes. +- `Calendar` - navigation to date on set value. +- `Tabs` - not taking the full height of their parents. ### 修正 #### **{PackageCommonVerChanges-4.1.0}** -- - The `prefix`/`suffix` slots are no longer needed and will be removed in the next major release. +- `Button` - The `prefix`/`suffix` slots are no longer needed and will be removed in the next major release. #### 追加 - 新しい [Stepper](./layouts/stepper.mdx) コンポーネント。 - 新しい [Combo](./inputs/combo/overview.mdx) コンポーネント。 -- - コンポーネント内のシンボルを削除するときにリテラル位置をスキップします。 +- `MaskInput` - コンポーネント内のシンボルを削除するときにリテラル位置をスキップします。 ### 修正 #### **{PackageCommonVerChanges-4.0.0}** -- - Matching item not activated on filtering in single selection mode. +- `Combo` - Matching item not activated on filtering in single selection mode. ### 変更 #### **{PackageCommonVerChanges-3.4.2}** -- - Single Selection mode via the `single-select` attribute. +- `Combo` - Single Selection mode via the `single-select` attribute. #### 修正 -- のインポート エラーを解決しました。 +- `DateRangeType` のインポート エラーを解決しました。 ### **{PackageCommonVerChanges-3.4.1}** #### 変更 -- - 最新の Fluent 仕様に合わせてテーマを更新しました。 -- - 週末の色を更新しました。 +- `Slider` - 最新の Fluent 仕様に合わせてテーマを更新しました。 +- `Calendar` - 週末の色を更新しました。 ### 修正 #### **{PackageCommonVerChanges-3.4.0}** - New [Stepper](./layouts/stepper.mdx) component. - New [Combo](./inputs/combo/overview.mdx) component. -- - Skip literal positions when deleting symbols in the component +- `MaskInput` - Skip literal positions when deleting symbols in the component #### 追加 - 新しい [Dialog](./notifications/dialog.mdx) コンポーネント。 @@ -1602,9 +1600,9 @@ interface IgcComboChangeEventArgs { ### 変更 #### 修正 -- - トップレベルのイベント リスナーを破棄します。 -- - Safari での不確定なアニメーション。 -- - 子ラジオ コンポーネントの自動登録。 +- `Dropdown` - トップレベルのイベント リスナーを破棄します。 +- `LinearProgress` - Safari での不確定なアニメーション。 +- `RadioGroup` - 子ラジオ コンポーネントの自動登録。 ### **{PackageCommonVerChanges-3.3.0}** @@ -1615,9 +1613,9 @@ interface IgcComboChangeEventArgs { - テーマのタイポグラフィ スタイル。 #### 変更 -- - 単一選択と空のシンボルのサポートが追加されました。 -- - スライダー ステップの描画を改善しました。 -- コンポーネントは、 で登録されると、その依存関係を自動登録するようになりました。 +- `Rating` - 単一選択と空のシンボルのサポートが追加されました。 +- `Slider` - スライダー ステップの描画を改善しました。 +- コンポーネントは、`defineComponents` で登録されると、その依存関係を自動登録するようになりました。 ### 修正 @@ -1629,30 +1627,30 @@ interface IgcComboChangeEventArgs { - 新しい [MaskInput](./inputs/mask-input.mdx) コンポーネント。 - 新しい [ExpansionPanel](./layouts/expansion-panel.mdx) コンポーネント。 - 新しい [Tree](./grids/tree.mdx) コンポーネント。 -- - シンボルのサイズを制御するために、`selected` CSS パーツと公開された CSS 変数を追加しました。 -- - スロット化されたコンテンツを許可します。 +- `Rating` - シンボルのサイズを制御するために、`selected` CSS パーツと公開された CSS 変数を追加しました。 +- `IconButton` - スロット化されたコンテンツを許可します。 ### 修正 #### **{PackageCommonVerChanges-3.1.0}** -- - Removed theme-specified height. +- `Tree` - Removed theme-specified height. #### 追加 -- : `prefix` と `suffix` のスロットを追加しました。 -- : `toggle` メソッドを追加しました。 +- `Chip`: `prefix` と `suffix` のスロットを追加しました。 +- `Snackbar`: `toggle` メソッドを追加しました。 ### 非推奨 #### 修正 -- : +- `Chip`: - 内部アイコンを自動読み込みます。 - 選択したチップの位置がずれています。 - パッケージ: ESM 内部インポート パス。 #### **{PackageCommonVerChanges-3.0.0}** -- - Added support for single selection and empty symbols. -- - Improved slider steps rendering. -- Components will now auto register their dependencies when they are registered in +- `Rating` - Added support for single selection and empty symbols. +- `Slider` - Improved slider steps rendering. +- Components will now auto register their dependencies when they are registered in `defineComponents` @@ -1674,20 +1672,20 @@ Check the official [documentation](https://www.infragistics.com/products/ignite- #### 追加 - 新しい [DropDown](./inputs/dropdown.mdx) コンポーネント。 -- : アクティブ日付は属性を介して設定できます。 +- `Calendar`: アクティブ日付は属性を介して設定できます。 #### **{PackageCommonVerChanges-2.1.1}** -- - Various styles fixes. +- `NavDrawer` - Various styles fixes. - Buttons - Vertical align and focus management. -- - Overflow for `suffix`/`prefix`. -- - Collapse with small sizes. -- - Overflow behavior. +- `Input` - Overflow for `suffix`/`prefix`. +- `Switch` - Collapse with small sizes. +- `List` - Overflow behavior. ### 追加 #### **{PackageCommonVerChanges-2.1.0}** -- : Added `prefix` and `suffix` slots. -- : Added `toggle` method. +- `Chip`: Added `prefix` and `suffix` slots. +- `Snackbar`: Added `toggle` method. #### 追加 - 新しい [LinearProgress](./inputs/linear-progress.mdx) コンポーネント。 @@ -1699,7 +1697,7 @@ Check the official [documentation](https://www.infragistics.com/products/ignite- - コンポーネントテーマは、`configureTheme(theme: Theme)` 関数を呼び出すことで実行時に変更できます。 #### **{PackageCommonVerChanges-2.0.0}** -- : +- `Chip`: - Auto load internal icons. - Selected chip is misaligned. - Package: ESM internal import paths. @@ -1708,9 +1706,9 @@ Check the official [documentation](https://www.infragistics.com/products/ignite- #### 変更 - チェックボックス/スイッチの検証状態を修正しました。 -- の `value: Date | Date[]` プロパティを 2 つのプロパティに分割しました: `value: Date` おとび `values: Date[]`。`` -- の `hasHeader` プロパティと `has-header` 属性をそれぞれ `hideHeader` と `hide-header` に置き換えました。 -- の `outlined` プロパティを `elevated` に置き換えました。 +- `Calendar` の `value: Date | Date[]` プロパティを 2 つのプロパティに分割しました: `value: Date` おとび `values: Date[]`。`` +- `Calendar` の `hasHeader` プロパティと `has-header` 属性をそれぞれ `hideHeader` と `hide-header` に置き換えました。 +- `Card` の `outlined` プロパティを `elevated` に置き換えました。 ### 削除済 @@ -1735,7 +1733,7 @@ Example: ### **{PackageDockManagerVerChanges-1.14.4}** #### 非推奨 -- は非推奨です。分割ペイン レベルで isMaximized を true に設定しても、分割ペインはコンテナーとしてのみ機能し、最大化されて表示される実際のコンテンツがないため、実際の効果はありません。代わりに、 および/または プロパティを使用してください。 +- `SplitPane` の `IsMaximized` は非推奨です。分割ペイン レベルで isMaximized を true に設定しても、分割ペインはコンテナーとしてのみ機能し、最大化されて表示される実際のコンテンツがないため、実際の効果はありません。代わりに、`TabGroupPane` および/または `ContentPane` の `SplitPane.IsMaximized` プロパティを使用してください。 ### **{PackageDockManagerVerChanges-1.14.3}** @@ -1745,9 +1743,9 @@ Example: #### **{PackageDockManagerVerChanges-1.14.2}** - Fix checkbox/switch validity status -- Split 's `value: Date | Date[]` property into two properties - `value: Date` and `values: Date[]` -- Replaced 's `hasHeader` property & `has-header` attribute with `hideHeader` & `hide-header` respectively. -- Replaced 's `outlined` property with `elevated`. +- Split `Calendar`'s `value: Date | Date[]` property into two properties - `value: Date` and `values: Date[]` +- Replaced `Calendar`'s `hasHeader` property & `has-header` attribute with `hideHeader` & `hide-header` respectively. +- Replaced `Card`'s `outlined` property with `elevated`. #### 修正 - すばやくドラッグして、パネルをドック マネージャーの境界内に制限します。 @@ -1817,7 +1815,7 @@ Initial release of Ignite UI Web Components #### 機能拡張 - `splitterResizeStart` イベントと `splitterResizeEnd` イベントにペイン情報を含めます。 -- がクラスとしてエクスポートされるようになりました。 +- `DockManager` がクラスとしてエクスポートされるようになりました。 ### 修正 @@ -1879,15 +1877,15 @@ Initial release of Ignite UI Web Components #### 新機能 - カスタマイズ可能なフローティング ペイン ヘッダー。 -- ペインごとの プロパティ。 -- プロパティは、コンテンツ ペインをドキュメント ホスト内にのみドッキングできるようにします。 -- 分割ペインとタブ グループ ペインの空の領域を表示できるようにする プロパティ。 -- ドック マネージャーの プロパティ。 +- ペインごとの `DatePicker.Disabled` プロパティ。 +- `DocumentOnly` プロパティは、コンテンツ ペインをドキュメント ホスト内にのみドッキングできるようにします。 +- 分割ペインとタブ グループ ペインの空の領域を表示できるようにする `SplitPane.AllowEmpty` プロパティ。 +- ドック マネージャーの `DisableKeyboardNavigation` プロパティ。 ### 修正 #### **{PackageDockManagerVerChanges-1.6.0}** -- Add property. +- Add `ShowHeaderIconOnHover` property. #### 新機能 - ドック マネージャーのペインとタブをカスタマイズします。 @@ -1929,7 +1927,7 @@ Initial release of Ignite UI Web Components ### 新機能 #### **{PackageDockManagerVerChanges-1.2.0}** -- property per pane. +- `AllowMaximize` property per pane. #### 新機能 - アクティブ ペイン。 diff --git a/docs/xplat/src/content/jp/components/general-changelog-dv.mdx b/docs/xplat/src/content/jp/components/general-changelog-dv.mdx index 5871ae386e..0bd2755347 100644 --- a/docs/xplat/src/content/jp/components/general-changelog-dv.mdx +++ b/docs/xplat/src/content/jp/components/general-changelog-dv.mdx @@ -21,8 +21,6 @@ import chartdefaults4 from '@xplat-images/chartDefaults4.png'; import Badge from 'igniteui-astro-components/components/mdx/Badge.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {ProductName} 変更ログ {ProductName} の各バージョンのすべての重要な変更は、このページに記載されています。 @@ -112,9 +110,9 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と #### ユーザー注釈 -{ProductName} では、ユーザー注釈機能により、実行時に にスライス注釈、ストリップ注釈、ポイント注釈を追加できるようになりました。これにより、エンドユーザーは、スライス注釈を使用して会社の四半期レポートなどの単一の重要イベントを強調したり、ストリップ注釈を使用して期間を持つイベントを示したりすることで、プロットに詳細を追加できます。ポイント注釈またはこれら 3 つの任意の組み合わせを使用して、プロットされたシリーズ上の個々のポイントを呼び出すこともできます。 +{ProductName} では、ユーザー注釈機能により、実行時に `XamDataChart` にスライス注釈、ストリップ注釈、ポイント注釈を追加できるようになりました。これにより、エンドユーザーは、スライス注釈を使用して会社の四半期レポートなどの単一の重要イベントを強調したり、ストリップ注釈を使用して期間を持つイベントを示したりすることで、プロットに詳細を追加できます。ポイント注釈またはこれら 3 つの任意の組み合わせを使用して、プロットされたシリーズ上の個々のポイントを呼び出すこともできます。 -これは、 のデフォルトのツールと統合されています。 +これは、`Toolbar` のデフォルトのツールと統合されています。 {Platform} user-annotation-create @@ -122,8 +120,8 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と 軸注釈が自動で衝突を検出し、適切に収まるよう切り詰めます。この機能を有効にするには、次のプロパティを設定します: -- -- +- `TimeXAxis.ShouldAvoidAnnotationCollisions` +- `TimeXAxis.ShouldAutoTruncateAnnotations` ### {PackageMaps} (地理マップ) @@ -144,7 +142,7 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と #### Azure マップ画像のサポート - は、 Azure ベースのマップ画像をサポートし、開発者は複数のアプリケーション タイプにわたって詳細かつ動的なマップを表示できるようになりました。複数のマップ レイヤーを組み合わせて地理データを視覚化し、インタラクティブなマッピング エクスペリエンスを簡単に作成できます。 +`XamGeographicMap` は、 Azure ベースのマップ画像をサポートし、開発者は複数のアプリケーション タイプにわたって詳細かつ動的なマップを表示できるようになりました。複数のマップ レイヤーを組み合わせて地理データを視覚化し、インタラクティブなマッピング エクスペリエンスを簡単に作成できます。 注: Bing マップ画像のサポートは段階的に廃止されます。既存のエンタープライズ キーは引き続き Bing Maps にアクセスするために利用できるため、Azure Maps へ移行する間も現在のアプリケーションをそのまま利用可能です。 @@ -154,7 +152,7 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と #### 新しい軸ラベル イベント -軸ラベルに対するさまざまな操作を検出できるように、次のイベントが に追加されました。 +軸ラベルに対するさまざまな操作を検出できるように、次のイベントが `XamDataChart` に追加されました。 - `LabelMouseDown` - `LabelMouseUp` @@ -165,15 +163,15 @@ DataPieChart および ProportionalCategoryAngleAxis に OthersCategoryBrush と #### 対応軸 -X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸を簡単に複製できるようになりました。 プロパティを有効にすると、複製された軸はチャートの反対側に配置され、そこから各軸プロパティを設定できます。 +X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸を簡単に複製できるようになりました。`TimeXAxis.CompanionAxisEnabled` プロパティを有効にすると、複製された軸はチャートの反対側に配置され、そこから各軸プロパティを設定できます。 #### RadialPieSeries インセット アウトライン - のアウトライン レンダリング方法を制御するために プロパティが追加されました。**true** に設定すると、アウトラインがスライス形状の内側に描画され、**false** (既定値) に設定すると、アウトラインはスライス形状の端に半分内側・半分外側で描画されます。 +`RadialPieSeries` のアウトライン レンダリング方法を制御するために `DataPieChart.UseInsetOutlines` プロパティが追加されました。**true** に設定すると、アウトラインがスライス形状の内側に描画され、**false** (既定値) に設定すると、アウトラインはスライス形状の端に半分内側・半分外側で描画されます。 **重大な変更** -- クラスの プロパティと プロパティが逆になっている問題が修正されました。これにより、 が返す値が変更されます。 +- `ChartMouseEventArgs` クラスの `PlotAreaPosition` プロパティと `ChartPosition` プロパティが逆になっている問題が修正されました。これにより、`PlotAreaPosition` と `ChartPosition` が返す値が変更されます。 ### 機能拡張 @@ -185,11 +183,11 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 - DataToolTipLayer、ItemToolTipLayer、CategoryToolTipLayer にスタイル設定用の新しいプロパティが追加されました: `ToolTipBackground`、`ToolTipBorderBrush`、および `ToolTipBorderThickness`。 -- DataLegend にスタイル設定用の新しいプロパティが追加されました: 、および はそれぞれ既定で transparent と 0 に設定されているため、境界線を表示するにはこれらのプロパティを設定する必要があります。 +- DataLegend にスタイル設定用の新しいプロパティが追加されました: `ContentBackground`、`ContentBorderBrush`、および `ContentBorderThickness`。`ContentBorderBrush` と `ContentBorderThickness` はそれぞれ既定で transparent と 0 に設定されているため、境界線を表示するにはこれらのプロパティを設定する必要があります。 -- マウスのワールド相対位置を提供する という新しいプロパティが に追加されました。この位置は、軸空間内の X 軸と Y 軸の両方に対して 0 から 1 の間の値になります。 +- マウスのワールド相対位置を提供する `WorldPosition` という新しいプロパティが `ChartMouseEventArgs` に追加されました。この位置は、軸空間内の X 軸と Y 軸の両方に対して 0 から 1 の間の値になります。 -- が追加されました。ハイライト表示されたシリーズに適用される不透明度を設定できます。 +- `SeriesViewer` と `DomainChart` に `SeriesViewer.HighlightingFadeOpacity` が追加されました。ハイライト表示されたシリーズに適用される不透明度を設定できます。 - ドメイン チャートの `CalloutLabelUpdating` イベントを公開しました。 @@ -201,10 +199,10 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 | バグ番号 | コントロール | 説明 | |------------|---------|-------------| -|31624 | | を含むウィンドウをリサイズすると、チャートがシリーズをレンダリングできなくなる。| -|27304 | | ズーム長方形が背景長方形と同じ位置に配置されない。| -|37930 | | Data Annotation Overlay のテキスト色が機能しない。| -|30600 | | チャートやシリーズに textStyle プロパティが存在しない (円チャートにはある)。| +|31624 | `CategoryChart` | `CategoryChart` を含むウィンドウをリサイズすると、チャートがシリーズをレンダリングできなくなる。| +|27304 | `XamDataChart` | ズーム長方形が背景長方形と同じ位置に配置されない。| +|37930 | `XamDataChart` | Data Annotation Overlay のテキスト色が機能しない。| +|30600 | `XamDoughnutChart` | チャートやシリーズに textStyle プロパティが存在しない (円チャートにはある)。| |38231 | `IgxGrid` | 非ピン固定列は、非表示が存在する場合に元の位置に戻らない。| |33861 | Excel Library | 折れ線チャートを追加すると、ドイツ語カルチャで Excel ファイルが破損する。| @@ -215,7 +213,7 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|36448 | | ラジアル ラベルの書式設定プロパティ (例: Title、SubTitles) が機能しない。| +|36448 | `XamRadialGauge` | ラジアル ラベルの書式設定プロパティ (例: Title、SubTitles) が機能しない。| ### {PackageCharts} (チャート) @@ -245,17 +243,17 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 - データ注釈スライス レイヤー - データ注釈ストリップ レイヤー -- [データ ツールチップ](./charts/features/chart-data-tooltip.mdx)と[データ 凡例](./charts/features/chart-data-legend.mdx)では、ツールチップまたは凡例のコンテンツをテーブルまたは垂直レイアウト構造でレイアウトするために使用できる プロパティが公開されています。 +- [データ ツールチップ](./charts/features/chart-data-tooltip.mdx)と[データ 凡例](./charts/features/chart-data-legend.mdx)では、ツールチップまたは凡例のコンテンツをテーブルまたは垂直レイアウト構造でレイアウトするために使用できる `LayoutMode` プロパティが公開されています。 -- チャートの プロパティが更新され、新しい列挙体 `DragSelect` が含まれるようになりました。これにより、ドラッグされたプレビュー Rect は、その中に含まれるポイントを選択します。 (ベータ版) +- チャートの `SeriesViewer.DefaultInteraction` プロパティが更新され、新しい列挙体 `DragSelect` が含まれるようになりました。これにより、ドラッグされたプレビュー Rect は、その中に含まれるポイントを選択します。 (ベータ版) -- [ValueOverlay と ValueLayer](./charts/features/chart-overlays.mdx) は、上記にリストした [チャート データ注釈](./charts/features/chart-data-annotations.mdx)に加えて、プロット領域に追加の注釈テキストをオーバーレイするために使用できる プロパティを公開するようになりました。これらの注釈の外観は、OverlayText プレフィックスが付いた多くのプロパティを使用して構成できます。たとえば、`OverlayTextBrush` プロパティはオーバーレイ テキストの色を構成します。 (ベータ版) +- [ValueOverlay と ValueLayer](./charts/features/chart-overlays.mdx) は、上記にリストした [チャート データ注釈](./charts/features/chart-data-annotations.mdx)に加えて、プロット領域に追加の注釈テキストをオーバーレイするために使用できる `ValueLayer.OverlayText` プロパティを公開するようになりました。これらの注釈の外観は、OverlayText プレフィックスが付いた多くのプロパティを使用して構成できます。たとえば、`OverlayTextBrush` プロパティはオーバーレイ テキストの色を構成します。 (ベータ版) - [トレンドライン レイヤー](./charts/features/chart-trendlines.mdx) シリーズ タイプを使用すると、トレンド ライン レイヤーごとに 1 つのトレンド ラインを特定のシリーズに適用できます。これにより、チャートに複数の [TrendlineLayer](./charts/features/chart-overlays.mdx) シリーズ タイプを使用できるため、単一のシリーズで複数のトレンド ラインを使用できるようになります。 ### {PackageDashboards} (ダッシュボード) -- では、ソート、グループ化、フィルタリング、選択などの集計を DataGrid ビューからチャート視覚化に伝播できるようになりました。これは現在、 の `DashboardTile.ItemsSource` を `IgxLocalDataSource` のインスタンスにバインドすることによってサポートされています。 +- `DashboardTile` では、ソート、グループ化、フィルタリング、選択などの集計を DataGrid ビューからチャート視覚化に伝播できるようになりました。これは現在、`DashboardTile` の `DashboardTile.ItemsSource` を `IgxLocalDataSource` のインスタンスにバインドすることによってサポートされています。 ### {PackageGrids} @@ -276,8 +274,8 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|37023 | | overflow: hidden が設定されている場合にツールチップが切り取られたり画面外に表示されたりする。| -|37685 | | Arial フォントで書式設定された数値が正しく描画されない。| +|37023 | `XamDataChart` | overflow: hidden が設定されている場合にツールチップが切り取られたり画面外に表示されたりする。| +|37685 | `Spreadsheet` | Arial フォントで書式設定された数値が正しく描画されない。| |37244 | Excel Library | カスタム データ検証が機能しない。| ## **{PackageVerChanges-24-2-FEB}** @@ -286,9 +284,9 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 #### Toolbar -- に新しい `GroupHeaderTextStyle` プロパティを追加しました。設定されている場合、すべての アクションに適用されます。 -- タイトル テキストの水平方向の配置を制御する という新しいプロパティを に追加しました。 -- に、パネル内の項目間の間隔を制御する という新しいプロパティを追加しました。 +- `Toolbar` と `ToolPanel` に新しい `GroupHeaderTextStyle` プロパティを追加しました。設定されている場合、すべての `ToolActionGroupHeader` アクションに適用されます。 +- タイトル テキストの水平方向の配置を制御する `SeriesViewer.TitleHorizontalAlignment` という新しいプロパティを `ToolAction` に追加しました。 +- `ToolActionSubPanel` に、パネル内の項目間の間隔を制御する `ToolPanel.ItemSpacing` という新しいプロパティを追加しました。 ### バグ修正 @@ -296,13 +294,13 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 | バグ番号 | コントロール | 説明 | |------------|---------|------------------| -|30286 | | バブルをクリックすると、Bubble Series のツールチップが近くのバブル データの内容に切り替わる。| -|32906 | | は上部に 2 つの xAxis を表示している。| -|33605 | | 凡例に ScatterLineSeries の線の色が正しく表示されない。| -|35498 | | IncludedSeries で指定されたシリーズのツールチップは表示されない。| -|34776 | | を繰り返し表示したり非表示にしたりすると、JS ヒープでメモリ リークが発生する。| -|34053 | | スケール ラベルの位置がずれる。| -|35496 | | Excel に画像付きでスタイルを設定すると エラーが発生する。| +|30286 | `XamDataChart` | バブルをクリックすると、Bubble Series のツールチップが近くのバブル データの内容に切り替わる。| +|32906 | `XamDataChart` | `XamDataChart` は上部に 2 つの xAxis を表示している。| +|33605 | `XamDataChart` | 凡例に ScatterLineSeries の線の色が正しく表示されない。| +|35498 | `XamDataChart` | IncludedSeries で指定されたシリーズのツールチップは表示されない。| +|34776 | `XamDataChart` | `XamDataChart` を繰り返し表示したり非表示にしたりすると、JS ヒープでメモリ リークが発生する。| +|34053 | `XamRadialGauge` | スケール ラベルの位置がずれる。| +|35496 | `Spreadsheet` | Excel に画像付きでスタイルを設定すると エラーが発生する。| |36176 | Excel Library | LET 関数を含む Excel ブックを読み込むと、例外が発生する。| |36379 | Excel Library | Excel ワークブック内のアルファ チャネルを含む色は読み込まれない。| |26218 | Excel Library | Excel ファイルを読み込むだけで、チャートのプロット領域の右マージンが狭くなり、塗りつぶしパターンと前景の塗りつぶしが消える。| @@ -326,11 +324,11 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 ## **{PackageVerChanges-24-1-SEP}** -- [データ円チャート](./charts/types/data-pie-chart.mdx) - は円ャートを表示する新しいコンポーネントです。このコンポーネントは、 と同様に動作し、基になるデータ モデルのプロパティを自動的に検出しながら、ItemLegend コンポーネントを介して選択、ハイライト表示、アニメーション、凡例のサポートを可能にします。 +- [データ円チャート](./charts/types/data-pie-chart.mdx) - `DataPieChart` は円ャートを表示する新しいコンポーネントです。このコンポーネントは、`CategoryChart` と同様に動作し、基になるデータ モデルのプロパティを自動的に検出しながら、ItemLegend コンポーネントを介して選択、ハイライト表示、アニメーション、凡例のサポートを可能にします。 -- [比例カテゴリ角度軸](./charts/types/radial-chart.mdx) - スライスをプロットするための、 のラジアル円シリーズの新しい軸。円チャートに似ており、データ ポイントが円グラフ内のセグメントとして表されます。 +- [比例カテゴリ角度軸](./charts/types/radial-chart.mdx) - スライスをプロットするための、`XamDataChart` のラジアル円シリーズの新しい軸。円チャートに似ており、データ ポイントが円グラフ内のセグメントとして表されます。 -- +- `Toolbar` - 新しい ToolActionCheckboxList 選択用のチェックボックスを備えた項目のコレクションを表示する新しい CheckboxList ToolAction。ToolAction CheckboxList 内のグリッドの高さは 5 項目まで大きくなり、その後スクロールバーが表示されます。 @@ -349,78 +347,78 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 ### {PackageCharts} (チャート) -- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。 プロパティは、各シリーズのグループ化を切り替え、オプトインすると プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 +- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。`GroupRowVisible` プロパティは、各シリーズのグループ化を切り替え、オプトインすると `CrosshairLayer.DataLegendGroup` プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 -- [チャートの選択](./charts/features/chart-data-selection.mdx) - 新しいシリーズ選択のスタイル設定。これは、 および のすべてのカテゴリ、財務、およびラジアル シリーズに広く採用されています。シリーズはクリックして異なる色で表示したり、明るくしたり、薄くしたり、フォーカスのアウトラインを表示したりできます。個々のシリーズまたはデータ項目全体を通じて影響を受ける項目を管理します。 -複数のシリーズとマーカーがサポートされています。特定のデータ項目の値間のさまざまな相違点や類似点を示すのに役立ちます。また、`SelectedSeriesItemsChanged` イベントと は、選択内容に基づいたデータ分析を行うポップアップやその他の画面など、アプリケーション内で実行できるその他のアクションを取り巻く堅牢なビジネス要件を構築するための追加の支援として利用できます。 +- [チャートの選択](./charts/features/chart-data-selection.mdx) - 新しいシリーズ選択のスタイル設定。これは、`CategoryChart` および `XamDataChart` のすべてのカテゴリ、財務、およびラジアル シリーズに広く採用されています。シリーズはクリックして異なる色で表示したり、明るくしたり、薄くしたり、フォーカスのアウトラインを表示したりできます。個々のシリーズまたはデータ項目全体を通じて影響を受ける項目を管理します。 +複数のシリーズとマーカーがサポートされています。特定のデータ項目の値間のさまざまな相違点や類似点を示すのに役立ちます。また、`SelectedSeriesItemsChanged` イベントと `SeriesViewer.SelectedSeriesItems` は、選択内容に基づいたデータ分析を行うポップアップやその他の画面など、アプリケーション内で実行できるその他のアクションを取り巻く堅牢なビジネス要件を構築するための追加の支援として利用できます。 -- [ツリーマップのハイライト表示](./charts/types/treemap-chart.mdx#{PlatformLower}-リーマップのハイライト表示) - ツリー マップの項目のマウスオーバーによるハイライト表示を構成できる プロパティが公開されました。このプロパティには 2 つのオプションがあります: `Brighten` では、マウスを置いた項目にのみハイライト表示が適用され、`FadeOthers` では、マウスホバーした項目のハイライト表示はそのままで、それ以外はすべてフェードアウトします。このハイライト表示はアニメーション化されており、 プロパティを使用して制御できます。 +- [ツリーマップのハイライト表示](./charts/types/treemap-chart.mdx#{PlatformLower}-リーマップのハイライト表示) - ツリー マップの項目のマウスオーバーによるハイライト表示を構成できる `SeriesViewer.HighlightingMode` プロパティが公開されました。このプロパティには 2 つのオプションがあります: `Brighten` では、マウスを置いた項目にのみハイライト表示が適用され、`FadeOthers` では、マウスホバーした項目のハイライト表示はそのままで、それ以外はすべてフェードアウトします。このハイライト表示はアニメーション化されており、`SeriesViewer.HighlightingTransitionDuration` プロパティを使用して制御できます。 -- [ツリーマップのパーセントベースのハイライト表示](./charts/types/treemap-chart.mdx#{PlatformLower}-ツリーマップのパーセントベースのハイライト表示) - 新しいパーセントベースのハイライト表示により、ノードはコレクションの進行状況またはサブセットを表すことができます。外観は、データ項目のメンバーによって、または新しい を指定することによって、特定の値までの背景色の塗りつぶしとして表示されます。 で切り替えることができ、`FillBrushes` でスタイルを設定できます。 +- [ツリーマップのパーセントベースのハイライト表示](./charts/types/treemap-chart.mdx#{PlatformLower}-ツリーマップのパーセントベースのハイライト表示) - 新しいパーセントベースのハイライト表示により、ノードはコレクションの進行状況またはサブセットを表すことができます。外観は、データ項目のメンバーによって、または新しい `XYChart.HighlightedItemsSource` を指定することによって、特定の値までの背景色の塗りつぶしとして表示されます。`SeriesViewer.HighlightedValuesDisplayMode` で切り替えることができ、`FillBrushes` でスタイルを設定できます。 -- - 選択した特定のツールの周囲に境界線を描くための ToolAction の新しい オプション。 +- `Toolbar` - 選択した特定のツールの周囲に境界線を描くための ToolAction の新しい `ToolActionGroupHeader.IsHighlighted` オプション。 ### {PackageGauges} (ゲージ) -- - - ハイライト針の新しいラベル。 および、その他の HighlightLabel の多くのスタイル関連プロパティが追加されました。 +- `XamRadialGauge` + - ハイライト針の新しいラベル。`HighlightLabelText` と `HighlightLabelSnapsToNeedlePivot` および、その他の HighlightLabel の多くのスタイル関連プロパティが追加されました。 ## **{PackageVerChanges-24-1-JUN}** ### {PackageCharts} (チャート) -- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。 プロパティは、各シリーズのグループ化を切り替え、オプトインすると プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 +- [データ凡例のグループ化](./charts/features/chart-data-legend.mdx#{PlatformLower}-データ凡例のグループ化) と [データ ツールチップのグループ化](./charts/features/chart-data-tooltip.mdx#{PlatformLower}-データ-チャートのデータ-ツールチップのグループ化) - 新しいグループ化機能が追加されました。`GroupRowVisible` プロパティは、各シリーズのグループ化を切り替え、オプトインすると `CrosshairLayer.DataLegendGroup` プロパティを介してグループ テキストを割り当てることができます 同じ値が複数のシリーズに適用されている場合、それらはグループ化されて表示されます。すべてのユーザー向けに分類および整理する必要がある大規模なデータセットに役立ちます。 -- [チャートの選択](./charts/features/chart-data-selection.mdx) - 新しいシリーズ選択のスタイル設定。これは、 および のすべてのカテゴリ、財務、およびラジアル シリーズに広く採用されています。シリーズはクリックして異なる色で表示したり、明るくしたり、薄くしたり、フォーカスのアウトラインを表示したりできます。個々のシリーズまたはデータ項目全体を通じて影響を受ける項目を管理します。 -複数のシリーズとマーカーがサポートされています。特定のデータ項目の値間のさまざまな相違点や類似点を示すのに役立ちます。また、`SelectedSeriesItemsChanged` イベントと は、選択内容に基づいたデータ分析を行うポップアップやその他の画面など、アプリケーション内で実行できるその他のアクションを取り巻く堅牢なビジネス要件を構築するための追加の支援として利用できます。 +- [チャートの選択](./charts/features/chart-data-selection.mdx) - 新しいシリーズ選択のスタイル設定。これは、`CategoryChart` および `XamDataChart` のすべてのカテゴリ、財務、およびラジアル シリーズに広く採用されています。シリーズはクリックして異なる色で表示したり、明るくしたり、薄くしたり、フォーカスのアウトラインを表示したりできます。個々のシリーズまたはデータ項目全体を通じて影響を受ける項目を管理します。 +複数のシリーズとマーカーがサポートされています。特定のデータ項目の値間のさまざまな相違点や類似点を示すのに役立ちます。また、`SelectedSeriesItemsChanged` イベントと `SeriesViewer.SelectedSeriesItems` は、選択内容に基づいたデータ分析を行うポップアップやその他の画面など、アプリケーション内で実行できるその他のアクションを取り巻く堅牢なビジネス要件を構築するための追加の支援として利用できます。 ### {PackageGauges} (ゲージ) -- - - ハイライト針の新しいラベル。 および、その他の HighlightLabel の多くのスタイル関連プロパティが追加されました。 +- `XamRadialGauge` + - ハイライト針の新しいラベル。`HighlightLabelText` と `HighlightLabelSnapsToNeedlePivot` および、その他の HighlightLabel の多くのスタイル関連プロパティが追加されました。 ## **{PackageVerChanges-23-2-MAR}** ### {PackageCharts} -- プロパティによる新しいデータ フィルタリング。フィルター式を適用して、チャート データをレコードのサブセットにフィルターします。大規模なデータのドリルダウンに使用できます。 +- `XYChart.InitialFilter` プロパティによる新しいデータ フィルタリング。フィルター式を適用して、チャート データをレコードのサブセットにフィルターします。大規模なデータのドリルダウンに使用できます。 ## {PackageGauges} ### **{PackageVerChanges-23-2-JAN}** - Save tool action has been added to save the chart to an image via the clipboard. -- Vertical orientation has been added via the toolbar's property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. +- Vertical orientation has been added via the toolbar's `Toolbar.Orientation` property. By default the toolbar is horizontal, now the toolbar can be shown in vertical orientation where the tools will popup to the left/right respectfully. - Custom SVG icons support was added via the toolbar's `renderImageFromText` method, further enhancing custom tool creation. ## {PackageCharts} (チャート) ### **{PackageVerChanges-23-2}** -- [Toolbar](./menus/toolbar.mdx) - This component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tool items when linked to our or components. You'll be able to create custom tools for your project allowing end users to provide changes, offering an endless amount of customization. +- [Toolbar](./menus/toolbar.mdx) - This component is a companion container for UI operations to be used primarily with our charting components. The toolbar will dynamically update with a preset of properties and tool items when linked to our `XamDataChart` or `CategoryChart` components. You'll be able to create custom tools for your project allowing end users to provide changes, offering an endless amount of customization. ### {PackageGrids} - Toolbar - - クリップボードを介してチャートを画像に保存するための保存ツール アクションが追加されました。 -- ツールバーの プロパティを介して垂直方向が追加されました。デフォルトでは、ツールバーは水平方向ですが、ツールバーを垂直方向に表示できるようになり、ツールが左右にポップアップ表示されます。 +- ツールバーの `Toolbar.Orientation` プロパティを介して垂直方向が追加されました。デフォルトでは、ツールバーは水平方向ですが、ツールバーを垂直方向に表示できるようになり、ツールが左右にポップアップ表示されます。 - ツールバーの `renderImageFromText` メソッドを介してカスタム SVG アイコンのサポートが追加され、カスタム ツールの作成がさらに強化されました。 -- It is now possible to apply a **dash array** to the different parts of the series of the . You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. +- It is now possible to apply a **dash array** to the different parts of the series of the `XamDataChart`. You can apply this to the [series](./charts/types/line-chart.mdx#{PlatformLower}-styling-line-chart) plotted in the chart, the [gridlines](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-axis-gridlines-properties) of the chart, and the [trendlines](./charts/features/chart-trendlines.mdx#{PlatformLower}-chart-trendlines-dash-array-example) of the series plotted in the chart. ## **{PackageVerChanges-23-1}** - Angular 16 support. ## 新しいコンポーネント -- [Toolbar](./menus/toolbar.mdx) - このコンポーネントは、主にチャート コンポーネントで使用される UI 操作のコンパニオン コンテナーです。ツールバーは、 または コンポーネントにリンクされると、プロパティとツール項目のプリセットで動的に更新されます。プロジェクト用のカスタム ツールを作成して、エンド ユーザーが変更を提供できるようになり、無限のカスタマイズが可能になります。 +- [Toolbar](./menus/toolbar.mdx) - このコンポーネントは、主にチャート コンポーネントで使用される UI 操作のコンパニオン コンテナーです。ツールバーは、`XamDataChart` または `CategoryChart` コンポーネントにリンクされると、プロパティとツール項目のプリセットで動的に更新されます。プロジェクト用のカスタム ツールを作成して、エンド ユーザーが変更を提供できるようになり、無限のカスタマイズが可能になります。 ## {PackageCharts} (チャート) -- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - という名前の新しいシリーズ タイプが公開されました。これにより、Maximum、Minimum、Average など、プロットされたデータのさまざまな焦点のオーバーレイを描画できます。これは、新しい コレクションに追加することで、 に適用されます。 +- [ValueLayer](./charts/features/chart-overlays.mdx#{PlatformLower}-value-layer) - `ValueLayer` という名前の新しいシリーズ タイプが公開されました。これにより、Maximum、Minimum、Average など、プロットされたデータのさまざまな焦点のオーバーレイを描画できます。これは、新しい `XYChart.ValueLines` コレクションに追加することで、`CategoryChart` と `FinancialChart` に適用されます。 -- **ダッシュ配列**を のシリーズのさまざまな部分に適用できるようになりました。これは、チャートにプロットされた[シリーズ](./charts/types/line-chart.mdx#{PlatformLower}-折れ線チャートのスタイル設定)、チャートの[グリッド線](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-軸グリッド線のプロパティ)、およびチャートにプロットされたシリーズの[トレンドライン](./charts/features/chart-trendlines.mdx#{PlatformLower}-チャート-トレンドラインのダッシュ配列の例)に適用できます。 +- **ダッシュ配列**を `XamDataChart` のシリーズのさまざまな部分に適用できるようになりました。これは、チャートにプロットされた[シリーズ](./charts/types/line-chart.mdx#{PlatformLower}-折れ線チャートのスタイル設定)、チャートの[グリッド線](./charts/features/chart-axis-gridlines.mdx#{PlatformLower}-軸グリッド線のプロパティ)、およびチャートにプロットされたシリーズの[トレンドライン](./charts/features/chart-trendlines.mdx#{PlatformLower}-チャート-トレンドラインのダッシュ配列の例)に適用できます。 -The Chart's [Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using | because these properties are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. +The Chart's [Aggregation](./charts/features/chart-data-aggregations.mdx) will not work when using `XYChart.IncludedProperties` | `XYChart.ExcludedProperties` because these properties are meant for non-aggregated data. Once you attempt to aggregate data these properties should no longer be used. The reason it does not work is because aggregation replaces the collection that is passed to the chart for render. The include/exclude properties are designed to filter in/out properties of that data and those properties no longer exist in the new aggregated collection. ## **{PackageVerChanges-22-2.2}** ### **{PackageVerChanges-22-2.1}** @@ -436,29 +434,29 @@ The Chart's [Aggregation](./charts/features/chart-data-aggregations.mdx) will no This release introduces a few improvements and simplifications to visual design and configuration options for the geographic map and all chart components. -- Changed property's type to **YAxisLabelLocation** from **AxisLabelLocation** in and -- Changed property's type to **XAxisLabelLocation** from **AxisLabelLocation** in -- Added property to -- Added support for representing geographic series of in a legend -- Added crosshair lines by default in and -- Added crosshair annotations by default in and -- Added final value annotation by default in +- Changed `XYChart.YAxisLabelLocation` property's type to **YAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` and `CategoryChart` +- Changed `XYChart.XAxisLabelLocation` property's type to **XAxisLabelLocation** from **AxisLabelLocation** in `FinancialChart` +- Added `XYChart.XAxisLabelLocation` property to `CategoryChart` +- Added support for representing geographic series of `XamGeographicMap` in a legend +- Added crosshair lines by default in `FinancialChart` and `CategoryChart` +- Added crosshair annotations by default in `FinancialChart` and `CategoryChart` +- Added final value annotation by default in `FinancialChart` - Added new properties in Category Chart and Financial Chart: - - and other properties for customizing crosshairs lines - - and other properties for customizing crosshairs annotations - - and other properties for customizing final value annotations - - that allow changing opacity of series fill (e.g. Area chart) - - that allows changing thickness of markers + - `XYChart.CrosshairsLineThickness` and other properties for customizing crosshairs lines + - `XYChart.CrosshairsAnnotationXAxisBackground` and other properties for customizing crosshairs annotations + - `XYChart.FinalValueAnnotationsBackground` and other properties for customizing final value annotations + - `XYChart.AreaFillOpacity` that allow changing opacity of series fill (e.g. Area chart) + - `XYChart.MarkerThickness` that allows changing thickness of markers - Added new properties in Category Chart, Financial Chart, Data Chart, and Geographic Map: - - that allows which marker type is assigned to multiple series in the same chart - - for setting badge shape of all series represented in a legend - - for setting badge complexity on all series in a legend + - `SeriesViewer.MarkerAutomaticBehavior` that allows which marker type is assigned to multiple series in the same chart + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape of all series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on all series in a legend - Added new properties in Series in Data Chart and Geographic Map: - - for setting badge shape on specific series represented in a legend - - for setting badge complexity on specific series in a legend + - `SeriesViewer.LegendItemBadgeShape` for setting badge shape on specific series represented in a legend + - `SeriesViewer.LegendItemBadgeMode` for setting badge complexity on specific series in a legend - Changed default vertical crosshair line stroke from #000000 to #BBBBBB in category chart and series -- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's property to `SmartIndexed` enum value -- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's property to `MatchSeries` enum value +- Changed shape of markers to circle for all series plotted in the same chart. This can be reverted by setting chart's `SeriesViewer.MarkerAutomaticBehavior` property to `SmartIndexed` enum value +- Simplified shapes of series in chart's legend to display only circle, line, or square. This can be reverted by setting chart's `SeriesViewer.LegendItemBadgeMode` property to `MatchSeries` enum value - Changed color palette of series and markers displayed in all charts to improve accessibility | Old brushes/outlines | New outline/brushes | @@ -478,23 +476,23 @@ This release introduces a few improvements and simplifications to visual design - Changed Scatter High Density series’ colors for heat max property from #ee5879 to #ee5879 - Changed Financial/Waterfall series’ `NegativeBrush` and `NegativeOutline` properties from #C62828 to #ee5879 - Changed marker's thickness to 2px from 1px -- Changed marker's fill to match the marker's outline for , , , . You can use set property to Normal to undo this change -- Compressed labelling for the and +- Changed marker's fill to match the marker's outline for `PointSeries`, `BubbleSeries`, `ScatterSeries`, `PolarScatterSeries`. You can use set `XYChart.MarkerFillMode` property to Normal to undo this change +- Compressed labelling for the `TimeXAxis` and `OrdinalTimeXAxis` - New Marker Properties: - - series. - Can be set to `MatchMarkerOutline` so the marker depends on the outline - - series. - Can be set to a value 0 to 1 - - series. - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color + - series.`XYChart.MarkerFillMode` - Can be set to `MatchMarkerOutline` so the marker depends on the outline + - series.`XYChart.MarkerFillOpacity` - Can be set to a value 0 to 1 + - series.`XYChart.MarkerOutlineMode` - Can be set to `MatchMarkerBrush` so the marker's outline depends on the fill brush color - New Series Property: - - series. - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series -- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the , listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - Can be set to toggle the series outline visibility. Note, for Data Chart, the property is on the series +- New chart properties that define bleed over area introduced into the viewport when the chart is at the default zoom level. A common use case is to provide space between the axes and first/last data points. Note, the `XYChart.ComputedPlotAreaMarginMode`, listed below, will automatically set the margin when markers are enabled. The others are designed to specify a `Double` to represent the thickness, where PlotAreaMarginLeft etc. adjusts the space to all four sides of the chart: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - New Highlighting Properties - - chart. - Sets whether hovered or non-hovered series to fade, brighten - - chart. - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item + - chart.`SeriesViewer.HighlightingMode` - Sets whether hovered or non-hovered series to fade, brighten + - chart.`SeriesViewer.HighlightingBehavior` - Sets whether the series highlights depending on mouse position e.g. directly over or nearest item - Note, in previous releases the highlighting was limited to fade on hover. - Added Highlighting Stacked, Scatter, Polar, Radial, and Shape series: - Added Annotation layers to Stacked, Scatter, Polar, Radial, and Shape series: @@ -533,30 +531,30 @@ These features are CTP ## {PackageCharts} (チャート) -このリリースでは、すべてのチャート コンポーネントに、いくつかの新しく改善されたビジュアル デザインと構成オプションが導入されています。例えば、、および 。 +このリリースでは、すべてのチャート コンポーネントに、いくつかの新しく改善されたビジュアル デザインと構成オプションが導入されています。例えば、`XamDataChart`、`CategoryChart`、および `FinancialChart`。 - 棒/縦棒/ウォーターフォール シリーズを、角丸ではなく角が四角になるように変更しました。 - heat min プロパティの 散布高密度シリーズの色を #8a5bb1 から #000000 に変更しました。 - heat max プロパティの 散布高密度シリーズの色を #ee5879 から #ee5879 に変更しました。 - ファイナンシャル/ウォーターフォール シリーズの `NegativeBrush` および `NegativeOutline` プロパティを #C62828 から #ee5879 に変更しました。 - マーカーの厚さを 1px から 2px に変更しました。 -- のマーカーのアウトラインに一致するようにマーカーの塗りつぶしを変更しました。 プロパティを Normal に設定すると、この変更を元に戻すことができます。 -- および のラベリングを圧縮しました。 +- `PointSeries`、`BubbleSeries`、`ScatterSeries`、`PolarScatterSeries` のマーカーのアウトラインに一致するようにマーカーの塗りつぶしを変更しました。`XYChart.MarkerFillMode` プロパティを Normal に設定すると、この変更を元に戻すことができます。 +- `TimeXAxis` および `OrdinalTimeXAxis` のラベリングを圧縮しました。 - 新しいマーカー プロパティ: - - series. - マーカーがアウトラインに依存するように、`MatchMarkerOutline` に設定できます。 - - series. - 0〜1 の値に設定できます。 - - series. - マーカーのアウトラインが塗りブラシの色に依存するように、`MatchMarkerBrush` に設定できます。 + - series.`XYChart.MarkerFillMode` - マーカーがアウトラインに依存するように、`MatchMarkerOutline` に設定できます。 + - series.`XYChart.MarkerFillOpacity` - 0〜1 の値に設定できます。 + - series.`XYChart.MarkerOutlineMode` - マーカーのアウトラインが塗りブラシの色に依存するように、`MatchMarkerBrush` に設定できます。 - 新シリーズプロパティ: - - series. - シリーズ アウトラインの表示を切り替えるように設定できます。データ チャートの場合、プロパティはシリーズ上にあることに注意してください。 - - チャートがデフォルトのズーム レベルにあるときにビューポートに導入されるブリード オーバー領域を定義する新しいチャート プロパティを追加しました。一般的な使用例では、軸と最初/最後のデータ ポイントの間にスペースを提供します。以下にリストされている は、マーカーが有効になっているときに自動的にマージンを設定することに注意してください。その他は、厚さを表す `Double` を指定するように設計されており、PlotAreaMarginLeft などがチャートの 4 辺すべてにスペースを調整します: - - chart. - - chart. - - chart. - - chart. - - chart. + - series.`XYChart.OutlineMode` - シリーズ アウトラインの表示を切り替えるように設定できます。データ チャートの場合、プロパティはシリーズ上にあることに注意してください。 + - チャートがデフォルトのズーム レベルにあるときにビューポートに導入されるブリード オーバー領域を定義する新しいチャート プロパティを追加しました。一般的な使用例では、軸と最初/最後のデータ ポイントの間にスペースを提供します。以下にリストされている `XYChart.ComputedPlotAreaMarginMode` は、マーカーが有効になっているときに自動的にマージンを設定することに注意してください。その他は、厚さを表す `Double` を指定するように設計されており、PlotAreaMarginLeft などがチャートの 4 辺すべてにスペースを調整します: + - chart.`XYChart.PlotAreaMarginLeft` + - chart.`XYChart.PlotAreaMarginTop` + - chart.`XYChart.PlotAreaMarginRight` + - chart.`XYChart.PlotAreaMarginBottom` + - chart.`XYChart.ComputedPlotAreaMarginMode` - 新しいハイライト表示プロパティ: - - chart. - ホバーされたシリーズとホバーされていないシリーズをフェードまたは明るくするかを設定します。 - - chart. - 真上または最も近い項目など、マウスの位置に応じてシリーズをハイライト表示するかどうかを設定します。 + - chart.`SeriesViewer.HighlightingMode` - ホバーされたシリーズとホバーされていないシリーズをフェードまたは明るくするかを設定します。 + - chart.`SeriesViewer.HighlightingBehavior` - 真上または最も近い項目など、マウスの位置に応じてシリーズをハイライト表示するかどうかを設定します。 - 以前のリリースでは、ハイライト表示はホバー時にフェードするように制限されていたことに注意してください。 - 積層型、散布図、極座標、ラジアル、図形シリーズにハイライト表示を追加しました。 - 積層型、散布図、極座標、ラジアル、図形注釈レイヤーを追加しました。 diff --git a/docs/xplat/src/content/jp/components/general-getting-started.mdx b/docs/xplat/src/content/jp/components/general-getting-started.mdx index 05b682af15..83d60b6a21 100644 --- a/docs/xplat/src/content/jp/components/general-getting-started.mdx +++ b/docs/xplat/src/content/jp/components/general-getting-started.mdx @@ -12,7 +12,6 @@ platformType: xplat import DocsAside from 'igniteui-astro-components/components/mdx/DocsAside.astro'; import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; import DownloadCard from 'docs-template/components/mdx/DownloadCard.astro'; import DownloadCardGroup from 'docs-template/components/mdx/DownloadCardGroup.astro'; import { Image } from 'astro:assets'; @@ -293,7 +292,7 @@ npm install igniteui-webcomponents -次に、`\index.ts` ファイルで使用するコンポーネントをインポートする必要があります。次のように 関数を使用して 1 つ以上のコンポーネントをインポートできます: +次に、`\index.ts` ファイルで使用するコンポーネントをインポートする必要があります。次のように `defineComponents` 関数を使用して 1 つ以上のコンポーネントをインポートできます: @@ -307,7 +306,7 @@ defineComponents(IgcAvatarComponent, IgcBadgeComponent); - 関数を使用して、すべてのコンポーネントをインポートすることもできます。 +`defineAllComponents` 関数を使用して、すべてのコンポーネントをインポートすることもできます。 diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-data-model.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-data-model.mdx index 08658df902..cef9aa0f1f 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-data-model.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-data-model.mdx @@ -40,7 +40,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; |`GeographicPolylineSeries`|`shapeMemberPath`|線の地理的座標を含む `dataSource` 項目のデータ列の名前を指定します。このプロパティは、x プロパティと y プロパティを持つオブジェクトの配列の配列にマップする必要があります。 | ## コード スニペット -以下のコードは、`GeographicSymbolSeries` を、経度と緯度の座標を使用して格納された世界の一部の都市の地理的位置を含むカスタム データ モデルにバインドする方法を示します。また、以下のコードで全体を示す `\MapGeodesics` の大円距離の計算を使用してこれらの場所間の最短の地理的経路をプロットするために `GeographicPolylineSeries` を使用します。 +以下のコードは、`GeographicSymbolSeries` を、経度と緯度の座標を使用して格納された世界の一部の都市の地理的位置を含むカスタム データ モデルにバインドする方法を示します。また、以下のコードで全体を示す `MapGeodesics` の大円距離の計算を使用してこれらの場所間の最短の地理的経路をプロットするために `GeographicPolylineSeries` を使用します。 ```json-snippet source="/maps/geo-map/binding-data-model" { diff --git a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx index a95a3778d2..ab72d9d56b 100644 --- a/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-binding-multiple-shapes.mdx @@ -111,7 +111,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## シェープファイルの読み込み -次に、ページのコンストラクターで、地理マップコンポーネントに表示する各シェープファイルの `ShapefileRecord` を追加します。各ソースには、そのレコードをデータに変換するメソッドが渡されます。これらのメソッドは `\MapMultipleShapesReaders` クラスに属し、以下の各セクションで示します。 +次に、ページのコンストラクターで、地理マップコンポーネントに表示する各シェープファイルの `ShapefileRecord` を追加します。各ソースには、そのレコードをデータに変換するメソッドが渡されます。これらのメソッドは `MapMultipleShapesReaders` クラスに属し、以下の各セクションで示します。 ```json-snippet ref="shapes" source="/maps/geo-map/binding-multiple-shapes" channel="handlersImports...handler" item="MapMultipleShapesLoad" ``` diff --git a/docs/xplat/src/content/jp/components/geo-map-display-bing-imagery.mdx b/docs/xplat/src/content/jp/components/geo-map-display-bing-imagery.mdx index 1ed0a74bcb..5e585a30aa 100644 --- a/docs/xplat/src/content/jp/components/geo-map-display-bing-imagery.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-display-bing-imagery.mdx @@ -31,7 +31,7 @@ import bingmapsimagery from '@xplat-images/general/BingMapsImagery.png'; {/**/} -Angular Bing Maps Imagery +{Platform} Bing Maps imagery @@ -148,7 +148,7 @@ roadImagery.bingImageryRestUri = tileUri; |`cultureName`|文字列|タイル ソースのカルチャ名を設定するためのプロパティを表します。| |`isDeferredLoad`|ブール値|Bing Maps サービスが有効なプロパティ値の割り当てで自動初期化するかどうかを指定するプロパティを表します。| |`isInitialized`|ブール値|True に設定されているプロパティは、Bing Maps サービスからの地理的画像タイルが初期化され、マップ コンポーネントでのレンダリングの準備ができたときに発生することを表します。| -|`subDomains`||URI サブ ドメインの画像コレクションを表します。| +|`subDomains`|`SubDomainsCollection`|URI サブ ドメインの画像コレクションを表します。| |`tilePath`|文字列|マップ タイル画像 URI を設定するプロパティを表します。これは Bing Maps の実際の位置です。| diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-esri.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-esri.mdx index 0cf67ba675..81759b823b 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-esri.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-esri.mdx @@ -10,12 +10,10 @@ llms: platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} Esri ユーティリティ -リソース トピックは、Esri Maps が で提供する の使用に役立つユーティリティの実装を提供します。 +リソース トピックは、Esri Maps が `ArcGISOnlineMapImagery.GeographicMap` で提供する `ArcGISOnlineMapImagery` の使用に役立つユーティリティの実装を提供します。 ## コード スニペット @@ -143,5 +141,5 @@ public class EsriStyle ## API リファレンス -
-
+`ArcGISOnlineMapImagery`
+`XamGeographicMap`
diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-shape-styling-utility.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-shape-styling-utility.mdx index 2902e9b3bc..a65dbb2eaa 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-shape-styling-utility.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-shape-styling-utility.mdx @@ -10,12 +10,10 @@ llms: platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} シェイプ スタイリング ユーティリティ -リソース トピックは、{Platform} コンポーネントで の UI 要素のスタイリングに役立つユーティリティの実装を提供します。 +リソース トピックは、{Platform} `XamGeographicMap` コンポーネントで `GeographicShapeSeries` の UI 要素のスタイリングに役立つユーティリティの実装を提供します。 ## 必要なインポート @@ -54,5 +52,5 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## API リファレンス -
-
+`GeographicShapeSeries`
+`XamGeographicMap`
diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx index 2768b5663e..ba21a83116 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-connections.mdx @@ -9,9 +9,6 @@ llms: description: "リソース トピックは、空港の位置、飛行経路、および地理的なグリッド線を生成するためのデータユーティリティの実装を提供します。" platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} ワールド コネクション リソース トピックは、空港の位置、飛行経路、および地理的なグリッド線を生成するためのデータユーティリティの実装を提供します。これらのデータ ソースを独自の地理データを作成するための参照点として使用できます。このユーティリティは [WorldUtil](./geo-map-resources-world-util.mdx) と [WorldLocations](./geo-map-resources-world-locations.mdx) スクリプトに依存していることに注意してください。 @@ -41,4 +38,4 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## API リファレンス -
+`XamGeographicMap`
diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx index cacd532db8..87de4823c2 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-locations.mdx @@ -9,9 +9,6 @@ llms: description: "インフラジスティックスの {Platform} マップ データ ユーティリティを使用して、都市の地理的位置と国の首都を生成します。" platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} 世界の場所 リソース トピックでは、都市の地理的位置と国の首都を生成するためのデータ ユーティリティの実装を提供します。 @@ -41,4 +38,4 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## API リファレンス -
+`XamGeographicMap`
diff --git a/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx b/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx index 02f52a13bd..1016bd26f6 100644 --- a/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-resources-world-util.mdx @@ -9,9 +9,6 @@ llms: description: "インフラジスティックスの {Platform} マップ データ ユーティリティを使用して、地理的データを生成します。" platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} ワールド ユーティリティ リソース トピックは、{Platform} 地理データの生成に役立つユーティリティの実装です。 @@ -41,4 +38,4 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## API リファレンス -
+`XamGeographicMap`
diff --git a/docs/xplat/src/content/jp/components/geo-map-shape-files-reference.mdx b/docs/xplat/src/content/jp/components/geo-map-shape-files-reference.mdx index 83c7aa21db..a0d0c349b8 100644 --- a/docs/xplat/src/content/jp/components/geo-map-shape-files-reference.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-shape-files-reference.mdx @@ -9,10 +9,6 @@ llms: description: "このトピックでは、マップおよび関連する地理的素材についてのリソースおよびシェープ ファイルの情報を提供します。" platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - - # {Platform} シェープ ファイルの参照 ## 目的 @@ -41,7 +37,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## シェイプ ファイルのフォーマット -{Platform} コントロールは、地理空間データのソースとして人気の高い[シェープ ファイル (英語)](http://en.wikipedia.org/wiki/Shapefile#Overview) フォーマットを使用します。シェープ ファイルは他のファイル タイプと一緒に配布されます。一般的なファイルには、*.shp*、*.shx*、および *.dbf* の拡張子が付いています。 +{Platform} `XamGeographicMap` コントロールは、地理空間データのソースとして人気の高い[シェープ ファイル (英語)](http://en.wikipedia.org/wiki/Shapefile#Overview) フォーマットを使用します。シェープ ファイルは他のファイル タイプと一緒に配布されます。一般的なファイルには、*.shp*、*.shx*、および *.dbf* の拡張子が付いています。 以下の表は、シェープ ファイルの各タイプの基本情報および目的を提供しています。 @@ -77,7 +73,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## シェイプ ファイル データ ソース (英語) -以下のリストは、シェープ ファイルを取得するためのリソースを提供しています。また、 コントロールのサンプルは、シェープ ファイルの良い情報源になります。これらのシェープ ファイルは、Samples Browser のインストーラーに含まれています。 +以下のリストは、シェープ ファイルを取得するためのリソースを提供しています。また、`XamGeographicMap` コントロールのサンプルは、シェープ ファイルの良い情報源になります。これらのシェープ ファイルは、Samples Browser のインストーラーに含まれています。 - [ESRI - 世界地図データ](http://www.esri.com/data/download/basemap/index.html) @@ -90,7 +86,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## API リファレンス -
-
-
-
+`XamGeographicMap`
+`GeographicPolylineSeries`
+`GeographicShapeSeries`
+`ShapefileRecord`
diff --git a/docs/xplat/src/content/jp/components/geo-map-type-scatter-area-series.mdx b/docs/xplat/src/content/jp/components/geo-map-type-scatter-area-series.mdx index 075ec556fa..e8cc85e682 100644 --- a/docs/xplat/src/content/jp/components/geo-map-type-scatter-area-series.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-type-scatter-area-series.mdx @@ -11,8 +11,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} 地理エリア マップ @@ -29,7 +27,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; `GeographicScatterAreaSeries` は `GeographicContourLineSeries` と同様ですが、同じ値を持つデータポイントを接続する等線の置換に補完で色つきサーフェス エリアとしてデータを表します。 ## データ要件 -マップコンポーネントの他の種類の地理的シリーズと同様に、`GeographicScatterAreaSeries` には、オブジェクトの配列にバインドできる プロパティがあります。さらに、項目ソースの各項目にはデータ列が 3 つあり、2 つは地理的な経度および緯度座標を保管し、1 つのデータ列は地理的位置に関連した値を保管します。地理的シリーズの `longitudeMemberPath`、`latitudeMemberPath` および `colorMemberPath` プロパティはこれらのデータ列を識別します。 +マップコンポーネントの他の種類の地理的シリーズと同様に、`GeographicScatterAreaSeries` には、オブジェクトの配列にバインドできる `ItemsSource` プロパティがあります。さらに、項目ソースの各項目にはデータ列が 3 つあり、2 つは地理的な経度および緯度座標を保管し、1 つのデータ列は地理的位置に関連した値を保管します。地理的シリーズの `longitudeMemberPath`、`latitudeMemberPath` および `colorMemberPath` プロパティはこれらのデータ列を識別します。 `GeographicScatterAreaSeries` は、三角測量が `trianglesSource` プロパティに設定されていない場合、ItemsSource の項目で組み込みのデータ三角測量を自動的に実行します。ただし、三角測量の計算は非常に時間のかかるプロセスであるため、このプロパティのために TriangulationSource を指定すると、ランタイム パフォーマンスがよくなります。特にデータ項目が多数ある場合には顕著です。 ## データ バインディング @@ -37,9 +35,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; | プロパティ名 | プロパティ型 | 説明 | |--------------|---------------| ---------------| -||任意|`trianglesSource` プロパティが三角測量データを提供しない場合に三角測量を実行するデータ項目のソースです。| -|`longitudeMemberPath`|文字列| にバインドされているすべての項目の経度を含むプロパティの名前。| -|`latitudeMemberPath`|文字列| にバインドされているすべての項目の Latitude を含むプロパティの名前。| +|`ItemsSource`|任意|`trianglesSource` プロパティが三角測量データを提供しない場合に三角測量を実行するデータ項目のソースです。| +|`longitudeMemberPath`|文字列|`ItemsSource` にバインドされているすべての項目の経度を含むプロパティの名前。| +|`latitudeMemberPath`|文字列|`ItemsSource` にバインドされているすべての項目の Latitude を含むプロパティの名前。| |`colorMemberPath`|文字列|各データ項目の緯度および経度座標の値を含むプロパティの名前。`ColorScale` プロパティが設定されている場合、この数値は色に変換されます。| |`trianglesSource`|任意|三角測量データのソース。`TriangulationSource` オブジェクトの Triangles をこのプロパティに設定すると、ランタイム パフォーマンスと地理的シリーズの描画の両方が改善します。| |`triangleVertexMemberPath1`|文字列|各三角形に対して ItemsSource の最初の頂点のインデックスを含む、`trianglesSource` 項目のプロパティ名。このプロパティを設定することは義務ではありません。カスタムの三角測量ロジックが提供されない場合はデフォルトで取得されます。| diff --git a/docs/xplat/src/content/jp/components/geo-map-type-scatter-contour-series.mdx b/docs/xplat/src/content/jp/components/geo-map-type-scatter-contour-series.mdx index 15c7ab4152..0e0da5944c 100644 --- a/docs/xplat/src/content/jp/components/geo-map-type-scatter-contour-series.mdx +++ b/docs/xplat/src/content/jp/components/geo-map-type-scatter-contour-series.mdx @@ -11,8 +11,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} 地理等高線マップ @@ -29,7 +27,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; `GeographicContourLineSeries` は `GeographicScatterAreaSeries` とよく似ていますが、塗りつぶしスケールを使用して色付けされた等高線としてデータを表し、地理散布エリア シリーズはカラースケールを使用して補間された面としてデータを表します。 ## データ要件 -マップコンポーネントの他の種類の地理的シリーズと同様に、`GeographicContourLineSeries` には、オブジェクトの配列にバインドできる プロパティがあります。さらに、項目ソースの各項目にはデータ列が 3 つあり、2 つは地理的位置 (経度および緯度座標) を保管し、1 つのデータ列は地理的位置に関連した値を保管します。これらのデータ列は、地理的シリーズの `longitudeMemberPath`、`latitudeMemberPath` および `valueMemberPath` プロパティによって識別されます。 +マップコンポーネントの他の種類の地理的シリーズと同様に、`GeographicContourLineSeries` には、オブジェクトの配列にバインドできる `ItemsSource` プロパティがあります。さらに、項目ソースの各項目にはデータ列が 3 つあり、2 つは地理的位置 (経度および緯度座標) を保管し、1 つのデータ列は地理的位置に関連した値を保管します。これらのデータ列は、地理的シリーズの `longitudeMemberPath`、`latitudeMemberPath` および `valueMemberPath` プロパティによって識別されます。 `GeographicContourLineSeries` は、三角測量が `trianglesSource` プロパティに設定されていない場合、ItemsSource の項目で定義済みのデータ三角測量を自動的に実行します。ただし、三角測量の計算は非常に時間のかかるプロセスであるため、このプロパティのために `TriangulationSource` を指定すると、ランタイム パフォーマンスがよくなります。特にデータ項目が多数ある場合には顕著です。 ## データ バインディング @@ -37,9 +35,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; | プロパティ名 | プロパティ型 | 概要 | |--------------|---------------| ---------------| -||任意|`trianglesSource` プロパティが三角測量データを提供しない場合に三角測量を実行するデータ項目のソースです。| -|`longitudeMemberPath`|文字列| にバインドされているすべての項目の経度を含むプロパティの名前。| -|`latitudeMemberPath`|文字列| にバインドされているすべての項目の Latitude を含むプロパティの名前。| +|`ItemsSource`|任意|`trianglesSource` プロパティが三角測量データを提供しない場合に三角測量を実行するデータ項目のソースです。| +|`longitudeMemberPath`|文字列|`ItemsSource` にバインドされているすべての項目の経度を含むプロパティの名前。| +|`latitudeMemberPath`|文字列|`ItemsSource` にバインドされているすべての項目の Latitude を含むプロパティの名前。| |`valueMemberPath`|文字列|各データ項目の緯度および経度座標の値を含むプロパティの名前。`fillScale` プロパティが設定されている場合、この数値は色に変換されます。| |`trianglesSource`|任意|三角測量データのソースを取得または設定します。TriangulationSource オブジェクトの Triangles をこのプロパティに設定すると、ランタイムパフォーマンスと地理的シリーズレンダリングの両方が向上します。| |`triangleVertexMemberPath1`|文字列|各三角形に対して ItemsSource の最初の頂点のインデックスを含む、TrianglesSource 項目のプロパティ名。このプロパティを設定することは義務ではありません。カスタムの三角測量ロジックが提供されない場合はデフォルトで取得されます。| diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx index e46f41c749..a407698067 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/column-resizing.mdx @@ -37,13 +37,13 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; サイズ変更モードが `Deferred` のみに設定されている場合、列のサイズを変更するときに列をアニメーション化することもできます。これを実行するには、`ColumnResizingAnimationMode` プロパティ `Interpolate` にを設定します。 -グリッドの各列は、個別にサイズ変更できるかどうかを決定できます。特定の列でサイズ変更を有効または無効にする場合、その列の IsResizingEnabled プロパティを設定できます。 +グリッドの各列は、個別にサイズ変更できるかどうかを決定できます。特定の列でサイズ変更を有効または無効にする場合、その列の IsResizingEnabled プロパティを設定できます。 スター幅の列のサイズを変更すると、その列が固定列に変更されます。 ## コード スニペット -以下のコード スニペットは、{Platform} データ グリッドで列のサイズ変更を実装する方法を示します。この場合、Street 列はサイズ変更できません。この場合、列のサイズ変更セパレーターの幅は 5 ピクセルになり、サイズ変更可能な列もサイズ変更時にアニメーション化されます。 +以下のコード スニペットは、{Platform} データ グリッドで列のサイズ変更を実装する方法を示します。この場合、Street 列はサイズ変更できません。この場合、列のサイズ変更セパレーターの幅は 5 ピクセルになり、サイズ変更可能な列もサイズ変更時にアニメーション化されます。 ```json-snippet source="/grids/data-grid/column-resizing" { diff --git a/docs/xplat/src/content/jp/components/grids/data-grid/row-paging.mdx b/docs/xplat/src/content/jp/components/grids/data-grid/row-paging.mdx index ee180e3851..36fefe02e5 100644 --- a/docs/xplat/src/content/jp/components/grids/data-grid/row-paging.mdx +++ b/docs/xplat/src/content/jp/components/grids/data-grid/row-paging.mdx @@ -46,7 +46,7 @@ UX の観点から、テーブルのページネーションには長所と短 - ページの読み込みが遅い場合があります。 - アクションがページに適用されるのか、データ セット全体に適用されるのか、ユーザーは混乱します。 -Ignite UI {Platform} グリッドを使用すると、開発者はページングを追加できますが、グリッドにはデフォルトで無限スクロールが組み込まれているため、グリッドにページャーを追加するのではなく、無限 (または仮想) スクロールをお勧めします。デフォルトのユーザー エクスペリエンスとして仮想化された無限スクロールを使用すると、次のことが可能になります: +{ProductName} データ グリッドではページングを追加できます。ただし、データ グリッドにはデフォルトで無限スクロールが組み込まれているため、ページャーを追加するのではなく、無限 (または仮想) スクロールをお勧めします。デフォルトのユーザー エクスペリエンスとして仮想化された無限スクロールを使用すると、次のことが可能になります: - スクロール操作によってページングされるデータの量を制御しながら、最高のパフォーマンスを実現。 - すべてのコンテンツをスクロールするための自然なアプローチ。 diff --git a/docs/xplat/src/content/jp/components/grids/grids.mdx b/docs/xplat/src/content/jp/components/grids/grids.mdx index c29c742da7..69966f5976 100644 --- a/docs/xplat/src/content/jp/components/grids/grids.mdx +++ b/docs/xplat/src/content/jp/components/grids/grids.mdx @@ -1,6 +1,6 @@ --- title: "{Platform} Grid レイアウト| リアルタイム {Platform} テーブル | 軽量の {Platform} テーブル | インフラジスティックス" -description: "{Platform} Grid レイアウトは、コーディングや構成をほとんど行わずに、動的でタッチ レスポンシブなデータ グリッドを構築するのに役立ちます。{ProductName} の 30 日間無料トライアルをお試しください。" +description: "{Platform} Grid レイアウトは、コーディングや構成をほとんど行わずに、動的でタッチ レスポンシブなデータ グリッドを構築するのに役立ちます。{ProductName} の無料トライアルをダウンロードしてください。" keywords: "{Platform} data grid, infragistics, grids, {ProductName}, table, {Platform} データ グリッド, インフラジスティック, グリッド, テーブル" license: commercial _language: ja @@ -181,9 +181,11 @@ div#faqs-accordion-wrapper { `} -
+ +
Ignite UI Logo for developer web applications
+
# 高速 {Platform} データ グリッド @@ -226,7 +228,7 @@ Web コンポーネントは、既存の Web 標準に準拠した Web ベース -このサンプルが気に入りましたか? 完全な {Platform} ツールキットにアクセスして、すばやく独自のアプリの作成を開始します。無料でダウンロードできます。 +このサンプルが気に入りましたか? {ProductName} ツールキットを試して、独自のアプリを構築しましょう。無料トライアルをダウンロードします。 ## {Platform} Data Grid の利点 @@ -945,8 +947,8 @@ Web コンポーネントは、既存の Web 標準に準拠した Web ベース
@@ -985,7 +987,7 @@ Infragistics の {Platform} 製品の受賞歴のあるサポートにアクセ ## {ProductName} 試用ライセンスおよび商用 -

{ProductName} is a commercially licensed product available via a subscription model. You can try the {ProductName} product for free when you register for a 30-day trial. When you are done with your Trial Period, you can purchase a license from our web site or by calling sales in your region.

+

{ProductName} は、サブスクリプション モデルで提供される商用ライセンス製品です。無料トライアルをダウンロードして {ProductName} をお試しいただけます。トライアル終了後は、Web サイトでライセンスを購入するか、お近くの営業担当までお問い合わせください。


## FAQ @@ -1102,4 +1104,4 @@ Infragistics の {Platform} 製品の受賞歴のあるサポートにアクセ }); } })() - +`} diff --git a/docs/xplat/src/content/jp/components/maps/map-api.mdx b/docs/xplat/src/content/jp/components/maps/map-api.mdx index 9fd70eb7a3..72e721898d 100644 --- a/docs/xplat/src/content/jp/components/maps/map-api.mdx +++ b/docs/xplat/src/content/jp/components/maps/map-api.mdx @@ -10,91 +10,88 @@ llms: description: "インフラジスティックスの {ProductName} マップは、マップ ビジュアルを構成およびスタイル設定するための便利な API を提供します。" platformType: xplat --- -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - - # {Platform} 地理マップ API -{Platform} には次の API メンバーがあります: +{Platform} `XamGeographicMap` には次の API メンバーがあります: -- -- -- -- -- -- -- -- +- `Zoomable` +- `ZoomToGeographic` +- `WorldRect` +- `WindowRect` +- `WindowScale` +- `GetGeographicFromZoom` +- `GetGeographicPoint` +- `GetPixelPoint` ## {Platform} 地理的シリーズの種類 -{Platform} には 7 種類のシリーズがあり、データ バインディング用の プロパティがあります。 +{Platform} `XamGeographicMap` には 7 種類のシリーズがあり、データ バインディング用の `ItemsSource` プロパティがあります。 -- -- -- -- -- -- -- +- `GeographicHighDensityScatterSeries` +- `GeographicSymbolSeries` +- `GeographicProportionalSymbolSeries` +- `GeographicPolylineSeries` +- `GeographicShapeSeries` +- `GeographicScatterAreaSeries` +- `GeographicContourLineSeries` さらに、シリーズの各種類には、データ項目をマッピングし、その外観をスタイル設定するための特定のプロパティがあります。 ## {Platform} 地理記号シリーズ API -{Platform} (地理マーカー シリーズ) には、次の API メンバーがあります。 +{Platform} `GeographicSymbolSeries` (地理マーカー シリーズ) には、次の API メンバーがあります。 -- -- -- -- -- +- `LatitudeMemberPath` +- `LongitudeMemberPath` +- `GeographicSymbolSeries.MarkerType` +- `MarkerBrush` +- `MarkerOutline` ## {Platform} 地理バブル シリーズ API -{Platform} (地理バブル シリーズ) には、次の API メンバーがあります。 +{Platform} `GeographicProportionalSymbolSeries` (地理バブル シリーズ) には、次の API メンバーがあります。 -- -- -- -- -- -- +- `GeographicSymbolSeries.LatitudeMemberPath` +- `GeographicSymbolSeries.LongitudeMemberPath` +- `RadiusMemberPath` +- `RadiusScale` +- `FillScale` +- `FillMemberPath` ## {Platform} 地理シェイプ シリーズ API -{Platform} には同じ API メンバーがあります。 +{Platform} `GeographicShapeSeries` と `GeographicPolylineSeries` には同じ API メンバーがあります。 -- -- -- -- +- `GeographicShapeSeries.ShapeMemberPath` +- `Series.Thickness` +- `Series.Brush` +- `Series.Outline` ## {Platform} 地理エリア シリーズ API -{Platform} には、次の API メンバーがあります。 +{Platform} `GeographicScatterAreaSeries` には、次の API メンバーがあります。 -- -- -- -- +- `GeographicSymbolSeries.LatitudeMemberPath` +- `GeographicSymbolSeries.LongitudeMemberPath` +- `ColorMemberPath` +- `GeographicScatterAreaSeries.ColorScale` ## {Platform} 地理等高線シリーズ API -{Platform} には、次の API メンバーがあります。 +{Platform} `GeographicContourLineSeries` には、次の API メンバーがあります。 -- -- -- -- +- `GeographicSymbolSeries.LatitudeMemberPath` +- `GeographicSymbolSeries.LongitudeMemberPath` +- `ValueMemberPath` +- `GeographicProportionalSymbolSeries.FillScale` ## {Platform} 地理 HD シリーズ API -{Platform} には、次の API メンバーがあります。 +{Platform} `GeographicHighDensityScatterSeries` には、次の API メンバーがあります。 -- -- -- -- \ No newline at end of file +- `GeographicSymbolSeries.LatitudeMemberPath` +- `GeographicSymbolSeries.LongitudeMemberPath` +- `HeatMaximumColor` +- `HeatMinimumColor` \ No newline at end of file diff --git a/docs/xplat/src/content/jp/components/menus/toolbar.mdx b/docs/xplat/src/content/jp/components/menus/toolbar.mdx index 2e187e4f8a..ac1dcc2cc1 100644 --- a/docs/xplat/src/content/jp/components/menus/toolbar.mdx +++ b/docs/xplat/src/content/jp/components/menus/toolbar.mdx @@ -132,35 +132,35 @@ npm install {PackageCore} ズーム操作 -- `\ZoomMenu`: チャートのズーム レベルを増減するための `zoomIn` および `zoomOut` メソッドを呼び出す 3 つの `ToolActionLabel` 項目を公開する `ToolActionIconMenu` には、チャートの `resetZoom` メソッドを呼び出してズーム レベルをデフォルトの位置にリセットする `\ZoomReset` が含まれます。 +- `ZoomMenu`: チャートのズーム レベルを増減するための `zoomIn` および `zoomOut` メソッドを呼び出す 3 つの `ToolActionLabel` 項目を公開する `ToolActionIconMenu` には、チャートの `resetZoom` メソッドを呼び出してズーム レベルをデフォルトの位置にリセットする `ZoomReset` が含まれます。 トレンド操作 -- `\AnalyzeMenu`: チャートのさまざまなオプションを構成するためのいくつかのオプションを含む `ToolActionIconMenu`。 -- `\AnalyzeHeader`: サブ セクションのヘッダー。 - - `\LinesMenu`: チャート上で水平破線を表示するためのさまざまなツールが含まれるサブ メニュー。 - - `\LinesHeader`: 次の 3 つのツールのサブメニュー セクション ヘッダー: +- `AnalyzeMenu`: チャートのさまざまなオプションを構成するためのいくつかのオプションを含む `ToolActionIconMenu`。 +- `AnalyzeHeader`: サブ セクションのヘッダー。 + - `LinesMenu`: チャート上で水平破線を表示するためのさまざまなツールが含まれるサブ メニュー。 + - `LinesHeader`: 次の 3 つのツールのサブメニュー セクション ヘッダー: - `\\MaxValue`: シリーズの最大値で yAxis に沿って水平破線を表示する `ToolActionCheckbox`。 - `\\MinValue`: シリーズの最小値で yAxis に沿って水平破線を表示する `ToolActionCheckbox`。 - `Average`: シリーズの平均値で yAxis に沿って水平破線を表示する `ToolActionCheckbox`。 - - `\TrendsMenu`: さまざまな近似曲線を `XamDataChart` プロット領域に適用するためのツールを含むサブ メニュー。 - - `\TrendsHeader`: 次の 3 つのツールのサブメニュー セクション ヘッダー: + - `TrendsMenu`: さまざまな近似曲線を `XamDataChart` プロット領域に適用するためのツールを含むサブ メニュー。 + - `TrendsHeader`: 次の 3 つのツールのサブメニュー セクション ヘッダー: - **Exponential**: チャート内の各シリーズの `trendLineType` を **ExponentialFit** に設定する `ToolActionRadio`。 - **Linear**: チャート内の各シリーズの `trendLineType` を **LinearFit** に設定する `ToolActionRadio`。 - **Logarithmic**: チャート内の各シリーズの `trendLineType` を **LogarithmicFit** に設定する `ToolActionRadio`。 -- `\HelpersHeader`: サブ セクションのヘッダー。 - - `\SeriesAvg`: `Average` タイプの `ValueLayerValueMode` を使用して、チャートのシリーズ コレクションに `ValueLayer` を追加または削除する `ToolActionCheckbox`。 - - `\ValueLabelsMenu`: `XamDataChart` のプロット領域に注釈を表示するためのさまざまなツールを含むサブ メニュー。 - - `\ValueLabelsHeader`: 次のツールのサブ メニュー セクション ヘッダー: - - `\ShowValueLabels`: `CalloutLayer` を使用してデータ ポイント値を切り替える `ToolActionCheckbox`。 - - `\ShowLastValueLabel`: `FinalValueLayer` を使用して最終値軸の注釈を切り替える `ToolActionCheckbox`。 -- `\ShowCrosshairs`: チャートの `crosshairsDisplayMode` プロパティを介してマウスオーバー十字線の注釈を切り替える `ToolActionCheckbox`。 +- `HelpersHeader`: サブ セクションのヘッダー。 + - `SeriesAvg`: `Average` タイプの `ValueLayerValueMode` を使用して、チャートのシリーズ コレクションに `ValueLayer` を追加または削除する `ToolActionCheckbox`。 + - `ValueLabelsMenu`: `XamDataChart` のプロット領域に注釈を表示するためのさまざまなツールを含むサブ メニュー。 + - `ValueLabelsHeader`: 次のツールのサブ メニュー セクション ヘッダー: + - `ShowValueLabels`: `CalloutLayer` を使用してデータ ポイント値を切り替える `ToolActionCheckbox`。 + - `ShowLastValueLabel`: `FinalValueLayer` を使用して最終値軸の注釈を切り替える `ToolActionCheckbox`。 +- `ShowCrosshairs`: チャートの `crosshairsDisplayMode` プロパティを介してマウスオーバー十字線の注釈を切り替える `ToolActionCheckbox`。 - `ShowGridlines`: X-Axis に `MajorStroke` を適用することで追加のグリッド線を切り替える `ToolActionCheckbox`。 画像に保存アクション -- `\CopyAsImage`: チャートをクリップボードにコピーするオプションを公開する `ToolActionLabel`。 -- `\CopyHeader`: サブ セクションのヘッダー。 +- `CopyAsImage`: チャートをクリップボードにコピーするオプションを公開する `ToolActionLabel`。 +- `CopyHeader`: サブ セクションのヘッダー。 ### SVG アイコン diff --git a/docs/xplat/src/content/jp/components/spreadsheet-activation.mdx b/docs/xplat/src/content/jp/components/spreadsheet-activation.mdx index 0de05269ee..4095cadca6 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-activation.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-activation.mdx @@ -12,8 +12,6 @@ llms: platformType: xplat --- import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} スプレッドシートのアクティブ化 @@ -29,15 +27,15 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## アクティベーションの概要 -{Platform} コントロールのアクティブ化は、スプレッドシートの現在の のセル、ペイン、およびワークシート間で分割されます。3 つの アクティブなプロパティは以下のとおりです。 +{Platform} `Spreadsheet` コントロールのアクティブ化は、スプレッドシートの現在の `Workbook` のセル、ペイン、およびワークシート間で分割されます。3 つの アクティブなプロパティは以下のとおりです。 -- : スプレッドシートのアクティブ セルを設定します。設定するには、 の新しいインスタンスを作成し、そのセルに関する列と行、またはセルの文字列アドレスなどの情報を渡す必要があります。 -- : スプレッドシート コントロールの現在アクティブなワークシートのアクティブ ペインを返します。 -- : スプレッドシート コントロールの 内のアクティブ ワークシートを返すか、設定します。これは、スプレッドシートに添付されている 内の既存のワークシートに設定することで設定できます。 +- `ActiveCell`: スプレッドシートのアクティブ セルを設定します。設定するには、`SpreadsheetCell` の新しいインスタンスを作成し、そのセルに関する列と行、またはセルの文字列アドレスなどの情報を渡す必要があります。 +- `ActivePane`: スプレッドシート コントロールの現在アクティブなワークシートのアクティブ ペインを返します。 +- `ActiveWorksheet`: スプレッドシート コントロールの `Workbook` 内のアクティブ ワークシートを返すか、設定します。これは、スプレッドシートに添付されている `Workbook` 内の既存のワークシートに設定することで設定できます。 ## コード スニペット -次のコード スニペットは、 コントロールのセルとワークシートのアクティブ化の設定を示しています。 +次のコード スニペットは、`Spreadsheet` コントロールのセルとワークシートのアクティブ化の設定を示しています。 ```ts this.spreadsheet.activeWorksheet = this.spreadsheet.workbook.worksheets(1); @@ -48,7 +46,7 @@ this.spreadsheet.activeCell = new SpreadsheetCell("C5"); ## API リファレンス - +`SpreadsheetCell`
-
-
+`Spreadsheet`
+`Workbook`
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-chart-adapter.mdx b/docs/xplat/src/content/jp/components/spreadsheet-chart-adapter.mdx index 308250a4da..983b1982bf 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-chart-adapter.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-chart-adapter.mdx @@ -12,12 +12,10 @@ platformType: xplat import DocsAside from 'igniteui-astro-components/components/mdx/DocsAside.astro'; import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} Spreadsheet チャート アダプター -{Platform} Spreadsheet コンポーネントを使用して にチャートを表示できます。 +{Platform} Spreadsheet コンポーネントを使用して `Spreadsheet` にチャートを表示できます。 ## {Platform} Spreadsheet チャート アダプターの例 @@ -27,9 +25,9 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## チャート アダプターの概要 - を使用すると、スプレッドシートにチャートを表示できます。スプレッドシート チャート アダプターは、Infragistics.Documents.Excel.WorksheetChart インスタンスに基づいてスプレッド シートのチャート要素を作成し、初期化します。 +`ChartAdapter` を使用すると、スプレッドシートにチャートを表示できます。スプレッドシート チャート アダプターは、Infragistics.Documents.Excel.WorksheetChart インスタンスに基づいてスプレッド シートのチャート要素を作成し、初期化します。 -WorksheetChart をワークシートに追加するには、ワークシートの Shapes コレクションの メソッドを使用する必要があります。チャートの追加の詳細については、下記をご覧ください。 +WorksheetChart をワークシートに追加するには、ワークシートの Shapes コレクションの `AddChart` メソッドを使用する必要があります。チャートの追加の詳細については、下記をご覧ください。 以下はその手順です。 @@ -89,10 +87,10 @@ Spreadsheet ChartAdapter は、折れ線、エリア、縦棒、ドーナツを -以下のコード スニペットでは、外部の [ExcelUtility](./excel-utility.mdx) クラスを使用して を保存およびロードしています。 +以下のコード スニペットでは、外部の [ExcelUtility](./excel-utility.mdx) クラスを使用して `Spreadsheet.Workbook` を保存およびロードしています。 -ハイパーリンクを使用するように {Platform} スプレッドシート コントロールを設定するときは、 クラスをインポートする必要があります。 +ハイパーリンクを使用するように {Platform} スプレッドシート コントロールを設定するときは、`SpreadsheetChartAdapter` クラスをインポートする必要があります。 @@ -166,7 +164,7 @@ ModuleManager.register( ## コード スニペット -以下のコード スニペットは、 コントロールで現在表示されているワークシートにハイパーリンクを追加する方法を示しています。 +以下のコード スニペットは、`Spreadsheet` コントロールで現在表示されているワークシートにハイパーリンクを追加する方法を示しています。 ```typescript this.spreadsheet.chartAdapter = new SpreadsheetChartAdapter(); @@ -223,7 +221,7 @@ ExcelUtility.loadFromUrl(process.env.PUBLIC_URL + "/ExcelFiles/ChartData.xlsx"). ## API リファレンス - +`SpreadsheetChartAdapterBase`
-
-
+`Spreadsheet`
+`Workbook`
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-clipboard.mdx b/docs/xplat/src/content/jp/components/spreadsheet-clipboard.mdx index d5a752f8c1..c178a599a2 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-clipboard.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-clipboard.mdx @@ -11,8 +11,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} クリップボードでの作業 @@ -28,7 +26,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## 依存関係 -クリップボードを利用する前に、 列挙型をインポートします。 +クリップボードを利用する前に、`SpreadsheetCommandType` 列挙型をインポートします。 @@ -61,7 +59,7 @@ import { SpreadsheetAction } from 'igniteui-webcomponents-spreadsheet'; ## 使用方法 -次のコード スニペットは、{Platform} コントロールでクリップボードに関連するコマンドを実行する方法を示しています。 +次のコード スニペットは、{Platform} `Spreadsheet` コントロールでクリップボードに関連するコマンドを実行する方法を示しています。 ```ts public cut(): void { @@ -80,5 +78,5 @@ public paste(): void { ## API リファレンス -
-
+`SpreadsheetCommandType`
+`Spreadsheet`
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-commands.mdx b/docs/xplat/src/content/jp/components/spreadsheet-commands.mdx index 3019bac59d..6463444f31 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-commands.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-commands.mdx @@ -11,8 +11,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} コマンドの使用 @@ -28,7 +26,7 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## 依存関係 -コマンドボードを利用する前に、 をインポートします。 +コマンドボードを利用する前に、`SpreadsheetCommandType` をインポートします。 @@ -121,4 +119,4 @@ function zoomOut(): void { ## API リファレンス -
+`SpreadsheetCommandType`
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-conditional-formatting.mdx b/docs/xplat/src/content/jp/components/spreadsheet-conditional-formatting.mdx index 71ec9800b9..3b812d20cb 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-conditional-formatting.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-conditional-formatting.mdx @@ -11,8 +11,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} Spreadsheet の条件付き書式設定 @@ -28,37 +26,37 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## 条件付き書式設定の概要 -特定のワークシートの条件付き書式を構成するには、ワークシートの コレクションに公開される `Add` メソッドを使用できます。この `Add` メソッドの最初のパラメーターは条件付き書式に適用するワークシートの string 領域です。 +特定のワークシートの条件付き書式を構成するには、ワークシートの `ConditionalFormats` コレクションに公開される `Add` メソッドを使用できます。この `Add` メソッドの最初のパラメーターは条件付き書式に適用するワークシートの string 領域です。 -ワークシートに追加できる条件付き書式の多くには、その条件付き書式の条件が満たされたときにセルを表示する方法を決定する プロパティがあります。たとえば、 および などのこの プロパティにアタッチされるプロパティを使用してセルの背景およびフォント設定を決定できます。 +ワークシートに追加できる条件付き書式の多くには、その条件付き書式の条件が満たされたときにセルを表示する方法を決定する `CellFormat` プロパティがあります。たとえば、`Fill` および `Font` などのこの `CellFormat` プロパティにアタッチされるプロパティを使用してセルの背景およびフォント設定を決定できます。 -条件付き書式が作成され、 が適用される場合、ワークシートのセルにサポートされるプロパティのサブセットがあります。現在サポートされる プロパティは 、`Border` プロパティ、、および strikethrough、underline、italic、bold、color などの プロパティです。以下のコード スニペットに複数のプロパティが設定されます。 +条件付き書式が作成され、`CellFormat` が適用される場合、ワークシートのセルにサポートされるプロパティのサブセットがあります。現在サポートされる `CellFormat` プロパティは `Fill`、`Border` プロパティ、`FormatString`、および strikethrough、underline、italic、bold、color などの `Font` プロパティです。以下のコード スニペットに複数のプロパティが設定されます。 -ワーク セルの可視化の動作が異なるため、 プロパティがない条件付き書式もあります。この条件付き書式は です。 +ワーク セルの可視化の動作が異なるため、`CellFormat` プロパティがない条件付き書式もあります。この条件付き書式は `DataBarConditionalFormat`、`ColorScaleConditionalFormat`、`IconSetConditionalFormat` です。 既存の Workbook を Excel から読み込む際に、ワークブックが読み込まれた場合も書式設定は保持されます。ワークブックを Excel ファイルに保存する場合も保持されます。 -以下は、{Platform} コントロールでサポートされている条件付き書式の一覧です。 - -- : メソッドを使用して追加されたこの条件付きフォーマットは、セルの値が関連する範囲の平均または標準偏差より上か下かに基づいて、ワークシートセルの視覚属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式では、セルの値が設定されていないかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 -- : メソッドを使用して追加された条件付き書式は、最小値、中央値、最大値に対するセルの値に基づいてワークシート セルの色を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、関連付けられた値の範囲に対するセルの値に基づいてワークシートのセルにデータバーを表示するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、セルの日付値が指定された時間範囲内にあるかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、セルの値が一意であるか、関連付けられた範囲全体で複製されるかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式では、セルの値が設定されていないかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、セルの値が式で定義された基準を満たすかどうかに基づいてワークシート セルの表示属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、しきい値に対するセルの値に基づいてワークシートのセルにアイコンを表示するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式では、セルの値が設定されていないかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式では、セルの値が設定されていないかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、セルの値が論理演算子で定義された基準を満たすかどうかに基づいてワークシートセルの視覚属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、セルの値が関連する範囲全体の値の最下位ランクの上部にあるかどうかに基づいてワークシート セルの表示属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、セルのテキスト値が メソッドのパラメーターの文字列および 値にで定義された基準を満たすかどうかに基づいてワークシート セルのビジュアル属性を制御するプロパティを公開します。 -- : メソッドを使用して追加されたこの条件付き書式は、セルの値が関連付けられた範囲全体で一意であるかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 +以下は、{Platform} `Spreadsheet` コントロールでサポートされている条件付き書式の一覧です。 + +- `AverageConditionalFormat`: `AddAverageCondition` メソッドを使用して追加されたこの条件付きフォーマットは、セルの値が関連する範囲の平均または標準偏差より上か下かに基づいて、ワークシートセルの視覚属性を制御するプロパティを公開します。 +- `BlanksConditionalFormat`: `AddBlanksCondition` メソッドを使用して追加されたこの条件付き書式では、セルの値が設定されていないかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 +- `ColorScaleConditionalFormat`: `AddColorScaleCondition` メソッドを使用して追加された条件付き書式は、最小値、中央値、最大値に対するセルの値に基づいてワークシート セルの色を制御するプロパティを公開します。 +- `DataBarConditionalFormat`: `AddDataBarCondition` メソッドを使用して追加されたこの条件付き書式は、関連付けられた値の範囲に対するセルの値に基づいてワークシートのセルにデータバーを表示するプロパティを公開します。 +- `DateTimeConditionalFormat`: `AddDateTimeCondition` メソッドを使用して追加されたこの条件付き書式は、セルの日付値が指定された時間範囲内にあるかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 +- `DuplicateConditionalFormat`: `AddDuplicateCondition` メソッドを使用して追加されたこの条件付き書式は、セルの値が一意であるか、関連付けられた範囲全体で複製されるかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 +- `ErrorsConditionalFormat`: `AddErrorsCondition` メソッドを使用して追加されたこの条件付き書式では、セルの値が設定されていないかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 +- `FormulaConditionalFormat`: `AddFormulaCondition` メソッドを使用して追加されたこの条件付き書式は、セルの値が式で定義された基準を満たすかどうかに基づいてワークシート セルの表示属性を制御するプロパティを公開します。 +- `IconSetConditionalFormat`: `AddIconSetCondition` メソッドを使用して追加されたこの条件付き書式は、しきい値に対するセルの値に基づいてワークシートのセルにアイコンを表示するプロパティを公開します。 +- `NoBlanksConditionalFormat`: `AddNoBlanksCondition` メソッドを使用して追加されたこの条件付き書式では、セルの値が設定されていないかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 +- `NoErrorsConditionalFormat`: `AddNoErrorsCondition` メソッドを使用して追加されたこの条件付き書式では、セルの値が設定されていないかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 +- `OperatorConditionalFormat`: `AddOperatorCondition` メソッドを使用して追加されたこの条件付き書式は、セルの値が論理演算子で定義された基準を満たすかどうかに基づいてワークシートセルの視覚属性を制御するプロパティを公開します。 +- `RankConditionalFormat`: `AddRankCondition` メソッドを使用して追加されたこの条件付き書式は、セルの値が関連する範囲全体の値の最下位ランクの上部にあるかどうかに基づいてワークシート セルの表示属性を制御するプロパティを公開します。 +- `TextOperatorConditionalFormat`: `AddRankCondition` メソッドを使用して追加されたこの条件付き書式は、セルのテキスト値が `AddTextCondition` メソッドのパラメーターの文字列および `FormatConditionTextOperator` 値にで定義された基準を満たすかどうかに基づいてワークシート セルのビジュアル属性を制御するプロパティを公開します。 +- `UniqueConditionalFormat`: `AddUniqueCondition` メソッドを使用して追加されたこの条件付き書式は、セルの値が関連付けられた範囲全体で一意であるかどうかに基づいてワークシートセルの表示属性を制御するプロパティを公開します。 ## 依存関係 - コントロールに条件付き書式を追加するには、以下の依存関係をインポートする必要があります。 +`Spreadsheet` コントロールに条件付き書式を追加するには、以下の依存関係をインポートする必要があります。 @@ -116,7 +114,7 @@ import { WorkbookColorInfo } from 'igniteui-webcomponents-excel'; ## コード スニペット -以下のコード スニペットは、 コントロールのスプレッドシートに各条件付き書式を追加する方法を示しています。 +以下のコード スニペットは、`Spreadsheet` コントロールのスプレッドシートに各条件付き書式を追加する方法を示しています。 @@ -188,21 +186,21 @@ uniqueFormat.cellFormat.font.colorInfo = new WorkbookColorInfo(blue); ## API リファレンス -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+`AverageConditionalFormat`
+`BlanksConditionalFormat`
+`ColorScaleConditionalFormat`
+`DataBarConditionalFormat`
+`DateTimeConditionalFormat`
+`DuplicateConditionalFormat`
+`ErrorsConditionalFormat`
+`FormulaConditionalFormat`
+`IconSetConditionalFormat`
+`NoBlanksConditionalFormat`
+`NoErrorsConditionalFormat`
+`OperatorConditionalFormat`
+`RankConditionalFormat`
+`TextOperatorConditionalFormat`
+`UniqueConditionalFormat`
+`FormatConditionTextOperator`
+`Spreadsheet`
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-configuring.mdx b/docs/xplat/src/content/jp/components/spreadsheet-configuring.mdx index b8a84756ef..f48a9784c5 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-configuring.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-configuring.mdx @@ -11,8 +11,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} Spreadsheet の構成 @@ -28,11 +26,11 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## セル編集の構成 -ユーザーがセルの値を編集して新しい入力を確認すると、スプレッドシートの構成に応じて、 コントロールに ENTER キーを押すと現在アクティブなセルに隣接するセルに移動できます。 +ユーザーがセルの値を編集して新しい入力を確認すると、スプレッドシートの構成に応じて、`Spreadsheet` コントロールに ENTER キーを押すと現在アクティブなセルに隣接するセルに移動できます。 -この ENTER キーナビゲーションを有効にするために、 プロパティを **true** に設定できます。false に設定すると、ENTER キーを押してもアクティブ セルは変わりません。 +この ENTER キーナビゲーションを有効にするために、`IsEnterKeyNavigationEnabled` プロパティを **true** に設定できます。false に設定すると、ENTER キーを押してもアクティブ セルは変わりません。 -Enter キーを押したときに移動する隣接セルの方向は、 プロパティを `Down`、`Up`、`Left`、`Right` に設定して構成することもできます。 +Enter キーを押したときに移動する隣接セルの方向は、`EnterKeyNavigationDirection` プロパティを `Down`、`Up`、`Left`、`Right` に設定して構成することもできます。 以下のコード スニペットは上記のデモです。 @@ -89,7 +87,7 @@ this.spreadsheet.enterKeyNavigationDirection = SpreadsheetEnterKeyNavigationDire ## 数式バーの構成 -{Platform} は、コントロールの プロパティを設定して数式バーの表示/非表示を設定できます。 +{Platform} `Spreadsheet` は、コントロールの `IsFormulaBarVisible` プロパティを設定して数式バーの表示/非表示を設定できます。 以下のコード スニペットは上記のデモです。 @@ -123,7 +121,7 @@ this.spreadsheet.isFormulaBarVisible = true; ## ガイドラインの設定 - は、コントロールの プロパティを設定して数式バーの表示/非表示を設定できます。 +`Spreadsheet` は、コントロールの `AreGridlinesVisible` プロパティを設定して数式バーの表示/非表示を設定できます。 以下のコード スニペットは上記のデモです。 @@ -157,7 +155,7 @@ this.spreadsheet.areGridlinesVisible = true; ## ヘッダーの構成 - は、 プロパティを設定してへッダーの可視性を設定できます。 +`Spreadsheet` は、`AreHeadersVisible` プロパティを設定してへッダーの可視性を設定できます。 以下のコード スニペットは上記のデモです。 @@ -191,13 +189,13 @@ this.spreadsheet.areHeadersVisible = false; ## ナビゲーションの構成 - コントロールは、コントロールが「終了モード」にあるかどうかを構成することによって、ワークシートのセル間のナビゲーションを構成できます。終了モードは、矢印キーを押すと、アクティブなセルが、押された矢印キーの方向に応じて、現在のセルからデータが隣接するセルの行または列の末尾に移動する機能です。この機能は、大規模なデータ ブロックの最後まですばやく移動する際に役立ちます。 +`Spreadsheet` コントロールは、コントロールが「終了モード」にあるかどうかを構成することによって、ワークシートのセル間のナビゲーションを構成できます。終了モードは、矢印キーを押すと、アクティブなセルが、押された矢印キーの方向に応じて、現在のセルからデータが隣接するセルの行または列の末尾に移動する機能です。この機能は、大規模なデータ ブロックの最後まですばやく移動する際に役立ちます。 -たとえば、終了モードになっているときに、100x100 の大きなデータブロックをクリックして 矢印キーを押すと、現在の行の右端に移動し、データのある一番右の列に移動します。この操作の後、 は終了モードから飛び出します。 +たとえば、終了モードになっているときに、100x100 の大きなデータブロックをクリックして 矢印キーを押すと、現在の行の右端に移動し、データのある一番右の列に移動します。この操作の後、`Spreadsheet` は終了モードから飛び出します。 -ユーザーが END キーを押すと、実行時に終了モードが有効になりますが、スプレッドシート コントロールの プロパティを設定することでプログラムで設定できます。 +ユーザーが END キーを押すと、実行時に終了モードが有効になりますが、スプレッドシート コントロールの `IsInEndMode` プロパティを設定することでプログラムで設定できます。 -以下のコード スニペットは、 を終了モードで開始させる方法を示しています。 +以下のコード スニペットは、`Spreadsheet` を終了モードで開始させる方法を示しています。 @@ -229,9 +227,9 @@ this.spreadsheet.isInEndMode = true; ## 保護の設定 - は、ワークシートごとにブックを保護します。ワークシートの保護の設定は、ワークシートの `Protect()` メソッドを呼び出して保護し、`Unprotect()` メソッドを呼び出して保護解除することで設定できます。 +`Spreadsheet` は、ワークシートごとにブックを保護します。ワークシートの保護の設定は、ワークシートの `Protect()` メソッドを呼び出して保護し、`Unprotect()` メソッドを呼び出して保護解除することで設定できます。 -以下のコードは、 コントロールの現在アクティブなワークシートの保護を有効または無効にすることができます。 +以下のコードは、`Spreadsheet` コントロールの現在アクティブなワークシートの保護を有効または無効にすることができます。 ```ts this.spreadsheet.activeWorksheet.protect(); @@ -240,15 +238,15 @@ this.spreadsheet.activeWorksheet.unprotect(); ## 選択の設定 - コントロールは、コントロールで許可されている選択の種類を設定できます。その後、ユーザーが修飾キー (SHIFT または CTRL) を押します。これは、スプレッドシートの プロパティを次のいずれかの値に設定することによって行われます。 +`Spreadsheet` コントロールは、コントロールで許可されている選択の種類を設定できます。その後、ユーザーが修飾キー (SHIFT または CTRL) を押します。これは、スプレッドシートの `SelectionMode` プロパティを次のいずれかの値に設定することによって行われます。 -- `AddToSelection`: マウスでドラッグするときに CTRL キーを押す必要はありません。新しいセル範囲が オブジェクトの コレクションに追加され、モードに入った後に最初の矢印キーナビゲーションで範囲が追加されます。シフト+F8 を押すとモードに入ります。 -- `ExtendSelection`: オブジェクトの コレクション内の選択範囲は、マウスを使用してセルを選択するかキーボードで移動すると更新されます。 +- `AddToSelection`: マウスでドラッグするときに CTRL キーを押す必要はありません。新しいセル範囲が `SpreadsheetSelection` オブジェクトの `CellRanges` コレクションに追加され、モードに入った後に最初の矢印キーナビゲーションで範囲が追加されます。シフト+F8 を押すとモードに入ります。 +- `ExtendSelection`: `SpreadsheetSelection` オブジェクトの `CellRanges` コレクション内の選択範囲は、マウスを使用してセルを選択するかキーボードで移動すると更新されます。 - `Normal`: セルまたはセルの範囲を選択するためにマウスをドラッグすると選択が置き換えられます。同様に、キーボードで移動すると新しい選択範囲が作成されます。CTRL キーを押したままマウスを使用することで新しい範囲を追加できます。また、SHIFT キーを押したままマウスでクリックする、あるいはキーボードで移動することでアクティブ セルを含む選択範囲を変更できます。 上記の説明で述べた - -オブジェクトは、 コントロールの プロパティを使用して取得できます。 +`SpreadsheetSelection` +オブジェクトは、`Spreadsheet` コントロールの `ActiveSelection` プロパティを使用して取得できます。 次のコード スニペットは、選択モードの設定を示しています。 @@ -298,12 +296,12 @@ import { SpreadsheetCellSelectionMode } from 'igniteui-webcomponents-spreadsheet this.spreadsheet.selectionMode = SpreadsheetCellSelectionMode.ExtendSelection; ``` - コントロールの選択は、プログラムで設定または取得することもできます。単一選択の場合は、 プロパティを設定できます。複数選択は、 コントロールの プロパティによって返される - +`Spreadsheet` コントロールの選択は、プログラムで設定または取得することもできます。単一選択の場合は、`ActiveCell` プロパティを設定できます。複数選択は、`Spreadsheet` コントロールの `ActiveSelection` プロパティによって返される +`SpreadsheetSelection` オブジェクトを介して行われます。 - -オブジェクトには、新しい オブジェクトの形式でスプレッドシートの選択範囲にプログラムでセルの範囲を追加できる `AddCellRange()` メソッドがあります。 +`SpreadsheetSelection` +オブジェクトには、新しい `SpreadsheetCellRange` オブジェクトの形式でスプレッドシートの選択範囲にプログラムでセルの範囲を追加できる `AddCellRange()` メソッドがあります。 次のコード スニペットは、スプレッドシートの選択範囲にセル範囲を追加する方法を示しています。 @@ -313,7 +311,7 @@ this.spreadsheet.activeSelection.addCellRange(new SpreadsheetCellRange(2, 2, 5, ## タブバー領域の構成 - コントロールは、`TabBarWidth` プロパティと `TabBarVisibility` プロパティを介して、現在アクティブな からタブバー領域の表示設定と幅の設定を使用します。 +`Spreadsheet` コントロールは、`TabBarWidth` プロパティと `TabBarVisibility` プロパティを介して、現在アクティブな `Spreadsheet.Workbook` の `Workbook.WindowOptions` からタブバー領域の表示設定と幅の設定を使用します。 タブバー領域は、ワークシート名をコントロール内のタブとして可視化する領域です。 @@ -327,9 +325,9 @@ this.spreadsheet.workbook.windowOptions.tabBarWidth = 200; ## ズーム レベルの設定 -{Platform} Spreadsheet コンポーネントは、 プロパティを設定してズームインとズームアウト機能を追加できます。ズーム レベルは最大 400%、最小 10% です。 +{Platform} Spreadsheet コンポーネントは、`ZoomLevel` プロパティを設定してズームインとズームアウト機能を追加できます。ズーム レベルは最大 400%、最小 10% です。 -このプロパティを数値に設定すると、整数としてのパーセンテージが表されるため、 を 100 に設定することは、100% に設定することと同じです。 +このプロパティを数値に設定すると、整数としてのパーセンテージが表されるため、`ZoomLevel` を 100 に設定することは、100% に設定することと同じです。 次のコード スニペットは、スプレッドシートのズームレベルを設定する方法を示しています。 @@ -364,8 +362,8 @@ this.spreadsheet.zoomLevel = 200; ## API リファレンス - +`SpreadsheetCellRange`
-
-
-
+`SpreadsheetSelection`
+`Spreadsheet`
+`Workbook`
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-data-validation.mdx b/docs/xplat/src/content/jp/components/spreadsheet-data-validation.mdx index de24af4b0e..f24d2a9776 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-data-validation.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-data-validation.mdx @@ -11,8 +11,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} データ検証 @@ -161,6 +159,5 @@ this.spreadsheet.workbook.worksheets(0).rows(7).cells(0).value = "Check Out Date ## API References -
- +`Spreadsheet`
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-hyperlinks.mdx b/docs/xplat/src/content/jp/components/spreadsheet-hyperlinks.mdx index 540fb9a752..70516f4127 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-hyperlinks.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-hyperlinks.mdx @@ -11,8 +11,6 @@ platformType: xplat --- import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} Spreadsheet ハイパーリンク @@ -28,11 +26,11 @@ import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; ## ハイパーリンク概要 -ハイパーリンクを配置するワークシートの `Hyperlinks` コレクションにアクセスすると、ハイパーリンクが表計算、 コントロールに追加されます。このコレクションには、 オブジェクトを受け取る `Add` メソッドがあり、セル アドレス、移動先のハイパーリンク URL、表示テキスト、およびオプションでホバー時に表示するツールチップを定義できます。 +ハイパーリンクを配置するワークシートの `Hyperlinks` コレクションにアクセスすると、ハイパーリンクが表計算、`Spreadsheet` コントロールに追加されます。このコレクションには、`WorksheetHyperlink` オブジェクトを受け取る `Add` メソッドがあり、セル アドレス、移動先のハイパーリンク URL、表示テキスト、およびオプションでホバー時に表示するツールチップを定義できます。 ## 依存関係 -ハイパーリンクを使用するように {Platform} スプレッドシート コントロールを設定するときは、 クラスをインポートする必要があります。 +ハイパーリンクを使用するように {Platform} スプレッドシート コントロールを設定するときは、`WorksheetHyperlink` クラスをインポートする必要があります。 @@ -63,7 +61,7 @@ import { WorksheetHyperlink } from 'igniteui-webcomponents-excel'; ## コード スニペット -以下のコード スニペットは、{Platform} コントロールで現在表示されているワークシートにハイパーリンクを追加する方法を示しています。 +以下のコード スニペットは、{Platform} `Spreadsheet` コントロールで現在表示されているワークシートにハイパーリンクを追加する方法を示しています。 @@ -77,6 +75,6 @@ this.spreadsheet.activeWorksheet.hyperlinks().add(new WorksheetHyperlink("A1", " ## API リファレンス -
-
+`Spreadsheet`
+`WorksheetHyperlink`
diff --git a/docs/xplat/src/content/jp/components/spreadsheet-overview.mdx b/docs/xplat/src/content/jp/components/spreadsheet-overview.mdx index f7b8190994..043f9c87df 100644 --- a/docs/xplat/src/content/jp/components/spreadsheet-overview.mdx +++ b/docs/xplat/src/content/jp/components/spreadsheet-overview.mdx @@ -12,12 +12,10 @@ platformType: xplat import DocsAside from 'igniteui-astro-components/components/mdx/DocsAside.astro'; import PlatformBlock from 'igniteui-astro-components/components/mdx/PlatformBlock.astro'; import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; -import ApiLink from 'igniteui-astro-components/components/mdx/ApiLink.astro'; - # {Platform} Spreadsheet の概要 -{Platform} Spreadsheet (Excel ビューア) コンポーネントは軽量で機能が豊富で、科学、ビジネス、財務など、あらゆる種類のスプレッドシート データを操作、視覚化、編集するために必要なすべてのオプションが用意されています。すべての情報は、セル、ペイン、およびワークシート間を直感的かつ簡単にナビゲートできる表形式で表示できます。 は、Excel のような柔軟なインターフェイス、詳細なチャート、およびアクティブ化、セル編集、条件付き書式設定、スタイル設定、選択、クリップボードなどの機能によって補完されます。 +{Platform} Spreadsheet (Excel ビューア) コンポーネントは軽量で機能が豊富で、科学、ビジネス、財務など、あらゆる種類のスプレッドシート データを操作、視覚化、編集するために必要なすべてのオプションが用意されています。すべての情報は、セル、ペイン、およびワークシート間を直感的かつ簡単にナビゲートできる表形式で表示できます。`Spreadsheet` は、Excel のような柔軟なインターフェイス、詳細なチャート、およびアクティブ化、セル編集、条件付き書式設定、スタイル設定、選択、クリップボードなどの機能によって補完されます。 ## {Platform} Spreadsheet の例 @@ -71,7 +69,7 @@ npm install --save {PackageSpreadsheet} ## モジュールの要件 - を作成するには、以下のモジュールが必要です。 +`Spreadsheet` を作成するには、以下のモジュールが必要です。 @@ -161,7 +159,7 @@ ModuleManager.register( -次のコード スニペットでは、外部の [ExcelUtility](./excel-utility.mdx) クラスを使用して を保存およびロードしています。 +次のコード スニペットでは、外部の [ExcelUtility](./excel-utility.mdx) クラスを使用して `Spreadsheet.Workbook` を保存およびロードしています。 以下は、ワークブックを {Platform} スプレッドシートにロードする方法を示しています。 @@ -229,5 +227,5 @@ ExcelUtility.loadFromUrl(excelFile).then((w: Workbook) => { ## API リファレンス -
-
+`Spreadsheet`
+`Workbook`
diff --git a/docs/xplat/src/content/jp/toc.json b/docs/xplat/src/content/jp/toc.json index 7be0d223ec..e012018058 100644 --- a/docs/xplat/src/content/jp/toc.json +++ b/docs/xplat/src/content/jp/toc.json @@ -134,6 +134,9 @@ "WebComponents" ], "name": "作業の開始", + "include": [ + "Blazor" + ], "items": [ { "name": "Blazor Server のアプリケーション", @@ -383,9 +386,8 @@ "WebComponents", "React" ], - "name": "グリッド & リスト", - "header": true, - "href": "grids/grids.mdx" + "name": "データ グリッド", + "header": true }, { "exclude": [ @@ -2085,7 +2087,7 @@ ] }, { - "name": "テーブル / グリッド", + "name": "データ グリッド", "href": "grids/data-grid/overview.mdx", "premium": true, "items": [ From 5173fcc0eff09f80c02c7f6328ff1d7e9196c44a Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 1 Sep 2026 14:52:36 -0400 Subject: [PATCH 152/155] fix(xplat): satisfy docs lint checks --- docs/xplat/scripts/README.md | 2 +- .../jp/components/general-changelog-dv-react.mdx | 15 ++++++++------- .../jp/components/general-changelog-dv-wc.mdx | 14 +++++++------- 3 files changed, 16 insertions(+), 15 deletions(-) diff --git a/docs/xplat/scripts/README.md b/docs/xplat/scripts/README.md index cf37df2a95..0c62313b45 100644 --- a/docs/xplat/scripts/README.md +++ b/docs/xplat/scripts/README.md @@ -6,7 +6,7 @@ snippet validators that are run by hand. | script | what it does | run by | |---|---|---| | `generate.mjs` | builds a platform's topics from the shared `.mdx`, emitting every json-snippet | the build | -| `check-doc-scope.mjs` | every topic declares its population, the declaration holds up, and strict-xplat source uses canonical backticked API terms instead of raw `ApiLink` calls | CI | +| `check-doc-scope.mjs` | every topic declares its population, the declaration holds up, and strict-xplat source uses canonical API terms in backticks instead of raw `ApiLink` calls | CI | | `check-commercial-license.mjs` | every topic emitted for WinUI and Uno has exactly `license: commercial` in its frontmatter | CI | | `check-snippet-schema.mjs` | every snippet against the schema the descriptions declare | CI | | `check-snippet-emission.mjs` | every fence emits on every platform, in both languages | CI | diff --git a/docs/xplat/src/content/jp/components/general-changelog-dv-react.mdx b/docs/xplat/src/content/jp/components/general-changelog-dv-react.mdx index 8c9a849523..9fa689e312 100644 --- a/docs/xplat/src/content/jp/components/general-changelog-dv-react.mdx +++ b/docs/xplat/src/content/jp/components/general-changelog-dv-react.mdx @@ -288,7 +288,7 @@ This is directly integrated with the available tools of the `Grid.Toolbar`. It's possible also to set a `mergeComparer` on the individual columns, in case some custom handling is needed for a particular data field. - - Added ability to pin individual columns to a specific side (start or end of the grid), so that you can now have pinning from both sides. This can be done either declaratively by setting the `pinningPosition` property on the column: +- Added ability to pin individual columns to a specific side (start or end of the grid), so that you can now have pinning from both sides. This can be done either declaratively by setting the `pinningPosition` property on the column: @@ -312,12 +312,12 @@ This is directly integrated with the available tools of the `Grid.Toolbar`. If property `pinningPosition` is not set on a column, the column will default to the position specified on the grid's `pinning` options for `columns`. - - **Sorting improvements** - - Improved sorting algorithm efficiency using Schwartzian transformation. This is a technique, also known as decorate-sort-undecorate, which avoids recomputing the sort keys by temporarily associating them with the original data records. - - Refactored sorting algorithms from recursive to iterative. - - **Groupby improvements** - - Refactored grouping algorithm from recursive to iterative. - - Optimized grouping operations. +- **Sorting improvements** + - Improved sorting algorithm efficiency using Schwartzian transformation. This is a technique, also known as decorate-sort-undecorate, which avoids recomputing the sort keys by temporarily associating them with the original data records. + - Refactored sorting algorithms from recursive to iterative. +- **Groupby improvements** + - Refactored grouping algorithm from recursive to iterative. + - Optimized grouping operations. @@ -505,6 +505,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov ### 機能拡張 #### バグ修正 + | バグ番号 | コントロール | 説明 | |------------|---------|-------------| |[1710](https://github.com/IgniteUI/igniteui-webcomponents/issues/1710)|Calendar および Date Picker|特定のシナリオにおける日付ロールオーバーが正しくない。 diff --git a/docs/xplat/src/content/jp/components/general-changelog-dv-wc.mdx b/docs/xplat/src/content/jp/components/general-changelog-dv-wc.mdx index 0a60a3d71e..ddda1b08ae 100644 --- a/docs/xplat/src/content/jp/components/general-changelog-dv-wc.mdx +++ b/docs/xplat/src/content/jp/components/general-changelog-dv-wc.mdx @@ -285,7 +285,7 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 It's possible also to set a `mergeComparer` on the individual columns, in case some custom handling is needed for a particular data field. - - Added ability to pin individual columns to a specific side (start or end of the grid), so that you can now have pinning from both sides. This can be done either declaratively by setting the `pinningPosition` property on the column: +- Added ability to pin individual columns to a specific side (start or end of the grid), so that you can now have pinning from both sides. This can be done either declaratively by setting the `pinningPosition` property on the column: @@ -309,12 +309,12 @@ X 軸と Y 軸に `CompanionAxis` プロパティが追加され、既存の軸 If property `pinningPosition` is not set on a column, the column will default to the position specified on the grid's `pinning` options for `columns`. - - **Sorting improvements** - - Improved sorting algorithm efficiency using Schwartzian transformation. This is a technique, also known as decorate-sort-undecorate, which avoids recomputing the sort keys by temporarily associating them with the original data records. - - Refactored sorting algorithms from recursive to iterative. - - **Groupby improvements** - - Refactored grouping algorithm from recursive to iterative. - - Optimized grouping operations. +- **Sorting improvements** + - Improved sorting algorithm efficiency using Schwartzian transformation. This is a technique, also known as decorate-sort-undecorate, which avoids recomputing the sort keys by temporarily associating them with the original data records. + - Refactored sorting algorithms from recursive to iterative. +- **Groupby improvements** + - Refactored grouping algorithm from recursive to iterative. + - Optimized grouping operations. From 89557dac8aab02cbf4a0024d3e06a7ef314a6898 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Tue, 1 Sep 2026 15:11:12 -0400 Subject: [PATCH 153/155] fix(xplat): disambiguate package API links --- .../charts/features/chart-axis-options.mdx | 4 +- .../general-changelog-dv-blazor.mdx | 188 +++++++++--------- .../components/general-changelog-dv-react.mdx | 4 +- .../charts/features/chart-axis-options.mdx | 4 +- .../general-changelog-dv-blazor.mdx | 2 +- 5 files changed, 101 insertions(+), 101 deletions(-) diff --git a/docs/xplat/src/content/en/components/charts/features/chart-axis-options.mdx b/docs/xplat/src/content/en/components/charts/features/chart-axis-options.mdx index 2acbd488cf..ec288a49c1 100644 --- a/docs/xplat/src/content/en/components/charts/features/chart-axis-options.mdx +++ b/docs/xplat/src/content/en/components/charts/features/chart-axis-options.mdx @@ -43,9 +43,9 @@ The chart also has the ability to consider auto-rotation of the labels if they w After setting the `autoMarginAndAngleUpdateMode`, you can set the `shouldAutoExpandMarginForInitialLabels` property to true to opt into the automatic margin or set the `shouldConsiderAutoRotationForInitialLabels` property to true for the auto-rotation. You can also further customize the automatic margin that is applied by setting the `autoExpandMarginExtraPadding` and `autoExpandMarginMaximumValue` to provide extra space or a maximum possible margin, respectively. -Custom label formats such as `NumberFormatSpecifier` and `DateTimeFormatSpecifier` can be added to each axis via the `xAxisLabelFormatSpecifiers` and `yAxisLabelFormatSpecifiers` collections. Commonly used for applying Intl.NumberFormat and Intl.DateTimeFormat language sensitive number, date and time formatting. In order for a custom format to be applied to the labels, the `yAxisLabelFormat` or `xAxisLabelFormat` need to be set to data item's property name on the `CategoryChart`, eg. `{Date}`. For the `FinancialChart` the number is the context because it uses a numeric axis, therefore this needs to be set to `{0}`. +Custom label formats such as and `DateTimeFormatSpecifier` can be added to each axis via the `xAxisLabelFormatSpecifiers` and `yAxisLabelFormatSpecifiers` collections. Commonly used for applying Intl.NumberFormat and Intl.DateTimeFormat language sensitive number, date and time formatting. In order for a custom format to be applied to the labels, the `yAxisLabelFormat` or `xAxisLabelFormat` need to be set to data item's property name on the `CategoryChart`, eg. `{Date}`. For the `FinancialChart` the number is the context because it uses a numeric axis, therefore this needs to be set to `{0}`. -The following example formats the yAxis with a `NumberFormatSpecifier` to represent $USD prices for top box office movies in the United States. +The following example formats the yAxis with a to represent $USD prices for top box office movies in the United States. diff --git a/docs/xplat/src/content/en/components/general-changelog-dv-blazor.mdx b/docs/xplat/src/content/en/components/general-changelog-dv-blazor.mdx index 3ca4af6d7a..0dd20fffb1 100644 --- a/docs/xplat/src/content/en/components/general-changelog-dv-blazor.mdx +++ b/docs/xplat/src/content/en/components/general-changelog-dv-blazor.mdx @@ -59,7 +59,7 @@ All notable changes for each version of {ProductName} are documented on this pag |------------|---------|-------------| | 3817 | IgbInput and other web inputs | Components were not registered on load; `defineAllComponents` registration was restored. | | 3743 | IgbGrid | Filtering event detail payload now uses `FilteringExpressionsTree` instead of the previous incorrect type. | -| 2129 | Web inputs | `ReportValidity` and `CheckValidity` returned the wrong type on `Checkbox`, `IgbCombo`, `IgbDatePicker`, `DateRangePicker`, `Input`, `Rating`, `Select`, `Slider` and `Textarea`. | +| 2129 | Web inputs | `ReportValidity` and `CheckValidity` returned the wrong type on , `IgbCombo`, `IgbDatePicker`, , , , , and . | | 2123 | Web inputs | Focus options were not marshalled correctly; they are now treated as a plain object. | | 3684 | IgbChat and other web components | Enum-typed properties were not serialized correctly when passed through the renderer element. | | 3777 | IgbRadialGauge, IgbLinearGauge, IgbBulletGraph | Null reference exception could occur in the gauges. | @@ -340,17 +340,17 @@ col.Pinned = true; ### General #### Added -- `DateRangePicker` +- #### Changed - Updated the readonly styles of most form associated components across all themes to better signify when a component is in a readonly state. -- `Tooltip` - - Behavioral change: `Tooltip` default placement is "bottom" now. - - Behavioral change: `Tooltip` will not render an arrow indicator by default unless with-arrow is set. - - Breaking change: `Tooltip` events will no longer return its anchor target in its detail property. You can still access it at event.target.anchor. +- + - Behavioral change: default placement is "bottom" now. + - Behavioral change: will not render an arrow indicator by default unless with-arrow is set. + - Breaking change: events will no longer return its anchor target in its detail property. You can still access it at event.target.anchor. #### Deprecated -- `Tooltip` - `DisableArrow` is deprecated. Use `WithArrow` to render an arrow indicator. +- - is deprecated. Use to render an arrow indicator. ### Bug Fixes @@ -433,7 +433,7 @@ Please note that the maximum size available for the icons is 24x24. You can prov | Bug Number | Control | Description | |------------|---------|------------------| |31624 | `CategoryChart` | Resizing the containing window of the `CategoryChart` causes the chart to fail to render the series| -|37307 | `Checkbox` | JS Heap, Nodes, and Listeners leakage on IgbCheckBox| +|37307 | | JS Heap, Nodes, and Listeners leakage on IgbCheckBox| |37930 | `XamDataChart` | Data Annotation Overlay Text Color not working| |27304 | `XamDataChart` | Zoom rectangle is not positioned the same as the background rectangle| |30600 | `XamDoughnutChart` | No textStyle property for either the chart or series (pie chart has this)| @@ -482,25 +482,25 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft | Bug Number | Control | Description | |------------|---------|------------------| -|26952 | `Tabs` | e.Detail is null in Change event in Razor/JS| -|26953 | `Tabs` | Marking a tab selected won't apply on subsequent attempts| +|26952 | | e.Detail is null in Change event in Razor/JS| +|26953 | | Marking a tab selected won't apply on subsequent attempts| |31910 | `DatePicker` | An error will happen when I bind a value using the "@bind-Value" syntax and click the clear button| |31323 | `XamDataChart`, `Grid`, `IgbCombo` | A NullReferenceException happens when the data type has a collection-type property, and the 1st element of that collection is null| -|38903 | `Tabs` | Dropdown list is not displaying in the correct location for components inside the tab| -|[139](https://github.com/IgniteUI/igniteui-blazor/issues/139) | `DatePicker`, `DateTimeInput` | Date picker and data time input do not support nullable values| +|38903 | | Dropdown list is not displaying in the correct location for components inside the tab| +|[139](https://github.com/IgniteUI/igniteui-blazor/issues/139) | , | Date picker and data time input do not support nullable values| ### General The following properties of these components are now nullable: -- `Button`: `Form` -- `Calendar`: `DatePicker.SpecialDates`, `DatePicker.DisabledDates` +- : `Form` +- : `DatePicker.SpecialDates`, `DatePicker.DisabledDates` - `Combo`: `ValueKey`, `DisplayKey`, `GroupKey` - `DatePicker`: `Value`, `Min`, `Max` - `DateTimePicker`: `Value`, `Min`, `Max` -- `Dropdown`: `PieChartBase.SelectedItem` -- `Input`: `Pattern`, `MinLength`, `MaxLength`, `DatePicker.Min`, `DatePicker.Max`, `Step` +- : `PieChartBase.SelectedItem` +- : , , , `DatePicker.Min`, `DatePicker.Max`, - `DatePicker.Select`: `DatePicker.Value`, `PieChartBase.SelectedItem` -- `Tile`: `ColumnState.ColStart`, `RowStart` -- `TileManager`: `MinColumnWidth`, `MinRowHeight`, `Gap` +- : `ColumnState.ColStart`, +- : , , ## **{PackageVerChanges-25-1-JULY}** @@ -509,7 +509,7 @@ The following properties of these components are now nullable: | Bug Number | Control | Description | |------------|---------|------------------| |36448 | `XamRadialGauge` | Radial label format properties do not work. (eg. Title, SubTitles)| -|37718 | `Tab` | Unexpected scrolling occurred when a new row was added to a grid that is in a tab panel| +|37718 | | Unexpected scrolling occurred when a new row was added to a grid that is in a tab panel| |37855 | `Grid` | Crypto.randomUID not found error is thrown if a grid contains HeaderTemplate and the page is accessed using unsecured(http) protocol| ### {PackageCharts} (Charts) @@ -545,7 +545,7 @@ For more details please visit: - [Trendline Layer](./charts/features/chart-trendlines.mdx) series type that allows you to apply a single trend line per trend line layer to a particular series. This allows the usage of multiple trend lines on a single series since you can have multiple [TrendlineLayer](./charts/features/chart-overlays.mdx) series types in the chart. ### General -- `Tooltip` component provides a way to display a tooltip for a specific element. To use, set content as desired and link via the `Anchor` property to the target element's id: +- component provides a way to display a tooltip for a specific element. To use, set content as desired and link via the property to the target element's id: @@ -558,25 +558,25 @@ For more details please visit: - The tooltip can be further customized with `Show/HideDelay`, `Placement` around the target and customizable `Show/HideTriggers` events. + The tooltip can be further customized with `Show/HideDelay`, around the target and customizable `Show/HideTriggers` events. ### Changes - A number of enumerations have been renamed and/or merged with others. Renames (with affected components): - - `BaseAlertLikePosition` (`Snackbar` and `Toast`) has been renamed to `AbsolutePosition` - - `ButtonGroupAlignment` (`ButtonGroup`), `CalendarOrientation` (`Calendar`), `CardActionsOrientation` (`CardActions`), `DatePickerOrientation` (`DatePicker`), `RadioGroupAlignment` (`RadioGroup`) have been merged and renamed to `ContentOrientation` - - `CalendarBaseSelection` (`Calendar`) has been renamed to `CalendarSelection` - - `CarouselAnimationType` (`Carousel`) and `StepperHorizontalAnimation` (`Stepper`) have been merged and renamed to `HorizontalTransitionAnimation` - - `CheckboxBaseLabelPosition` (`Checkbox` and `Switch`) and `RadioLabelPosition` (`Radio`) have been merged and renamed to `ToggleLabelPosition` + - `BaseAlertLikePosition` ( and ) has been renamed to `AbsolutePosition` + - `ButtonGroupAlignment` (), `CalendarOrientation` (), `CardActionsOrientation` (), `DatePickerOrientation` (`DatePicker`), `RadioGroupAlignment` () have been merged and renamed to `ContentOrientation` + - `CalendarBaseSelection` () has been renamed to `CalendarSelection` + - `CarouselAnimationType` () and `StepperHorizontalAnimation` () have been merged and renamed to `HorizontalTransitionAnimation` + - `CheckboxBaseLabelPosition` ( and ) and `RadioLabelPosition` () have been merged and renamed to `ToggleLabelPosition` - `DatePickerMode` (`DatePicker`) has been renamed to `PickerMode` - `DatePickerHeaderOrientation` (`DatePicker`) has been renamed to/merged with `CalendarHeaderOrientation` - - `DropdownPlacement` (`Dropdown` and `DatePicker.Select`) has been renamed to `PopoverPlacement` - - `DropdownScrollStrategy` (`Dropdown`) and `SelectScrollStrategy` (`DatePicker.Select`) have been merged and renamed to `PopoverScrollStrategy` - - `SliderBaseTickOrientation` (`Slider` and `RangeSlider`) has been renamed to `SliderTickOrientation` - - `Slider.TickLabelRotation` (`Slider` and `RangeSlider`) has been renamed to `SliderTickLabelRotation` -- `Tabs` + - `DropdownPlacement` ( and `DatePicker.Select`) has been renamed to `PopoverPlacement` + - `DropdownScrollStrategy` () and `SelectScrollStrategy` (`DatePicker.Select`) have been merged and renamed to `PopoverScrollStrategy` + - `SliderBaseTickOrientation` ( and ) has been renamed to `SliderTickOrientation` + - ( and ) has been renamed to `SliderTickLabelRotation` +- - Simplified configuration by removing the need to define separate panel and linking the panel and tab header. The `Panel` property and the `IgbTabPanel` itself have been removed. Content can be now assigned directly to the `Tab` and header text can be set conveniently via the new `DatePicker.Label` property or by projecting an element to `slot="label"` for more involved customization. + Simplified configuration by removing the need to define separate panel and linking the panel and tab header. The `Panel` property and the `IgbTabPanel` itself have been removed. Content can be now assigned directly to the and header text can be set conveniently via the new `DatePicker.Label` property or by projecting an element to `slot="label"` for more involved customization. Before: @@ -621,16 +621,16 @@ For more details please visit: ``` -- `Input` +- - `DatePicker.Min` & `DatePicker.Max` are now `double` instead of `string` -- `Stepper` - - `ActiveStepChangingArgsEventArgs` has been renamed to `ActiveStepChangingEventArgs` - - `ActiveStepChangedArgsEventArgs` has been renamed to `ActiveStepChangedEventArgs` +- + - `ActiveStepChangingArgsEventArgs` has been renamed to + - `ActiveStepChangedArgsEventArgs` has been renamed to - `StepperTitlePosition` now defaults to `Auto` to correctly reflect the default behavior -- `Tree` - - `TreeSelectionChangeEventArgs` has been renamed to `TreeSelectionEventArgs` -- `Textarea` - - `Autocapitalize` & `Input.InputMode` are now `string` properties instead of explicit enums +- + - `TreeSelectionChangeEventArgs` has been renamed to +- + - & are now `string` properties instead of explicit enums ### {PackageGrids} (Grids) @@ -689,7 +689,7 @@ For more details please visit: ### Enhancements #### List -- Added new property on `ListItem` called `Tabs.Selected` +- Added new property on called `Tabs.Selected` #### Accordion - Added new events `DatePicker.Open` and `Close` @@ -706,7 +706,7 @@ For more details please visit: |25602 | `Grid` | Loading a layout with one of the date-specific filter operators results in a TypeError console error| |28480 | `IgbCombo` | Undefined reference error is thrown when a datasource is replaced| |32598 | `Grid` | Multi-selection is not working correctly -|36374 | `Input` | A previous value was bound when a form was submitted on any touch device| +|36374 | | A previous value was bound when a form was submitted on any touch device| |37214|General|Intermittent error in Blazor's WebCallback.Register() ## **{PackageVerChanges-24-2-MAR}** @@ -721,7 +721,7 @@ For more details please visit: | Bug Number | Control | Description | |------------|---------|------------------| -|35497 | `Dialog` | When ShowAsync and HideAsync Are Called, the Subsequent Code Is Not Executed| +|35497 | | When ShowAsync and HideAsync Are Called, the Subsequent Code Is Not Executed| ## **{PackageVerChanges-24-2-FEB}** @@ -785,8 +785,8 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ### General - New [Carousel](./layouts/carousel.mdx) component. -- `Input` - - Changed `change` event argument type from `ComponentDataValueChangedEventArgs` to `ComponentValueChangedEventArgs` +- + - Changed `change` event argument type from to ## **{PackageVerChanges-24-1-SEP}** @@ -813,13 +813,13 @@ The following table lists the bug fixes made for the {ProductName} toolset for t - New [Banner](./notifications/banner.mdx) component. - New [DatePicker](./scheduling/date-picker.mdx) component. -- New `Divider` component. -- `Icon` - - Added `SetIconRef` method. This allows to register and replace icons by SVG files. +- New component. +- + - Added method. This allows to register and replace icons by SVG files. - All components now use icons by reference internally so that it's easy to replace them without explicitly providing custom templates. -- `Combo`, `DatePicker`, `Dialog`, `Dropdown`, `ExpansionPanel`, `NavDrawer`, `Toast`, `Snackbar`, **IgbSelectComponent** +- `Combo`, `DatePicker`, , , , , , , **IgbSelectComponent** - Toggle methods `DatePicker.Show`, `DatePicker.Hide`, `DatePicker.Toggle` methods return **true** now on success. Otherwise **false**. -- `RadioGroup` +- - Added `DatePicker.Name` and `DatePicker.Value` properties. `DatePicker.Value` also supports two-way binding. **Breaking Changes** @@ -827,32 +827,32 @@ The following table lists the bug fixes made for the {ProductName} toolset for t - Renamed old **IgbDatePicker** to **IgbXDatePicker**. - Removed `Form` component. Use native form instead. - Removed `size` property in favor of the `--ig-size` CSS custom property for the following components: - - `Avatar`, `Button`,`IconButton`, `Calendar`, `Chip`, `Dropdown`, `Icon`, `Input`, `List`, `Rating`, `Snackbar`, `Tabs`, `Tree` -- `Badge`, `Chip`, `LinearProgress`, `CircularProgress` - - Renamed `Button.Variant` property type to `StyleVariant`. -- `Calendar` + - , ,, , , , , , , , , , +- , , , + - Renamed property type to `StyleVariant`. +- - Renamed `FieldPipeArgs.WeekStart` property type to `WeekDays`. -- `Checkbox`, `Switch` - - Changed `Change` event argument type from `ComponentBoolValueChangedEventArgs` to `CheckboxChangeEventArgs`. +- , + - Changed event argument type from to . - `Combo` - The `IgbCombo` is now of generic type and the `DatePicker.Value` type is now of type `T[]`. This means that either you need to specify `T` or it will be inferred by the assigned `DatePicker.Value` type. - - Removed `PositionStrategy`, `Flip`, `SameWidth` properties. + - Removed `PositionStrategy`, , properties. - **IgbSelectComponent** - - Removed `PositionStrategy`, `Flip`, `SameWidth` properties. -- `DateTimeInput` + - Removed `PositionStrategy`, , properties. +- - Removed `MaxValue` and `MinValue` properties. Use `DatePicker.Max` and `DatePicker.Min` instead. -- `Dropdown` +- - Removed `PositionStrategy` property. -- `Input` - - Removed old named `MaxLength` and `MinLength` properties. Use `MaxLength` and `MinLength`. - - Removed old named `Rating.ReadOnly` and `InputMode` properties. Use `DatePicker.ReadOnly` and `InputMode`. - - Changed `InputMode` type also to `string`. -- `Radio` - - Changed event argument type from `ComponentBoolValueChangedEventArgs` to `RadioChangeEventArgs`. -- `RangeSlider` - - Removed `AriaThumbLower` and `AriaThumbUpper` properties. Use `ThumbLabelLower` and `ThumbLabelUpper` instead. -- `Rating` - - Renamed `ReadOnly` property to `DatePicker.ReadOnly`. +- + - Removed old named and properties. Use and . + - Removed old named and properties. Use `DatePicker.ReadOnly` and . + - Changed type also to `string`. +- + - Changed event argument type from to . +- + - Removed `AriaThumbLower` and `AriaThumbUpper` properties. Use and instead. +- + - Renamed property to `DatePicker.ReadOnly`. ### {PackageGrids} @@ -889,8 +889,8 @@ The following table lists the bug fixes made for the {ProductName} toolset for t ## **{PackageVerChanges-24-1-JUN}** ### General -- `Input`, `Textarea` - exposed `Input.ValidateOnly` to enable validation rules being enforced without restricting user input. -- `Dropdown` - `PositionStrategy` property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. +- , - exposed to enable validation rules being enforced without restricting user input. +- - `PositionStrategy` property is deprecated. The dropdown now uses the `Popover` API to render its container in the top layer of the browser viewport, making the property obsolete. - `DockManager` - `SplitPane` `IsMaximized` is deprecated. Having isMaximized set to true on a split pane level has no real effect as split panes serve as containers only, meaning they have no actual content to be shown maximized. Use the `IsMaximized` property of `TabGroupPane` and/or `ContentPane` instead. ### {PackageGrids} @@ -950,11 +950,11 @@ Data Filtering via the `XYChart.InitialFilter` property. Apply filter expression - New `ProximityDock` property. If enabled, docking indicators are not visible and the end user can dock the dragged pane by dragging it close to the target pane edges. - New `ContainedInBoundaries` property. Determines whether the floating panes are kept inside the Dock Manager boundaries. Defaults to `false`. - New `ShowPaneHeaders` property. Determines whether pane headers are only shown on hover or always visible. Defaults to `always`. -- `Tree` - - Added `ToggleNodeOnClick` property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. -- `Rating` - - `AllowReset` added. When enabled selecting the same value will reset the component. **Behavioral change** - In previous releases this was the default behavior of the rating component. Make sure to set `AllowReset` if you need to keep this behavior in your application. -- `DatePicker.Select`, `Dropdown` +- + - Added property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. +- + - added. When enabled selecting the same value will reset the component. **Behavioral change** - In previous releases this was the default behavior of the rating component. Make sure to set if you need to keep this behavior in your application. +- `DatePicker.Select`, - exposed `selectedItem`, `items` and `groups` getters - `XamRadialGauge` - New title/subtitle properties. `TitleText`, `SubtitleText` will appear near the bottom the gauge. In addition, the various title/subtitle font properties were added such as `TitleFontSize`, `TitleFontFamily`, `TitleFontStyle`, `TitleFontWeight` and `TitleExtent`. Finally, the new `TitleDisplaysValue` will allow the value to correspond with the needle's position. @@ -966,11 +966,11 @@ Data Filtering via the `XYChart.InitialFilter` property. Apply filter expression ### General -- `Input`, `MaskInput`, `DateTimeInput`, `Rating` - - `ReadOnly` has been renamed to `DatePicker.ReadOnly` -- `Input` - - `MaxLength` has been renamed to `MaxLength` - - `MinLength` has been renamed to `MinLength` +- , , , + - has been renamed to `DatePicker.ReadOnly` +- + - has been renamed to + - has been renamed to ### Deprecations @@ -982,18 +982,18 @@ Data Filtering via the `XYChart.InitialFilter` property. Apply filter expression } ``` -- `DateTimeInput` +- - `MinValue` and `MaxValue` properties have been deprecated. Please, use `DatePicker.Min` and `DatePicker.Max` instead. -- `RangeSlider` - - `AriaLabelLower` and `AriaLabelUpper` properties have been deprecated. Please, use `ThumbLabelLower` and `ThumbLabelUpper` instead. +- + - `AriaLabelLower` and `AriaLabelUpper` properties have been deprecated. Please, use and instead. ### Removed - Removed our own `dir` attribute which shadowed the default one. This is a non-breaking change. -- `Slider` - `ariaLabel` shadowed property. This is a non-breaking change. -- `Checkbox` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. -- `Switch` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. -- `Radio` - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- - `ariaLabel` shadowed property. This is a non-breaking change. +- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. +- - `ariaLabelledBy` shadowed attribute. This is a non-breaking change. ## **{PackageVerChanges-23-2-JAN}** @@ -1041,7 +1041,7 @@ Data Filtering via the `XYChart.InitialFilter` property. Apply filter expression ### {PackageGrids} (Data Grid) -- A new argument `Grid.PrimaryKey` has been introduced to `RowDataEventArgs` from `ActiveStepChangingEventArgs.Detail`, and part of the event arguments that are emitted by the `RowAdded` and `RowDeleted` events. When the grid has a primary key attribute added, then the emitted primaryKey event argument represents the row ID, otherwise it defaults to null. +- A new argument `Grid.PrimaryKey` has been introduced to `RowDataEventArgs` from , and part of the event arguments that are emitted by the `RowAdded` and `RowDeleted` events. When the grid has a primary key attribute added, then the emitted primaryKey event argument represents the row ID, otherwise it defaults to null. - `RowSelectionChanging` event arguments are changed. Now, the `OldSelection`, `NewSelection`, `Added` and `Removed` collections no longer consist of the row keys of the selected elements when the grid has set a primaryKey, but now in any case the row data is emitted. - When the grid is working with remote data and a primary key has been set, the selected rows that are not currently part of the grid view will be emitted for a partial row data object. - When selected row is deleted from the grid component `RowSelectionChanging` event will no longer be emitted. @@ -1054,11 +1054,11 @@ Data Filtering via the `XYChart.InitialFilter` property. Apply filter expression ### {PackageInputs} (Inputs) -- `DateTimeInput`, the StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) is now trimmed down to DatePart instead of DateTimeInputDatePart -- `Radio` and `RadioGroup`, added component validation along with styles for invalid state +- , the StepDownAsync(DateTimeInputDatePart.Date, SpinDelta.Date) is now trimmed down to DatePart instead of DateTimeInputDatePart +- and , added component validation along with styles for invalid state - `IgbMask`, added the capability to escape mask pattern literals. -- `Badge` added a `Avatar.Shape` property that controls the shape of the badge and can be either `Square` or `Rounded`. The default shape of the badge is rounded. -- `Avatar`, the `RoundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added `Shape` attribute that can be `Square`, `Rounded` or `Circle`. The default shape of the avatar is `Square`. +- added a property that controls the shape of the badge and can be either `Square` or `Rounded`. The default shape of the badge is rounded. +- , the `RoundShape` property has been deprecated and will be removed in a future version. Users can control the shape of the avatar by the newly added attribute that can be `Square`, `Rounded` or `Circle`. The default shape of the avatar is `Square`. ### {PackageDockManager} (DockManager) diff --git a/docs/xplat/src/content/en/components/general-changelog-dv-react.mdx b/docs/xplat/src/content/en/components/general-changelog-dv-react.mdx index eb0fef70ad..e2ee447b96 100644 --- a/docs/xplat/src/content/en/components/general-changelog-dv-react.mdx +++ b/docs/xplat/src/content/en/components/general-changelog-dv-react.mdx @@ -541,7 +541,7 @@ With 19.0.0 the React product introduces many breaking changes done to improve a [Update Guide](./update-guide.mdx) ### Removed -- `CheckboxChangeEventArgs` removed, use `CheckboxChangeEventArgs` instead. +- removed, use instead. - `RadioChangeEventArgs` removed, use `RadioChangeEventArgs` instead. - `RangeSliderValue` removed, use `RangeSliderValueEventArgs` instead. - `ActiveStepChangingArgs` removed, use `ActiveStepChangingEventArgs` instead. @@ -718,7 +718,7 @@ DashboardTile - `Calendar` - Renamed `FieldPipeArgs.WeekStart` property type to `WeekDays`. - `Checkbox`, `Switch` - - Changed `change` event argument type from `ComponentBoolValueChangedEventArgs` to `CheckboxChangeEventArgs`. + - Changed `change` event argument type from `ComponentBoolValueChangedEventArgs` to . - `Combo`, **IgrSelectComponent** - Removed `positionStrategy`, `flip`, `sameWidth` properties. - `DateTimeInput` diff --git a/docs/xplat/src/content/jp/components/charts/features/chart-axis-options.mdx b/docs/xplat/src/content/jp/components/charts/features/chart-axis-options.mdx index 4fc3689f1c..4d6bb9f5b2 100644 --- a/docs/xplat/src/content/jp/components/charts/features/chart-axis-options.mdx +++ b/docs/xplat/src/content/jp/components/charts/features/chart-axis-options.mdx @@ -45,9 +45,9 @@ import Sample from 'igniteui-astro-components/components/mdx/Sample.astro'; `autoMarginAndAngleUpdateMode` を設定した後、`shouldAutoExpandMarginForInitialLabels` プロパティを true に設定して自動マージンをオプトインするか `shouldConsiderAutoRotationForInitialLabels` プロパティを true に設定して自動回転を行うことができます。`autoExpandMarginExtraPadding` と `autoExpandMarginMaximumValue` を設して、それぞれ追加のスペースまたは可能な最大マージンを提供することにより、適用される自動マージンをさらにカスタマイズすることもできます。 -`NumberFormatSpecifier` や `DateTimeFormatSpecifier` などのカスタム ラベル書式は、`xAxisLabelFormatSpecifiers` および `yAxisLabelFormatSpecifiers` コレクションを介して各軸に追加できます。一般に、Intl.NumberFormat および Intl.DateTimeFormat の言語に依存した数値、日付、時刻の書式設定を適用するために使用されます。ラベルにカスタム書式を適用するには、`yAxisLabelFormat` または `xAxisLabelFormat` を `CategoryChart` のデータ項目のプロパティ名 (例: `{Date}`) に設定する必要があります。`FinancialChart` の場合、数値軸を使用するため、数値がコンテキストとなり、これを `{0}` に設定する必要があります。 + や `DateTimeFormatSpecifier` などのカスタム ラベル書式は、`xAxisLabelFormatSpecifiers` および `yAxisLabelFormatSpecifiers` コレクションを介して各軸に追加できます。一般に、Intl.NumberFormat および Intl.DateTimeFormat の言語に依存した数値、日付、時刻の書式設定を適用するために使用されます。ラベルにカスタム書式を適用するには、`yAxisLabelFormat` または `xAxisLabelFormat` を `CategoryChart` のデータ項目のプロパティ名 (例: `{Date}`) に設定する必要があります。`FinancialChart` の場合、数値軸を使用するため、数値がコンテキストとなり、これを `{0}` に設定する必要があります。 -次の例では、yAxis を `NumberFormatSpecifier` でフォーマットして、米国のトップ興行収入映画の $USD 価格を表します。 +次の例では、yAxis を でフォーマットして、米国のトップ興行収入映画の $USD 価格を表します。 diff --git a/docs/xplat/src/content/jp/components/general-changelog-dv-blazor.mdx b/docs/xplat/src/content/jp/components/general-changelog-dv-blazor.mdx index f0e9e5c045..a18e62156f 100644 --- a/docs/xplat/src/content/jp/components/general-changelog-dv-blazor.mdx +++ b/docs/xplat/src/content/jp/components/general-changelog-dv-blazor.mdx @@ -915,7 +915,7 @@ Explore some of the publicly available [Azure maps here](https://azure.microsoft - `Calendar` - Renamed `FieldPipeArgs.WeekStart` property type to `WeekDays`. - `Checkbox`, `Switch` - - Changed `Change` event argument type from `ComponentBoolValueChangedEventArgs` to `CheckboxChangeEventArgs`. + - Changed `Change` event argument type from `ComponentBoolValueChangedEventArgs` to . - `Combo` - The `IgbCombo` is now of generic type and the `DatePicker.Value` type is now of type `T[]`. This means that either you need to specify `T` or it will be inferred by the assigned `DatePicker.Value` type. - Removed `PositionStrategy`, `Flip`, `SameWidth` properties. From da26d2dbc481ca003cbe81fc6b2d3aca83a63927 Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Sat, 5 Sep 2026 08:21:27 -0400 Subject: [PATCH 154/155] feat: publish Uno Platform docs and API links --- .github/AGENTS-README.md | 2 +- .github/workflows/_cd-deploy.yml | 2 +- docs/xplat/JSON-SNIPPETS.md | 2 +- docs/xplat/docConfig.json | 14 +- docs/xplat/scripts/README.md | 2 +- .../en/components/general-getting-started.mdx | 6 +- .../jp/components/general-getting-started.mdx | 4 +- docs/xplat/src/lib/platform-context.ts | 3 +- src/data/api-link-index/manifest.json | 2 + .../api-link-index/uno/staging-latest.json | 83871 ++++++++++++++++ .../api-link-index/winui/staging-latest.json | 83521 +++++++++++++++ src/integration.ts | 4 +- src/lib/api-platform-config.ts | 31 +- src/lib/platform-context.ts | 10 +- src/platform.ts | 2 +- 15 files changed, 167435 insertions(+), 41 deletions(-) create mode 100644 src/data/api-link-index/uno/staging-latest.json create mode 100644 src/data/api-link-index/winui/staging-latest.json diff --git a/.github/AGENTS-README.md b/.github/AGENTS-README.md index d2e28a753b..1735213e2b 100644 --- a/.github/AGENTS-README.md +++ b/.github/AGENTS-README.md @@ -6,7 +6,7 @@ This document describes the AI skills available in this repository, what each on ## Context -The MDX files under `docs/xplat/src/content/en/` are **shared across six platforms**: Angular, React, WebComponents, Blazor, WinUI, and Uno. A single source file is built once per platform to produce a separate documentation site each time, and `docs/xplat/src/content/jp/` mirrors the set. +The MDX files under `docs/xplat/src/content/en/` are **shared across six platforms**: Angular, React, WebComponents, Blazor, WinUI, and Uno Platform. A single source file is built once per platform to produce a separate documentation site each time, and `docs/xplat/src/content/jp/` mirrors the set. **Three populations live in that tree, and every page declares which it is** in its `platformType` frontmatter, which is required and has no default. **`xplat`** is the DV set — charts, gauges, maps, dashboard tile, data grid, spreadsheet, toolbar, zoom slider — where names in backticks resolve in full and a component is stated as a `json-snippet` unless a platform-specific snippet is genuinely necessary. **`xplat-unmapped`** is the same set where that treatment cannot be applied yet: the Excel library, whose API no generator describes, and the data grid's accessibility topic, whose XAML shape is undecided. **`web-only`** — inputs, layouts, notifications, scheduling, themes, the web grid families, grid lite — carries neither obligation and may do as it likes; reworking one to match the DV set is out of scope, not an improvement. Identity is not publication: a topic can be xplat and not reach the desktop platforms yet. diff --git a/.github/workflows/_cd-deploy.yml b/.github/workflows/_cd-deploy.yml index e964548995..8be00935ed 100644 --- a/.github/workflows/_cd-deploy.yml +++ b/.github/workflows/_cd-deploy.yml @@ -78,7 +78,7 @@ jobs: calling_branch: "${{ inputs.target_ref }}", environment: "${{ env.BUILD_TYPE }}", artifact_name: "igniteui-docs-${{ inputs.platform }}-${{ inputs.locale }}", - base_href: "${{ inputs.platform == 'wc' && 'webcomponents' || inputs.platform }}site", + base_href: "${{ inputs.platform == 'wc' && 'webcomponents' || inputs.platform == 'uno' && 'uno-platform' || inputs.platform }}site", platform: "${{ inputs.platform }}", repository: "${{ github.repository }}", run_id: "${{ github.run_id }}", diff --git a/docs/xplat/JSON-SNIPPETS.md b/docs/xplat/JSON-SNIPPETS.md index f27f4f3a6d..76aafb7d1e 100644 --- a/docs/xplat/JSON-SNIPPETS.md +++ b/docs/xplat/JSON-SNIPPETS.md @@ -129,7 +129,7 @@ does not declare that a code block is needed: > code beside it. `channel="allCode"` is the code *instead of* the markup — and on the XAML platforms, > whose samples are markup throughout, there is no code, so the fence emits nothing and drops out. A > "for your convenience, all of the above combined" section written that way published a heading and -> nothing under it on WinUI and Uno. Such a section wants `channel="auto"`, which takes whatever the +> nothing under it on WinUI and Uno Platform. Such a section wants `channel="auto"`, which takes whatever the > platform actually has. --- diff --git a/docs/xplat/docConfig.json b/docs/xplat/docConfig.json index 6c2cf8b8a4..be4c7be9e9 100644 --- a/docs/xplat/docConfig.json +++ b/docs/xplat/docConfig.json @@ -1335,7 +1335,7 @@ }, { "name": "{ProductSpinal}", - "value": "ultimate-ui-uno" + "value": "ultimate-ui-uno-platform" }, { "name": "{ProductName}", @@ -1347,15 +1347,15 @@ }, { "name": "{PlatformLower}", - "value": "uno" + "value": "uno-platform" }, { "name": "{PlatformLowerNoHyphen}", - "value": "uno" + "value": "uno-platform" }, { "name": "{Platform}", - "value": "Uno" + "value": "Uno Platform" }, { "name": "{IgPrefix}", @@ -1879,8 +1879,8 @@ "staging": "https://staging.infragistics.com/uno-wasm-demos", "production": "https://www.infragistics.com/uno-wasm-demos" }, - "apiDocRoot": "{environment:dvApiBaseUrl}/uno/docs/api/api/", - "Main": "https://www.infragistics.com/products/ultimate-ui-uno/uno/components/{CONTROL_NAME}.html", - "Overview": "https://www.infragistics.com/products/ultimate-ui-uno/uno/components/{CONTROL_NAME}.html" + "apiDocRoot": "{environment:dvApiBaseUrl}/uno-platform/docs/api/api/", + "Main": "https://www.infragistics.com/products/ultimate-ui-uno-platform/uno-platform/components/{CONTROL_NAME}.html", + "Overview": "https://www.infragistics.com/products/ultimate-ui-uno-platform/uno-platform/components/{CONTROL_NAME}.html" } } diff --git a/docs/xplat/scripts/README.md b/docs/xplat/scripts/README.md index 0c62313b45..90509da688 100644 --- a/docs/xplat/scripts/README.md +++ b/docs/xplat/scripts/README.md @@ -7,7 +7,7 @@ snippet validators that are run by hand. |---|---|---| | `generate.mjs` | builds a platform's topics from the shared `.mdx`, emitting every json-snippet | the build | | `check-doc-scope.mjs` | every topic declares its population, the declaration holds up, and strict-xplat source uses canonical API terms in backticks instead of raw `ApiLink` calls | CI | -| `check-commercial-license.mjs` | every topic emitted for WinUI and Uno has exactly `license: commercial` in its frontmatter | CI | +| `check-commercial-license.mjs` | every topic emitted for WinUI and Uno Platform has exactly `license: commercial` in its frontmatter | CI | | `check-snippet-schema.mjs` | every snippet against the schema the descriptions declare | CI | | `check-snippet-emission.mjs` | every fence emits on every platform, in both languages | CI | | `snippet-runtime/run.mjs` | every fence loaded into chromium against the real renderer | CI | diff --git a/docs/xplat/src/content/en/components/general-getting-started.mdx b/docs/xplat/src/content/en/components/general-getting-started.mdx index daff550d96..17ae4d341d 100644 --- a/docs/xplat/src/content/en/components/general-getting-started.mdx +++ b/docs/xplat/src/content/en/components/general-getting-started.mdx @@ -944,7 +944,7 @@ source set to `https://packages.infragistics.com/nuget/licensed/v3/index.json`. ## Declare the Namespaces Each package of controls lives in its own namespace, and a XAML file declares the ones it uses. WinUI and -Uno use the `using:` form: +Uno Platform uses the `using:` form: ```xaml , bool)": "SerializeItems(StringBuilder, string, IEnumerable, bool)", + "SerializeItems": "SerializeItems(StringBuilder, string, IEnumerable, bool)" + } + } + ], + "ApplyButtonClickEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ApplyButtonClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ApplyButtonClickEventArgsDescription()": "ApplyButtonClickEventArgsDescription()", + "ApplyButtonClickEventArgsDescription": "ApplyButtonClickEventArgsDescription()", + "Type": "Type" + } + } + ], + "ApplyButtonClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ApplyButtonClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ApplyButtonClickEventArgsDescriptionMetadata()": "ApplyButtonClickEventArgsDescriptionMetadata()", + "ApplyButtonClickEventArgsDescriptionMetadata": "ApplyButtonClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ArcGISOnlineMapImagery": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/ArcGISOnlineMapImagery", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineMapImagery()": "ArcGISOnlineMapImagery()", + "ArcGISOnlineMapImagery": "ArcGISOnlineMapImagery()", + "AcquireNewToken()": "AcquireNewToken()", + "AcquireNewToken": "AcquireNewToken()", + "DefaultTokenTimeout": "DefaultTokenTimeout", + "IsMapPublic": "IsMapPublic", + "MapServerUri": "MapServerUri", + "Password": "Password", + "RefererUri": "RefererUri", + "TokenGenerationEndPoint": "TokenGenerationEndPoint", + "UserName": "UserName", + "UserToken": "UserToken" + } + } + ], + "ArcGISOnlineMapImageryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ArcGISOnlineMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineMapImageryDescription()": "ArcGISOnlineMapImageryDescription()", + "ArcGISOnlineMapImageryDescription": "ArcGISOnlineMapImageryDescription()", + "DefaultTokenTimeout": "DefaultTokenTimeout", + "IsMapPublic": "IsMapPublic", + "MapServerUri": "MapServerUri", + "Password": "Password", + "RefererUri": "RefererUri", + "TokenGenerationEndPoint": "TokenGenerationEndPoint", + "Type": "Type", + "UserName": "UserName", + "UserToken": "UserToken" + } + } + ], + "ArcGISOnlineMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ArcGISOnlineMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineMapImageryDescriptionMetadata()": "ArcGISOnlineMapImageryDescriptionMetadata()", + "ArcGISOnlineMapImageryDescriptionMetadata": "ArcGISOnlineMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ArcGISOnlineMapImageryDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ArcGISOnlineMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineMapImageryDescriptionModule()": "ArcGISOnlineMapImageryDescriptionModule()", + "ArcGISOnlineMapImageryDescriptionModule": "ArcGISOnlineMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ArcGISOnlineTileSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ArcGISOnlineTileSource", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineTileSource()": "ArcGISOnlineTileSource()", + "ArcGISOnlineTileSource": "ArcGISOnlineTileSource()", + "IsMapPublic": "IsMapPublic", + "LevelOfDetail": "LevelOfDetail", + "MapServerUri": "MapServerUri", + "UserToken": "UserToken" + } + } + ], + "ArcSegmentData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ArcSegmentData", + "k": "class", + "s": "classes", + "m": { + "ArcSegmentData()": "ArcSegmentData()", + "ArcSegmentData": "ArcSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "IsCounterClockwise": "IsCounterClockwise", + "IsLargeArc": "IsLargeArc", + "Point": "Point", + "RotationAngle": "RotationAngle", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "SizeX": "SizeX", + "SizeY": "SizeY", + "Type": "Type" + } + } + ], + "ArcVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ArcVisualData", + "k": "class", + "s": "classes", + "m": { + "ArcVisualData()": "ArcVisualData()", + "ArcVisualData": "ArcVisualData()", + "LeaderLine": "LeaderLine", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Slices": "Slices" + } + } + ], + "ArcVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ArcVisualDataList", + "k": "class", + "s": "classes", + "m": { + "ArcVisualDataList()": "ArcVisualDataList()", + "ArcVisualDataList": "ArcVisualDataList()" + } + } + ], + "AreaFragmentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AreaFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "AreaFragmentDescription()": "AreaFragmentDescription()", + "AreaFragmentDescription": "AreaFragmentDescription()", + "Type": "Type" + } + } + ], + "AreaFragmentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AreaFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AreaFragmentDescriptionMetadata()": "AreaFragmentDescriptionMetadata()", + "AreaFragmentDescriptionMetadata": "AreaFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AreaFragmentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AreaFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AreaFragmentDescriptionModule()": "AreaFragmentDescriptionModule()", + "AreaFragmentDescriptionModule": "AreaFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AreaSeries", + "k": "class", + "s": "classes", + "m": { + "AreaSeries()": "AreaSeries()", + "AreaSeries": "AreaSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "AreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "AreaSeriesDescription()": "AreaSeriesDescription()", + "AreaSeriesDescription": "AreaSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "AreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AreaSeriesDescriptionMetadata()": "AreaSeriesDescriptionMetadata()", + "AreaSeriesDescriptionMetadata": "AreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AreaSeriesDescriptionModule()": "AreaSeriesDescriptionModule()", + "AreaSeriesDescriptionModule": "AreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssemblyVersion": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/AssemblyVersion", + "k": "class", + "s": "classes", + "m": { + "AssemblyNamePrefix": "AssemblyNamePrefix", + "AssemblyNamePrefix_Android": "AssemblyNamePrefix_Android", + "AssemblyNamePrefix_Core": "AssemblyNamePrefix_Core", + "AssemblyNamePrefix_DotNetAndroid": "AssemblyNamePrefix_DotNetAndroid", + "AssemblyNamePrefix_DotNetIOS": "AssemblyNamePrefix_DotNetIOS", + "AssemblyNamePrefix_GTK": "AssemblyNamePrefix_GTK", + "AssemblyNamePrefix_IOS": "AssemblyNamePrefix_IOS", + "AssemblyNamePrefix_Maui": "AssemblyNamePrefix_Maui", + "AssemblyNamePrefix_UNO": "AssemblyNamePrefix_UNO", + "AssemblyNamePrefix_UWP": "AssemblyNamePrefix_UWP", + "AssemblyNamePrefix_UWPWinUI": "AssemblyNamePrefix_UWPWinUI", + "AssemblyNamePrefix_WinUI": "AssemblyNamePrefix_WinUI", + "AssemblyNamePrefix_XamarinForms": "AssemblyNamePrefix_XamarinForms", + "AssemblyNameSuffix": "AssemblyNameSuffix", + "Build": "Build", + "CompanyName": "CompanyName", + "Configuration": "Configuration", + "EndCopyrightYear": "EndCopyrightYear", + "FileVersion": "FileVersion", + "MajorMinor": "MajorMinor", + "Platform_Android": "Platform_Android", + "Platform_GTK": "Platform_GTK", + "Platform_IOS": "Platform_IOS", + "Platform_UNO": "Platform_UNO", + "Platform_UWP": "Platform_UWP", + "Platform_UWPWinUI": "Platform_UWPWinUI", + "Platform_WinUI": "Platform_WinUI", + "Platform_XamarinForms": "Platform_XamarinForms", + "Product": "Product", + "ProductTitleSuffix": "ProductTitleSuffix", + "PublicKey_WF": "PublicKey_WF", + "Revision": "Revision", + "SatelliteContractVersion": "SatelliteContractVersion", + "Version": "Version" + } + } + ], + "AssigningCategoryMarkerStyleEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningCategoryMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryMarkerStyleEventArgs()": "AssigningCategoryMarkerStyleEventArgs()", + "AssigningCategoryMarkerStyleEventArgs": "AssigningCategoryMarkerStyleEventArgs()" + } + } + ], + "AssigningCategoryMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningCategoryMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryMarkerStyleEventArgsDescription()": "AssigningCategoryMarkerStyleEventArgsDescription()", + "AssigningCategoryMarkerStyleEventArgsDescription": "AssigningCategoryMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningCategoryMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata()": "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata()", + "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata": "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningCategoryStyleEventArgsBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningCategoryStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningCategoryStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningCategoryStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryStyleEventArgsBaseDescription()": "AssigningCategoryStyleEventArgsBaseDescription()", + "AssigningCategoryStyleEventArgsBaseDescription": "AssigningCategoryStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningCategoryStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningCategoryStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryStyleEventArgsBaseDescriptionMetadata()": "AssigningCategoryStyleEventArgsBaseDescriptionMetadata()", + "AssigningCategoryStyleEventArgsBaseDescriptionMetadata": "AssigningCategoryStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningCategoryStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningCategoryStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryStyleEventArgsDescription()": "AssigningCategoryStyleEventArgsDescription()", + "AssigningCategoryStyleEventArgsDescription": "AssigningCategoryStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningCategoryStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningCategoryStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryStyleEventArgsDescriptionMetadata()": "AssigningCategoryStyleEventArgsDescriptionMetadata()", + "AssigningCategoryStyleEventArgsDescriptionMetadata": "AssigningCategoryStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningPolarMarkerStyleEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningPolarMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarMarkerStyleEventArgs()": "AssigningPolarMarkerStyleEventArgs()", + "AssigningPolarMarkerStyleEventArgs": "AssigningPolarMarkerStyleEventArgs()" + } + } + ], + "AssigningPolarMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningPolarMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarMarkerStyleEventArgsDescription()": "AssigningPolarMarkerStyleEventArgsDescription()", + "AssigningPolarMarkerStyleEventArgsDescription": "AssigningPolarMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningPolarMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningPolarMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarMarkerStyleEventArgsDescriptionMetadata()": "AssigningPolarMarkerStyleEventArgsDescriptionMetadata()", + "AssigningPolarMarkerStyleEventArgsDescriptionMetadata": "AssigningPolarMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningPolarStyleEventArgsBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningPolarStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningPolarStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningPolarStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarStyleEventArgsBaseDescription()": "AssigningPolarStyleEventArgsBaseDescription()", + "AssigningPolarStyleEventArgsBaseDescription": "AssigningPolarStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningPolarStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningPolarStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarStyleEventArgsBaseDescriptionMetadata()": "AssigningPolarStyleEventArgsBaseDescriptionMetadata()", + "AssigningPolarStyleEventArgsBaseDescriptionMetadata": "AssigningPolarStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningPolarStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningPolarStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarStyleEventArgsDescription()": "AssigningPolarStyleEventArgsDescription()", + "AssigningPolarStyleEventArgsDescription": "AssigningPolarStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningPolarStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningPolarStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarStyleEventArgsDescriptionMetadata()": "AssigningPolarStyleEventArgsDescriptionMetadata()", + "AssigningPolarStyleEventArgsDescriptionMetadata": "AssigningPolarStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningRadialMarkerStyleEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningRadialMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialMarkerStyleEventArgs()": "AssigningRadialMarkerStyleEventArgs()", + "AssigningRadialMarkerStyleEventArgs": "AssigningRadialMarkerStyleEventArgs()" + } + } + ], + "AssigningRadialMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningRadialMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialMarkerStyleEventArgsDescription()": "AssigningRadialMarkerStyleEventArgsDescription()", + "AssigningRadialMarkerStyleEventArgsDescription": "AssigningRadialMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningRadialMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningRadialMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialMarkerStyleEventArgsDescriptionMetadata()": "AssigningRadialMarkerStyleEventArgsDescriptionMetadata()", + "AssigningRadialMarkerStyleEventArgsDescriptionMetadata": "AssigningRadialMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningRadialStyleEventArgsBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningRadialStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningRadialStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningRadialStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialStyleEventArgsBaseDescription()": "AssigningRadialStyleEventArgsBaseDescription()", + "AssigningRadialStyleEventArgsBaseDescription": "AssigningRadialStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningRadialStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningRadialStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialStyleEventArgsBaseDescriptionMetadata()": "AssigningRadialStyleEventArgsBaseDescriptionMetadata()", + "AssigningRadialStyleEventArgsBaseDescriptionMetadata": "AssigningRadialStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningRadialStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningRadialStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialStyleEventArgsDescription()": "AssigningRadialStyleEventArgsDescription()", + "AssigningRadialStyleEventArgsDescription": "AssigningRadialStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningRadialStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningRadialStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialStyleEventArgsDescriptionMetadata()": "AssigningRadialStyleEventArgsDescriptionMetadata()", + "AssigningRadialStyleEventArgsDescriptionMetadata": "AssigningRadialStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningScatterMarkerStyleEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningScatterMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterMarkerStyleEventArgs()": "AssigningScatterMarkerStyleEventArgs()", + "AssigningScatterMarkerStyleEventArgs": "AssigningScatterMarkerStyleEventArgs()" + } + } + ], + "AssigningScatterMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningScatterMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterMarkerStyleEventArgsDescription()": "AssigningScatterMarkerStyleEventArgsDescription()", + "AssigningScatterMarkerStyleEventArgsDescription": "AssigningScatterMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningScatterMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningScatterMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterMarkerStyleEventArgsDescriptionMetadata()": "AssigningScatterMarkerStyleEventArgsDescriptionMetadata()", + "AssigningScatterMarkerStyleEventArgsDescriptionMetadata": "AssigningScatterMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningScatterStyleEventArgsBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningScatterStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningScatterStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningScatterStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterStyleEventArgsBaseDescription()": "AssigningScatterStyleEventArgsBaseDescription()", + "AssigningScatterStyleEventArgsBaseDescription": "AssigningScatterStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningScatterStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningScatterStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterStyleEventArgsBaseDescriptionMetadata()": "AssigningScatterStyleEventArgsBaseDescriptionMetadata()", + "AssigningScatterStyleEventArgsBaseDescriptionMetadata": "AssigningScatterStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningScatterStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningScatterStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterStyleEventArgsDescription()": "AssigningScatterStyleEventArgsDescription()", + "AssigningScatterStyleEventArgsDescription": "AssigningScatterStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningScatterStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningScatterStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterStyleEventArgsDescriptionMetadata()": "AssigningScatterStyleEventArgsDescriptionMetadata()", + "AssigningScatterStyleEventArgsDescriptionMetadata": "AssigningScatterStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningSeriesShapeStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningSeriesShapeStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningSeriesShapeStyleEventArgsBaseDescription()": "AssigningSeriesShapeStyleEventArgsBaseDescription()", + "AssigningSeriesShapeStyleEventArgsBaseDescription": "AssigningSeriesShapeStyleEventArgsBaseDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "StrokeDashArray": "StrokeDashArray", + "StrokeThickness": "StrokeThickness", + "Type": "Type" + } + } + ], + "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata()": "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata()", + "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata": "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningSeriesStyleEventArgsBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningSeriesStyleEventArgsBase", + "k": "class", + "s": "classes", + "m": { + "EndDate": "EndDate", + "EndIndex": "EndIndex", + "FadeOpacity": "FadeOpacity", + "Fill": "Fill", + "FocusHighlightingInfo": "FocusHighlightingInfo", + "GetItems": "GetItems", + "HasDateRange": "HasDateRange", + "HighlightingHandled": "HighlightingHandled", + "HighlightingInfo": "HighlightingInfo", + "IsNegativeShape": "IsNegativeShape", + "MaxAllSeriesFocusHighlightingProgress": "MaxAllSeriesFocusHighlightingProgress", + "MaxAllSeriesHighlightingProgress": "MaxAllSeriesHighlightingProgress", + "MaxAllSeriesSelectionHighlightingProgress": "MaxAllSeriesSelectionHighlightingProgress", + "Opacity": "Opacity", + "SelectionHighlightingInfo": "SelectionHighlightingInfo", + "StartDate": "StartDate", + "StartIndex": "StartIndex", + "Stroke": "Stroke", + "SumAllSeriesFocusHighlightingProgress": "SumAllSeriesFocusHighlightingProgress", + "SumAllSeriesHighlightingProgress": "SumAllSeriesHighlightingProgress", + "SumAllSeriesSelectionHighlightingProgress": "SumAllSeriesSelectionHighlightingProgress", + "TotalAllSeriesFocusHighWaterMark": "TotalAllSeriesFocusHighWaterMark", + "TotalAllSeriesFocusHighlightingProgress": "TotalAllSeriesFocusHighlightingProgress", + "TotalAllSeriesHighWaterMark": "TotalAllSeriesHighWaterMark", + "TotalAllSeriesHighlightingProgress": "TotalAllSeriesHighlightingProgress", + "TotalAllSeriesSelectionHighWaterMark": "TotalAllSeriesSelectionHighWaterMark", + "TotalAllSeriesSelectionHighlightingProgress": "TotalAllSeriesSelectionHighlightingProgress", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AssigningSeriesStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningSeriesStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningSeriesStyleEventArgsBaseDescription()": "AssigningSeriesStyleEventArgsBaseDescription()", + "AssigningSeriesStyleEventArgsBaseDescription": "AssigningSeriesStyleEventArgsBaseDescription()", + "EndDate": "EndDate", + "EndIndex": "EndIndex", + "FadeOpacity": "FadeOpacity", + "Fill": "Fill", + "FocusHighlightingInfo": "FocusHighlightingInfo", + "GetItemsRef": "GetItemsRef", + "HasDateRange": "HasDateRange", + "HighlightingHandled": "HighlightingHandled", + "HighlightingInfo": "HighlightingInfo", + "IsNegativeShape": "IsNegativeShape", + "IsThumbnail": "IsThumbnail", + "MaxAllSeriesFocusHighlightingProgress": "MaxAllSeriesFocusHighlightingProgress", + "MaxAllSeriesHighlightingProgress": "MaxAllSeriesHighlightingProgress", + "MaxAllSeriesSelectionHighlightingProgress": "MaxAllSeriesSelectionHighlightingProgress", + "Opacity": "Opacity", + "SelectionHighlightingInfo": "SelectionHighlightingInfo", + "StartDate": "StartDate", + "StartIndex": "StartIndex", + "Stroke": "Stroke", + "SumAllSeriesFocusHighlightingProgress": "SumAllSeriesFocusHighlightingProgress", + "SumAllSeriesHighlightingProgress": "SumAllSeriesHighlightingProgress", + "SumAllSeriesSelectionHighlightingProgress": "SumAllSeriesSelectionHighlightingProgress", + "TotalAllSeriesFocusHighWaterMark": "TotalAllSeriesFocusHighWaterMark", + "TotalAllSeriesFocusHighlightingProgress": "TotalAllSeriesFocusHighlightingProgress", + "TotalAllSeriesHighWaterMark": "TotalAllSeriesHighWaterMark", + "TotalAllSeriesHighlightingProgress": "TotalAllSeriesHighlightingProgress", + "TotalAllSeriesSelectionHighWaterMark": "TotalAllSeriesSelectionHighWaterMark", + "TotalAllSeriesSelectionHighlightingProgress": "TotalAllSeriesSelectionHighlightingProgress", + "Type": "Type" + } + } + ], + "AssigningSeriesStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningSeriesStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningSeriesStyleEventArgsBaseDescriptionMetadata()": "AssigningSeriesStyleEventArgsBaseDescriptionMetadata()", + "AssigningSeriesStyleEventArgsBaseDescriptionMetadata": "AssigningSeriesStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningShapeMarkerStyleEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningShapeMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeMarkerStyleEventArgs()": "AssigningShapeMarkerStyleEventArgs()", + "AssigningShapeMarkerStyleEventArgs": "AssigningShapeMarkerStyleEventArgs()" + } + } + ], + "AssigningShapeMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningShapeMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeMarkerStyleEventArgsDescription()": "AssigningShapeMarkerStyleEventArgsDescription()", + "AssigningShapeMarkerStyleEventArgsDescription": "AssigningShapeMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningShapeMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningShapeMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeMarkerStyleEventArgsDescriptionMetadata()": "AssigningShapeMarkerStyleEventArgsDescriptionMetadata()", + "AssigningShapeMarkerStyleEventArgsDescriptionMetadata": "AssigningShapeMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningShapeStyleEventArgsBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AssigningShapeStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningShapeStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningShapeStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeStyleEventArgsBaseDescription()": "AssigningShapeStyleEventArgsBaseDescription()", + "AssigningShapeStyleEventArgsBaseDescription": "AssigningShapeStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningShapeStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningShapeStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeStyleEventArgsBaseDescriptionMetadata()": "AssigningShapeStyleEventArgsBaseDescriptionMetadata()", + "AssigningShapeStyleEventArgsBaseDescriptionMetadata": "AssigningShapeStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningShapeStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningShapeStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeStyleEventArgsDescription()": "AssigningShapeStyleEventArgsDescription()", + "AssigningShapeStyleEventArgsDescription": "AssigningShapeStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningShapeStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AssigningShapeStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeStyleEventArgsDescriptionMetadata()": "AssigningShapeStyleEventArgsDescriptionMetadata()", + "AssigningShapeStyleEventArgsDescriptionMetadata": "AssigningShapeStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AsyncCompletedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AsyncCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AsyncCompletedEventArgsDescription()": "AsyncCompletedEventArgsDescription()", + "AsyncCompletedEventArgsDescription": "AsyncCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "AsyncCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AsyncCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AsyncCompletedEventArgsDescriptionMetadata()": "AsyncCompletedEventArgsDescriptionMetadata()", + "AsyncCompletedEventArgsDescriptionMetadata": "AsyncCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AsyncDataSourcePageRequest": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AsyncDataSourcePageRequest", + "k": "class", + "s": "classes", + "m": { + "AsyncDataSourcePageRequest(int, int)": "AsyncDataSourcePageRequest(int, int)", + "AsyncDataSourcePageRequest": "AsyncDataSourcePageRequest(int, int)", + "Id": "Id", + "Index": "Index", + "IsDone": "IsDone", + "RetryDelay": "RetryDelay", + "TaskHolder": "TaskHolder" + } + } + ], + "AsyncDataSourcePageTaskHolder": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AsyncDataSourcePageTaskHolder", + "k": "class", + "s": "classes", + "m": { + "AsyncDataSourcePageTaskHolder()": "AsyncDataSourcePageTaskHolder()", + "AsyncDataSourcePageTaskHolder": "AsyncDataSourcePageTaskHolder()", + "Task": "Task" + } + } + ], + "AsyncVirtualDataSourceDataProviderWorkerSettings": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AsyncVirtualDataSourceDataProviderWorkerSettings", + "k": "class", + "s": "classes", + "m": { + "AsyncVirtualDataSourceDataProviderWorkerSettings()": "AsyncVirtualDataSourceDataProviderWorkerSettings()", + "AsyncVirtualDataSourceDataProviderWorkerSettings": "AsyncVirtualDataSourceDataProviderWorkerSettings()", + "BatchCompleted": "BatchCompleted", + "ExecutionContext": "ExecutionContext", + "PageLoaded": "PageLoaded", + "PageSizeRequested": "PageSizeRequested", + "TimeoutMilliseconds": "TimeoutMilliseconds" + } + } + ], + "AsyncVirtualDataSourceProviderTaskDataHolder": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AsyncVirtualDataSourceProviderTaskDataHolder", + "k": "class", + "s": "classes", + "m": { + "AsyncVirtualDataSourceProviderTaskDataHolder()": "AsyncVirtualDataSourceProviderTaskDataHolder()", + "AsyncVirtualDataSourceProviderTaskDataHolder": "AsyncVirtualDataSourceProviderTaskDataHolder()" + } + } + ], + "AsyncVirtualDataSourceProviderWorker": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AsyncVirtualDataSourceProviderWorker", + "k": "class", + "s": "classes", + "m": { + "AsyncVirtualDataSourceProviderWorker(AsyncVirtualDataSourceDataProviderWorkerSettings)": "AsyncVirtualDataSourceProviderWorker(AsyncVirtualDataSourceDataProviderWorkerSettings)", + "AsyncVirtualDataSourceProviderWorker": "AsyncVirtualDataSourceProviderWorker(AsyncVirtualDataSourceDataProviderWorkerSettings)", + "ActualCount": "ActualCount", + "ActualPageSize": "ActualPageSize", + "ActualSchema": "ActualSchema", + "AddPageRequest(int, DataSourcePageRequestPriority)": "AddPageRequest(int, DataSourcePageRequestPriority)", + "AddPageRequest": "AddPageRequest(int, DataSourcePageRequestPriority)", + "AddPageRequestWithRetry(int, DataSourcePageRequestPriority, int)": "AddPageRequestWithRetry(int, DataSourcePageRequestPriority, int)", + "AddPageRequestWithRetry": "AddPageRequestWithRetry(int, DataSourcePageRequestPriority, int)", + "AwaitChanges()": "AwaitChanges()", + "AwaitChanges": "AwaitChanges()", + "BatchCompleted": "BatchCompleted", + "CheckAndPotentiallyWaitOnTasks(AsyncDataSourcePageRequest[])": "CheckAndPotentiallyWaitOnTasks(AsyncDataSourcePageRequest[])", + "CheckAndPotentiallyWaitOnTasks": "CheckAndPotentiallyWaitOnTasks(AsyncDataSourcePageRequest[])", + "CreateBatchRequest(TransactionState[])": "CreateBatchRequest(TransactionState[])", + "CreateBatchRequest": "CreateBatchRequest(TransactionState[])", + "DoWork()": "DoWork()", + "DoWork": "DoWork()", + "ExecutionContext": "ExecutionContext", + "GetCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)": "GetCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)", + "GetCompletedTaskData": "GetCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)", + "GetTaskDataHolder()": "GetTaskDataHolder()", + "GetTaskDataHolder": "GetTaskDataHolder()", + "GetTasksData(AsyncVirtualDataSourceProviderTaskDataHolder)": "GetTasksData(AsyncVirtualDataSourceProviderTaskDataHolder)", + "GetTasksData": "GetTasksData(AsyncVirtualDataSourceProviderTaskDataHolder)", + "InitialRetryDelay": "InitialRetryDelay", + "Initialize()": "Initialize()", + "Initialize": "Initialize()", + "IsLastPage(int)": "IsLastPage(int)", + "IsLastPage": "IsLastPage(int)", + "IsRunning": "IsRunning", + "IsShutdown": "IsShutdown", + "MakeTaskForRequest(AsyncDataSourcePageRequest, int)": "MakeTaskForRequest(AsyncDataSourcePageRequest, int)", + "MakeTaskForRequest": "MakeTaskForRequest(AsyncDataSourcePageRequest, int)", + "MaxRetryDelay": "MaxRetryDelay", + "MaxSimultaneousExecutingTasks": "MaxSimultaneousExecutingTasks", + "PageLoaded": "PageLoaded", + "PopulatedActualPageSize": "PopulatedActualPageSize", + "ProcessCompletedTask(AsyncDataSourcePageTaskHolder, int, int, AsyncVirtualDataSourceProviderTaskDataHolder)": "ProcessCompletedTask(AsyncDataSourcePageTaskHolder, int, int, AsyncVirtualDataSourceProviderTaskDataHolder)", + "ProcessCompletedTask": "ProcessCompletedTask(AsyncDataSourcePageTaskHolder, int, int, AsyncVirtualDataSourceProviderTaskDataHolder)", + "RemoveAllPageRequests()": "RemoveAllPageRequests()", + "RemoveAllPageRequests": "RemoveAllPageRequests()", + "RemoveCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)": "RemoveCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)", + "RemoveCompletedTaskData": "RemoveCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)", + "RemovePageRequest(int)": "RemovePageRequest(int)", + "RemovePageRequest": "RemovePageRequest(int)", + "RetryIndex(int, int)": "RetryIndex(int, int)", + "RetryIndex": "RetryIndex(int, int)", + "Shutdown()": "Shutdown()", + "Shutdown": "Shutdown()", + "SignalChangesOcurred()": "SignalChangesOcurred()", + "SignalChangesOcurred": "SignalChangesOcurred()", + "SyncLock": "SyncLock", + "Tasks": "Tasks" + } + } + ], + "AutoCalloutVisibilityMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/AutoCalloutVisibilityMode", + "k": "enum", + "s": "enums" + } + ], + "AutoMarginsAndAngleUpdateMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/AutoMarginsAndAngleUpdateMode", + "k": "enum", + "s": "enums" + } + ], + "AverageDirectionalIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AverageDirectionalIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "AverageDirectionalIndexIndicator()": "AverageDirectionalIndexIndicator()", + "AverageDirectionalIndexIndicator": "AverageDirectionalIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "AverageDirectionalIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AverageDirectionalIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "AverageDirectionalIndexIndicatorDescription()": "AverageDirectionalIndexIndicatorDescription()", + "AverageDirectionalIndexIndicatorDescription": "AverageDirectionalIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "AverageDirectionalIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AverageDirectionalIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AverageDirectionalIndexIndicatorDescriptionMetadata()": "AverageDirectionalIndexIndicatorDescriptionMetadata()", + "AverageDirectionalIndexIndicatorDescriptionMetadata": "AverageDirectionalIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AverageDirectionalIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AverageDirectionalIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AverageDirectionalIndexIndicatorDescriptionModule()": "AverageDirectionalIndexIndicatorDescriptionModule()", + "AverageDirectionalIndexIndicatorDescriptionModule": "AverageDirectionalIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AverageSummaryCalculator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AverageSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "AverageSummaryCalculator()": "AverageSummaryCalculator()", + "AverageSummaryCalculator": "AverageSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "AverageTrueRangeIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AverageTrueRangeIndicator", + "k": "class", + "s": "classes", + "m": { + "AverageTrueRangeIndicator()": "AverageTrueRangeIndicator()", + "AverageTrueRangeIndicator": "AverageTrueRangeIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "AverageTrueRangeIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AverageTrueRangeIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "AverageTrueRangeIndicatorDescription()": "AverageTrueRangeIndicatorDescription()", + "AverageTrueRangeIndicatorDescription": "AverageTrueRangeIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "AverageTrueRangeIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AverageTrueRangeIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AverageTrueRangeIndicatorDescriptionMetadata()": "AverageTrueRangeIndicatorDescriptionMetadata()", + "AverageTrueRangeIndicatorDescriptionMetadata": "AverageTrueRangeIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AverageTrueRangeIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AverageTrueRangeIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AverageTrueRangeIndicatorDescriptionModule()": "AverageTrueRangeIndicatorDescriptionModule()", + "AverageTrueRangeIndicatorDescriptionModule": "AverageTrueRangeIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Axis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Axis", + "k": "class", + "s": "classes", + "m": { + "ActualMajorStroke": "ActualMajorStroke", + "ActualMajorStrokeProperty": "ActualMajorStrokeProperty", + "ActualMinorStroke": "ActualMinorStroke", + "ActualMinorStrokeProperty": "ActualMinorStrokeProperty", + "ActualStroke": "ActualStroke", + "ActualStrokeProperty": "ActualStrokeProperty", + "Annotations": "Annotations", + "AreAnnotationsVisible": "AreAnnotationsVisible", + "AreAnnotationsVisibleProperty": "AreAnnotationsVisibleProperty", + "AreLabelsVisible": "AreLabelsVisible", + "AreLabelsVisibleProperty": "AreLabelsVisibleProperty", + "AreTickMarksVisible": "AreTickMarksVisible", + "AreTickMarksVisibleProperty": "AreTickMarksVisibleProperty", + "CompanionAxisCrossingAxis": "CompanionAxisCrossingAxis", + "CompanionAxisCrossingAxisProperty": "CompanionAxisCrossingAxisProperty", + "CompanionAxisCrossingValue": "CompanionAxisCrossingValue", + "CompanionAxisCrossingValueProperty": "CompanionAxisCrossingValueProperty", + "CompanionAxisEnabled": "CompanionAxisEnabled", + "CompanionAxisEnabledProperty": "CompanionAxisEnabledProperty", + "CompanionAxisIsInverted": "CompanionAxisIsInverted", + "CompanionAxisIsInvertedProperty": "CompanionAxisIsInvertedProperty", + "CompanionAxisLabelAngle": "CompanionAxisLabelAngle", + "CompanionAxisLabelAngleProperty": "CompanionAxisLabelAngleProperty", + "CompanionAxisLabelColor": "CompanionAxisLabelColor", + "CompanionAxisLabelColorProperty": "CompanionAxisLabelColorProperty", + "CompanionAxisLabelExtent": "CompanionAxisLabelExtent", + "CompanionAxisLabelExtentProperty": "CompanionAxisLabelExtentProperty", + "CompanionAxisLabelHorizontalAlignment": "CompanionAxisLabelHorizontalAlignment", + "CompanionAxisLabelHorizontalAlignmentProperty": "CompanionAxisLabelHorizontalAlignmentProperty", + "CompanionAxisLabelLocation": "CompanionAxisLabelLocation", + "CompanionAxisLabelLocationProperty": "CompanionAxisLabelLocationProperty", + "CompanionAxisLabelOpposite": "CompanionAxisLabelOpposite", + "CompanionAxisLabelOppositeProperty": "CompanionAxisLabelOppositeProperty", + "CompanionAxisLabelVerticalAlignment": "CompanionAxisLabelVerticalAlignment", + "CompanionAxisLabelVerticalAlignmentProperty": "CompanionAxisLabelVerticalAlignmentProperty", + "CompanionAxisLabelVisible": "CompanionAxisLabelVisible", + "CompanionAxisLabelVisibleProperty": "CompanionAxisLabelVisibleProperty", + "CompanionAxisMajorStroke": "CompanionAxisMajorStroke", + "CompanionAxisMajorStrokeProperty": "CompanionAxisMajorStrokeProperty", + "CompanionAxisMajorStrokeThickness": "CompanionAxisMajorStrokeThickness", + "CompanionAxisMajorStrokeThicknessProperty": "CompanionAxisMajorStrokeThicknessProperty", + "CompanionAxisMinExtent": "CompanionAxisMinExtent", + "CompanionAxisMinExtentProperty": "CompanionAxisMinExtentProperty", + "CompanionAxisMinorStroke": "CompanionAxisMinorStroke", + "CompanionAxisMinorStrokeProperty": "CompanionAxisMinorStrokeProperty", + "CompanionAxisMinorStrokeThickness": "CompanionAxisMinorStrokeThickness", + "CompanionAxisMinorStrokeThicknessProperty": "CompanionAxisMinorStrokeThicknessProperty", + "CompanionAxisShouldAutoTruncateAnnotations": "CompanionAxisShouldAutoTruncateAnnotations", + "CompanionAxisShouldAutoTruncateAnnotationsProperty": "CompanionAxisShouldAutoTruncateAnnotationsProperty", + "CompanionAxisShouldAvoidAnnotationCollisions": "CompanionAxisShouldAvoidAnnotationCollisions", + "CompanionAxisShouldAvoidAnnotationCollisionsProperty": "CompanionAxisShouldAvoidAnnotationCollisionsProperty", + "CompanionAxisShouldKeepAnnotationsInView": "CompanionAxisShouldKeepAnnotationsInView", + "CompanionAxisShouldKeepAnnotationsInViewProperty": "CompanionAxisShouldKeepAnnotationsInViewProperty", + "CompanionAxisStrip": "CompanionAxisStrip", + "CompanionAxisStripProperty": "CompanionAxisStripProperty", + "CompanionAxisStroke": "CompanionAxisStroke", + "CompanionAxisStrokeProperty": "CompanionAxisStrokeProperty", + "CompanionAxisStrokeThickness": "CompanionAxisStrokeThickness", + "CompanionAxisStrokeThicknessProperty": "CompanionAxisStrokeThicknessProperty", + "CompanionAxisSyncronizedWithPrimaryAxis": "CompanionAxisSyncronizedWithPrimaryAxis", + "CompanionAxisSyncronizedWithPrimaryAxisProperty": "CompanionAxisSyncronizedWithPrimaryAxisProperty", + "CompanionAxisTickLength": "CompanionAxisTickLength", + "CompanionAxisTickLengthProperty": "CompanionAxisTickLengthProperty", + "CompanionAxisTickStroke": "CompanionAxisTickStroke", + "CompanionAxisTickStrokeProperty": "CompanionAxisTickStrokeProperty", + "CompanionAxisTickStrokeThickness": "CompanionAxisTickStrokeThickness", + "CompanionAxisTickStrokeThicknessProperty": "CompanionAxisTickStrokeThicknessProperty", + "CompanionAxisTitle": "CompanionAxisTitle", + "CompanionAxisTitleProperty": "CompanionAxisTitleProperty", + "CrossingAxis": "CrossingAxis", + "CrossingAxisProperty": "CrossingAxisProperty", + "CrossingValue": "CrossingValue", + "CrossingValueProperty": "CrossingValueProperty", + "DeregisterSeries(Series)": "DeregisterSeries(Series)", + "DeregisterSeries": "DeregisterSeries(Series)", + "EnhancedIntervalMinimumCharacters": "EnhancedIntervalMinimumCharacters", + "EnhancedIntervalMinimumCharactersProperty": "EnhancedIntervalMinimumCharactersProperty", + "EnhancedIntervalPreferMoreCategoryLabels": "EnhancedIntervalPreferMoreCategoryLabels", + "EnhancedIntervalPreferMoreCategoryLabelsProperty": "EnhancedIntervalPreferMoreCategoryLabelsProperty", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "GetFullRange()": "GetFullRange()", + "GetFullRange": "GetFullRange()", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GetMemberPathValue(string)": "GetMemberPathValue(string)", + "GetMemberPathValue": "GetMemberPathValue(string)", + "GetScaledValue(double, ScalerParams)": "GetScaledValue(double, ScalerParams)", + "GetScaledValue": "GetScaledValue(double, ScalerParams)", + "GetUnscaledValue(double, ScalerParams)": "GetUnscaledValue(double, ScalerParams)", + "GetUnscaledValue": "GetUnscaledValue(double, ScalerParams)", + "GetValueLabel(double)": "GetValueLabel(double)", + "GetValueLabel": "GetValueLabel(double)", + "IsAngular": "IsAngular", + "IsCategory": "IsCategory", + "IsCategoryDateTime": "IsCategoryDateTime", + "IsCompanionAxis": "IsCompanionAxis", + "IsCompanionAxisProperty": "IsCompanionAxisProperty", + "IsContinuous": "IsContinuous", + "IsDateTime": "IsDateTime", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHorizontal": "IsHorizontal", + "IsHorizontalProperty": "IsHorizontalProperty", + "IsInverted": "IsInverted", + "IsInvertedProperty": "IsInvertedProperty", + "IsLabelPanelVisible": "IsLabelPanelVisible", + "IsLabelPanelVisibleProperty": "IsLabelPanelVisibleProperty", + "IsNumeric": "IsNumeric", + "IsOrdinal": "IsOrdinal", + "IsPiecewise": "IsPiecewise", + "IsPrimaryAxis": "IsPrimaryAxis", + "IsPrimaryAxisProperty": "IsPrimaryAxisProperty", + "IsRadial": "IsRadial", + "IsSorting": "IsSorting", + "IsVertical": "IsVertical", + "Label": "Label", + "LabelAngle": "LabelAngle", + "LabelAngleProperty": "LabelAngleProperty", + "LabelBottomMargin": "LabelBottomMargin", + "LabelBottomMarginProperty": "LabelBottomMarginProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelHorizontalAlignmentProperty": "LabelHorizontalAlignmentProperty", + "LabelLeftMargin": "LabelLeftMargin", + "LabelLeftMarginProperty": "LabelLeftMarginProperty", + "LabelLocation": "LabelLocation", + "LabelLocationProperty": "LabelLocationProperty", + "LabelMaximumExtent": "LabelMaximumExtent", + "LabelMaximumExtentPercentage": "LabelMaximumExtentPercentage", + "LabelMaximumExtentPercentageProperty": "LabelMaximumExtentPercentageProperty", + "LabelMaximumExtentProperty": "LabelMaximumExtentProperty", + "LabelProperty": "LabelProperty", + "LabelRightMargin": "LabelRightMargin", + "LabelRightMarginProperty": "LabelRightMarginProperty", + "LabelShowFirstLabel": "LabelShowFirstLabel", + "LabelShowFirstLabelProperty": "LabelShowFirstLabelProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "LabelTopMargin": "LabelTopMargin", + "LabelTopMarginProperty": "LabelTopMarginProperty", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVerticalAlignmentProperty": "LabelVerticalAlignmentProperty", + "LabelVisibility": "LabelVisibility", + "LabelVisibilityProperty": "LabelVisibilityProperty", + "MajorStroke": "MajorStroke", + "MajorStrokeDashArray": "MajorStrokeDashArray", + "MajorStrokeDashArrayProperty": "MajorStrokeDashArrayProperty", + "MajorStrokeProperty": "MajorStrokeProperty", + "MajorStrokeThickness": "MajorStrokeThickness", + "MajorStrokeThicknessProperty": "MajorStrokeThicknessProperty", + "MinorStroke": "MinorStroke", + "MinorStrokeDashArray": "MinorStrokeDashArray", + "MinorStrokeDashArrayProperty": "MinorStrokeDashArrayProperty", + "MinorStrokeProperty": "MinorStrokeProperty", + "MinorStrokeThickness": "MinorStrokeThickness", + "MinorStrokeThicknessProperty": "MinorStrokeThicknessProperty", + "OnFormatLabel(AxisFormatLabelEventArgs)": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRangeChanged(AxisRangeChangedEventArgs)": "OnRangeChanged(AxisRangeChangedEventArgs)", + "OnRangeChanged": "OnRangeChanged(AxisRangeChangedEventArgs)", + "OnRenderRequested(RenderRequestedEventArgs)": "OnRenderRequested(RenderRequestedEventArgs)", + "OnRenderRequested": "OnRenderRequested(RenderRequestedEventArgs)", + "RegisterSeries(Series)": "RegisterSeries(Series)", + "RegisterSeries": "RegisterSeries(Series)", + "RenderAxis()": "RenderAxis()", + "RenderAxis": "RenderAxis()", + "ResetCachedEnhancedInterval()": "ResetCachedEnhancedInterval()", + "ResetCachedEnhancedInterval": "ResetCachedEnhancedInterval()", + "ScaleValue(double)": "ScaleValue(double)", + "ScaleValue": "ScaleValue(double)", + "SeriesViewer": "SeriesViewer", + "SeriesViewerProperty": "SeriesViewerProperty", + "ShouldAutoTruncateAnnotations": "ShouldAutoTruncateAnnotations", + "ShouldAutoTruncateAnnotationsProperty": "ShouldAutoTruncateAnnotationsProperty", + "ShouldAvoidAnnotationCollisions": "ShouldAvoidAnnotationCollisions", + "ShouldAvoidAnnotationCollisionsProperty": "ShouldAvoidAnnotationCollisionsProperty", + "ShouldKeepAnnotationsInView": "ShouldKeepAnnotationsInView", + "ShouldKeepAnnotationsInViewProperty": "ShouldKeepAnnotationsInViewProperty", + "Strip": "Strip", + "StripProperty": "StripProperty", + "Stroke": "Stroke", + "StrokeDashArray": "StrokeDashArray", + "StrokeDashArrayProperty": "StrokeDashArrayProperty", + "StrokeProperty": "StrokeProperty", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "TickLength": "TickLength", + "TickLengthProperty": "TickLengthProperty", + "TickStroke": "TickStroke", + "TickStrokeDashArray": "TickStrokeDashArray", + "TickStrokeDashArrayProperty": "TickStrokeDashArrayProperty", + "TickStrokeProperty": "TickStrokeProperty", + "TickStrokeThickness": "TickStrokeThickness", + "TickStrokeThicknessProperty": "TickStrokeThicknessProperty", + "Title": "Title", + "TitleAngle": "TitleAngle", + "TitleAngleProperty": "TitleAngleProperty", + "TitleBottomMargin": "TitleBottomMargin", + "TitleBottomMarginProperty": "TitleBottomMarginProperty", + "TitleFontFamily": "TitleFontFamily", + "TitleFontFamilyProperty": "TitleFontFamilyProperty", + "TitleFontSize": "TitleFontSize", + "TitleFontSizeProperty": "TitleFontSizeProperty", + "TitleFontStyle": "TitleFontStyle", + "TitleFontStyleProperty": "TitleFontStyleProperty", + "TitleFontWeight": "TitleFontWeight", + "TitleFontWeightProperty": "TitleFontWeightProperty", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleHorizontalAlignmentProperty": "TitleHorizontalAlignmentProperty", + "TitleLeftMargin": "TitleLeftMargin", + "TitleLeftMarginProperty": "TitleLeftMarginProperty", + "TitleLocation": "TitleLocation", + "TitleLocationProperty": "TitleLocationProperty", + "TitleMaximumExtent": "TitleMaximumExtent", + "TitleMaximumExtentPercentage": "TitleMaximumExtentPercentage", + "TitleMaximumExtentPercentageProperty": "TitleMaximumExtentPercentageProperty", + "TitleMaximumExtentProperty": "TitleMaximumExtentProperty", + "TitlePosition": "TitlePosition", + "TitlePositionProperty": "TitlePositionProperty", + "TitleProperty": "TitleProperty", + "TitleRightMargin": "TitleRightMargin", + "TitleRightMarginProperty": "TitleRightMarginProperty", + "TitleShowFirstLabel": "TitleShowFirstLabel", + "TitleShowFirstLabelProperty": "TitleShowFirstLabelProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTopMargin": "TitleTopMargin", + "TitleTopMarginProperty": "TitleTopMarginProperty", + "TitleVerticalAlignment": "TitleVerticalAlignment", + "TitleVerticalAlignmentProperty": "TitleVerticalAlignmentProperty", + "TitleVisibility": "TitleVisibility", + "TitleVisibilityProperty": "TitleVisibilityProperty", + "UpdateRange()": "UpdateRange()", + "UpdateRange": "UpdateRange()", + "UpdateRange(bool)": "UpdateRange(bool)", + "UseEnhancedIntervalManagement": "UseEnhancedIntervalManagement", + "UseEnhancedIntervalManagementProperty": "UseEnhancedIntervalManagementProperty", + "UsePerLabelHeightMeasurement": "UsePerLabelHeightMeasurement", + "UsePerLabelHeightMeasurementProperty": "UsePerLabelHeightMeasurementProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisAngleLabelMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/AxisAngleLabelMode", + "k": "enum", + "s": "enums" + } + ], + "AxisAnnotation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisAnnotation", + "k": "class", + "s": "classes", + "m": { + "AxisAnnotation()": "AxisAnnotation()", + "AxisAnnotation": "AxisAnnotation()", + "Background": "Background", + "BackgroundCornerRadius": "BackgroundCornerRadius", + "BackgroundPaddingBottom": "BackgroundPaddingBottom", + "BackgroundPaddingLeft": "BackgroundPaddingLeft", + "BackgroundPaddingRight": "BackgroundPaddingRight", + "BackgroundPaddingTop": "BackgroundPaddingTop", + "BadgeBackground": "BadgeBackground", + "BadgeCornerRadius": "BadgeCornerRadius", + "BadgeImagePath": "BadgeImagePath", + "BadgeMargin": "BadgeMargin", + "BadgeOutline": "BadgeOutline", + "BadgeOutlineThickness": "BadgeOutlineThickness", + "BadgeSize": "BadgeSize", + "IsBadgeEnabled": "IsBadgeEnabled", + "IsPillShaped": "IsPillShaped", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "OnFormatLabel(AxisFormatLabelEventArgs)": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Outline": "Outline", + "ResetCachedExtent()": "ResetCachedExtent()", + "ResetCachedExtent": "ResetCachedExtent()", + "ResolveLabelValue()": "ResolveLabelValue()", + "ResolveLabelValue": "ResolveLabelValue()", + "StrokeThickness": "StrokeThickness", + "Text": "Text", + "TextColor": "TextColor", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisAnnotationCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisAnnotationCollection", + "k": "class", + "s": "classes", + "m": { + "AxisAnnotationCollection()": "AxisAnnotationCollection()", + "AxisAnnotationCollection": "AxisAnnotationCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisAnnotationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "AxisAnnotationDescription()": "AxisAnnotationDescription()", + "AxisAnnotationDescription": "AxisAnnotationDescription()", + "Background": "Background", + "BackgroundCornerRadius": "BackgroundCornerRadius", + "BackgroundPaddingBottom": "BackgroundPaddingBottom", + "BackgroundPaddingLeft": "BackgroundPaddingLeft", + "BackgroundPaddingRight": "BackgroundPaddingRight", + "BackgroundPaddingTop": "BackgroundPaddingTop", + "BadgeBackground": "BadgeBackground", + "BadgeCornerRadius": "BadgeCornerRadius", + "BadgeImagePath": "BadgeImagePath", + "BadgeMargin": "BadgeMargin", + "BadgeOutline": "BadgeOutline", + "BadgeOutlineThickness": "BadgeOutlineThickness", + "BadgeSize": "BadgeSize", + "FormatLabelRef": "FormatLabelRef", + "IsBadgeEnabled": "IsBadgeEnabled", + "IsPillShaped": "IsPillShaped", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "Outline": "Outline", + "StrokeThickness": "StrokeThickness", + "Text": "Text", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value" + } + } + ], + "AxisAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisAnnotationDescriptionMetadata()": "AxisAnnotationDescriptionMetadata()", + "AxisAnnotationDescriptionMetadata": "AxisAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisCollection", + "k": "class", + "s": "classes", + "m": { + "AxisCollection()": "AxisCollection()", + "AxisCollection": "AxisCollection()", + "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)": "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionAfterChanged": "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)": "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionBeforeChanged": "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisDescription", + "k": "class", + "s": "classes", + "m": { + "AxisDescription()": "AxisDescription()", + "AxisDescription": "AxisDescription()", + "ActualMajorStroke": "ActualMajorStroke", + "ActualMinorStroke": "ActualMinorStroke", + "ActualStroke": "ActualStroke", + "Annotations": "Annotations", + "AreAnnotationsVisible": "AreAnnotationsVisible", + "AreLabelsVisible": "AreLabelsVisible", + "AreTickMarksVisible": "AreTickMarksVisible", + "CoercionMethodsRef": "CoercionMethodsRef", + "CompanionAxisCrossingAxisRef": "CompanionAxisCrossingAxisRef", + "CompanionAxisCrossingValue": "CompanionAxisCrossingValue", + "CompanionAxisEnabled": "CompanionAxisEnabled", + "CompanionAxisIsInverted": "CompanionAxisIsInverted", + "CompanionAxisLabelAngle": "CompanionAxisLabelAngle", + "CompanionAxisLabelColor": "CompanionAxisLabelColor", + "CompanionAxisLabelExtent": "CompanionAxisLabelExtent", + "CompanionAxisLabelHorizontalAlignment": "CompanionAxisLabelHorizontalAlignment", + "CompanionAxisLabelLocation": "CompanionAxisLabelLocation", + "CompanionAxisLabelOpposite": "CompanionAxisLabelOpposite", + "CompanionAxisLabelVerticalAlignment": "CompanionAxisLabelVerticalAlignment", + "CompanionAxisLabelVisible": "CompanionAxisLabelVisible", + "CompanionAxisMajorStroke": "CompanionAxisMajorStroke", + "CompanionAxisMajorStrokeThickness": "CompanionAxisMajorStrokeThickness", + "CompanionAxisMinExtent": "CompanionAxisMinExtent", + "CompanionAxisMinorStroke": "CompanionAxisMinorStroke", + "CompanionAxisMinorStrokeThickness": "CompanionAxisMinorStrokeThickness", + "CompanionAxisShouldAutoTruncateAnnotations": "CompanionAxisShouldAutoTruncateAnnotations", + "CompanionAxisShouldAvoidAnnotationCollisions": "CompanionAxisShouldAvoidAnnotationCollisions", + "CompanionAxisShouldKeepAnnotationsInView": "CompanionAxisShouldKeepAnnotationsInView", + "CompanionAxisStrip": "CompanionAxisStrip", + "CompanionAxisStroke": "CompanionAxisStroke", + "CompanionAxisStrokeThickness": "CompanionAxisStrokeThickness", + "CompanionAxisSyncronizedWithPrimaryAxis": "CompanionAxisSyncronizedWithPrimaryAxis", + "CompanionAxisTickLength": "CompanionAxisTickLength", + "CompanionAxisTickStroke": "CompanionAxisTickStroke", + "CompanionAxisTickStrokeThickness": "CompanionAxisTickStrokeThickness", + "CompanionAxisTitle": "CompanionAxisTitle", + "CrossingAxisRef": "CrossingAxisRef", + "CrossingValue": "CrossingValue", + "EnhancedIntervalMinimumCharacters": "EnhancedIntervalMinimumCharacters", + "EnhancedIntervalPreferMoreCategoryLabels": "EnhancedIntervalPreferMoreCategoryLabels", + "ExpectFunctions": "ExpectFunctions", + "FormatLabelRef": "FormatLabelRef", + "IsCompanionAxis": "IsCompanionAxis", + "IsDisabled": "IsDisabled", + "IsInverted": "IsInverted", + "IsLabelPanelVisible": "IsLabelPanelVisible", + "Label": "Label", + "LabelAngle": "LabelAngle", + "LabelBottomMargin": "LabelBottomMargin", + "LabelExtent": "LabelExtent", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelLeftMargin": "LabelLeftMargin", + "LabelLocation": "LabelLocation", + "LabelMaximumExtent": "LabelMaximumExtent", + "LabelMaximumExtentPercentage": "LabelMaximumExtentPercentage", + "LabelRightMargin": "LabelRightMargin", + "LabelShowFirstLabel": "LabelShowFirstLabel", + "LabelTextColor": "LabelTextColor", + "LabelTopMargin": "LabelTopMargin", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVisibility": "LabelVisibility", + "MajorStroke": "MajorStroke", + "MajorStrokeDashArray": "MajorStrokeDashArray", + "MajorStrokeThickness": "MajorStrokeThickness", + "MinorStroke": "MinorStroke", + "MinorStrokeDashArray": "MinorStrokeDashArray", + "MinorStrokeThickness": "MinorStrokeThickness", + "RangeChangedRef": "RangeChangedRef", + "RenderRequestedRef": "RenderRequestedRef", + "ShouldAutoTruncateAnnotations": "ShouldAutoTruncateAnnotations", + "ShouldAvoidAnnotationCollisions": "ShouldAvoidAnnotationCollisions", + "ShouldKeepAnnotationsInView": "ShouldKeepAnnotationsInView", + "Strip": "Strip", + "Stroke": "Stroke", + "StrokeDashArray": "StrokeDashArray", + "StrokeThickness": "StrokeThickness", + "TickLength": "TickLength", + "TickStroke": "TickStroke", + "TickStrokeDashArray": "TickStrokeDashArray", + "TickStrokeThickness": "TickStrokeThickness", + "Title": "Title", + "TitleAngle": "TitleAngle", + "TitleBottomMargin": "TitleBottomMargin", + "TitleExtent": "TitleExtent", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleLeftMargin": "TitleLeftMargin", + "TitleLocation": "TitleLocation", + "TitleMaximumExtent": "TitleMaximumExtent", + "TitleMaximumExtentPercentage": "TitleMaximumExtentPercentage", + "TitlePosition": "TitlePosition", + "TitleRightMargin": "TitleRightMargin", + "TitleShowFirstLabel": "TitleShowFirstLabel", + "TitleTextColor": "TitleTextColor", + "TitleTopMargin": "TitleTopMargin", + "TitleVerticalAlignment": "TitleVerticalAlignment", + "Type": "Type", + "UseEnhancedIntervalManagement": "UseEnhancedIntervalManagement", + "UsePerLabelHeightMeasurement": "UsePerLabelHeightMeasurement" + } + } + ], + "AxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisDescriptionMetadata()": "AxisDescriptionMetadata()", + "AxisDescriptionMetadata": "AxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisExtentType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/AxisExtentType", + "k": "enum", + "s": "enums" + } + ], + "AxisFormatLabelEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisFormatLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "AxisFormatLabelEventArgs()": "AxisFormatLabelEventArgs()", + "AxisFormatLabelEventArgs": "AxisFormatLabelEventArgs()", + "Item": "Item", + "Label": "Label", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisLabelsLocation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/AxisLabelsLocation", + "k": "enum", + "s": "enums" + } + ], + "AxisLabelVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "AxisLabelVisualData()": "AxisLabelVisualData()", + "AxisLabelVisualData": "AxisLabelVisualData()", + "ANCHOR_BOT_LEFT": "ANCHOR_BOT_LEFT", + "ANCHOR_BOT_RIGHT": "ANCHOR_BOT_RIGHT", + "ANCHOR_CENTER": "ANCHOR_CENTER", + "ANCHOR_END": "ANCHOR_END", + "ANCHOR_START": "ANCHOR_START", + "ANCHOR_TOP_LEFT": "ANCHOR_TOP_LEFT", + "ANCHOR_TOP_RIGHT": "ANCHOR_TOP_RIGHT", + "Anchors": "Anchors", + "Appearance": "Appearance", + "ChartPosition": "ChartPosition", + "LabelPosition": "LabelPosition", + "LabelValue": "LabelValue", + "PanelPosition": "PanelPosition", + "Position": "Position", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Size": "Size" + } + } + ], + "AxisLabelVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisLabelVisualDataList", + "k": "class", + "s": "classes", + "m": { + "AxisLabelVisualDataList()": "AxisLabelVisualDataList()", + "AxisLabelVisualDataList": "AxisLabelVisualDataList()" + } + } + ], + "AxisMatcher": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisMatcher", + "k": "class", + "s": "classes", + "m": { + "AxisMatcher()": "AxisMatcher()", + "AxisMatcher": "AxisMatcher()", + "AxisType": "AxisType", + "Index": "Index", + "MemberPath": "MemberPath", + "MemberPathType": "MemberPathType", + "Name": "Name", + "Title": "Title", + "TypedIndex": "TypedIndex", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisMatcherDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisMatcherDescription", + "k": "class", + "s": "classes", + "m": { + "AxisMatcherDescription()": "AxisMatcherDescription()", + "AxisMatcherDescription": "AxisMatcherDescription()", + "AxisType": "AxisType", + "Index": "Index", + "MemberPath": "MemberPath", + "MemberPathType": "MemberPathType", + "Title": "Title", + "Type": "Type", + "TypedIndex": "TypedIndex" + } + } + ], + "AxisMatcherDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisMatcherDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisMatcherDescriptionMetadata()": "AxisMatcherDescriptionMetadata()", + "AxisMatcherDescriptionMetadata": "AxisMatcherDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisMatcherDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisMatcherDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AxisMatcherDescriptionModule()": "AxisMatcherDescriptionModule()", + "AxisMatcherDescriptionModule": "AxisMatcherDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisMouseEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisMouseEventArgs", + "k": "class", + "s": "classes", + "m": { + "Axis": "Axis", + "AxisDateValue": "AxisDateValue", + "AxisValue": "AxisValue", + "ChartPosition": "ChartPosition", + "Label": "Label", + "LabelContext": "LabelContext", + "PlotAreaPosition": "PlotAreaPosition", + "WorldPosition": "WorldPosition", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisMouseEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisMouseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AxisMouseEventArgsDescription()": "AxisMouseEventArgsDescription()", + "AxisMouseEventArgsDescription": "AxisMouseEventArgsDescription()", + "AxisDateValue": "AxisDateValue", + "AxisRef": "AxisRef", + "AxisValue": "AxisValue", + "ChartPosition": "ChartPosition", + "Label": "Label", + "LabelContextRef": "LabelContextRef", + "PlotAreaPosition": "PlotAreaPosition", + "Type": "Type", + "WorldPosition": "WorldPosition" + } + } + ], + "AxisMouseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisMouseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisMouseEventArgsDescriptionMetadata()": "AxisMouseEventArgsDescriptionMetadata()", + "AxisMouseEventArgsDescriptionMetadata": "AxisMouseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisRangeBufferMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/AxisRangeBufferMode", + "k": "enum", + "s": "enums" + } + ], + "AxisRangeChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisRangeChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AxisRangeChangedEventArgsDescription()": "AxisRangeChangedEventArgsDescription()", + "AxisRangeChangedEventArgsDescription": "AxisRangeChangedEventArgsDescription()", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "OldMaximumValue": "OldMaximumValue", + "OldMinimumValue": "OldMinimumValue", + "Type": "Type" + } + } + ], + "AxisRangeChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AxisRangeChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisRangeChangedEventArgsDescriptionMetadata()": "AxisRangeChangedEventArgsDescriptionMetadata()", + "AxisRangeChangedEventArgsDescriptionMetadata": "AxisRangeChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisTitlePosition": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/AxisTitlePosition", + "k": "enum", + "s": "enums" + } + ], + "AxisVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisVisualData", + "k": "class", + "s": "classes", + "m": { + "AxisVisualData()": "AxisVisualData()", + "AxisVisualData": "AxisVisualData()", + "AnnotationBackings": "AnnotationBackings", + "AnnotationBadges": "AnnotationBadges", + "AxisLine": "AxisLine", + "Labels": "Labels", + "LabelsPlotArea": "LabelsPlotArea", + "LabelsViewport": "LabelsViewport", + "MajorLines": "MajorLines", + "MinorLines": "MinorLines", + "Name": "Name", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Strips": "Strips", + "TickMarks": "TickMarks", + "TickMarksLength": "TickMarksLength", + "Title": "Title", + "Type": "Type", + "Viewport": "Viewport" + } + } + ], + "AxisVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/AxisVisualDataList", + "k": "class", + "s": "classes", + "m": { + "AxisVisualDataList()": "AxisVisualDataList()", + "AxisVisualDataList": "AxisVisualDataList()" + } + } + ], + "AzureMapsImagery": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/AzureMapsImagery", + "k": "class", + "s": "classes", + "m": { + "AzureMapsImagery()": "AzureMapsImagery()", + "AzureMapsImagery": "AzureMapsImagery()", + "ApiKey": "ApiKey", + "ApiVersion": "ApiVersion", + "CultureName": "CultureName", + "ImageryStyle": "ImageryStyle", + "LocalizedView": "LocalizedView", + "Timestamp": "Timestamp" + } + } + ], + "AzureMapsImageryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AzureMapsImageryDescription", + "k": "class", + "s": "classes", + "m": { + "AzureMapsImageryDescription()": "AzureMapsImageryDescription()", + "AzureMapsImageryDescription": "AzureMapsImageryDescription()", + "ApiKey": "ApiKey", + "ApiVersion": "ApiVersion", + "CultureName": "CultureName", + "ImageryStyle": "ImageryStyle", + "LocalizedView": "LocalizedView", + "Timestamp": "Timestamp", + "Type": "Type" + } + } + ], + "AzureMapsImageryDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AzureMapsImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AzureMapsImageryDescriptionMetadata()": "AzureMapsImageryDescriptionMetadata()", + "AzureMapsImageryDescriptionMetadata": "AzureMapsImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AzureMapsImageryDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AzureMapsImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AzureMapsImageryDescriptionModule()": "AzureMapsImageryDescriptionModule()", + "AzureMapsImageryDescriptionModule": "AzureMapsImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AzureMapsImageryStyle": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/enums/AzureMapsImageryStyle", + "k": "enum", + "s": "enums" + } + ], + "AzureMapsTileSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/AzureMapsTileSource", + "k": "class", + "s": "classes", + "m": { + "AzureMapsTileSource()": "AzureMapsTileSource()", + "AzureMapsTileSource": "AzureMapsTileSource()", + "ApiKey": "ApiKey", + "ApiVersion": "ApiVersion", + "CultureName": "CultureName", + "LocalizedView": "LocalizedView", + "TilesetId": "TilesetId", + "Timestamp": "Timestamp" + } + } + ], + "BarFragmentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BarFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "BarFragmentDescription()": "BarFragmentDescription()", + "BarFragmentDescription": "BarFragmentDescription()", + "Type": "Type" + } + } + ], + "BarFragmentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BarFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BarFragmentDescriptionMetadata()": "BarFragmentDescriptionMetadata()", + "BarFragmentDescriptionMetadata": "BarFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BarFragmentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BarFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BarFragmentDescriptionModule()": "BarFragmentDescriptionModule()", + "BarFragmentDescriptionModule": "BarFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BarSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/BarSeries", + "k": "class", + "s": "classes", + "m": { + "BarSeries()": "BarSeries()", + "BarSeries": "BarSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "BarSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BarSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "BarSeriesDescription()": "BarSeriesDescription()", + "BarSeriesDescription": "BarSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "BarSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BarSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BarSeriesDescriptionMetadata()": "BarSeriesDescriptionMetadata()", + "BarSeriesDescriptionMetadata": "BarSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BarSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BarSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BarSeriesDescriptionModule()": "BarSeriesDescriptionModule()", + "BarSeriesDescriptionModule": "BarSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BaseControlTheme": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/BaseControlTheme", + "k": "enum", + "s": "enums" + } + ], + "BaseDataSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BaseDataSource", + "k": "class", + "s": "classes", + "m": { + "AcceptPendingCommit(int)": "AcceptPendingCommit(int)", + "AcceptPendingCommit": "AcceptPendingCommit(int)", + "AcceptPendingTransaction(int)": "AcceptPendingTransaction(int)", + "AcceptPendingTransaction": "AcceptPendingTransaction(int)", + "ActualCount": "ActualCount", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "CanCommit": "CanCommit", + "CanRedo": "CanRedo", + "CanUndo": "CanUndo", + "CancelEdits()": "CancelEdits()", + "CancelEdits": "CancelEdits()", + "ClearPinnedRows()": "ClearPinnedRows()", + "ClearPinnedRows": "ClearPinnedRows()", + "Clone()": "Clone()", + "Clone": "Clone()", + "CloneProperties(IDataSource)": "CloneProperties(IDataSource)", + "CloneProperties": "CloneProperties(IDataSource)", + "CommitEdits(bool)": "CommitEdits(bool)", + "CommitEdits": "CommitEdits(bool)", + "DeferAutoRefresh": "DeferAutoRefresh", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FirstVisibleIndexRequested": "FirstVisibleIndexRequested", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetAggregatedChanges(int)": "GetAggregatedChanges(int)", + "GetAggregatedChanges": "GetAggregatedChanges(int)", + "GetIsRowExpandedAtIndex(int)": "GetIsRowExpandedAtIndex(int)", + "GetIsRowExpandedAtIndex": "GetIsRowExpandedAtIndex(int)", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemProperty(object, string)": "GetItemProperty(object, string)", + "GetItemProperty": "GetItemProperty(object, string)", + "GetItemPropertyAtIndex(int, string)": "GetItemPropertyAtIndex(int, string)", + "GetItemPropertyAtIndex": "GetItemPropertyAtIndex(int, string)", + "GetMainValuePath(DataSourceRowType)": "GetMainValuePath(DataSourceRowType)", + "GetMainValuePath": "GetMainValuePath(DataSourceRowType)", + "GetRootSummaryResults()": "GetRootSummaryResults()", + "GetRootSummaryResults": "GetRootSummaryResults()", + "GetRootSummaryRowCount()": "GetRootSummaryRowCount()", + "GetRootSummaryRowCount": "GetRootSummaryRowCount()", + "GetRowLevel(int)": "GetRowLevel(int)", + "GetRowLevel": "GetRowLevel(int)", + "GetRowType(int)": "GetRowType(int)", + "GetRowType": "GetRowType(int)", + "GetSectionSummaryResults(int)": "GetSectionSummaryResults(int)", + "GetSectionSummaryResults": "GetSectionSummaryResults(int)", + "GetStickyRowPriority(int)": "GetStickyRowPriority(int)", + "GetStickyRowPriority": "GetStickyRowPriority(int)", + "GetStickyRows()": "GetStickyRows()", + "GetStickyRows": "GetStickyRows()", + "GetStickyRowsInRange(int, int)": "GetStickyRowsInRange(int, int)", + "GetStickyRowsInRange": "GetStickyRowsInRange(int, int)", + "GetTransactionErrorByID(int)": "GetTransactionErrorByID(int)", + "GetTransactionErrorByID": "GetTransactionErrorByID(int)", + "GetTransactionErrorByKey(object[], string)": "GetTransactionErrorByKey(object[], string)", + "GetTransactionErrorByKey": "GetTransactionErrorByKey(object[], string)", + "GetTransactionID(object[], string)": "GetTransactionID(object[], string)", + "GetTransactionID": "GetTransactionID(object[], string)", + "GroupDescriptions": "GroupDescriptions", + "HasAdd(object)": "HasAdd(object)", + "HasAdd": "HasAdd(object)", + "HasDelete(object[])": "HasDelete(object[])", + "HasDelete": "HasDelete(object[])", + "HasEdit(object[], string)": "HasEdit(object[], string)", + "HasEdit": "HasEdit(object[], string)", + "IncludeSummaryRowsInSection": "IncludeSummaryRowsInSection", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsBatchingEnabled": "IsBatchingEnabled", + "IsExclusivelySticky(int)": "IsExclusivelySticky(int)", + "IsExclusivelySticky": "IsExclusivelySticky(int)", + "IsFilteringSupported": "IsFilteringSupported", + "IsFilteringSupportedOverride": "IsFilteringSupportedOverride", + "IsGroupingSupported": "IsGroupingSupported", + "IsGroupingSupportedOverride": "IsGroupingSupportedOverride", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsPendingCommit(int)": "IsPendingCommit(int)", + "IsPendingCommit": "IsPendingCommit(int)", + "IsPendingTransaction(int)": "IsPendingTransaction(int)", + "IsPendingTransaction": "IsPendingTransaction(int)", + "IsPlaceholderItem(int)": "IsPlaceholderItem(int)", + "IsPlaceholderItem": "IsPlaceholderItem(int)", + "IsReadOnly": "IsReadOnly", + "IsRowPinned(int)": "IsRowPinned(int)", + "IsRowPinned": "IsRowPinned(int)", + "IsRowSpanning(DataSourceRowType)": "IsRowSpanning(DataSourceRowType)", + "IsRowSpanning": "IsRowSpanning(DataSourceRowType)", + "IsSectionCollapsable": "IsSectionCollapsable", + "IsSectionContentVisible": "IsSectionContentVisible", + "IsSectionExpandedDefault": "IsSectionExpandedDefault", + "IsSectionHeaderNormalRow": "IsSectionHeaderNormalRow", + "IsSectionSummaryRowsAtBottom": "IsSectionSummaryRowsAtBottom", + "IsSortingSupported": "IsSortingSupported", + "IsSortingSupportedOverride": "IsSortingSupportedOverride", + "IsVirtual": "IsVirtual", + "LastVisibleIndexRequested": "LastVisibleIndexRequested", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "OnDataCommitted(DataSourceDataCommittedEventArgs)": "OnDataCommitted(DataSourceDataCommittedEventArgs)", + "OnDataCommitted": "OnDataCommitted(DataSourceDataCommittedEventArgs)", + "OnPropertiesRequestedChanged(object, DataSourcePropertiesRequestedChangedEventArgs)": "OnPropertiesRequestedChanged(object, DataSourcePropertiesRequestedChangedEventArgs)", + "OnPropertiesRequestedChanged": "OnPropertiesRequestedChanged(object, DataSourcePropertiesRequestedChangedEventArgs)", + "OnPropertyChanged(PropertyChangedEventArgs)": "OnPropertyChanged(PropertyChangedEventArgs)", + "OnPropertyChanged": "OnPropertyChanged(PropertyChangedEventArgs)", + "OnRootSummariesChanged(object, DataSourceRootSummariesChangedEventArgs)": "OnRootSummariesChanged(object, DataSourceRootSummariesChangedEventArgs)", + "OnRootSummariesChanged": "OnRootSummariesChanged(object, DataSourceRootSummariesChangedEventArgs)", + "OnRowExpansionChanged(DataSourceRowExpansionChangedEventArgs)": "OnRowExpansionChanged(DataSourceRowExpansionChangedEventArgs)", + "OnRowExpansionChanged": "OnRowExpansionChanged(DataSourceRowExpansionChangedEventArgs)", + "OnSchemaChanged(DataSourceSchemaChangedEventArgs)": "OnSchemaChanged(DataSourceSchemaChangedEventArgs)", + "OnSchemaChanged": "OnSchemaChanged(DataSourceSchemaChangedEventArgs)", + "PinRow(object[])": "PinRow(object[])", + "PinRow": "PinRow(object[])", + "PrimaryKey": "PrimaryKey", + "PropertiesRequested": "PropertiesRequested", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Redo()": "Redo()", + "Redo": "Redo()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RejectPendingCommit(int)": "RejectPendingCommit(int)", + "RejectPendingCommit": "RejectPendingCommit(int)", + "RejectPendingTransaction(int)": "RejectPendingTransaction(int)", + "RejectPendingTransaction": "RejectPendingTransaction(int)", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "RemoveItemByKey(object[])": "RemoveItemByKey(object[])", + "RemoveItemByKey": "RemoveItemByKey(object[])", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "ResolvedDataProvider": "ResolvedDataProvider", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SectionHeaderDisplayMode": "SectionHeaderDisplayMode", + "SetIsRowExpandedAtIndex(int, bool)": "SetIsRowExpandedAtIndex(int, bool)", + "SetIsRowExpandedAtIndex": "SetIsRowExpandedAtIndex(int, bool)", + "SetTransactionError(int, string)": "SetTransactionError(int, string)", + "SetTransactionError": "SetTransactionError(int, string)", + "ShouldEmitSectionFooters": "ShouldEmitSectionFooters", + "ShouldEmitSectionHeaders": "ShouldEmitSectionHeaders", + "ShouldEmitShiftedRows": "ShouldEmitShiftedRows", + "ShouldEmitSummaryRows": "ShouldEmitSummaryRows", + "SortDescriptions": "SortDescriptions", + "SourceName": "SourceName", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "Undo()": "Undo()", + "Undo": "Undo()", + "UnpinRow(object[])": "UnpinRow(object[])", + "UnpinRow": "UnpinRow(object[])", + "UpdateNotifier": "UpdateNotifier", + "UpdatePropertyAtKey(object[], string, object, bool)": "UpdatePropertyAtKey(object[], string, object, bool)", + "UpdatePropertyAtKey": "UpdatePropertyAtKey(object[], string, object, bool)" + } + } + ], + "BaseDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BaseDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "BaseDataSourceDescription()": "BaseDataSourceDescription()", + "BaseDataSourceDescription": "BaseDataSourceDescription()", + "ActualCount": "ActualCount", + "DeferAutoRefresh": "DeferAutoRefresh", + "FirstVisibleIndexRequested": "FirstVisibleIndexRequested", + "IncludeSummaryRowsInSection": "IncludeSummaryRowsInSection", + "IsBatchingEnabled": "IsBatchingEnabled", + "IsReadOnly": "IsReadOnly", + "IsSectionCollapsable": "IsSectionCollapsable", + "IsSectionContentVisible": "IsSectionContentVisible", + "IsSectionExpandedDefault": "IsSectionExpandedDefault", + "IsSectionHeaderNormalRow": "IsSectionHeaderNormalRow", + "IsSectionSummaryRowsAtBottom": "IsSectionSummaryRowsAtBottom", + "LastVisibleIndexRequested": "LastVisibleIndexRequested", + "PrimaryKey": "PrimaryKey", + "PropertiesRequested": "PropertiesRequested", + "PropertiesRequestedChangedRef": "PropertiesRequestedChangedRef", + "RootSummariesChangedRef": "RootSummariesChangedRef", + "RowExpansionChangedRef": "RowExpansionChangedRef", + "SchemaChangedRef": "SchemaChangedRef", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SectionHeaderDisplayMode": "SectionHeaderDisplayMode", + "ShouldEmitSectionFooters": "ShouldEmitSectionFooters", + "ShouldEmitSectionHeaders": "ShouldEmitSectionHeaders", + "ShouldEmitShiftedRows": "ShouldEmitShiftedRows", + "ShouldEmitSummaryRows": "ShouldEmitSummaryRows", + "SourceName": "SourceName", + "Type": "Type" + } + } + ], + "BaseDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BaseDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BaseDataSourceDescriptionMetadata()": "BaseDataSourceDescriptionMetadata()", + "BaseDataSourceDescriptionMetadata": "BaseDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BaseGenericDataSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BaseGenericDataSource", + "k": "class", + "s": "classes", + "m": { + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "GroupDescriptions": "GroupDescriptions", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "BaseGenericDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BaseGenericDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "BaseGenericDataSourceDescription()": "BaseGenericDataSourceDescription()", + "BaseGenericDataSourceDescription": "BaseGenericDataSourceDescription()", + "FilterExpressions": "FilterExpressions", + "GroupDescriptions": "GroupDescriptions", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "Type": "Type" + } + } + ], + "BaseGenericDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BaseGenericDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BaseGenericDataSourceDescriptionMetadata()": "BaseGenericDataSourceDescriptionMetadata()", + "BaseGenericDataSourceDescriptionMetadata": "BaseGenericDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BaseTransactionService": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BaseTransactionService", + "k": "class", + "s": "classes", + "m": { + "BaseTransactionService(Action, Func, IEqualityComparer)": "BaseTransactionService(Action, Func, IEqualityComparer)", + "BaseTransactionService": "BaseTransactionService(Action, Func, IEqualityComparer)", + "AcceptCommit(int)": "AcceptCommit(int)", + "AcceptCommit": "AcceptCommit(int)", + "Add(Transaction, bool)": "Add(Transaction, bool)", + "Add": "Add(Transaction, bool)", + "CanRedo": "CanRedo", + "CanUndo": "CanUndo", + "Clear(bool, object)": "Clear(bool, object)", + "Clear": "Clear(bool, object)", + "ClearPending(int)": "ClearPending(int)", + "ClearPending": "ClearPending(int)", + "Clone": "Clone", + "Commit(bool, bool)": "Commit(bool, bool)", + "Commit": "Commit(bool, bool)", + "EndPending(bool)": "EndPending(bool)", + "EndPending": "EndPending(bool)", + "GetAggregatedChanges(int)": "GetAggregatedChanges(int)", + "GetAggregatedChanges": "GetAggregatedChanges(int)", + "GetPendingCommit(int)": "GetPendingCommit(int)", + "GetPendingCommit": "GetPendingCommit(int)", + "GetPendingErrors()": "GetPendingErrors()", + "GetPendingErrors": "GetPendingErrors()", + "GetPendingTransaction(int)": "GetPendingTransaction(int)", + "GetPendingTransaction": "GetPendingTransaction(int)", + "GetPendingTransactions(object)": "GetPendingTransactions(object)", + "GetPendingTransactions": "GetPendingTransactions(object)", + "GetState(object)": "GetState(object)", + "GetState": "GetState(object)", + "IsEnabled": "IsEnabled", + "IsEnabledPropertyName": "IsEnabledPropertyName", + "IsPending": "IsPending", + "Merge": "Merge", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "OnStateChanged(TransactionEvent, object)": "OnStateChanged(TransactionEvent, object)", + "OnStateChanged": "OnStateChanged(TransactionEvent, object)", + "PendingStates": "PendingStates", + "PendingTransactions": "PendingTransactions", + "Redo()": "Redo()", + "Redo": "Redo()", + "RejectCommit(int)": "RejectCommit(int)", + "RejectCommit": "RejectCommit(int)", + "StartPending()": "StartPending()", + "StartPending": "StartPending()", + "Undo()": "Undo()", + "Undo": "Undo()", + "UpdateState(Dictionary, Transaction)": "UpdateState(Dictionary, Transaction)", + "UpdateState": "UpdateState(Dictionary, Transaction)" + } + } + ], + "BezierSegmentData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BezierSegmentData", + "k": "class", + "s": "classes", + "m": { + "BezierSegmentData()": "BezierSegmentData()", + "BezierSegmentData": "BezierSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "BingMapsImageryStyle": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/enums/BingMapsImageryStyle", + "k": "enum", + "s": "enums" + } + ], + "BingMapsMapImagery": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/BingMapsMapImagery", + "k": "class", + "s": "classes", + "m": { + "BingMapsMapImagery()": "BingMapsMapImagery()", + "BingMapsMapImagery": "BingMapsMapImagery()", + "ActualBingImageryRestUri": "ActualBingImageryRestUri", + "ActualSubDomains": "ActualSubDomains", + "ActualTilePath": "ActualTilePath", + "ApiKey": "ApiKey", + "BingImageryRestUri": "BingImageryRestUri", + "CultureName": "CultureName", + "ImageryStyle": "ImageryStyle", + "IsDeferredLoad": "IsDeferredLoad", + "IsInitialized": "IsInitialized", + "RequestMapSettings()": "RequestMapSettings()", + "RequestMapSettings": "RequestMapSettings()", + "SubDomains": "SubDomains", + "TilePath": "TilePath" + } + } + ], + "BingMapsMapImageryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BingMapsMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "BingMapsMapImageryDescription()": "BingMapsMapImageryDescription()", + "BingMapsMapImageryDescription": "BingMapsMapImageryDescription()", + "ActualBingImageryRestUri": "ActualBingImageryRestUri", + "ActualSubDomains": "ActualSubDomains", + "ActualTilePath": "ActualTilePath", + "ApiKey": "ApiKey", + "BingImageryRestUri": "BingImageryRestUri", + "CultureName": "CultureName", + "ImageryStyle": "ImageryStyle", + "IsDeferredLoad": "IsDeferredLoad", + "IsInitialized": "IsInitialized", + "SubDomains": "SubDomains", + "TilePath": "TilePath", + "Type": "Type" + } + } + ], + "BingMapsMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BingMapsMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BingMapsMapImageryDescriptionMetadata()": "BingMapsMapImageryDescriptionMetadata()", + "BingMapsMapImageryDescriptionMetadata": "BingMapsMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BingMapsMapImageryDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BingMapsMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BingMapsMapImageryDescriptionModule()": "BingMapsMapImageryDescriptionModule()", + "BingMapsMapImageryDescriptionModule": "BingMapsMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BingMapsTileSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BingMapsTileSource", + "k": "class", + "s": "classes", + "m": { + "BingMapsTileSource()": "BingMapsTileSource()", + "BingMapsTileSource": "BingMapsTileSource()", + "BingMapsTileSource(string, ObservableCollection)": "BingMapsTileSource(string, ObservableCollection)", + "CultureName": "CultureName", + "SubDomains": "SubDomains", + "TilePath": "TilePath" + } + } + ], + "BingResourceSet": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/BingResourceSet", + "k": "class", + "s": "classes", + "m": { + "BingResourceSet()": "BingResourceSet()", + "BingResourceSet": "BingResourceSet()", + "Resources": "Resources" + } + } + ], + "BingResponse": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/BingResponse", + "k": "class", + "s": "classes", + "m": { + "BingResponse()": "BingResponse()", + "BingResponse": "BingResponse()", + "ResourceSets": "ResourceSets" + } + } + ], + "BitmapUtilities": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/BitmapUtilities", + "k": "class", + "s": "classes", + "m": { + "GetPixelAt(object, int, int)": "GetPixelAt(object, int, int)", + "GetPixelAt": "GetPixelAt(object, int, int)" + } + } + ], + "BollingerBandsOverlay": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/BollingerBandsOverlay", + "k": "class", + "s": "classes", + "m": { + "BollingerBandsOverlay()": "BollingerBandsOverlay()", + "BollingerBandsOverlay": "BollingerBandsOverlay()", + "Multiplier": "Multiplier", + "MultiplierProperty": "MultiplierProperty", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "BollingerBandsOverlayDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BollingerBandsOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "BollingerBandsOverlayDescription()": "BollingerBandsOverlayDescription()", + "BollingerBandsOverlayDescription": "BollingerBandsOverlayDescription()", + "Multiplier": "Multiplier", + "Period": "Period", + "Type": "Type" + } + } + ], + "BollingerBandsOverlayDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BollingerBandsOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BollingerBandsOverlayDescriptionMetadata()": "BollingerBandsOverlayDescriptionMetadata()", + "BollingerBandsOverlayDescriptionMetadata": "BollingerBandsOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BollingerBandsOverlayDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BollingerBandsOverlayDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BollingerBandsOverlayDescriptionModule()": "BollingerBandsOverlayDescriptionModule()", + "BollingerBandsOverlayDescriptionModule": "BollingerBandsOverlayDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BollingerBandWidthIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/BollingerBandWidthIndicator", + "k": "class", + "s": "classes", + "m": { + "BollingerBandWidthIndicator()": "BollingerBandWidthIndicator()", + "BollingerBandWidthIndicator": "BollingerBandWidthIndicator()", + "Multiplier": "Multiplier", + "MultiplierProperty": "MultiplierProperty", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "BollingerBandWidthIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BollingerBandWidthIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "BollingerBandWidthIndicatorDescription()": "BollingerBandWidthIndicatorDescription()", + "BollingerBandWidthIndicatorDescription": "BollingerBandWidthIndicatorDescription()", + "Multiplier": "Multiplier", + "Period": "Period", + "Type": "Type" + } + } + ], + "BollingerBandWidthIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BollingerBandWidthIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BollingerBandWidthIndicatorDescriptionMetadata()": "BollingerBandWidthIndicatorDescriptionMetadata()", + "BollingerBandWidthIndicatorDescriptionMetadata": "BollingerBandWidthIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BollingerBandWidthIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BollingerBandWidthIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BollingerBandWidthIndicatorDescriptionModule()": "BollingerBandWidthIndicatorDescriptionModule()", + "BollingerBandWidthIndicatorDescriptionModule": "BollingerBandWidthIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BoxCollisionGeometry": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BoxCollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "BoxCollisionGeometry(CollisionRect)": "BoxCollisionGeometry(CollisionRect)", + "BoxCollisionGeometry": "BoxCollisionGeometry(CollisionRect)", + "BoundingBox": "BoundingBox", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "Type": "Type" + } + } + ], + "BoxesCollisionGeometry": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BoxesCollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "BoxesCollisionGeometry(CollisionRect[])": "BoxesCollisionGeometry(CollisionRect[])", + "BoxesCollisionGeometry": "BoxesCollisionGeometry(CollisionRect[])", + "BoundingBox": "BoundingBox", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "Type": "Type" + } + } + ], + "BreakEvenDataRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BreakEvenDataRule", + "k": "class", + "s": "classes", + "m": { + "BreakEvenDataRule()": "BreakEvenDataRule()", + "BreakEvenDataRule": "BreakEvenDataRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)" + } + } + ], + "Brush": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/Brush", + "k": "class", + "s": "classes", + "m": { + "Brush()": "Brush()", + "Brush": "Brush()" + } + } + ], + "BrushAppearanceData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BrushAppearanceData", + "k": "class", + "s": "classes", + "m": { + "BrushAppearanceData()": "BrushAppearanceData()", + "BrushAppearanceData": "BrushAppearanceData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "BrushCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BrushCollection", + "k": "class", + "s": "classes", + "m": { + "BrushCollection()": "BrushCollection()", + "BrushCollection": "BrushCollection()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "InterpolationMode": "InterpolationMode", + "this[int]": "this[int]", + "SelectRandom()": "SelectRandom()", + "SelectRandom": "SelectRandom()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "BrushCollectionHelper": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BrushCollectionHelper", + "k": "class", + "s": "classes", + "m": { + "BrushCollectionHelper()": "BrushCollectionHelper()", + "BrushCollectionHelper": "BrushCollectionHelper()", + "CreateFromString(string)": "CreateFromString(string)", + "CreateFromString": "CreateFromString(string)" + } + } + ], + "BrushDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BrushDescription", + "k": "class", + "s": "classes", + "m": { + "BrushDescription()": "BrushDescription()", + "BrushDescription": "BrushDescription()", + "Value": "Value" + } + } + ], + "BrushScale": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/BrushScale", + "k": "class", + "s": "classes", + "m": { + "BrushScale()": "BrushScale()", + "BrushScale": "BrushScale()", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "GetBrush(int)": "GetBrush(int)", + "GetBrush": "GetBrush(int)", + "NotifySeries()": "NotifySeries()", + "NotifySeries": "NotifySeries()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "BrushScaleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BrushScaleDescription", + "k": "class", + "s": "classes", + "m": { + "BrushScaleDescription()": "BrushScaleDescription()", + "BrushScaleDescription": "BrushScaleDescription()", + "Brushes": "Brushes", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type" + } + } + ], + "BrushScaleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BrushScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BrushScaleDescriptionMetadata()": "BrushScaleDescriptionMetadata()", + "BrushScaleDescriptionMetadata": "BrushScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BrushScaleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BrushScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BrushScaleDescriptionModule()": "BrushScaleDescriptionModule()", + "BrushScaleDescriptionModule": "BrushScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BrushSelectionMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/BrushSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "BubbleSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/BubbleSeries", + "k": "class", + "s": "classes", + "m": { + "BubbleSeries()": "BubbleSeries()", + "BubbleSeries": "BubbleSeries()", + "FillMemberAsLegendLabel": "FillMemberAsLegendLabel", + "FillMemberAsLegendLabelProperty": "FillMemberAsLegendLabelProperty", + "FillMemberAsLegendUnit": "FillMemberAsLegendUnit", + "FillMemberAsLegendUnitProperty": "FillMemberAsLegendUnitProperty", + "FillMemberPath": "FillMemberPath", + "FillMemberPathProperty": "FillMemberPathProperty", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "FillScaleUseGlobalValuesProperty": "FillScaleUseGlobalValuesProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "MarkerBrushBrightness": "MarkerBrushBrightness", + "MarkerBrushBrightnessProperty": "MarkerBrushBrightnessProperty", + "MarkerOutlineBrightness": "MarkerOutlineBrightness", + "MarkerOutlineBrightnessProperty": "MarkerOutlineBrightnessProperty", + "MarkerOutlineUsesFillScale": "MarkerOutlineUsesFillScale", + "MarkerOutlineUsesFillScaleProperty": "MarkerOutlineUsesFillScaleProperty", + "RadiusMemberAsLegendLabel": "RadiusMemberAsLegendLabel", + "RadiusMemberAsLegendLabelProperty": "RadiusMemberAsLegendLabelProperty", + "RadiusMemberAsLegendUnit": "RadiusMemberAsLegendUnit", + "RadiusMemberAsLegendUnitProperty": "RadiusMemberAsLegendUnitProperty", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusMemberPathProperty": "RadiusMemberPathProperty", + "RadiusScale": "RadiusScale", + "RadiusScaleProperty": "RadiusScaleProperty", + "RadiusScaleUseGlobalValues": "RadiusScaleUseGlobalValues", + "RadiusScaleUseGlobalValuesProperty": "RadiusScaleUseGlobalValuesProperty" + } + } + ], + "BubbleSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BubbleSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "BubbleSeriesDescription()": "BubbleSeriesDescription()", + "BubbleSeriesDescription": "BubbleSeriesDescription()", + "FillMemberAsLegendLabel": "FillMemberAsLegendLabel", + "FillMemberAsLegendUnit": "FillMemberAsLegendUnit", + "FillMemberPath": "FillMemberPath", + "FillScale": "FillScale", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "LabelMemberPath": "LabelMemberPath", + "MarkerBrushBrightness": "MarkerBrushBrightness", + "MarkerOutlineBrightness": "MarkerOutlineBrightness", + "MarkerOutlineUsesFillScale": "MarkerOutlineUsesFillScale", + "RadiusMemberAsLegendLabel": "RadiusMemberAsLegendLabel", + "RadiusMemberAsLegendUnit": "RadiusMemberAsLegendUnit", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusScale": "RadiusScale", + "RadiusScaleUseGlobalValues": "RadiusScaleUseGlobalValues", + "Type": "Type" + } + } + ], + "BubbleSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BubbleSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BubbleSeriesDescriptionMetadata()": "BubbleSeriesDescriptionMetadata()", + "BubbleSeriesDescriptionMetadata": "BubbleSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BubbleSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BubbleSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BubbleSeriesDescriptionModule()": "BubbleSeriesDescriptionModule()", + "BubbleSeriesDescriptionModule": "BubbleSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BulletGraphCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BulletGraphCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BulletGraphCoreDescriptionModule()": "BulletGraphCoreDescriptionModule()", + "BulletGraphCoreDescriptionModule": "BulletGraphCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BulletGraphDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BulletGraphDescription", + "k": "class", + "s": "classes", + "m": { + "BulletGraphDescription()": "BulletGraphDescription()", + "BulletGraphDescription": "BulletGraphDescription()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AlignLabelRef": "AlignLabelRef", + "Background": "Background", + "BackingBrush": "BackingBrush", + "BackingInnerExtent": "BackingInnerExtent", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOutline": "BackingOutline", + "BackingStrokeThickness": "BackingStrokeThickness", + "Font": "Font", + "FontBrush": "FontBrush", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "Height": "Height", + "HighlightValue": "HighlightValue", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueOpacity": "HighlightValueOpacity", + "Interval": "Interval", + "IsScaleInverted": "IsScaleInverted", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInterval": "LabelInterval", + "LabelsPostInitial": "LabelsPostInitial", + "LabelsPreTerminal": "LabelsPreTerminal", + "LabelsVisible": "LabelsVisible", + "MaximumValue": "MaximumValue", + "MergeViewports": "MergeViewports", + "MinimumValue": "MinimumValue", + "MinorTickBrush": "MinorTickBrush", + "MinorTickCount": "MinorTickCount", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "Orientation": "Orientation", + "PixelScalingRatio": "PixelScalingRatio", + "RangeBrushes": "RangeBrushes", + "RangeInnerExtent": "RangeInnerExtent", + "RangeOuterExtent": "RangeOuterExtent", + "RangeOutlines": "RangeOutlines", + "Ranges": "Ranges", + "ScaleBackgroundBrush": "ScaleBackgroundBrush", + "ScaleBackgroundOutline": "ScaleBackgroundOutline", + "ScaleBackgroundThickness": "ScaleBackgroundThickness", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleStartExtent": "ScaleStartExtent", + "ShowToolTip": "ShowToolTip", + "ShowToolTipTimeout": "ShowToolTipTimeout", + "TargetValue": "TargetValue", + "TargetValueBreadth": "TargetValueBreadth", + "TargetValueBrush": "TargetValueBrush", + "TargetValueInnerExtent": "TargetValueInnerExtent", + "TargetValueName": "TargetValueName", + "TargetValueOuterExtent": "TargetValueOuterExtent", + "TargetValueOutline": "TargetValueOutline", + "TargetValueStrokeThickness": "TargetValueStrokeThickness", + "TickBrush": "TickBrush", + "TickEndExtent": "TickEndExtent", + "TickStartExtent": "TickStartExtent", + "TickStrokeThickness": "TickStrokeThickness", + "TicksPostInitial": "TicksPostInitial", + "TicksPreTerminal": "TicksPreTerminal", + "TransitionDuration": "TransitionDuration", + "TransitionProgress": "TransitionProgress", + "Type": "Type", + "Value": "Value", + "ValueBrush": "ValueBrush", + "ValueInnerExtent": "ValueInnerExtent", + "ValueName": "ValueName", + "ValueOuterExtent": "ValueOuterExtent", + "ValueOutline": "ValueOutline", + "ValueStrokeThickness": "ValueStrokeThickness", + "Width": "Width" + } + } + ], + "BulletGraphDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BulletGraphDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BulletGraphDescriptionMetadata()": "BulletGraphDescriptionMetadata()", + "BulletGraphDescriptionMetadata": "BulletGraphDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BulletGraphDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/BulletGraphDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BulletGraphDescriptionModule()": "BulletGraphDescriptionModule()", + "BulletGraphDescriptionModule": "BulletGraphDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BulletGraphTargetValueVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/BulletGraphTargetValueVisualData", + "k": "class", + "s": "classes", + "m": { + "BulletGraphTargetValueVisualData()": "BulletGraphTargetValueVisualData()", + "BulletGraphTargetValueVisualData": "BulletGraphTargetValueVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type", + "Value": "Value" + } + } + ], + "BulletGraphVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/BulletGraphVisualData", + "k": "class", + "s": "classes", + "m": { + "BulletGraphVisualData()": "BulletGraphVisualData()", + "BulletGraphVisualData": "BulletGraphVisualData()", + "HighlightValue": "HighlightValue", + "HighlightValuePath": "HighlightValuePath", + "ScaleBackgroundPath": "ScaleBackgroundPath", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TargetValue": "TargetValue", + "TargetValuePath": "TargetValuePath", + "Value": "Value", + "ValuePath": "ValuePath" + } + } + ], + "ButtonClickEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ButtonClickEventArgs", + "k": "class", + "s": "classes", + "m": { + "ButtonClickEventArgs()": "ButtonClickEventArgs()", + "ButtonClickEventArgs": "ButtonClickEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ButtonClickEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ButtonClickEventArgsDescription()": "ButtonClickEventArgsDescription()", + "ButtonClickEventArgsDescription": "ButtonClickEventArgsDescription()", + "Type": "Type" + } + } + ], + "ButtonClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ButtonClickEventArgsDescriptionMetadata()": "ButtonClickEventArgsDescriptionMetadata()", + "ButtonClickEventArgsDescriptionMetadata": "ButtonClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonDescription", + "k": "class", + "s": "classes", + "m": { + "ButtonDescription()": "ButtonDescription()", + "ButtonDescription": "ButtonDescription()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualDensity": "ActualDensity", + "ActualDisableRipple": "ActualDisableRipple", + "ActualDisabledBackgroundColor": "ActualDisabledBackgroundColor", + "ActualDisabledBorderColor": "ActualDisabledBorderColor", + "ActualDisabledElevation": "ActualDisabledElevation", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualElevationMode": "ActualElevationMode", + "ActualFocusBackgroundColor": "ActualFocusBackgroundColor", + "ActualFocusElevation": "ActualFocusElevation", + "ActualFocusTextColor": "ActualFocusTextColor", + "ActualHoverBackgroundColor": "ActualHoverBackgroundColor", + "ActualHoverElevation": "ActualHoverElevation", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualRestingElevation": "ActualRestingElevation", + "ActualRippleColor": "ActualRippleColor", + "ActualTextColor": "ActualTextColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "AlignItems": "AlignItems", + "AriaLabel": "AriaLabel", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderColor": "BorderColor", + "BorderWidth": "BorderWidth", + "ClickTunneling": "ClickTunneling", + "ClickedRef": "ClickedRef", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "Density": "Density", + "DisableHover": "DisableHover", + "DisablePointer": "DisablePointer", + "DisableRipple": "DisableRipple", + "DisableTransitions": "DisableTransitions", + "Disabled": "Disabled", + "DisabledBackgroundColor": "DisabledBackgroundColor", + "DisabledBorderColor": "DisabledBorderColor", + "DisabledElevation": "DisabledElevation", + "DisabledTextColor": "DisabledTextColor", + "Display": "Display", + "DisplayType": "DisplayType", + "ElevationMode": "ElevationMode", + "FabBackgroundColor": "FabBackgroundColor", + "FabBorderColor": "FabBorderColor", + "FabBorderWidth": "FabBorderWidth", + "FabCornerRadiusBottomLeft": "FabCornerRadiusBottomLeft", + "FabCornerRadiusBottomRight": "FabCornerRadiusBottomRight", + "FabCornerRadiusTopLeft": "FabCornerRadiusTopLeft", + "FabCornerRadiusTopRight": "FabCornerRadiusTopRight", + "FabDisabledBackgroundColor": "FabDisabledBackgroundColor", + "FabDisabledBorderColor": "FabDisabledBorderColor", + "FabDisabledElevation": "FabDisabledElevation", + "FabDisabledTextColor": "FabDisabledTextColor", + "FabFocusBackgroundColor": "FabFocusBackgroundColor", + "FabFocusElevation": "FabFocusElevation", + "FabFocusTextColor": "FabFocusTextColor", + "FabHoverBackgroundColor": "FabHoverBackgroundColor", + "FabHoverElevation": "FabHoverElevation", + "FabHoverTextColor": "FabHoverTextColor", + "FabRestingElevation": "FabRestingElevation", + "FabRippleColor": "FabRippleColor", + "FabTextColor": "FabTextColor", + "FillAvailableSpace": "FillAvailableSpace", + "FlatBackgroundColor": "FlatBackgroundColor", + "FlatBorderColor": "FlatBorderColor", + "FlatBorderWidth": "FlatBorderWidth", + "FlatCornerRadiusBottomLeft": "FlatCornerRadiusBottomLeft", + "FlatCornerRadiusBottomRight": "FlatCornerRadiusBottomRight", + "FlatCornerRadiusTopLeft": "FlatCornerRadiusTopLeft", + "FlatCornerRadiusTopRight": "FlatCornerRadiusTopRight", + "FlatDisabledBackgroundColor": "FlatDisabledBackgroundColor", + "FlatDisabledBorderColor": "FlatDisabledBorderColor", + "FlatDisabledElevation": "FlatDisabledElevation", + "FlatDisabledTextColor": "FlatDisabledTextColor", + "FlatFocusBackgroundColor": "FlatFocusBackgroundColor", + "FlatFocusElevation": "FlatFocusElevation", + "FlatFocusTextColor": "FlatFocusTextColor", + "FlatHoverBackgroundColor": "FlatHoverBackgroundColor", + "FlatHoverElevation": "FlatHoverElevation", + "FlatHoverTextColor": "FlatHoverTextColor", + "FlatRestingElevation": "FlatRestingElevation", + "FlatRippleColor": "FlatRippleColor", + "FlatTextColor": "FlatTextColor", + "FlexDirection": "FlexDirection", + "FlexGrow": "FlexGrow", + "FocusBackgroundColor": "FocusBackgroundColor", + "FocusElevation": "FocusElevation", + "FocusTextColor": "FocusTextColor", + "Focused": "Focused", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "GotFocusRef": "GotFocusRef", + "HorizontalContentAlignment": "HorizontalContentAlignment", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverElevation": "HoverElevation", + "HoverTextColor": "HoverTextColor", + "IconBackgroundColor": "IconBackgroundColor", + "IconBorderColor": "IconBorderColor", + "IconBorderWidth": "IconBorderWidth", + "IconCornerRadiusBottomLeft": "IconCornerRadiusBottomLeft", + "IconCornerRadiusBottomRight": "IconCornerRadiusBottomRight", + "IconCornerRadiusTopLeft": "IconCornerRadiusTopLeft", + "IconCornerRadiusTopRight": "IconCornerRadiusTopRight", + "IconDisabledBackgroundColor": "IconDisabledBackgroundColor", + "IconDisabledBorderColor": "IconDisabledBorderColor", + "IconDisabledElevation": "IconDisabledElevation", + "IconDisabledTextColor": "IconDisabledTextColor", + "IconFocusBackgroundColor": "IconFocusBackgroundColor", + "IconFocusElevation": "IconFocusElevation", + "IconFocusTextColor": "IconFocusTextColor", + "IconHoverBackgroundColor": "IconHoverBackgroundColor", + "IconHoverElevation": "IconHoverElevation", + "IconHoverTextColor": "IconHoverTextColor", + "IconRestingElevation": "IconRestingElevation", + "IconRippleColor": "IconRippleColor", + "IconTextColor": "IconTextColor", + "Id": "Id", + "InputId": "InputId", + "IsFocusStyleEnabled": "IsFocusStyleEnabled", + "IsHover": "IsHover", + "LostFocusRef": "LostFocusRef", + "MinHeight": "MinHeight", + "MinWidth": "MinWidth", + "OutlinedBackgroundColor": "OutlinedBackgroundColor", + "OutlinedBorderColor": "OutlinedBorderColor", + "OutlinedBorderWidth": "OutlinedBorderWidth", + "OutlinedCornerRadiusBottomLeft": "OutlinedCornerRadiusBottomLeft", + "OutlinedCornerRadiusBottomRight": "OutlinedCornerRadiusBottomRight", + "OutlinedCornerRadiusTopLeft": "OutlinedCornerRadiusTopLeft", + "OutlinedCornerRadiusTopRight": "OutlinedCornerRadiusTopRight", + "OutlinedDisabledBackgroundColor": "OutlinedDisabledBackgroundColor", + "OutlinedDisabledBorderColor": "OutlinedDisabledBorderColor", + "OutlinedDisabledElevation": "OutlinedDisabledElevation", + "OutlinedDisabledTextColor": "OutlinedDisabledTextColor", + "OutlinedFocusBackgroundColor": "OutlinedFocusBackgroundColor", + "OutlinedFocusElevation": "OutlinedFocusElevation", + "OutlinedFocusTextColor": "OutlinedFocusTextColor", + "OutlinedHoverBackgroundColor": "OutlinedHoverBackgroundColor", + "OutlinedHoverElevation": "OutlinedHoverElevation", + "OutlinedHoverTextColor": "OutlinedHoverTextColor", + "OutlinedRestingElevation": "OutlinedRestingElevation", + "OutlinedRippleColor": "OutlinedRippleColor", + "OutlinedTextColor": "OutlinedTextColor", + "RaisedBackgroundColor": "RaisedBackgroundColor", + "RaisedBorderColor": "RaisedBorderColor", + "RaisedBorderWidth": "RaisedBorderWidth", + "RaisedCornerRadiusBottomLeft": "RaisedCornerRadiusBottomLeft", + "RaisedCornerRadiusBottomRight": "RaisedCornerRadiusBottomRight", + "RaisedCornerRadiusTopLeft": "RaisedCornerRadiusTopLeft", + "RaisedCornerRadiusTopRight": "RaisedCornerRadiusTopRight", + "RaisedDisabledBackgroundColor": "RaisedDisabledBackgroundColor", + "RaisedDisabledBorderColor": "RaisedDisabledBorderColor", + "RaisedDisabledElevation": "RaisedDisabledElevation", + "RaisedDisabledTextColor": "RaisedDisabledTextColor", + "RaisedFocusBackgroundColor": "RaisedFocusBackgroundColor", + "RaisedFocusElevation": "RaisedFocusElevation", + "RaisedFocusTextColor": "RaisedFocusTextColor", + "RaisedHoverBackgroundColor": "RaisedHoverBackgroundColor", + "RaisedHoverElevation": "RaisedHoverElevation", + "RaisedHoverTextColor": "RaisedHoverTextColor", + "RaisedRestingElevation": "RaisedRestingElevation", + "RaisedRippleColor": "RaisedRippleColor", + "RaisedTextColor": "RaisedTextColor", + "RestingElevation": "RestingElevation", + "RippleColor": "RippleColor", + "StopPropagation": "StopPropagation", + "TabIndex": "TabIndex", + "TextColor": "TextColor", + "Type": "Type", + "ValueRef": "ValueRef", + "VerticalContentAlignment": "VerticalContentAlignment" + } + } + ], + "ButtonDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ButtonDescriptionMetadata()": "ButtonDescriptionMetadata()", + "ButtonDescriptionMetadata": "ButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ButtonDescriptionModule()": "ButtonDescriptionModule()", + "ButtonDescriptionModule": "ButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonDisplayStyle": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/ButtonDisplayStyle", + "k": "enum", + "s": "enums" + } + ], + "ButtonGroupButtonCollection": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ButtonGroupButtonCollection", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupButtonCollection()": "ButtonGroupButtonCollection()", + "ButtonGroupButtonCollection": "ButtonGroupButtonCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ButtonGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupDescription()": "ButtonGroupDescription()", + "ButtonGroupDescription": "ButtonGroupDescription()", + "ActualDensity": "ActualDensity", + "ActualItemBackgroundColor": "ActualItemBackgroundColor", + "ActualItemBorderColor": "ActualItemBorderColor", + "ActualItemBorderWidth": "ActualItemBorderWidth", + "ActualItemCornerRadius": "ActualItemCornerRadius", + "ActualItemDisabledBackgroundColor": "ActualItemDisabledBackgroundColor", + "ActualItemDisabledBorderColor": "ActualItemDisabledBorderColor", + "ActualItemDisabledTextColor": "ActualItemDisabledTextColor", + "ActualItemHoverBackgroundColor": "ActualItemHoverBackgroundColor", + "ActualItemHoverTextColor": "ActualItemHoverTextColor", + "ActualItemTextColor": "ActualItemTextColor", + "ActualSelectedItemBackgroundColor": "ActualSelectedItemBackgroundColor", + "ActualSelectedItemHoverBackgroundColor": "ActualSelectedItemHoverBackgroundColor", + "ActualSelectedItemHoverTextColor": "ActualSelectedItemHoverTextColor", + "ActualSelectedItemTextColor": "ActualSelectedItemTextColor", + "BaseTheme": "BaseTheme", + "Buttons": "Buttons", + "Density": "Density", + "Disabled": "Disabled", + "DisplayType": "DisplayType", + "FlatItemBackgroundColor": "FlatItemBackgroundColor", + "FlatItemBorderColor": "FlatItemBorderColor", + "FlatItemBorderWidth": "FlatItemBorderWidth", + "FlatItemCornerRadius": "FlatItemCornerRadius", + "FlatItemDisabledBackgroundColor": "FlatItemDisabledBackgroundColor", + "FlatItemDisabledBorderColor": "FlatItemDisabledBorderColor", + "FlatItemDisabledTextColor": "FlatItemDisabledTextColor", + "FlatItemHoverBackgroundColor": "FlatItemHoverBackgroundColor", + "FlatItemHoverTextColor": "FlatItemHoverTextColor", + "FlatItemTextColor": "FlatItemTextColor", + "FlatSelectedItemBackgroundColor": "FlatSelectedItemBackgroundColor", + "FlatSelectedItemHoverBackgroundColor": "FlatSelectedItemHoverBackgroundColor", + "FlatSelectedItemHoverTextColor": "FlatSelectedItemHoverTextColor", + "FlatSelectedItemTextColor": "FlatSelectedItemTextColor", + "Id": "Id", + "IsMultiSelect": "IsMultiSelect", + "ItemBackgroundColor": "ItemBackgroundColor", + "ItemBorderColor": "ItemBorderColor", + "ItemBorderWidth": "ItemBorderWidth", + "ItemCornerRadius": "ItemCornerRadius", + "ItemDisabledBackgroundColor": "ItemDisabledBackgroundColor", + "ItemDisabledBorderColor": "ItemDisabledBorderColor", + "ItemDisabledTextColor": "ItemDisabledTextColor", + "ItemHoverBackgroundColor": "ItemHoverBackgroundColor", + "ItemHoverTextColor": "ItemHoverTextColor", + "ItemTextColor": "ItemTextColor", + "Orientation": "Orientation", + "OutlinedItemBackgroundColor": "OutlinedItemBackgroundColor", + "OutlinedItemBorderColor": "OutlinedItemBorderColor", + "OutlinedItemBorderWidth": "OutlinedItemBorderWidth", + "OutlinedItemCornerRadius": "OutlinedItemCornerRadius", + "OutlinedItemDisabledBackgroundColor": "OutlinedItemDisabledBackgroundColor", + "OutlinedItemDisabledBorderColor": "OutlinedItemDisabledBorderColor", + "OutlinedItemDisabledTextColor": "OutlinedItemDisabledTextColor", + "OutlinedItemHoverBackgroundColor": "OutlinedItemHoverBackgroundColor", + "OutlinedItemHoverTextColor": "OutlinedItemHoverTextColor", + "OutlinedItemTextColor": "OutlinedItemTextColor", + "OutlinedSelectedItemBackgroundColor": "OutlinedSelectedItemBackgroundColor", + "OutlinedSelectedItemHoverBackgroundColor": "OutlinedSelectedItemHoverBackgroundColor", + "OutlinedSelectedItemHoverTextColor": "OutlinedSelectedItemHoverTextColor", + "OutlinedSelectedItemTextColor": "OutlinedSelectedItemTextColor", + "SelectedIndices": "SelectedIndices", + "SelectedItemBackgroundColor": "SelectedItemBackgroundColor", + "SelectedItemHoverBackgroundColor": "SelectedItemHoverBackgroundColor", + "SelectedItemHoverTextColor": "SelectedItemHoverTextColor", + "SelectedItemTextColor": "SelectedItemTextColor", + "SelectionChangedRef": "SelectionChangedRef", + "Type": "Type" + } + } + ], + "ButtonGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupDescriptionMetadata()": "ButtonGroupDescriptionMetadata()", + "ButtonGroupDescriptionMetadata": "ButtonGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupDescriptionModule()": "ButtonGroupDescriptionModule()", + "ButtonGroupDescriptionModule": "ButtonGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonGroupDisplayStyle": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/ButtonGroupDisplayStyle", + "k": "enum", + "s": "enums" + } + ], + "ButtonGroupOrientation": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/ButtonGroupOrientation", + "k": "enum", + "s": "enums" + } + ], + "ButtonGroupSelectionChangedEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ButtonGroupSelectionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupSelectionChangedEventArgs()": "ButtonGroupSelectionChangedEventArgs()", + "ButtonGroupSelectionChangedEventArgs": "ButtonGroupSelectionChangedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ButtonGroupSelectionChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonGroupSelectionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupSelectionChangedEventArgsDescription()": "ButtonGroupSelectionChangedEventArgsDescription()", + "ButtonGroupSelectionChangedEventArgsDescription": "ButtonGroupSelectionChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ButtonGroupSelectionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ButtonGroupSelectionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupSelectionChangedEventArgsDescriptionMetadata()": "ButtonGroupSelectionChangedEventArgsDescriptionMetadata()", + "ButtonGroupSelectionChangedEventArgsDescriptionMetadata": "ButtonGroupSelectionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonGroupVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ButtonGroupVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupVisualModelExport()": "ButtonGroupVisualModelExport()", + "ButtonGroupVisualModelExport": "ButtonGroupVisualModelExport()", + "ActualItemBackgroundColor": "ActualItemBackgroundColor", + "ActualItemBorderColor": "ActualItemBorderColor", + "ActualItemBorderWidth": "ActualItemBorderWidth", + "ActualItemCornerRadius": "ActualItemCornerRadius", + "ActualItemTextColor": "ActualItemTextColor", + "ButtonsModels": "ButtonsModels", + "Height": "Height", + "IsDisabled": "IsDisabled", + "IsMultiSelect": "IsMultiSelect", + "Left": "Left", + "SelectedIndices": "SelectedIndices", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Width": "Width" + } + } + ], + "ButtonVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ButtonVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "ButtonVisualModelExport()": "ButtonVisualModelExport()", + "ButtonVisualModelExport": "ButtonVisualModelExport()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualDisableRipple": "ActualDisableRipple", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualRestingElevation": "ActualRestingElevation", + "ActualRippleColor": "ActualRippleColor", + "ActualTextColor": "ActualTextColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "AlignItems": "AlignItems", + "Display": "Display", + "FlexDirection": "FlexDirection", + "FlexGrow": "FlexGrow", + "Height": "Height", + "IsDisabled": "IsDisabled", + "IsFocused": "IsFocused", + "IsHover": "IsHover", + "Left": "Left", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "CalculatedColumn": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalculatedColumn", + "k": "class", + "s": "classes", + "m": { + "CalculatedColumn(IEnumerable, IList)": "CalculatedColumn(IEnumerable, IList)", + "CalculatedColumn": "CalculatedColumn(IEnumerable, IList)", + "CalculatedColumn(IEnumerable, params string[])": "CalculatedColumn(IEnumerable, params string[])", + "BasedOn": "BasedOn", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()" + } + } + ], + "CalculatedColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalculatedColumnDescription", + "k": "class", + "s": "classes", + "m": { + "CalculatedColumnDescription()": "CalculatedColumnDescription()", + "CalculatedColumnDescription": "CalculatedColumnDescription()", + "Type": "Type" + } + } + ], + "CalculatedColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalculatedColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalculatedColumnDescriptionMetadata()": "CalculatedColumnDescriptionMetadata()", + "CalculatedColumnDescriptionMetadata": "CalculatedColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalendarDateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalendarDateDescription", + "k": "class", + "s": "classes", + "m": { + "CalendarDateDescription()": "CalendarDateDescription()", + "CalendarDateDescription": "CalendarDateDescription()", + "Date": "Date", + "IsCurrentMonth": "IsCurrentMonth", + "IsNextMonth": "IsNextMonth", + "IsPrevMonth": "IsPrevMonth", + "Type": "Type" + } + } + ], + "CalendarDateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalendarDateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalendarDateDescriptionMetadata()": "CalendarDateDescriptionMetadata()", + "CalendarDateDescriptionMetadata": "CalendarDateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalendarDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalendarDescription", + "k": "class", + "s": "classes", + "m": { + "CalendarDescription()": "CalendarDescription()", + "CalendarDescription": "CalendarDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CurrentDateBorderColor": "CurrentDateBorderColor", + "CurrentDateTextColor": "CurrentDateTextColor", + "Density": "Density", + "FirstDayOfWeek": "FirstDayOfWeek", + "FirstWeekOfYear": "FirstWeekOfYear", + "FocusDateBackgroundColor": "FocusDateBackgroundColor", + "FocusDateTextColor": "FocusDateTextColor", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HoverBackgroundColor": "HoverBackgroundColor", + "MaxDate": "MaxDate", + "MinDate": "MinDate", + "SelectedDateBackgroundColor": "SelectedDateBackgroundColor", + "SelectedDateTextColor": "SelectedDateTextColor", + "SelectedFocusDateBackgroundColor": "SelectedFocusDateBackgroundColor", + "SelectedValueChangedRef": "SelectedValueChangedRef", + "ShowTodayButton": "ShowTodayButton", + "ShowWeekNumbers": "ShowWeekNumbers", + "TextColor": "TextColor", + "Today": "Today", + "Type": "Type", + "Value": "Value", + "ValueChangeRef": "ValueChangeRef" + } + } + ], + "CalendarDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalendarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalendarDescriptionMetadata()": "CalendarDescriptionMetadata()", + "CalendarDescriptionMetadata": "CalendarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalendarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalendarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CalendarDescriptionModule()": "CalendarDescriptionModule()", + "CalendarDescriptionModule": "CalendarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalendarFormatOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalendarFormatOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "CalendarFormatOptionsDescription()": "CalendarFormatOptionsDescription()", + "CalendarFormatOptionsDescription": "CalendarFormatOptionsDescription()", + "Month": "Month", + "Type": "Type", + "Weekday": "Weekday" + } + } + ], + "CalendarFormatOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalendarFormatOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalendarFormatOptionsDescriptionMetadata()": "CalendarFormatOptionsDescriptionMetadata()", + "CalendarFormatOptionsDescriptionMetadata": "CalendarFormatOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutAnnotation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutAnnotation", + "k": "class", + "s": "classes", + "m": { + "CalloutAnnotation()": "CalloutAnnotation()", + "CalloutAnnotation": "CalloutAnnotation()", + "Background": "Background", + "BackgroundCornerRadius": "BackgroundCornerRadius", + "BackgroundPaddingBottom": "BackgroundPaddingBottom", + "BackgroundPaddingLeft": "BackgroundPaddingLeft", + "BackgroundPaddingRight": "BackgroundPaddingRight", + "BackgroundPaddingTop": "BackgroundPaddingTop", + "BadgeBackground": "BadgeBackground", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "Content": "Content", + "ItemColor": "ItemColor", + "Key": "Key", + "LeaderBrush": "LeaderBrush", + "OnFormatLabel(AxisFormatLabelEventArgs)": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "Text": "Text", + "TextColor": "TextColor", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutAnnotationCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutAnnotationCollection", + "k": "class", + "s": "classes", + "m": { + "CalloutAnnotationCollection()": "CalloutAnnotationCollection()", + "CalloutAnnotationCollection": "CalloutAnnotationCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutAnnotationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutAnnotationDescription()": "CalloutAnnotationDescription()", + "CalloutAnnotationDescription": "CalloutAnnotationDescription()", + "Background": "Background", + "BackgroundCornerRadius": "BackgroundCornerRadius", + "BackgroundPaddingBottom": "BackgroundPaddingBottom", + "BackgroundPaddingLeft": "BackgroundPaddingLeft", + "BackgroundPaddingRight": "BackgroundPaddingRight", + "BackgroundPaddingTop": "BackgroundPaddingTop", + "BadgeBackground": "BadgeBackground", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "ContentRef": "ContentRef", + "FormatLabelRef": "FormatLabelRef", + "ItemColor": "ItemColor", + "KeyRef": "KeyRef", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "Text": "Text", + "TextColor": "TextColor", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutAnnotationDescriptionMetadata()": "CalloutAnnotationDescriptionMetadata()", + "CalloutAnnotationDescriptionMetadata": "CalloutAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutBadgeInfo": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutBadgeInfo", + "k": "class", + "s": "classes", + "m": { + "CalloutBadgeInfo()": "CalloutBadgeInfo()", + "CalloutBadgeInfo": "CalloutBadgeInfo()", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutBadgeInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutBadgeInfoDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutBadgeInfoDescription()": "CalloutBadgeInfoDescription()", + "CalloutBadgeInfoDescription": "CalloutBadgeInfoDescription()", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "Type": "Type" + } + } + ], + "CalloutBadgeInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutBadgeInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutBadgeInfoDescriptionMetadata()": "CalloutBadgeInfoDescriptionMetadata()", + "CalloutBadgeInfoDescriptionMetadata": "CalloutBadgeInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutCollisionMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/CalloutCollisionMode", + "k": "enum", + "s": "enums" + } + ], + "CalloutContentUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutContentUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutContentUpdatingEventArgs()": "CalloutContentUpdatingEventArgs()", + "CalloutContentUpdatingEventArgs": "CalloutContentUpdatingEventArgs()", + "Content": "Content", + "Item": "Item", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutContentUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutContentUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutContentUpdatingEventArgsDescription()": "CalloutContentUpdatingEventArgsDescription()", + "CalloutContentUpdatingEventArgsDescription": "CalloutContentUpdatingEventArgsDescription()", + "ContentRef": "ContentRef", + "ItemRef": "ItemRef", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutContentUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutContentUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutContentUpdatingEventArgsDescriptionMetadata()": "CalloutContentUpdatingEventArgsDescriptionMetadata()", + "CalloutContentUpdatingEventArgsDescriptionMetadata": "CalloutContentUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutLabelUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutLabelUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutLabelUpdatingEventArgs()": "CalloutLabelUpdatingEventArgs()", + "CalloutLabelUpdatingEventArgs": "CalloutLabelUpdatingEventArgs()", + "Item": "Item", + "Label": "Label", + "Series": "Series", + "SeriesName": "SeriesName", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutLabelUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutLabelUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutLabelUpdatingEventArgsDescription()": "CalloutLabelUpdatingEventArgsDescription()", + "CalloutLabelUpdatingEventArgsDescription": "CalloutLabelUpdatingEventArgsDescription()", + "ItemRef": "ItemRef", + "LabelRef": "LabelRef", + "Series": "Series", + "SeriesName": "SeriesName", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutLabelUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutLabelUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutLabelUpdatingEventArgsDescriptionMetadata()": "CalloutLabelUpdatingEventArgsDescriptionMetadata()", + "CalloutLabelUpdatingEventArgsDescriptionMetadata": "CalloutLabelUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutLayer", + "k": "class", + "s": "classes", + "m": { + "CalloutLayer()": "CalloutLayer()", + "CalloutLayer": "CalloutLayer()", + "AllowedPositions": "AllowedPositions", + "AllowedPositionsProperty": "AllowedPositionsProperty", + "AutoCalloutLabelPrecision": "AutoCalloutLabelPrecision", + "AutoCalloutLabelPrecisionProperty": "AutoCalloutLabelPrecisionProperty", + "AutoCalloutVisibilityMode": "AutoCalloutVisibilityMode", + "AutoCalloutVisibilityModeProperty": "AutoCalloutVisibilityModeProperty", + "CalloutBackground": "CalloutBackground", + "CalloutBackgroundProperty": "CalloutBackgroundProperty", + "CalloutBadgeBackground": "CalloutBadgeBackground", + "CalloutBadgeBackgroundProperty": "CalloutBadgeBackgroundProperty", + "CalloutBadgeCorner": "CalloutBadgeCorner", + "CalloutBadgeCornerProperty": "CalloutBadgeCornerProperty", + "CalloutBadgeGap": "CalloutBadgeGap", + "CalloutBadgeGapProperty": "CalloutBadgeGapProperty", + "CalloutBadgeHeight": "CalloutBadgeHeight", + "CalloutBadgeHeightProperty": "CalloutBadgeHeightProperty", + "CalloutBadgeImageMemberPath": "CalloutBadgeImageMemberPath", + "CalloutBadgeImageMemberPathProperty": "CalloutBadgeImageMemberPathProperty", + "CalloutBadgeMatchSeries": "CalloutBadgeMatchSeries", + "CalloutBadgeMatchSeriesProperty": "CalloutBadgeMatchSeriesProperty", + "CalloutBadgeOutline": "CalloutBadgeOutline", + "CalloutBadgeOutlineProperty": "CalloutBadgeOutlineProperty", + "CalloutBadgeThickness": "CalloutBadgeThickness", + "CalloutBadgeThicknessProperty": "CalloutBadgeThicknessProperty", + "CalloutBadgeVisible": "CalloutBadgeVisible", + "CalloutBadgeVisibleProperty": "CalloutBadgeVisibleProperty", + "CalloutBadgeWidth": "CalloutBadgeWidth", + "CalloutBadgeWidthProperty": "CalloutBadgeWidthProperty", + "CalloutCollisionMode": "CalloutCollisionMode", + "CalloutCollisionModeProperty": "CalloutCollisionModeProperty", + "CalloutCornerRadius": "CalloutCornerRadius", + "CalloutCornerRadiusProperty": "CalloutCornerRadiusProperty", + "CalloutDarkTextColor": "CalloutDarkTextColor", + "CalloutDarkTextColorProperty": "CalloutDarkTextColorProperty", + "CalloutExpandsAxisBufferEnabled": "CalloutExpandsAxisBufferEnabled", + "CalloutExpandsAxisBufferEnabledProperty": "CalloutExpandsAxisBufferEnabledProperty", + "CalloutExpandsAxisBufferMaxHeight": "CalloutExpandsAxisBufferMaxHeight", + "CalloutExpandsAxisBufferMaxHeightProperty": "CalloutExpandsAxisBufferMaxHeightProperty", + "CalloutExpandsAxisBufferMaxWidth": "CalloutExpandsAxisBufferMaxWidth", + "CalloutExpandsAxisBufferMaxWidthProperty": "CalloutExpandsAxisBufferMaxWidthProperty", + "CalloutExpandsAxisBufferMinHeight": "CalloutExpandsAxisBufferMinHeight", + "CalloutExpandsAxisBufferMinHeightProperty": "CalloutExpandsAxisBufferMinHeightProperty", + "CalloutExpandsAxisBufferMinWidth": "CalloutExpandsAxisBufferMinWidth", + "CalloutExpandsAxisBufferMinWidthProperty": "CalloutExpandsAxisBufferMinWidthProperty", + "CalloutExpandsAxisBufferOnInitialVisibility": "CalloutExpandsAxisBufferOnInitialVisibility", + "CalloutExpandsAxisBufferOnInitialVisibilityProperty": "CalloutExpandsAxisBufferOnInitialVisibilityProperty", + "CalloutExpandsAxisBufferOnlyWhenVisible": "CalloutExpandsAxisBufferOnlyWhenVisible", + "CalloutExpandsAxisBufferOnlyWhenVisibleProperty": "CalloutExpandsAxisBufferOnlyWhenVisibleProperty", + "CalloutInterpolatedValuePrecision": "CalloutInterpolatedValuePrecision", + "CalloutInterpolatedValuePrecisionProperty": "CalloutInterpolatedValuePrecisionProperty", + "CalloutLeaderBrush": "CalloutLeaderBrush", + "CalloutLeaderBrushProperty": "CalloutLeaderBrushProperty", + "CalloutLightTextColor": "CalloutLightTextColor", + "CalloutLightTextColorProperty": "CalloutLightTextColorProperty", + "CalloutOutline": "CalloutOutline", + "CalloutOutlineProperty": "CalloutOutlineProperty", + "CalloutPaddingBottom": "CalloutPaddingBottom", + "CalloutPaddingBottomProperty": "CalloutPaddingBottomProperty", + "CalloutPaddingLeft": "CalloutPaddingLeft", + "CalloutPaddingLeftProperty": "CalloutPaddingLeftProperty", + "CalloutPaddingRight": "CalloutPaddingRight", + "CalloutPaddingRightProperty": "CalloutPaddingRightProperty", + "CalloutPaddingTop": "CalloutPaddingTop", + "CalloutPaddingTopProperty": "CalloutPaddingTopProperty", + "CalloutPositionPadding": "CalloutPositionPadding", + "CalloutPositionPaddingProperty": "CalloutPositionPaddingProperty", + "CalloutStrokeThickness": "CalloutStrokeThickness", + "CalloutStrokeThicknessProperty": "CalloutStrokeThicknessProperty", + "CalloutSuspendedWhenShiftingToVisible": "CalloutSuspendedWhenShiftingToVisible", + "CalloutSuspendedWhenShiftingToVisibleProperty": "CalloutSuspendedWhenShiftingToVisibleProperty", + "CalloutTextColor": "CalloutTextColor", + "CalloutTextColorProperty": "CalloutTextColorProperty", + "CollisionChannel": "CollisionChannel", + "CollisionChannelProperty": "CollisionChannelProperty", + "ContentMemberPath": "ContentMemberPath", + "ContentMemberPathProperty": "ContentMemberPathProperty", + "HighlightedValueLabelMode": "HighlightedValueLabelMode", + "HighlightedValueLabelModeProperty": "HighlightedValueLabelModeProperty", + "InvalidateCalloutContent()": "InvalidateCalloutContent()", + "InvalidateCalloutContent": "InvalidateCalloutContent()", + "IsAutoCalloutBehaviorEnabled": "IsAutoCalloutBehaviorEnabled", + "IsAutoCalloutBehaviorEnabledProperty": "IsAutoCalloutBehaviorEnabledProperty", + "IsCalloutOffsettingEnabled": "IsCalloutOffsettingEnabled", + "IsCalloutOffsettingEnabledProperty": "IsCalloutOffsettingEnabledProperty", + "IsCustomCalloutRenderStyleEnabled": "IsCustomCalloutRenderStyleEnabled", + "IsCustomCalloutRenderStyleEnabledProperty": "IsCustomCalloutRenderStyleEnabledProperty", + "IsCustomCalloutStyleEnabled": "IsCustomCalloutStyleEnabled", + "IsCustomCalloutStyleEnabledProperty": "IsCustomCalloutStyleEnabledProperty", + "KeyMemberPath": "KeyMemberPath", + "KeyMemberPathProperty": "KeyMemberPathProperty", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "OnCalloutContentUpdating(CalloutContentUpdatingEventArgs)": "OnCalloutContentUpdating(CalloutContentUpdatingEventArgs)", + "OnCalloutContentUpdating": "OnCalloutContentUpdating(CalloutContentUpdatingEventArgs)", + "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)": "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)", + "OnCalloutLabelUpdating": "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)", + "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)": "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)", + "OnCalloutRenderStyleUpdating": "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)", + "OnCalloutSeriesSelecting(CalloutSeriesSelectingEventArgs)": "OnCalloutSeriesSelecting(CalloutSeriesSelectingEventArgs)", + "OnCalloutSeriesSelecting": "OnCalloutSeriesSelecting(CalloutSeriesSelectingEventArgs)", + "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)": "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)", + "OnCalloutStyleUpdating": "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)", + "RecalculateAxisRangeBuffer()": "RecalculateAxisRangeBuffer()", + "RecalculateAxisRangeBuffer": "RecalculateAxisRangeBuffer()", + "RefreshAxisBufferAndCalloutPositions()": "RefreshAxisBufferAndCalloutPositions()", + "RefreshAxisBufferAndCalloutPositions": "RefreshAxisBufferAndCalloutPositions()", + "RefreshLabelPositions()": "RefreshLabelPositions()", + "RefreshLabelPositions": "RefreshLabelPositions()", + "ShouldTruncateOnBoundaryCollisions": "ShouldTruncateOnBoundaryCollisions", + "ShouldTruncateOnBoundaryCollisionsProperty": "ShouldTruncateOnBoundaryCollisionsProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty", + "UseAutoContrastingLabelColors": "UseAutoContrastingLabelColors", + "UseAutoContrastingLabelColorsProperty": "UseAutoContrastingLabelColorsProperty", + "UseInterpolatedValueForAutoCalloutLabels": "UseInterpolatedValueForAutoCalloutLabels", + "UseInterpolatedValueForAutoCalloutLabelsProperty": "UseInterpolatedValueForAutoCalloutLabelsProperty", + "UseItemColorForFill": "UseItemColorForFill", + "UseItemColorForFillProperty": "UseItemColorForFillProperty", + "UseItemColorForOutline": "UseItemColorForOutline", + "UseItemColorForOutlineProperty": "UseItemColorForOutlineProperty", + "UseSeriesColorForOutline": "UseSeriesColorForOutline", + "UseSeriesColorForOutlineProperty": "UseSeriesColorForOutlineProperty", + "UseValueForAutoCalloutLabels": "UseValueForAutoCalloutLabels", + "UseValueForAutoCalloutLabelsProperty": "UseValueForAutoCalloutLabelsProperty", + "XMemberPath": "XMemberPath", + "XMemberPathProperty": "XMemberPathProperty", + "YMemberPath": "YMemberPath", + "YMemberPathProperty": "YMemberPathProperty" + } + } + ], + "CalloutLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutLayerDescription()": "CalloutLayerDescription()", + "CalloutLayerDescription": "CalloutLayerDescription()", + "AllowedPositions": "AllowedPositions", + "AutoCalloutLabelPrecision": "AutoCalloutLabelPrecision", + "AutoCalloutVisibilityMode": "AutoCalloutVisibilityMode", + "CalloutBackground": "CalloutBackground", + "CalloutBadgeBackground": "CalloutBadgeBackground", + "CalloutBadgeCorner": "CalloutBadgeCorner", + "CalloutBadgeGap": "CalloutBadgeGap", + "CalloutBadgeHeight": "CalloutBadgeHeight", + "CalloutBadgeImageMemberPath": "CalloutBadgeImageMemberPath", + "CalloutBadgeMatchSeries": "CalloutBadgeMatchSeries", + "CalloutBadgeOutline": "CalloutBadgeOutline", + "CalloutBadgeThickness": "CalloutBadgeThickness", + "CalloutBadgeVisible": "CalloutBadgeVisible", + "CalloutBadgeWidth": "CalloutBadgeWidth", + "CalloutCollisionMode": "CalloutCollisionMode", + "CalloutContentUpdatingRef": "CalloutContentUpdatingRef", + "CalloutCornerRadius": "CalloutCornerRadius", + "CalloutDarkTextColor": "CalloutDarkTextColor", + "CalloutExpandsAxisBufferEnabled": "CalloutExpandsAxisBufferEnabled", + "CalloutExpandsAxisBufferMaxHeight": "CalloutExpandsAxisBufferMaxHeight", + "CalloutExpandsAxisBufferMaxWidth": "CalloutExpandsAxisBufferMaxWidth", + "CalloutExpandsAxisBufferMinHeight": "CalloutExpandsAxisBufferMinHeight", + "CalloutExpandsAxisBufferMinWidth": "CalloutExpandsAxisBufferMinWidth", + "CalloutExpandsAxisBufferOnInitialVisibility": "CalloutExpandsAxisBufferOnInitialVisibility", + "CalloutExpandsAxisBufferOnlyWhenVisible": "CalloutExpandsAxisBufferOnlyWhenVisible", + "CalloutInterpolatedValuePrecision": "CalloutInterpolatedValuePrecision", + "CalloutLabelUpdatingRef": "CalloutLabelUpdatingRef", + "CalloutLeaderBrush": "CalloutLeaderBrush", + "CalloutLightTextColor": "CalloutLightTextColor", + "CalloutOutline": "CalloutOutline", + "CalloutPaddingBottom": "CalloutPaddingBottom", + "CalloutPaddingLeft": "CalloutPaddingLeft", + "CalloutPaddingRight": "CalloutPaddingRight", + "CalloutPaddingTop": "CalloutPaddingTop", + "CalloutPositionPadding": "CalloutPositionPadding", + "CalloutRenderStyleUpdatingRef": "CalloutRenderStyleUpdatingRef", + "CalloutSeriesSelectingRef": "CalloutSeriesSelectingRef", + "CalloutStrokeThickness": "CalloutStrokeThickness", + "CalloutStyleUpdatingRef": "CalloutStyleUpdatingRef", + "CalloutSuspendedWhenShiftingToVisible": "CalloutSuspendedWhenShiftingToVisible", + "CalloutTextColor": "CalloutTextColor", + "CollisionChannel": "CollisionChannel", + "ContentMemberPath": "ContentMemberPath", + "HighlightedValueLabelMode": "HighlightedValueLabelMode", + "IsAutoCalloutBehaviorEnabled": "IsAutoCalloutBehaviorEnabled", + "IsCalloutOffsettingEnabled": "IsCalloutOffsettingEnabled", + "IsCustomCalloutRenderStyleEnabled": "IsCustomCalloutRenderStyleEnabled", + "IsCustomCalloutStyleEnabled": "IsCustomCalloutStyleEnabled", + "KeyMemberPath": "KeyMemberPath", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelMemberPath": "LabelMemberPath", + "ShouldTruncateOnBoundaryCollisions": "ShouldTruncateOnBoundaryCollisions", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "TextStyle": "TextStyle", + "Type": "Type", + "UseAutoContrastingLabelColors": "UseAutoContrastingLabelColors", + "UseInterpolatedValueForAutoCalloutLabels": "UseInterpolatedValueForAutoCalloutLabels", + "UseItemColorForFill": "UseItemColorForFill", + "UseItemColorForOutline": "UseItemColorForOutline", + "UseSeriesColorForOutline": "UseSeriesColorForOutline", + "UseValueForAutoCalloutLabels": "UseValueForAutoCalloutLabels", + "XMemberPath": "XMemberPath", + "YMemberPath": "YMemberPath" + } + } + ], + "CalloutLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutLayerDescriptionMetadata()": "CalloutLayerDescriptionMetadata()", + "CalloutLayerDescriptionMetadata": "CalloutLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CalloutLayerDescriptionModule()": "CalloutLayerDescriptionModule()", + "CalloutLayerDescriptionModule": "CalloutLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutPlacementPositions": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CalloutPlacementPositions", + "k": "enum", + "s": "enums" + } + ], + "CalloutPlacementPositionsCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutPlacementPositionsCollection", + "k": "class", + "s": "classes", + "m": { + "CalloutPlacementPositionsCollection()": "CalloutPlacementPositionsCollection()", + "CalloutPlacementPositionsCollection": "CalloutPlacementPositionsCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutRenderStyleUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutRenderStyleUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutRenderStyleUpdatingEventArgs()": "CalloutRenderStyleUpdatingEventArgs()", + "CalloutRenderStyleUpdatingEventArgs": "CalloutRenderStyleUpdatingEventArgs()", + "ActualPosition": "ActualPosition", + "Background": "Background", + "BackgroundCorner": "BackgroundCorner", + "BadgeBackground": "BadgeBackground", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "Height": "Height", + "Item": "Item", + "LabelPositionX": "LabelPositionX", + "LabelPositionY": "LabelPositionY", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "TargetPositionX": "TargetPositionX", + "TargetPositionY": "TargetPositionY", + "TextColor": "TextColor", + "Width": "Width", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutRenderStyleUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutRenderStyleUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutRenderStyleUpdatingEventArgsDescription()": "CalloutRenderStyleUpdatingEventArgsDescription()", + "CalloutRenderStyleUpdatingEventArgsDescription": "CalloutRenderStyleUpdatingEventArgsDescription()", + "ActualPosition": "ActualPosition", + "Background": "Background", + "BackgroundCorner": "BackgroundCorner", + "BadgeBackground": "BadgeBackground", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "Height": "Height", + "ItemRef": "ItemRef", + "LabelPositionX": "LabelPositionX", + "LabelPositionY": "LabelPositionY", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "TargetPositionX": "TargetPositionX", + "TargetPositionY": "TargetPositionY", + "TextColor": "TextColor", + "Type": "Type", + "Width": "Width", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutRenderStyleUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata()": "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata()", + "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata": "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutSeriesSelectingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutSeriesSelectingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutSeriesSelectingEventArgs()": "CalloutSeriesSelectingEventArgs()", + "CalloutSeriesSelectingEventArgs": "CalloutSeriesSelectingEventArgs()", + "Item": "Item", + "Series": "Series", + "SeriesName": "SeriesName", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutSeriesSelectingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutSeriesSelectingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutSeriesSelectingEventArgsDescription()": "CalloutSeriesSelectingEventArgsDescription()", + "CalloutSeriesSelectingEventArgsDescription": "CalloutSeriesSelectingEventArgsDescription()", + "ItemRef": "ItemRef", + "Series": "Series", + "SeriesName": "SeriesName", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutSeriesSelectingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutSeriesSelectingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutSeriesSelectingEventArgsDescriptionMetadata()": "CalloutSeriesSelectingEventArgsDescriptionMetadata()", + "CalloutSeriesSelectingEventArgsDescriptionMetadata": "CalloutSeriesSelectingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutStyleUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutStyleUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutStyleUpdatingEventArgs()": "CalloutStyleUpdatingEventArgs()", + "CalloutStyleUpdatingEventArgs": "CalloutStyleUpdatingEventArgs()", + "BacgkroundPaddingBottom": "BacgkroundPaddingBottom", + "BacgkroundPaddingLeft": "BacgkroundPaddingLeft", + "BacgkroundPaddingRight": "BacgkroundPaddingRight", + "BacgkroundPaddingTop": "BacgkroundPaddingTop", + "Background": "Background", + "BackgroundCorner": "BackgroundCorner", + "BadgeBackground": "BadgeBackground", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "Item": "Item", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "TextColor": "TextColor", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutStyleUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutStyleUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutStyleUpdatingEventArgsDescription()": "CalloutStyleUpdatingEventArgsDescription()", + "CalloutStyleUpdatingEventArgsDescription": "CalloutStyleUpdatingEventArgsDescription()", + "BacgkroundPaddingBottom": "BacgkroundPaddingBottom", + "BacgkroundPaddingLeft": "BacgkroundPaddingLeft", + "BacgkroundPaddingRight": "BacgkroundPaddingRight", + "BacgkroundPaddingTop": "BacgkroundPaddingTop", + "Background": "Background", + "BackgroundCorner": "BackgroundCorner", + "BadgeBackground": "BadgeBackground", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "ItemRef": "ItemRef", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "TextColor": "TextColor", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutStyleUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CalloutStyleUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutStyleUpdatingEventArgsDescriptionMetadata()": "CalloutStyleUpdatingEventArgsDescriptionMetadata()", + "CalloutStyleUpdatingEventArgsDescriptionMetadata": "CalloutStyleUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutVisualData", + "k": "class", + "s": "classes", + "m": { + "CalloutVisualData()": "CalloutVisualData()", + "CalloutVisualData": "CalloutVisualData()", + "Background": "Background", + "Badge": "Badge", + "Left": "Left", + "Line": "Line", + "MarginLeft": "MarginLeft", + "MarginTop": "MarginTop", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "Top": "Top" + } + } + ], + "CalloutVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CalloutVisualDataList", + "k": "class", + "s": "classes", + "m": { + "CalloutVisualDataList()": "CalloutVisualDataList()", + "CalloutVisualDataList": "CalloutVisualDataList()" + } + } + ], + "CancelButtonClickEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CancelButtonClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CancelButtonClickEventArgsDescription()": "CancelButtonClickEventArgsDescription()", + "CancelButtonClickEventArgsDescription": "CancelButtonClickEventArgsDescription()", + "Type": "Type" + } + } + ], + "CancelButtonClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CancelButtonClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CancelButtonClickEventArgsDescriptionMetadata()": "CancelButtonClickEventArgsDescriptionMetadata()", + "CancelButtonClickEventArgsDescriptionMetadata": "CancelButtonClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CancelEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CancelEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CancelEventArgsDescription()": "CancelEventArgsDescription()", + "CancelEventArgsDescription": "CancelEventArgsDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "CancelEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CancelEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CancelEventArgsDescriptionMetadata()": "CancelEventArgsDescriptionMetadata()", + "CancelEventArgsDescriptionMetadata": "CancelEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CancellingMultiScaleImageEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CancellingMultiScaleImageEventArgs", + "k": "class", + "s": "classes", + "m": { + "CancellingMultiScaleImageEventArgs()": "CancellingMultiScaleImageEventArgs()", + "CancellingMultiScaleImageEventArgs": "CancellingMultiScaleImageEventArgs()", + "Uri": "Uri" + } + } + ], + "CancellingMultiScaleImageEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CancellingMultiScaleImageEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CancellingMultiScaleImageEventArgsDescription()": "CancellingMultiScaleImageEventArgsDescription()", + "CancellingMultiScaleImageEventArgsDescription": "CancellingMultiScaleImageEventArgsDescription()", + "Type": "Type", + "Uri": "Uri" + } + } + ], + "CancellingMultiScaleImageEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CancellingMultiScaleImageEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CancellingMultiScaleImageEventArgsDescriptionMetadata()": "CancellingMultiScaleImageEventArgsDescriptionMetadata()", + "CancellingMultiScaleImageEventArgsDescriptionMetadata": "CancellingMultiScaleImageEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CaptureImageFormat": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/CaptureImageFormat", + "k": "enum", + "s": "enums" + } + ], + "CaptureImageSettings": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CaptureImageSettings", + "k": "class", + "s": "classes", + "m": { + "CaptureImageSettings()": "CaptureImageSettings()", + "CaptureImageSettings": "CaptureImageSettings()", + "AddToClipboard": "AddToClipboard", + "Format": "Format", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CaptureImageSettingsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CaptureImageSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "CaptureImageSettingsDescription()": "CaptureImageSettingsDescription()", + "CaptureImageSettingsDescription": "CaptureImageSettingsDescription()", + "AddToClipboard": "AddToClipboard", + "Format": "Format", + "Type": "Type" + } + } + ], + "CaptureImageSettingsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CaptureImageSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CaptureImageSettingsDescriptionMetadata()": "CaptureImageSettingsDescriptionMetadata()", + "CaptureImageSettingsDescriptionMetadata": "CaptureImageSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryAngleAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryAngleAxis", + "k": "class", + "s": "classes", + "m": { + "CategoryAngleAxis()": "CategoryAngleAxis()", + "CategoryAngleAxis": "CategoryAngleAxis()", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "AreGroupSizesUneven": "AreGroupSizesUneven", + "AreGroupSizesUnevenProperty": "AreGroupSizesUnevenProperty", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIntervalProperty": "CompanionAxisIntervalProperty", + "CompanionAxisLabelMode": "CompanionAxisLabelMode", + "CompanionAxisLabelModeProperty": "CompanionAxisLabelModeProperty", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisMinorIntervalProperty": "CompanionAxisMinorIntervalProperty", + "CompanionAxisStartAngleOffset": "CompanionAxisStartAngleOffset", + "CompanionAxisStartAngleOffsetProperty": "CompanionAxisStartAngleOffsetProperty", + "GetScaledAngle(double)": "GetScaledAngle(double)", + "GetScaledAngle": "GetScaledAngle(double)", + "GetUnscaledAngle(double)": "GetUnscaledAngle(double)", + "GetUnscaledAngle": "GetUnscaledAngle(double)", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "LabelMode": "LabelMode", + "LabelModeProperty": "LabelModeProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "StartAngleOffset": "StartAngleOffset", + "StartAngleOffsetProperty": "StartAngleOffsetProperty" + } + } + ], + "CategoryAngleAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryAngleAxisDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryAngleAxisDescription()": "CategoryAngleAxisDescription()", + "CategoryAngleAxisDescription": "CategoryAngleAxisDescription()", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisLabelMode": "CompanionAxisLabelMode", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisStartAngleOffset": "CompanionAxisStartAngleOffset", + "Interval": "Interval", + "LabelMode": "LabelMode", + "MinorInterval": "MinorInterval", + "StartAngleOffset": "StartAngleOffset", + "Type": "Type" + } + } + ], + "CategoryAngleAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryAngleAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryAngleAxisDescriptionMetadata()": "CategoryAngleAxisDescriptionMetadata()", + "CategoryAngleAxisDescriptionMetadata": "CategoryAngleAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryAngleAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryAngleAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryAngleAxisDescriptionModule()": "CategoryAngleAxisDescriptionModule()", + "CategoryAngleAxisDescriptionModule": "CategoryAngleAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryAxisBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryAxisBase", + "k": "class", + "s": "classes", + "m": { + "Gap": "Gap", + "GapProperty": "GapProperty", + "GetCategoryBoundingBox(Point, bool, double)": "GetCategoryBoundingBox(Point, bool, double)", + "GetCategoryBoundingBox": "GetCategoryBoundingBox(Point, bool, double)", + "IsLastLabelMandatory": "IsLastLabelMandatory", + "IsLastLabelMandatoryProperty": "IsLastLabelMandatoryProperty", + "ItemsCount": "ItemsCount", + "ItemsCountProperty": "ItemsCountProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "MaximumGap": "MaximumGap", + "MaximumGapProperty": "MaximumGapProperty", + "MinimumGapSize": "MinimumGapSize", + "MinimumGapSizeProperty": "MinimumGapSizeProperty", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "Overlap": "Overlap", + "OverlapProperty": "OverlapProperty", + "UnscaleValue(double)": "UnscaleValue(double)", + "UnscaleValue": "UnscaleValue(double)", + "UseClusteringMode": "UseClusteringMode", + "UseClusteringModeProperty": "UseClusteringModeProperty" + } + } + ], + "CategoryAxisBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryAxisBaseDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryAxisBaseDescription()": "CategoryAxisBaseDescription()", + "CategoryAxisBaseDescription": "CategoryAxisBaseDescription()", + "DataSourceRef": "DataSourceRef", + "Gap": "Gap", + "IsLastLabelMandatory": "IsLastLabelMandatory", + "ItemsCount": "ItemsCount", + "ItemsCountChangeRef": "ItemsCountChangeRef", + "MaximumGap": "MaximumGap", + "MinimumGapSize": "MinimumGapSize", + "Overlap": "Overlap", + "Type": "Type", + "UseClusteringMode": "UseClusteringMode" + } + } + ], + "CategoryAxisBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryAxisBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryAxisBaseDescriptionMetadata()": "CategoryAxisBaseDescriptionMetadata()", + "CategoryAxisBaseDescriptionMetadata": "CategoryAxisBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryChartCoreDescriptionModule()": "CategoryChartCoreDescriptionModule()", + "CategoryChartCoreDescriptionModule": "CategoryChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryChartDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryChartDescription()": "CategoryChartDescription()", + "CategoryChartDescription": "CategoryChartDescription()", + "AutoExpandMarginExtraPadding": "AutoExpandMarginExtraPadding", + "AutoExpandMarginMaximumValue": "AutoExpandMarginMaximumValue", + "AutoMarginAndAngleUpdateMode": "AutoMarginAndAngleUpdateMode", + "Background": "Background", + "ChartType": "ChartType", + "Height": "Height", + "IsCategoryHighlightingEnabled": "IsCategoryHighlightingEnabled", + "IsItemHighlightingEnabled": "IsItemHighlightingEnabled", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "NegativeBrushes": "NegativeBrushes", + "NegativeOutlines": "NegativeOutlines", + "ShouldAutoExpandMarginForInitialLabels": "ShouldAutoExpandMarginForInitialLabels", + "ShouldConsiderAutoRotationForInitialLabels": "ShouldConsiderAutoRotationForInitialLabels", + "TooltipTemplateRef": "TooltipTemplateRef", + "TransitionInDuration": "TransitionInDuration", + "TransitionInEasingFunctionRef": "TransitionInEasingFunctionRef", + "TransitionInMode": "TransitionInMode", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutEasingFunctionRef": "TransitionOutEasingFunctionRef", + "Type": "Type", + "Width": "Width", + "XAxisEnhancedIntervalPreferMoreCategoryLabels": "XAxisEnhancedIntervalPreferMoreCategoryLabels", + "XAxisGap": "XAxisGap", + "XAxisInterval": "XAxisInterval", + "XAxisIsLastLabelMandatory": "XAxisIsLastLabelMandatory", + "XAxisMaximumGap": "XAxisMaximumGap", + "XAxisMinimumGapSize": "XAxisMinimumGapSize", + "XAxisMinorInterval": "XAxisMinorInterval", + "XAxisOverlap": "XAxisOverlap", + "XAxisZoomMaximumCategoryRange": "XAxisZoomMaximumCategoryRange", + "XAxisZoomMaximumItemSpan": "XAxisZoomMaximumItemSpan", + "XAxisZoomToCategoryRange": "XAxisZoomToCategoryRange", + "XAxisZoomToCategoryStart": "XAxisZoomToCategoryStart", + "XAxisZoomToItemSpan": "XAxisZoomToItemSpan", + "YAxisAbbreviateLargeNumbers": "YAxisAbbreviateLargeNumbers", + "YAxisAutoRangeBufferMode": "YAxisAutoRangeBufferMode", + "YAxisEnhancedIntervalPreferMoreCategoryLabels": "YAxisEnhancedIntervalPreferMoreCategoryLabels", + "YAxisFavorLabellingScaleEnd": "YAxisFavorLabellingScaleEnd", + "YAxisInterval": "YAxisInterval", + "YAxisIsLastLabelMandatory": "YAxisIsLastLabelMandatory", + "YAxisIsLogarithmic": "YAxisIsLogarithmic", + "YAxisLogarithmBase": "YAxisLogarithmBase", + "YAxisMaximumValue": "YAxisMaximumValue", + "YAxisMinimumValue": "YAxisMinimumValue", + "YAxisMinorInterval": "YAxisMinorInterval" + } + } + ], + "CategoryChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryChartDescriptionMetadata()": "CategoryChartDescriptionMetadata()", + "CategoryChartDescriptionMetadata": "CategoryChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryChartDescriptionModule()": "CategoryChartDescriptionModule()", + "CategoryChartDescriptionModule": "CategoryChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartMockDataItem": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryChartMockDataItem", + "k": "class", + "s": "classes", + "m": { + "CategoryChartMockDataItem()": "CategoryChartMockDataItem()", + "CategoryChartMockDataItem": "CategoryChartMockDataItem()", + "Label": "Label", + "Series1": "Series1", + "Series2": "Series2", + "Series3": "Series3" + } + } + ], + "CategoryChartToolbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryChartToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryChartToolbarDescriptionModule()": "CategoryChartToolbarDescriptionModule()", + "CategoryChartToolbarDescriptionModule": "CategoryChartToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CategoryChartType", + "k": "enum", + "s": "enums" + } + ], + "CategoryCollisionMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CategoryCollisionMode", + "k": "enum", + "s": "enums" + } + ], + "CategoryDateTimeXAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryDateTimeXAxis", + "k": "class", + "s": "classes", + "m": { + "CategoryDateTimeXAxis()": "CategoryDateTimeXAxis()", + "CategoryDateTimeXAxis": "CategoryDateTimeXAxis()", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "ScrollIntoView(DateTime, DateTime)": "ScrollIntoView(DateTime, DateTime)", + "ScrollIntoView": "ScrollIntoView(DateTime, DateTime)", + "UnevenlySpacedLabels": "UnevenlySpacedLabels", + "UnevenlySpacedLabelsProperty": "UnevenlySpacedLabelsProperty" + } + } + ], + "CategoryDateTimeXAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryDateTimeXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryDateTimeXAxisDescription()": "CategoryDateTimeXAxisDescription()", + "CategoryDateTimeXAxisDescription": "CategoryDateTimeXAxisDescription()", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalChangeRef": "ActualMinorIntervalChangeRef", + "DisplayType": "DisplayType", + "Interval": "Interval", + "MinorInterval": "MinorInterval", + "Type": "Type", + "UnevenlySpacedLabels": "UnevenlySpacedLabels" + } + } + ], + "CategoryDateTimeXAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryDateTimeXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryDateTimeXAxisDescriptionMetadata()": "CategoryDateTimeXAxisDescriptionMetadata()", + "CategoryDateTimeXAxisDescriptionMetadata": "CategoryDateTimeXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryDateTimeXAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryDateTimeXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryDateTimeXAxisDescriptionModule()": "CategoryDateTimeXAxisDescriptionModule()", + "CategoryDateTimeXAxisDescriptionModule": "CategoryDateTimeXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryHighlightLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryHighlightLayer", + "k": "class", + "s": "classes", + "m": { + "CategoryHighlightLayer()": "CategoryHighlightLayer()", + "CategoryHighlightLayer": "CategoryHighlightLayer()", + "BandHighlightWidth": "BandHighlightWidth", + "BandHighlightWidthProperty": "BandHighlightWidthProperty", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty" + } + } + ], + "CategoryHighlightLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryHighlightLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryHighlightLayerDescription()": "CategoryHighlightLayerDescription()", + "CategoryHighlightLayerDescription": "CategoryHighlightLayerDescription()", + "BandHighlightWidth": "BandHighlightWidth", + "TargetAxisRef": "TargetAxisRef", + "Type": "Type", + "UseInterpolation": "UseInterpolation" + } + } + ], + "CategoryHighlightLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryHighlightLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryHighlightLayerDescriptionMetadata()": "CategoryHighlightLayerDescriptionMetadata()", + "CategoryHighlightLayerDescriptionMetadata": "CategoryHighlightLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryHighlightLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryHighlightLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryHighlightLayerDescriptionModule()": "CategoryHighlightLayerDescriptionModule()", + "CategoryHighlightLayerDescriptionModule": "CategoryHighlightLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryItemHighlightLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryItemHighlightLayer", + "k": "class", + "s": "classes", + "m": { + "CategoryItemHighlightLayer()": "CategoryItemHighlightLayer()", + "CategoryItemHighlightLayer": "CategoryItemHighlightLayer()", + "BandHighlightWidth": "BandHighlightWidth", + "BandHighlightWidthProperty": "BandHighlightWidthProperty", + "HighlightType": "HighlightType", + "HighlightTypeProperty": "HighlightTypeProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty" + } + } + ], + "CategoryItemHighlightLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryItemHighlightLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryItemHighlightLayerDescription()": "CategoryItemHighlightLayerDescription()", + "CategoryItemHighlightLayerDescription": "CategoryItemHighlightLayerDescription()", + "BandHighlightWidth": "BandHighlightWidth", + "HighlightType": "HighlightType", + "MarkerBrush": "MarkerBrush", + "MarkerOutline": "MarkerOutline", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerType": "MarkerType", + "SkipUnknownValues": "SkipUnknownValues", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type", + "UseInterpolation": "UseInterpolation" + } + } + ], + "CategoryItemHighlightLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryItemHighlightLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryItemHighlightLayerDescriptionMetadata()": "CategoryItemHighlightLayerDescriptionMetadata()", + "CategoryItemHighlightLayerDescriptionMetadata": "CategoryItemHighlightLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryItemHighlightLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryItemHighlightLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryItemHighlightLayerDescriptionModule()": "CategoryItemHighlightLayerDescriptionModule()", + "CategoryItemHighlightLayerDescriptionModule": "CategoryItemHighlightLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryItemHighlightType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CategoryItemHighlightType", + "k": "enum", + "s": "enums" + } + ], + "CategorySeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategorySeries", + "k": "class", + "s": "classes", + "m": { + "CategoryCollisionMode": "CategoryCollisionMode", + "CategoryCollisionModeProperty": "CategoryCollisionModeProperty", + "GetCategoryItems(int, int)": "GetCategoryItems(int, int)", + "GetCategoryItems": "GetCategoryItems(int, int)", + "GetCategoryWidth()": "GetCategoryWidth()", + "GetCategoryWidth": "GetCategoryWidth()", + "GetOffsetValue()": "GetOffsetValue()", + "GetOffsetValue": "GetOffsetValue()", + "IsCustomCategoryMarkerStyleAllowed": "IsCustomCategoryMarkerStyleAllowed", + "IsCustomCategoryMarkerStyleAllowedProperty": "IsCustomCategoryMarkerStyleAllowedProperty", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsCustomCategoryStyleAllowedProperty": "IsCustomCategoryStyleAllowedProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)": "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)", + "OnAssigningCategoryMarkerStyle": "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)", + "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnAssigningCategoryStyle": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "UseHighMarkerFidelity": "UseHighMarkerFidelity", + "UseHighMarkerFidelityProperty": "UseHighMarkerFidelityProperty" + } + } + ], + "CategorySeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "CategorySeriesDescription()": "CategorySeriesDescription()", + "CategorySeriesDescription": "CategorySeriesDescription()", + "AssigningCategoryMarkerStyleRef": "AssigningCategoryMarkerStyleRef", + "AssigningCategoryStyleRef": "AssigningCategoryStyleRef", + "CategoryCollisionMode": "CategoryCollisionMode", + "IsCustomCategoryMarkerStyleAllowed": "IsCustomCategoryMarkerStyleAllowed", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "TransitionInMode": "TransitionInMode", + "Type": "Type", + "UseHighMarkerFidelity": "UseHighMarkerFidelity" + } + } + ], + "CategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategorySeriesDescriptionMetadata()": "CategorySeriesDescriptionMetadata()", + "CategorySeriesDescriptionMetadata": "CategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategorySeriesMarkerCollisionAvoidance": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CategorySeriesMarkerCollisionAvoidance", + "k": "enum", + "s": "enums" + } + ], + "CategoryToolTipLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryToolTipLayer", + "k": "class", + "s": "classes", + "m": { + "CategoryToolTipLayer()": "CategoryToolTipLayer()", + "CategoryToolTipLayer": "CategoryToolTipLayer()", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBackgroundProperty": "ToolTipBackgroundProperty", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderBrushProperty": "ToolTipBorderBrushProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "ToolTipPosition": "ToolTipPosition", + "ToolTipPositionProperty": "ToolTipPositionProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty" + } + } + ], + "CategoryToolTipLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryToolTipLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryToolTipLayerDescription()": "CategoryToolTipLayerDescription()", + "CategoryToolTipLayerDescription": "CategoryToolTipLayerDescription()", + "TargetAxisRef": "TargetAxisRef", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipPosition": "ToolTipPosition", + "Type": "Type", + "UseInterpolation": "UseInterpolation" + } + } + ], + "CategoryToolTipLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryToolTipLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryToolTipLayerDescriptionMetadata()": "CategoryToolTipLayerDescriptionMetadata()", + "CategoryToolTipLayerDescriptionMetadata": "CategoryToolTipLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryToolTipLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryToolTipLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryToolTipLayerDescriptionModule()": "CategoryToolTipLayerDescriptionModule()", + "CategoryToolTipLayerDescriptionModule": "CategoryToolTipLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryTooltipLayerPosition": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CategoryTooltipLayerPosition", + "k": "enum", + "s": "enums" + } + ], + "CategoryTransitionInMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CategoryTransitionInMode", + "k": "enum", + "s": "enums" + } + ], + "CategoryXAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryXAxis", + "k": "class", + "s": "classes", + "m": { + "CategoryXAxis()": "CategoryXAxis()", + "CategoryXAxis": "CategoryXAxis()", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIntervalProperty": "CompanionAxisIntervalProperty", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisMinorIntervalProperty": "CompanionAxisMinorIntervalProperty", + "GetWindowZoomFromCategories(double)": "GetWindowZoomFromCategories(double)", + "GetWindowZoomFromCategories": "GetWindowZoomFromCategories(double)", + "GetWindowZoomFromItemSpan(double)": "GetWindowZoomFromItemSpan(double)", + "GetWindowZoomFromItemSpan": "GetWindowZoomFromItemSpan(double)", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "ScrollIntoView(object)": "ScrollIntoView(object)", + "ScrollIntoView": "ScrollIntoView(object)", + "ScrollRangeIntoView(double, double)": "ScrollRangeIntoView(double, double)", + "ScrollRangeIntoView": "ScrollRangeIntoView(double, double)", + "ZoomMaximumCategoryRange": "ZoomMaximumCategoryRange", + "ZoomMaximumCategoryRangeProperty": "ZoomMaximumCategoryRangeProperty", + "ZoomMaximumItemSpan": "ZoomMaximumItemSpan", + "ZoomMaximumItemSpanProperty": "ZoomMaximumItemSpanProperty", + "ZoomToCategoryRange": "ZoomToCategoryRange", + "ZoomToCategoryRangeProperty": "ZoomToCategoryRangeProperty", + "ZoomToCategoryStart": "ZoomToCategoryStart", + "ZoomToCategoryStartProperty": "ZoomToCategoryStartProperty", + "ZoomToItemSpan": "ZoomToItemSpan", + "ZoomToItemSpanProperty": "ZoomToItemSpanProperty" + } + } + ], + "CategoryXAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryXAxisDescription()": "CategoryXAxisDescription()", + "CategoryXAxisDescription": "CategoryXAxisDescription()", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalChangeRef": "ActualMinorIntervalChangeRef", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "Interval": "Interval", + "MinorInterval": "MinorInterval", + "Type": "Type", + "ZoomMaximumCategoryRange": "ZoomMaximumCategoryRange", + "ZoomMaximumItemSpan": "ZoomMaximumItemSpan", + "ZoomToCategoryRange": "ZoomToCategoryRange", + "ZoomToCategoryStart": "ZoomToCategoryStart", + "ZoomToItemSpan": "ZoomToItemSpan" + } + } + ], + "CategoryXAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryXAxisDescriptionMetadata()": "CategoryXAxisDescriptionMetadata()", + "CategoryXAxisDescriptionMetadata": "CategoryXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryXAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryXAxisDescriptionModule()": "CategoryXAxisDescriptionModule()", + "CategoryXAxisDescriptionModule": "CategoryXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryYAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CategoryYAxis", + "k": "class", + "s": "classes", + "m": { + "CategoryYAxis()": "CategoryYAxis()", + "CategoryYAxis": "CategoryYAxis()", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIntervalProperty": "CompanionAxisIntervalProperty", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisMinorIntervalProperty": "CompanionAxisMinorIntervalProperty", + "GetWindowZoomFromCategories(double)": "GetWindowZoomFromCategories(double)", + "GetWindowZoomFromCategories": "GetWindowZoomFromCategories(double)", + "GetWindowZoomFromItemSpan(double)": "GetWindowZoomFromItemSpan(double)", + "GetWindowZoomFromItemSpan": "GetWindowZoomFromItemSpan(double)", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "ScrollIntoView(object)": "ScrollIntoView(object)", + "ScrollIntoView": "ScrollIntoView(object)", + "ScrollRangeIntoView(double, double)": "ScrollRangeIntoView(double, double)", + "ScrollRangeIntoView": "ScrollRangeIntoView(double, double)", + "ZoomMaximumCategoryRange": "ZoomMaximumCategoryRange", + "ZoomMaximumCategoryRangeProperty": "ZoomMaximumCategoryRangeProperty", + "ZoomMaximumItemSpan": "ZoomMaximumItemSpan", + "ZoomMaximumItemSpanProperty": "ZoomMaximumItemSpanProperty", + "ZoomToCategoryRange": "ZoomToCategoryRange", + "ZoomToCategoryRangeProperty": "ZoomToCategoryRangeProperty", + "ZoomToCategoryStart": "ZoomToCategoryStart", + "ZoomToCategoryStartProperty": "ZoomToCategoryStartProperty", + "ZoomToItemSpan": "ZoomToItemSpan", + "ZoomToItemSpanProperty": "ZoomToItemSpanProperty" + } + } + ], + "CategoryYAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryYAxisDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryYAxisDescription()": "CategoryYAxisDescription()", + "CategoryYAxisDescription": "CategoryYAxisDescription()", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalChangeRef": "ActualMinorIntervalChangeRef", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "Interval": "Interval", + "MinorInterval": "MinorInterval", + "Type": "Type", + "ZoomMaximumCategoryRange": "ZoomMaximumCategoryRange", + "ZoomMaximumItemSpan": "ZoomMaximumItemSpan", + "ZoomToCategoryRange": "ZoomToCategoryRange", + "ZoomToCategoryStart": "ZoomToCategoryStart", + "ZoomToItemSpan": "ZoomToItemSpan" + } + } + ], + "CategoryYAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryYAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryYAxisDescriptionMetadata()": "CategoryYAxisDescriptionMetadata()", + "CategoryYAxisDescriptionMetadata": "CategoryYAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryYAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CategoryYAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryYAxisDescriptionModule()": "CategoryYAxisDescriptionModule()", + "CategoryYAxisDescriptionModule": "CategoryYAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellActionManagerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellActionManagerDescription", + "k": "class", + "s": "classes", + "m": { + "CellActionManagerDescription()": "CellActionManagerDescription()", + "CellActionManagerDescription": "CellActionManagerDescription()", + "IsControlPressed": "IsControlPressed", + "IsShiftPressed": "IsShiftPressed", + "Type": "Type" + } + } + ], + "CellActionManagerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellActionManagerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellActionManagerDescriptionMetadata()": "CellActionManagerDescriptionMetadata()", + "CellActionManagerDescriptionMetadata": "CellActionManagerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellContentHorizontalAlignment": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/CellContentHorizontalAlignment", + "k": "enum", + "s": "enums" + } + ], + "CellContentVerticalAlignment": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/CellContentVerticalAlignment", + "k": "enum", + "s": "enums" + } + ], + "CellDataLoadedAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/CellDataLoadedAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "CellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/CellInfo", + "k": "class", + "s": "classes", + "m": { + "ActionManager": "ActionManager", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderBottomWidthPropertyName": "ActivationBorderBottomWidthPropertyName", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderLeftWidthPropertyName": "ActivationBorderLeftWidthPropertyName", + "ActivationBorderPropertyName": "ActivationBorderPropertyName", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderRightWidthPropertyName": "ActivationBorderRightWidthPropertyName", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationBorderTopWidthPropertyName": "ActivationBorderTopWidthPropertyName", + "ActivationStatus": "ActivationStatus", + "ActivationStatusPropertyName": "ActivationStatusPropertyName", + "ActualBackground": "ActualBackground", + "ActualBackgroundPropertyName": "ActualBackgroundPropertyName", + "ActualBorder": "ActualBorder", + "ActualBorderBottomWidth": "ActualBorderBottomWidth", + "ActualBorderBottomWidthPropertyName": "ActualBorderBottomWidthPropertyName", + "ActualBorderLeftWidth": "ActualBorderLeftWidth", + "ActualBorderLeftWidthPropertyName": "ActualBorderLeftWidthPropertyName", + "ActualBorderPropertyName": "ActualBorderPropertyName", + "ActualBorderRightWidth": "ActualBorderRightWidth", + "ActualBorderRightWidthPropertyName": "ActualBorderRightWidthPropertyName", + "ActualBorderTopWidth": "ActualBorderTopWidth", + "ActualBorderTopWidthPropertyName": "ActualBorderTopWidthPropertyName", + "ActualContentOpacity": "ActualContentOpacity", + "ActualContentOpacityPropertyName": "ActualContentOpacityPropertyName", + "ActualFontInfoPropertyName": "ActualFontInfoPropertyName", + "ActualOpacity": "ActualOpacity", + "ActualOpacityPropertyName": "ActualOpacityPropertyName", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingBottomPropertyName": "ActualPaddingBottomPropertyName", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingLeftPropertyName": "ActualPaddingLeftPropertyName", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingRightPropertyName": "ActualPaddingRightPropertyName", + "ActualPaddingTop": "ActualPaddingTop", + "ActualPaddingTopPropertyName": "ActualPaddingTopPropertyName", + "ActualTextColor": "ActualTextColor", + "ActualTextColorPropertyName": "ActualTextColorPropertyName", + "Background": "Background", + "BackgroundPropertyName": "BackgroundPropertyName", + "Border": "Border", + "BorderBottomWidth": "BorderBottomWidth", + "BorderBottomWidthPropertyName": "BorderBottomWidthPropertyName", + "BorderLeftWidth": "BorderLeftWidth", + "BorderLeftWidthPropertyName": "BorderLeftWidthPropertyName", + "BorderPropertyName": "BorderPropertyName", + "BorderRightWidth": "BorderRightWidth", + "BorderRightWidthPropertyName": "BorderRightWidthPropertyName", + "BorderTopWidth": "BorderTopWidth", + "BorderTopWidthPropertyName": "BorderTopWidthPropertyName", + "ColumnIdx": "ColumnIdx", + "ContentOpacity": "ContentOpacity", + "ContentOpacityPropertyName": "ContentOpacityPropertyName", + "DataRow": "DataRow", + "DeletedTextColor": "DeletedTextColor", + "DeletedTextColorPropertyName": "DeletedTextColorPropertyName", + "EditError": "EditError", + "EditErrorPropertyName": "EditErrorPropertyName", + "EditFontFamily": "EditFontFamily", + "EditFontInfoPropertyName": "EditFontInfoPropertyName", + "EditFontSize": "EditFontSize", + "EditFontStyle": "EditFontStyle", + "EditFontWeight": "EditFontWeight", + "EditID": "EditID", + "EditOpacity": "EditOpacity", + "EditOpacityPropertyName": "EditOpacityPropertyName", + "ErrorBorder": "ErrorBorder", + "ErrorBorderBottomWidth": "ErrorBorderBottomWidth", + "ErrorBorderBottomWidthPropertyName": "ErrorBorderBottomWidthPropertyName", + "ErrorBorderLeftWidth": "ErrorBorderLeftWidth", + "ErrorBorderLeftWidthPropertyName": "ErrorBorderLeftWidthPropertyName", + "ErrorBorderPropertyName": "ErrorBorderPropertyName", + "ErrorBorderRightWidth": "ErrorBorderRightWidth", + "ErrorBorderRightWidthPropertyName": "ErrorBorderRightWidthPropertyName", + "ErrorBorderTopWidth": "ErrorBorderTopWidth", + "ErrorBorderTopWidthPropertyName": "ErrorBorderTopWidthPropertyName", + "ExpansionIndicatorIconColor": "ExpansionIndicatorIconColor", + "ExpansionIndicatorIconColorPropertyName": "ExpansionIndicatorIconColorPropertyName", + "FilterRowBackground": "FilterRowBackground", + "FontFamily": "FontFamily", + "FontInfoPropertyName": "FontInfoPropertyName", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "GetNamedValue(string)": "GetNamedValue(string)", + "GetNamedValue": "GetNamedValue(string)", + "HasNamedValue(string)": "HasNamedValue(string)", + "HasNamedValue": "HasNamedValue(string)", + "Height": "Height", + "HeightPropertyName": "HeightPropertyName", + "HorizontalAlignment": "HorizontalAlignment", + "HorizontalAlignmentPropertyName": "HorizontalAlignmentPropertyName", + "HoverBackground": "HoverBackground", + "HoverBackgroundPropertyName": "HoverBackgroundPropertyName", + "HoverStatus": "HoverStatus", + "HoverStatusPropertyName": "HoverStatusPropertyName", + "HoverTextColor": "HoverTextColor", + "HoverTextColorPropertyName": "HoverTextColorPropertyName", + "Indent": "Indent", + "IsBorderDirty": "IsBorderDirty", + "IsCollapsable": "IsCollapsable", + "IsCollapsablePropertyName": "IsCollapsablePropertyName", + "IsContentDirty": "IsContentDirty", + "IsCustomFieldDirty(string)": "IsCustomFieldDirty(string)", + "IsCustomFieldDirty": "IsCustomFieldDirty(string)", + "IsDataDirty": "IsDataDirty", + "IsDeleted": "IsDeleted", + "IsDeletedPropertyName": "IsDeletedPropertyName", + "IsDirty(string)": "IsDirty(string)", + "IsDirty": "IsDirty(string)", + "IsDirtyById(int)": "IsDirtyById(int)", + "IsDirtyById": "IsDirtyById(int)", + "IsEdited": "IsEdited", + "IsEditedPropertyName": "IsEditedPropertyName", + "IsExpanded": "IsExpanded", + "IsExpandedPropertyName": "IsExpandedPropertyName", + "IsFilterRow": "IsFilterRow", + "IsFirstRootSummarySeparator": "IsFirstRootSummarySeparator", + "IsHitTestVisible": "IsHitTestVisible", + "IsHoverable": "IsHoverable", + "IsInEditMode": "IsInEditMode", + "IsLastStickyRow": "IsLastStickyRow", + "IsLayerDirty": "IsLayerDirty", + "IsPlaceholdContentNeeded": "IsPlaceholdContentNeeded", + "IsPositionDirty": "IsPositionDirty", + "IsRootSummary": "IsRootSummary", + "IsRowPinned": "IsRowPinned", + "IsRowSticky": "IsRowSticky", + "IsSectionSummary": "IsSectionSummary", + "IsSelected": "IsSelected", + "IsSelectedPropertyName": "IsSelectedPropertyName", + "IsSizeDirty": "IsSizeDirty", + "IsStateDirty": "IsStateDirty", + "LastStickyRowBackground": "LastStickyRowBackground", + "LineBreakMode": "LineBreakMode", + "Opacity": "Opacity", + "OpacityPropertyName": "OpacityPropertyName", + "OriginalValue": "OriginalValue", + "OriginalValuePropertyName": "OriginalValuePropertyName", + "PaddingBottom": "PaddingBottom", + "PaddingBottomPropertyName": "PaddingBottomPropertyName", + "PaddingLeft": "PaddingLeft", + "PaddingLeftPropertyName": "PaddingLeftPropertyName", + "PaddingRight": "PaddingRight", + "PaddingRightPropertyName": "PaddingRightPropertyName", + "PaddingTop": "PaddingTop", + "PaddingTopPropertyName": "PaddingTopPropertyName", + "Pinned": "Pinned", + "PinnedPropertyName": "PinnedPropertyName", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowOpacity": "PinnedRowOpacity", + "RemoveNamedValue(string)": "RemoveNamedValue(string)", + "RemoveNamedValue": "RemoveNamedValue(string)", + "RenderValue": "RenderValue", + "RenderValuePropertyName": "RenderValuePropertyName", + "RowItem": "RowItem", + "RowItemPropertyName": "RowItemPropertyName", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundPropertyName": "SelectedBackgroundPropertyName", + "SelectedStatus": "SelectedStatus", + "SelectedStatusPropertyName": "SelectedStatusPropertyName", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorPropertyName": "SelectedTextColorPropertyName", + "SetNamedValue(string, object)": "SetNamedValue(string, object)", + "SetNamedValue": "SetNamedValue(string, object)", + "SortDirection": "SortDirection", + "SortDirectionPropertyName": "SortDirectionPropertyName", + "SortIndicatorColor": "SortIndicatorColor", + "SortIndicatorColorPropertyName": "SortIndicatorColorPropertyName", + "StickyRowBackground": "StickyRowBackground", + "StyleKey": "StyleKey", + "SuffixIconCollectionName": "SuffixIconCollectionName", + "SuffixIconCollectionNamePropertyName": "SuffixIconCollectionNamePropertyName", + "SuffixIconFill": "SuffixIconFill", + "SuffixIconFillPropertyName": "SuffixIconFillPropertyName", + "SuffixIconName": "SuffixIconName", + "SuffixIconNamePropertyName": "SuffixIconNamePropertyName", + "SuffixIconStroke": "SuffixIconStroke", + "SuffixIconStrokePropertyName": "SuffixIconStrokePropertyName", + "SuffixIconViewBoxHeight": "SuffixIconViewBoxHeight", + "SuffixIconViewBoxHeightPropertyName": "SuffixIconViewBoxHeightPropertyName", + "SuffixIconViewBoxLeft": "SuffixIconViewBoxLeft", + "SuffixIconViewBoxLeftPropertyName": "SuffixIconViewBoxLeftPropertyName", + "SuffixIconViewBoxTop": "SuffixIconViewBoxTop", + "SuffixIconViewBoxTopPropertyName": "SuffixIconViewBoxTopPropertyName", + "SuffixIconViewBoxWidth": "SuffixIconViewBoxWidth", + "SuffixIconViewBoxWidthPropertyName": "SuffixIconViewBoxWidthPropertyName", + "SuffixMargin": "SuffixMargin", + "SuffixMarginPropertyName": "SuffixMarginPropertyName", + "SuffixText": "SuffixText", + "SuffixTextColor": "SuffixTextColor", + "SuffixTextColorPropertyName": "SuffixTextColorPropertyName", + "SuffixTextFontFamily": "SuffixTextFontFamily", + "SuffixTextFontInfoPropertyName": "SuffixTextFontInfoPropertyName", + "SuffixTextFontPropertyName": "SuffixTextFontPropertyName", + "SuffixTextFontSize": "SuffixTextFontSize", + "SuffixTextFontStyle": "SuffixTextFontStyle", + "SuffixTextFontWeight": "SuffixTextFontWeight", + "SuffixTextPropertyName": "SuffixTextPropertyName", + "TextColor": "TextColor", + "TextColorPropertyName": "TextColorPropertyName", + "TextDecoration": "TextDecoration", + "TextDecorationPropertyName": "TextDecorationPropertyName", + "UserFormattedValue": "UserFormattedValue", + "UserFormattedValuePropertyName": "UserFormattedValuePropertyName", + "VerticalAlignment": "VerticalAlignment", + "VerticalAlignmentPropertyName": "VerticalAlignmentPropertyName", + "VirtualizationPercentage": "VirtualizationPercentage", + "VirtualizationPercentagePropertyName": "VirtualizationPercentagePropertyName", + "Width": "Width", + "WidthPropertyName": "WidthPropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "CellInfoDescription()": "CellInfoDescription()", + "CellInfoDescription": "CellInfoDescription()", + "ActionManager": "ActionManager", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationStatus": "ActivationStatus", + "ActualBackground": "ActualBackground", + "ActualBorder": "ActualBorder", + "ActualBorderBottomWidth": "ActualBorderBottomWidth", + "ActualBorderLeftWidth": "ActualBorderLeftWidth", + "ActualBorderRightWidth": "ActualBorderRightWidth", + "ActualBorderTopWidth": "ActualBorderTopWidth", + "ActualContentOpacity": "ActualContentOpacity", + "ActualFontFamily": "ActualFontFamily", + "ActualFontSize": "ActualFontSize", + "ActualFontStyle": "ActualFontStyle", + "ActualFontWeight": "ActualFontWeight", + "ActualOpacity": "ActualOpacity", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingTop": "ActualPaddingTop", + "ActualTextColor": "ActualTextColor", + "Background": "Background", + "Border": "Border", + "BorderBottomWidth": "BorderBottomWidth", + "BorderLeftWidth": "BorderLeftWidth", + "BorderRightWidth": "BorderRightWidth", + "BorderTopWidth": "BorderTopWidth", + "ColumnIdx": "ColumnIdx", + "ContentOpacity": "ContentOpacity", + "DataRow": "DataRow", + "DeletedTextColor": "DeletedTextColor", + "EditError": "EditError", + "EditFontFamily": "EditFontFamily", + "EditFontSize": "EditFontSize", + "EditFontStyle": "EditFontStyle", + "EditFontWeight": "EditFontWeight", + "EditID": "EditID", + "EditOpacity": "EditOpacity", + "ErrorBorder": "ErrorBorder", + "ErrorBorderBottomWidth": "ErrorBorderBottomWidth", + "ErrorBorderLeftWidth": "ErrorBorderLeftWidth", + "ErrorBorderRightWidth": "ErrorBorderRightWidth", + "ErrorBorderTopWidth": "ErrorBorderTopWidth", + "ExpansionIndicatorIconColor": "ExpansionIndicatorIconColor", + "FilterRowBackground": "FilterRowBackground", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "Height": "Height", + "HorizontalAlignment": "HorizontalAlignment", + "HoverBackground": "HoverBackground", + "HoverStatus": "HoverStatus", + "HoverTextColor": "HoverTextColor", + "Indent": "Indent", + "IsBorderDirty": "IsBorderDirty", + "IsCollapsable": "IsCollapsable", + "IsContentDirty": "IsContentDirty", + "IsDataDirty": "IsDataDirty", + "IsDeleted": "IsDeleted", + "IsEdited": "IsEdited", + "IsExpanded": "IsExpanded", + "IsFilterRow": "IsFilterRow", + "IsFirstRootSummarySeparator": "IsFirstRootSummarySeparator", + "IsHitTestVisible": "IsHitTestVisible", + "IsHoverable": "IsHoverable", + "IsInEditMode": "IsInEditMode", + "IsLastStickyRow": "IsLastStickyRow", + "IsLayerDirty": "IsLayerDirty", + "IsPlaceholdContentNeeded": "IsPlaceholdContentNeeded", + "IsPositionDirty": "IsPositionDirty", + "IsRootSummary": "IsRootSummary", + "IsRowPinned": "IsRowPinned", + "IsRowSticky": "IsRowSticky", + "IsSectionSummary": "IsSectionSummary", + "IsSelected": "IsSelected", + "IsSizeDirty": "IsSizeDirty", + "IsStateDirty": "IsStateDirty", + "LastStickyRowBackground": "LastStickyRowBackground", + "LineBreakMode": "LineBreakMode", + "Opacity": "Opacity", + "OriginalValueRef": "OriginalValueRef", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "Pinned": "Pinned", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowOpacity": "PinnedRowOpacity", + "RenderValue": "RenderValue", + "RowItemRef": "RowItemRef", + "SelectedBackground": "SelectedBackground", + "SelectedStatus": "SelectedStatus", + "SelectedTextColor": "SelectedTextColor", + "SnappedX": "SnappedX", + "SnappedY": "SnappedY", + "SortDirection": "SortDirection", + "SortIndicatorColor": "SortIndicatorColor", + "StickyRowBackground": "StickyRowBackground", + "StyleKey": "StyleKey", + "SuffixIconCollectionName": "SuffixIconCollectionName", + "SuffixIconFill": "SuffixIconFill", + "SuffixIconName": "SuffixIconName", + "SuffixIconStroke": "SuffixIconStroke", + "SuffixIconViewBoxHeight": "SuffixIconViewBoxHeight", + "SuffixIconViewBoxLeft": "SuffixIconViewBoxLeft", + "SuffixIconViewBoxTop": "SuffixIconViewBoxTop", + "SuffixIconViewBoxWidth": "SuffixIconViewBoxWidth", + "SuffixMargin": "SuffixMargin", + "SuffixText": "SuffixText", + "SuffixTextColor": "SuffixTextColor", + "SuffixTextFontFamily": "SuffixTextFontFamily", + "SuffixTextFontSize": "SuffixTextFontSize", + "SuffixTextFontStyle": "SuffixTextFontStyle", + "SuffixTextFontWeight": "SuffixTextFontWeight", + "TextColor": "TextColor", + "TextDecoration": "TextDecoration", + "Type": "Type", + "UserFormattedValue": "UserFormattedValue", + "VerticalAlignment": "VerticalAlignment", + "VirtualizationPercentage": "VirtualizationPercentage", + "Width": "Width", + "X": "X", + "Y": "Y" + } + } + ], + "CellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellInfoDescriptionMetadata()": "CellInfoDescriptionMetadata()", + "CellInfoDescriptionMetadata": "CellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellKey": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/CellKey", + "k": "class", + "s": "classes", + "m": { + "CellKey()": "CellKey()", + "CellKey": "CellKey()", + "ColumnUniqueKey": "ColumnUniqueKey", + "PrimaryKey": "PrimaryKey", + "ResolvedColumn": "ResolvedColumn", + "RowItem": "RowItem", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CellKeyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellKeyDescription", + "k": "class", + "s": "classes", + "m": { + "CellKeyDescription()": "CellKeyDescription()", + "CellKeyDescription": "CellKeyDescription()", + "ColumnUniqueKey": "ColumnUniqueKey", + "PrimaryKey": "PrimaryKey", + "ResolvedColumn": "ResolvedColumn", + "RowItem": "RowItem", + "Type": "Type" + } + } + ], + "CellKeyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellKeyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellKeyDescriptionMetadata()": "CellKeyDescriptionMetadata()", + "CellKeyDescriptionMetadata": "CellKeyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellKeyDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellKeyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CellKeyDescriptionModule()": "CellKeyDescriptionModule()", + "CellKeyDescriptionModule": "CellKeyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/CellModelExport", + "k": "class", + "s": "classes", + "m": { + "CellModelExport()": "CellModelExport()", + "CellModelExport": "CellModelExport()", + "ActivationStatus": "ActivationStatus", + "BackgroundBrushData": "BackgroundBrushData", + "BorderBrushData": "BorderBrushData", + "ContentOpacity": "ContentOpacity", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStretch": "FontStretch", + "FontStyle": "FontStyle", + "FontVariant": "FontVariant", + "FontWeight": "FontWeight", + "Height": "Height", + "HorizontalAlignment": "HorizontalAlignment", + "Indent": "Indent", + "IsCollapsable": "IsCollapsable", + "LineBreakMode": "LineBreakMode", + "Opacity": "Opacity", + "RenderValue": "RenderValue", + "SelectedStatus": "SelectedStatus", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "SnappedX": "SnappedX", + "SnappedY": "SnappedY", + "SortDirection": "SortDirection", + "TextColor": "TextColor", + "Type": "Type", + "VerticalAlignment": "VerticalAlignment", + "VirtualizationPercentage": "VirtualizationPercentage", + "Width": "Width", + "X": "X", + "Y": "Y" + } + } + ], + "CellPropertyAnimationType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/CellPropertyAnimationType", + "k": "enum", + "s": "enums" + } + ], + "CellRange": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/CellRange", + "k": "class", + "s": "classes", + "m": { + "CellRange()": "CellRange()", + "CellRange": "CellRange()", + "EndColumn": "EndColumn", + "EndRow": "EndRow", + "StartColumn": "StartColumn", + "StartRow": "StartRow", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CellRangeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellRangeDescription", + "k": "class", + "s": "classes", + "m": { + "CellRangeDescription()": "CellRangeDescription()", + "CellRangeDescription": "CellRangeDescription()", + "EndColumn": "EndColumn", + "EndRow": "EndRow", + "StartColumn": "StartColumn", + "StartRow": "StartRow", + "Type": "Type" + } + } + ], + "CellRangeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellRangeDescriptionMetadata()": "CellRangeDescriptionMetadata()", + "CellRangeDescriptionMetadata": "CellRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellRangeDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellRangeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CellRangeDescriptionModule()": "CellRangeDescriptionModule()", + "CellRangeDescriptionModule": "CellRangeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellSelectionAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/CellSelectionAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "CellStyleRequestedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/CellStyleRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "CellStyleRequestedEventArgs()": "CellStyleRequestedEventArgs()", + "CellStyleRequestedEventArgs": "CellStyleRequestedEventArgs()", + "ResolvedValue": "ResolvedValue", + "RowNumber": "RowNumber", + "StyleKey": "StyleKey", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CellStyleRequestedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellStyleRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CellStyleRequestedEventArgsDescription()": "CellStyleRequestedEventArgsDescription()", + "CellStyleRequestedEventArgsDescription": "CellStyleRequestedEventArgsDescription()", + "ResolvedValueRef": "ResolvedValueRef", + "RowNumber": "RowNumber", + "StyleKey": "StyleKey", + "Type": "Type" + } + } + ], + "CellStyleRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CellStyleRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellStyleRequestedEventArgsDescriptionMetadata()": "CellStyleRequestedEventArgsDescriptionMetadata()", + "CellStyleRequestedEventArgsDescriptionMetadata": "CellStyleRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/CellType", + "k": "enum", + "s": "enums" + } + ], + "ChaikinOscillatorIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChaikinOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "ChaikinOscillatorIndicator()": "ChaikinOscillatorIndicator()", + "ChaikinOscillatorIndicator": "ChaikinOscillatorIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty" + } + } + ], + "ChaikinOscillatorIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChaikinOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "ChaikinOscillatorIndicatorDescription()": "ChaikinOscillatorIndicatorDescription()", + "ChaikinOscillatorIndicatorDescription": "ChaikinOscillatorIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "Type": "Type" + } + } + ], + "ChaikinOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChaikinOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChaikinOscillatorIndicatorDescriptionMetadata()": "ChaikinOscillatorIndicatorDescriptionMetadata()", + "ChaikinOscillatorIndicatorDescriptionMetadata": "ChaikinOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChaikinOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChaikinOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChaikinOscillatorIndicatorDescriptionModule()": "ChaikinOscillatorIndicatorDescriptionModule()", + "ChaikinOscillatorIndicatorDescriptionModule": "ChaikinOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChaikinVolatilityIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChaikinVolatilityIndicator", + "k": "class", + "s": "classes", + "m": { + "ChaikinVolatilityIndicator()": "ChaikinVolatilityIndicator()", + "ChaikinVolatilityIndicator": "ChaikinVolatilityIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "ChaikinVolatilityIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChaikinVolatilityIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "ChaikinVolatilityIndicatorDescription()": "ChaikinVolatilityIndicatorDescription()", + "ChaikinVolatilityIndicatorDescription": "ChaikinVolatilityIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "ChaikinVolatilityIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChaikinVolatilityIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChaikinVolatilityIndicatorDescriptionMetadata()": "ChaikinVolatilityIndicatorDescriptionMetadata()", + "ChaikinVolatilityIndicatorDescriptionMetadata": "ChaikinVolatilityIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChaikinVolatilityIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChaikinVolatilityIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChaikinVolatilityIndicatorDescriptionModule()": "ChaikinVolatilityIndicatorDescriptionModule()", + "ChaikinVolatilityIndicatorDescriptionModule": "ChaikinVolatilityIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartCursorEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartCursorEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ChartCursorEventArgsDescription()": "ChartCursorEventArgsDescription()", + "ChartCursorEventArgsDescription": "ChartCursorEventArgsDescription()", + "ItemRef": "ItemRef", + "Series": "Series", + "SeriesViewer": "SeriesViewer", + "Type": "Type" + } + } + ], + "ChartCursorEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartCursorEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartCursorEventArgsDescriptionMetadata()": "ChartCursorEventArgsDescriptionMetadata()", + "ChartCursorEventArgsDescriptionMetadata": "ChartCursorEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartDefaultTooltipData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartDefaultTooltipData", + "k": "class", + "s": "classes", + "m": { + "ChartDefaultTooltipData()": "ChartDefaultTooltipData()", + "ChartDefaultTooltipData": "ChartDefaultTooltipData()", + "OffsetX": "OffsetX", + "OffsetY": "OffsetY", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SeriesData": "SeriesData", + "Viewport": "Viewport" + } + } + ], + "ChartDefaultTooltipSeriesData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartDefaultTooltipSeriesData", + "k": "class", + "s": "classes", + "m": { + "ChartDefaultTooltipSeriesData()": "ChartDefaultTooltipSeriesData()", + "ChartDefaultTooltipSeriesData": "ChartDefaultTooltipSeriesData()", + "AxisLabel": "AxisLabel", + "BadgeBrush": "BadgeBrush", + "BadgeLineBrush": "BadgeLineBrush", + "BadgeOutline": "BadgeOutline", + "BadgeShape": "BadgeShape", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SeriesTitle": "SeriesTitle", + "SeriesTitleBrush": "SeriesTitleBrush", + "SeriesValues": "SeriesValues", + "StaticText": "StaticText", + "ValueNames": "ValueNames" + } + } + ], + "ChartGroupDescription": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescription()": "ChartGroupDescription()", + "ChartGroupDescription": "ChartGroupDescription()", + "ChartGroupDescription(string)": "ChartGroupDescription(string)", + "ChartGroupDescription(string, ListSortDirection)": "ChartGroupDescription(string, ListSortDirection)" + } + } + ], + "ChartGroupDescriptionCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartGroupDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescriptionCollection()": "ChartGroupDescriptionCollection()", + "ChartGroupDescriptionCollection": "ChartGroupDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartGroupDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartGroupDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescriptionDescription()": "ChartGroupDescriptionDescription()", + "ChartGroupDescriptionDescription": "ChartGroupDescriptionDescription()", + "Type": "Type" + } + } + ], + "ChartGroupDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartGroupDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescriptionDescriptionMetadata()": "ChartGroupDescriptionDescriptionMetadata()", + "ChartGroupDescriptionDescriptionMetadata": "ChartGroupDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartGroupDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartGroupDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescriptionDescriptionModule()": "ChartGroupDescriptionDescriptionModule()", + "ChartGroupDescriptionDescriptionModule": "ChartGroupDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartHitTestMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ChartHitTestMode", + "k": "enum", + "s": "enums" + } + ], + "ChartMouseEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartMouseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ChartMouseEventArgsDescription()": "ChartMouseEventArgsDescription()", + "ChartMouseEventArgsDescription": "ChartMouseEventArgsDescription()", + "Chart": "Chart", + "Item": "Item", + "PlotAreaPosition": "PlotAreaPosition", + "SeriesRef": "SeriesRef", + "Type": "Type", + "WorldPosition": "WorldPosition" + } + } + ], + "ChartMouseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartMouseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartMouseEventArgsDescriptionMetadata()": "ChartMouseEventArgsDescriptionMetadata()", + "ChartMouseEventArgsDescriptionMetadata": "ChartMouseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartResizeIdleEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartResizeIdleEventArgs", + "k": "class", + "s": "classes", + "m": { + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartResizeIdleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartResizeIdleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ChartResizeIdleEventArgsDescription()": "ChartResizeIdleEventArgsDescription()", + "ChartResizeIdleEventArgsDescription": "ChartResizeIdleEventArgsDescription()", + "Type": "Type" + } + } + ], + "ChartResizeIdleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartResizeIdleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartResizeIdleEventArgsDescriptionMetadata()": "ChartResizeIdleEventArgsDescriptionMetadata()", + "ChartResizeIdleEventArgsDescriptionMetadata": "ChartResizeIdleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSelectedItemCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartSelectedItemCollection", + "k": "class", + "s": "classes", + "m": { + "ChartSelectedItemCollection()": "ChartSelectedItemCollection()", + "ChartSelectedItemCollection": "ChartSelectedItemCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSelection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartSelection", + "k": "class", + "s": "classes", + "m": { + "ChartSelection()": "ChartSelection()", + "ChartSelection": "ChartSelection()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Item": "Item", + "Matcher": "Matcher", + "Series": "Series", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSelectionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSelectionDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSelectionDescription()": "ChartSelectionDescription()", + "ChartSelectionDescription": "ChartSelectionDescription()", + "Item": "Item", + "Matcher": "Matcher", + "SeriesRef": "SeriesRef", + "Type": "Type" + } + } + ], + "ChartSelectionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSelectionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartSelectionDescriptionMetadata()": "ChartSelectionDescriptionMetadata()", + "ChartSelectionDescriptionMetadata": "ChartSelectionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSelectionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSelectionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChartSelectionDescriptionModule()": "ChartSelectionDescriptionModule()", + "ChartSelectionDescriptionModule": "ChartSelectionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSeriesEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartSeriesEventArgs", + "k": "class", + "s": "classes", + "m": { + "Series": "Series", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSeriesEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSeriesEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSeriesEventArgsDescription()": "ChartSeriesEventArgsDescription()", + "ChartSeriesEventArgsDescription": "ChartSeriesEventArgsDescription()", + "Series": "Series", + "Type": "Type" + } + } + ], + "ChartSeriesEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSeriesEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartSeriesEventArgsDescriptionMetadata()": "ChartSeriesEventArgsDescriptionMetadata()", + "ChartSeriesEventArgsDescriptionMetadata": "ChartSeriesEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSortDescription": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartSortDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescription()": "ChartSortDescription()", + "ChartSortDescription": "ChartSortDescription()", + "ChartSortDescription(string)": "ChartSortDescription(string)", + "ChartSortDescription(string, ListSortDirection)": "ChartSortDescription(string, ListSortDirection)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "SortDirection": "SortDirection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSortDescriptionCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartSortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescriptionCollection()": "ChartSortDescriptionCollection()", + "ChartSortDescriptionCollection": "ChartSortDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSortDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSortDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescriptionDescription()": "ChartSortDescriptionDescription()", + "ChartSortDescriptionDescription": "ChartSortDescriptionDescription()", + "Field": "Field", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "ChartSortDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSortDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescriptionDescriptionMetadata()": "ChartSortDescriptionDescriptionMetadata()", + "ChartSortDescriptionDescriptionMetadata": "ChartSortDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSortDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSortDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescriptionDescriptionModule()": "ChartSortDescriptionDescriptionModule()", + "ChartSortDescriptionDescriptionModule": "ChartSortDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSummaryDescription": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartSummaryDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescription()": "ChartSummaryDescription()", + "ChartSummaryDescription": "ChartSummaryDescription()", + "ChartSummaryDescription(string)": "ChartSummaryDescription(string)", + "ChartSummaryDescription(string, DataSourceSummaryOperand)": "ChartSummaryDescription(string, DataSourceSummaryOperand)", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "OnProvideCalculator(ProvideCalculatorEventArgs)": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "OnProvideCalculator": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "Operand": "Operand", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSummaryDescriptionCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartSummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescriptionCollection()": "ChartSummaryDescriptionCollection()", + "ChartSummaryDescriptionCollection": "ChartSummaryDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSummaryDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSummaryDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescriptionDescription()": "ChartSummaryDescriptionDescription()", + "ChartSummaryDescriptionDescription": "ChartSummaryDescriptionDescription()", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Field": "Field", + "Operand": "Operand", + "ProvideCalculatorRef": "ProvideCalculatorRef", + "Type": "Type" + } + } + ], + "ChartSummaryDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSummaryDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescriptionDescriptionMetadata()": "ChartSummaryDescriptionDescriptionMetadata()", + "ChartSummaryDescriptionDescriptionMetadata": "ChartSummaryDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSummaryDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChartSummaryDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescriptionDescriptionModule()": "ChartSummaryDescriptionDescriptionModule()", + "ChartSummaryDescriptionDescriptionModule": "ChartSummaryDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartTitleVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartTitleVisualData", + "k": "class", + "s": "classes", + "m": { + "ChartTitleVisualData()": "ChartTitleVisualData()", + "ChartTitleVisualData": "ChartTitleVisualData()", + "Appearance": "Appearance", + "Height": "Height", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TextPlotArea": "TextPlotArea", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "ChartTitleVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartTitleVisualDataList", + "k": "class", + "s": "classes", + "m": { + "ChartTitleVisualDataList()": "ChartTitleVisualDataList()", + "ChartTitleVisualDataList": "ChartTitleVisualDataList()" + } + } + ], + "ChartToolTipContainerAdapter": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartToolTipContainerAdapter", + "k": "class", + "s": "classes", + "m": { + "ChartToolTipContainerAdapter(CoreDispatcher)": "ChartToolTipContainerAdapter(CoreDispatcher)", + "ChartToolTipContainerAdapter": "ChartToolTipContainerAdapter(CoreDispatcher)", + "Context": "Context", + "GetView(DataContext, UIElement, CustomContentUpdateInfo)": "GetView(DataContext, UIElement, CustomContentUpdateInfo)", + "GetView": "GetView(DataContext, UIElement, CustomContentUpdateInfo)" + } + } + ], + "ChartToolTipUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartToolTipUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "ChartToolTipUpdatingEventArgs()": "ChartToolTipUpdatingEventArgs()", + "ChartToolTipUpdatingEventArgs": "ChartToolTipUpdatingEventArgs()", + "CurrentData": "CurrentData", + "CurrentView": "CurrentView", + "UpdateInfo": "UpdateInfo" + } + } + ], + "ChartVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ChartVisualData", + "k": "class", + "s": "classes", + "m": { + "ChartVisualData()": "ChartVisualData()", + "ChartVisualData": "ChartVisualData()", + "Axes": "Axes", + "CentralArea": "CentralArea", + "ContentArea": "ContentArea", + "DefaultTooltipData": "DefaultTooltipData", + "DipScalingRatio": "DipScalingRatio", + "GetBounds()": "GetBounds()", + "GetBounds": "GetBounds()", + "GetSerializedSeriesPoints(string, string, GetPointsSettings)": "GetSerializedSeriesPoints(string, string, GetPointsSettings)", + "GetSerializedSeriesPoints": "GetSerializedSeriesPoints(string, string, GetPointsSettings)", + "Height": "Height", + "IsViewportScaled": "IsViewportScaled", + "Name": "Name", + "PlotArea": "PlotArea", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Series": "Series", + "Subtitle": "Subtitle", + "Title": "Title", + "Width": "Width" + } + } + ], + "CheckboxChangeEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/CheckboxChangeEventArgs", + "k": "class", + "s": "classes", + "m": { + "CheckboxChangeEventArgs()": "CheckboxChangeEventArgs()", + "CheckboxChangeEventArgs": "CheckboxChangeEventArgs()", + "IsChecked": "IsChecked", + "IsIndeterminate": "IsIndeterminate", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CheckboxChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxChangeEventArgsDescription()": "CheckboxChangeEventArgsDescription()", + "CheckboxChangeEventArgsDescription": "CheckboxChangeEventArgsDescription()", + "IsChecked": "IsChecked", + "IsIndeterminate": "IsIndeterminate", + "Type": "Type" + } + } + ], + "CheckboxChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxChangeEventArgsDescriptionMetadata()": "CheckboxChangeEventArgsDescriptionMetadata()", + "CheckboxChangeEventArgsDescriptionMetadata": "CheckboxChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxDescription()": "CheckboxDescription()", + "CheckboxDescription": "CheckboxDescription()", + "ActualBorderWidth": "ActualBorderWidth", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCornerRadius": "ActualCornerRadius", + "ActualTickColor": "ActualTickColor", + "ActualTickStrokeWidth": "ActualTickStrokeWidth", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "AriaLabel": "AriaLabel", + "AriaLabelledBy": "AriaLabelledBy", + "BaseTheme": "BaseTheme", + "BorderWidth": "BorderWidth", + "ChangeRef": "ChangeRef", + "Checked": "Checked", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "CornerRadius": "CornerRadius", + "DisableRipple": "DisableRipple", + "DisableTransitions": "DisableTransitions", + "Disabled": "Disabled", + "Focused": "Focused", + "Id": "Id", + "Indeterminate": "Indeterminate", + "InputId": "InputId", + "LabelId": "LabelId", + "LabelPosition": "LabelPosition", + "Required": "Required", + "TabIndex": "TabIndex", + "TickColor": "TickColor", + "TickStrokeWidth": "TickStrokeWidth", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor", + "ValueRef": "ValueRef" + } + } + ], + "CheckboxDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxDescriptionMetadata()": "CheckboxDescriptionMetadata()", + "CheckboxDescriptionMetadata": "CheckboxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CheckboxDescriptionModule()": "CheckboxDescriptionModule()", + "CheckboxDescriptionModule": "CheckboxDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxLabelPosition": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/CheckboxLabelPosition", + "k": "enum", + "s": "enums" + } + ], + "CheckboxListDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxListDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxListDescription()": "CheckboxListDescription()", + "CheckboxListDescription": "CheckboxListDescription()", + "ActualSelectAllCaptionTextColor": "ActualSelectAllCaptionTextColor", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "CheckboxAlignedRight": "CheckboxAlignedRight", + "CheckboxCheckedBackgroundColor": "CheckboxCheckedBackgroundColor", + "CheckboxCheckedBorderColor": "CheckboxCheckedBorderColor", + "CheckboxCornerRadius": "CheckboxCornerRadius", + "CheckboxTickColor": "CheckboxTickColor", + "CheckboxUncheckedBackgroundColor": "CheckboxUncheckedBackgroundColor", + "CheckboxUncheckedBorderColor": "CheckboxUncheckedBorderColor", + "CheckedChangedRef": "CheckedChangedRef", + "DataLegendTargetRef": "DataLegendTargetRef", + "DataMemberPath": "DataMemberPath", + "DataSourceRef": "DataSourceRef", + "Density": "Density", + "FilterPlaceholderText": "FilterPlaceholderText", + "IndexType": "IndexType", + "IndexTypeChangedRef": "IndexTypeChangedRef", + "IsRowHoverEnabled": "IsRowHoverEnabled", + "Keys": "Keys", + "KeysClearedRef": "KeysClearedRef", + "LabelClickTriggersChange": "LabelClickTriggersChange", + "LabelClickedRef": "LabelClickedRef", + "PrimaryKey": "PrimaryKey", + "PropertyTypeMemberPath": "PropertyTypeMemberPath", + "RowHeight": "RowHeight", + "RowHoverBackgroundColor": "RowHoverBackgroundColor", + "ScrollbarActiveBackground": "ScrollbarActiveBackground", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarHoverBackground": "ScrollbarHoverBackground", + "ScrollbarStyle": "ScrollbarStyle", + "SearchBackgroundColor": "SearchBackgroundColor", + "SearchBorderColor": "SearchBorderColor", + "SearchFocusBorderColor": "SearchFocusBorderColor", + "SearchFontFamily": "SearchFontFamily", + "SearchFontSize": "SearchFontSize", + "SearchFontStyle": "SearchFontStyle", + "SearchFontWeight": "SearchFontWeight", + "SearchIconColor": "SearchIconColor", + "SearchInputType": "SearchInputType", + "SearchTextColor": "SearchTextColor", + "SelectAllCaption": "SelectAllCaption", + "SelectAllCaptionTextColor": "SelectAllCaptionTextColor", + "SelectAllCheckboxChangedRef": "SelectAllCheckboxChangedRef", + "SelectedKeyAddedRef": "SelectedKeyAddedRef", + "SelectedKeyRemovedRef": "SelectedKeyRemovedRef", + "SelectedMemberPath": "SelectedMemberPath", + "ShowFilter": "ShowFilter", + "ShowSelectAll": "ShowSelectAll", + "SubtitleMemberPath": "SubtitleMemberPath", + "TextColor": "TextColor", + "Type": "Type" + } + } + ], + "CheckboxListDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxListDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxListDescriptionMetadata()": "CheckboxListDescriptionMetadata()", + "CheckboxListDescriptionMetadata": "CheckboxListDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxListDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxListDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CheckboxListDescriptionModule()": "CheckboxListDescriptionModule()", + "CheckboxListDescriptionModule": "CheckboxListDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxListIndexType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/CheckboxListIndexType", + "k": "enum", + "s": "enums" + } + ], + "CheckboxListIndexTypeChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/CheckboxListIndexTypeChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "CheckboxListIndexTypeChangedEventArgs()": "CheckboxListIndexTypeChangedEventArgs()", + "CheckboxListIndexTypeChangedEventArgs": "CheckboxListIndexTypeChangedEventArgs()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CheckboxListIndexTypeChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxListIndexTypeChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxListIndexTypeChangedEventArgsDescription()": "CheckboxListIndexTypeChangedEventArgsDescription()", + "CheckboxListIndexTypeChangedEventArgsDescription": "CheckboxListIndexTypeChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxListIndexTypeChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata()": "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata()", + "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata": "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxListKeysClearedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/CheckboxListKeysClearedEventArgs", + "k": "class", + "s": "classes", + "m": { + "CheckboxListKeysClearedEventArgs()": "CheckboxListKeysClearedEventArgs()", + "CheckboxListKeysClearedEventArgs": "CheckboxListKeysClearedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CheckboxListKeysClearedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxListKeysClearedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxListKeysClearedEventArgsDescription()": "CheckboxListKeysClearedEventArgsDescription()", + "CheckboxListKeysClearedEventArgsDescription": "CheckboxListKeysClearedEventArgsDescription()", + "Type": "Type" + } + } + ], + "CheckboxListKeysClearedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckboxListKeysClearedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxListKeysClearedEventArgsDescriptionMetadata()": "CheckboxListKeysClearedEventArgsDescriptionMetadata()", + "CheckboxListKeysClearedEventArgsDescriptionMetadata": "CheckboxListKeysClearedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxListVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/CheckboxListVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "CheckboxListVisualModelExport()": "CheckboxListVisualModelExport()", + "CheckboxListVisualModelExport": "CheckboxListVisualModelExport()", + "ActualRowHeight": "ActualRowHeight", + "ActualSelectAllCaptionTextColor": "ActualSelectAllCaptionTextColor", + "BackgroundColor": "BackgroundColor", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Width": "Width" + } + } + ], + "CheckboxVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/CheckboxVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "CheckboxVisualModelExport()": "CheckboxVisualModelExport()", + "CheckboxVisualModelExport": "CheckboxVisualModelExport()", + "ActualBorderWidth": "ActualBorderWidth", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCornerRadius": "ActualCornerRadius", + "ActualTickColor": "ActualTickColor", + "ActualTickStrokeWidth": "ActualTickStrokeWidth", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "BorderWidth": "BorderWidth", + "CornerRadius": "CornerRadius", + "DisableRipple": "DisableRipple", + "Height": "Height", + "IsChecked": "IsChecked", + "IsDisabled": "IsDisabled", + "IsFocused": "IsFocused", + "IsIndeterminate": "IsIndeterminate", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TickStrokeWidth": "TickStrokeWidth", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "CheckedChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/CheckedChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "CheckedChangedEventArgs()": "CheckedChangedEventArgs()", + "CheckedChangedEventArgs": "CheckedChangedEventArgs()", + "Index": "Index", + "IsChecked": "IsChecked", + "PrimaryKey": "PrimaryKey", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CheckedChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckedChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CheckedChangedEventArgsDescription()": "CheckedChangedEventArgsDescription()", + "CheckedChangedEventArgsDescription": "CheckedChangedEventArgsDescription()", + "Index": "Index", + "IsChecked": "IsChecked", + "PrimaryKeyRef": "PrimaryKeyRef", + "Type": "Type" + } + } + ], + "CheckedChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CheckedChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckedChangedEventArgsDescriptionMetadata()": "CheckedChangedEventArgsDescriptionMetadata()", + "CheckedChangedEventArgsDescriptionMetadata": "CheckedChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChildContentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChildContentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChildContentDescriptionModule()": "ChildContentDescriptionModule()", + "ChildContentDescriptionModule": "ChildContentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChildContentExtendedDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ChildContentExtendedDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChildContentExtendedDescriptionModule()": "ChildContentExtendedDescriptionModule()", + "ChildContentExtendedDescriptionModule": "ChildContentExtendedDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CircleCollisionGeometry": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CircleCollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "CircleCollisionGeometry(double, double, double)": "CircleCollisionGeometry(double, double, double)", + "CircleCollisionGeometry": "CircleCollisionGeometry(double, double, double)", + "BoundingBox": "BoundingBox", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "Type": "Type" + } + } + ], + "ClientScriptAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/ClientScriptAttribute", + "k": "class", + "s": "classes", + "m": { + "ClientScriptAttribute(string)": "ClientScriptAttribute(string)", + "ClientScriptAttribute": "ClientScriptAttribute(string)", + "ClientScript": "ClientScript" + } + } + ], + "CloneDataSourceFilterOperation": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/CloneDataSourceFilterOperation", + "k": "enum", + "s": "enums" + } + ], + "CodeGeneratingComponentRenderer": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGeneratingComponentRenderer", + "k": "class", + "s": "classes", + "m": { + "AllowEnumIntCoerce()": "AllowEnumIntCoerce()", + "AllowEnumIntCoerce": "AllowEnumIntCoerce()", + "EmitCode(ICodeGenerationRendererTemplate)": "EmitCode(ICodeGenerationRendererTemplate)", + "EmitCode": "EmitCode(ICodeGenerationRendererTemplate)", + "LoadCodeJson(string)": "LoadCodeJson(string)", + "LoadCodeJson": "LoadCodeJson(string)", + "MarkRefUsed(string)": "MarkRefUsed(string)", + "MarkRefUsed": "MarkRefUsed(string)", + "OnSkipAlterDataCasingAltered(bool)": "OnSkipAlterDataCasingAltered(bool)", + "OnSkipAlterDataCasingAltered": "OnSkipAlterDataCasingAltered(bool)", + "ResolveCustomMemberPathTransformer()": "ResolveCustomMemberPathTransformer()", + "ResolveCustomMemberPathTransformer": "ResolveCustomMemberPathTransformer()", + "ShouldForcePascal()": "ShouldForcePascal()", + "ShouldForcePascal": "ShouldForcePascal()", + "ToBrush(string)": "ToBrush(string)", + "ToBrush": "ToBrush(string)", + "ToColor(string)": "ToColor(string)", + "ToColor": "ToColor(string)" + } + } + ], + "CodeGeneratingComponentRendererFactory": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGeneratingComponentRendererFactory", + "k": "class", + "s": "classes", + "m": { + "Create(CodeGenerationTargetPlatforms, CodeGenerationRendererOptions)": "Create(CodeGenerationTargetPlatforms, CodeGenerationRendererOptions)", + "Create": "Create(CodeGenerationTargetPlatforms, CodeGenerationRendererOptions)" + } + } + ], + "CodeGeneratingImportManager": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGeneratingImportManager", + "k": "class", + "s": "classes", + "m": { + "CodeGeneratingImportManager()": "CodeGeneratingImportManager()", + "CodeGeneratingImportManager": "CodeGeneratingImportManager()", + "AddDefaultImport(string, string)": "AddDefaultImport(string, string)", + "AddDefaultImport": "AddDefaultImport(string, string)", + "AddPackageImport(string, string)": "AddPackageImport(string, string)", + "AddPackageImport": "AddPackageImport(string, string)", + "AddUsing(string)": "AddUsing(string)", + "AddUsing": "AddUsing(string)", + "Any()": "Any()", + "Any": "Any()", + "HasPackageImports": "HasPackageImports", + "IsImportsOnly": "IsImportsOnly", + "Merge(CodeGeneratingImportManager, CodeGeneratingImportManager)": "Merge(CodeGeneratingImportManager, CodeGeneratingImportManager)", + "Merge": "Merge(CodeGeneratingImportManager, CodeGeneratingImportManager)", + "PackageImportsToString()": "PackageImportsToString()", + "PackageImportsToString": "PackageImportsToString()", + "PackageOverride": "PackageOverride", + "RemoveDuplicates(CodeGeneratingImportManager)": "RemoveDuplicates(CodeGeneratingImportManager)", + "RemoveDuplicates": "RemoveDuplicates(CodeGeneratingImportManager)", + "UsingsToString(bool)": "UsingsToString(bool)", + "UsingsToString": "UsingsToString(bool)" + } + } + ], + "CodeGeneratingRendererResult": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGeneratingRendererResult", + "k": "class", + "s": "classes", + "m": { + "CodeGeneratingRendererResult()": "CodeGeneratingRendererResult()", + "CodeGeneratingRendererResult": "CodeGeneratingRendererResult()", + "AddContainerNewFileResult(string, string)": "AddContainerNewFileResult(string, string)", + "AddContainerNewFileResult": "AddContainerNewFileResult(string, string)", + "AddContainerResult(string, string)": "AddContainerResult(string, string)", + "AddContainerResult": "AddContainerResult(string, string)", + "AddImportResult(string, CodeGeneratingImportManager)": "AddImportResult(string, CodeGeneratingImportManager)", + "AddImportResult": "AddImportResult(string, CodeGeneratingImportManager)", + "AddPackageRef(string)": "AddPackageRef(string)", + "AddPackageRef": "AddPackageRef(string)", + "DefineString(string, string)": "DefineString(string, string)", + "DefineString": "DefineString(string, string)", + "GenerationOptions": "GenerationOptions", + "GetContentForKey(string)": "GetContentForKey(string)", + "GetContentForKey": "GetContentForKey(string)", + "GetDescriptionField(string)": "GetDescriptionField(string)", + "GetDescriptionField": "GetDescriptionField(string)", + "GetImportsArrayForKey(string)": "GetImportsArrayForKey(string)", + "GetImportsArrayForKey": "GetImportsArrayForKey(string)", + "GetImportsKeys()": "GetImportsKeys()", + "GetImportsKeys": "GetImportsKeys()", + "GetKeys()": "GetKeys()", + "GetKeys": "GetKeys()", + "GetNewFileContent(string)": "GetNewFileContent(string)", + "GetNewFileContent": "GetNewFileContent(string)", + "GetNewFiles()": "GetNewFiles()", + "GetNewFiles": "GetNewFiles()", + "GetPackages()": "GetPackages()", + "GetPackages": "GetPackages()", + "GetString(string)": "GetString(string)", + "GetString": "GetString(string)", + "GetStringNames()": "GetStringNames()", + "GetStringNames": "GetStringNames()", + "HasDescription(string)": "HasDescription(string)", + "HasDescription": "HasDescription(string)", + "Platform": "Platform", + "TrackDescriptionField(string, string)": "TrackDescriptionField(string, string)", + "TrackDescriptionField": "TrackDescriptionField(string, string)" + } + } + ], + "CodeGenerationContainer": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGenerationContainer", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationContainer()": "CodeGenerationContainer()", + "CodeGenerationContainer": "CodeGenerationContainer()", + "Id": "Id", + "MarkRefUsed(string)": "MarkRefUsed(string)", + "MarkRefUsed": "MarkRefUsed(string)" + } + } + ], + "CodeGenerationFolderTemplate": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGenerationFolderTemplate", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationFolderTemplate()": "CodeGenerationFolderTemplate()", + "CodeGenerationFolderTemplate": "CodeGenerationFolderTemplate()", + "AddFile(string, string)": "AddFile(string, string)", + "AddFile": "AddFile(string, string)", + "Execute(CodeGeneratingRendererResult)": "Execute(CodeGeneratingRendererResult)", + "Execute": "Execute(CodeGeneratingRendererResult)", + "GetFileOuutput(string)": "GetFileOuutput(string)", + "GetFileOuutput": "GetFileOuutput(string)", + "GetFilePaths()": "GetFilePaths()", + "GetFilePaths": "GetFilePaths()", + "GetOutput(Dictionary, bool)": "GetOutput(Dictionary, bool)", + "GetOutput": "GetOutput(Dictionary, bool)", + "LoadTemplate(string)": "LoadTemplate(string)", + "LoadTemplate": "LoadTemplate(string)", + "LoadTemplateFromJson(string)": "LoadTemplateFromJson(string)", + "LoadTemplateFromJson": "LoadTemplateFromJson(string)", + "SaveOutput(string, bool)": "SaveOutput(string, bool)", + "SaveOutput": "SaveOutput(string, bool)", + "SaveTemplateToJson()": "SaveTemplateToJson()", + "SaveTemplateToJson": "SaveTemplateToJson()" + } + } + ], + "CodeGenerationLibrary": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGenerationLibrary", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationLibrary()": "CodeGenerationLibrary()", + "CodeGenerationLibrary": "CodeGenerationLibrary()", + "AddItemFromFolder(string, string)": "AddItemFromFolder(string, string)", + "AddItemFromFolder": "AddItemFromFolder(string, string)", + "FromFolder(string)": "FromFolder(string)", + "FromFolder": "FromFolder(string)", + "FromJson(string)": "FromJson(string)", + "FromJson": "FromJson(string)", + "GetItem(string)": "GetItem(string)", + "GetItem": "GetItem(string)", + "GetKeys()": "GetKeys()", + "GetKeys": "GetKeys()", + "HasItem(string)": "HasItem(string)", + "HasItem": "HasItem(string)", + "ToJson()": "ToJson()", + "ToJson": "ToJson()" + } + } + ], + "CodeGenerationLibraryItem": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGenerationLibraryItem", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationLibraryItem()": "CodeGenerationLibraryItem()", + "CodeGenerationLibraryItem": "CodeGenerationLibraryItem()", + "AddPlatformContent(CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemContent)": "AddPlatformContent(CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemContent)", + "AddPlatformContent": "AddPlatformContent(CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemContent)", + "AddPlatformsFromFile(string)": "AddPlatformsFromFile(string)", + "AddPlatformsFromFile": "AddPlatformsFromFile(string)", + "GetConfigForPlatform(CodeGenerationTargetPlatforms)": "GetConfigForPlatform(CodeGenerationTargetPlatforms)", + "GetConfigForPlatform": "GetConfigForPlatform(CodeGenerationTargetPlatforms)", + "GetConfigForPlatformString(string)": "GetConfigForPlatformString(string)", + "GetConfigForPlatformString": "GetConfigForPlatformString(string)", + "GetContentForPlatform(CodeGenerationTargetPlatforms)": "GetContentForPlatform(CodeGenerationTargetPlatforms)", + "GetContentForPlatform": "GetContentForPlatform(CodeGenerationTargetPlatforms)", + "GetContentForPlatformString(string)": "GetContentForPlatformString(string)", + "GetContentForPlatformString": "GetContentForPlatformString(string)", + "Name": "Name", + "Type": "Type" + } + } + ], + "CodeGenerationLibraryItemContent": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGenerationLibraryItemContent", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationLibraryItemContent()": "CodeGenerationLibraryItemContent()", + "CodeGenerationLibraryItemContent": "CodeGenerationLibraryItemContent()", + "Configs": "Configs", + "Content": "Content", + "IsAsync": "IsAsync", + "IsJSContent": "IsJSContent", + "IsJSX": "IsJSX", + "IsJson": "IsJson", + "Platform": "Platform" + } + } + ], + "CodeGenerationLibraryItemContentConfiguration": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGenerationLibraryItemContentConfiguration", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationLibraryItemContentConfiguration()": "CodeGenerationLibraryItemContentConfiguration()", + "CodeGenerationLibraryItemContentConfiguration": "CodeGenerationLibraryItemContentConfiguration()", + "Location": "Location", + "Platform": "Platform" + } + } + ], + "CodeGenerationLibraryItemContentLocation": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/CodeGenerationLibraryItemContentLocation", + "k": "enum", + "s": "enums" + } + ], + "CodeGenerationLibraryItemPlatform": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/CodeGenerationLibraryItemPlatform", + "k": "enum", + "s": "enums" + } + ], + "CodeGenerationLibraryItemType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/CodeGenerationLibraryItemType", + "k": "enum", + "s": "enums" + } + ], + "CodeGenerationRendererOptions": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CodeGenerationRendererOptions", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationRendererOptions()": "CodeGenerationRendererOptions()", + "CodeGenerationRendererOptions": "CodeGenerationRendererOptions()", + "CDNBasePath": "CDNBasePath", + "ForceCodeBehind": "ForceCodeBehind", + "ForceHelperLookups": "ForceHelperLookups", + "GenerateFullProject": "GenerateFullProject", + "IndentSpaces": "IndentSpaces", + "IsLibraryEmission": "IsLibraryEmission", + "Library": "Library", + "ReusedContext": "ReusedContext", + "SkipAlterDataCasing": "SkipAlterDataCasing", + "SkipAngularEventDestructuring": "SkipAngularEventDestructuring", + "UseSpacesForIndent": "UseSpacesForIndent" + } + } + ], + "CodeGenerationTargetPlatforms": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/CodeGenerationTargetPlatforms", + "k": "enum", + "s": "enums" + } + ], + "CollisionAvoidanceType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CollisionAvoidanceType", + "k": "enum", + "s": "enums" + } + ], + "CollisionGeometry": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "CollisionGeometry()": "CollisionGeometry()", + "CollisionGeometry": "CollisionGeometry()", + "BoundingBox": "BoundingBox", + "CollidesWith(CollisionRect)": "CollidesWith(CollisionRect)", + "CollidesWith": "CollidesWith(CollisionRect)", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "CollidesWithPoint(double, double)": "CollidesWithPoint(double, double)", + "CollidesWithPoint": "CollidesWithPoint(double, double)", + "Type": "Type" + } + } + ], + "CollisionGeometryType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/CollisionGeometryType", + "k": "enum", + "s": "enums" + } + ], + "CollisionRect": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CollisionRect", + "k": "class", + "s": "classes", + "m": { + "CollisionRect()": "CollisionRect()", + "CollisionRect": "CollisionRect()", + "CollisionRect(double, double, double, double)": "CollisionRect(double, double, double, double)", + "Bottom": "Bottom", + "Contains(CollisionRect)": "Contains(CollisionRect)", + "Contains": "Contains(CollisionRect)", + "Contains(double, double)": "Contains(double, double)", + "Copy()": "Copy()", + "Copy": "Copy()", + "Empty": "Empty", + "Equals(CollisionRect)": "Equals(CollisionRect)", + "Equals": "Equals(CollisionRect)", + "Equals(object)": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Height": "Height", + "Inflate(double, double)": "Inflate(double, double)", + "Inflate": "Inflate(double, double)", + "Intersect(CollisionRect)": "Intersect(CollisionRect)", + "Intersect": "Intersect(CollisionRect)", + "IntersectsWith(CollisionRect)": "IntersectsWith(CollisionRect)", + "IntersectsWith": "IntersectsWith(CollisionRect)", + "IsEmpty": "IsEmpty", + "Left": "Left", + "Right": "Right", + "Top": "Top", + "Union(CollisionRect)": "Union(CollisionRect)", + "Union": "Union(CollisionRect)", + "Width": "Width", + "X": "X", + "Y": "Y" + } + } + ], + "ColorData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorData", + "k": "class", + "s": "classes", + "m": { + "ColorData()": "ColorData()", + "ColorData": "ColorData()", + "A": "A", + "B": "B", + "G": "G", + "R": "R", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "ColorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorDescription", + "k": "class", + "s": "classes", + "m": { + "ColorDescription()": "ColorDescription()", + "ColorDescription": "ColorDescription()", + "Value": "Value" + } + } + ], + "ColorEditorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorDescription()": "ColorEditorDescription()", + "ColorEditorDescription": "ColorEditorDescription()", + "AllowTextInput": "AllowTextInput", + "BaseTheme": "BaseTheme", + "Density": "Density", + "GotFocusRef": "GotFocusRef", + "IconColor": "IconColor", + "IsDisabled": "IsDisabled", + "IsFixed": "IsFixed", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelTextColor": "LabelTextColor", + "LostFocusRef": "LostFocusRef", + "OpenAsChild": "OpenAsChild", + "OpenOnFocus": "OpenOnFocus", + "ShowClearButton": "ShowClearButton", + "TextColor": "TextColor", + "TextFontFamily": "TextFontFamily", + "TextFontSize": "TextFontSize", + "TextFontStyle": "TextFontStyle", + "TextFontWeight": "TextFontWeight", + "Type": "Type", + "UseTopLayer": "UseTopLayer", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef", + "ValueChangingRef": "ValueChangingRef" + } + } + ], + "ColorEditorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorDescriptionMetadata()": "ColorEditorDescriptionMetadata()", + "ColorEditorDescriptionMetadata": "ColorEditorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColorEditorDescriptionModule()": "ColorEditorDescriptionModule()", + "ColorEditorDescriptionModule": "ColorEditorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorGotFocusEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ColorEditorGotFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColorEditorGotFocusEventArgs()": "ColorEditorGotFocusEventArgs()", + "ColorEditorGotFocusEventArgs": "ColorEditorGotFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorEditorGotFocusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorGotFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorGotFocusEventArgsDescription()": "ColorEditorGotFocusEventArgsDescription()", + "ColorEditorGotFocusEventArgsDescription": "ColorEditorGotFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "ColorEditorGotFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorGotFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorGotFocusEventArgsDescriptionMetadata()": "ColorEditorGotFocusEventArgsDescriptionMetadata()", + "ColorEditorGotFocusEventArgsDescriptionMetadata": "ColorEditorGotFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorLostFocusEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ColorEditorLostFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColorEditorLostFocusEventArgs()": "ColorEditorLostFocusEventArgs()", + "ColorEditorLostFocusEventArgs": "ColorEditorLostFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorEditorLostFocusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorLostFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorLostFocusEventArgsDescription()": "ColorEditorLostFocusEventArgsDescription()", + "ColorEditorLostFocusEventArgsDescription": "ColorEditorLostFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "ColorEditorLostFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorLostFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorLostFocusEventArgsDescriptionMetadata()": "ColorEditorLostFocusEventArgsDescriptionMetadata()", + "ColorEditorLostFocusEventArgsDescriptionMetadata": "ColorEditorLostFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorPanelClosedEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ColorEditorPanelClosedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelClosedEventArgs()": "ColorEditorPanelClosedEventArgs()", + "ColorEditorPanelClosedEventArgs": "ColorEditorPanelClosedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorEditorPanelClosedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorPanelClosedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelClosedEventArgsDescription()": "ColorEditorPanelClosedEventArgsDescription()", + "ColorEditorPanelClosedEventArgsDescription": "ColorEditorPanelClosedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ColorEditorPanelClosedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorPanelClosedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelClosedEventArgsDescriptionMetadata()": "ColorEditorPanelClosedEventArgsDescriptionMetadata()", + "ColorEditorPanelClosedEventArgsDescriptionMetadata": "ColorEditorPanelClosedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorPanelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelDescription()": "ColorEditorPanelDescription()", + "ColorEditorPanelDescription": "ColorEditorPanelDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "Density": "Density", + "FocusColorBorderColor": "FocusColorBorderColor", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HoverBackgroundColor": "HoverBackgroundColor", + "PixelScalingRatio": "PixelScalingRatio", + "SelectedColorBorderColor": "SelectedColorBorderColor", + "SelectedFocusDateBackgroundColor": "SelectedFocusDateBackgroundColor", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef", + "ValueChangingRef": "ValueChangingRef" + } + } + ], + "ColorEditorPanelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelDescriptionMetadata()": "ColorEditorPanelDescriptionMetadata()", + "ColorEditorPanelDescriptionMetadata": "ColorEditorPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorPanelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelDescriptionModule()": "ColorEditorPanelDescriptionModule()", + "ColorEditorPanelDescriptionModule": "ColorEditorPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorPanelSelectedValueChangedEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ColorEditorPanelSelectedValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelSelectedValueChangedEventArgs()": "ColorEditorPanelSelectedValueChangedEventArgs()", + "ColorEditorPanelSelectedValueChangedEventArgs": "ColorEditorPanelSelectedValueChangedEventArgs()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorEditorPanelSelectedValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorPanelSelectedValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelSelectedValueChangedEventArgsDescription()": "ColorEditorPanelSelectedValueChangedEventArgsDescription()", + "ColorEditorPanelSelectedValueChangedEventArgsDescription": "ColorEditorPanelSelectedValueChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata()": "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata()", + "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata": "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/ColorEditorVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "ColorEditorVisualModelExport()": "ColorEditorVisualModelExport()", + "ColorEditorVisualModelExport": "ColorEditorVisualModelExport()", + "Height": "Height", + "IsDisabled": "IsDisabled", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "Colors": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/Colors", + "k": "class", + "s": "classes", + "m": { + "AliceBlue": "AliceBlue", + "AntiqueWhite": "AntiqueWhite", + "Aqua": "Aqua", + "Aquamarine": "Aquamarine", + "Azure": "Azure", + "Beige": "Beige", + "Bisque": "Bisque", + "Black": "Black", + "BlanchedAlmond": "BlanchedAlmond", + "Blue": "Blue", + "BlueViolet": "BlueViolet", + "Brown": "Brown", + "BurlyWood": "BurlyWood", + "CadetBlue": "CadetBlue", + "Chartreuse": "Chartreuse", + "Chocolate": "Chocolate", + "Coral": "Coral", + "CornflowerBlue": "CornflowerBlue", + "Cornsilk": "Cornsilk", + "Crimson": "Crimson", + "Cyan": "Cyan", + "DarkBlue": "DarkBlue", + "DarkCyan": "DarkCyan", + "DarkGoldenrod": "DarkGoldenrod", + "DarkGray": "DarkGray", + "DarkGreen": "DarkGreen", + "DarkKhaki": "DarkKhaki", + "DarkMagenta": "DarkMagenta", + "DarkOliveGreen": "DarkOliveGreen", + "DarkOrange": "DarkOrange", + "DarkOrchid": "DarkOrchid", + "DarkRed": "DarkRed", + "DarkSalmon": "DarkSalmon", + "DarkSeaGreen": "DarkSeaGreen", + "DarkSlateBlue": "DarkSlateBlue", + "DarkSlateGray": "DarkSlateGray", + "DarkTurquoise": "DarkTurquoise", + "DarkViolet": "DarkViolet", + "DeepPink": "DeepPink", + "DeepSkyBlue": "DeepSkyBlue", + "DimGray": "DimGray", + "DodgerBlue": "DodgerBlue", + "Firebrick": "Firebrick", + "FloralWhite": "FloralWhite", + "ForestGreen": "ForestGreen", + "Fuchsia": "Fuchsia", + "Gainsboro": "Gainsboro", + "GhostWhite": "GhostWhite", + "Gold": "Gold", + "Goldenrod": "Goldenrod", + "Gray": "Gray", + "Green": "Green", + "GreenYellow": "GreenYellow", + "Honeydew": "Honeydew", + "HotPink": "HotPink", + "IndianRed": "IndianRed", + "Indigo": "Indigo", + "Ivory": "Ivory", + "Khaki": "Khaki", + "Lavender": "Lavender", + "LavenderBlush": "LavenderBlush", + "LawnGreen": "LawnGreen", + "LemonChiffon": "LemonChiffon", + "LightBlue": "LightBlue", + "LightCoral": "LightCoral", + "LightCyan": "LightCyan", + "LightGoldenrodYellow": "LightGoldenrodYellow", + "LightGray": "LightGray", + "LightGreen": "LightGreen", + "LightPink": "LightPink", + "LightSalmon": "LightSalmon", + "LightSeaGreen": "LightSeaGreen", + "LightSkyBlue": "LightSkyBlue", + "LightSlateGray": "LightSlateGray", + "LightSteelBlue": "LightSteelBlue", + "LightYellow": "LightYellow", + "Lime": "Lime", + "LimeGreen": "LimeGreen", + "Linen": "Linen", + "Magenta": "Magenta", + "Maroon": "Maroon", + "MediumAquamarine": "MediumAquamarine", + "MediumBlue": "MediumBlue", + "MediumOrchid": "MediumOrchid", + "MediumPurple": "MediumPurple", + "MediumSeaGreen": "MediumSeaGreen", + "MediumSlateBlue": "MediumSlateBlue", + "MediumSpringGreen": "MediumSpringGreen", + "MediumTurquoise": "MediumTurquoise", + "MediumVioletRed": "MediumVioletRed", + "MidnightBlue": "MidnightBlue", + "MintCream": "MintCream", + "MistyRose": "MistyRose", + "Moccasin": "Moccasin", + "NavajoWhite": "NavajoWhite", + "Navy": "Navy", + "OldLace": "OldLace", + "Olive": "Olive", + "OliveDrab": "OliveDrab", + "Orange": "Orange", + "OrangeRed": "OrangeRed", + "Orchid": "Orchid", + "PaleGoldenrod": "PaleGoldenrod", + "PaleGreen": "PaleGreen", + "PaleTurquoise": "PaleTurquoise", + "PaleVioletRed": "PaleVioletRed", + "PapayaWhip": "PapayaWhip", + "PeachPuff": "PeachPuff", + "Peru": "Peru", + "Pink": "Pink", + "Plum": "Plum", + "PowderBlue": "PowderBlue", + "Purple": "Purple", + "Red": "Red", + "RosyBrown": "RosyBrown", + "RoyalBlue": "RoyalBlue", + "SaddleBrown": "SaddleBrown", + "Salmon": "Salmon", + "SandyBrown": "SandyBrown", + "SeaGreen": "SeaGreen", + "SeaShell": "SeaShell", + "Sienna": "Sienna", + "Silver": "Silver", + "SkyBlue": "SkyBlue", + "SlateBlue": "SlateBlue", + "SlateGray": "SlateGray", + "Snow": "Snow", + "SpringGreen": "SpringGreen", + "SteelBlue": "SteelBlue", + "Tan": "Tan", + "Teal": "Teal", + "Thistle": "Thistle", + "Tomato": "Tomato", + "Transparent": "Transparent", + "Turquoise": "Turquoise", + "Violet": "Violet", + "Wheat": "Wheat", + "White": "White", + "WhiteSmoke": "WhiteSmoke", + "Yellow": "Yellow", + "YellowGreen": "YellowGreen" + } + } + ], + "ColorScale": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ColorScale", + "k": "class", + "s": "classes", + "m": { + "GetColor(double, double, double, IList)": "GetColor(double, double, double, IList)", + "GetColor": "GetColor(double, double, double, IList)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorScaleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorScaleDescription", + "k": "class", + "s": "classes", + "m": { + "ColorScaleDescription()": "ColorScaleDescription()", + "ColorScaleDescription": "ColorScaleDescription()", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type" + } + } + ], + "ColorScaleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColorScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorScaleDescriptionMetadata()": "ColorScaleDescriptionMetadata()", + "ColorScaleDescriptionMetadata": "ColorScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorScaleInterpolationMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ColorScaleInterpolationMode", + "k": "enum", + "s": "enums" + } + ], + "Column": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/Column", + "k": "class", + "s": "classes", + "m": { + "Column()": "Column()", + "Column": "Column()" + } + } + ], + "ColumnChooserDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnChooserDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnChooserDescription()": "ColumnChooserDescription()", + "ColumnChooserDescription": "ColumnChooserDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "Density": "Density", + "FilterPlaceholderText": "FilterPlaceholderText", + "TargetGridRef": "TargetGridRef", + "Title": "Title", + "TitleColor": "TitleColor", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "Type": "Type" + } + } + ], + "ColumnChooserDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnChooserDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnChooserDescriptionMetadata()": "ColumnChooserDescriptionMetadata()", + "ColumnChooserDescriptionMetadata": "ColumnChooserDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnChooserDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnChooserDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnChooserDescriptionModule()": "ColumnChooserDescriptionModule()", + "ColumnChooserDescriptionModule": "ColumnChooserDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnComparisonConditionOperatorType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnComparisonConditionOperatorType", + "k": "enum", + "s": "enums" + } + ], + "ColumnComparisonFilterCondition": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnComparisonFilterCondition", + "k": "class", + "s": "classes", + "m": { + "ColumnComparisonFilterCondition()": "ColumnComparisonFilterCondition()", + "ColumnComparisonFilterCondition": "ColumnComparisonFilterCondition()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetApplicableOperators(DataSourceSchemaPropertyType)": "GetApplicableOperators(DataSourceSchemaPropertyType)", + "GetApplicableOperators": "GetApplicableOperators(DataSourceSchemaPropertyType)", + "GetOperandNumber(ColumnComparisonConditionOperatorType)": "GetOperandNumber(ColumnComparisonConditionOperatorType)", + "GetOperandNumber": "GetOperandNumber(ColumnComparisonConditionOperatorType)", + "GetOperandNumbers(ColumnComparisonConditionOperatorType[])": "GetOperandNumbers(ColumnComparisonConditionOperatorType[])", + "GetOperandNumbers": "GetOperandNumbers(ColumnComparisonConditionOperatorType[])", + "IsCaseSensitive": "IsCaseSensitive", + "Operator": "Operator", + "ResolveFilter(string, DataSourceSchemaPropertyType)": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ResolveFilter": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "Value": "Value" + } + } + ], + "ColumnComparisonFilterConditionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnComparisonFilterConditionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnComparisonFilterConditionDescription()": "ColumnComparisonFilterConditionDescription()", + "ColumnComparisonFilterConditionDescription": "ColumnComparisonFilterConditionDescription()", + "IsCaseSensitive": "IsCaseSensitive", + "Operator": "Operator", + "Type": "Type", + "Value": "Value" + } + } + ], + "ColumnComparisonFilterConditionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnComparisonFilterConditionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnComparisonFilterConditionDescriptionMetadata()": "ColumnComparisonFilterConditionDescriptionMetadata()", + "ColumnComparisonFilterConditionDescriptionMetadata": "ColumnComparisonFilterConditionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnCustomFilterCondition": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnCustomFilterCondition", + "k": "class", + "s": "classes", + "m": { + "ColumnCustomFilterCondition()": "ColumnCustomFilterCondition()", + "ColumnCustomFilterCondition": "ColumnCustomFilterCondition()", + "ID": "ID", + "Index": "Index", + "ResolveFilter(string, DataSourceSchemaPropertyType)": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ResolveFilter": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "Value": "Value" + } + } + ], + "ColumnCustomFilterConditionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnCustomFilterConditionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnCustomFilterConditionDescription()": "ColumnCustomFilterConditionDescription()", + "ColumnCustomFilterConditionDescription": "ColumnCustomFilterConditionDescription()", + "Id": "Id", + "Index": "Index", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "ColumnCustomFilterConditionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnCustomFilterConditionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnCustomFilterConditionDescriptionMetadata()": "ColumnCustomFilterConditionDescriptionMetadata()", + "ColumnCustomFilterConditionDescriptionMetadata": "ColumnCustomFilterConditionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnDependenciesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnDependenciesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnDependenciesDescriptionModule()": "ColumnDependenciesDescriptionModule()", + "ColumnDependenciesDescriptionModule": "ColumnDependenciesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnExchanger": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnExchanger", + "k": "class", + "s": "classes", + "m": { + "ColumnExchanger()": "ColumnExchanger()", + "ColumnExchanger": "ColumnExchanger()", + "ColumnExchanger(DataGridColumn, int)": "ColumnExchanger(DataGridColumn, int)", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "Column": "Column", + "ColumnProperty": "ColumnProperty", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "IsStoreInitialized": "IsStoreInitialized", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "TargetIndex": "TargetIndex", + "TargetIndexProperty": "TargetIndexProperty", + "ToString()": "ToString()", + "ToString": "ToString()", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnExchangerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnExchangerDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnExchangerDescription()": "ColumnExchangerDescription()", + "ColumnExchangerDescription": "ColumnExchangerDescription()", + "TargetIndex": "TargetIndex", + "Type": "Type" + } + } + ], + "ColumnExchangerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnExchangerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnExchangerDescriptionMetadata()": "ColumnExchangerDescriptionMetadata()", + "ColumnExchangerDescriptionMetadata": "ColumnExchangerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnExchangersCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnExchangersCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnExchangersCollection()": "ColumnExchangersCollection()", + "ColumnExchangersCollection": "ColumnExchangersCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnExchangingAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnExchangingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnFilterCondition": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnFilterCondition", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterCondition()": "ColumnFilterCondition()", + "ColumnFilterCondition": "ColumnFilterCondition()", + "IsGroup()": "IsGroup()", + "IsGroup": "IsGroup()", + "ResolveFilter(string, DataSourceSchemaPropertyType)": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ResolveFilter": "ResolveFilter(string, DataSourceSchemaPropertyType)" + } + } + ], + "ColumnFilterConditionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnFilterConditionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionDescription()": "ColumnFilterConditionDescription()", + "ColumnFilterConditionDescription": "ColumnFilterConditionDescription()", + "Type": "Type" + } + } + ], + "ColumnFilterConditionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnFilterConditionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionDescriptionMetadata()": "ColumnFilterConditionDescriptionMetadata()", + "ColumnFilterConditionDescriptionMetadata": "ColumnFilterConditionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnFilterConditionGroup": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnFilterConditionGroup", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionGroup()": "ColumnFilterConditionGroup()", + "ColumnFilterConditionGroup": "ColumnFilterConditionGroup()", + "Add(ColumnFilterCondition)": "Add(ColumnFilterCondition)", + "Add": "Add(ColumnFilterCondition)", + "Clear()": "Clear()", + "Clear": "Clear()", + "Conditions": "Conditions", + "Count": "Count", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "IsGroup()": "IsGroup()", + "IsGroup": "IsGroup()", + "this[int]": "this[int]", + "Remove(ColumnFilterCondition)": "Remove(ColumnFilterCondition)", + "Remove": "Remove(ColumnFilterCondition)", + "RemoveAt(int)": "RemoveAt(int)", + "RemoveAt": "RemoveAt(int)", + "ResolveFilter(string, DataSourceSchemaPropertyType)": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ResolveFilter": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ToArray()": "ToArray()", + "ToArray": "ToArray()", + "UsesOrOperator": "UsesOrOperator" + } + } + ], + "ColumnFilterConditionGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnFilterConditionGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionGroupDescription()": "ColumnFilterConditionGroupDescription()", + "ColumnFilterConditionGroupDescription": "ColumnFilterConditionGroupDescription()", + "Conditions": "Conditions", + "Item": "Item", + "Type": "Type", + "UsesOrOperator": "UsesOrOperator" + } + } + ], + "ColumnFilterConditionGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnFilterConditionGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionGroupDescriptionMetadata()": "ColumnFilterConditionGroupDescriptionMetadata()", + "ColumnFilterConditionGroupDescriptionMetadata": "ColumnFilterConditionGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnFragmentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnFragmentDescription()": "ColumnFragmentDescription()", + "ColumnFragmentDescription": "ColumnFragmentDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "ColumnFragmentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnFragmentDescriptionMetadata()": "ColumnFragmentDescriptionMetadata()", + "ColumnFragmentDescriptionMetadata": "ColumnFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnFragmentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnFragmentDescriptionModule()": "ColumnFragmentDescriptionModule()", + "ColumnFragmentDescriptionModule": "ColumnFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnGroupDescription": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescription()": "ColumnGroupDescription()", + "ColumnGroupDescription": "ColumnGroupDescription()", + "ColumnGroupDescription(string)": "ColumnGroupDescription(string)", + "ColumnGroupDescription(string, ListSortDirection)": "ColumnGroupDescription(string, ListSortDirection)", + "ColumnGroupDescription(string, ListSortDirection, string)": "ColumnGroupDescription(string, ListSortDirection, string)", + "DisplayFormat": "DisplayFormat", + "DisplayFormatSpecifiers": "DisplayFormatSpecifiers", + "DisplayName": "DisplayName", + "OnFormatText(FormatGroupTextEventArgs)": "OnFormatText(FormatGroupTextEventArgs)", + "OnFormatText": "OnFormatText(FormatGroupTextEventArgs)", + "ValueFormat": "ValueFormat", + "ValueFormatSpecifiers": "ValueFormatSpecifiers" + } + } + ], + "ColumnGroupDescriptionCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnGroupDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescriptionCollection()": "ColumnGroupDescriptionCollection()", + "ColumnGroupDescriptionCollection": "ColumnGroupDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnGroupDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnGroupDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescriptionDescription()": "ColumnGroupDescriptionDescription()", + "ColumnGroupDescriptionDescription": "ColumnGroupDescriptionDescription()", + "DisplayFormat": "DisplayFormat", + "DisplayFormatSpecifiers": "DisplayFormatSpecifiers", + "DisplayName": "DisplayName", + "FormatTextRef": "FormatTextRef", + "Type": "Type", + "ValueFormat": "ValueFormat", + "ValueFormatSpecifiers": "ValueFormatSpecifiers" + } + } + ], + "ColumnGroupDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnGroupDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescriptionDescriptionMetadata()": "ColumnGroupDescriptionDescriptionMetadata()", + "ColumnGroupDescriptionDescriptionMetadata": "ColumnGroupDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnGroupDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnGroupDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescriptionDescriptionModule()": "ColumnGroupDescriptionDescriptionModule()", + "ColumnGroupDescriptionDescriptionModule": "ColumnGroupDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnGroupingDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnGroupingDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupingDescription()": "ColumnGroupingDescription()", + "ColumnGroupingDescription": "ColumnGroupingDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "ColumnGroupTitleFontFamily": "ColumnGroupTitleFontFamily", + "ColumnGroupTitleFontSize": "ColumnGroupTitleFontSize", + "ColumnGroupTitleFontStyle": "ColumnGroupTitleFontStyle", + "ColumnGroupTitleFontWeight": "ColumnGroupTitleFontWeight", + "Density": "Density", + "IconColor": "IconColor", + "ItemBackgroundColor": "ItemBackgroundColor", + "ItemHoverBackgroundColor": "ItemHoverBackgroundColor", + "TargetGridRef": "TargetGridRef", + "TextColor": "TextColor", + "Title": "Title", + "TitleColor": "TitleColor", + "Type": "Type" + } + } + ], + "ColumnGroupingDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnGroupingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupingDescriptionMetadata()": "ColumnGroupingDescriptionMetadata()", + "ColumnGroupingDescriptionMetadata": "ColumnGroupingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnGroupingDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnGroupingDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupingDescriptionModule()": "ColumnGroupingDescriptionModule()", + "ColumnGroupingDescriptionModule": "ColumnGroupingDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnHiddenChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnHiddenChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColumnHiddenChangedEventArgs()": "ColumnHiddenChangedEventArgs()", + "ColumnHiddenChangedEventArgs": "ColumnHiddenChangedEventArgs()", + "Column": "Column", + "IsHidden": "IsHidden", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnHiddenChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnHiddenChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnHiddenChangedEventArgsDescription()": "ColumnHiddenChangedEventArgsDescription()", + "ColumnHiddenChangedEventArgsDescription": "ColumnHiddenChangedEventArgsDescription()", + "Column": "Column", + "IsHidden": "IsHidden", + "Type": "Type" + } + } + ], + "ColumnHiddenChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnHiddenChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnHiddenChangedEventArgsDescriptionMetadata()": "ColumnHiddenChangedEventArgsDescriptionMetadata()", + "ColumnHiddenChangedEventArgsDescriptionMetadata": "ColumnHiddenChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnHidingAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnHidingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnMovingAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnMovingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnMovingMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnMovingMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnMovingSeparator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnMovingSeparator", + "k": "class", + "s": "classes", + "m": { + "ColumnMovingSeparator()": "ColumnMovingSeparator()", + "ColumnMovingSeparator": "ColumnMovingSeparator()", + "ActualOpacity": "ActualOpacity", + "ActualOpacityProperty": "ActualOpacityProperty", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty", + "SeparatorWidth": "SeparatorWidth", + "SeparatorWidthProperty": "SeparatorWidthProperty" + } + } + ], + "ColumnMovingSeparatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnMovingSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnMovingSeparatorDescription()": "ColumnMovingSeparatorDescription()", + "ColumnMovingSeparatorDescription": "ColumnMovingSeparatorDescription()", + "ActualOpacity": "ActualOpacity", + "Opacity": "Opacity", + "SeparatorWidth": "SeparatorWidth", + "Type": "Type" + } + } + ], + "ColumnMovingSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnMovingSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnMovingSeparatorDescriptionMetadata()": "ColumnMovingSeparatorDescriptionMetadata()", + "ColumnMovingSeparatorDescriptionMetadata": "ColumnMovingSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnMovingSeparatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnMovingSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnMovingSeparatorDescriptionModule()": "ColumnMovingSeparatorDescriptionModule()", + "ColumnMovingSeparatorDescriptionModule": "ColumnMovingSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnOptionsIconAlignment": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnOptionsIconAlignment", + "k": "enum", + "s": "enums" + } + ], + "ColumnOptionsIconBehavior": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnOptionsIconBehavior", + "k": "enum", + "s": "enums" + } + ], + "ColumnPinnedChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnPinnedChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColumnPinnedChangedEventArgs()": "ColumnPinnedChangedEventArgs()", + "ColumnPinnedChangedEventArgs": "ColumnPinnedChangedEventArgs()", + "Column": "Column", + "Pinned": "Pinned", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnPinnedChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnPinnedChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnPinnedChangedEventArgsDescription()": "ColumnPinnedChangedEventArgsDescription()", + "ColumnPinnedChangedEventArgsDescription": "ColumnPinnedChangedEventArgsDescription()", + "Column": "Column", + "Pinned": "Pinned", + "Type": "Type" + } + } + ], + "ColumnPinnedChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnPinnedChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnPinnedChangedEventArgsDescriptionMetadata()": "ColumnPinnedChangedEventArgsDescriptionMetadata()", + "ColumnPinnedChangedEventArgsDescriptionMetadata": "ColumnPinnedChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnPinningDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnPinningDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnPinningDescription()": "ColumnPinningDescription()", + "ColumnPinningDescription": "ColumnPinningDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "Density": "Density", + "FilterPlaceholderText": "FilterPlaceholderText", + "TargetGridRef": "TargetGridRef", + "Title": "Title", + "TitleColor": "TitleColor", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "Type": "Type" + } + } + ], + "ColumnPinningDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnPinningDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnPinningDescriptionMetadata()": "ColumnPinningDescriptionMetadata()", + "ColumnPinningDescriptionMetadata": "ColumnPinningDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnPinningDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnPinningDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnPinningDescriptionModule()": "ColumnPinningDescriptionModule()", + "ColumnPinningDescriptionModule": "ColumnPinningDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnPropertySetter": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnPropertySetter", + "k": "class", + "s": "classes", + "m": { + "ColumnPropertySetter()": "ColumnPropertySetter()", + "ColumnPropertySetter": "ColumnPropertySetter()", + "ColumnPropertySetter(string, string, object)": "ColumnPropertySetter(string, string, object)", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "ColumnName": "ColumnName", + "ColumnNameProperty": "ColumnNameProperty", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "IsStoreInitialized": "IsStoreInitialized", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "PropertyName": "PropertyName", + "PropertyNameProperty": "PropertyNameProperty", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "ToString()": "ToString()", + "ToString": "ToString()", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnPropertySetterDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnPropertySetterDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnPropertySetterDescription()": "ColumnPropertySetterDescription()", + "ColumnPropertySetterDescription": "ColumnPropertySetterDescription()", + "ColumnName": "ColumnName", + "PropertyName": "PropertyName", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "ColumnPropertySetterDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnPropertySetterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnPropertySetterDescriptionMetadata()": "ColumnPropertySetterDescriptionMetadata()", + "ColumnPropertySetterDescriptionMetadata": "ColumnPropertySetterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnPropertySettersCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnPropertySettersCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnPropertySettersCollection()": "ColumnPropertySettersCollection()", + "ColumnPropertySettersCollection": "ColumnPropertySettersCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnPropertyUpdatingAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnPropertyUpdatingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnResizingAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnResizingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnResizingMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnResizingMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnResizingSeparator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnResizingSeparator", + "k": "class", + "s": "classes", + "m": { + "ColumnResizingSeparator()": "ColumnResizingSeparator()", + "ColumnResizingSeparator": "ColumnResizingSeparator()", + "ActualOpacity": "ActualOpacity", + "ActualOpacityProperty": "ActualOpacityProperty", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty" + } + } + ], + "ColumnResizingSeparatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnResizingSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnResizingSeparatorDescription()": "ColumnResizingSeparatorDescription()", + "ColumnResizingSeparatorDescription": "ColumnResizingSeparatorDescription()", + "ActualOpacity": "ActualOpacity", + "Opacity": "Opacity", + "Type": "Type" + } + } + ], + "ColumnResizingSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnResizingSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnResizingSeparatorDescriptionMetadata()": "ColumnResizingSeparatorDescriptionMetadata()", + "ColumnResizingSeparatorDescriptionMetadata": "ColumnResizingSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnResizingSeparatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnResizingSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnResizingSeparatorDescriptionModule()": "ColumnResizingSeparatorDescriptionModule()", + "ColumnResizingSeparatorDescriptionModule": "ColumnResizingSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ColumnSeries", + "k": "class", + "s": "classes", + "m": { + "ColumnSeries()": "ColumnSeries()", + "ColumnSeries": "ColumnSeries()", + "ConsolidatedColumnVerticalPosition": "ConsolidatedColumnVerticalPosition", + "ConsolidatedColumnVerticalPositionProperty": "ConsolidatedColumnVerticalPositionProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "ColumnSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSeriesDescription()": "ColumnSeriesDescription()", + "ColumnSeriesDescription": "ColumnSeriesDescription()", + "ConsolidatedColumnVerticalPosition": "ConsolidatedColumnVerticalPosition", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "ColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnSeriesDescriptionMetadata()": "ColumnSeriesDescriptionMetadata()", + "ColumnSeriesDescriptionMetadata": "ColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnSeriesDescriptionModule()": "ColumnSeriesDescriptionModule()", + "ColumnSeriesDescriptionModule": "ColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnShowingAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnShowingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnSortDescription": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnSortDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescription()": "ColumnSortDescription()", + "ColumnSortDescription": "ColumnSortDescription()", + "ColumnSortDescription(string)": "ColumnSortDescription(string)", + "ColumnSortDescription(string, ListSortDirection)": "ColumnSortDescription(string, ListSortDirection)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "SortDirection": "SortDirection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnSortDescriptionCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnSortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescriptionCollection()": "ColumnSortDescriptionCollection()", + "ColumnSortDescriptionCollection": "ColumnSortDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnSortDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSortDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescriptionDescription()": "ColumnSortDescriptionDescription()", + "ColumnSortDescriptionDescription": "ColumnSortDescriptionDescription()", + "Field": "Field", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "ColumnSortDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSortDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescriptionDescriptionMetadata()": "ColumnSortDescriptionDescriptionMetadata()", + "ColumnSortDescriptionDescriptionMetadata": "ColumnSortDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSortDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSortDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescriptionDescriptionModule()": "ColumnSortDescriptionDescriptionModule()", + "ColumnSortDescriptionDescriptionModule": "ColumnSortDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSortDirection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ColumnSortDirection", + "k": "enum", + "s": "enums" + } + ], + "ColumnSummaryDescription": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnSummaryDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescription()": "ColumnSummaryDescription()", + "ColumnSummaryDescription": "ColumnSummaryDescription()", + "ColumnSummaryDescription(string)": "ColumnSummaryDescription(string)", + "ColumnSummaryDescription(string, DataSourceSummaryOperand)": "ColumnSummaryDescription(string, DataSourceSummaryOperand)", + "CalculatorDisplayName": "CalculatorDisplayName", + "DisplayFormat": "DisplayFormat", + "DisplayFormatSpecifiers": "DisplayFormatSpecifiers", + "DisplayName": "DisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "MaxFractionDigits": "MaxFractionDigits", + "OnFormatText(FormatSummaryTextEventArgs)": "OnFormatText(FormatSummaryTextEventArgs)", + "OnFormatText": "OnFormatText(FormatSummaryTextEventArgs)", + "OnProvideCalculator(ProvideCalculatorEventArgs)": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "OnProvideCalculator": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "Operand": "Operand", + "ShouldDisplay": "ShouldDisplay", + "ValueFormat": "ValueFormat", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnSummaryDescriptionCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnSummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescriptionCollection()": "ColumnSummaryDescriptionCollection()", + "ColumnSummaryDescriptionCollection": "ColumnSummaryDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnSummaryDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSummaryDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescriptionDescription()": "ColumnSummaryDescriptionDescription()", + "ColumnSummaryDescriptionDescription": "ColumnSummaryDescriptionDescription()", + "CalculatorDisplayName": "CalculatorDisplayName", + "DisplayFormat": "DisplayFormat", + "DisplayFormatSpecifiers": "DisplayFormatSpecifiers", + "DisplayName": "DisplayName", + "Field": "Field", + "FormatTextRef": "FormatTextRef", + "MaxFractionDigits": "MaxFractionDigits", + "Operand": "Operand", + "ProvideCalculatorRef": "ProvideCalculatorRef", + "ShouldDisplay": "ShouldDisplay", + "Type": "Type", + "ValueFormat": "ValueFormat", + "ValueFormatSpecifiers": "ValueFormatSpecifiers" + } + } + ], + "ColumnSummaryDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSummaryDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescriptionDescriptionMetadata()": "ColumnSummaryDescriptionDescriptionMetadata()", + "ColumnSummaryDescriptionDescriptionMetadata": "ColumnSummaryDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSummaryDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSummaryDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescriptionDescriptionModule()": "ColumnSummaryDescriptionDescriptionModule()", + "ColumnSummaryDescriptionDescriptionModule": "ColumnSummaryDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSupportingCalculation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ColumnSupportingCalculation", + "k": "class", + "s": "classes", + "m": { + "ColumnSupportingCalculation(SupportingCalculationStrategy)": "ColumnSupportingCalculation(SupportingCalculationStrategy)", + "ColumnSupportingCalculation": "ColumnSupportingCalculation(SupportingCalculationStrategy)", + "ColumnSupportingCalculation(SupportingCalculationStrategy, IList)": "ColumnSupportingCalculation(SupportingCalculationStrategy, IList)" + } + } + ], + "ColumnSupportingCalculationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSupportingCalculationDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSupportingCalculationDescription()": "ColumnSupportingCalculationDescription()", + "ColumnSupportingCalculationDescription": "ColumnSupportingCalculationDescription()", + "Type": "Type" + } + } + ], + "ColumnSupportingCalculationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnSupportingCalculationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnSupportingCalculationDescriptionMetadata()": "ColumnSupportingCalculationDescriptionMetadata()", + "ColumnSupportingCalculationDescriptionMetadata": "ColumnSupportingCalculationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnWidth": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ColumnWidth", + "k": "class", + "s": "classes", + "m": { + "ColumnWidth()": "ColumnWidth()", + "ColumnWidth": "ColumnWidth()", + "Default": "Default", + "IsStarSized": "IsStarSized", + "MinimumWidth": "MinimumWidth", + "Parse(string)": "Parse(string)", + "Parse": "Parse(string)", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnWidthDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnWidthDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnWidthDescription()": "ColumnWidthDescription()", + "ColumnWidthDescription": "ColumnWidthDescription()", + "IsStarSized": "IsStarSized", + "MinimumWidth": "MinimumWidth", + "Type": "Type", + "Value": "Value" + } + } + ], + "ColumnWidthDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnWidthDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnWidthDescriptionMetadata()": "ColumnWidthDescriptionMetadata()", + "ColumnWidthDescriptionMetadata": "ColumnWidthDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnWidthDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ColumnWidthDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnWidthDescriptionModule()": "ColumnWidthDescriptionModule()", + "ColumnWidthDescriptionModule": "ColumnWidthDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboBoxColumn": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ComboBoxColumn", + "k": "class", + "s": "classes", + "m": { + "ComboBoxColumn()": "ComboBoxColumn()", + "ComboBoxColumn": "ComboBoxColumn()", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "TextField": "TextField", + "TextFieldProperty": "TextFieldProperty", + "ValueField": "ValueField", + "ValueFieldProperty": "ValueFieldProperty", + "ValueMultiField": "ValueMultiField", + "ValueMultiFieldProperty": "ValueMultiFieldProperty" + } + } + ], + "ComboBoxColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboBoxColumnDescription", + "k": "class", + "s": "classes", + "m": { + "ComboBoxColumnDescription()": "ComboBoxColumnDescription()", + "ComboBoxColumnDescription": "ComboBoxColumnDescription()", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "GenericDataSource": "GenericDataSource", + "TextField": "TextField", + "Type": "Type", + "ValueField": "ValueField" + } + } + ], + "ComboBoxColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboBoxColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboBoxColumnDescriptionMetadata()": "ComboBoxColumnDescriptionMetadata()", + "ComboBoxColumnDescriptionMetadata": "ComboBoxColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboBoxColumnDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboBoxColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ComboBoxColumnDescriptionModule()": "ComboBoxColumnDescriptionModule()", + "ComboBoxColumnDescriptionModule": "ComboBoxColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorCloneDataSourceFilterOperation": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ComboEditorCloneDataSourceFilterOperation", + "k": "enum", + "s": "enums" + } + ], + "ComboEditorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorDescription()": "ComboEditorDescription()", + "ComboEditorDescription": "ComboEditorDescription()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBaseTheme": "ActualBaseTheme", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualDensity": "ActualDensity", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelVisible": "ActualLabelVisible", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualTextColor": "ActualTextColor", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualValueField": "ActualValueField", + "AllowFilter": "AllowFilter", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderColor": "BorderColor", + "BorderWidth": "BorderWidth", + "ChangeRef": "ChangeRef", + "ChangingRef": "ChangingRef", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceRef": "DataSourceRef", + "Density": "Density", + "DropDownButtonVisible": "DropDownButtonVisible", + "Fields": "Fields", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderWidth": "FocusBorderWidth", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "GotFocusRef": "GotFocusRef", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "IsFixed": "IsFixed", + "KeyDownRef": "KeyDownRef", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelTextColor": "LabelTextColor", + "LostFocusRef": "LostFocusRef", + "NoMatchesFoundLabel": "NoMatchesFoundLabel", + "NoMatchesFoundLabelBackgroundColor": "NoMatchesFoundLabelBackgroundColor", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "NoMatchesFoundLabelTextColor": "NoMatchesFoundLabelTextColor", + "OpenAsChild": "OpenAsChild", + "Placeholder": "Placeholder", + "SelectedValueChangedRef": "SelectedValueChangedRef", + "Text": "Text", + "TextChangeRef": "TextChangeRef", + "TextColor": "TextColor", + "TextField": "TextField", + "TextValueChangedRef": "TextValueChangedRef", + "Type": "Type", + "UnderlineColor": "UnderlineColor", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineWidth": "UnderlineWidth", + "UseTopLayer": "UseTopLayer", + "Value": "Value", + "ValueChangeRef": "ValueChangeRef", + "ValueField": "ValueField" + } + } + ], + "ComboEditorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorDescriptionMetadata()": "ComboEditorDescriptionMetadata()", + "ComboEditorDescriptionMetadata": "ComboEditorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ComboEditorDescriptionModule()": "ComboEditorDescriptionModule()", + "ComboEditorDescriptionModule": "ComboEditorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorGotFocusEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ComboEditorGotFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComboEditorGotFocusEventArgs()": "ComboEditorGotFocusEventArgs()", + "ComboEditorGotFocusEventArgs": "ComboEditorGotFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ComboEditorGotFocusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorGotFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorGotFocusEventArgsDescription()": "ComboEditorGotFocusEventArgsDescription()", + "ComboEditorGotFocusEventArgsDescription": "ComboEditorGotFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "ComboEditorGotFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorGotFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorGotFocusEventArgsDescriptionMetadata()": "ComboEditorGotFocusEventArgsDescriptionMetadata()", + "ComboEditorGotFocusEventArgsDescriptionMetadata": "ComboEditorGotFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorLostFocusEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ComboEditorLostFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComboEditorLostFocusEventArgs()": "ComboEditorLostFocusEventArgs()", + "ComboEditorLostFocusEventArgs": "ComboEditorLostFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ComboEditorLostFocusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorLostFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorLostFocusEventArgsDescription()": "ComboEditorLostFocusEventArgsDescription()", + "ComboEditorLostFocusEventArgsDescription": "ComboEditorLostFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "ComboEditorLostFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorLostFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorLostFocusEventArgsDescriptionMetadata()": "ComboEditorLostFocusEventArgsDescriptionMetadata()", + "ComboEditorLostFocusEventArgsDescriptionMetadata": "ComboEditorLostFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorSelectedItemChangeType": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ComboEditorSelectedItemChangeType", + "k": "enum", + "s": "enums" + } + ], + "ComboEditorTextChangedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ComboEditorTextChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComboEditorTextChangedEventArgs(string, string)": "ComboEditorTextChangedEventArgs(string, string)", + "ComboEditorTextChangedEventArgs": "ComboEditorTextChangedEventArgs(string, string)", + "NewText": "NewText", + "OldText": "OldText", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ComboEditorTextChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorTextChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorTextChangedEventArgsDescription()": "ComboEditorTextChangedEventArgsDescription()", + "ComboEditorTextChangedEventArgsDescription": "ComboEditorTextChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ComboEditorTextChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorTextChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorTextChangedEventArgsDescriptionMetadata()": "ComboEditorTextChangedEventArgsDescriptionMetadata()", + "ComboEditorTextChangedEventArgsDescriptionMetadata": "ComboEditorTextChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorValueChangedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ComboEditorValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComboEditorValueChangedEventArgs(object, object)": "ComboEditorValueChangedEventArgs(object, object)", + "ComboEditorValueChangedEventArgs": "ComboEditorValueChangedEventArgs(object, object)", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ComboEditorValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorValueChangedEventArgsDescription()": "ComboEditorValueChangedEventArgsDescription()", + "ComboEditorValueChangedEventArgsDescription": "ComboEditorValueChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ComboEditorValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComboEditorValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorValueChangedEventArgsDescriptionMetadata()": "ComboEditorValueChangedEventArgsDescriptionMetadata()", + "ComboEditorValueChangedEventArgsDescriptionMetadata": "ComboEditorValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorVisualModelExport": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ComboEditorVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "ComboEditorVisualModelExport()": "ComboEditorVisualModelExport()", + "ComboEditorVisualModelExport": "ComboEditorVisualModelExport()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPadding": "ActualContentPadding", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelVisible": "ActualLabelVisible", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualTextColor": "ActualTextColor", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "DropDownButtonVisible": "DropDownButtonVisible", + "Height": "Height", + "IsPopupShown": "IsPopupShown", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStretch": "LabelFontStretch", + "LabelFontStyle": "LabelFontStyle", + "LabelFontVariant": "LabelFontVariant", + "LabelFontWeight": "LabelFontWeight", + "Left": "Left", + "ListPanel": "ListPanel", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontStretch": "NoMatchesFoundLabelFontStretch", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontVariant": "NoMatchesFoundLabelFontVariant", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "Placeholder": "Placeholder", + "RowSeparatorsVisible": "RowSeparatorsVisible", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "CommodityChannelIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CommodityChannelIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "CommodityChannelIndexIndicator()": "CommodityChannelIndexIndicator()", + "CommodityChannelIndexIndicator": "CommodityChannelIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "CommodityChannelIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CommodityChannelIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "CommodityChannelIndexIndicatorDescription()": "CommodityChannelIndexIndicatorDescription()", + "CommodityChannelIndexIndicatorDescription": "CommodityChannelIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "CommodityChannelIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CommodityChannelIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CommodityChannelIndexIndicatorDescriptionMetadata()": "CommodityChannelIndexIndicatorDescriptionMetadata()", + "CommodityChannelIndexIndicatorDescriptionMetadata": "CommodityChannelIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CommodityChannelIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CommodityChannelIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CommodityChannelIndexIndicatorDescriptionModule()": "CommodityChannelIndexIndicatorDescriptionModule()", + "CommodityChannelIndexIndicatorDescriptionModule": "CommodityChannelIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CommonData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/CommonData", + "k": "class", + "s": "classes", + "m": { + "CommonData()": "CommonData()", + "CommonData": "CommonData()", + "BorderBrush": "BorderBrush", + "BorderThickness": "BorderThickness" + } + } + ], + "ComponentRenderer": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRenderer", + "k": "class", + "s": "classes", + "m": { + "AddCleanupListener(ComponentCleanupHandler)": "AddCleanupListener(ComponentCleanupHandler)", + "AddCleanupListener": "AddCleanupListener(ComponentCleanupHandler)", + "AddMemberPathTransformer(MemberPathTransformer)": "AddMemberPathTransformer(MemberPathTransformer)", + "AddMemberPathTransformer": "AddMemberPathTransformer(MemberPathTransformer)", + "AddNamespaceLookupListener(ComponentNamespaceLookupHandler)": "AddNamespaceLookupListener(ComponentNamespaceLookupHandler)", + "AddNamespaceLookupListener": "AddNamespaceLookupListener(ComponentNamespaceLookupHandler)", + "AddPropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)": "AddPropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)", + "AddPropertyUpdatingListener": "AddPropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)", + "AddReferenceLookupListener(ComponentRendererReferenceLookupHandler)": "AddReferenceLookupListener(ComponentRendererReferenceLookupHandler)", + "AddReferenceLookupListener": "AddReferenceLookupListener(ComponentRendererReferenceLookupHandler)", + "AddReferenceResolver(ComponentRendererReferenceResolver)": "AddReferenceResolver(ComponentRendererReferenceResolver)", + "AddReferenceResolver": "AddReferenceResolver(ComponentRendererReferenceResolver)", + "AddReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)": "AddReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)", + "AddReferenceReverseLookupListener": "AddReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)", + "AddTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)": "AddTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)", + "AddTargetPropertyUpdatingListener": "AddTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)", + "AllowEnumIntCoerce()": "AllowEnumIntCoerce()", + "AllowEnumIntCoerce": "AllowEnumIntCoerce()", + "AllowNullForRemove": "AllowNullForRemove", + "Cleanup(object, bool)": "Cleanup(object, bool)", + "Cleanup": "Cleanup(object, bool)", + "CleanupUnusedOnRender": "CleanupUnusedOnRender", + "ClearErrors()": "ClearErrors()", + "ClearErrors": "ClearErrors()", + "ClearRefValues(object)": "ClearRefValues(object)", + "ClearRefValues": "ClearRefValues(object)", + "ClearUserRefValues()": "ClearUserRefValues()", + "ClearUserRefValues": "ClearUserRefValues()", + "Context": "Context", + "CreateHandlerWithDescription(object, string, string, string, Action)": "CreateHandlerWithDescription(object, string, string, string, Action)", + "CreateHandlerWithDescription": "CreateHandlerWithDescription(object, string, string, string, Action)", + "CreateHandlerWithJSON(object, string, string, string, Action)": "CreateHandlerWithJSON(object, string, string, string, Action)", + "CreateHandlerWithJSON": "CreateHandlerWithJSON(object, string, string, string, Action)", + "CreateHandlerWithRaw(object, string, string, string, Action)": "CreateHandlerWithRaw(object, string, string, string, Action)", + "CreateHandlerWithRaw": "CreateHandlerWithRaw(object, string, string, string, Action)", + "ExecuteMethod(object, string, Action)": "ExecuteMethod(object, string, Action)", + "ExecuteMethod": "ExecuteMethod(object, string, Action)", + "ExecuteMethodWithBuilder(object, ComponentRendererMethodHelperBuilder, Action)": "ExecuteMethodWithBuilder(object, ComponentRendererMethodHelperBuilder, Action)", + "ExecuteMethodWithBuilder": "ExecuteMethodWithBuilder(object, ComponentRendererMethodHelperBuilder, Action)", + "GetErrors()": "GetErrors()", + "GetErrors": "GetErrors()", + "GetMissingRefs()": "GetMissingRefs()", + "GetMissingRefs": "GetMissingRefs()", + "GetObjectTypeForArray(string)": "GetObjectTypeForArray(string)", + "GetObjectTypeForArray": "GetObjectTypeForArray(string)", + "GetRefChangeInfos(string)": "GetRefChangeInfos(string)", + "GetRefChangeInfos": "GetRefChangeInfos(string)", + "GetTargetValue(string, string, object)": "GetTargetValue(string, string, object)", + "GetTargetValue": "GetTargetValue(string, string, object)", + "HasErrors()": "HasErrors()", + "HasErrors": "HasErrors()", + "HasNotifyMethods": "HasNotifyMethods", + "HasRef(string)": "HasRef(string)", + "HasRef": "HasRef(string)", + "IsProceedOnErrorEnabled": "IsProceedOnErrorEnabled", + "LoadJson(string, Func)": "LoadJson(string, Func)", + "LoadJson": "LoadJson(string, Func)", + "LoadJsonDelta(string, Func, bool)": "LoadJsonDelta(string, Func, bool)", + "LoadJsonDelta": "LoadJsonDelta(string, Func, bool)", + "LoadJsonOverlay(string, Func, Func)": "LoadJsonOverlay(string, Func, Func)", + "LoadJsonOverlay": "LoadJsonOverlay(string, Func, Func)", + "OnSkipAlterDataCasingAltered(bool)": "OnSkipAlterDataCasingAltered(bool)", + "OnSkipAlterDataCasingAltered": "OnSkipAlterDataCasingAltered(bool)", + "PreserveKeyOrder": "PreserveKeyOrder", + "ProvideRefValue(object, string, object)": "ProvideRefValue(object, string, object)", + "ProvideRefValue": "ProvideRefValue(object, string, object)", + "ProvideRefValueFromJson(object, string, string)": "ProvideRefValueFromJson(object, string, string)", + "ProvideRefValueFromJson": "ProvideRefValueFromJson(object, string, string)", + "QueueForIdle(object, Action)": "QueueForIdle(object, Action)", + "QueueForIdle": "QueueForIdle(object, Action)", + "RegisterFont(string, object)": "RegisterFont(string, object)", + "RegisterFont": "RegisterFont(string, object)", + "RemoveCleanupListener(ComponentCleanupHandler)": "RemoveCleanupListener(ComponentCleanupHandler)", + "RemoveCleanupListener": "RemoveCleanupListener(ComponentCleanupHandler)", + "RemoveFont(string)": "RemoveFont(string)", + "RemoveFont": "RemoveFont(string)", + "RemoveMemberPathTransformer(MemberPathTransformer)": "RemoveMemberPathTransformer(MemberPathTransformer)", + "RemoveMemberPathTransformer": "RemoveMemberPathTransformer(MemberPathTransformer)", + "RemoveNamespaceLookupListener(ComponentNamespaceLookupHandler)": "RemoveNamespaceLookupListener(ComponentNamespaceLookupHandler)", + "RemoveNamespaceLookupListener": "RemoveNamespaceLookupListener(ComponentNamespaceLookupHandler)", + "RemovePropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)": "RemovePropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)", + "RemovePropertyUpdatingListener": "RemovePropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)", + "RemoveRefValue(object, string)": "RemoveRefValue(object, string)", + "RemoveRefValue": "RemoveRefValue(object, string)", + "RemoveRefValueCore(object, string, bool)": "RemoveRefValueCore(object, string, bool)", + "RemoveRefValueCore": "RemoveRefValueCore(object, string, bool)", + "RemoveReferenceLookupListener(ComponentRendererReferenceLookupHandler)": "RemoveReferenceLookupListener(ComponentRendererReferenceLookupHandler)", + "RemoveReferenceLookupListener": "RemoveReferenceLookupListener(ComponentRendererReferenceLookupHandler)", + "RemoveReferenceResolver(ComponentRendererReferenceResolver)": "RemoveReferenceResolver(ComponentRendererReferenceResolver)", + "RemoveReferenceResolver": "RemoveReferenceResolver(ComponentRendererReferenceResolver)", + "RemoveReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)": "RemoveReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)", + "RemoveReferenceReverseLookupListener": "RemoveReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)", + "RemoveTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)": "RemoveTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)", + "RemoveTargetPropertyUpdatingListener": "RemoveTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)", + "Render(Description, object)": "Render(Description, object)", + "Render": "Render(Description, object)", + "ResolveCustomMemberPathTransformer()": "ResolveCustomMemberPathTransformer()", + "ResolveCustomMemberPathTransformer": "ResolveCustomMemberPathTransformer()", + "ResolveRefName(object, object, Action)": "ResolveRefName(object, object, Action)", + "ResolveRefName": "ResolveRefName(object, object, Action)", + "ResolveRefValue(object, string, Action)": "ResolveRefValue(object, string, Action)", + "ResolveRefValue": "ResolveRefValue(object, string, Action)", + "SerializationProvider": "SerializationProvider", + "SetTargetValue(string, string, object, object, object)": "SetTargetValue(string, string, object, object, object)", + "SetTargetValue": "SetTargetValue(string, string, object, object, object)", + "ShouldForcePascal()": "ShouldForcePascal()", + "ShouldForcePascal": "ShouldForcePascal()", + "ShouldNamespaceSystemRefValues": "ShouldNamespaceSystemRefValues", + "SkipSystemRefsClean": "SkipSystemRefsClean", + "SkipTransformingMemberPaths": "SkipTransformingMemberPaths", + "ToBrush(string)": "ToBrush(string)", + "ToBrush": "ToBrush(string)", + "ToColor(string)": "ToColor(string)", + "ToColor": "ToColor(string)", + "ToJson(Func)": "ToJson(Func)", + "ToJson": "ToJson(Func)", + "TryFlushIdleActions(object)": "TryFlushIdleActions(object)", + "TryFlushIdleActions": "TryFlushIdleActions(object)", + "WaitForAnimationIdle(object, int, Action)": "WaitForAnimationIdle(object, int, Action)", + "WaitForAnimationIdle": "WaitForAnimationIdle(object, int, Action)", + "WaitForFlush(object, Action)": "WaitForFlush(object, Action)", + "WaitForFlush": "WaitForFlush(object, Action)" + } + } + ], + "ComponentRendererFactory": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRendererFactory", + "k": "class", + "s": "classes", + "m": { + "Create()": "Create()", + "Create": "Create()" + } + } + ], + "ComponentRendererHelper": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRendererHelper", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererHelper()": "ComponentRendererHelper()", + "ComponentRendererHelper": "ComponentRendererHelper()", + "CreateRenderer()": "CreateRenderer()", + "CreateRenderer": "CreateRenderer()" + } + } + ], + "ComponentRendererMethodHelper": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRendererMethodHelper", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererMethodHelper()": "ComponentRendererMethodHelper()", + "ComponentRendererMethodHelper": "ComponentRendererMethodHelper()", + "AsMethodRef(string)": "AsMethodRef(string)", + "AsMethodRef": "AsMethodRef(string)", + "Call(string, string)": "Call(string, string)", + "Call": "Call(string, string)", + "ReturnAsBool(string)": "ReturnAsBool(string)", + "ReturnAsBool": "ReturnAsBool(string)", + "ReturnAsDate(string)": "ReturnAsDate(string)", + "ReturnAsDate": "ReturnAsDate(string)", + "ReturnAsDouble(string)": "ReturnAsDouble(string)", + "ReturnAsDouble": "ReturnAsDouble(string)", + "ReturnAsDoubleArray(string)": "ReturnAsDoubleArray(string)", + "ReturnAsDoubleArray": "ReturnAsDoubleArray(string)", + "ReturnAsEnum(Type, string)": "ReturnAsEnum(Type, string)", + "ReturnAsEnum": "ReturnAsEnum(Type, string)", + "ReturnAsFloat(string)": "ReturnAsFloat(string)", + "ReturnAsFloat": "ReturnAsFloat(string)", + "ReturnAsInt(string)": "ReturnAsInt(string)", + "ReturnAsInt": "ReturnAsInt(string)", + "ReturnAsIntArray(string)": "ReturnAsIntArray(string)", + "ReturnAsIntArray": "ReturnAsIntArray(string)", + "ReturnAsLong(string)": "ReturnAsLong(string)", + "ReturnAsLong": "ReturnAsLong(string)", + "ReturnAsPoint(string)": "ReturnAsPoint(string)", + "ReturnAsPoint": "ReturnAsPoint(string)", + "ReturnAsPrimitive(string)": "ReturnAsPrimitive(string)", + "ReturnAsPrimitive": "ReturnAsPrimitive(string)", + "ReturnAsPrimitiveArray(string)": "ReturnAsPrimitiveArray(string)", + "ReturnAsPrimitiveArray": "ReturnAsPrimitiveArray(string)", + "ReturnAsPublicTypeRef(string, string)": "ReturnAsPublicTypeRef(string, string)", + "ReturnAsPublicTypeRef": "ReturnAsPublicTypeRef(string, string)", + "ReturnAsPublicTypeRefArray(string, string)": "ReturnAsPublicTypeRefArray(string, string)", + "ReturnAsPublicTypeRefArray": "ReturnAsPublicTypeRefArray(string, string)", + "ReturnAsRect(string)": "ReturnAsRect(string)", + "ReturnAsRect": "ReturnAsRect(string)", + "ReturnAsShort(string)": "ReturnAsShort(string)", + "ReturnAsShort": "ReturnAsShort(string)", + "ReturnAsSize(string)": "ReturnAsSize(string)", + "ReturnAsSize": "ReturnAsSize(string)", + "ReturnAsString(string)": "ReturnAsString(string)", + "ReturnAsString": "ReturnAsString(string)", + "ReturnAsStringArray(string)": "ReturnAsStringArray(string)", + "ReturnAsStringArray": "ReturnAsStringArray(string)" + } + } + ], + "ComponentRendererMethodHelperArgumentBuilder": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRendererMethodHelperArgumentBuilder", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererMethodHelperArgumentBuilder(ComponentRendererMethodHelperBuilder)": "ComponentRendererMethodHelperArgumentBuilder(ComponentRendererMethodHelperBuilder)", + "ComponentRendererMethodHelperArgumentBuilder": "ComponentRendererMethodHelperArgumentBuilder(ComponentRendererMethodHelperBuilder)", + "Argument()": "Argument()", + "Argument": "Argument()", + "AsBool(bool)": "AsBool(bool)", + "AsBool": "AsBool(bool)", + "AsBoolArray(bool[])": "AsBoolArray(bool[])", + "AsBoolArray": "AsBoolArray(bool[])", + "AsDate(DateTime)": "AsDate(DateTime)", + "AsDate": "AsDate(DateTime)", + "AsDateArray(DateTime[])": "AsDateArray(DateTime[])", + "AsDateArray": "AsDateArray(DateTime[])", + "AsDouble(double)": "AsDouble(double)", + "AsDouble": "AsDouble(double)", + "AsDoubleArray(double[])": "AsDoubleArray(double[])", + "AsDoubleArray": "AsDoubleArray(double[])", + "AsEmbeddedRef(EmbeddedRefDescription)": "AsEmbeddedRef(EmbeddedRefDescription)", + "AsEmbeddedRef": "AsEmbeddedRef(EmbeddedRefDescription)", + "AsEmbeddedRefArray(EmbeddedRefDescription[])": "AsEmbeddedRefArray(EmbeddedRefDescription[])", + "AsEmbeddedRefArray": "AsEmbeddedRefArray(EmbeddedRefDescription[])", + "AsEnum(string, object)": "AsEnum(string, object)", + "AsEnum": "AsEnum(string, object)", + "AsEnum(Type, object)": "AsEnum(Type, object)", + "AsFloat(float)": "AsFloat(float)", + "AsFloat": "AsFloat(float)", + "AsFloatArray(float[])": "AsFloatArray(float[])", + "AsFloatArray": "AsFloatArray(float[])", + "AsInt(int)": "AsInt(int)", + "AsInt": "AsInt(int)", + "AsIntArray(int[])": "AsIntArray(int[])", + "AsIntArray": "AsIntArray(int[])", + "AsLong(long)": "AsLong(long)", + "AsLong": "AsLong(long)", + "AsLongArray(long[])": "AsLongArray(long[])", + "AsLongArray": "AsLongArray(long[])", + "AsMethodRef(string)": "AsMethodRef(string)", + "AsMethodRef": "AsMethodRef(string)", + "AsPixel(double)": "AsPixel(double)", + "AsPixel": "AsPixel(double)", + "AsPixelPoint(PointDescription)": "AsPixelPoint(PointDescription)", + "AsPixelPoint": "AsPixelPoint(PointDescription)", + "AsPixelRect(RectDescription)": "AsPixelRect(RectDescription)", + "AsPixelRect": "AsPixelRect(RectDescription)", + "AsPixelSize(SizeDescription)": "AsPixelSize(SizeDescription)", + "AsPixelSize": "AsPixelSize(SizeDescription)", + "AsPoint(PointDescription)": "AsPoint(PointDescription)", + "AsPoint": "AsPoint(PointDescription)", + "AsPrimitive(object)": "AsPrimitive(object)", + "AsPrimitive": "AsPrimitive(object)", + "AsPrimitiveArray(object)": "AsPrimitiveArray(object)", + "AsPrimitiveArray": "AsPrimitiveArray(object)", + "AsPublicTypeRef(string, EmbeddedRefDescription)": "AsPublicTypeRef(string, EmbeddedRefDescription)", + "AsPublicTypeRef": "AsPublicTypeRef(string, EmbeddedRefDescription)", + "AsRect(RectDescription)": "AsRect(RectDescription)", + "AsRect": "AsRect(RectDescription)", + "AsShort(short)": "AsShort(short)", + "AsShort": "AsShort(short)", + "AsShortArray(short[])": "AsShortArray(short[])", + "AsShortArray": "AsShortArray(short[])", + "AsSize(SizeDescription)": "AsSize(SizeDescription)", + "AsSize": "AsSize(SizeDescription)", + "AsString(string)": "AsString(string)", + "AsString": "AsString(string)", + "AsStringArray(string[])": "AsStringArray(string[])", + "AsStringArray": "AsStringArray(string[])", + "Build()": "Build()", + "Build": "Build()", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "Return()": "Return()", + "Return": "Return()" + } + } + ], + "ComponentRendererMethodHelperBuilder": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRendererMethodHelperBuilder", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererMethodHelperBuilder(string, string)": "ComponentRendererMethodHelperBuilder(string, string)", + "ComponentRendererMethodHelperBuilder": "ComponentRendererMethodHelperBuilder(string, string)", + "Argument()": "Argument()", + "Argument": "Argument()", + "Build()": "Build()", + "Build": "Build()", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "GetArgument(int)": "GetArgument(int)", + "GetArgument": "GetArgument(int)", + "GetArgumentCount()": "GetArgumentCount()", + "GetArgumentCount": "GetArgumentCount()", + "GetReturn()": "GetReturn()", + "GetReturn": "GetReturn()", + "HasReturn()": "HasReturn()", + "HasReturn": "HasReturn()", + "MethodName": "MethodName", + "Return()": "Return()", + "Return": "Return()", + "Reusable": "Reusable", + "TargetRef": "TargetRef" + } + } + ], + "ComponentRendererMethodHelperReturnBuilder": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRendererMethodHelperReturnBuilder", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererMethodHelperReturnBuilder(ComponentRendererMethodHelperBuilder)": "ComponentRendererMethodHelperReturnBuilder(ComponentRendererMethodHelperBuilder)", + "ComponentRendererMethodHelperReturnBuilder": "ComponentRendererMethodHelperReturnBuilder(ComponentRendererMethodHelperBuilder)", + "Argument()": "Argument()", + "Argument": "Argument()", + "AsBool()": "AsBool()", + "AsBool": "AsBool()", + "AsDate()": "AsDate()", + "AsDate": "AsDate()", + "AsDouble()": "AsDouble()", + "AsDouble": "AsDouble()", + "AsDoubleArray()": "AsDoubleArray()", + "AsDoubleArray": "AsDoubleArray()", + "AsEnum(Type)": "AsEnum(Type)", + "AsEnum": "AsEnum(Type)", + "AsFloat()": "AsFloat()", + "AsFloat": "AsFloat()", + "AsFloatArray()": "AsFloatArray()", + "AsFloatArray": "AsFloatArray()", + "AsInt()": "AsInt()", + "AsInt": "AsInt()", + "AsIntArray()": "AsIntArray()", + "AsIntArray": "AsIntArray()", + "AsLong()": "AsLong()", + "AsLong": "AsLong()", + "AsLongArray()": "AsLongArray()", + "AsLongArray": "AsLongArray()", + "AsMethodRef()": "AsMethodRef()", + "AsMethodRef": "AsMethodRef()", + "AsPIxelSize()": "AsPIxelSize()", + "AsPIxelSize": "AsPIxelSize()", + "AsPixel()": "AsPixel()", + "AsPixel": "AsPixel()", + "AsPixelPoint()": "AsPixelPoint()", + "AsPixelPoint": "AsPixelPoint()", + "AsPixelRect()": "AsPixelRect()", + "AsPixelRect": "AsPixelRect()", + "AsPoint()": "AsPoint()", + "AsPoint": "AsPoint()", + "AsPrimitive()": "AsPrimitive()", + "AsPrimitive": "AsPrimitive()", + "AsPrimitiveArray()": "AsPrimitiveArray()", + "AsPrimitiveArray": "AsPrimitiveArray()", + "AsPublicTypeRef(string)": "AsPublicTypeRef(string)", + "AsPublicTypeRef": "AsPublicTypeRef(string)", + "AsPublicTypeRefArray(string)": "AsPublicTypeRefArray(string)", + "AsPublicTypeRefArray": "AsPublicTypeRefArray(string)", + "AsRect()": "AsRect()", + "AsRect": "AsRect()", + "AsShort()": "AsShort()", + "AsShort": "AsShort()", + "AsShortArray()": "AsShortArray()", + "AsShortArray": "AsShortArray()", + "AsSize()": "AsSize()", + "AsSize": "AsSize()", + "AsString()": "AsString()", + "AsString": "AsString()", + "AsStringArray()": "AsStringArray()", + "AsStringArray": "AsStringArray()", + "AsVoid()": "AsVoid()", + "AsVoid": "AsVoid()", + "Build()": "Build()", + "Build": "Build()", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "Return()": "Return()", + "Return": "Return()" + } + } + ], + "ComponentRendererReferenceResolverEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRendererReferenceResolverEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererReferenceResolverEventArgs()": "ComponentRendererReferenceResolverEventArgs()", + "ComponentRendererReferenceResolverEventArgs": "ComponentRendererReferenceResolverEventArgs()", + "Found": "Found", + "ReferenceValue": "ReferenceValue" + } + } + ], + "ComponentRendererSerializationProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ComponentRendererSerializationProvider", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererSerializationProvider()": "ComponentRendererSerializationProvider()", + "ComponentRendererSerializationProvider": "ComponentRendererSerializationProvider()" + } + } + ], + "ComputedPlotAreaMarginMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ComputedPlotAreaMarginMode", + "k": "enum", + "s": "enums" + } + ], + "ConsolidatedItemHitTestBehavior": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ConsolidatedItemHitTestBehavior", + "k": "enum", + "s": "enums" + } + ], + "ConsolidatedItemsPosition": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ConsolidatedItemsPosition", + "k": "enum", + "s": "enums" + } + ], + "ContainsPropertyDataSourceFilterExpressionVisitor": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ContainsPropertyDataSourceFilterExpressionVisitor", + "k": "class", + "s": "classes", + "m": { + "ContainsPropertyDataSourceFilterExpressionVisitor(string)": "ContainsPropertyDataSourceFilterExpressionVisitor(string)", + "ContainsPropertyDataSourceFilterExpressionVisitor": "ContainsPropertyDataSourceFilterExpressionVisitor(string)", + "Contains": "Contains", + "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)", + "VisitPropertyReferenceExpression": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)" + } + } + ], + "ContentChildCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ContentChildCollection", + "k": "class", + "s": "classes", + "m": { + "ContentChildCollection()": "ContentChildCollection()", + "ContentChildCollection": "ContentChildCollection()", + "ContentChildCollection(IEnumerable)": "ContentChildCollection(IEnumerable)" + } + } + ], + "ContourValueResolver": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ContourValueResolver", + "k": "class", + "s": "classes", + "m": { + "GetContourValues(IFastItemColumn)": "GetContourValues(IFastItemColumn)", + "GetContourValues": "GetContourValues(IFastItemColumn)", + "OnUpdated(EventArgs)": "OnUpdated(EventArgs)", + "OnUpdated": "OnUpdated(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ContourValueResolverDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ContourValueResolverDescription", + "k": "class", + "s": "classes", + "m": { + "ContourValueResolverDescription()": "ContourValueResolverDescription()", + "ContourValueResolverDescription": "ContourValueResolverDescription()", + "Type": "Type" + } + } + ], + "ContourValueResolverDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ContourValueResolverDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ContourValueResolverDescriptionMetadata()": "ContourValueResolverDescriptionMetadata()", + "ContourValueResolverDescriptionMetadata": "ContourValueResolverDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ControlDisplayDensity": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ControlDisplayDensity", + "k": "enum", + "s": "enums" + } + ], + "CoreUtilities": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/CoreUtilities", + "k": "class", + "s": "classes", + "m": { + "CoreUtilities()": "CoreUtilities()", + "CoreUtilities": "CoreUtilities()", + "BuildEmbeddedResourceUri(Assembly, string)": "BuildEmbeddedResourceUri(Assembly, string)", + "BuildEmbeddedResourceUri": "BuildEmbeddedResourceUri(Assembly, string)", + "CreateComparer(IComparer)": "CreateComparer(IComparer)", + "CreateComparer": "CreateComparer(IComparer)", + "CreateComparer(Comparison)": "CreateComparer(Comparison)", + "GetUnderlyingType(Type)": "GetUnderlyingType(Type)", + "GetUnderlyingType": "GetUnderlyingType(Type)", + "GetWeakReferenceTargetSafe(WeakReference)": "GetWeakReferenceTargetSafe(WeakReference)", + "GetWeakReferenceTargetSafe": "GetWeakReferenceTargetSafe(WeakReference)", + "RemoveAll(IList, T)": "RemoveAll(IList, T)", + "RemoveAll": "RemoveAll(IList, T)", + "RemoveAll(List, T)": "RemoveAll(List, T)", + "SortMerge(object[], IComparer)": "SortMerge(object[], IComparer)", + "SortMerge": "SortMerge(object[], IComparer)", + "SortMerge(object[], object[], IComparer)": "SortMerge(object[], object[], IComparer)", + "SortMerge(object[], object[], IComparer, int, int)": "SortMerge(object[], object[], IComparer, int, int)", + "SortMergeGeneric(List, IComparer)": "SortMergeGeneric(List, IComparer)", + "SortMergeGeneric": "SortMergeGeneric(List, IComparer)", + "SortMergeGeneric(List, IComparer, int, int)": "SortMergeGeneric(List, IComparer, int, int)", + "SortMergeGeneric(T[], IComparer)": "SortMergeGeneric(T[], IComparer)", + "SortMergeGeneric(T[], T[], IComparer)": "SortMergeGeneric(T[], T[], IComparer)", + "SortMergeGeneric(T[], T[], IComparer, int, int)": "SortMergeGeneric(T[], T[], IComparer, int, int)", + "Swap(IList, int, int)": "Swap(IList, int, int)", + "Swap": "Swap(IList, int, int)" + } + } + ], + "CountSummaryCalculator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CountSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "CountSummaryCalculator()": "CountSummaryCalculator()", + "CountSummaryCalculator": "CountSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "CrosshairLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CrosshairLayer", + "k": "class", + "s": "classes", + "m": { + "CrosshairLayer()": "CrosshairLayer()", + "CrosshairLayer": "CrosshairLayer()", + "HorizontalLineStroke": "HorizontalLineStroke", + "HorizontalLineStrokeProperty": "HorizontalLineStrokeProperty", + "HorizontalLineVisibility": "HorizontalLineVisibility", + "HorizontalLineVisibilityProperty": "HorizontalLineVisibilityProperty", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "IsAxisAnnotationEnabledProperty": "IsAxisAnnotationEnabledProperty", + "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnXAxisAnnotationFormatLabel": "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisAnnotationFormatLabel": "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "SkipAxisAnnotationOnInvalidData": "SkipAxisAnnotationOnInvalidData", + "SkipAxisAnnotationOnInvalidDataProperty": "SkipAxisAnnotationOnInvalidDataProperty", + "SkipAxisAnnotationOnZeroValueFragments": "SkipAxisAnnotationOnZeroValueFragments", + "SkipAxisAnnotationOnZeroValueFragmentsProperty": "SkipAxisAnnotationOnZeroValueFragmentsProperty", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty", + "VerticalLineStroke": "VerticalLineStroke", + "VerticalLineStrokeProperty": "VerticalLineStrokeProperty", + "VerticalLineVisibility": "VerticalLineVisibility", + "VerticalLineVisibilityProperty": "VerticalLineVisibilityProperty", + "XAxisAnnotationBackground": "XAxisAnnotationBackground", + "XAxisAnnotationBackgroundCornerRadius": "XAxisAnnotationBackgroundCornerRadius", + "XAxisAnnotationBackgroundCornerRadiusProperty": "XAxisAnnotationBackgroundCornerRadiusProperty", + "XAxisAnnotationBackgroundProperty": "XAxisAnnotationBackgroundProperty", + "XAxisAnnotationInterpolatedValuePrecision": "XAxisAnnotationInterpolatedValuePrecision", + "XAxisAnnotationInterpolatedValuePrecisionProperty": "XAxisAnnotationInterpolatedValuePrecisionProperty", + "XAxisAnnotationOutline": "XAxisAnnotationOutline", + "XAxisAnnotationOutlineProperty": "XAxisAnnotationOutlineProperty", + "XAxisAnnotationPaddingBottom": "XAxisAnnotationPaddingBottom", + "XAxisAnnotationPaddingBottomProperty": "XAxisAnnotationPaddingBottomProperty", + "XAxisAnnotationPaddingLeft": "XAxisAnnotationPaddingLeft", + "XAxisAnnotationPaddingLeftProperty": "XAxisAnnotationPaddingLeftProperty", + "XAxisAnnotationPaddingRight": "XAxisAnnotationPaddingRight", + "XAxisAnnotationPaddingRightProperty": "XAxisAnnotationPaddingRightProperty", + "XAxisAnnotationPaddingTop": "XAxisAnnotationPaddingTop", + "XAxisAnnotationPaddingTopProperty": "XAxisAnnotationPaddingTopProperty", + "XAxisAnnotationStrokeThickness": "XAxisAnnotationStrokeThickness", + "XAxisAnnotationStrokeThicknessProperty": "XAxisAnnotationStrokeThicknessProperty", + "XAxisAnnotationTextColor": "XAxisAnnotationTextColor", + "XAxisAnnotationTextColorProperty": "XAxisAnnotationTextColorProperty", + "YAxisAnnotationBackground": "YAxisAnnotationBackground", + "YAxisAnnotationBackgroundCornerRadius": "YAxisAnnotationBackgroundCornerRadius", + "YAxisAnnotationBackgroundCornerRadiusProperty": "YAxisAnnotationBackgroundCornerRadiusProperty", + "YAxisAnnotationBackgroundProperty": "YAxisAnnotationBackgroundProperty", + "YAxisAnnotationInterpolatedValuePrecision": "YAxisAnnotationInterpolatedValuePrecision", + "YAxisAnnotationInterpolatedValuePrecisionProperty": "YAxisAnnotationInterpolatedValuePrecisionProperty", + "YAxisAnnotationOutline": "YAxisAnnotationOutline", + "YAxisAnnotationOutlineProperty": "YAxisAnnotationOutlineProperty", + "YAxisAnnotationPaddingBottom": "YAxisAnnotationPaddingBottom", + "YAxisAnnotationPaddingBottomProperty": "YAxisAnnotationPaddingBottomProperty", + "YAxisAnnotationPaddingLeft": "YAxisAnnotationPaddingLeft", + "YAxisAnnotationPaddingLeftProperty": "YAxisAnnotationPaddingLeftProperty", + "YAxisAnnotationPaddingRight": "YAxisAnnotationPaddingRight", + "YAxisAnnotationPaddingRightProperty": "YAxisAnnotationPaddingRightProperty", + "YAxisAnnotationPaddingTop": "YAxisAnnotationPaddingTop", + "YAxisAnnotationPaddingTopProperty": "YAxisAnnotationPaddingTopProperty", + "YAxisAnnotationStrokeThickness": "YAxisAnnotationStrokeThickness", + "YAxisAnnotationStrokeThicknessProperty": "YAxisAnnotationStrokeThicknessProperty", + "YAxisAnnotationTextColor": "YAxisAnnotationTextColor", + "YAxisAnnotationTextColorProperty": "YAxisAnnotationTextColorProperty" + } + } + ], + "CrosshairLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CrosshairLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CrosshairLayerDescription()": "CrosshairLayerDescription()", + "CrosshairLayerDescription": "CrosshairLayerDescription()", + "HorizontalLineStroke": "HorizontalLineStroke", + "HorizontalLineVisibility": "HorizontalLineVisibility", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "SkipAxisAnnotationOnInvalidData": "SkipAxisAnnotationOnInvalidData", + "SkipAxisAnnotationOnZeroValueFragments": "SkipAxisAnnotationOnZeroValueFragments", + "SkipUnknownValues": "SkipUnknownValues", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type", + "UseInterpolation": "UseInterpolation", + "VerticalLineStroke": "VerticalLineStroke", + "VerticalLineVisibility": "VerticalLineVisibility", + "XAxisAnnotationBackground": "XAxisAnnotationBackground", + "XAxisAnnotationBackgroundCornerRadius": "XAxisAnnotationBackgroundCornerRadius", + "XAxisAnnotationFormatLabelRef": "XAxisAnnotationFormatLabelRef", + "XAxisAnnotationInterpolatedValuePrecision": "XAxisAnnotationInterpolatedValuePrecision", + "XAxisAnnotationOutline": "XAxisAnnotationOutline", + "XAxisAnnotationPaddingBottom": "XAxisAnnotationPaddingBottom", + "XAxisAnnotationPaddingLeft": "XAxisAnnotationPaddingLeft", + "XAxisAnnotationPaddingRight": "XAxisAnnotationPaddingRight", + "XAxisAnnotationPaddingTop": "XAxisAnnotationPaddingTop", + "XAxisAnnotationStrokeThickness": "XAxisAnnotationStrokeThickness", + "XAxisAnnotationTextColor": "XAxisAnnotationTextColor", + "YAxisAnnotationBackground": "YAxisAnnotationBackground", + "YAxisAnnotationBackgroundCornerRadius": "YAxisAnnotationBackgroundCornerRadius", + "YAxisAnnotationFormatLabelRef": "YAxisAnnotationFormatLabelRef", + "YAxisAnnotationInterpolatedValuePrecision": "YAxisAnnotationInterpolatedValuePrecision", + "YAxisAnnotationOutline": "YAxisAnnotationOutline", + "YAxisAnnotationPaddingBottom": "YAxisAnnotationPaddingBottom", + "YAxisAnnotationPaddingLeft": "YAxisAnnotationPaddingLeft", + "YAxisAnnotationPaddingRight": "YAxisAnnotationPaddingRight", + "YAxisAnnotationPaddingTop": "YAxisAnnotationPaddingTop", + "YAxisAnnotationStrokeThickness": "YAxisAnnotationStrokeThickness", + "YAxisAnnotationTextColor": "YAxisAnnotationTextColor" + } + } + ], + "CrosshairLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CrosshairLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CrosshairLayerDescriptionMetadata()": "CrosshairLayerDescriptionMetadata()", + "CrosshairLayerDescriptionMetadata": "CrosshairLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CrosshairLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CrosshairLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CrosshairLayerDescriptionModule()": "CrosshairLayerDescriptionModule()", + "CrosshairLayerDescriptionModule": "CrosshairLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CrosshairsDisplayMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/CrosshairsDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "CustomContentUpdateInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomContentUpdateInfo", + "k": "class", + "s": "classes", + "m": { + "CustomContentUpdateInfo()": "CustomContentUpdateInfo()", + "CustomContentUpdateInfo": "CustomContentUpdateInfo()", + "GetItem(string)": "GetItem(string)", + "GetItem": "GetItem(string)", + "SetItem(string, object)": "SetItem(string, object)", + "SetItem": "SetItem(string, object)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CustomContourValueResolver": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CustomContourValueResolver", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolver()": "CustomContourValueResolver()", + "CustomContourValueResolver": "CustomContourValueResolver()", + "OnGetCustomContourValues(CustomContourValueResolverEventArgs)": "OnGetCustomContourValues(CustomContourValueResolverEventArgs)", + "OnGetCustomContourValues": "OnGetCustomContourValues(CustomContourValueResolverEventArgs)" + } + } + ], + "CustomContourValueResolverDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomContourValueResolverDescription", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverDescription()": "CustomContourValueResolverDescription()", + "CustomContourValueResolverDescription": "CustomContourValueResolverDescription()", + "GetCustomContourValuesRef": "GetCustomContourValuesRef", + "Type": "Type" + } + } + ], + "CustomContourValueResolverDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomContourValueResolverDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverDescriptionMetadata()": "CustomContourValueResolverDescriptionMetadata()", + "CustomContourValueResolverDescriptionMetadata": "CustomContourValueResolverDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomContourValueResolverDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomContourValueResolverDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverDescriptionModule()": "CustomContourValueResolverDescriptionModule()", + "CustomContourValueResolverDescriptionModule": "CustomContourValueResolverDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomContourValueResolverEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CustomContourValueResolverEventArgs", + "k": "class", + "s": "classes", + "m": { + "ContourValuesEnumerable": "ContourValuesEnumerable", + "ValueColumn": "ValueColumn", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CustomContourValueResolverEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomContourValueResolverEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverEventArgsDescription()": "CustomContourValueResolverEventArgsDescription()", + "CustomContourValueResolverEventArgsDescription": "CustomContourValueResolverEventArgsDescription()", + "ContourValues": "ContourValues", + "Type": "Type" + } + } + ], + "CustomContourValueResolverEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomContourValueResolverEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverEventArgsDescriptionMetadata()": "CustomContourValueResolverEventArgsDescriptionMetadata()", + "CustomContourValueResolverEventArgsDescriptionMetadata": "CustomContourValueResolverEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CustomIndicator", + "k": "class", + "s": "classes", + "m": { + "CustomIndicator()": "CustomIndicator()", + "CustomIndicator": "CustomIndicator()", + "OnBasedOnColumns(FinancialEventArgs)": "OnBasedOnColumns(FinancialEventArgs)", + "OnBasedOnColumns": "OnBasedOnColumns(FinancialEventArgs)", + "OnIndicator(FinancialEventArgs)": "OnIndicator(FinancialEventArgs)", + "OnIndicator": "OnIndicator(FinancialEventArgs)" + } + } + ], + "CustomIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "CustomIndicatorDescription()": "CustomIndicatorDescription()", + "CustomIndicatorDescription": "CustomIndicatorDescription()", + "Type": "Type" + } + } + ], + "CustomIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomIndicatorDescriptionMetadata()": "CustomIndicatorDescriptionMetadata()", + "CustomIndicatorDescriptionMetadata": "CustomIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomIndicatorDescriptionModule()": "CustomIndicatorDescriptionModule()", + "CustomIndicatorDescriptionModule": "CustomIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomLegendContainer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CustomLegendContainer", + "k": "class", + "s": "classes", + "m": { + "CustomLegendContainer()": "CustomLegendContainer()", + "CustomLegendContainer": "CustomLegendContainer()", + "OnAddingChild(Panel, FrameworkElement, LegendSettings)": "OnAddingChild(Panel, FrameworkElement, LegendSettings)", + "OnAddingChild": "OnAddingChild(Panel, FrameworkElement, LegendSettings)", + "OnInsertingChild(Panel, FrameworkElement, int, LegendSettings)": "OnInsertingChild(Panel, FrameworkElement, int, LegendSettings)", + "OnInsertingChild": "OnInsertingChild(Panel, FrameworkElement, int, LegendSettings)", + "OnRemovingChild(Panel, FrameworkElement, LegendSettings)": "OnRemovingChild(Panel, FrameworkElement, LegendSettings)", + "OnRemovingChild": "OnRemovingChild(Panel, FrameworkElement, LegendSettings)", + "OnRemovingChildAtIndex(Panel, FrameworkElement, int, LegendSettings)": "OnRemovingChildAtIndex(Panel, FrameworkElement, int, LegendSettings)", + "OnRemovingChildAtIndex": "OnRemovingChildAtIndex(Panel, FrameworkElement, int, LegendSettings)", + "OnSettingsChanged(Panel, LegendSettings)": "OnSettingsChanged(Panel, LegendSettings)", + "OnSettingsChanged": "OnSettingsChanged(Panel, LegendSettings)", + "ProvideContainer(Panel, LegendSettings)": "ProvideContainer(Panel, LegendSettings)", + "ProvideContainer": "ProvideContainer(Panel, LegendSettings)" + } + } + ], + "CustomLocalDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomLocalDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "CustomLocalDataSourceDescription()": "CustomLocalDataSourceDescription()", + "CustomLocalDataSourceDescription": "CustomLocalDataSourceDescription()", + "Type": "Type" + } + } + ], + "CustomLocalDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomLocalDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomLocalDataSourceDescriptionMetadata()": "CustomLocalDataSourceDescriptionMetadata()", + "CustomLocalDataSourceDescriptionMetadata": "CustomLocalDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomLocalDataSourceDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomLocalDataSourceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomLocalDataSourceDescriptionModule()": "CustomLocalDataSourceDescriptionModule()", + "CustomLocalDataSourceDescriptionModule": "CustomLocalDataSourceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomMapImagery": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/CustomMapImagery", + "k": "class", + "s": "classes", + "m": { + "CustomMapImagery(CustomMapTileSource)": "CustomMapImagery(CustomMapTileSource)", + "CustomMapImagery": "CustomMapImagery(CustomMapTileSource)", + "OnGetTileImageUri(GetTileImageUriArgs)": "OnGetTileImageUri(GetTileImageUriArgs)", + "OnGetTileImageUri": "OnGetTileImageUri(GetTileImageUriArgs)" + } + } + ], + "CustomMapImageryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "CustomMapImageryDescription()": "CustomMapImageryDescription()", + "CustomMapImageryDescription": "CustomMapImageryDescription()", + "GetTileImageUriRef": "GetTileImageUriRef", + "Type": "Type" + } + } + ], + "CustomMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomMapImageryDescriptionMetadata()": "CustomMapImageryDescriptionMetadata()", + "CustomMapImageryDescriptionMetadata": "CustomMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomMapImageryDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomMapImageryDescriptionModule()": "CustomMapImageryDescriptionModule()", + "CustomMapImageryDescriptionModule": "CustomMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomMapTileSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomMapTileSource", + "k": "class", + "s": "classes", + "m": { + "CustomMapTileSource(int, int, int, int, int)": "CustomMapTileSource(int, int, int, int, int)", + "CustomMapTileSource": "CustomMapTileSource(int, int, int, int, int)", + "OnGetTileImageUri(GetTileImageUriArgs)": "OnGetTileImageUri(GetTileImageUriArgs)", + "OnGetTileImageUri": "OnGetTileImageUri(GetTileImageUriArgs)" + } + } + ], + "CustomPaletteBrushScale": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CustomPaletteBrushScale", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteBrushScale()": "CustomPaletteBrushScale()", + "CustomPaletteBrushScale": "CustomPaletteBrushScale()", + "BrushSelectionMode": "BrushSelectionMode", + "BrushSelectionModeProperty": "BrushSelectionModeProperty", + "GetBrush(int, int)": "GetBrush(int, int)", + "GetBrush": "GetBrush(int, int)" + } + } + ], + "CustomPaletteBrushScaleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomPaletteBrushScaleDescription", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteBrushScaleDescription()": "CustomPaletteBrushScaleDescription()", + "CustomPaletteBrushScaleDescription": "CustomPaletteBrushScaleDescription()", + "BrushSelectionMode": "BrushSelectionMode", + "Type": "Type" + } + } + ], + "CustomPaletteBrushScaleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomPaletteBrushScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteBrushScaleDescriptionMetadata()": "CustomPaletteBrushScaleDescriptionMetadata()", + "CustomPaletteBrushScaleDescriptionMetadata": "CustomPaletteBrushScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomPaletteBrushScaleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomPaletteBrushScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteBrushScaleDescriptionModule()": "CustomPaletteBrushScaleDescriptionModule()", + "CustomPaletteBrushScaleDescriptionModule": "CustomPaletteBrushScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomPaletteColorScale": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/CustomPaletteColorScale", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteColorScale()": "CustomPaletteColorScale()", + "CustomPaletteColorScale": "CustomPaletteColorScale()", + "InterpolationMode": "InterpolationMode", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "ProvidePalette(string[])": "ProvidePalette(string[])", + "ProvidePalette": "ProvidePalette(string[])" + } + } + ], + "CustomPaletteColorScaleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomPaletteColorScaleDescription", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteColorScaleDescription()": "CustomPaletteColorScaleDescription()", + "CustomPaletteColorScaleDescription": "CustomPaletteColorScaleDescription()", + "InterpolationMode": "InterpolationMode", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Palette": "Palette", + "Type": "Type" + } + } + ], + "CustomPaletteColorScaleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomPaletteColorScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteColorScaleDescriptionMetadata()": "CustomPaletteColorScaleDescriptionMetadata()", + "CustomPaletteColorScaleDescriptionMetadata": "CustomPaletteColorScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomPaletteColorScaleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/CustomPaletteColorScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteColorScaleDescriptionModule()": "CustomPaletteColorScaleDescriptionModule()", + "CustomPaletteColorScaleDescriptionModule": "CustomPaletteColorScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DartEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DartEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "DartEmitIgnoreTypeAttribute()": "DartEmitIgnoreTypeAttribute()", + "DartEmitIgnoreTypeAttribute": "DartEmitIgnoreTypeAttribute()" + } + } + ], + "DartGlobalMemberAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DartGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "DartGlobalMemberAttribute()": "DartGlobalMemberAttribute()", + "DartGlobalMemberAttribute": "DartGlobalMemberAttribute()" + } + } + ], + "DartLiteralUnwrapAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DartLiteralUnwrapAttribute", + "k": "class", + "s": "classes", + "m": { + "DartLiteralUnwrapAttribute()": "DartLiteralUnwrapAttribute()", + "DartLiteralUnwrapAttribute": "DartLiteralUnwrapAttribute()" + } + } + ], + "DashboardTileChangingContentEventArgs": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileChangingContentEventArgs", + "k": "class", + "s": "classes", + "m": { + "ContentJson": "ContentJson", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileChangingContentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileChangingContentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileChangingContentEventArgsDescription()": "DashboardTileChangingContentEventArgsDescription()", + "DashboardTileChangingContentEventArgsDescription": "DashboardTileChangingContentEventArgsDescription()", + "ContentJson": "ContentJson", + "Type": "Type" + } + } + ], + "DashboardTileChangingContentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileChangingContentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileChangingContentEventArgsDescriptionMetadata()": "DashboardTileChangingContentEventArgsDescriptionMetadata()", + "DashboardTileChangingContentEventArgsDescriptionMetadata": "DashboardTileChangingContentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileCustomization": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileCustomization", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomization()": "DashboardTileCustomization()", + "DashboardTileCustomization": "DashboardTileCustomization()", + "CollectionIndex": "CollectionIndex", + "IsCollectionInsertionAtEnd": "IsCollectionInsertionAtEnd", + "IsCollectionInsertionAtIndex": "IsCollectionInsertionAtIndex", + "IsCollectionInsertionAtStart": "IsCollectionInsertionAtStart", + "IsCollectionRemovaltIndex": "IsCollectionRemovaltIndex", + "MatchParentIndex": "MatchParentIndex", + "MatchType": "MatchType", + "Order": "Order", + "PropertyName": "PropertyName", + "PropertyValue": "PropertyValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileCustomizationCollection": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileCustomizationCollection", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomizationCollection()": "DashboardTileCustomizationCollection()", + "DashboardTileCustomizationCollection": "DashboardTileCustomizationCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileCustomizationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileCustomizationDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomizationDescription()": "DashboardTileCustomizationDescription()", + "DashboardTileCustomizationDescription": "DashboardTileCustomizationDescription()", + "CollectionIndex": "CollectionIndex", + "IsCollectionInsertionAtEnd": "IsCollectionInsertionAtEnd", + "IsCollectionInsertionAtIndex": "IsCollectionInsertionAtIndex", + "IsCollectionInsertionAtStart": "IsCollectionInsertionAtStart", + "IsCollectionRemovaltIndex": "IsCollectionRemovaltIndex", + "MatchParentIndex": "MatchParentIndex", + "MatchType": "MatchType", + "Order": "Order", + "PropertyName": "PropertyName", + "PropertyValueRef": "PropertyValueRef", + "Type": "Type" + } + } + ], + "DashboardTileCustomizationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileCustomizationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomizationDescriptionMetadata()": "DashboardTileCustomizationDescriptionMetadata()", + "DashboardTileCustomizationDescriptionMetadata": "DashboardTileCustomizationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileCustomizationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileCustomizationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomizationDescriptionModule()": "DashboardTileCustomizationDescriptionModule()", + "DashboardTileCustomizationDescriptionModule": "DashboardTileCustomizationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileDescription()": "DashboardTileDescription()", + "DashboardTileDescription": "DashboardTileDescription()", + "ActualBrushes": "ActualBrushes", + "ActualOutlines": "ActualOutlines", + "AutoCalloutsVisible": "AutoCalloutsVisible", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "Brushes": "Brushes", + "CategoryAxisMajorStroke": "CategoryAxisMajorStroke", + "ChangingContentRef": "ChangingContentRef", + "CrosshairsAnnotationEnabled": "CrosshairsAnnotationEnabled", + "CrosshairsDisplayMode": "CrosshairsDisplayMode", + "Customizations": "Customizations", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "Density": "Density", + "ExcludedProperties": "ExcludedProperties", + "FilterExpressions": "FilterExpressions", + "FilterStringErrorsParsingRef": "FilterStringErrorsParsingRef", + "FinalValueAnnotationsVisible": "FinalValueAnnotationsVisible", + "GroupDescriptions": "GroupDescriptions", + "GroupSortDescriptions": "GroupSortDescriptions", + "GroupSorts": "GroupSorts", + "Height": "Height", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "HighlightedDataSource": "HighlightedDataSource", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "IncludedProperties": "IncludedProperties", + "InitialFilter": "InitialFilter", + "InitialFilterExpressions": "InitialFilterExpressions", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroupSortDescriptions": "InitialGroupSortDescriptions", + "InitialGroups": "InitialGroups", + "InitialHighlightFilter": "InitialHighlightFilter", + "InitialHighlightFilterExpressions": "InitialHighlightFilterExpressions", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSummaries": "InitialSummaries", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "Outlines": "Outlines", + "SelectedSeriesItems": "SelectedSeriesItems", + "ShouldAvoidAxisAnnotationCollisions": "ShouldAvoidAxisAnnotationCollisions", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "TileTitle": "TileTitle", + "TrendLineBrushes": "TrendLineBrushes", + "TrendLineType": "TrendLineType", + "TrendLineTypes": "TrendLineTypes", + "Type": "Type", + "UserAnnotationInformationRequestedRef": "UserAnnotationInformationRequestedRef", + "UserAnnotationToolTipContentUpdatingRef": "UserAnnotationToolTipContentUpdatingRef", + "ValidVisualizationTypePriorityThreshold": "ValidVisualizationTypePriorityThreshold", + "ValidVisualizationTypes": "ValidVisualizationTypes", + "ValueLines": "ValueLines", + "ValueLinesBrushes": "ValueLinesBrushes", + "ValueLinesGlobalAverageBrush": "ValueLinesGlobalAverageBrush", + "ValueLinesGlobalMaximumBrush": "ValueLinesGlobalMaximumBrush", + "ValueLinesGlobalMinimumBrush": "ValueLinesGlobalMinimumBrush", + "VisualizationType": "VisualizationType", + "Width": "Width" + } + } + ], + "DashboardTileDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileDescriptionMetadata()": "DashboardTileDescriptionMetadata()", + "DashboardTileDescriptionMetadata": "DashboardTileDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileDescriptionModule()": "DashboardTileDescriptionModule()", + "DashboardTileDescriptionModule": "DashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileFilterStringErrorsParsingEventArgs": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileFilterStringErrorsParsingEventArgs", + "k": "class", + "s": "classes", + "m": { + "Errors": "Errors", + "PropertyName": "PropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileFilterStringErrorsParsingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileFilterStringErrorsParsingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileFilterStringErrorsParsingEventArgsDescription()": "DashboardTileFilterStringErrorsParsingEventArgsDescription()", + "DashboardTileFilterStringErrorsParsingEventArgsDescription": "DashboardTileFilterStringErrorsParsingEventArgsDescription()", + "Errors": "Errors", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata()": "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata()", + "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata": "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileGroupDescription": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileGroupDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescription()": "DashboardTileGroupDescription()", + "DashboardTileGroupDescription": "DashboardTileGroupDescription()", + "DashboardTileGroupDescription(string)": "DashboardTileGroupDescription(string)", + "DashboardTileGroupDescription(string, ListSortDirection)": "DashboardTileGroupDescription(string, ListSortDirection)" + } + } + ], + "DashboardTileGroupDescriptionCollection": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileGroupDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescriptionCollection()": "DashboardTileGroupDescriptionCollection()", + "DashboardTileGroupDescriptionCollection": "DashboardTileGroupDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileGroupDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileGroupDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescriptionDescription()": "DashboardTileGroupDescriptionDescription()", + "DashboardTileGroupDescriptionDescription": "DashboardTileGroupDescriptionDescription()", + "Type": "Type" + } + } + ], + "DashboardTileGroupDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileGroupDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescriptionDescriptionMetadata()": "DashboardTileGroupDescriptionDescriptionMetadata()", + "DashboardTileGroupDescriptionDescriptionMetadata": "DashboardTileGroupDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileGroupDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileGroupDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescriptionDescriptionModule()": "DashboardTileGroupDescriptionDescriptionModule()", + "DashboardTileGroupDescriptionDescriptionModule": "DashboardTileGroupDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTilePrimitiveValueWrapper": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTilePrimitiveValueWrapper", + "k": "class", + "s": "classes", + "m": { + "DashboardTilePrimitiveValueWrapper()": "DashboardTilePrimitiveValueWrapper()", + "DashboardTilePrimitiveValueWrapper": "DashboardTilePrimitiveValueWrapper()", + "Value": "Value" + } + } + ], + "DashboardTileSortDescription": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileSortDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescription()": "DashboardTileSortDescription()", + "DashboardTileSortDescription": "DashboardTileSortDescription()", + "DashboardTileSortDescription(string)": "DashboardTileSortDescription(string)", + "DashboardTileSortDescription(string, ListSortDirection)": "DashboardTileSortDescription(string, ListSortDirection)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "SortDirection": "SortDirection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileSortDescriptionCollection": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileSortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescriptionCollection()": "DashboardTileSortDescriptionCollection()", + "DashboardTileSortDescriptionCollection": "DashboardTileSortDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileSortDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileSortDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescriptionDescription()": "DashboardTileSortDescriptionDescription()", + "DashboardTileSortDescriptionDescription": "DashboardTileSortDescriptionDescription()", + "Field": "Field", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "DashboardTileSortDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileSortDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescriptionDescriptionMetadata()": "DashboardTileSortDescriptionDescriptionMetadata()", + "DashboardTileSortDescriptionDescriptionMetadata": "DashboardTileSortDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileSortDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileSortDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescriptionDescriptionModule()": "DashboardTileSortDescriptionDescriptionModule()", + "DashboardTileSortDescriptionDescriptionModule": "DashboardTileSortDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileSummaryDescription": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileSummaryDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescription()": "DashboardTileSummaryDescription()", + "DashboardTileSummaryDescription": "DashboardTileSummaryDescription()", + "DashboardTileSummaryDescription(string)": "DashboardTileSummaryDescription(string)", + "DashboardTileSummaryDescription(string, DataSourceSummaryOperand)": "DashboardTileSummaryDescription(string, DataSourceSummaryOperand)", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "OnProvideCalculator(ProvideCalculatorEventArgs)": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "OnProvideCalculator": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "Operand": "Operand", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileSummaryDescriptionCollection": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DashboardTileSummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescriptionCollection()": "DashboardTileSummaryDescriptionCollection()", + "DashboardTileSummaryDescriptionCollection": "DashboardTileSummaryDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileSummaryDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileSummaryDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescriptionDescription()": "DashboardTileSummaryDescriptionDescription()", + "DashboardTileSummaryDescriptionDescription": "DashboardTileSummaryDescriptionDescription()", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Field": "Field", + "Operand": "Operand", + "ProvideCalculatorRef": "ProvideCalculatorRef", + "Type": "Type" + } + } + ], + "DashboardTileSummaryDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileSummaryDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescriptionDescriptionMetadata()": "DashboardTileSummaryDescriptionDescriptionMetadata()", + "DashboardTileSummaryDescriptionDescriptionMetadata": "DashboardTileSummaryDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileSummaryDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DashboardTileSummaryDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescriptionDescriptionModule()": "DashboardTileSummaryDescriptionDescriptionModule()", + "DashboardTileSummaryDescriptionDescriptionModule": "DashboardTileSummaryDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileVisualizationType": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/enums/DashboardTileVisualizationType", + "k": "enum", + "s": "enums" + } + ], + "DataAbbreviationMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataAbbreviationMode", + "k": "enum", + "s": "enums" + } + ], + "DataAnnotationAxisLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationAxisLayer", + "k": "class", + "s": "classes", + "m": { + "AnnotationBackground": "AnnotationBackground", + "AnnotationBackgroundMatchLayer": "AnnotationBackgroundMatchLayer", + "AnnotationBackgroundMatchLayerProperty": "AnnotationBackgroundMatchLayerProperty", + "AnnotationBackgroundMode": "AnnotationBackgroundMode", + "AnnotationBackgroundModeProperty": "AnnotationBackgroundModeProperty", + "AnnotationBackgroundProperty": "AnnotationBackgroundProperty", + "AnnotationBackgroundShift": "AnnotationBackgroundShift", + "AnnotationBackgroundShiftProperty": "AnnotationBackgroundShiftProperty", + "AnnotationBadgeBackground": "AnnotationBadgeBackground", + "AnnotationBadgeBackgroundProperty": "AnnotationBadgeBackgroundProperty", + "AnnotationBadgeCornerRadius": "AnnotationBadgeCornerRadius", + "AnnotationBadgeCornerRadiusProperty": "AnnotationBadgeCornerRadiusProperty", + "AnnotationBadgeEnabled": "AnnotationBadgeEnabled", + "AnnotationBadgeEnabledProperty": "AnnotationBadgeEnabledProperty", + "AnnotationBadgeImagePath": "AnnotationBadgeImagePath", + "AnnotationBadgeImagePathProperty": "AnnotationBadgeImagePathProperty", + "AnnotationBadgeMargin": "AnnotationBadgeMargin", + "AnnotationBadgeMarginProperty": "AnnotationBadgeMarginProperty", + "AnnotationBadgeOutline": "AnnotationBadgeOutline", + "AnnotationBadgeOutlineProperty": "AnnotationBadgeOutlineProperty", + "AnnotationBadgeOutlineThickness": "AnnotationBadgeOutlineThickness", + "AnnotationBadgeOutlineThicknessProperty": "AnnotationBadgeOutlineThicknessProperty", + "AnnotationBadgeSize": "AnnotationBadgeSize", + "AnnotationBadgeSizeProperty": "AnnotationBadgeSizeProperty", + "AnnotationBorderColor": "AnnotationBorderColor", + "AnnotationBorderColorProperty": "AnnotationBorderColorProperty", + "AnnotationBorderMatchLayer": "AnnotationBorderMatchLayer", + "AnnotationBorderMatchLayerProperty": "AnnotationBorderMatchLayerProperty", + "AnnotationBorderMode": "AnnotationBorderMode", + "AnnotationBorderModeProperty": "AnnotationBorderModeProperty", + "AnnotationBorderRadius": "AnnotationBorderRadius", + "AnnotationBorderRadiusProperty": "AnnotationBorderRadiusProperty", + "AnnotationBorderShift": "AnnotationBorderShift", + "AnnotationBorderShiftProperty": "AnnotationBorderShiftProperty", + "AnnotationBorderThickness": "AnnotationBorderThickness", + "AnnotationBorderThicknessProperty": "AnnotationBorderThicknessProperty", + "AnnotationLabelDisplayMode": "AnnotationLabelDisplayMode", + "AnnotationLabelDisplayModeProperty": "AnnotationLabelDisplayModeProperty", + "AnnotationLabelVisible": "AnnotationLabelVisible", + "AnnotationLabelVisibleProperty": "AnnotationLabelVisibleProperty", + "AnnotationPaddingBottom": "AnnotationPaddingBottom", + "AnnotationPaddingBottomProperty": "AnnotationPaddingBottomProperty", + "AnnotationPaddingLeft": "AnnotationPaddingLeft", + "AnnotationPaddingLeftProperty": "AnnotationPaddingLeftProperty", + "AnnotationPaddingRight": "AnnotationPaddingRight", + "AnnotationPaddingRightProperty": "AnnotationPaddingRightProperty", + "AnnotationPaddingTop": "AnnotationPaddingTop", + "AnnotationPaddingTopProperty": "AnnotationPaddingTopProperty", + "AnnotationTextColor": "AnnotationTextColor", + "AnnotationTextColorMatchLayer": "AnnotationTextColorMatchLayer", + "AnnotationTextColorMatchLayerProperty": "AnnotationTextColorMatchLayerProperty", + "AnnotationTextColorMode": "AnnotationTextColorMode", + "AnnotationTextColorModeProperty": "AnnotationTextColorModeProperty", + "AnnotationTextColorProperty": "AnnotationTextColorProperty", + "AnnotationTextColorShift": "AnnotationTextColorShift", + "AnnotationTextColorShiftProperty": "AnnotationTextColorShiftProperty", + "AnnotationValueMaxPrecision": "AnnotationValueMaxPrecision", + "AnnotationValueMaxPrecisionProperty": "AnnotationValueMaxPrecisionProperty", + "AnnotationValueMinPrecision": "AnnotationValueMinPrecision", + "AnnotationValueMinPrecisionProperty": "AnnotationValueMinPrecisionProperty", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "TargetMode": "TargetMode", + "TargetModeProperty": "TargetModeProperty" + } + } + ], + "DataAnnotationAxisLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationAxisLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationAxisLayerDescription()": "DataAnnotationAxisLayerDescription()", + "DataAnnotationAxisLayerDescription": "DataAnnotationAxisLayerDescription()", + "AnnotationBackground": "AnnotationBackground", + "AnnotationBackgroundMatchLayer": "AnnotationBackgroundMatchLayer", + "AnnotationBackgroundMode": "AnnotationBackgroundMode", + "AnnotationBackgroundShift": "AnnotationBackgroundShift", + "AnnotationBadgeBackground": "AnnotationBadgeBackground", + "AnnotationBadgeCornerRadius": "AnnotationBadgeCornerRadius", + "AnnotationBadgeEnabled": "AnnotationBadgeEnabled", + "AnnotationBadgeImagePath": "AnnotationBadgeImagePath", + "AnnotationBadgeMargin": "AnnotationBadgeMargin", + "AnnotationBadgeOutline": "AnnotationBadgeOutline", + "AnnotationBadgeOutlineThickness": "AnnotationBadgeOutlineThickness", + "AnnotationBadgeSize": "AnnotationBadgeSize", + "AnnotationBorderColor": "AnnotationBorderColor", + "AnnotationBorderMatchLayer": "AnnotationBorderMatchLayer", + "AnnotationBorderMode": "AnnotationBorderMode", + "AnnotationBorderRadius": "AnnotationBorderRadius", + "AnnotationBorderShift": "AnnotationBorderShift", + "AnnotationBorderThickness": "AnnotationBorderThickness", + "AnnotationLabelDisplayMode": "AnnotationLabelDisplayMode", + "AnnotationLabelVisible": "AnnotationLabelVisible", + "AnnotationPaddingBottom": "AnnotationPaddingBottom", + "AnnotationPaddingLeft": "AnnotationPaddingLeft", + "AnnotationPaddingRight": "AnnotationPaddingRight", + "AnnotationPaddingTop": "AnnotationPaddingTop", + "AnnotationTextColor": "AnnotationTextColor", + "AnnotationTextColorMatchLayer": "AnnotationTextColorMatchLayer", + "AnnotationTextColorMode": "AnnotationTextColorMode", + "AnnotationTextColorShift": "AnnotationTextColorShift", + "AnnotationValueMaxPrecision": "AnnotationValueMaxPrecision", + "AnnotationValueMinPrecision": "AnnotationValueMinPrecision", + "TargetAxisRef": "TargetAxisRef", + "TargetMode": "TargetMode", + "Type": "Type" + } + } + ], + "DataAnnotationAxisLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationAxisLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationAxisLayerDescriptionMetadata()": "DataAnnotationAxisLayerDescriptionMetadata()", + "DataAnnotationAxisLayerDescriptionMetadata": "DataAnnotationAxisLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationBandLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationBandLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationBandLayer()": "DataAnnotationBandLayer()", + "DataAnnotationBandLayer": "DataAnnotationBandLayer()", + "AnnotationBreadthMemberPath": "AnnotationBreadthMemberPath", + "AnnotationBreadthMemberPathProperty": "AnnotationBreadthMemberPathProperty" + } + } + ], + "DataAnnotationBandLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationBandLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationBandLayerDescription()": "DataAnnotationBandLayerDescription()", + "DataAnnotationBandLayerDescription": "DataAnnotationBandLayerDescription()", + "AnnotationBreadthMemberPath": "AnnotationBreadthMemberPath", + "Type": "Type" + } + } + ], + "DataAnnotationBandLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationBandLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationBandLayerDescriptionMetadata()": "DataAnnotationBandLayerDescriptionMetadata()", + "DataAnnotationBandLayerDescriptionMetadata": "DataAnnotationBandLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationBandLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationBandLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationBandLayerDescriptionModule()": "DataAnnotationBandLayerDescriptionModule()", + "DataAnnotationBandLayerDescriptionModule": "DataAnnotationBandLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationDisplayMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/DataAnnotationDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "DataAnnotationInfo": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationInfo", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationInfo()": "DataAnnotationInfo()", + "DataAnnotationInfo": "DataAnnotationInfo()", + "Background": "Background", + "BorderColor": "BorderColor", + "BorderRadius": "BorderRadius", + "BorderThickness": "BorderThickness", + "DataIndex": "DataIndex", + "DataLabelX": "DataLabelX", + "DataLabelY": "DataLabelY", + "DataValueX": "DataValueX", + "DataValueY": "DataValueY", + "IsCenterLabel": "IsCenterLabel", + "IsEndLabel": "IsEndLabel", + "IsStartLabel": "IsStartLabel", + "IsXAxisBadgeEnabled": "IsXAxisBadgeEnabled", + "IsYAxisBadgeEnabled": "IsYAxisBadgeEnabled", + "TextColor": "TextColor", + "XAxisBadgeBackground": "XAxisBadgeBackground", + "XAxisBadgeImagePath": "XAxisBadgeImagePath", + "XAxisBadgeMargin": "XAxisBadgeMargin", + "XAxisBadgeOutline": "XAxisBadgeOutline", + "XAxisBadgeOutlineThickness": "XAxisBadgeOutlineThickness", + "XAxisBadgeRadius": "XAxisBadgeRadius", + "XAxisBadgeSize": "XAxisBadgeSize", + "XAxisLabel": "XAxisLabel", + "XAxisPixel": "XAxisPixel", + "XAxisUserAnnotation": "XAxisUserAnnotation", + "XAxisValue": "XAxisValue", + "XAxisWindow": "XAxisWindow", + "YAxisBadgeBackground": "YAxisBadgeBackground", + "YAxisBadgeImagePath": "YAxisBadgeImagePath", + "YAxisBadgeMargin": "YAxisBadgeMargin", + "YAxisBadgeOutline": "YAxisBadgeOutline", + "YAxisBadgeOutlineThickness": "YAxisBadgeOutlineThickness", + "YAxisBadgeRadius": "YAxisBadgeRadius", + "YAxisBadgeSize": "YAxisBadgeSize", + "YAxisLabel": "YAxisLabel", + "YAxisPixel": "YAxisPixel", + "YAxisUserAnnotation": "YAxisUserAnnotation", + "YAxisValue": "YAxisValue", + "YAxisWindow": "YAxisWindow", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataAnnotationInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationInfoDescription()": "DataAnnotationInfoDescription()", + "DataAnnotationInfoDescription": "DataAnnotationInfoDescription()", + "Background": "Background", + "BorderColor": "BorderColor", + "BorderRadius": "BorderRadius", + "BorderThickness": "BorderThickness", + "DataIndex": "DataIndex", + "DataLabelX": "DataLabelX", + "DataLabelY": "DataLabelY", + "DataValueX": "DataValueX", + "DataValueY": "DataValueY", + "IsCenterLabel": "IsCenterLabel", + "IsEndLabel": "IsEndLabel", + "IsStartLabel": "IsStartLabel", + "IsXAxisBadgeEnabled": "IsXAxisBadgeEnabled", + "IsYAxisBadgeEnabled": "IsYAxisBadgeEnabled", + "TextColor": "TextColor", + "Type": "Type", + "XAxisBadgeBackground": "XAxisBadgeBackground", + "XAxisBadgeImagePath": "XAxisBadgeImagePath", + "XAxisBadgeMargin": "XAxisBadgeMargin", + "XAxisBadgeOutline": "XAxisBadgeOutline", + "XAxisBadgeOutlineThickness": "XAxisBadgeOutlineThickness", + "XAxisBadgeRadius": "XAxisBadgeRadius", + "XAxisBadgeSize": "XAxisBadgeSize", + "XAxisLabel": "XAxisLabel", + "XAxisPixel": "XAxisPixel", + "XAxisUserAnnotation": "XAxisUserAnnotation", + "XAxisValue": "XAxisValue", + "XAxisWindow": "XAxisWindow", + "YAxisBadgeBackground": "YAxisBadgeBackground", + "YAxisBadgeImagePath": "YAxisBadgeImagePath", + "YAxisBadgeMargin": "YAxisBadgeMargin", + "YAxisBadgeOutline": "YAxisBadgeOutline", + "YAxisBadgeOutlineThickness": "YAxisBadgeOutlineThickness", + "YAxisBadgeRadius": "YAxisBadgeRadius", + "YAxisBadgeSize": "YAxisBadgeSize", + "YAxisLabel": "YAxisLabel", + "YAxisPixel": "YAxisPixel", + "YAxisUserAnnotation": "YAxisUserAnnotation", + "YAxisValue": "YAxisValue", + "YAxisWindow": "YAxisWindow" + } + } + ], + "DataAnnotationInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationInfoDescriptionMetadata()": "DataAnnotationInfoDescriptionMetadata()", + "DataAnnotationInfoDescriptionMetadata": "DataAnnotationInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationItem": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationItem", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationItem()": "DataAnnotationItem()", + "DataAnnotationItem": "DataAnnotationItem()", + "CenterLabelX": "CenterLabelX", + "CenterLabelY": "CenterLabelY", + "DataIndex": "DataIndex", + "EndLabelX": "EndLabelX", + "EndLabelY": "EndLabelY", + "ShapeBrush": "ShapeBrush", + "ShapeCenterX": "ShapeCenterX", + "ShapeCenterY": "ShapeCenterY", + "ShapeEndX": "ShapeEndX", + "ShapeEndY": "ShapeEndY", + "ShapeOutline": "ShapeOutline", + "ShapeStartX": "ShapeStartX", + "ShapeStartY": "ShapeStartY", + "ShapeThickness": "ShapeThickness", + "StartLabelX": "StartLabelX", + "StartLabelY": "StartLabelY", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataAnnotationItemDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationItemDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationItemDescription()": "DataAnnotationItemDescription()", + "DataAnnotationItemDescription": "DataAnnotationItemDescription()", + "CenterLabelX": "CenterLabelX", + "CenterLabelY": "CenterLabelY", + "DataIndex": "DataIndex", + "EndLabelX": "EndLabelX", + "EndLabelY": "EndLabelY", + "ShapeBrush": "ShapeBrush", + "ShapeCenterX": "ShapeCenterX", + "ShapeCenterY": "ShapeCenterY", + "ShapeEndX": "ShapeEndX", + "ShapeEndY": "ShapeEndY", + "ShapeOutline": "ShapeOutline", + "ShapeStartX": "ShapeStartX", + "ShapeStartY": "ShapeStartY", + "ShapeThickness": "ShapeThickness", + "StartLabelX": "StartLabelX", + "StartLabelY": "StartLabelY", + "Type": "Type" + } + } + ], + "DataAnnotationItemDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationItemDescriptionMetadata()": "DataAnnotationItemDescriptionMetadata()", + "DataAnnotationItemDescriptionMetadata": "DataAnnotationItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationLineLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationLineLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationLineLayer()": "DataAnnotationLineLayer()", + "DataAnnotationLineLayer": "DataAnnotationLineLayer()" + } + } + ], + "DataAnnotationLineLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationLineLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationLineLayerDescription()": "DataAnnotationLineLayerDescription()", + "DataAnnotationLineLayerDescription": "DataAnnotationLineLayerDescription()", + "Type": "Type" + } + } + ], + "DataAnnotationLineLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationLineLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationLineLayerDescriptionMetadata()": "DataAnnotationLineLayerDescriptionMetadata()", + "DataAnnotationLineLayerDescriptionMetadata": "DataAnnotationLineLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationLineLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationLineLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationLineLayerDescriptionModule()": "DataAnnotationLineLayerDescriptionModule()", + "DataAnnotationLineLayerDescriptionModule": "DataAnnotationLineLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationPointLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationPointLayer", + "k": "class", + "s": "classes", + "m": { + "AnnotationBadgeBackgroundXMemberPath": "AnnotationBadgeBackgroundXMemberPath", + "AnnotationBadgeBackgroundXMemberPathProperty": "AnnotationBadgeBackgroundXMemberPathProperty", + "AnnotationBadgeBackgroundYMemberPath": "AnnotationBadgeBackgroundYMemberPath", + "AnnotationBadgeBackgroundYMemberPathProperty": "AnnotationBadgeBackgroundYMemberPathProperty", + "AnnotationBadgeEnabledXMemberPath": "AnnotationBadgeEnabledXMemberPath", + "AnnotationBadgeEnabledXMemberPathProperty": "AnnotationBadgeEnabledXMemberPathProperty", + "AnnotationBadgeEnabledYMemberPath": "AnnotationBadgeEnabledYMemberPath", + "AnnotationBadgeEnabledYMemberPathProperty": "AnnotationBadgeEnabledYMemberPathProperty", + "AnnotationBadgeImageXMemberPath": "AnnotationBadgeImageXMemberPath", + "AnnotationBadgeImageXMemberPathProperty": "AnnotationBadgeImageXMemberPathProperty", + "AnnotationBadgeImageYMemberPath": "AnnotationBadgeImageYMemberPath", + "AnnotationBadgeImageYMemberPathProperty": "AnnotationBadgeImageYMemberPathProperty", + "AnnotationBadgeOutlineXMemberPath": "AnnotationBadgeOutlineXMemberPath", + "AnnotationBadgeOutlineXMemberPathProperty": "AnnotationBadgeOutlineXMemberPathProperty", + "AnnotationBadgeOutlineYMemberPath": "AnnotationBadgeOutlineYMemberPath", + "AnnotationBadgeOutlineYMemberPathProperty": "AnnotationBadgeOutlineYMemberPathProperty", + "CenterLabelXDisplayMode": "CenterLabelXDisplayMode", + "CenterLabelXDisplayModeProperty": "CenterLabelXDisplayModeProperty", + "CenterLabelXMemberPath": "CenterLabelXMemberPath", + "CenterLabelXMemberPathProperty": "CenterLabelXMemberPathProperty", + "CenterLabelYDisplayMode": "CenterLabelYDisplayMode", + "CenterLabelYDisplayModeProperty": "CenterLabelYDisplayModeProperty", + "CenterLabelYMemberPath": "CenterLabelYMemberPath", + "CenterLabelYMemberPathProperty": "CenterLabelYMemberPathProperty", + "EndLabelXDisplayMode": "EndLabelXDisplayMode", + "EndLabelXDisplayModeProperty": "EndLabelXDisplayModeProperty", + "EndLabelXMemberPath": "EndLabelXMemberPath", + "EndLabelXMemberPathProperty": "EndLabelXMemberPathProperty", + "EndLabelYDisplayMode": "EndLabelYDisplayMode", + "EndLabelYDisplayModeProperty": "EndLabelYDisplayModeProperty", + "EndLabelYMemberPath": "EndLabelYMemberPath", + "EndLabelYMemberPathProperty": "EndLabelYMemberPathProperty", + "EndValueXMemberPath": "EndValueXMemberPath", + "EndValueXMemberPathProperty": "EndValueXMemberPathProperty", + "EndValueYMemberPath": "EndValueYMemberPath", + "EndValueYMemberPathProperty": "EndValueYMemberPathProperty", + "StartLabelXDisplayMode": "StartLabelXDisplayMode", + "StartLabelXDisplayModeProperty": "StartLabelXDisplayModeProperty", + "StartLabelXMemberPath": "StartLabelXMemberPath", + "StartLabelXMemberPathProperty": "StartLabelXMemberPathProperty", + "StartLabelYDisplayMode": "StartLabelYDisplayMode", + "StartLabelYDisplayModeProperty": "StartLabelYDisplayModeProperty", + "StartLabelYMemberPath": "StartLabelYMemberPath", + "StartLabelYMemberPathProperty": "StartLabelYMemberPathProperty", + "StartValueXMemberPath": "StartValueXMemberPath", + "StartValueXMemberPathProperty": "StartValueXMemberPathProperty", + "StartValueYMemberPath": "StartValueYMemberPath", + "StartValueYMemberPathProperty": "StartValueYMemberPathProperty" + } + } + ], + "DataAnnotationPointLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationPointLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationPointLayerDescription()": "DataAnnotationPointLayerDescription()", + "DataAnnotationPointLayerDescription": "DataAnnotationPointLayerDescription()", + "AnnotationBadgeBackgroundXMemberPath": "AnnotationBadgeBackgroundXMemberPath", + "AnnotationBadgeBackgroundYMemberPath": "AnnotationBadgeBackgroundYMemberPath", + "AnnotationBadgeEnabledXMemberPath": "AnnotationBadgeEnabledXMemberPath", + "AnnotationBadgeEnabledYMemberPath": "AnnotationBadgeEnabledYMemberPath", + "AnnotationBadgeImageXMemberPath": "AnnotationBadgeImageXMemberPath", + "AnnotationBadgeImageYMemberPath": "AnnotationBadgeImageYMemberPath", + "AnnotationBadgeOutlineXMemberPath": "AnnotationBadgeOutlineXMemberPath", + "AnnotationBadgeOutlineYMemberPath": "AnnotationBadgeOutlineYMemberPath", + "CenterLabelXDisplayMode": "CenterLabelXDisplayMode", + "CenterLabelXMemberPath": "CenterLabelXMemberPath", + "CenterLabelYDisplayMode": "CenterLabelYDisplayMode", + "CenterLabelYMemberPath": "CenterLabelYMemberPath", + "EndLabelXDisplayMode": "EndLabelXDisplayMode", + "EndLabelXMemberPath": "EndLabelXMemberPath", + "EndLabelYDisplayMode": "EndLabelYDisplayMode", + "EndLabelYMemberPath": "EndLabelYMemberPath", + "EndValueXMemberPath": "EndValueXMemberPath", + "EndValueYMemberPath": "EndValueYMemberPath", + "StartLabelXDisplayMode": "StartLabelXDisplayMode", + "StartLabelXMemberPath": "StartLabelXMemberPath", + "StartLabelYDisplayMode": "StartLabelYDisplayMode", + "StartLabelYMemberPath": "StartLabelYMemberPath", + "StartValueXMemberPath": "StartValueXMemberPath", + "StartValueYMemberPath": "StartValueYMemberPath", + "Type": "Type" + } + } + ], + "DataAnnotationPointLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationPointLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationPointLayerDescriptionMetadata()": "DataAnnotationPointLayerDescriptionMetadata()", + "DataAnnotationPointLayerDescriptionMetadata": "DataAnnotationPointLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationRangeLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationRangeLayer", + "k": "class", + "s": "classes", + "m": { + "CenterLabelBackground": "CenterLabelBackground", + "CenterLabelBackgroundProperty": "CenterLabelBackgroundProperty", + "CenterLabelBorderColor": "CenterLabelBorderColor", + "CenterLabelBorderColorProperty": "CenterLabelBorderColorProperty", + "CenterLabelTextColor": "CenterLabelTextColor", + "CenterLabelTextColorProperty": "CenterLabelTextColorProperty", + "EndLabelBackground": "EndLabelBackground", + "EndLabelBackgroundProperty": "EndLabelBackgroundProperty", + "EndLabelBorderColor": "EndLabelBorderColor", + "EndLabelBorderColorProperty": "EndLabelBorderColorProperty", + "EndLabelTextColor": "EndLabelTextColor", + "EndLabelTextColorProperty": "EndLabelTextColorProperty", + "StartLabelBackground": "StartLabelBackground", + "StartLabelBackgroundProperty": "StartLabelBackgroundProperty", + "StartLabelBorderColor": "StartLabelBorderColor", + "StartLabelBorderColorProperty": "StartLabelBorderColorProperty", + "StartLabelTextColor": "StartLabelTextColor", + "StartLabelTextColorProperty": "StartLabelTextColorProperty" + } + } + ], + "DataAnnotationRangeLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationRangeLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRangeLayerDescription()": "DataAnnotationRangeLayerDescription()", + "DataAnnotationRangeLayerDescription": "DataAnnotationRangeLayerDescription()", + "CenterLabelBackground": "CenterLabelBackground", + "CenterLabelBorderColor": "CenterLabelBorderColor", + "CenterLabelTextColor": "CenterLabelTextColor", + "EndLabelBackground": "EndLabelBackground", + "EndLabelBorderColor": "EndLabelBorderColor", + "EndLabelTextColor": "EndLabelTextColor", + "StartLabelBackground": "StartLabelBackground", + "StartLabelBorderColor": "StartLabelBorderColor", + "StartLabelTextColor": "StartLabelTextColor", + "Type": "Type" + } + } + ], + "DataAnnotationRangeLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationRangeLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRangeLayerDescriptionMetadata()": "DataAnnotationRangeLayerDescriptionMetadata()", + "DataAnnotationRangeLayerDescriptionMetadata": "DataAnnotationRangeLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationRectLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationRectLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRectLayer()": "DataAnnotationRectLayer()", + "DataAnnotationRectLayer": "DataAnnotationRectLayer()" + } + } + ], + "DataAnnotationRectLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationRectLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRectLayerDescription()": "DataAnnotationRectLayerDescription()", + "DataAnnotationRectLayerDescription": "DataAnnotationRectLayerDescription()", + "Type": "Type" + } + } + ], + "DataAnnotationRectLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationRectLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRectLayerDescriptionMetadata()": "DataAnnotationRectLayerDescriptionMetadata()", + "DataAnnotationRectLayerDescriptionMetadata": "DataAnnotationRectLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationRectLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationRectLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRectLayerDescriptionModule()": "DataAnnotationRectLayerDescriptionModule()", + "DataAnnotationRectLayerDescriptionModule": "DataAnnotationRectLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationShapeLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationShapeLayer", + "k": "class", + "s": "classes", + "m": { + "AnnotationShapeVisible": "AnnotationShapeVisible", + "AnnotationShapeVisibleProperty": "AnnotationShapeVisibleProperty", + "FromWorld(Point)": "FromWorld(Point)", + "FromWorld": "FromWorld(Point)", + "FromWorldX(double)": "FromWorldX(double)", + "FromWorldX": "FromWorldX(double)", + "FromWorldY(double)": "FromWorldY(double)", + "FromWorldY": "FromWorldY(double)", + "IsTargetingHorizontalAxis": "IsTargetingHorizontalAxis", + "IsTargetingHorizontalAxisProperty": "IsTargetingHorizontalAxisProperty", + "ItemsUseWorldCoordinates": "ItemsUseWorldCoordinates", + "ItemsUseWorldCoordinatesProperty": "ItemsUseWorldCoordinatesProperty", + "OnStylingAxisAnnotation(DataAnnotationInfo)": "OnStylingAxisAnnotation(DataAnnotationInfo)", + "OnStylingAxisAnnotation": "OnStylingAxisAnnotation(DataAnnotationInfo)", + "OnStylingOverlayText(OverlayTextUpdatingEventArgs)": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnStylingOverlayText": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnStylingShapeAnnotation(DataAnnotationItem)": "OnStylingShapeAnnotation(DataAnnotationItem)", + "OnStylingShapeAnnotation": "OnStylingShapeAnnotation(DataAnnotationItem)", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextAngleProperty": "OverlayTextAngleProperty", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMatchLayerProperty": "OverlayTextBackgroundMatchLayerProperty", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundModeProperty": "OverlayTextBackgroundModeProperty", + "OverlayTextBackgroundProperty": "OverlayTextBackgroundProperty", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBackgroundShiftProperty": "OverlayTextBackgroundShiftProperty", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderColorProperty": "OverlayTextBorderColorProperty", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMatchLayerProperty": "OverlayTextBorderMatchLayerProperty", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderModeProperty": "OverlayTextBorderModeProperty", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderRadiusProperty": "OverlayTextBorderRadiusProperty", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderShiftProperty": "OverlayTextBorderShiftProperty", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextBorderThicknessProperty": "OverlayTextBorderThicknessProperty", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMatchLayerProperty": "OverlayTextColorMatchLayerProperty", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorModeProperty": "OverlayTextColorModeProperty", + "OverlayTextColorProperty": "OverlayTextColorProperty", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextColorShiftProperty": "OverlayTextColorShiftProperty", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontFamilyProperty": "OverlayTextFontFamilyProperty", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontSizeProperty": "OverlayTextFontSizeProperty", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontStyleProperty": "OverlayTextFontStyleProperty", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextFontWeightProperty": "OverlayTextFontWeightProperty", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalMarginProperty": "OverlayTextHorizontalMarginProperty", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextHorizontalPaddingProperty": "OverlayTextHorizontalPaddingProperty", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextLocationProperty": "OverlayTextLocationProperty", + "OverlayTextMemberPath": "OverlayTextMemberPath", + "OverlayTextMemberPathProperty": "OverlayTextMemberPathProperty", + "OverlayTextProperty": "OverlayTextProperty", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalMarginProperty": "OverlayTextVerticalMarginProperty", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVerticalPaddingProperty": "OverlayTextVerticalPaddingProperty", + "OverlayTextVisible": "OverlayTextVisible", + "OverlayTextVisibleProperty": "OverlayTextVisibleProperty", + "ToWorld(Point)": "ToWorld(Point)", + "ToWorld": "ToWorld(Point)", + "ToWorldX(double)": "ToWorldX(double)", + "ToWorldX": "ToWorldX(double)", + "ToWorldY(double)": "ToWorldY(double)", + "ToWorldY": "ToWorldY(double)" + } + } + ], + "DataAnnotationShapeLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationShapeLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationShapeLayerDescription()": "DataAnnotationShapeLayerDescription()", + "DataAnnotationShapeLayerDescription": "DataAnnotationShapeLayerDescription()", + "AnnotationShapeVisible": "AnnotationShapeVisible", + "IsTargetingHorizontalAxis": "IsTargetingHorizontalAxis", + "ItemsUseWorldCoordinates": "ItemsUseWorldCoordinates", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextMemberPath": "OverlayTextMemberPath", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "StylingAxisAnnotationRef": "StylingAxisAnnotationRef", + "StylingOverlayTextRef": "StylingOverlayTextRef", + "StylingShapeAnnotationRef": "StylingShapeAnnotationRef", + "Type": "Type" + } + } + ], + "DataAnnotationShapeLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationShapeLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationShapeLayerDescriptionMetadata()": "DataAnnotationShapeLayerDescriptionMetadata()", + "DataAnnotationShapeLayerDescriptionMetadata": "DataAnnotationShapeLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationSliceLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationSliceLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationSliceLayer()": "DataAnnotationSliceLayer()", + "DataAnnotationSliceLayer": "DataAnnotationSliceLayer()", + "AnnotationBadgeBackgroundMemberPath": "AnnotationBadgeBackgroundMemberPath", + "AnnotationBadgeBackgroundMemberPathProperty": "AnnotationBadgeBackgroundMemberPathProperty", + "AnnotationBadgeEnabledMemberPath": "AnnotationBadgeEnabledMemberPath", + "AnnotationBadgeEnabledMemberPathProperty": "AnnotationBadgeEnabledMemberPathProperty", + "AnnotationBadgeImageMemberPath": "AnnotationBadgeImageMemberPath", + "AnnotationBadgeImageMemberPathProperty": "AnnotationBadgeImageMemberPathProperty", + "AnnotationBadgeOutlineMemberPath": "AnnotationBadgeOutlineMemberPath", + "AnnotationBadgeOutlineMemberPathProperty": "AnnotationBadgeOutlineMemberPathProperty", + "AnnotationLabelMemberPath": "AnnotationLabelMemberPath", + "AnnotationLabelMemberPathProperty": "AnnotationLabelMemberPathProperty", + "AnnotationValueMemberPath": "AnnotationValueMemberPath", + "AnnotationValueMemberPathProperty": "AnnotationValueMemberPathProperty" + } + } + ], + "DataAnnotationSliceLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationSliceLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationSliceLayerDescription()": "DataAnnotationSliceLayerDescription()", + "DataAnnotationSliceLayerDescription": "DataAnnotationSliceLayerDescription()", + "AnnotationBadgeBackgroundMemberPath": "AnnotationBadgeBackgroundMemberPath", + "AnnotationBadgeEnabledMemberPath": "AnnotationBadgeEnabledMemberPath", + "AnnotationBadgeImageMemberPath": "AnnotationBadgeImageMemberPath", + "AnnotationBadgeOutlineMemberPath": "AnnotationBadgeOutlineMemberPath", + "AnnotationLabelMemberPath": "AnnotationLabelMemberPath", + "AnnotationValueMemberPath": "AnnotationValueMemberPath", + "Type": "Type" + } + } + ], + "DataAnnotationSliceLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationSliceLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationSliceLayerDescriptionMetadata()": "DataAnnotationSliceLayerDescriptionMetadata()", + "DataAnnotationSliceLayerDescriptionMetadata": "DataAnnotationSliceLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationSliceLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationSliceLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationSliceLayerDescriptionModule()": "DataAnnotationSliceLayerDescriptionModule()", + "DataAnnotationSliceLayerDescriptionModule": "DataAnnotationSliceLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationStripLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataAnnotationStripLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStripLayer()": "DataAnnotationStripLayer()", + "DataAnnotationStripLayer": "DataAnnotationStripLayer()", + "AnnotationBadgeBackgroundMemberPath": "AnnotationBadgeBackgroundMemberPath", + "AnnotationBadgeBackgroundMemberPathProperty": "AnnotationBadgeBackgroundMemberPathProperty", + "AnnotationBadgeEnabledMemberPath": "AnnotationBadgeEnabledMemberPath", + "AnnotationBadgeEnabledMemberPathProperty": "AnnotationBadgeEnabledMemberPathProperty", + "AnnotationBadgeImageMemberPath": "AnnotationBadgeImageMemberPath", + "AnnotationBadgeImageMemberPathProperty": "AnnotationBadgeImageMemberPathProperty", + "AnnotationBadgeOutlineMemberPath": "AnnotationBadgeOutlineMemberPath", + "AnnotationBadgeOutlineMemberPathProperty": "AnnotationBadgeOutlineMemberPathProperty", + "CenterLabelDisplayMode": "CenterLabelDisplayMode", + "CenterLabelDisplayModeProperty": "CenterLabelDisplayModeProperty", + "CenterLabelMemberPath": "CenterLabelMemberPath", + "CenterLabelMemberPathProperty": "CenterLabelMemberPathProperty", + "EndLabelDisplayMode": "EndLabelDisplayMode", + "EndLabelDisplayModeProperty": "EndLabelDisplayModeProperty", + "EndLabelMemberPath": "EndLabelMemberPath", + "EndLabelMemberPathProperty": "EndLabelMemberPathProperty", + "EndValueMemberPath": "EndValueMemberPath", + "EndValueMemberPathProperty": "EndValueMemberPathProperty", + "StartLabelDisplayMode": "StartLabelDisplayMode", + "StartLabelDisplayModeProperty": "StartLabelDisplayModeProperty", + "StartLabelMemberPath": "StartLabelMemberPath", + "StartLabelMemberPathProperty": "StartLabelMemberPathProperty", + "StartValueMemberPath": "StartValueMemberPath", + "StartValueMemberPathProperty": "StartValueMemberPathProperty" + } + } + ], + "DataAnnotationStripLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationStripLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStripLayerDescription()": "DataAnnotationStripLayerDescription()", + "DataAnnotationStripLayerDescription": "DataAnnotationStripLayerDescription()", + "AnnotationBadgeBackgroundMemberPath": "AnnotationBadgeBackgroundMemberPath", + "AnnotationBadgeEnabledMemberPath": "AnnotationBadgeEnabledMemberPath", + "AnnotationBadgeImageMemberPath": "AnnotationBadgeImageMemberPath", + "AnnotationBadgeOutlineMemberPath": "AnnotationBadgeOutlineMemberPath", + "CenterLabelDisplayMode": "CenterLabelDisplayMode", + "CenterLabelMemberPath": "CenterLabelMemberPath", + "EndLabelDisplayMode": "EndLabelDisplayMode", + "EndLabelMemberPath": "EndLabelMemberPath", + "EndValueMemberPath": "EndValueMemberPath", + "StartLabelDisplayMode": "StartLabelDisplayMode", + "StartLabelMemberPath": "StartLabelMemberPath", + "StartValueMemberPath": "StartValueMemberPath", + "Type": "Type" + } + } + ], + "DataAnnotationStripLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationStripLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStripLayerDescriptionMetadata()": "DataAnnotationStripLayerDescriptionMetadata()", + "DataAnnotationStripLayerDescriptionMetadata": "DataAnnotationStripLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationStripLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationStripLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStripLayerDescriptionModule()": "DataAnnotationStripLayerDescriptionModule()", + "DataAnnotationStripLayerDescriptionModule": "DataAnnotationStripLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationStyleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStyleEventArgsDescription()": "DataAnnotationStyleEventArgsDescription()", + "DataAnnotationStyleEventArgsDescription": "DataAnnotationStyleEventArgsDescription()", + "AnnotationVisible": "AnnotationVisible", + "LabelCenter": "LabelCenter", + "LabelEnd": "LabelEnd", + "LabelStart": "LabelStart", + "Overlay": "Overlay", + "ShapeBrush": "ShapeBrush", + "ShapeBrushOpacity": "ShapeBrushOpacity", + "ShapeOutline": "ShapeOutline", + "ShapeOutlineOpacity": "ShapeOutlineOpacity", + "ShapeThickness": "ShapeThickness", + "ShapeVisible": "ShapeVisible", + "Type": "Type" + } + } + ], + "DataAnnotationStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataAnnotationStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStyleEventArgsDescriptionMetadata()": "DataAnnotationStyleEventArgsDescriptionMetadata()", + "DataAnnotationStyleEventArgsDescriptionMetadata": "DataAnnotationStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationTargetMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/DataAnnotationTargetMode", + "k": "enum", + "s": "enums" + } + ], + "DataBindingEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DataBindingEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataBindingEventArgs()": "DataBindingEventArgs()", + "DataBindingEventArgs": "DataBindingEventArgs()", + "CellInfo": "CellInfo", + "ResolvedValue": "ResolvedValue", + "RowObject": "RowObject", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataBindingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataBindingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataBindingEventArgsDescription()": "DataBindingEventArgsDescription()", + "DataBindingEventArgsDescription": "DataBindingEventArgsDescription()", + "ResolvedValueRef": "ResolvedValueRef", + "RowObjectRef": "RowObjectRef", + "Type": "Type" + } + } + ], + "DataBindingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataBindingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataBindingEventArgsDescriptionMetadata()": "DataBindingEventArgsDescriptionMetadata()", + "DataBindingEventArgsDescriptionMetadata": "DataBindingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartAnnotationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartAnnotationDescriptionModule()": "DataChartAnnotationDescriptionModule()", + "DataChartAnnotationDescriptionModule": "DataChartAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartCategoryCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartCategoryCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartCategoryCoreDescriptionModule()": "DataChartCategoryCoreDescriptionModule()", + "DataChartCategoryCoreDescriptionModule": "DataChartCategoryCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartCategoryDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartCategoryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartCategoryDescriptionModule()": "DataChartCategoryDescriptionModule()", + "DataChartCategoryDescriptionModule": "DataChartCategoryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartCategoryTrendLineDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartCategoryTrendLineDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartCategoryTrendLineDescriptionModule()": "DataChartCategoryTrendLineDescriptionModule()", + "DataChartCategoryTrendLineDescriptionModule": "DataChartCategoryTrendLineDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartCoreDescriptionModule()": "DataChartCoreDescriptionModule()", + "DataChartCoreDescriptionModule": "DataChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartDashboardTileDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartDashboardTileDescriptionModule()": "DataChartDashboardTileDescriptionModule()", + "DataChartDashboardTileDescriptionModule": "DataChartDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DataChartDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "DataChartDashboardTileFeature()": "DataChartDashboardTileFeature()", + "DataChartDashboardTileFeature": "DataChartDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "DataChartDefaultTooltipsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartDefaultTooltipsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataChartDefaultTooltipsDescriptionMetadata()": "DataChartDefaultTooltipsDescriptionMetadata()", + "DataChartDefaultTooltipsDescriptionMetadata": "DataChartDefaultTooltipsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartDefaultTooltipsExtendedDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartDefaultTooltipsExtendedDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataChartDefaultTooltipsExtendedDescriptionMetadata()": "DataChartDefaultTooltipsExtendedDescriptionMetadata()", + "DataChartDefaultTooltipsExtendedDescriptionMetadata": "DataChartDefaultTooltipsExtendedDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartDescription", + "k": "class", + "s": "classes", + "m": { + "DataChartDescription()": "DataChartDescription()", + "DataChartDescription": "DataChartDescription()", + "ActualPlotAreaMarginBottom": "ActualPlotAreaMarginBottom", + "ActualPlotAreaMarginLeft": "ActualPlotAreaMarginLeft", + "ActualPlotAreaMarginRight": "ActualPlotAreaMarginRight", + "ActualPlotAreaMarginTop": "ActualPlotAreaMarginTop", + "ActualWindowScaleHorizontal": "ActualWindowScaleHorizontal", + "ActualWindowScaleVertical": "ActualWindowScaleVertical", + "AlignsGridLinesToPixels": "AlignsGridLinesToPixels", + "AutoExpandMarginExtraPadding": "AutoExpandMarginExtraPadding", + "AutoExpandMarginMaximumValue": "AutoExpandMarginMaximumValue", + "AutoMarginAndAngleUpdateMode": "AutoMarginAndAngleUpdateMode", + "Axes": "Axes", + "ComputedPlotAreaMarginMode": "ComputedPlotAreaMarginMode", + "DefaultAxisMajorStroke": "DefaultAxisMajorStroke", + "DefaultAxisMinorStroke": "DefaultAxisMinorStroke", + "DefaultAxisStroke": "DefaultAxisStroke", + "FullAxes": "FullAxes", + "GridMode": "GridMode", + "Height": "Height", + "IsHorizontalZoomEnabled": "IsHorizontalZoomEnabled", + "IsSquare": "IsSquare", + "IsVerticalZoomEnabled": "IsVerticalZoomEnabled", + "PlotAreaMarginBottom": "PlotAreaMarginBottom", + "PlotAreaMarginLeft": "PlotAreaMarginLeft", + "PlotAreaMarginRight": "PlotAreaMarginRight", + "PlotAreaMarginTop": "PlotAreaMarginTop", + "SeriesPlotAreaMarginHorizontalMode": "SeriesPlotAreaMarginHorizontalMode", + "SeriesPlotAreaMarginVerticalMode": "SeriesPlotAreaMarginVerticalMode", + "ShouldAutoExpandMarginForInitialLabels": "ShouldAutoExpandMarginForInitialLabels", + "ShouldConsiderAutoRotationForInitialLabels": "ShouldConsiderAutoRotationForInitialLabels", + "ShouldSuppressAxisLabelTruncation": "ShouldSuppressAxisLabelTruncation", + "SuppressAutoMarginAndAngleRecalculation": "SuppressAutoMarginAndAngleRecalculation", + "Type": "Type", + "Width": "Width", + "WindowScaleHorizontal": "WindowScaleHorizontal", + "WindowScaleVertical": "WindowScaleVertical" + } + } + ], + "DataChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataChartDescriptionMetadata()": "DataChartDescriptionMetadata()", + "DataChartDescriptionMetadata": "DataChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartExtendedAxesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartExtendedAxesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartExtendedAxesDescriptionModule()": "DataChartExtendedAxesDescriptionModule()", + "DataChartExtendedAxesDescriptionModule": "DataChartExtendedAxesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartFinancialCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartFinancialCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartFinancialCoreDescriptionModule()": "DataChartFinancialCoreDescriptionModule()", + "DataChartFinancialCoreDescriptionModule": "DataChartFinancialCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartFinancialDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartFinancialDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartFinancialDescriptionModule()": "DataChartFinancialDescriptionModule()", + "DataChartFinancialDescriptionModule": "DataChartFinancialDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartFinancialIndicatorsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartFinancialIndicatorsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartFinancialIndicatorsDescriptionModule()": "DataChartFinancialIndicatorsDescriptionModule()", + "DataChartFinancialIndicatorsDescriptionModule": "DataChartFinancialIndicatorsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartFinancialOverlaysDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartFinancialOverlaysDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartFinancialOverlaysDescriptionModule()": "DataChartFinancialOverlaysDescriptionModule()", + "DataChartFinancialOverlaysDescriptionModule": "DataChartFinancialOverlaysDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartInteractivityDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartInteractivityDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartInteractivityDescriptionModule()": "DataChartInteractivityDescriptionModule()", + "DataChartInteractivityDescriptionModule": "DataChartInteractivityDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartMouseButtonEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartMouseButtonEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataChartMouseButtonEventArgsDescription()": "DataChartMouseButtonEventArgsDescription()", + "DataChartMouseButtonEventArgsDescription": "DataChartMouseButtonEventArgsDescription()", + "CancelSelection": "CancelSelection", + "Chart": "Chart", + "Handled": "Handled", + "ItemRef": "ItemRef", + "PlotAreaPosition": "PlotAreaPosition", + "Series": "Series", + "Type": "Type", + "WorldPosition": "WorldPosition" + } + } + ], + "DataChartMouseButtonEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartMouseButtonEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataChartMouseButtonEventArgsDescriptionMetadata()": "DataChartMouseButtonEventArgsDescriptionMetadata()", + "DataChartMouseButtonEventArgsDescriptionMetadata": "DataChartMouseButtonEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartPolarCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartPolarCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartPolarCoreDescriptionModule()": "DataChartPolarCoreDescriptionModule()", + "DataChartPolarCoreDescriptionModule": "DataChartPolarCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartPolarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartPolarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartPolarDescriptionModule()": "DataChartPolarDescriptionModule()", + "DataChartPolarDescriptionModule": "DataChartPolarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartRadialCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartRadialCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartRadialCoreDescriptionModule()": "DataChartRadialCoreDescriptionModule()", + "DataChartRadialCoreDescriptionModule": "DataChartRadialCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartRadialDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartRadialDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartRadialDescriptionModule()": "DataChartRadialDescriptionModule()", + "DataChartRadialDescriptionModule": "DataChartRadialDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartScatterCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartScatterCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartScatterCoreDescriptionModule()": "DataChartScatterCoreDescriptionModule()", + "DataChartScatterCoreDescriptionModule": "DataChartScatterCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartScatterDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartScatterDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartScatterDescriptionModule()": "DataChartScatterDescriptionModule()", + "DataChartScatterDescriptionModule": "DataChartScatterDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartShapeCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartShapeCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartShapeCoreDescriptionModule()": "DataChartShapeCoreDescriptionModule()", + "DataChartShapeCoreDescriptionModule": "DataChartShapeCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartShapeDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartShapeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartShapeDescriptionModule()": "DataChartShapeDescriptionModule()", + "DataChartShapeDescriptionModule": "DataChartShapeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartStackedDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartStackedDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartStackedDescriptionModule()": "DataChartStackedDescriptionModule()", + "DataChartStackedDescriptionModule": "DataChartStackedDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartToolbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartToolbarDescriptionModule()": "DataChartToolbarDescriptionModule()", + "DataChartToolbarDescriptionModule": "DataChartToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartToolbarIconsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartToolbarIconsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartToolbarIconsDescriptionModule()": "DataChartToolbarIconsDescriptionModule()", + "DataChartToolbarIconsDescriptionModule": "DataChartToolbarIconsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartVerticalCategoryCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartVerticalCategoryCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartVerticalCategoryCoreDescriptionModule()": "DataChartVerticalCategoryCoreDescriptionModule()", + "DataChartVerticalCategoryCoreDescriptionModule": "DataChartVerticalCategoryCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartVerticalCategoryDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartVerticalCategoryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartVerticalCategoryDescriptionModule()": "DataChartVerticalCategoryDescriptionModule()", + "DataChartVerticalCategoryDescriptionModule": "DataChartVerticalCategoryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartVisualDataDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataChartVisualDataDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartVisualDataDescriptionModule()": "DataChartVisualDataDescriptionModule()", + "DataChartVisualDataDescriptionModule": "DataChartVisualDataDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataContext": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataContext", + "k": "class", + "s": "classes", + "m": { + "DataContext()": "DataContext()", + "DataContext": "DataContext()", + "ActualItemBrush": "ActualItemBrush", + "Item": "Item", + "ItemBrush": "ItemBrush", + "ItemLabel": "ItemLabel", + "LegendLabel": "LegendLabel", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Opacity": "Opacity", + "Outline": "Outline", + "Series": "Series", + "Thickness": "Thickness", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataContextDescription", + "k": "class", + "s": "classes", + "m": { + "DataContextDescription()": "DataContextDescription()", + "DataContextDescription": "DataContextDescription()", + "ActualItemBrush": "ActualItemBrush", + "ItemBrush": "ItemBrush", + "ItemLabelRef": "ItemLabelRef", + "ItemRef": "ItemRef", + "LegendLabelRef": "LegendLabelRef", + "Outline": "Outline", + "Thickness": "Thickness", + "Type": "Type" + } + } + ], + "DataContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataContextDescriptionMetadata()": "DataContextDescriptionMetadata()", + "DataContextDescriptionMetadata": "DataContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridAllColumnsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridAllColumnsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridAllColumnsDescriptionModule()": "DataGridAllColumnsDescriptionModule()", + "DataGridAllColumnsDescriptionModule": "DataGridAllColumnsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridCellEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DataGridCellEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataGridCellEventArgs()": "DataGridCellEventArgs()", + "DataGridCellEventArgs": "DataGridCellEventArgs()", + "Button": "Button", + "CellInfo": "CellInfo", + "Grid": "Grid", + "IsDoubleClick": "IsDoubleClick", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridCellEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridCellEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridCellEventArgsDescription()": "DataGridCellEventArgsDescription()", + "DataGridCellEventArgsDescription": "DataGridCellEventArgsDescription()", + "Button": "Button", + "CellInfo": "CellInfo", + "Grid": "Grid", + "IsDoubleClick": "IsDoubleClick", + "Type": "Type" + } + } + ], + "DataGridCellEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridCellEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridCellEventArgsDescriptionMetadata()": "DataGridCellEventArgsDescriptionMetadata()", + "DataGridCellEventArgsDescriptionMetadata": "DataGridCellEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridColumn": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DataGridColumn", + "k": "class", + "s": "classes", + "m": { + "ActualColumnOptionsAccentColor": "ActualColumnOptionsAccentColor", + "ActualColumnOptionsAccentColorProperty": "ActualColumnOptionsAccentColorProperty", + "ActualColumnOptionsBackground": "ActualColumnOptionsBackground", + "ActualColumnOptionsBackgroundProperty": "ActualColumnOptionsBackgroundProperty", + "ActualColumnOptionsGroupHeaderBackground": "ActualColumnOptionsGroupHeaderBackground", + "ActualColumnOptionsGroupHeaderBackgroundProperty": "ActualColumnOptionsGroupHeaderBackgroundProperty", + "ActualColumnOptionsGroupHeaderTextColor": "ActualColumnOptionsGroupHeaderTextColor", + "ActualColumnOptionsGroupHeaderTextColorProperty": "ActualColumnOptionsGroupHeaderTextColorProperty", + "ActualColumnOptionsHighlightColor": "ActualColumnOptionsHighlightColor", + "ActualColumnOptionsHighlightColorProperty": "ActualColumnOptionsHighlightColorProperty", + "ActualColumnOptionsHoverBackgroundColor": "ActualColumnOptionsHoverBackgroundColor", + "ActualColumnOptionsHoverBackgroundColorProperty": "ActualColumnOptionsHoverBackgroundColorProperty", + "ActualColumnOptionsIconAlignment": "ActualColumnOptionsIconAlignment", + "ActualColumnOptionsIconAlignmentProperty": "ActualColumnOptionsIconAlignmentProperty", + "ActualColumnOptionsIconBehavior": "ActualColumnOptionsIconBehavior", + "ActualColumnOptionsIconBehaviorProperty": "ActualColumnOptionsIconBehaviorProperty", + "ActualColumnOptionsIconColor": "ActualColumnOptionsIconColor", + "ActualColumnOptionsIconColorProperty": "ActualColumnOptionsIconColorProperty", + "ActualColumnOptionsRowHeight": "ActualColumnOptionsRowHeight", + "ActualColumnOptionsRowHeightProperty": "ActualColumnOptionsRowHeightProperty", + "ActualColumnOptionsScrollbarActiveBackground": "ActualColumnOptionsScrollbarActiveBackground", + "ActualColumnOptionsScrollbarActiveBackgroundProperty": "ActualColumnOptionsScrollbarActiveBackgroundProperty", + "ActualColumnOptionsScrollbarBackground": "ActualColumnOptionsScrollbarBackground", + "ActualColumnOptionsScrollbarBackgroundProperty": "ActualColumnOptionsScrollbarBackgroundProperty", + "ActualColumnOptionsScrollbarHoverBackground": "ActualColumnOptionsScrollbarHoverBackground", + "ActualColumnOptionsScrollbarHoverBackgroundProperty": "ActualColumnOptionsScrollbarHoverBackgroundProperty", + "ActualColumnOptionsSeparatorColor": "ActualColumnOptionsSeparatorColor", + "ActualColumnOptionsSeparatorColorProperty": "ActualColumnOptionsSeparatorColorProperty", + "ActualColumnOptionsTextColor": "ActualColumnOptionsTextColor", + "ActualColumnOptionsTextColorProperty": "ActualColumnOptionsTextColorProperty", + "ActualColumnOptionsToolTipBackgroundColor": "ActualColumnOptionsToolTipBackgroundColor", + "ActualColumnOptionsToolTipBackgroundColorProperty": "ActualColumnOptionsToolTipBackgroundColorProperty", + "ActualColumnOptionsToolTipTextColor": "ActualColumnOptionsToolTipTextColor", + "ActualColumnOptionsToolTipTextColorProperty": "ActualColumnOptionsToolTipTextColorProperty", + "ActualDeletedTextColor": "ActualDeletedTextColor", + "ActualDeletedTextColorProperty": "ActualDeletedTextColorProperty", + "ActualEditOpacity": "ActualEditOpacity", + "ActualEditOpacityProperty": "ActualEditOpacityProperty", + "ActualHeaderText": "ActualHeaderText", + "ActualHeaderTextProperty": "ActualHeaderTextProperty", + "ActualHoverBackground": "ActualHoverBackground", + "ActualHoverBackgroundProperty": "ActualHoverBackgroundProperty", + "ActualIsColumnOptionsEnabled": "ActualIsColumnOptionsEnabled", + "ActualIsColumnOptionsEnabledProperty": "ActualIsColumnOptionsEnabledProperty", + "ActualIsColumnOptionsGroupingEnabled": "ActualIsColumnOptionsGroupingEnabled", + "ActualIsColumnOptionsGroupingEnabledProperty": "ActualIsColumnOptionsGroupingEnabledProperty", + "ActualIsColumnOptionsSummariesEnabled": "ActualIsColumnOptionsSummariesEnabled", + "ActualIsColumnOptionsSummariesEnabledProperty": "ActualIsColumnOptionsSummariesEnabledProperty", + "ActualMergedCellVerticalAlignment": "ActualMergedCellVerticalAlignment", + "ActualMergedCellVerticalAlignmentProperty": "ActualMergedCellVerticalAlignmentProperty", + "ActualRowHoverTextColor": "ActualRowHoverTextColor", + "ActualRowHoverTextColorProperty": "ActualRowHoverTextColorProperty", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedBackgroundProperty": "ActualSelectedBackgroundProperty", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ActualSelectedTextColorProperty": "ActualSelectedTextColorProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AnimationSettings": "AnimationSettings", + "AnimationSettingsProperty": "AnimationSettingsProperty", + "ApplyCustomFilter(string, int, object)": "ApplyCustomFilter(string, int, object)", + "ApplyCustomFilter": "ApplyCustomFilter(string, int, object)", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsAccentColorProperty": "ColumnOptionsAccentColorProperty", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsBackgroundProperty": "ColumnOptionsBackgroundProperty", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontFamilyProperty": "ColumnOptionsFontFamilyProperty", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontSizeProperty": "ColumnOptionsFontSizeProperty", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontStyleProperty": "ColumnOptionsFontStyleProperty", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsFontWeightProperty": "ColumnOptionsFontWeightProperty", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderBackgroundProperty": "ColumnOptionsGroupHeaderBackgroundProperty", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontFamilyProperty": "ColumnOptionsGroupHeaderFontFamilyProperty", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontSizeProperty": "ColumnOptionsGroupHeaderFontSizeProperty", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontStyleProperty": "ColumnOptionsGroupHeaderFontStyleProperty", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderFontWeightProperty": "ColumnOptionsGroupHeaderFontWeightProperty", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsGroupHeaderTextColorProperty": "ColumnOptionsGroupHeaderTextColorProperty", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHighlightColorProperty": "ColumnOptionsHighlightColorProperty", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsHoverBackgroundColorProperty": "ColumnOptionsHoverBackgroundColorProperty", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconAlignmentProperty": "ColumnOptionsIconAlignmentProperty", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconBehaviorProperty": "ColumnOptionsIconBehaviorProperty", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsIconColorProperty": "ColumnOptionsIconColorProperty", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsRowHeightProperty": "ColumnOptionsRowHeightProperty", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarActiveBackgroundProperty": "ColumnOptionsScrollbarActiveBackgroundProperty", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarBackgroundProperty": "ColumnOptionsScrollbarBackgroundProperty", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsScrollbarHoverBackgroundProperty": "ColumnOptionsScrollbarHoverBackgroundProperty", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsSeparatorColorProperty": "ColumnOptionsSeparatorColorProperty", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTextColorProperty": "ColumnOptionsTextColorProperty", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipBackgroundColorProperty": "ColumnOptionsToolTipBackgroundColorProperty", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "ColumnOptionsToolTipTextColorProperty": "ColumnOptionsToolTipTextColorProperty", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "DeletedTextColor": "DeletedTextColor", + "DeletedTextColorProperty": "DeletedTextColorProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "EditFontFamily": "EditFontFamily", + "EditFontFamilyProperty": "EditFontFamilyProperty", + "EditFontSize": "EditFontSize", + "EditFontSizeProperty": "EditFontSizeProperty", + "EditFontStyle": "EditFontStyle", + "EditFontStyleProperty": "EditFontStyleProperty", + "EditFontWeight": "EditFontWeight", + "EditFontWeightProperty": "EditFontWeightProperty", + "EditOpacity": "EditOpacity", + "EditOpacityProperty": "EditOpacityProperty", + "Field": "Field", + "FieldProperty": "FieldProperty", + "Filter": "Filter", + "FilterComparisonType": "FilterComparisonType", + "FilterComparisonTypeProperty": "FilterComparisonTypeProperty", + "FilterExpression": "FilterExpression", + "FilterExpressionProperty": "FilterExpressionProperty", + "FilterOperands": "FilterOperands", + "FilterProperty": "FilterProperty", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "GetNamedHeaderValue(string)": "GetNamedHeaderValue(string)", + "GetNamedHeaderValue": "GetNamedHeaderValue(string)", + "GetUniqueKey()": "GetUniqueKey()", + "GetUniqueKey": "GetUniqueKey()", + "GroupDirection": "GroupDirection", + "GroupDirectionProperty": "GroupDirectionProperty", + "GroupPosition": "GroupPosition", + "GroupPositionProperty": "GroupPositionProperty", + "HasNamedHeaderValue(string)": "HasNamedHeaderValue(string)", + "HasNamedHeaderValue": "HasNamedHeaderValue(string)", + "HasNamedHeaderValues()": "HasNamedHeaderValues()", + "HasNamedHeaderValues": "HasNamedHeaderValues()", + "Header": "Header", + "HeaderProperty": "HeaderProperty", + "HeaderText": "HeaderText", + "HeaderTextProperty": "HeaderTextProperty", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsAutoGenerated": "IsAutoGenerated", + "IsAutoGeneratedProperty": "IsAutoGeneratedProperty", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsEnabledProperty": "IsColumnOptionsEnabledProperty", + "IsColumnOptionsGroupingEnabled": "IsColumnOptionsGroupingEnabled", + "IsColumnOptionsGroupingEnabledProperty": "IsColumnOptionsGroupingEnabledProperty", + "IsColumnOptionsSummariesEnabled": "IsColumnOptionsSummariesEnabled", + "IsColumnOptionsSummariesEnabledProperty": "IsColumnOptionsSummariesEnabledProperty", + "IsEditable": "IsEditable", + "IsEditableProperty": "IsEditableProperty", + "IsFilteringEnabled": "IsFilteringEnabled", + "IsFilteringEnabledProperty": "IsFilteringEnabledProperty", + "IsHidden": "IsHidden", + "IsHiddenProperty": "IsHiddenProperty", + "IsResizingEnabled": "IsResizingEnabled", + "IsResizingEnabledProperty": "IsResizingEnabledProperty", + "IsSortingEnabled": "IsSortingEnabled", + "IsSortingEnabledProperty": "IsSortingEnabledProperty", + "MergedCellEvaluationCriteria": "MergedCellEvaluationCriteria", + "MergedCellEvaluationCriteriaProperty": "MergedCellEvaluationCriteriaProperty", + "MergedCellMode": "MergedCellMode", + "MergedCellModeProperty": "MergedCellModeProperty", + "MergedCellPaddingBottom": "MergedCellPaddingBottom", + "MergedCellPaddingBottomProperty": "MergedCellPaddingBottomProperty", + "MergedCellPaddingLeft": "MergedCellPaddingLeft", + "MergedCellPaddingLeftProperty": "MergedCellPaddingLeftProperty", + "MergedCellPaddingRight": "MergedCellPaddingRight", + "MergedCellPaddingRightProperty": "MergedCellPaddingRightProperty", + "MergedCellPaddingTop": "MergedCellPaddingTop", + "MergedCellPaddingTopProperty": "MergedCellPaddingTopProperty", + "MergedCellVerticalAlignment": "MergedCellVerticalAlignment", + "MergedCellVerticalAlignmentProperty": "MergedCellVerticalAlignmentProperty", + "MinWidth": "MinWidth", + "MinWidthProperty": "MinWidthProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnFormatCell(FormatCellEventArgs)": "OnFormatCell(FormatCellEventArgs)", + "OnFormatCell": "OnFormatCell(FormatCellEventArgs)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "Pinned": "Pinned", + "PinnedProperty": "PinnedProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveNamedHeaderValue(string)": "RemoveNamedHeaderValue(string)", + "RemoveNamedHeaderValue": "RemoveNamedHeaderValue(string)", + "RowHoverBackground": "RowHoverBackground", + "RowHoverBackgroundProperty": "RowHoverBackgroundProperty", + "RowHoverTextColor": "RowHoverTextColor", + "RowHoverTextColorProperty": "RowHoverTextColorProperty", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundProperty": "SelectedBackgroundProperty", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorProperty": "SelectedTextColorProperty", + "SetNamedHeaderValue(string, CellPropertyAnimationType, object)": "SetNamedHeaderValue(string, CellPropertyAnimationType, object)", + "SetNamedHeaderValue": "SetNamedHeaderValue(string, CellPropertyAnimationType, object)", + "ShouldRemoveWhenHidden": "ShouldRemoveWhenHidden", + "ShouldRemoveWhenHiddenProperty": "ShouldRemoveWhenHiddenProperty", + "SortDirection": "SortDirection", + "SortDirectionProperty": "SortDirectionProperty", + "SortPosition": "SortPosition", + "SortPositionProperty": "SortPositionProperty", + "SuffixIconCollectionName": "SuffixIconCollectionName", + "SuffixIconCollectionNameProperty": "SuffixIconCollectionNameProperty", + "SuffixIconFill": "SuffixIconFill", + "SuffixIconFillProperty": "SuffixIconFillProperty", + "SuffixIconName": "SuffixIconName", + "SuffixIconNameProperty": "SuffixIconNameProperty", + "SuffixIconStroke": "SuffixIconStroke", + "SuffixIconStrokeProperty": "SuffixIconStrokeProperty", + "SuffixIconViewBoxHeight": "SuffixIconViewBoxHeight", + "SuffixIconViewBoxHeightProperty": "SuffixIconViewBoxHeightProperty", + "SuffixIconViewBoxHeightPropertyName": "SuffixIconViewBoxHeightPropertyName", + "SuffixIconViewBoxLeft": "SuffixIconViewBoxLeft", + "SuffixIconViewBoxLeftProperty": "SuffixIconViewBoxLeftProperty", + "SuffixIconViewBoxLeftPropertyName": "SuffixIconViewBoxLeftPropertyName", + "SuffixIconViewBoxTop": "SuffixIconViewBoxTop", + "SuffixIconViewBoxTopProperty": "SuffixIconViewBoxTopProperty", + "SuffixIconViewBoxTopPropertyName": "SuffixIconViewBoxTopPropertyName", + "SuffixIconViewBoxWidth": "SuffixIconViewBoxWidth", + "SuffixIconViewBoxWidthProperty": "SuffixIconViewBoxWidthProperty", + "SuffixIconViewBoxWidthPropertyName": "SuffixIconViewBoxWidthPropertyName", + "SuffixMargin": "SuffixMargin", + "SuffixMarginProperty": "SuffixMarginProperty", + "SuffixMarginPropertyName": "SuffixMarginPropertyName", + "SuffixText": "SuffixText", + "SuffixTextColor": "SuffixTextColor", + "SuffixTextColorProperty": "SuffixTextColorProperty", + "SuffixTextFontFamily": "SuffixTextFontFamily", + "SuffixTextFontFamilyProperty": "SuffixTextFontFamilyProperty", + "SuffixTextFontSize": "SuffixTextFontSize", + "SuffixTextFontSizeProperty": "SuffixTextFontSizeProperty", + "SuffixTextFontStyle": "SuffixTextFontStyle", + "SuffixTextFontStyleProperty": "SuffixTextFontStyleProperty", + "SuffixTextFontWeight": "SuffixTextFontWeight", + "SuffixTextFontWeightProperty": "SuffixTextFontWeightProperty", + "SuffixTextProperty": "SuffixTextProperty", + "TextDecoration": "TextDecoration", + "TextDecorationProperty": "TextDecorationProperty", + "TextDecorationPropertyName": "TextDecorationPropertyName", + "Width": "Width", + "WidthProperty": "WidthProperty" + } + } + ], + "DataGridColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridColumnDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridColumnDescription()": "DataGridColumnDescription()", + "DataGridColumnDescription": "DataGridColumnDescription()", + "ActualColumnOptionsAccentColor": "ActualColumnOptionsAccentColor", + "ActualColumnOptionsBackground": "ActualColumnOptionsBackground", + "ActualColumnOptionsGroupHeaderBackground": "ActualColumnOptionsGroupHeaderBackground", + "ActualColumnOptionsGroupHeaderTextColor": "ActualColumnOptionsGroupHeaderTextColor", + "ActualColumnOptionsHighlightColor": "ActualColumnOptionsHighlightColor", + "ActualColumnOptionsHoverBackgroundColor": "ActualColumnOptionsHoverBackgroundColor", + "ActualColumnOptionsIconAlignment": "ActualColumnOptionsIconAlignment", + "ActualColumnOptionsIconBehavior": "ActualColumnOptionsIconBehavior", + "ActualColumnOptionsIconColor": "ActualColumnOptionsIconColor", + "ActualColumnOptionsRowHeight": "ActualColumnOptionsRowHeight", + "ActualColumnOptionsScrollbarActiveBackground": "ActualColumnOptionsScrollbarActiveBackground", + "ActualColumnOptionsScrollbarBackground": "ActualColumnOptionsScrollbarBackground", + "ActualColumnOptionsScrollbarHoverBackground": "ActualColumnOptionsScrollbarHoverBackground", + "ActualColumnOptionsSeparatorColor": "ActualColumnOptionsSeparatorColor", + "ActualColumnOptionsTextColor": "ActualColumnOptionsTextColor", + "ActualColumnOptionsToolTipBackgroundColor": "ActualColumnOptionsToolTipBackgroundColor", + "ActualColumnOptionsToolTipTextColor": "ActualColumnOptionsToolTipTextColor", + "ActualDeletedTextColor": "ActualDeletedTextColor", + "ActualEditOpacity": "ActualEditOpacity", + "ActualHeaderText": "ActualHeaderText", + "ActualHeaderTextChangeRef": "ActualHeaderTextChangeRef", + "ActualHoverBackground": "ActualHoverBackground", + "ActualIsColumnOptionsEnabled": "ActualIsColumnOptionsEnabled", + "ActualIsColumnOptionsGroupingEnabled": "ActualIsColumnOptionsGroupingEnabled", + "ActualIsColumnOptionsSummariesEnabled": "ActualIsColumnOptionsSummariesEnabled", + "ActualRowHoverTextColor": "ActualRowHoverTextColor", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "AnimationSettings": "AnimationSettings", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "DeletedTextColor": "DeletedTextColor", + "EditFontFamily": "EditFontFamily", + "EditFontSize": "EditFontSize", + "EditFontStyle": "EditFontStyle", + "EditFontWeight": "EditFontWeight", + "EditOpacity": "EditOpacity", + "Field": "Field", + "Filter": "Filter", + "FilterComparisonType": "FilterComparisonType", + "FilterExpression": "FilterExpression", + "FilterOperands": "FilterOperands", + "FormatCellRef": "FormatCellRef", + "GroupDirection": "GroupDirection", + "GroupPosition": "GroupPosition", + "Header": "Header", + "HeaderText": "HeaderText", + "IsAutoGenerated": "IsAutoGenerated", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsGroupingEnabled": "IsColumnOptionsGroupingEnabled", + "IsColumnOptionsSummariesEnabled": "IsColumnOptionsSummariesEnabled", + "IsEditable": "IsEditable", + "IsFilteringEnabled": "IsFilteringEnabled", + "IsFromMarkup": "IsFromMarkup", + "IsHidden": "IsHidden", + "IsResizingEnabled": "IsResizingEnabled", + "IsSortingEnabled": "IsSortingEnabled", + "MergedCellEvaluationCriteria": "MergedCellEvaluationCriteria", + "MergedCellMode": "MergedCellMode", + "MergedCellPaddingBottom": "MergedCellPaddingBottom", + "MergedCellPaddingLeft": "MergedCellPaddingLeft", + "MergedCellPaddingRight": "MergedCellPaddingRight", + "MergedCellPaddingTop": "MergedCellPaddingTop", + "MergedCellVerticalAlignment": "MergedCellVerticalAlignment", + "MinWidth": "MinWidth", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "Pinned": "Pinned", + "RowHoverBackground": "RowHoverBackground", + "RowHoverTextColor": "RowHoverTextColor", + "SelectedBackground": "SelectedBackground", + "SelectedTextColor": "SelectedTextColor", + "ShouldRemoveWhenHidden": "ShouldRemoveWhenHidden", + "SortDirection": "SortDirection", + "SortPosition": "SortPosition", + "SuffixIconCollectionName": "SuffixIconCollectionName", + "SuffixIconFill": "SuffixIconFill", + "SuffixIconName": "SuffixIconName", + "SuffixIconStroke": "SuffixIconStroke", + "SuffixIconViewBoxHeight": "SuffixIconViewBoxHeight", + "SuffixIconViewBoxLeft": "SuffixIconViewBoxLeft", + "SuffixIconViewBoxTop": "SuffixIconViewBoxTop", + "SuffixIconViewBoxWidth": "SuffixIconViewBoxWidth", + "SuffixMargin": "SuffixMargin", + "SuffixText": "SuffixText", + "SuffixTextColor": "SuffixTextColor", + "SuffixTextFontFamily": "SuffixTextFontFamily", + "SuffixTextFontSize": "SuffixTextFontSize", + "SuffixTextFontStyle": "SuffixTextFontStyle", + "SuffixTextFontWeight": "SuffixTextFontWeight", + "TextDecoration": "TextDecoration", + "Type": "Type", + "Width": "Width" + } + } + ], + "DataGridColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridColumnDescriptionMetadata()": "DataGridColumnDescriptionMetadata()", + "DataGridColumnDescriptionMetadata": "DataGridColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridComparisonOperatorSelector": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DataGridComparisonOperatorSelector", + "k": "class", + "s": "classes", + "m": { + "DataGridComparisonOperatorSelector()": "DataGridComparisonOperatorSelector()", + "DataGridComparisonOperatorSelector": "DataGridComparisonOperatorSelector()", + "AddCustomOperator(string, string, string, int)": "AddCustomOperator(string, string, string, int)", + "AddCustomOperator": "AddCustomOperator(string, string, string, int)", + "Background": "Background", + "ClearCustomOperators()": "ClearCustomOperators()", + "ClearCustomOperators": "ClearCustomOperators()", + "Close()": "Close()", + "Close": "Close()", + "CustomFilterID": "CustomFilterID", + "CustomFilterIndex": "CustomFilterIndex", + "DataType": "DataType", + "Dispose()": "Dispose()", + "Dispose": "Dispose()", + "GetDropdownHeight()": "GetDropdownHeight()", + "GetDropdownHeight": "GetDropdownHeight()", + "MaxHeight": "MaxHeight", + "OnClosing(OperatorSelectorClosingEventArgs)": "OnClosing(OperatorSelectorClosingEventArgs)", + "OnClosing": "OnClosing(OperatorSelectorClosingEventArgs)", + "OnOpened(OperatorSelectorOpeningEventArgs)": "OnOpened(OperatorSelectorOpeningEventArgs)", + "OnOpened": "OnOpened(OperatorSelectorOpeningEventArgs)", + "OnOpening(OperatorSelectorOpeningEventArgs)": "OnOpening(OperatorSelectorOpeningEventArgs)", + "OnOpening": "OnOpening(OperatorSelectorOpeningEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(OperatorSelectorValueChangedEventArgs)": "OnValueChanged(OperatorSelectorValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(OperatorSelectorValueChangedEventArgs)", + "OperatorCaptionBottom": "OperatorCaptionBottom", + "OperatorCaptionBottomPercentile": "OperatorCaptionBottomPercentile", + "OperatorCaptionContains": "OperatorCaptionContains", + "OperatorCaptionDoesNotContain": "OperatorCaptionDoesNotContain", + "OperatorCaptionDoesNotEndWith": "OperatorCaptionDoesNotEndWith", + "OperatorCaptionDoesNotStartWith": "OperatorCaptionDoesNotStartWith", + "OperatorCaptionEmpty": "OperatorCaptionEmpty", + "OperatorCaptionEndsWith": "OperatorCaptionEndsWith", + "OperatorCaptionEquals": "OperatorCaptionEquals", + "OperatorCaptionFalse": "OperatorCaptionFalse", + "OperatorCaptionGreaterThan": "OperatorCaptionGreaterThan", + "OperatorCaptionGreaterThanOrEqual": "OperatorCaptionGreaterThanOrEqual", + "OperatorCaptionLastMonth": "OperatorCaptionLastMonth", + "OperatorCaptionLastQuarter": "OperatorCaptionLastQuarter", + "OperatorCaptionLastWeek": "OperatorCaptionLastWeek", + "OperatorCaptionLastYear": "OperatorCaptionLastYear", + "OperatorCaptionLessThan": "OperatorCaptionLessThan", + "OperatorCaptionLessThanOrEqual": "OperatorCaptionLessThanOrEqual", + "OperatorCaptionMonth": "OperatorCaptionMonth", + "OperatorCaptionNextMonth": "OperatorCaptionNextMonth", + "OperatorCaptionNextQuarter": "OperatorCaptionNextQuarter", + "OperatorCaptionNextWeek": "OperatorCaptionNextWeek", + "OperatorCaptionNextYear": "OperatorCaptionNextYear", + "OperatorCaptionNotEmpty": "OperatorCaptionNotEmpty", + "OperatorCaptionNotEquals": "OperatorCaptionNotEquals", + "OperatorCaptionQ1": "OperatorCaptionQ1", + "OperatorCaptionQ2": "OperatorCaptionQ2", + "OperatorCaptionQ3": "OperatorCaptionQ3", + "OperatorCaptionQ4": "OperatorCaptionQ4", + "OperatorCaptionStartsWith": "OperatorCaptionStartsWith", + "OperatorCaptionThisMonth": "OperatorCaptionThisMonth", + "OperatorCaptionThisQuarter": "OperatorCaptionThisQuarter", + "OperatorCaptionThisWeek": "OperatorCaptionThisWeek", + "OperatorCaptionThisYear": "OperatorCaptionThisYear", + "OperatorCaptionToday": "OperatorCaptionToday", + "OperatorCaptionTomorrow": "OperatorCaptionTomorrow", + "OperatorCaptionTop": "OperatorCaptionTop", + "OperatorCaptionTopPercentile": "OperatorCaptionTopPercentile", + "OperatorCaptionTrue": "OperatorCaptionTrue", + "OperatorCaptionYear": "OperatorCaptionYear", + "OperatorCaptionYearToDate": "OperatorCaptionYearToDate", + "OperatorCaptionYesterday": "OperatorCaptionYesterday", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "SelectCustomFilter(string, int)": "SelectCustomFilter(string, int)", + "SelectCustomFilter": "SelectCustomFilter(string, int)", + "TextColor": "TextColor", + "Toggle()": "Toggle()", + "Toggle": "Toggle()", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridComparisonOperatorSelectorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridComparisonOperatorSelectorDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridComparisonOperatorSelectorDescription()": "DataGridComparisonOperatorSelectorDescription()", + "DataGridComparisonOperatorSelectorDescription": "DataGridComparisonOperatorSelectorDescription()", + "Background": "Background", + "ClosingRef": "ClosingRef", + "CustomFilterID": "CustomFilterID", + "CustomFilterIndex": "CustomFilterIndex", + "DataType": "DataType", + "MaxHeight": "MaxHeight", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef" + } + } + ], + "DataGridComparisonOperatorSelectorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridComparisonOperatorSelectorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridComparisonOperatorSelectorDescriptionMetadata()": "DataGridComparisonOperatorSelectorDescriptionMetadata()", + "DataGridComparisonOperatorSelectorDescriptionMetadata": "DataGridComparisonOperatorSelectorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridCoreDescriptionModule()": "DataGridCoreDescriptionModule()", + "DataGridCoreDescriptionModule": "DataGridCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridDescription()": "DataGridDescription()", + "DataGridDescription": "DataGridDescription()", + "ActivationMode": "ActivationMode", + "ActiveCell": "ActiveCell", + "ActiveCellChangedRef": "ActiveCellChangedRef", + "ActualBackground": "ActualBackground", + "ActualBorder": "ActualBorder", + "ActualColumns": "ActualColumns", + "ActualColumnsChangedRef": "ActualColumnsChangedRef", + "ActualHeaderHeight": "ActualHeaderHeight", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualPrimaryKeyChangeRef": "ActualPrimaryKeyChangeRef", + "ActualRowHeight": "ActualRowHeight", + "AllowCopyOperation": "AllowCopyOperation", + "AnimationSettings": "AnimationSettings", + "AutoAcceptEdits": "AutoAcceptEdits", + "AutoGenerateColumns": "AutoGenerateColumns", + "AutoGenerateDesiredProperties": "AutoGenerateDesiredProperties", + "Background": "Background", + "Border": "Border", + "BorderWidthBottom": "BorderWidthBottom", + "BorderWidthLeft": "BorderWidthLeft", + "BorderWidthRight": "BorderWidthRight", + "BorderWidthTop": "BorderWidthTop", + "CellBackground": "CellBackground", + "CellClickedRef": "CellClickedRef", + "CellDataLoadedAnimationMode": "CellDataLoadedAnimationMode", + "CellEditEndedRef": "CellEditEndedRef", + "CellEditStartedRef": "CellEditStartedRef", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "CellPointerDownRef": "CellPointerDownRef", + "CellPointerUpRef": "CellPointerUpRef", + "CellPreviewPointerDownRef": "CellPreviewPointerDownRef", + "CellPreviewPointerUpRef": "CellPreviewPointerUpRef", + "CellSelectedBackground": "CellSelectedBackground", + "CellSelectedTextColor": "CellSelectedTextColor", + "CellSelectionAnimationMode": "CellSelectionAnimationMode", + "CellTextColor": "CellTextColor", + "CellValueChangingRef": "CellValueChangingRef", + "ClearSelectionOnEscape": "ClearSelectionOnEscape", + "ColumnAddingAnimationMode": "ColumnAddingAnimationMode", + "ColumnExchangingAnimationMode": "ColumnExchangingAnimationMode", + "ColumnHiddenChangedRef": "ColumnHiddenChangedRef", + "ColumnHidingAnimationMode": "ColumnHidingAnimationMode", + "ColumnMovingAnimationMode": "ColumnMovingAnimationMode", + "ColumnMovingMode": "ColumnMovingMode", + "ColumnMovingSeparator": "ColumnMovingSeparator", + "ColumnMovingSeparatorBackground": "ColumnMovingSeparatorBackground", + "ColumnMovingSeparatorOpacity": "ColumnMovingSeparatorOpacity", + "ColumnMovingSeparatorWidth": "ColumnMovingSeparatorWidth", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "ColumnPinnedChangedRef": "ColumnPinnedChangedRef", + "ColumnPropertyUpdatingAnimationMode": "ColumnPropertyUpdatingAnimationMode", + "ColumnResizingAnimationMode": "ColumnResizingAnimationMode", + "ColumnResizingMode": "ColumnResizingMode", + "ColumnResizingSeparator": "ColumnResizingSeparator", + "ColumnResizingSeparatorBackground": "ColumnResizingSeparatorBackground", + "ColumnResizingSeparatorOpacity": "ColumnResizingSeparatorOpacity", + "ColumnResizingSeparatorWidth": "ColumnResizingSeparatorWidth", + "ColumnShowingAnimationMode": "ColumnShowingAnimationMode", + "ColumnWidthChangedRef": "ColumnWidthChangedRef", + "Columns": "Columns", + "ColumnsAutoGeneratedRef": "ColumnsAutoGeneratedRef", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CustomFilterRequestedRef": "CustomFilterRequestedRef", + "DataCommittedRef": "DataCommittedRef", + "DataCommittingRef": "DataCommittingRef", + "DataSource": "DataSource", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceRef": "DataSourceRef", + "DefaultColumnMinWidth": "DefaultColumnMinWidth", + "DeferEventForRowDragSelection": "DeferEventForRowDragSelection", + "DeletedTextColor": "DeletedTextColor", + "Density": "Density", + "EditFontFamily": "EditFontFamily", + "EditFontSize": "EditFontSize", + "EditFontStyle": "EditFontStyle", + "EditFontWeight": "EditFontWeight", + "EditMode": "EditMode", + "EditModeClickAction": "EditModeClickAction", + "EditOnKeyPress": "EditOnKeyPress", + "EditOpacity": "EditOpacity", + "EditRowBorder": "EditRowBorder", + "EditRowBorderWidthBottom": "EditRowBorderWidthBottom", + "EditRowBorderWidthLeft": "EditRowBorderWidthLeft", + "EditRowBorderWidthRight": "EditRowBorderWidthRight", + "EditRowBorderWidthTop": "EditRowBorderWidthTop", + "EnterBehavior": "EnterBehavior", + "EnterBehaviorAfterEdit": "EnterBehaviorAfterEdit", + "ExpandCollapseOnSectionHeaderClick": "ExpandCollapseOnSectionHeaderClick", + "FilterComparisonType": "FilterComparisonType", + "FilterExpressions": "FilterExpressions", + "FilterExpressionsChangedRef": "FilterExpressionsChangedRef", + "FilterExpressionsChangingRef": "FilterExpressionsChangingRef", + "FilterLogicalOperator": "FilterLogicalOperator", + "FilterRowDataBindingRef": "FilterRowDataBindingRef", + "FilterRowDataBoundRef": "FilterRowDataBoundRef", + "FilterUIType": "FilterUIType", + "GenericDataSource": "GenericDataSource", + "GroupDescriptions": "GroupDescriptions", + "GroupDescriptionsChangedRef": "GroupDescriptionsChangedRef", + "GroupHeaderDisplayMode": "GroupHeaderDisplayMode", + "GroupSummaryDisplayMode": "GroupSummaryDisplayMode", + "HeaderBackground": "HeaderBackground", + "HeaderClickAction": "HeaderClickAction", + "HeaderFontFamily": "HeaderFontFamily", + "HeaderFontSize": "HeaderFontSize", + "HeaderFontStyle": "HeaderFontStyle", + "HeaderFontWeight": "HeaderFontWeight", + "HeaderHeight": "HeaderHeight", + "HeaderRowSeparator": "HeaderRowSeparator", + "HeaderRowSeparatorBackground": "HeaderRowSeparatorBackground", + "HeaderSeparator": "HeaderSeparator", + "HeaderSeparatorBackground": "HeaderSeparatorBackground", + "HeaderSeparatorWidth": "HeaderSeparatorWidth", + "HeaderSortIndicatorColor": "HeaderSortIndicatorColor", + "HeaderSortIndicatorStyle": "HeaderSortIndicatorStyle", + "HeaderTextColor": "HeaderTextColor", + "Height": "Height", + "HyperlinkNavigationRequestedRef": "HyperlinkNavigationRequestedRef", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroups": "InitialGroups", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSummaries": "InitialSummaries", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "IsActiveCellStyleEnabled": "IsActiveCellStyleEnabled", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsGroupingEnabled": "IsColumnOptionsGroupingEnabled", + "IsColumnOptionsSummariesEnabled": "IsColumnOptionsSummariesEnabled", + "IsGroupByAreaVisible": "IsGroupByAreaVisible", + "IsGroupCollapsable": "IsGroupCollapsable", + "IsGroupExpandedDefault": "IsGroupExpandedDefault", + "IsGroupRowSticky": "IsGroupRowSticky", + "IsHeaderSeparatorVisible": "IsHeaderSeparatorVisible", + "IsPagerVisible": "IsPagerVisible", + "IsPlaceholderRenderingEnabled": "IsPlaceholderRenderingEnabled", + "IsRowHoverEnabled": "IsRowHoverEnabled", + "IsToolbarColumnChooserVisible": "IsToolbarColumnChooserVisible", + "IsToolbarColumnPinningVisible": "IsToolbarColumnPinningVisible", + "IsToolbarVisible": "IsToolbarVisible", + "LastStickyRowBackground": "LastStickyRowBackground", + "MaxSelectedCellRanges": "MaxSelectedCellRanges", + "MergedCellEvaluationCriteria": "MergedCellEvaluationCriteria", + "MergedCellMode": "MergedCellMode", + "MergedCellVerticalAlignment": "MergedCellVerticalAlignment", + "MouseDragSelectionEnabled": "MouseDragSelectionEnabled", + "NotifyOnAllSelectionChanges": "NotifyOnAllSelectionChanges", + "PageSize": "PageSize", + "PinnedAreaSeparator": "PinnedAreaSeparator", + "PinnedAreaSeparatorWidth": "PinnedAreaSeparatorWidth", + "PinnedItems": "PinnedItems", + "PinnedKeys": "PinnedKeys", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowOpacity": "PinnedRowOpacity", + "PreventDefaultNavigationColumnList": "PreventDefaultNavigationColumnList", + "PrimaryKey": "PrimaryKey", + "ReactsToFilterChanges": "ReactsToFilterChanges", + "ReactsToGroupChanges": "ReactsToGroupChanges", + "ReactsToSortChanges": "ReactsToSortChanges", + "ResponsiveStates": "ResponsiveStates", + "RootSummariesChangedRef": "RootSummariesChangedRef", + "RowEditEndedRef": "RowEditEndedRef", + "RowEditStartedRef": "RowEditStartedRef", + "RowHeight": "RowHeight", + "RowHoverAnimationMode": "RowHoverAnimationMode", + "RowHoverBackground": "RowHoverBackground", + "RowHoverTextColor": "RowHoverTextColor", + "RowSelectionAnimationMode": "RowSelectionAnimationMode", + "RowSeparator": "RowSeparator", + "RowSeparatorBackground": "RowSeparatorBackground", + "RowSeparatorHeight": "RowSeparatorHeight", + "RowSeparatorLastStickyRowBackground": "RowSeparatorLastStickyRowBackground", + "RowSeparatorPinnedRowBackground": "RowSeparatorPinnedRowBackground", + "RowSeparatorStickyRowBackground": "RowSeparatorStickyRowBackground", + "ScrollbarActiveBackground": "ScrollbarActiveBackground", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarHoverBackground": "ScrollbarHoverBackground", + "ScrollbarStyle": "ScrollbarStyle", + "SectionHeader": "SectionHeader", + "SectionHeaderBackground": "SectionHeaderBackground", + "SectionHeaderExpansionIndicatorIconColor": "SectionHeaderExpansionIndicatorIconColor", + "SectionHeaderFontFamily": "SectionHeaderFontFamily", + "SectionHeaderFontSize": "SectionHeaderFontSize", + "SectionHeaderFontStyle": "SectionHeaderFontStyle", + "SectionHeaderFontWeight": "SectionHeaderFontWeight", + "SectionHeaderSelectedBackground": "SectionHeaderSelectedBackground", + "SectionHeaderTextColor": "SectionHeaderTextColor", + "SelectedCellRanges": "SelectedCellRanges", + "SelectedCellRangesChangedRef": "SelectedCellRangesChangedRef", + "SelectedCells": "SelectedCells", + "SelectedCellsChangedRef": "SelectedCellsChangedRef", + "SelectedItems": "SelectedItems", + "SelectedItemsChangedRef": "SelectedItemsChangedRef", + "SelectedKeys": "SelectedKeys", + "SelectedKeysChangedRef": "SelectedKeysChangedRef", + "SelectionBehavior": "SelectionBehavior", + "SelectionChangedRef": "SelectionChangedRef", + "SelectionMode": "SelectionMode", + "ShiftSectionContent": "ShiftSectionContent", + "SizeChangedRef": "SizeChangedRef", + "SortDescriptions": "SortDescriptions", + "SortDescriptionsChangedRef": "SortDescriptionsChangedRef", + "StickyRowBackground": "StickyRowBackground", + "StopPropagation": "StopPropagation", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryDescriptionsChangedRef": "SummaryDescriptionsChangedRef", + "SummaryRootBackground": "SummaryRootBackground", + "SummaryRootLabelFontFamily": "SummaryRootLabelFontFamily", + "SummaryRootLabelFontSize": "SummaryRootLabelFontSize", + "SummaryRootLabelFontStyle": "SummaryRootLabelFontStyle", + "SummaryRootLabelFontWeight": "SummaryRootLabelFontWeight", + "SummaryRootLabelTextColor": "SummaryRootLabelTextColor", + "SummaryRootSelectedBackground": "SummaryRootSelectedBackground", + "SummaryRootValueFontFamily": "SummaryRootValueFontFamily", + "SummaryRootValueFontSize": "SummaryRootValueFontSize", + "SummaryRootValueFontStyle": "SummaryRootValueFontStyle", + "SummaryRootValueFontWeight": "SummaryRootValueFontWeight", + "SummaryRootValueTextColor": "SummaryRootValueTextColor", + "SummaryRowRoot": "SummaryRowRoot", + "SummaryRowSection": "SummaryRowSection", + "SummaryScope": "SummaryScope", + "SummarySectionBackground": "SummarySectionBackground", + "SummarySectionLabelFontFamily": "SummarySectionLabelFontFamily", + "SummarySectionLabelFontSize": "SummarySectionLabelFontSize", + "SummarySectionLabelFontStyle": "SummarySectionLabelFontStyle", + "SummarySectionLabelFontWeight": "SummarySectionLabelFontWeight", + "SummarySectionLabelTextColor": "SummarySectionLabelTextColor", + "SummarySectionSelectedBackground": "SummarySectionSelectedBackground", + "SummarySectionValueFontFamily": "SummarySectionValueFontFamily", + "SummarySectionValueFontSize": "SummarySectionValueFontSize", + "SummarySectionValueFontStyle": "SummarySectionValueFontStyle", + "SummarySectionValueFontWeight": "SummarySectionValueFontWeight", + "SummarySectionValueTextColor": "SummarySectionValueTextColor", + "Theme": "Theme", + "TodayOverride": "TodayOverride", + "ToolbarColumnChooserText": "ToolbarColumnChooserText", + "ToolbarColumnChooserTitle": "ToolbarColumnChooserTitle", + "ToolbarColumnPinningText": "ToolbarColumnPinningText", + "ToolbarColumnPinningTitle": "ToolbarColumnPinningTitle", + "ToolbarTitle": "ToolbarTitle", + "Type": "Type", + "UseNewerColumnOptionsMenu": "UseNewerColumnOptionsMenu", + "Width": "Width" + } + } + ], + "DataGridDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridDescriptionMetadata()": "DataGridDescriptionMetadata()", + "DataGridDescriptionMetadata": "DataGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridDescriptionModule()": "DataGridDescriptionModule()", + "DataGridDescriptionModule": "DataGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridExpansionIndicator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DataGridExpansionIndicator", + "k": "class", + "s": "classes", + "m": { + "DataGridExpansionIndicator()": "DataGridExpansionIndicator()", + "DataGridExpansionIndicator": "DataGridExpansionIndicator()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "ContainsElement(object)": "ContainsElement(object)", + "ContainsElement": "ContainsElement(object)", + "IconColor": "IconColor", + "IconColorProperty": "IconColorProperty", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsAnimationEnabledProperty": "IsAnimationEnabledProperty", + "IsExpanded": "IsExpanded", + "IsExpandedProperty": "IsExpandedProperty", + "NotifySizeChanged(double, double)": "NotifySizeChanged(double, double)", + "NotifySizeChanged": "NotifySizeChanged(double, double)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridExpansionIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridExpansionIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridExpansionIndicatorDescription()": "DataGridExpansionIndicatorDescription()", + "DataGridExpansionIndicatorDescription": "DataGridExpansionIndicatorDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "IconColor": "IconColor", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsExpanded": "IsExpanded", + "PixelScalingRatio": "PixelScalingRatio", + "Type": "Type" + } + } + ], + "DataGridExpansionIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridExpansionIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridExpansionIndicatorDescriptionMetadata()": "DataGridExpansionIndicatorDescriptionMetadata()", + "DataGridExpansionIndicatorDescriptionMetadata": "DataGridExpansionIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridFilterDialog": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DataGridFilterDialog", + "k": "class", + "s": "classes", + "m": { + "DataGridFilterDialog()": "DataGridFilterDialog()", + "DataGridFilterDialog": "DataGridFilterDialog()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsAccentColorProperty": "ColumnOptionsAccentColorProperty", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsBackgroundProperty": "ColumnOptionsBackgroundProperty", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontFamilyProperty": "ColumnOptionsFontFamilyProperty", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontSizeProperty": "ColumnOptionsFontSizeProperty", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontStyleProperty": "ColumnOptionsFontStyleProperty", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsFontWeightProperty": "ColumnOptionsFontWeightProperty", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderBackgroundProperty": "ColumnOptionsGroupHeaderBackgroundProperty", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontFamilyProperty": "ColumnOptionsGroupHeaderFontFamilyProperty", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontSizeProperty": "ColumnOptionsGroupHeaderFontSizeProperty", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontStyleProperty": "ColumnOptionsGroupHeaderFontStyleProperty", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderFontWeightProperty": "ColumnOptionsGroupHeaderFontWeightProperty", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsGroupHeaderTextColorProperty": "ColumnOptionsGroupHeaderTextColorProperty", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHighlightColorProperty": "ColumnOptionsHighlightColorProperty", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsHoverBackgroundColorProperty": "ColumnOptionsHoverBackgroundColorProperty", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsRowHeightProperty": "ColumnOptionsRowHeightProperty", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarActiveBackgroundProperty": "ColumnOptionsScrollbarActiveBackgroundProperty", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarBackgroundProperty": "ColumnOptionsScrollbarBackgroundProperty", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsScrollbarHoverBackgroundProperty": "ColumnOptionsScrollbarHoverBackgroundProperty", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsSeparatorColorProperty": "ColumnOptionsSeparatorColorProperty", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTextColorProperty": "ColumnOptionsTextColorProperty", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipBackgroundColorProperty": "ColumnOptionsToolTipBackgroundColorProperty", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "ColumnOptionsToolTipTextColorProperty": "ColumnOptionsToolTipTextColorProperty", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "ExecutionContext": "ExecutionContext", + "ExecutionContextProperty": "ExecutionContextProperty", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "HideIcon()": "HideIcon()", + "HideIcon": "HideIcon()", + "IconColor": "IconColor", + "IconColorProperty": "IconColorProperty", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsAnimationEnabledProperty": "IsAnimationEnabledProperty", + "IsOpen": "IsOpen", + "IsOpenProperty": "IsOpenProperty", + "NotifyCellSizeChanged()": "NotifyCellSizeChanged()", + "NotifyCellSizeChanged": "NotifyCellSizeChanged()", + "NotifySizeChanged(double, double)": "NotifySizeChanged(double, double)", + "NotifySizeChanged": "NotifySizeChanged(double, double)", + "OnDialogOpening(GridFilterDialogOpeningEventArgs)": "OnDialogOpening(GridFilterDialogOpeningEventArgs)", + "OnDialogOpening": "OnDialogOpening(GridFilterDialogOpeningEventArgs)", + "OnFilterChanged(GridFilterDialogFilterChangeEventArgs)": "OnFilterChanged(GridFilterDialogFilterChangeEventArgs)", + "OnFilterChanged": "OnFilterChanged(GridFilterDialogFilterChangeEventArgs)", + "OnFilterChanging(GridFilterDialogFilterChangeEventArgs)": "OnFilterChanging(GridFilterDialogFilterChangeEventArgs)", + "OnFilterChanging": "OnFilterChanging(GridFilterDialogFilterChangeEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRenderCompleted(FilterDialogRenderCompletedEventArgs)": "OnRenderCompleted(FilterDialogRenderCompletedEventArgs)", + "OnRenderCompleted": "OnRenderCompleted(FilterDialogRenderCompletedEventArgs)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "ShowIcon()": "ShowIcon()", + "ShowIcon": "ShowIcon()", + "ViewSize": "ViewSize", + "ViewSizeProperty": "ViewSizeProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridFilterDialogDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridFilterDialogDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridFilterDialogDescription()": "DataGridFilterDialogDescription()", + "DataGridFilterDialogDescription": "DataGridFilterDialogDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "CommandCompletedRef": "CommandCompletedRef", + "DialogOpeningRef": "DialogOpeningRef", + "FilterChangedRef": "FilterChangedRef", + "FilterChangingRef": "FilterChangingRef", + "IconColor": "IconColor", + "InvalidateActionsRef": "InvalidateActionsRef", + "IsAnimationEnabled": "IsAnimationEnabled", + "PixelScalingRatio": "PixelScalingRatio", + "RenderCompletedRef": "RenderCompletedRef", + "Type": "Type", + "ViewSize": "ViewSize" + } + } + ], + "DataGridFilterDialogDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridFilterDialogDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridFilterDialogDescriptionMetadata()": "DataGridFilterDialogDescriptionMetadata()", + "DataGridFilterDialogDescriptionMetadata": "DataGridFilterDialogDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridPager": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DataGridPager", + "k": "class", + "s": "classes", + "m": { + "DataGridPager()": "DataGridPager()", + "DataGridPager": "DataGridPager()", + "ActualBackground": "ActualBackground", + "ActualBorder": "ActualBorder", + "ActualDataSource": "ActualDataSource", + "Background": "Background", + "Border": "Border", + "CurrentPage": "CurrentPage", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FirstPage()": "FirstPage()", + "FirstPage": "FirstPage()", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "ItemsSource": "ItemsSource", + "LastPage()": "LastPage()", + "LastPage": "LastPage()", + "NextPage()": "NextPage()", + "NextPage": "NextPage()", + "OnPageChanged(PageChangedEventArgs)": "OnPageChanged(PageChangedEventArgs)", + "OnPageChanged": "OnPageChanged(PageChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PageCount": "PageCount", + "PageSize": "PageSize", + "PagerText": "PagerText", + "PreviousPage()": "PreviousPage()", + "PreviousPage": "PreviousPage()", + "TargetGrid": "TargetGrid", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridPagerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridPagerDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridPagerDescription()": "DataGridPagerDescription()", + "DataGridPagerDescription": "DataGridPagerDescription()", + "ActualBackground": "ActualBackground", + "ActualBorder": "ActualBorder", + "Background": "Background", + "Border": "Border", + "CurrentPage": "CurrentPage", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "PageChangedRef": "PageChangedRef", + "PageCount": "PageCount", + "PageSize": "PageSize", + "PagerText": "PagerText", + "Type": "Type" + } + } + ], + "DataGridPagerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridPagerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridPagerDescriptionMetadata()": "DataGridPagerDescriptionMetadata()", + "DataGridPagerDescriptionMetadata": "DataGridPagerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridPagerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridPagerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridPagerDescriptionModule()": "DataGridPagerDescriptionModule()", + "DataGridPagerDescriptionModule": "DataGridPagerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridSelectionMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/DataGridSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "DataGridSortIndicator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DataGridSortIndicator", + "k": "class", + "s": "classes", + "m": { + "DataGridSortIndicator()": "DataGridSortIndicator()", + "DataGridSortIndicator": "DataGridSortIndicator()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "GetDesiredScale()": "GetDesiredScale()", + "GetDesiredScale": "GetDesiredScale()", + "IconColor": "IconColor", + "IconColorProperty": "IconColorProperty", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsAnimationEnabledProperty": "IsAnimationEnabledProperty", + "IsHitTestVisible": "IsHitTestVisible", + "IsHitTestVisibleProperty": "IsHitTestVisibleProperty", + "NotifyCellSizeChanged()": "NotifyCellSizeChanged()", + "NotifyCellSizeChanged": "NotifyCellSizeChanged()", + "NotifySizeChanged(double, double)": "NotifySizeChanged(double, double)", + "NotifySizeChanged": "NotifySizeChanged(double, double)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRenderCompleted(SortIndicatorRenderCompletedEventArgs)": "OnRenderCompleted(SortIndicatorRenderCompletedEventArgs)", + "OnRenderCompleted": "OnRenderCompleted(SortIndicatorRenderCompletedEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "SortDirection": "SortDirection", + "SortDirectionProperty": "SortDirectionProperty", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortIndicatorStyleProperty": "SortIndicatorStyleProperty", + "SortOrderFontFamily": "SortOrderFontFamily", + "SortOrderFontFamilyProperty": "SortOrderFontFamilyProperty", + "SortOrderFontSize": "SortOrderFontSize", + "SortOrderFontSizeProperty": "SortOrderFontSizeProperty", + "SortOrderFontStyle": "SortOrderFontStyle", + "SortOrderFontStyleProperty": "SortOrderFontStyleProperty", + "SortOrderFontWeight": "SortOrderFontWeight", + "SortOrderFontWeightProperty": "SortOrderFontWeightProperty", + "SortOrderText": "SortOrderText", + "SortOrderTextProperty": "SortOrderTextProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridSortIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridSortIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridSortIndicatorDescription()": "DataGridSortIndicatorDescription()", + "DataGridSortIndicatorDescription": "DataGridSortIndicatorDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "IconColor": "IconColor", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsHitTestVisible": "IsHitTestVisible", + "PixelScalingRatio": "PixelScalingRatio", + "RenderCompletedRef": "RenderCompletedRef", + "SortDirection": "SortDirection", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortOrderFontFamily": "SortOrderFontFamily", + "SortOrderFontSize": "SortOrderFontSize", + "SortOrderFontStyle": "SortOrderFontStyle", + "SortOrderFontWeight": "SortOrderFontWeight", + "SortOrderText": "SortOrderText", + "Type": "Type" + } + } + ], + "DataGridSortIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridSortIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridSortIndicatorDescriptionMetadata()": "DataGridSortIndicatorDescriptionMetadata()", + "DataGridSortIndicatorDescriptionMetadata": "DataGridSortIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridSummaryResultDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridSummaryResultDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridSummaryResultDescription()": "DataGridSummaryResultDescription()", + "DataGridSummaryResultDescription": "DataGridSummaryResultDescription()", + "GroupKeyRef": "GroupKeyRef", + "Operand": "Operand", + "PropertyName": "PropertyName", + "ShouldDisplay": "ShouldDisplay", + "SummaryIndex": "SummaryIndex", + "Type": "Type", + "Value": "Value" + } + } + ], + "DataGridSummaryResultDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridSummaryResultDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridSummaryResultDescriptionMetadata()": "DataGridSummaryResultDescriptionMetadata()", + "DataGridSummaryResultDescriptionMetadata": "DataGridSummaryResultDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridToolbarDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridToolbarDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridToolbarDescription()": "DataGridToolbarDescription()", + "DataGridToolbarDescription": "DataGridToolbarDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderWidthBottom": "BorderWidthBottom", + "BorderWidthLeft": "BorderWidthLeft", + "BorderWidthRight": "BorderWidthRight", + "BorderWidthTop": "BorderWidthTop", + "ColumnChooser": "ColumnChooser", + "ColumnChooserText": "ColumnChooserText", + "ColumnChooserTitle": "ColumnChooserTitle", + "ColumnPinning": "ColumnPinning", + "ColumnPinningText": "ColumnPinningText", + "ColumnPinningTitle": "ColumnPinningTitle", + "Density": "Density", + "DialogBackgroundColor": "DialogBackgroundColor", + "TargetGridRef": "TargetGridRef", + "ToolbarTitle": "ToolbarTitle", + "ToolbarTitleColor": "ToolbarTitleColor", + "ToolbarTitleFontFamily": "ToolbarTitleFontFamily", + "ToolbarTitleFontSize": "ToolbarTitleFontSize", + "ToolbarTitleFontStyle": "ToolbarTitleFontStyle", + "ToolbarTitleFontWeight": "ToolbarTitleFontWeight", + "Type": "Type" + } + } + ], + "DataGridToolbarDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridToolbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridToolbarDescriptionMetadata()": "DataGridToolbarDescriptionMetadata()", + "DataGridToolbarDescriptionMetadata": "DataGridToolbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridToolbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataGridToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridToolbarDescriptionModule()": "DataGridToolbarDescriptionModule()", + "DataGridToolbarDescriptionModule": "DataGridToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataIntentAttribute": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataIntentAttribute", + "k": "class", + "s": "classes", + "m": { + "DataIntentAttribute(string)": "DataIntentAttribute(string)", + "DataIntentAttribute": "DataIntentAttribute(string)", + "Intent": "Intent" + } + } + ], + "DataLegendDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendDescription()": "DataLegendDescription()", + "DataLegendDescription": "DataLegendDescription()", + "ActualBackground": "ActualBackground", + "ActualBadgesVisible": "ActualBadgesVisible", + "ActualBorderBrush": "ActualBorderBrush", + "ActualBorderThicknessBottom": "ActualBorderThicknessBottom", + "ActualBorderThicknessLeft": "ActualBorderThicknessLeft", + "ActualBorderThicknessRight": "ActualBorderThicknessRight", + "ActualBorderThicknessTop": "ActualBorderThicknessTop", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeShape": "BadgeShape", + "CalculateColumnSummaryRef": "CalculateColumnSummaryRef", + "ContentBackground": "ContentBackground", + "ContentBorderBrush": "ContentBorderBrush", + "ContentBorderThickness": "ContentBorderThickness", + "ExcludedColumns": "ExcludedColumns", + "ExcludedSeries": "ExcludedSeries", + "GroupRowMarginBottom": "GroupRowMarginBottom", + "GroupRowMarginLeft": "GroupRowMarginLeft", + "GroupRowMarginRight": "GroupRowMarginRight", + "GroupRowMarginTop": "GroupRowMarginTop", + "GroupRowVisible": "GroupRowVisible", + "GroupTextColor": "GroupTextColor", + "GroupTextFontFamily": "GroupTextFontFamily", + "GroupTextFontSize": "GroupTextFontSize", + "GroupTextFontStyle": "GroupTextFontStyle", + "GroupTextFontWeight": "GroupTextFontWeight", + "GroupTextMarginBottom": "GroupTextMarginBottom", + "GroupTextMarginLeft": "GroupTextMarginLeft", + "GroupTextMarginRight": "GroupTextMarginRight", + "GroupTextMarginTop": "GroupTextMarginTop", + "HeaderFormatCulture": "HeaderFormatCulture", + "HeaderFormatDate": "HeaderFormatDate", + "HeaderFormatSpecifiers": "HeaderFormatSpecifiers", + "HeaderFormatString": "HeaderFormatString", + "HeaderFormatTime": "HeaderFormatTime", + "HeaderRowMarginBottom": "HeaderRowMarginBottom", + "HeaderRowMarginLeft": "HeaderRowMarginLeft", + "HeaderRowMarginRight": "HeaderRowMarginRight", + "HeaderRowMarginTop": "HeaderRowMarginTop", + "HeaderRowVisible": "HeaderRowVisible", + "HeaderText": "HeaderText", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextFontFamily": "HeaderTextFontFamily", + "HeaderTextFontSize": "HeaderTextFontSize", + "HeaderTextFontStyle": "HeaderTextFontStyle", + "HeaderTextFontWeight": "HeaderTextFontWeight", + "HeaderTextMarginBottom": "HeaderTextMarginBottom", + "HeaderTextMarginLeft": "HeaderTextMarginLeft", + "HeaderTextMarginRight": "HeaderTextMarginRight", + "HeaderTextMarginTop": "HeaderTextMarginTop", + "Height": "Height", + "IncludedColumns": "IncludedColumns", + "IncludedSeries": "IncludedSeries", + "IsEmbeddedInDataTooltip": "IsEmbeddedInDataTooltip", + "LabelDisplayMode": "LabelDisplayMode", + "LabelTextColor": "LabelTextColor", + "LabelTextFontFamily": "LabelTextFontFamily", + "LabelTextFontSize": "LabelTextFontSize", + "LabelTextFontStyle": "LabelTextFontStyle", + "LabelTextFontWeight": "LabelTextFontWeight", + "LabelTextMarginBottom": "LabelTextMarginBottom", + "LabelTextMarginLeft": "LabelTextMarginLeft", + "LabelTextMarginRight": "LabelTextMarginRight", + "LabelTextMarginTop": "LabelTextMarginTop", + "LayoutMode": "LayoutMode", + "PixelScalingRatio": "PixelScalingRatio", + "ShouldUpdateWhenSeriesDataChanges": "ShouldUpdateWhenSeriesDataChanges", + "StyleGroupRowRef": "StyleGroupRowRef", + "StyleHeaderRowRef": "StyleHeaderRowRef", + "StyleSeriesColumnRef": "StyleSeriesColumnRef", + "StyleSeriesRowRef": "StyleSeriesRowRef", + "StyleSummaryColumnRef": "StyleSummaryColumnRef", + "StyleSummaryRowRef": "StyleSummaryRowRef", + "SummaryLabelText": "SummaryLabelText", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextFontFamily": "SummaryLabelTextFontFamily", + "SummaryLabelTextFontSize": "SummaryLabelTextFontSize", + "SummaryLabelTextFontStyle": "SummaryLabelTextFontStyle", + "SummaryLabelTextFontWeight": "SummaryLabelTextFontWeight", + "SummaryRowMarginBottom": "SummaryRowMarginBottom", + "SummaryRowMarginLeft": "SummaryRowMarginLeft", + "SummaryRowMarginRight": "SummaryRowMarginRight", + "SummaryRowMarginTop": "SummaryRowMarginTop", + "SummaryTitleText": "SummaryTitleText", + "SummaryTitleTextColor": "SummaryTitleTextColor", + "SummaryTitleTextFontFamily": "SummaryTitleTextFontFamily", + "SummaryTitleTextFontSize": "SummaryTitleTextFontSize", + "SummaryTitleTextFontStyle": "SummaryTitleTextFontStyle", + "SummaryTitleTextFontWeight": "SummaryTitleTextFontWeight", + "SummaryTitleTextMarginBottom": "SummaryTitleTextMarginBottom", + "SummaryTitleTextMarginLeft": "SummaryTitleTextMarginLeft", + "SummaryTitleTextMarginRight": "SummaryTitleTextMarginRight", + "SummaryTitleTextMarginTop": "SummaryTitleTextMarginTop", + "SummaryType": "SummaryType", + "SummaryUnitsText": "SummaryUnitsText", + "SummaryUnitsTextColor": "SummaryUnitsTextColor", + "SummaryUnitsTextFontFamily": "SummaryUnitsTextFontFamily", + "SummaryUnitsTextFontSize": "SummaryUnitsTextFontSize", + "SummaryUnitsTextFontStyle": "SummaryUnitsTextFontStyle", + "SummaryUnitsTextFontWeight": "SummaryUnitsTextFontWeight", + "SummaryValueTextColor": "SummaryValueTextColor", + "SummaryValueTextFontFamily": "SummaryValueTextFontFamily", + "SummaryValueTextFontSize": "SummaryValueTextFontSize", + "SummaryValueTextFontStyle": "SummaryValueTextFontStyle", + "SummaryValueTextFontWeight": "SummaryValueTextFontWeight", + "TargetCursorPositionX": "TargetCursorPositionX", + "TargetCursorPositionY": "TargetCursorPositionY", + "TargetRef": "TargetRef", + "TitleTextColor": "TitleTextColor", + "TitleTextFontFamily": "TitleTextFontFamily", + "TitleTextFontSize": "TitleTextFontSize", + "TitleTextFontStyle": "TitleTextFontStyle", + "TitleTextFontWeight": "TitleTextFontWeight", + "TitleTextMarginBottom": "TitleTextMarginBottom", + "TitleTextMarginLeft": "TitleTextMarginLeft", + "TitleTextMarginRight": "TitleTextMarginRight", + "TitleTextMarginTop": "TitleTextMarginTop", + "Type": "Type", + "UnitsDisplayMode": "UnitsDisplayMode", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "UnitsTextFontFamily": "UnitsTextFontFamily", + "UnitsTextFontSize": "UnitsTextFontSize", + "UnitsTextFontStyle": "UnitsTextFontStyle", + "UnitsTextFontWeight": "UnitsTextFontWeight", + "UnitsTextMarginBottom": "UnitsTextMarginBottom", + "UnitsTextMarginLeft": "UnitsTextMarginLeft", + "UnitsTextMarginRight": "UnitsTextMarginRight", + "UnitsTextMarginTop": "UnitsTextMarginTop", + "ValueFormatAbbreviation": "ValueFormatAbbreviation", + "ValueFormatCulture": "ValueFormatCulture", + "ValueFormatCurrencyCode": "ValueFormatCurrencyCode", + "ValueFormatMaxFractions": "ValueFormatMaxFractions", + "ValueFormatMinFractions": "ValueFormatMinFractions", + "ValueFormatMode": "ValueFormatMode", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "ValueFormatString": "ValueFormatString", + "ValueFormatUseGrouping": "ValueFormatUseGrouping", + "ValueRowMarginBottom": "ValueRowMarginBottom", + "ValueRowMarginLeft": "ValueRowMarginLeft", + "ValueRowMarginRight": "ValueRowMarginRight", + "ValueRowMarginTop": "ValueRowMarginTop", + "ValueRowVisible": "ValueRowVisible", + "ValueTextColor": "ValueTextColor", + "ValueTextFontFamily": "ValueTextFontFamily", + "ValueTextFontSize": "ValueTextFontSize", + "ValueTextFontStyle": "ValueTextFontStyle", + "ValueTextFontWeight": "ValueTextFontWeight", + "ValueTextMarginBottom": "ValueTextMarginBottom", + "ValueTextMarginLeft": "ValueTextMarginLeft", + "ValueTextMarginRight": "ValueTextMarginRight", + "ValueTextMarginTop": "ValueTextMarginTop", + "ValueTextUseSeriesColors": "ValueTextUseSeriesColors", + "ValueTextWhenMissingData": "ValueTextWhenMissingData", + "Width": "Width" + } + } + ], + "DataLegendDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendDescriptionMetadata()": "DataLegendDescriptionMetadata()", + "DataLegendDescriptionMetadata": "DataLegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataLegendDescriptionModule()": "DataLegendDescriptionModule()", + "DataLegendDescriptionModule": "DataLegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendHeaderDateMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendHeaderDateMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendHeaderTimeMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendHeaderTimeMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendLabelMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendLabelMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendLayoutMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendLayoutMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendSeriesContext": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSeriesContext", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesContext()": "DataLegendSeriesContext()", + "DataLegendSeriesContext": "DataLegendSeriesContext()", + "GetSeriesValue(DataLegendSeriesValueType)": "GetSeriesValue(DataLegendSeriesValueType)", + "GetSeriesValue": "GetSeriesValue(DataLegendSeriesValueType)", + "GetSeriesValueInfo(DataLegendSeriesValueType)": "GetSeriesValueInfo(DataLegendSeriesValueType)", + "GetSeriesValueInfo": "GetSeriesValueInfo(DataLegendSeriesValueType)", + "GetSeriesValues()": "GetSeriesValues()", + "GetSeriesValues": "GetSeriesValues()", + "SeriesFamily": "SeriesFamily", + "SetSeriesValue(DataLegendSeriesValueType, double)": "SetSeriesValue(DataLegendSeriesValueType, double)", + "SetSeriesValue": "SetSeriesValue(DataLegendSeriesValueType, double)", + "SetSeriesValueInfo(DataLegendSeriesValueType, DataLegendSeriesValueInfo)": "SetSeriesValueInfo(DataLegendSeriesValueType, DataLegendSeriesValueInfo)", + "SetSeriesValueInfo": "SetSeriesValueInfo(DataLegendSeriesValueType, DataLegendSeriesValueInfo)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendSeriesContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSeriesContextDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesContextDescription()": "DataLegendSeriesContextDescription()", + "DataLegendSeriesContextDescription": "DataLegendSeriesContextDescription()", + "SeriesFamily": "SeriesFamily", + "Type": "Type" + } + } + ], + "DataLegendSeriesContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSeriesContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesContextDescriptionMetadata()": "DataLegendSeriesContextDescriptionMetadata()", + "DataLegendSeriesContextDescriptionMetadata": "DataLegendSeriesContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSeriesFamily": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendSeriesFamily", + "k": "enum", + "s": "enums" + } + ], + "DataLegendSeriesGroupInfo": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataLegendSeriesGroupInfo", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesGroupInfo()": "DataLegendSeriesGroupInfo()", + "DataLegendSeriesGroupInfo": "DataLegendSeriesGroupInfo()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendSeriesGroupInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSeriesGroupInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesGroupInfoDescription()": "DataLegendSeriesGroupInfoDescription()", + "DataLegendSeriesGroupInfoDescription": "DataLegendSeriesGroupInfoDescription()", + "Type": "Type" + } + } + ], + "DataLegendSeriesGroupInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSeriesGroupInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesGroupInfoDescriptionMetadata()": "DataLegendSeriesGroupInfoDescriptionMetadata()", + "DataLegendSeriesGroupInfoDescriptionMetadata": "DataLegendSeriesGroupInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSeriesValueInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSeriesValueInfo", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesValueInfo()": "DataLegendSeriesValueInfo()", + "DataLegendSeriesValueInfo": "DataLegendSeriesValueInfo()", + "AllowLabels": "AllowLabels", + "AllowUnits": "AllowUnits", + "FormatAllowAbbreviation": "FormatAllowAbbreviation", + "FormatAllowCurrency": "FormatAllowCurrency", + "FormatAllowDecimal": "FormatAllowDecimal", + "FormatAllowInteger": "FormatAllowInteger", + "FormatAllowPercent": "FormatAllowPercent", + "FormatMaxFractions": "FormatMaxFractions", + "FormatMinFractions": "FormatMinFractions", + "FormatUseNegativeColor": "FormatUseNegativeColor", + "FormatUsePositiveColor": "FormatUsePositiveColor", + "FormatWithSeriesColor": "FormatWithSeriesColor", + "Index": "Index", + "IsExcludeByDefault": "IsExcludeByDefault", + "MemberLabel": "MemberLabel", + "MemberPath": "MemberPath", + "MemberSymbol": "MemberSymbol", + "MemberUnit": "MemberUnit", + "OrderIndex": "OrderIndex", + "ToString()": "ToString()", + "ToString": "ToString()", + "Value": "Value", + "ValueNegativePrefix": "ValueNegativePrefix", + "ValueNegativeSuffix": "ValueNegativeSuffix", + "ValuePositivePrefix": "ValuePositivePrefix", + "ValuePositiveSuffix": "ValuePositiveSuffix", + "ValueType": "ValueType", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendSeriesValueInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSeriesValueInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesValueInfoDescription()": "DataLegendSeriesValueInfoDescription()", + "DataLegendSeriesValueInfoDescription": "DataLegendSeriesValueInfoDescription()", + "AllowLabels": "AllowLabels", + "AllowUnits": "AllowUnits", + "FormatAllowAbbreviation": "FormatAllowAbbreviation", + "FormatAllowCurrency": "FormatAllowCurrency", + "FormatAllowDecimal": "FormatAllowDecimal", + "FormatAllowInteger": "FormatAllowInteger", + "FormatAllowPercent": "FormatAllowPercent", + "FormatMaxFractions": "FormatMaxFractions", + "FormatMinFractions": "FormatMinFractions", + "FormatUseNegativeColor": "FormatUseNegativeColor", + "FormatUsePositiveColor": "FormatUsePositiveColor", + "FormatWithSeriesColor": "FormatWithSeriesColor", + "Index": "Index", + "IsExcludeByDefault": "IsExcludeByDefault", + "MemberLabel": "MemberLabel", + "MemberPath": "MemberPath", + "MemberSymbol": "MemberSymbol", + "MemberUnit": "MemberUnit", + "OrderIndex": "OrderIndex", + "Type": "Type", + "Value": "Value", + "ValueNegativePrefix": "ValueNegativePrefix", + "ValueNegativeSuffix": "ValueNegativeSuffix", + "ValuePositivePrefix": "ValuePositivePrefix", + "ValuePositiveSuffix": "ValuePositiveSuffix", + "ValueType": "ValueType" + } + } + ], + "DataLegendSeriesValueInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSeriesValueInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesValueInfoDescriptionMetadata()": "DataLegendSeriesValueInfoDescriptionMetadata()", + "DataLegendSeriesValueInfoDescriptionMetadata": "DataLegendSeriesValueInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSeriesValueType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendSeriesValueType", + "k": "enum", + "s": "enums" + } + ], + "DataLegendStylingColumnEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataLegendStylingColumnEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingColumnEventArgs()": "DataLegendStylingColumnEventArgs()", + "DataLegendStylingColumnEventArgs": "DataLegendStylingColumnEventArgs()", + "ColumnIndex": "ColumnIndex", + "GroupName": "GroupName", + "LabelText": "LabelText", + "LabelTextColor": "LabelTextColor", + "SeriesIndex": "SeriesIndex", + "SeriesTitle": "SeriesTitle", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "ValueAbbreviation": "ValueAbbreviation", + "ValueMemberLabel": "ValueMemberLabel", + "ValueMemberPath": "ValueMemberPath", + "ValueOriginal": "ValueOriginal", + "ValueText": "ValueText", + "ValueTextColor": "ValueTextColor", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendStylingColumnEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendStylingColumnEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingColumnEventArgsDescription()": "DataLegendStylingColumnEventArgsDescription()", + "DataLegendStylingColumnEventArgsDescription": "DataLegendStylingColumnEventArgsDescription()", + "ColumnIndex": "ColumnIndex", + "GroupName": "GroupName", + "LabelText": "LabelText", + "LabelTextColor": "LabelTextColor", + "SeriesIndex": "SeriesIndex", + "SeriesTitle": "SeriesTitle", + "Type": "Type", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "ValueAbbreviation": "ValueAbbreviation", + "ValueMemberLabel": "ValueMemberLabel", + "ValueMemberPath": "ValueMemberPath", + "ValueOriginal": "ValueOriginal", + "ValueText": "ValueText", + "ValueTextColor": "ValueTextColor" + } + } + ], + "DataLegendStylingColumnEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendStylingColumnEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingColumnEventArgsDescriptionMetadata()": "DataLegendStylingColumnEventArgsDescriptionMetadata()", + "DataLegendStylingColumnEventArgsDescriptionMetadata": "DataLegendStylingColumnEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendStylingRowEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataLegendStylingRowEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingRowEventArgs()": "DataLegendStylingRowEventArgs()", + "DataLegendStylingRowEventArgs": "DataLegendStylingRowEventArgs()", + "BadgeShape": "BadgeShape", + "GroupName": "GroupName", + "IsBadgeVisible": "IsBadgeVisible", + "IsRowVisible": "IsRowVisible", + "SeriesIndex": "SeriesIndex", + "SeriesTitle": "SeriesTitle", + "TitleText": "TitleText", + "TitleTextColor": "TitleTextColor", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendStylingRowEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendStylingRowEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingRowEventArgsDescription()": "DataLegendStylingRowEventArgsDescription()", + "DataLegendStylingRowEventArgsDescription": "DataLegendStylingRowEventArgsDescription()", + "BadgeShape": "BadgeShape", + "GroupName": "GroupName", + "IsBadgeVisible": "IsBadgeVisible", + "IsRowVisible": "IsRowVisible", + "SeriesIndex": "SeriesIndex", + "SeriesTitle": "SeriesTitle", + "TitleText": "TitleText", + "TitleTextColor": "TitleTextColor", + "Type": "Type" + } + } + ], + "DataLegendStylingRowEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendStylingRowEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingRowEventArgsDescriptionMetadata()": "DataLegendStylingRowEventArgsDescriptionMetadata()", + "DataLegendStylingRowEventArgsDescriptionMetadata": "DataLegendStylingRowEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSummaryColumn": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSummaryColumn", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryColumn()": "DataLegendSummaryColumn()", + "DataLegendSummaryColumn": "DataLegendSummaryColumn()", + "AddLabel(string)": "AddLabel(string)", + "AddLabel": "AddLabel(string)", + "AddUnits(string)": "AddUnits(string)", + "AddUnits": "AddUnits(string)", + "AddValue(double)": "AddValue(double)", + "AddValue": "AddValue(double)", + "SeriesLabels": "SeriesLabels", + "SeriesUnits": "SeriesUnits", + "SeriesValues": "SeriesValues" + } + } + ], + "DataLegendSummaryColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSummaryColumnDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryColumnDescription()": "DataLegendSummaryColumnDescription()", + "DataLegendSummaryColumnDescription": "DataLegendSummaryColumnDescription()", + "Type": "Type" + } + } + ], + "DataLegendSummaryColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSummaryColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryColumnDescriptionMetadata()": "DataLegendSummaryColumnDescriptionMetadata()", + "DataLegendSummaryColumnDescriptionMetadata": "DataLegendSummaryColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSummaryEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataLegendSummaryEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryEventArgs(double[], string)": "DataLegendSummaryEventArgs(double[], string)", + "DataLegendSummaryEventArgs": "DataLegendSummaryEventArgs(double[], string)", + "ColumnMemberPath": "ColumnMemberPath", + "ColumnValues": "ColumnValues", + "SummaryLabel": "SummaryLabel", + "SummaryUnits": "SummaryUnits", + "SummaryValue": "SummaryValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendSummaryEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSummaryEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryEventArgsDescription()": "DataLegendSummaryEventArgsDescription()", + "DataLegendSummaryEventArgsDescription": "DataLegendSummaryEventArgsDescription()", + "ColumnMemberPath": "ColumnMemberPath", + "ColumnValues": "ColumnValues", + "SummaryLabel": "SummaryLabel", + "SummaryUnits": "SummaryUnits", + "SummaryValue": "SummaryValue", + "Type": "Type" + } + } + ], + "DataLegendSummaryEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataLegendSummaryEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryEventArgsDescriptionMetadata()": "DataLegendSummaryEventArgsDescriptionMetadata()", + "DataLegendSummaryEventArgsDescriptionMetadata": "DataLegendSummaryEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSummaryType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendSummaryType", + "k": "enum", + "s": "enums" + } + ], + "DataLegendUnitsMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendUnitsMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendValueMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataLegendValueMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataLegendVisualData", + "k": "class", + "s": "classes", + "m": { + "DataLegendVisualData()": "DataLegendVisualData()", + "DataLegendVisualData": "DataLegendVisualData()", + "Background": "Background", + "BorderBrush": "BorderBrush", + "BorderThicknessBottom": "BorderThicknessBottom", + "BorderThicknessLeft": "BorderThicknessLeft", + "BorderThicknessRight": "BorderThicknessRight", + "BorderThicknessTop": "BorderThicknessTop", + "Height": "Height", + "Rows": "Rows", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "DataLegendVisualDataColumn": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataLegendVisualDataColumn", + "k": "class", + "s": "classes", + "m": { + "DataLegendVisualDataColumn()": "DataLegendVisualDataColumn()", + "DataLegendVisualDataColumn": "DataLegendVisualDataColumn()", + "Bounds": "Bounds", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStretch": "FontStretch", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "MarginBottom": "MarginBottom", + "MarginLeft": "MarginLeft", + "MarginRight": "MarginRight", + "MarginTop": "MarginTop", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextColor": "TextColor" + } + } + ], + "DataLegendVisualDataRow": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataLegendVisualDataRow", + "k": "class", + "s": "classes", + "m": { + "DataLegendVisualDataRow()": "DataLegendVisualDataRow()", + "DataLegendVisualDataRow": "DataLegendVisualDataRow()", + "BadgeAppearance": "BadgeAppearance", + "BadgeBounds": "BadgeBounds", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeMarkerHeight": "BadgeMarkerHeight", + "BadgeMarkerWidth": "BadgeMarkerWidth", + "BadgeShape": "BadgeShape", + "Columns": "Columns", + "RowBounds": "RowBounds", + "RowMarginBottom": "RowMarginBottom", + "RowMarginLeft": "RowMarginLeft", + "RowMarginRight": "RowMarginRight", + "RowMarginTop": "RowMarginTop", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SeriesIndex": "SeriesIndex" + } + } + ], + "DataPieBaseChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataPieBaseChart", + "k": "class", + "s": "classes", + "m": { + "AngleAxisFavorLabellingScaleEnd": "AngleAxisFavorLabellingScaleEnd", + "AngleAxisFavorLabellingScaleEndProperty": "AngleAxisFavorLabellingScaleEndProperty", + "AngleAxisInterval": "AngleAxisInterval", + "AngleAxisIntervalProperty": "AngleAxisIntervalProperty", + "AngleAxisMinorInterval": "AngleAxisMinorInterval", + "AngleAxisMinorIntervalProperty": "AngleAxisMinorIntervalProperty", + "DarkSliceLabelColor": "DarkSliceLabelColor", + "DarkSliceLabelColorProperty": "DarkSliceLabelColorProperty", + "FireMouseLeaveOnManipulationStart": "FireMouseLeaveOnManipulationStart", + "FireMouseLeaveOnManipulationStartProperty": "FireMouseLeaveOnManipulationStartProperty", + "GetOthersContext()": "GetOthersContext()", + "GetOthersContext": "GetOthersContext()", + "InnerExtent": "InnerExtent", + "InnerExtentProperty": "InnerExtentProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendEmptyValuesModeProperty": "LegendEmptyValuesModeProperty", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendLabelMemberPathProperty": "LegendLabelMemberPathProperty", + "LegendOthersSliceLabelFormat": "LegendOthersSliceLabelFormat", + "LegendOthersSliceLabelFormatProperty": "LegendOthersSliceLabelFormatProperty", + "LegendOthersSliceLabelFormatSpecifiers": "LegendOthersSliceLabelFormatSpecifiers", + "LegendOthersSliceLabelFormatSpecifiersProperty": "LegendOthersSliceLabelFormatSpecifiersProperty", + "LegendSliceLabelContentMode": "LegendSliceLabelContentMode", + "LegendSliceLabelContentModeProperty": "LegendSliceLabelContentModeProperty", + "LegendSliceLabelFormat": "LegendSliceLabelFormat", + "LegendSliceLabelFormatProperty": "LegendSliceLabelFormatProperty", + "LegendSliceLabelFormatSpecifiers": "LegendSliceLabelFormatSpecifiers", + "LegendSliceLabelFormatSpecifiersProperty": "LegendSliceLabelFormatSpecifiersProperty", + "LightSliceLabelColor": "LightSliceLabelColor", + "LightSliceLabelColorProperty": "LightSliceLabelColorProperty", + "MarkerCollision": "MarkerCollision", + "MarkerCollisionProperty": "MarkerCollisionProperty", + "OthersCategoryBrush": "OthersCategoryBrush", + "OthersCategoryBrushProperty": "OthersCategoryBrushProperty", + "OthersCategoryOutline": "OthersCategoryOutline", + "OthersCategoryOutlineProperty": "OthersCategoryOutlineProperty", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryTextProperty": "OthersCategoryTextProperty", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryThresholdProperty": "OthersCategoryThresholdProperty", + "OthersCategoryType": "OthersCategoryType", + "OthersCategoryTypeProperty": "OthersCategoryTypeProperty", + "OthersSliceLabelFormat": "OthersSliceLabelFormat", + "OthersSliceLabelFormatProperty": "OthersSliceLabelFormatProperty", + "OthersSliceLabelFormatSpecifiers": "OthersSliceLabelFormatSpecifiers", + "OthersSliceLabelFormatSpecifiersProperty": "OthersSliceLabelFormatSpecifiersProperty", + "RadiusExtent": "RadiusExtent", + "RadiusExtentProperty": "RadiusExtentProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty", + "SelectionThickness": "SelectionThickness", + "SelectionThicknessProperty": "SelectionThicknessProperty", + "SliceLabelContentMode": "SliceLabelContentMode", + "SliceLabelContentModeProperty": "SliceLabelContentModeProperty", + "SliceLabelContentSeparator": "SliceLabelContentSeparator", + "SliceLabelContentSeparatorProperty": "SliceLabelContentSeparatorProperty", + "SliceLabelFormat": "SliceLabelFormat", + "SliceLabelFormatProperty": "SliceLabelFormatProperty", + "SliceLabelFormatSpecifiers": "SliceLabelFormatSpecifiers", + "SliceLabelFormatSpecifiersProperty": "SliceLabelFormatSpecifiersProperty", + "SliceLabelPositionMode": "SliceLabelPositionMode", + "SliceLabelPositionModeProperty": "SliceLabelPositionModeProperty", + "StartAngle": "StartAngle", + "StartAngleProperty": "StartAngleProperty", + "SweepDirection": "SweepDirection", + "SweepDirectionProperty": "SweepDirectionProperty", + "UseInsetOutlines": "UseInsetOutlines", + "UseInsetOutlinesProperty": "UseInsetOutlinesProperty", + "ValueAxisAbbreviateLargeNumbers": "ValueAxisAbbreviateLargeNumbers", + "ValueAxisAbbreviateLargeNumbersProperty": "ValueAxisAbbreviateLargeNumbersProperty", + "ValueAxisActualMaximum": "ValueAxisActualMaximum", + "ValueAxisActualMaximumProperty": "ValueAxisActualMaximumProperty", + "ValueAxisActualMinimum": "ValueAxisActualMinimum", + "ValueAxisActualMinimumProperty": "ValueAxisActualMinimumProperty", + "ValueAxisAutoRangeBufferMode": "ValueAxisAutoRangeBufferMode", + "ValueAxisAutoRangeBufferModeProperty": "ValueAxisAutoRangeBufferModeProperty", + "ValueAxisFavorLabellingScaleEnd": "ValueAxisFavorLabellingScaleEnd", + "ValueAxisFavorLabellingScaleEndProperty": "ValueAxisFavorLabellingScaleEndProperty", + "ValueAxisInterval": "ValueAxisInterval", + "ValueAxisIntervalProperty": "ValueAxisIntervalProperty", + "ValueAxisIsLogarithmic": "ValueAxisIsLogarithmic", + "ValueAxisIsLogarithmicProperty": "ValueAxisIsLogarithmicProperty", + "ValueAxisLogarithmBase": "ValueAxisLogarithmBase", + "ValueAxisLogarithmBaseProperty": "ValueAxisLogarithmBaseProperty", + "ValueAxisMaximumValue": "ValueAxisMaximumValue", + "ValueAxisMaximumValueProperty": "ValueAxisMaximumValueProperty", + "ValueAxisMinimumValue": "ValueAxisMinimumValue", + "ValueAxisMinimumValueProperty": "ValueAxisMinimumValueProperty", + "ValueAxisMinorInterval": "ValueAxisMinorInterval", + "ValueAxisMinorIntervalProperty": "ValueAxisMinorIntervalProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty" + } + } + ], + "DataPieBaseChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataPieBaseChartDescription", + "k": "class", + "s": "classes", + "m": { + "DataPieBaseChartDescription()": "DataPieBaseChartDescription()", + "DataPieBaseChartDescription": "DataPieBaseChartDescription()", + "AngleAxisFavorLabellingScaleEnd": "AngleAxisFavorLabellingScaleEnd", + "AngleAxisInterval": "AngleAxisInterval", + "AngleAxisMinorInterval": "AngleAxisMinorInterval", + "DarkSliceLabelColor": "DarkSliceLabelColor", + "FireMouseLeaveOnManipulationStart": "FireMouseLeaveOnManipulationStart", + "InnerExtent": "InnerExtent", + "LabelMemberPath": "LabelMemberPath", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendOthersSliceLabelFormat": "LegendOthersSliceLabelFormat", + "LegendOthersSliceLabelFormatSpecifiers": "LegendOthersSliceLabelFormatSpecifiers", + "LegendSliceLabelContentMode": "LegendSliceLabelContentMode", + "LegendSliceLabelFormat": "LegendSliceLabelFormat", + "LegendSliceLabelFormatSpecifiers": "LegendSliceLabelFormatSpecifiers", + "LightSliceLabelColor": "LightSliceLabelColor", + "MarkerCollision": "MarkerCollision", + "OthersCategoryBrush": "OthersCategoryBrush", + "OthersCategoryOutline": "OthersCategoryOutline", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryType": "OthersCategoryType", + "OthersSliceLabelFormat": "OthersSliceLabelFormat", + "OthersSliceLabelFormatSpecifiers": "OthersSliceLabelFormatSpecifiers", + "RadiusExtent": "RadiusExtent", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "SelectionThickness": "SelectionThickness", + "SliceLabelContentMode": "SliceLabelContentMode", + "SliceLabelContentSeparator": "SliceLabelContentSeparator", + "SliceLabelFormat": "SliceLabelFormat", + "SliceLabelFormatSpecifiers": "SliceLabelFormatSpecifiers", + "SliceLabelPositionMode": "SliceLabelPositionMode", + "StartAngle": "StartAngle", + "SweepDirection": "SweepDirection", + "Type": "Type", + "UseInsetOutlines": "UseInsetOutlines", + "ValueAxisAbbreviateLargeNumbers": "ValueAxisAbbreviateLargeNumbers", + "ValueAxisAutoRangeBufferMode": "ValueAxisAutoRangeBufferMode", + "ValueAxisFavorLabellingScaleEnd": "ValueAxisFavorLabellingScaleEnd", + "ValueAxisInterval": "ValueAxisInterval", + "ValueAxisIsLogarithmic": "ValueAxisIsLogarithmic", + "ValueAxisLogarithmBase": "ValueAxisLogarithmBase", + "ValueAxisMaximumValue": "ValueAxisMaximumValue", + "ValueAxisMinimumValue": "ValueAxisMinimumValue", + "ValueAxisMinorInterval": "ValueAxisMinorInterval", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "DataPieBaseChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataPieBaseChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataPieBaseChartDescriptionMetadata()": "DataPieBaseChartDescriptionMetadata()", + "DataPieBaseChartDescriptionMetadata": "DataPieBaseChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataPieChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataPieChartCoreDescriptionModule()": "DataPieChartCoreDescriptionModule()", + "DataPieChartCoreDescriptionModule": "DataPieChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataPieChartDescription", + "k": "class", + "s": "classes", + "m": { + "DataPieChartDescription()": "DataPieChartDescription()", + "DataPieChartDescription": "DataPieChartDescription()", + "Background": "Background", + "ChartType": "ChartType", + "Height": "Height", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "TooltipTemplateRef": "TooltipTemplateRef", + "TransitionInDuration": "TransitionInDuration", + "TransitionInEasingFunctionRef": "TransitionInEasingFunctionRef", + "TransitionInMode": "TransitionInMode", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutEasingFunctionRef": "TransitionOutEasingFunctionRef", + "Type": "Type", + "Width": "Width" + } + } + ], + "DataPieChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataPieChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataPieChartDescriptionMetadata()": "DataPieChartDescriptionMetadata()", + "DataPieChartDescriptionMetadata": "DataPieChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataPieChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataPieChartDescriptionModule()": "DataPieChartDescriptionModule()", + "DataPieChartDescriptionModule": "DataPieChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartToolbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataPieChartToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataPieChartToolbarDescriptionModule()": "DataPieChartToolbarDescriptionModule()", + "DataPieChartToolbarDescriptionModule": "DataPieChartToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/DataPieChartType", + "k": "enum", + "s": "enums" + } + ], + "DataSeries": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeries", + "k": "class", + "s": "classes", + "m": { + "DataSeries()": "DataSeries()", + "DataSeries": "DataSeries()", + "AddMemberPathHint(DataSeriesMemberPathHint)": "AddMemberPathHint(DataSeriesMemberPathHint)", + "AddMemberPathHint": "AddMemberPathHint(DataSeriesMemberPathHint)", + "AddMemberPathHint(DataSeriesMemberPathHint, DataSeriesIntent)": "AddMemberPathHint(DataSeriesMemberPathHint, DataSeriesIntent)", + "AddMemberPathHint(string, DataSeriesIntent)": "AddMemberPathHint(string, DataSeriesIntent)", + "ClearMemberPathHints()": "ClearMemberPathHints()", + "ClearMemberPathHints": "ClearMemberPathHints()", + "Clone()": "Clone()", + "Clone": "Clone()", + "Data": "Data", + "DataPath": "DataPath", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "FindMatchingHint(DataSeriesIntent)": "FindMatchingHint(DataSeriesIntent)", + "FindMatchingHint": "FindMatchingHint(DataSeriesIntent)", + "GetMemberPathFor(DataSeriesIntent)": "GetMemberPathFor(DataSeriesIntent)", + "GetMemberPathFor": "GetMemberPathFor(DataSeriesIntent)", + "GetMemberPathHintAt(int)": "GetMemberPathHintAt(int)", + "GetMemberPathHintAt": "GetMemberPathHintAt(int)", + "GetMemberPathHintCount()": "GetMemberPathHintCount()", + "GetMemberPathHintCount": "GetMemberPathHintCount()", + "HasMatchingHint(DataSeriesIntent)": "HasMatchingHint(DataSeriesIntent)", + "HasMatchingHint": "HasMatchingHint(DataSeriesIntent)", + "HighlightedData": "HighlightedData", + "Index": "Index", + "IsMatch(object)": "IsMatch(object)", + "IsMatch": "IsMatch(object)", + "Name": "Name", + "Priority": "Priority", + "RemoveMemberPathHint(DataSeriesMemberPathHint)": "RemoveMemberPathHint(DataSeriesMemberPathHint)", + "RemoveMemberPathHint": "RemoveMemberPathHint(DataSeriesMemberPathHint)", + "SuggestedMarker": "SuggestedMarker", + "SuggestedPrimaryAxis": "SuggestedPrimaryAxis", + "SuggestedSecondaryAxis": "SuggestedSecondaryAxis", + "SuggestedSeries": "SuggestedSeries", + "Title": "Title", + "ToString()": "ToString()", + "ToString": "ToString()" + } + } + ], + "DataSeriesAdapter": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesAdapter", + "k": "class", + "s": "classes", + "m": { + "DataSeriesAdapter()": "DataSeriesAdapter()", + "DataSeriesAdapter": "DataSeriesAdapter()", + "AdjustPrioritiesBasedOnFitness": "AdjustPrioritiesBasedOnFitness", + "ExcludedProperties": "ExcludedProperties", + "FilterExpressions": "FilterExpressions", + "Flush()": "Flush()", + "Flush": "Flush()", + "GetDataProvider(object)": "GetDataProvider(object)", + "GetDataProvider": "GetDataProvider(object)", + "GetLocalDataSource(object)": "GetLocalDataSource(object)", + "GetLocalDataSource": "GetLocalDataSource(object)", + "GroupDescriptions": "GroupDescriptions", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "IncludedProperties": "IncludedProperties", + "ItemsSource": "ItemsSource", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRemovingDuplicates(DataSeriesAdapterRemovingDuplicatesEventArgs)": "OnRemovingDuplicates(DataSeriesAdapterRemovingDuplicatesEventArgs)", + "OnRemovingDuplicates": "OnRemovingDuplicates(DataSeriesAdapterRemovingDuplicatesEventArgs)", + "OnRemovingUnsupported(DataSeriesAdapterRunEventArgs)": "OnRemovingUnsupported(DataSeriesAdapterRunEventArgs)", + "OnRemovingUnsupported": "OnRemovingUnsupported(DataSeriesAdapterRunEventArgs)", + "PostSortDescriptions": "PostSortDescriptions", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SupportedSeriesTypes": "SupportedSeriesTypes", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSeriesAdapterRemovingDuplicatesEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesAdapterRemovingDuplicatesEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSeriesAdapterRemovingDuplicatesEventArgs()": "DataSeriesAdapterRemovingDuplicatesEventArgs()", + "DataSeriesAdapterRemovingDuplicatesEventArgs": "DataSeriesAdapterRemovingDuplicatesEventArgs()", + "DataSourcePath": "DataSourcePath", + "DuplicatePath": "DuplicatePath", + "Handled": "Handled", + "MatchingSeries": "MatchingSeries", + "RunContext": "RunContext", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSeriesAdapterRunContext": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesAdapterRunContext", + "k": "class", + "s": "classes", + "m": { + "AddDataSeries(DataSeries, IDataSeriesAdapterRule)": "AddDataSeries(DataSeries, IDataSeriesAdapterRule)", + "AddDataSeries": "AddDataSeries(DataSeries, IDataSeriesAdapterRule)", + "AdjustPrioritiesBasedOnFitness": "AdjustPrioritiesBasedOnFitness", + "Analyzer": "Analyzer", + "ClearDataSeries()": "ClearDataSeries()", + "ClearDataSeries": "ClearDataSeries()", + "ExcludedProperties": "ExcludedProperties", + "GetCurrentDataSource()": "GetCurrentDataSource()", + "GetCurrentDataSource": "GetCurrentDataSource()", + "GetCurrentHighlightingDataSource()": "GetCurrentHighlightingDataSource()", + "GetCurrentHighlightingDataSource": "GetCurrentHighlightingDataSource()", + "GetCurrentPath()": "GetCurrentPath()", + "GetCurrentPath": "GetCurrentPath()", + "GetCurrentPathSegment()": "GetCurrentPathSegment()", + "GetCurrentPathSegment": "GetCurrentPathSegment()", + "GetDataSeriesAt(int)": "GetDataSeriesAt(int)", + "GetDataSeriesAt": "GetDataSeriesAt(int)", + "GetDataSeriesCount()": "GetDataSeriesCount()", + "GetDataSeriesCount": "GetDataSeriesCount()", + "GetParentTitle()": "GetParentTitle()", + "GetParentTitle": "GetParentTitle()", + "GetSubProvider(object, string)": "GetSubProvider(object, string)", + "GetSubProvider": "GetSubProvider(object, string)", + "HasValidType(DataSeries)": "HasValidType(DataSeries)", + "HasValidType": "HasValidType(DataSeries)", + "IncludedProperties": "IncludedProperties", + "InsertDataSeries(int, DataSeries, IDataSeriesAdapterRule)": "InsertDataSeries(int, DataSeries, IDataSeriesAdapterRule)", + "InsertDataSeries": "InsertDataSeries(int, DataSeries, IDataSeriesAdapterRule)", + "PopDataSource()": "PopDataSource()", + "PopDataSource": "PopDataSource()", + "PopHighlightingDataSource()": "PopHighlightingDataSource()", + "PopHighlightingDataSource": "PopHighlightingDataSource()", + "PopParentTitle()": "PopParentTitle()", + "PopParentTitle": "PopParentTitle()", + "PopPath()": "PopPath()", + "PopPath": "PopPath()", + "PopSubProvider()": "PopSubProvider()", + "PopSubProvider": "PopSubProvider()", + "PushDataSource(IDataSourceLocalDataProvider)": "PushDataSource(IDataSourceLocalDataProvider)", + "PushDataSource": "PushDataSource(IDataSourceLocalDataProvider)", + "PushHighlightingDataSource(IDataSourceLocalDataProvider)": "PushHighlightingDataSource(IDataSourceLocalDataProvider)", + "PushHighlightingDataSource": "PushHighlightingDataSource(IDataSourceLocalDataProvider)", + "PushParentTitle(string)": "PushParentTitle(string)", + "PushParentTitle": "PushParentTitle(string)", + "PushPath(string)": "PushPath(string)", + "PushPath": "PushPath(string)", + "RecurseRules(object, string, bool)": "RecurseRules(object, string, bool)", + "RecurseRules": "RecurseRules(object, string, bool)", + "RemoveDataSeries(DataSeries)": "RemoveDataSeries(DataSeries)", + "RemoveDataSeries": "RemoveDataSeries(DataSeries)" + } + } + ], + "DataSeriesAdapterRunEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesAdapterRunEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSeriesAdapterRunEventArgs()": "DataSeriesAdapterRunEventArgs()", + "DataSeriesAdapterRunEventArgs": "DataSeriesAdapterRunEventArgs()", + "Handled": "Handled", + "RunContext": "RunContext", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSeriesAxisType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSeriesAxisType", + "k": "enum", + "s": "enums" + } + ], + "DataSeriesCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesCollection", + "k": "class", + "s": "classes", + "m": { + "DataSeriesCollection()": "DataSeriesCollection()", + "DataSeriesCollection": "DataSeriesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSeriesDataProviderAnalyzer": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesDataProviderAnalyzer", + "k": "class", + "s": "classes", + "m": { + "CoerceToDouble(object)": "CoerceToDouble(object)", + "CoerceToDouble": "CoerceToDouble(object)", + "ExcludedProperties": "ExcludedProperties", + "ExpandCamelCasedWords(string)": "ExpandCamelCasedWords(string)", + "ExpandCamelCasedWords": "ExpandCamelCasedWords(string)", + "GetAllCollectionProperties()": "GetAllCollectionProperties()", + "GetAllCollectionProperties": "GetAllCollectionProperties()", + "GetAllDateTimeProperties()": "GetAllDateTimeProperties()", + "GetAllDateTimeProperties": "GetAllDateTimeProperties()", + "GetAllDistinctMonotonicNumericProperties(int)": "GetAllDistinctMonotonicNumericProperties(int)", + "GetAllDistinctMonotonicNumericProperties": "GetAllDistinctMonotonicNumericProperties(int)", + "GetAllExcludedDateTimeProperties()": "GetAllExcludedDateTimeProperties()", + "GetAllExcludedDateTimeProperties": "GetAllExcludedDateTimeProperties()", + "GetAllExcludedDistinctMonotonicNumericProperties(int)": "GetAllExcludedDistinctMonotonicNumericProperties(int)", + "GetAllExcludedDistinctMonotonicNumericProperties": "GetAllExcludedDistinctMonotonicNumericProperties(int)", + "GetAllExcludedStringProperties()": "GetAllExcludedStringProperties()", + "GetAllExcludedStringProperties": "GetAllExcludedStringProperties()", + "GetAllNumericProperties()": "GetAllNumericProperties()", + "GetAllNumericProperties": "GetAllNumericProperties()", + "GetAllObjectProperties()": "GetAllObjectProperties()", + "GetAllObjectProperties": "GetAllObjectProperties()", + "GetAllPropertiesWithIntent(string)": "GetAllPropertiesWithIntent(string)", + "GetAllPropertiesWithIntent": "GetAllPropertiesWithIntent(string)", + "GetAllPropertiesWithName(string)": "GetAllPropertiesWithName(string)", + "GetAllPropertiesWithName": "GetAllPropertiesWithName(string)", + "GetAllPropertiesWithValuedIntent(string)": "GetAllPropertiesWithValuedIntent(string)", + "GetAllPropertiesWithValuedIntent": "GetAllPropertiesWithValuedIntent(string)", + "GetAllPropertiesWithValuelessIntent(string)": "GetAllPropertiesWithValuelessIntent(string)", + "GetAllPropertiesWithValuelessIntent": "GetAllPropertiesWithValuelessIntent(string)", + "GetAllStringProperties()": "GetAllStringProperties()", + "GetAllStringProperties": "GetAllStringProperties()", + "GetFirstDateTimeProperty()": "GetFirstDateTimeProperty()", + "GetFirstDateTimeProperty": "GetFirstDateTimeProperty()", + "GetFirstDistinctDateTimeProperty(int)": "GetFirstDistinctDateTimeProperty(int)", + "GetFirstDistinctDateTimeProperty": "GetFirstDistinctDateTimeProperty(int)", + "GetFirstDistinctMonotonicNumericProperty(int)": "GetFirstDistinctMonotonicNumericProperty(int)", + "GetFirstDistinctMonotonicNumericProperty": "GetFirstDistinctMonotonicNumericProperty(int)", + "GetFirstDistinctMonotonicNumericPropertyWithEvenSpacing(int)": "GetFirstDistinctMonotonicNumericPropertyWithEvenSpacing(int)", + "GetFirstDistinctMonotonicNumericPropertyWithEvenSpacing": "GetFirstDistinctMonotonicNumericPropertyWithEvenSpacing(int)", + "GetFirstDistinctNumericProperty(int)": "GetFirstDistinctNumericProperty(int)", + "GetFirstDistinctNumericProperty": "GetFirstDistinctNumericProperty(int)", + "GetFirstDistinctStringProperty(int)": "GetFirstDistinctStringProperty(int)", + "GetFirstDistinctStringProperty": "GetFirstDistinctStringProperty(int)", + "GetFirstNumericProperty()": "GetFirstNumericProperty()", + "GetFirstNumericProperty": "GetFirstNumericProperty()", + "GetFirstStringProperty()": "GetFirstStringProperty()", + "GetFirstStringProperty": "GetFirstStringProperty()", + "GetFirstStringPropertyPreferringDistinct(int)": "GetFirstStringPropertyPreferringDistinct(int)", + "GetFirstStringPropertyPreferringDistinct": "GetFirstStringPropertyPreferringDistinct(int)", + "GetNonNullPropertyValue(string)": "GetNonNullPropertyValue(string)", + "GetNonNullPropertyValue": "GetNonNullPropertyValue(string)", + "GetParentTitle()": "GetParentTitle()", + "GetParentTitle": "GetParentTitle()", + "GetPropertyIntentValue(string, string)": "GetPropertyIntentValue(string, string)", + "GetPropertyIntentValue": "GetPropertyIntentValue(string, string)", + "GetTitleString(object, string[])": "GetTitleString(object, string[])", + "GetTitleString": "GetTitleString(object, string[])", + "GetTitleStringWithSeparator(object, string[], string)": "GetTitleStringWithSeparator(object, string[], string)", + "GetTitleStringWithSeparator": "GetTitleStringWithSeparator(object, string[], string)", + "HasDateTimeProperties()": "HasDateTimeProperties()", + "HasDateTimeProperties": "HasDateTimeProperties()", + "HasNumericProperties()": "HasNumericProperties()", + "HasNumericProperties": "HasNumericProperties()", + "HasStringProperties()": "HasStringProperties()", + "HasStringProperties": "HasStringProperties()", + "IncludedProperties": "IncludedProperties", + "IsCollection(object)": "IsCollection(object)", + "IsCollection": "IsCollection(object)", + "IsEvenlySpaced(IDataSourceLocalDataProvider, string, int)": "IsEvenlySpaced(IDataSourceLocalDataProvider, string, int)", + "IsEvenlySpaced": "IsEvenlySpaced(IDataSourceLocalDataProvider, string, int)", + "IsMonotonic(IDataSourceLocalDataProvider, string, int)": "IsMonotonic(IDataSourceLocalDataProvider, string, int)", + "IsMonotonic": "IsMonotonic(IDataSourceLocalDataProvider, string, int)", + "NumericColumnHasDiverseValues(string)": "NumericColumnHasDiverseValues(string)", + "NumericColumnHasDiverseValues": "NumericColumnHasDiverseValues(string)", + "NumericColumnHasNoRange(IDataSourceLocalDataProvider, string, int)": "NumericColumnHasNoRange(IDataSourceLocalDataProvider, string, int)", + "NumericColumnHasNoRange": "NumericColumnHasNoRange(IDataSourceLocalDataProvider, string, int)", + "ShouldIncludeProperty(string, string)": "ShouldIncludeProperty(string, string)", + "ShouldIncludeProperty": "ShouldIncludeProperty(string, string)", + "ShouldUseLogarithmicScale(IDataSourceLocalDataProvider, string)": "ShouldUseLogarithmicScale(IDataSourceLocalDataProvider, string)", + "ShouldUseLogarithmicScale": "ShouldUseLogarithmicScale(IDataSourceLocalDataProvider, string)" + } + } + ], + "DataSeriesIntent": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSeriesIntent", + "k": "enum", + "s": "enums" + } + ], + "DataSeriesMarker": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSeriesMarker", + "k": "enum", + "s": "enums" + } + ], + "DataSeriesMemberIntentAttribute": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesMemberIntentAttribute", + "k": "class", + "s": "classes", + "m": { + "DataSeriesMemberIntentAttribute(DataSeriesIntent)": "DataSeriesMemberIntentAttribute(DataSeriesIntent)", + "DataSeriesMemberIntentAttribute": "DataSeriesMemberIntentAttribute(DataSeriesIntent)", + "MemberIntent": "MemberIntent" + } + } + ], + "DataSeriesMemberPathHint": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesMemberPathHint", + "k": "class", + "s": "classes", + "m": { + "DataSeriesMemberPathHint()": "DataSeriesMemberPathHint()", + "DataSeriesMemberPathHint": "DataSeriesMemberPathHint()", + "Clone()": "Clone()", + "Clone": "Clone()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "HasPath()": "HasPath()", + "HasPath": "HasPath()", + "Intent": "Intent", + "LogarithmicSuggested": "LogarithmicSuggested", + "Path": "Path", + "ToString()": "ToString()", + "ToString": "ToString()", + "Update(string, string)": "Update(string, string)", + "Update": "Update(string, string)", + "Update(string[], string)": "Update(string[], string)" + } + } + ], + "DataSeriesPropertyType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSeriesPropertyType", + "k": "enum", + "s": "enums" + } + ], + "DataSeriesTitleAttribute": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesTitleAttribute", + "k": "class", + "s": "classes", + "m": { + "DataSeriesTitleAttribute(string)": "DataSeriesTitleAttribute(string)", + "DataSeriesTitleAttribute": "DataSeriesTitleAttribute(string)", + "MemberIntent": "MemberIntent", + "Title": "Title" + } + } + ], + "DataSeriesToDescriptionAdapter": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DataSeriesToDescriptionAdapter", + "k": "class", + "s": "classes", + "m": { + "DataSeriesToDescriptionAdapter(DataSeriesToDescriptionAdapterSettings)": "DataSeriesToDescriptionAdapter(DataSeriesToDescriptionAdapterSettings)", + "DataSeriesToDescriptionAdapter": "DataSeriesToDescriptionAdapter(DataSeriesToDescriptionAdapterSettings)", + "GetDataGridContent(DataSeries[])": "GetDataGridContent(DataSeries[])", + "GetDataGridContent": "GetDataGridContent(DataSeries[])", + "GetEditorContent(DataSeries[])": "GetEditorContent(DataSeries[])", + "GetEditorContent": "GetEditorContent(DataSeries[])", + "GetLegendContent(DataSeries[])": "GetLegendContent(DataSeries[])", + "GetLegendContent": "GetLegendContent(DataSeries[])", + "GetMainContent(DataSeries[])": "GetMainContent(DataSeries[])", + "GetMainContent": "GetMainContent(DataSeries[])", + "GetToolbarContent(DataSeries[])": "GetToolbarContent(DataSeries[])", + "GetToolbarContent": "GetToolbarContent(DataSeries[])" + } + } + ], + "DataSeriesToDescriptionAdapterResult": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DataSeriesToDescriptionAdapterResult", + "k": "class", + "s": "classes", + "m": { + "Content": "Content", + "DescriptionType": "DescriptionType", + "MainRef": "MainRef", + "RefNames": "RefNames", + "RefValues": "RefValues" + } + } + ], + "DataSeriesToDescriptionAdapterSettings": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DataSeriesToDescriptionAdapterSettings", + "k": "class", + "s": "classes", + "m": { + "DataSeriesToDescriptionAdapterSettings()": "DataSeriesToDescriptionAdapterSettings()", + "DataSeriesToDescriptionAdapterSettings": "DataSeriesToDescriptionAdapterSettings()", + "AddCoercion(string, DataSeriesToDescriptionAdapterCoerceValue)": "AddCoercion(string, DataSeriesToDescriptionAdapterCoerceValue)", + "AddCoercion": "AddCoercion(string, DataSeriesToDescriptionAdapterCoerceValue)", + "Context": "Context", + "Customizations": "Customizations", + "GetSettingsValue(string)": "GetSettingsValue(string)", + "GetSettingsValue": "GetSettingsValue(string)", + "HasSettingsValue(string)": "HasSettingsValue(string)", + "HasSettingsValue": "HasSettingsValue(string)", + "OriginalData": "OriginalData", + "RefNamespace": "RefNamespace", + "SetSettingsValue(string, object)": "SetSettingsValue(string, object)", + "SetSettingsValue": "SetSettingsValue(string, object)", + "ShouldPreferRadialCategories": "ShouldPreferRadialCategories", + "ShouldStackCategories": "ShouldStackCategories" + } + } + ], + "DataSeriesToDescriptionCustomization": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSeriesToDescriptionCustomization", + "k": "class", + "s": "classes", + "m": { + "DataSeriesToDescriptionCustomization()": "DataSeriesToDescriptionCustomization()", + "DataSeriesToDescriptionCustomization": "DataSeriesToDescriptionCustomization()", + "CollectionIndex": "CollectionIndex", + "IsCollectionInsertionAtEnd": "IsCollectionInsertionAtEnd", + "IsCollectionInsertionAtIndex": "IsCollectionInsertionAtIndex", + "IsCollectionInsertionAtStart": "IsCollectionInsertionAtStart", + "IsCollectionRemovaltIndex": "IsCollectionRemovaltIndex", + "MatchParentIndex": "MatchParentIndex", + "MatchType": "MatchType", + "Order": "Order", + "Owner": "Owner", + "PendingDescription": "PendingDescription", + "PropertyName": "PropertyName", + "PropertyValue": "PropertyValue" + } + } + ], + "DataSeriesToDescriptionCustomizations": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/DataSeriesToDescriptionCustomizations", + "k": "class", + "s": "classes", + "m": { + "DataSeriesToDescriptionCustomizations(DataSeriesToDescriptionCustomization[])": "DataSeriesToDescriptionCustomizations(DataSeriesToDescriptionCustomization[])", + "DataSeriesToDescriptionCustomizations": "DataSeriesToDescriptionCustomizations(DataSeriesToDescriptionCustomization[])", + "AddOtherCustomizations(DataSeriesToDescriptionCustomizations)": "AddOtherCustomizations(DataSeriesToDescriptionCustomizations)", + "AddOtherCustomizations": "AddOtherCustomizations(DataSeriesToDescriptionCustomizations)", + "ClearOtherCustomizations()": "ClearOtherCustomizations()", + "ClearOtherCustomizations": "ClearOtherCustomizations()", + "GetCollectionModifiers(string)": "GetCollectionModifiers(string)", + "GetCollectionModifiers": "GetCollectionModifiers(string)", + "GetPropertyCustomizations(string)": "GetPropertyCustomizations(string)", + "GetPropertyCustomizations": "GetPropertyCustomizations(string)", + "HasCustomizationsFor(string)": "HasCustomizationsFor(string)", + "HasCustomizationsFor": "HasCustomizationsFor(string)" + } + } + ], + "DataSeriesType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSeriesType", + "k": "enum", + "s": "enums" + } + ], + "DataSourceAggregatedResult": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceAggregatedResult", + "k": "class", + "s": "classes", + "m": { + "DataSourceAggregatedResult()": "DataSourceAggregatedResult()", + "DataSourceAggregatedResult": "DataSourceAggregatedResult()", + "Item": "Item", + "Keys": "Keys", + "TransactionType": "TransactionType", + "Values": "Values" + } + } + ], + "DataSourceAggregatedResultDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceAggregatedResultDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceAggregatedResultDescription()": "DataSourceAggregatedResultDescription()", + "DataSourceAggregatedResultDescription": "DataSourceAggregatedResultDescription()", + "Item": "Item", + "Keys": "Keys", + "TransactionType": "TransactionType", + "Type": "Type", + "Values": "Values" + } + } + ], + "DataSourceAggregatedResultDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceAggregatedResultDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceAggregatedResultDescriptionMetadata()": "DataSourceAggregatedResultDescriptionMetadata()", + "DataSourceAggregatedResultDescriptionMetadata": "DataSourceAggregatedResultDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceBatchCompletedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceBatchCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceBatchCompletedEventArgs(bool, string[])": "DataSourceBatchCompletedEventArgs(bool, string[])", + "DataSourceBatchCompletedEventArgs": "DataSourceBatchCompletedEventArgs(bool, string[])", + "Messages": "Messages", + "Success": "Success" + } + } + ], + "DataSourceBatchStartedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceBatchStartedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceBatchStartedEventArgs(TransactionState[])": "DataSourceBatchStartedEventArgs(TransactionState[])", + "DataSourceBatchStartedEventArgs": "DataSourceBatchStartedEventArgs(TransactionState[])", + "Changes": "Changes" + } + } + ], + "DataSourceDataCommittedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceDataCommittedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceDataCommittedEventArgs(int, DataSourceAggregatedResult[])": "DataSourceDataCommittedEventArgs(int, DataSourceAggregatedResult[])", + "DataSourceDataCommittedEventArgs": "DataSourceDataCommittedEventArgs(int, DataSourceAggregatedResult[])", + "Changes": "Changes", + "CommitID": "CommitID" + } + } + ], + "DataSourceDataProviderSchemaChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceDataProviderSchemaChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceDataProviderSchemaChangedEventArgs(IDataSourceSchema, int)": "DataSourceDataProviderSchemaChangedEventArgs(IDataSourceSchema, int)", + "DataSourceDataProviderSchemaChangedEventArgs": "DataSourceDataProviderSchemaChangedEventArgs(IDataSourceSchema, int)", + "Count": "Count", + "Schema": "Schema" + } + } + ], + "DataSourceDataProviderSchemaChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceDataProviderSchemaChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceDataProviderSchemaChangedEventArgsDescription()": "DataSourceDataProviderSchemaChangedEventArgsDescription()", + "DataSourceDataProviderSchemaChangedEventArgsDescription": "DataSourceDataProviderSchemaChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata()": "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata()", + "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata": "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceGroupDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescription()": "DataSourceGroupDescription()", + "DataSourceGroupDescription": "DataSourceGroupDescription()", + "DataSourceGroupDescription(string)": "DataSourceGroupDescription(string)", + "DataSourceGroupDescription(string, ListSortDirection)": "DataSourceGroupDescription(string, ListSortDirection)" + } + } + ], + "DataSourceGroupDescriptionCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceGroupDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescriptionCollection()": "DataSourceGroupDescriptionCollection()", + "DataSourceGroupDescriptionCollection": "DataSourceGroupDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceGroupDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceGroupDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescriptionDescription()": "DataSourceGroupDescriptionDescription()", + "DataSourceGroupDescriptionDescription": "DataSourceGroupDescriptionDescription()", + "Type": "Type" + } + } + ], + "DataSourceGroupDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceGroupDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescriptionDescriptionMetadata()": "DataSourceGroupDescriptionDescriptionMetadata()", + "DataSourceGroupDescriptionDescriptionMetadata": "DataSourceGroupDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceGroupDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceGroupDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescriptionDescriptionModule()": "DataSourceGroupDescriptionDescriptionModule()", + "DataSourceGroupDescriptionDescriptionModule": "DataSourceGroupDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceLocalDataProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceLocalDataProvider", + "k": "class", + "s": "classes", + "m": { + "DataSourceLocalDataProvider()": "DataSourceLocalDataProvider()", + "DataSourceLocalDataProvider": "DataSourceLocalDataProvider()", + "ActualCount": "ActualCount", + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "Clone()": "Clone()", + "Clone": "Clone()", + "DeferAutoRefresh": "DeferAutoRefresh", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GroupDescriptions": "GroupDescriptions", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsSortingSupported": "IsSortingSupported", + "ItemsSource": "ItemsSource", + "List": "List", + "MustSyncListWithChanges": "MustSyncListWithChanges", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "PropertiesRequested": "PropertiesRequested", + "PropertyUpdatedOverride(string, object, object)": "PropertyUpdatedOverride(string, object, object)", + "PropertyUpdatedOverride": "PropertyUpdatedOverride(string, object, object)", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "ReactToINPCNotifications": "ReactToINPCNotifications", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RefreshInternalOverride()": "RefreshInternalOverride()", + "RefreshInternalOverride": "RefreshInternalOverride()", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "SchemaHints": "SchemaHints", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SetItemValue(object, string, object)": "SetItemValue(object, string, object)", + "SetItemValue": "SetItemValue(object, string, object)", + "SetSchema(IDataSourceSchema)": "SetSchema(IDataSourceSchema)", + "SetSchema": "SetSchema(IDataSourceSchema)", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "DataSourcePageRequestPriority": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSourcePageRequestPriority", + "k": "enum", + "s": "enums" + } + ], + "DataSourcePropertiesRequestedChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourcePropertiesRequestedChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourcePropertiesRequestedChangedEventArgs()": "DataSourcePropertiesRequestedChangedEventArgs()", + "DataSourcePropertiesRequestedChangedEventArgs": "DataSourcePropertiesRequestedChangedEventArgs()" + } + } + ], + "DataSourcePropertiesRequestedChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourcePropertiesRequestedChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourcePropertiesRequestedChangedEventArgsDescription()": "DataSourcePropertiesRequestedChangedEventArgsDescription()", + "DataSourcePropertiesRequestedChangedEventArgsDescription": "DataSourcePropertiesRequestedChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata()": "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata()", + "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata": "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceRootSummariesChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceRootSummariesChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceRootSummariesChangedEventArgs()": "DataSourceRootSummariesChangedEventArgs()", + "DataSourceRootSummariesChangedEventArgs": "DataSourceRootSummariesChangedEventArgs()" + } + } + ], + "DataSourceRootSummariesChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceRootSummariesChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceRootSummariesChangedEventArgsDescription()": "DataSourceRootSummariesChangedEventArgsDescription()", + "DataSourceRootSummariesChangedEventArgsDescription": "DataSourceRootSummariesChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourceRootSummariesChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceRootSummariesChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceRootSummariesChangedEventArgsDescriptionMetadata()": "DataSourceRootSummariesChangedEventArgsDescriptionMetadata()", + "DataSourceRootSummariesChangedEventArgsDescriptionMetadata": "DataSourceRootSummariesChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceRowExpansionChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceRowExpansionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceRowExpansionChangedEventArgs(int, bool, bool)": "DataSourceRowExpansionChangedEventArgs(int, bool, bool)", + "DataSourceRowExpansionChangedEventArgs": "DataSourceRowExpansionChangedEventArgs(int, bool, bool)", + "NewState": "NewState", + "OldState": "OldState", + "RowIndex": "RowIndex" + } + } + ], + "DataSourceRowExpansionChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceRowExpansionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceRowExpansionChangedEventArgsDescription()": "DataSourceRowExpansionChangedEventArgsDescription()", + "DataSourceRowExpansionChangedEventArgsDescription": "DataSourceRowExpansionChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourceRowExpansionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceRowExpansionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceRowExpansionChangedEventArgsDescriptionMetadata()": "DataSourceRowExpansionChangedEventArgsDescriptionMetadata()", + "DataSourceRowExpansionChangedEventArgsDescriptionMetadata": "DataSourceRowExpansionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceRowType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSourceRowType", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSchemaChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSchemaChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceSchemaChangedEventArgs(IDataSourceSchema, int)": "DataSourceSchemaChangedEventArgs(IDataSourceSchema, int)", + "DataSourceSchemaChangedEventArgs": "DataSourceSchemaChangedEventArgs(IDataSourceSchema, int)", + "Count": "Count", + "Schema": "Schema" + } + } + ], + "DataSourceSchemaChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSchemaChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSchemaChangedEventArgsDescription()": "DataSourceSchemaChangedEventArgsDescription()", + "DataSourceSchemaChangedEventArgsDescription": "DataSourceSchemaChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourceSchemaChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSchemaChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSchemaChangedEventArgsDescriptionMetadata()": "DataSourceSchemaChangedEventArgsDescriptionMetadata()", + "DataSourceSchemaChangedEventArgsDescriptionMetadata": "DataSourceSchemaChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSchemaPropertyType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSourceSchemaPropertyType", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSectionHeaderDisplayMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSourceSectionHeaderDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSortDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSortDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescription()": "DataSourceSortDescription()", + "DataSourceSortDescription": "DataSourceSortDescription()", + "DataSourceSortDescription(string)": "DataSourceSortDescription(string)", + "DataSourceSortDescription(string, ListSortDirection)": "DataSourceSortDescription(string, ListSortDirection)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "SortDirection": "SortDirection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceSortDescriptionCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescriptionCollection()": "DataSourceSortDescriptionCollection()", + "DataSourceSortDescriptionCollection": "DataSourceSortDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceSortDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSortDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescriptionDescription()": "DataSourceSortDescriptionDescription()", + "DataSourceSortDescriptionDescription": "DataSourceSortDescriptionDescription()", + "Field": "Field", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "DataSourceSortDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSortDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescriptionDescriptionMetadata()": "DataSourceSortDescriptionDescriptionMetadata()", + "DataSourceSortDescriptionDescriptionMetadata": "DataSourceSortDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSortDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSortDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescriptionDescriptionModule()": "DataSourceSortDescriptionDescriptionModule()", + "DataSourceSortDescriptionDescriptionModule": "DataSourceSortDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSpecialRow": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSpecialRow", + "k": "class", + "s": "classes", + "m": { + "DataSourceSpecialRow()": "DataSourceSpecialRow()", + "DataSourceSpecialRow": "DataSourceSpecialRow()", + "GetValue(string)": "GetValue(string)", + "GetValue": "GetValue(string)", + "RowType": "RowType", + "SetValue(string, object)": "SetValue(string, object)", + "SetValue": "SetValue(string, object)" + } + } + ], + "DataSourceSpecialRowDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSpecialRowDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSpecialRowDescription()": "DataSourceSpecialRowDescription()", + "DataSourceSpecialRowDescription": "DataSourceSpecialRowDescription()", + "Keys": "Keys", + "Level": "Level", + "RowType": "RowType", + "SectionKeys": "SectionKeys", + "SectionValuesRef": "SectionValuesRef", + "SummaryResults": "SummaryResults", + "TargetRow": "TargetRow", + "Type": "Type", + "ValuesRef": "ValuesRef" + } + } + ], + "DataSourceSpecialRowDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSpecialRowDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSpecialRowDescriptionMetadata()": "DataSourceSpecialRowDescriptionMetadata()", + "DataSourceSpecialRowDescriptionMetadata": "DataSourceSpecialRowDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSummaryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSummaryDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescription()": "DataSourceSummaryDescription()", + "DataSourceSummaryDescription": "DataSourceSummaryDescription()", + "DataSourceSummaryDescription(string)": "DataSourceSummaryDescription(string)", + "DataSourceSummaryDescription(string, DataSourceSummaryOperand)": "DataSourceSummaryDescription(string, DataSourceSummaryOperand)", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "OnProvideCalculator(ProvideCalculatorEventArgs)": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "OnProvideCalculator": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "Operand": "Operand", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceSummaryDescriptionCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescriptionCollection()": "DataSourceSummaryDescriptionCollection()", + "DataSourceSummaryDescriptionCollection": "DataSourceSummaryDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceSummaryDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSummaryDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescriptionDescription()": "DataSourceSummaryDescriptionDescription()", + "DataSourceSummaryDescriptionDescription": "DataSourceSummaryDescriptionDescription()", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Field": "Field", + "Operand": "Operand", + "ProvideCalculatorRef": "ProvideCalculatorRef", + "Type": "Type" + } + } + ], + "DataSourceSummaryDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSummaryDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescriptionDescriptionMetadata()": "DataSourceSummaryDescriptionDescriptionMetadata()", + "DataSourceSummaryDescriptionDescriptionMetadata": "DataSourceSummaryDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSummaryDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSummaryDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescriptionDescriptionModule()": "DataSourceSummaryDescriptionDescriptionModule()", + "DataSourceSummaryDescriptionDescriptionModule": "DataSourceSummaryDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSummaryOperand": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSourceSummaryOperand", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSummaryScope": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataSourceSummaryScope", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSupportingCalculation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataSourceSupportingCalculation", + "k": "class", + "s": "classes", + "m": { + "DataSourceSupportingCalculation(ProvideColumnValuesStrategy)": "DataSourceSupportingCalculation(ProvideColumnValuesStrategy)", + "DataSourceSupportingCalculation": "DataSourceSupportingCalculation(ProvideColumnValuesStrategy)", + "DataSourceSupportingCalculation(ProvideColumnValuesStrategy, IList)": "DataSourceSupportingCalculation(ProvideColumnValuesStrategy, IList)" + } + } + ], + "DataSourceSupportingCalculationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSupportingCalculationDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSupportingCalculationDescription()": "DataSourceSupportingCalculationDescription()", + "DataSourceSupportingCalculationDescription": "DataSourceSupportingCalculationDescription()", + "Type": "Type" + } + } + ], + "DataSourceSupportingCalculationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataSourceSupportingCalculationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSupportingCalculationDescriptionMetadata()": "DataSourceSupportingCalculationDescriptionMetadata()", + "DataSourceSupportingCalculationDescriptionMetadata": "DataSourceSupportingCalculationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataTemplate": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DataTemplate", + "k": "class", + "s": "classes", + "m": { + "DataTemplate()": "DataTemplate()", + "DataTemplate": "DataTemplate()", + "Measure": "Measure", + "PassCompleted": "PassCompleted", + "PassStarting": "PassStarting", + "Render": "Render" + } + } + ], + "DataTemplateMeasureInfo": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DataTemplateMeasureInfo", + "k": "class", + "s": "classes", + "m": { + "DataTemplateMeasureInfo()": "DataTemplateMeasureInfo()", + "DataTemplateMeasureInfo": "DataTemplateMeasureInfo()", + "Context": "Context", + "Data": "Data", + "Height": "Height", + "IsConstant": "IsConstant", + "PassInfo": "PassInfo", + "RenderContext": "RenderContext", + "RenderOffsetX": "RenderOffsetX", + "RenderOffsetY": "RenderOffsetY", + "Width": "Width" + } + } + ], + "DataTemplatePassInfo": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DataTemplatePassInfo", + "k": "class", + "s": "classes", + "m": { + "DataTemplatePassInfo()": "DataTemplatePassInfo()", + "DataTemplatePassInfo": "DataTemplatePassInfo()", + "Context": "Context", + "IsForDataLegend": "IsForDataLegend", + "IsHitTestRender": "IsHitTestRender", + "PassID": "PassID", + "RenderContext": "RenderContext", + "ViewportHeight": "ViewportHeight", + "ViewportLeft": "ViewportLeft", + "ViewportTop": "ViewportTop", + "ViewportWidth": "ViewportWidth" + } + } + ], + "DataTemplateRenderInfo": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DataTemplateRenderInfo", + "k": "class", + "s": "classes", + "m": { + "DataTemplateRenderInfo()": "DataTemplateRenderInfo()", + "DataTemplateRenderInfo": "DataTemplateRenderInfo()", + "AvailableHeight": "AvailableHeight", + "AvailableWidth": "AvailableWidth", + "Context": "Context", + "Data": "Data", + "IsHitTestRender": "IsHitTestRender", + "PassInfo": "PassInfo", + "RenderContext": "RenderContext", + "RenderOffsetX": "RenderOffsetX", + "RenderOffsetY": "RenderOffsetY", + "XPosition": "XPosition", + "YPosition": "YPosition" + } + } + ], + "DataTooltipConstraintMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/DataTooltipConstraintMode", + "k": "enum", + "s": "enums" + } + ], + "DataTooltipGroupedPositionX": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataTooltipGroupedPositionX", + "k": "enum", + "s": "enums" + } + ], + "DataTooltipGroupedPositionY": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataTooltipGroupedPositionY", + "k": "enum", + "s": "enums" + } + ], + "DataToolTipLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DataToolTipLayer", + "k": "class", + "s": "classes", + "m": { + "DataToolTipLayer()": "DataToolTipLayer()", + "DataToolTipLayer": "DataToolTipLayer()", + "ActualGroupedPositionModeX": "ActualGroupedPositionModeX", + "ActualGroupedPositionModeXProperty": "ActualGroupedPositionModeXProperty", + "ActualGroupedPositionModeY": "ActualGroupedPositionModeY", + "ActualGroupedPositionModeYProperty": "ActualGroupedPositionModeYProperty", + "ActualGroupingMode": "ActualGroupingMode", + "ActualGroupingModeProperty": "ActualGroupingModeProperty", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginBottomProperty": "BadgeMarginBottomProperty", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginLeftProperty": "BadgeMarginLeftProperty", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginRightProperty": "BadgeMarginRightProperty", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeMarginTopProperty": "BadgeMarginTopProperty", + "BadgeShape": "BadgeShape", + "BadgeShapeProperty": "BadgeShapeProperty", + "DefaultPositionOffsetX": "DefaultPositionOffsetX", + "DefaultPositionOffsetXProperty": "DefaultPositionOffsetXProperty", + "DefaultPositionOffsetY": "DefaultPositionOffsetY", + "DefaultPositionOffsetYProperty": "DefaultPositionOffsetYProperty", + "ExcludedColumns": "ExcludedColumns", + "ExcludedColumnsProperty": "ExcludedColumnsProperty", + "ExcludedSeries": "ExcludedSeries", + "ExcludedSeriesProperty": "ExcludedSeriesProperty", + "GroupRowMarginBottom": "GroupRowMarginBottom", + "GroupRowMarginBottomProperty": "GroupRowMarginBottomProperty", + "GroupRowMarginLeft": "GroupRowMarginLeft", + "GroupRowMarginLeftProperty": "GroupRowMarginLeftProperty", + "GroupRowMarginRight": "GroupRowMarginRight", + "GroupRowMarginRightProperty": "GroupRowMarginRightProperty", + "GroupRowMarginTop": "GroupRowMarginTop", + "GroupRowMarginTopProperty": "GroupRowMarginTopProperty", + "GroupRowVisible": "GroupRowVisible", + "GroupRowVisibleProperty": "GroupRowVisibleProperty", + "GroupTextColor": "GroupTextColor", + "GroupTextColorProperty": "GroupTextColorProperty", + "GroupTextFontFamily": "GroupTextFontFamily", + "GroupTextFontFamilyProperty": "GroupTextFontFamilyProperty", + "GroupTextFontSize": "GroupTextFontSize", + "GroupTextFontSizeProperty": "GroupTextFontSizeProperty", + "GroupTextFontStyle": "GroupTextFontStyle", + "GroupTextFontStyleProperty": "GroupTextFontStyleProperty", + "GroupTextFontWeight": "GroupTextFontWeight", + "GroupTextFontWeightProperty": "GroupTextFontWeightProperty", + "GroupTextMarginBottom": "GroupTextMarginBottom", + "GroupTextMarginBottomProperty": "GroupTextMarginBottomProperty", + "GroupTextMarginLeft": "GroupTextMarginLeft", + "GroupTextMarginLeftProperty": "GroupTextMarginLeftProperty", + "GroupTextMarginRight": "GroupTextMarginRight", + "GroupTextMarginRightProperty": "GroupTextMarginRightProperty", + "GroupTextMarginTop": "GroupTextMarginTop", + "GroupTextMarginTopProperty": "GroupTextMarginTopProperty", + "GroupedPositionModeX": "GroupedPositionModeX", + "GroupedPositionModeXProperty": "GroupedPositionModeXProperty", + "GroupedPositionModeY": "GroupedPositionModeY", + "GroupedPositionModeYProperty": "GroupedPositionModeYProperty", + "GroupingMode": "GroupingMode", + "GroupingModeProperty": "GroupingModeProperty", + "HeaderFormatCulture": "HeaderFormatCulture", + "HeaderFormatCultureProperty": "HeaderFormatCultureProperty", + "HeaderFormatDate": "HeaderFormatDate", + "HeaderFormatDateProperty": "HeaderFormatDateProperty", + "HeaderFormatSpecifiers": "HeaderFormatSpecifiers", + "HeaderFormatSpecifiersProperty": "HeaderFormatSpecifiersProperty", + "HeaderFormatString": "HeaderFormatString", + "HeaderFormatStringProperty": "HeaderFormatStringProperty", + "HeaderFormatTime": "HeaderFormatTime", + "HeaderFormatTimeProperty": "HeaderFormatTimeProperty", + "HeaderRowMarginBottom": "HeaderRowMarginBottom", + "HeaderRowMarginBottomProperty": "HeaderRowMarginBottomProperty", + "HeaderRowMarginLeft": "HeaderRowMarginLeft", + "HeaderRowMarginLeftProperty": "HeaderRowMarginLeftProperty", + "HeaderRowMarginRight": "HeaderRowMarginRight", + "HeaderRowMarginRightProperty": "HeaderRowMarginRightProperty", + "HeaderRowMarginTop": "HeaderRowMarginTop", + "HeaderRowMarginTopProperty": "HeaderRowMarginTopProperty", + "HeaderRowVisible": "HeaderRowVisible", + "HeaderRowVisibleProperty": "HeaderRowVisibleProperty", + "HeaderText": "HeaderText", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HeaderTextFontFamily": "HeaderTextFontFamily", + "HeaderTextFontFamilyProperty": "HeaderTextFontFamilyProperty", + "HeaderTextFontSize": "HeaderTextFontSize", + "HeaderTextFontSizeProperty": "HeaderTextFontSizeProperty", + "HeaderTextFontStyle": "HeaderTextFontStyle", + "HeaderTextFontStyleProperty": "HeaderTextFontStyleProperty", + "HeaderTextFontWeight": "HeaderTextFontWeight", + "HeaderTextFontWeightProperty": "HeaderTextFontWeightProperty", + "HeaderTextMarginBottom": "HeaderTextMarginBottom", + "HeaderTextMarginBottomProperty": "HeaderTextMarginBottomProperty", + "HeaderTextMarginLeft": "HeaderTextMarginLeft", + "HeaderTextMarginLeftProperty": "HeaderTextMarginLeftProperty", + "HeaderTextMarginRight": "HeaderTextMarginRight", + "HeaderTextMarginRightProperty": "HeaderTextMarginRightProperty", + "HeaderTextMarginTop": "HeaderTextMarginTop", + "HeaderTextMarginTopProperty": "HeaderTextMarginTopProperty", + "HeaderTextProperty": "HeaderTextProperty", + "IncludedColumns": "IncludedColumns", + "IncludedColumnsProperty": "IncludedColumnsProperty", + "IncludedSeries": "IncludedSeries", + "IncludedSeriesProperty": "IncludedSeriesProperty", + "LabelDisplayMode": "LabelDisplayMode", + "LabelDisplayModeProperty": "LabelDisplayModeProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "LabelTextFontFamily": "LabelTextFontFamily", + "LabelTextFontFamilyProperty": "LabelTextFontFamilyProperty", + "LabelTextFontSize": "LabelTextFontSize", + "LabelTextFontSizeProperty": "LabelTextFontSizeProperty", + "LabelTextFontStyle": "LabelTextFontStyle", + "LabelTextFontStyleProperty": "LabelTextFontStyleProperty", + "LabelTextFontWeight": "LabelTextFontWeight", + "LabelTextFontWeightProperty": "LabelTextFontWeightProperty", + "LabelTextMarginBottom": "LabelTextMarginBottom", + "LabelTextMarginBottomProperty": "LabelTextMarginBottomProperty", + "LabelTextMarginLeft": "LabelTextMarginLeft", + "LabelTextMarginLeftProperty": "LabelTextMarginLeftProperty", + "LabelTextMarginRight": "LabelTextMarginRight", + "LabelTextMarginRightProperty": "LabelTextMarginRightProperty", + "LabelTextMarginTop": "LabelTextMarginTop", + "LabelTextMarginTopProperty": "LabelTextMarginTopProperty", + "LayoutMode": "LayoutMode", + "LayoutModeProperty": "LayoutModeProperty", + "PositionOffsetX": "PositionOffsetX", + "PositionOffsetXProperty": "PositionOffsetXProperty", + "PositionOffsetY": "PositionOffsetY", + "PositionOffsetYProperty": "PositionOffsetYProperty", + "ShouldUpdateWhenSeriesDataChanges": "ShouldUpdateWhenSeriesDataChanges", + "ShouldUpdateWhenSeriesDataChangesProperty": "ShouldUpdateWhenSeriesDataChangesProperty", + "SummaryLabelText": "SummaryLabelText", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextColorProperty": "SummaryLabelTextColorProperty", + "SummaryLabelTextFontFamily": "SummaryLabelTextFontFamily", + "SummaryLabelTextFontFamilyProperty": "SummaryLabelTextFontFamilyProperty", + "SummaryLabelTextFontSize": "SummaryLabelTextFontSize", + "SummaryLabelTextFontSizeProperty": "SummaryLabelTextFontSizeProperty", + "SummaryLabelTextFontStyle": "SummaryLabelTextFontStyle", + "SummaryLabelTextFontStyleProperty": "SummaryLabelTextFontStyleProperty", + "SummaryLabelTextFontWeight": "SummaryLabelTextFontWeight", + "SummaryLabelTextFontWeightProperty": "SummaryLabelTextFontWeightProperty", + "SummaryLabelTextProperty": "SummaryLabelTextProperty", + "SummaryRowMarginBottom": "SummaryRowMarginBottom", + "SummaryRowMarginBottomProperty": "SummaryRowMarginBottomProperty", + "SummaryRowMarginLeft": "SummaryRowMarginLeft", + "SummaryRowMarginLeftProperty": "SummaryRowMarginLeftProperty", + "SummaryRowMarginRight": "SummaryRowMarginRight", + "SummaryRowMarginRightProperty": "SummaryRowMarginRightProperty", + "SummaryRowMarginTop": "SummaryRowMarginTop", + "SummaryRowMarginTopProperty": "SummaryRowMarginTopProperty", + "SummaryTitleText": "SummaryTitleText", + "SummaryTitleTextColor": "SummaryTitleTextColor", + "SummaryTitleTextColorProperty": "SummaryTitleTextColorProperty", + "SummaryTitleTextFontFamily": "SummaryTitleTextFontFamily", + "SummaryTitleTextFontFamilyProperty": "SummaryTitleTextFontFamilyProperty", + "SummaryTitleTextFontSize": "SummaryTitleTextFontSize", + "SummaryTitleTextFontSizeProperty": "SummaryTitleTextFontSizeProperty", + "SummaryTitleTextFontStyle": "SummaryTitleTextFontStyle", + "SummaryTitleTextFontStyleProperty": "SummaryTitleTextFontStyleProperty", + "SummaryTitleTextFontWeight": "SummaryTitleTextFontWeight", + "SummaryTitleTextFontWeightProperty": "SummaryTitleTextFontWeightProperty", + "SummaryTitleTextMarginBottom": "SummaryTitleTextMarginBottom", + "SummaryTitleTextMarginBottomProperty": "SummaryTitleTextMarginBottomProperty", + "SummaryTitleTextMarginLeft": "SummaryTitleTextMarginLeft", + "SummaryTitleTextMarginLeftProperty": "SummaryTitleTextMarginLeftProperty", + "SummaryTitleTextMarginRight": "SummaryTitleTextMarginRight", + "SummaryTitleTextMarginRightProperty": "SummaryTitleTextMarginRightProperty", + "SummaryTitleTextMarginTop": "SummaryTitleTextMarginTop", + "SummaryTitleTextMarginTopProperty": "SummaryTitleTextMarginTopProperty", + "SummaryTitleTextProperty": "SummaryTitleTextProperty", + "SummaryType": "SummaryType", + "SummaryTypeProperty": "SummaryTypeProperty", + "SummaryUnitsText": "SummaryUnitsText", + "SummaryUnitsTextColor": "SummaryUnitsTextColor", + "SummaryUnitsTextColorProperty": "SummaryUnitsTextColorProperty", + "SummaryUnitsTextFontFamily": "SummaryUnitsTextFontFamily", + "SummaryUnitsTextFontFamilyProperty": "SummaryUnitsTextFontFamilyProperty", + "SummaryUnitsTextFontSize": "SummaryUnitsTextFontSize", + "SummaryUnitsTextFontSizeProperty": "SummaryUnitsTextFontSizeProperty", + "SummaryUnitsTextFontStyle": "SummaryUnitsTextFontStyle", + "SummaryUnitsTextFontStyleProperty": "SummaryUnitsTextFontStyleProperty", + "SummaryUnitsTextFontWeight": "SummaryUnitsTextFontWeight", + "SummaryUnitsTextFontWeightProperty": "SummaryUnitsTextFontWeightProperty", + "SummaryUnitsTextProperty": "SummaryUnitsTextProperty", + "SummaryValueTextColor": "SummaryValueTextColor", + "SummaryValueTextColorProperty": "SummaryValueTextColorProperty", + "SummaryValueTextFontFamily": "SummaryValueTextFontFamily", + "SummaryValueTextFontFamilyProperty": "SummaryValueTextFontFamilyProperty", + "SummaryValueTextFontSize": "SummaryValueTextFontSize", + "SummaryValueTextFontSizeProperty": "SummaryValueTextFontSizeProperty", + "SummaryValueTextFontStyle": "SummaryValueTextFontStyle", + "SummaryValueTextFontStyleProperty": "SummaryValueTextFontStyleProperty", + "SummaryValueTextFontWeight": "SummaryValueTextFontWeight", + "SummaryValueTextFontWeightProperty": "SummaryValueTextFontWeightProperty", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTextFontFamily": "TitleTextFontFamily", + "TitleTextFontFamilyProperty": "TitleTextFontFamilyProperty", + "TitleTextFontSize": "TitleTextFontSize", + "TitleTextFontSizeProperty": "TitleTextFontSizeProperty", + "TitleTextFontStyle": "TitleTextFontStyle", + "TitleTextFontStyleProperty": "TitleTextFontStyleProperty", + "TitleTextFontWeight": "TitleTextFontWeight", + "TitleTextFontWeightProperty": "TitleTextFontWeightProperty", + "TitleTextMarginBottom": "TitleTextMarginBottom", + "TitleTextMarginBottomProperty": "TitleTextMarginBottomProperty", + "TitleTextMarginLeft": "TitleTextMarginLeft", + "TitleTextMarginLeftProperty": "TitleTextMarginLeftProperty", + "TitleTextMarginRight": "TitleTextMarginRight", + "TitleTextMarginRightProperty": "TitleTextMarginRightProperty", + "TitleTextMarginTop": "TitleTextMarginTop", + "TitleTextMarginTopProperty": "TitleTextMarginTopProperty", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBackgroundProperty": "ToolTipBackgroundProperty", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderBrushProperty": "ToolTipBorderBrushProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "UnitsDisplayMode": "UnitsDisplayMode", + "UnitsDisplayModeProperty": "UnitsDisplayModeProperty", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "UnitsTextColorProperty": "UnitsTextColorProperty", + "UnitsTextFontFamily": "UnitsTextFontFamily", + "UnitsTextFontFamilyProperty": "UnitsTextFontFamilyProperty", + "UnitsTextFontSize": "UnitsTextFontSize", + "UnitsTextFontSizeProperty": "UnitsTextFontSizeProperty", + "UnitsTextFontStyle": "UnitsTextFontStyle", + "UnitsTextFontStyleProperty": "UnitsTextFontStyleProperty", + "UnitsTextFontWeight": "UnitsTextFontWeight", + "UnitsTextFontWeightProperty": "UnitsTextFontWeightProperty", + "UnitsTextMarginBottom": "UnitsTextMarginBottom", + "UnitsTextMarginBottomProperty": "UnitsTextMarginBottomProperty", + "UnitsTextMarginLeft": "UnitsTextMarginLeft", + "UnitsTextMarginLeftProperty": "UnitsTextMarginLeftProperty", + "UnitsTextMarginRight": "UnitsTextMarginRight", + "UnitsTextMarginRightProperty": "UnitsTextMarginRightProperty", + "UnitsTextMarginTop": "UnitsTextMarginTop", + "UnitsTextMarginTopProperty": "UnitsTextMarginTopProperty", + "UnitsTextProperty": "UnitsTextProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty", + "ValueFormatAbbreviation": "ValueFormatAbbreviation", + "ValueFormatAbbreviationProperty": "ValueFormatAbbreviationProperty", + "ValueFormatCulture": "ValueFormatCulture", + "ValueFormatCultureProperty": "ValueFormatCultureProperty", + "ValueFormatMaxFractions": "ValueFormatMaxFractions", + "ValueFormatMaxFractionsProperty": "ValueFormatMaxFractionsProperty", + "ValueFormatMinFractions": "ValueFormatMinFractions", + "ValueFormatMinFractionsProperty": "ValueFormatMinFractionsProperty", + "ValueFormatMode": "ValueFormatMode", + "ValueFormatModeProperty": "ValueFormatModeProperty", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "ValueFormatSpecifiersProperty": "ValueFormatSpecifiersProperty", + "ValueFormatString": "ValueFormatString", + "ValueFormatStringProperty": "ValueFormatStringProperty", + "ValueFormatUseGrouping": "ValueFormatUseGrouping", + "ValueFormatUseGroupingProperty": "ValueFormatUseGroupingProperty", + "ValueRowMarginBottom": "ValueRowMarginBottom", + "ValueRowMarginBottomProperty": "ValueRowMarginBottomProperty", + "ValueRowMarginLeft": "ValueRowMarginLeft", + "ValueRowMarginLeftProperty": "ValueRowMarginLeftProperty", + "ValueRowMarginRight": "ValueRowMarginRight", + "ValueRowMarginRightProperty": "ValueRowMarginRightProperty", + "ValueRowMarginTop": "ValueRowMarginTop", + "ValueRowMarginTopProperty": "ValueRowMarginTopProperty", + "ValueRowVisible": "ValueRowVisible", + "ValueRowVisibleProperty": "ValueRowVisibleProperty", + "ValueTextColor": "ValueTextColor", + "ValueTextColorProperty": "ValueTextColorProperty", + "ValueTextFontFamily": "ValueTextFontFamily", + "ValueTextFontFamilyProperty": "ValueTextFontFamilyProperty", + "ValueTextFontSize": "ValueTextFontSize", + "ValueTextFontSizeProperty": "ValueTextFontSizeProperty", + "ValueTextFontStyle": "ValueTextFontStyle", + "ValueTextFontStyleProperty": "ValueTextFontStyleProperty", + "ValueTextFontWeight": "ValueTextFontWeight", + "ValueTextFontWeightProperty": "ValueTextFontWeightProperty", + "ValueTextMarginBottom": "ValueTextMarginBottom", + "ValueTextMarginBottomProperty": "ValueTextMarginBottomProperty", + "ValueTextMarginLeft": "ValueTextMarginLeft", + "ValueTextMarginLeftProperty": "ValueTextMarginLeftProperty", + "ValueTextMarginRight": "ValueTextMarginRight", + "ValueTextMarginRightProperty": "ValueTextMarginRightProperty", + "ValueTextMarginTop": "ValueTextMarginTop", + "ValueTextMarginTopProperty": "ValueTextMarginTopProperty", + "ValueTextUseSeriesColors": "ValueTextUseSeriesColors", + "ValueTextUseSeriesColorsProperty": "ValueTextUseSeriesColorsProperty", + "ValueTextWhenMissingData": "ValueTextWhenMissingData", + "ValueTextWhenMissingDataProperty": "ValueTextWhenMissingDataProperty" + } + } + ], + "DataToolTipLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataToolTipLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataToolTipLayerDescription()": "DataToolTipLayerDescription()", + "DataToolTipLayerDescription": "DataToolTipLayerDescription()", + "ActualGroupedPositionModeX": "ActualGroupedPositionModeX", + "ActualGroupedPositionModeY": "ActualGroupedPositionModeY", + "ActualGroupingMode": "ActualGroupingMode", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeShape": "BadgeShape", + "DefaultPositionOffsetX": "DefaultPositionOffsetX", + "DefaultPositionOffsetY": "DefaultPositionOffsetY", + "ExcludedColumns": "ExcludedColumns", + "ExcludedSeries": "ExcludedSeries", + "GroupRowMarginBottom": "GroupRowMarginBottom", + "GroupRowMarginLeft": "GroupRowMarginLeft", + "GroupRowMarginRight": "GroupRowMarginRight", + "GroupRowMarginTop": "GroupRowMarginTop", + "GroupRowVisible": "GroupRowVisible", + "GroupTextColor": "GroupTextColor", + "GroupTextFontFamily": "GroupTextFontFamily", + "GroupTextFontSize": "GroupTextFontSize", + "GroupTextFontStyle": "GroupTextFontStyle", + "GroupTextFontWeight": "GroupTextFontWeight", + "GroupTextMarginBottom": "GroupTextMarginBottom", + "GroupTextMarginLeft": "GroupTextMarginLeft", + "GroupTextMarginRight": "GroupTextMarginRight", + "GroupTextMarginTop": "GroupTextMarginTop", + "GroupedPositionModeX": "GroupedPositionModeX", + "GroupedPositionModeY": "GroupedPositionModeY", + "GroupingMode": "GroupingMode", + "HeaderFormatCulture": "HeaderFormatCulture", + "HeaderFormatDate": "HeaderFormatDate", + "HeaderFormatSpecifiers": "HeaderFormatSpecifiers", + "HeaderFormatString": "HeaderFormatString", + "HeaderFormatTime": "HeaderFormatTime", + "HeaderRowMarginBottom": "HeaderRowMarginBottom", + "HeaderRowMarginLeft": "HeaderRowMarginLeft", + "HeaderRowMarginRight": "HeaderRowMarginRight", + "HeaderRowMarginTop": "HeaderRowMarginTop", + "HeaderRowVisible": "HeaderRowVisible", + "HeaderText": "HeaderText", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextFontFamily": "HeaderTextFontFamily", + "HeaderTextFontSize": "HeaderTextFontSize", + "HeaderTextFontStyle": "HeaderTextFontStyle", + "HeaderTextFontWeight": "HeaderTextFontWeight", + "HeaderTextMarginBottom": "HeaderTextMarginBottom", + "HeaderTextMarginLeft": "HeaderTextMarginLeft", + "HeaderTextMarginRight": "HeaderTextMarginRight", + "HeaderTextMarginTop": "HeaderTextMarginTop", + "IncludedColumns": "IncludedColumns", + "IncludedSeries": "IncludedSeries", + "LabelDisplayMode": "LabelDisplayMode", + "LabelTextColor": "LabelTextColor", + "LabelTextFontFamily": "LabelTextFontFamily", + "LabelTextFontSize": "LabelTextFontSize", + "LabelTextFontStyle": "LabelTextFontStyle", + "LabelTextFontWeight": "LabelTextFontWeight", + "LabelTextMarginBottom": "LabelTextMarginBottom", + "LabelTextMarginLeft": "LabelTextMarginLeft", + "LabelTextMarginRight": "LabelTextMarginRight", + "LabelTextMarginTop": "LabelTextMarginTop", + "LayoutMode": "LayoutMode", + "PositionOffsetX": "PositionOffsetX", + "PositionOffsetY": "PositionOffsetY", + "ShouldUpdateWhenSeriesDataChanges": "ShouldUpdateWhenSeriesDataChanges", + "SummaryLabelText": "SummaryLabelText", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextFontFamily": "SummaryLabelTextFontFamily", + "SummaryLabelTextFontSize": "SummaryLabelTextFontSize", + "SummaryLabelTextFontStyle": "SummaryLabelTextFontStyle", + "SummaryLabelTextFontWeight": "SummaryLabelTextFontWeight", + "SummaryRowMarginBottom": "SummaryRowMarginBottom", + "SummaryRowMarginLeft": "SummaryRowMarginLeft", + "SummaryRowMarginRight": "SummaryRowMarginRight", + "SummaryRowMarginTop": "SummaryRowMarginTop", + "SummaryTitleText": "SummaryTitleText", + "SummaryTitleTextColor": "SummaryTitleTextColor", + "SummaryTitleTextFontFamily": "SummaryTitleTextFontFamily", + "SummaryTitleTextFontSize": "SummaryTitleTextFontSize", + "SummaryTitleTextFontStyle": "SummaryTitleTextFontStyle", + "SummaryTitleTextFontWeight": "SummaryTitleTextFontWeight", + "SummaryTitleTextMarginBottom": "SummaryTitleTextMarginBottom", + "SummaryTitleTextMarginLeft": "SummaryTitleTextMarginLeft", + "SummaryTitleTextMarginRight": "SummaryTitleTextMarginRight", + "SummaryTitleTextMarginTop": "SummaryTitleTextMarginTop", + "SummaryType": "SummaryType", + "SummaryUnitsText": "SummaryUnitsText", + "SummaryUnitsTextColor": "SummaryUnitsTextColor", + "SummaryUnitsTextFontFamily": "SummaryUnitsTextFontFamily", + "SummaryUnitsTextFontSize": "SummaryUnitsTextFontSize", + "SummaryUnitsTextFontStyle": "SummaryUnitsTextFontStyle", + "SummaryUnitsTextFontWeight": "SummaryUnitsTextFontWeight", + "SummaryValueTextColor": "SummaryValueTextColor", + "SummaryValueTextFontFamily": "SummaryValueTextFontFamily", + "SummaryValueTextFontSize": "SummaryValueTextFontSize", + "SummaryValueTextFontStyle": "SummaryValueTextFontStyle", + "SummaryValueTextFontWeight": "SummaryValueTextFontWeight", + "TargetAxisRef": "TargetAxisRef", + "TitleTextColor": "TitleTextColor", + "TitleTextFontFamily": "TitleTextFontFamily", + "TitleTextFontSize": "TitleTextFontSize", + "TitleTextFontStyle": "TitleTextFontStyle", + "TitleTextFontWeight": "TitleTextFontWeight", + "TitleTextMarginBottom": "TitleTextMarginBottom", + "TitleTextMarginLeft": "TitleTextMarginLeft", + "TitleTextMarginRight": "TitleTextMarginRight", + "TitleTextMarginTop": "TitleTextMarginTop", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "Type": "Type", + "UnitsDisplayMode": "UnitsDisplayMode", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "UnitsTextFontFamily": "UnitsTextFontFamily", + "UnitsTextFontSize": "UnitsTextFontSize", + "UnitsTextFontStyle": "UnitsTextFontStyle", + "UnitsTextFontWeight": "UnitsTextFontWeight", + "UnitsTextMarginBottom": "UnitsTextMarginBottom", + "UnitsTextMarginLeft": "UnitsTextMarginLeft", + "UnitsTextMarginRight": "UnitsTextMarginRight", + "UnitsTextMarginTop": "UnitsTextMarginTop", + "UseInterpolation": "UseInterpolation", + "ValueFormatAbbreviation": "ValueFormatAbbreviation", + "ValueFormatCulture": "ValueFormatCulture", + "ValueFormatMaxFractions": "ValueFormatMaxFractions", + "ValueFormatMinFractions": "ValueFormatMinFractions", + "ValueFormatMode": "ValueFormatMode", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "ValueFormatString": "ValueFormatString", + "ValueFormatUseGrouping": "ValueFormatUseGrouping", + "ValueRowMarginBottom": "ValueRowMarginBottom", + "ValueRowMarginLeft": "ValueRowMarginLeft", + "ValueRowMarginRight": "ValueRowMarginRight", + "ValueRowMarginTop": "ValueRowMarginTop", + "ValueRowVisible": "ValueRowVisible", + "ValueTextColor": "ValueTextColor", + "ValueTextFontFamily": "ValueTextFontFamily", + "ValueTextFontSize": "ValueTextFontSize", + "ValueTextFontStyle": "ValueTextFontStyle", + "ValueTextFontWeight": "ValueTextFontWeight", + "ValueTextMarginBottom": "ValueTextMarginBottom", + "ValueTextMarginLeft": "ValueTextMarginLeft", + "ValueTextMarginRight": "ValueTextMarginRight", + "ValueTextMarginTop": "ValueTextMarginTop", + "ValueTextUseSeriesColors": "ValueTextUseSeriesColors", + "ValueTextWhenMissingData": "ValueTextWhenMissingData" + } + } + ], + "DataToolTipLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataToolTipLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataToolTipLayerDescriptionMetadata()": "DataToolTipLayerDescriptionMetadata()", + "DataToolTipLayerDescriptionMetadata": "DataToolTipLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataToolTipLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DataToolTipLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataToolTipLayerDescriptionModule()": "DataToolTipLayerDescriptionModule()", + "DataToolTipLayerDescriptionModule": "DataToolTipLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataToolTipLayerGroupingMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DataToolTipLayerGroupingMode", + "k": "enum", + "s": "enums" + } + ], + "DataToolTipLayerPosition": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/DataToolTipLayerPosition", + "k": "enum", + "s": "enums" + } + ], + "DatePartDeltasDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DatePartDeltasDescription", + "k": "class", + "s": "classes", + "m": { + "DatePartDeltasDescription()": "DatePartDeltasDescription()", + "DatePartDeltasDescription": "DatePartDeltasDescription()", + "Date": "Date", + "Hours": "Hours", + "Minutes": "Minutes", + "Month": "Month", + "Seconds": "Seconds", + "Type": "Type", + "Year": "Year" + } + } + ], + "DatePartDeltasDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DatePartDeltasDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DatePartDeltasDescriptionMetadata()": "DatePartDeltasDescriptionMetadata()", + "DatePartDeltasDescriptionMetadata": "DatePartDeltasDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DatePickerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DatePickerDescription", + "k": "class", + "s": "classes", + "m": { + "DatePickerDescription()": "DatePickerDescription()", + "DatePickerDescription": "DatePickerDescription()", + "AllowTextInput": "AllowTextInput", + "BaseTheme": "BaseTheme", + "ChangingRef": "ChangingRef", + "DateFormat": "DateFormat", + "Density": "Density", + "FirstDayOfWeek": "FirstDayOfWeek", + "FirstWeekOfYear": "FirstWeekOfYear", + "FormatString": "FormatString", + "GotFocusRef": "GotFocusRef", + "IconColor": "IconColor", + "IsDisabled": "IsDisabled", + "IsFixed": "IsFixed", + "KeyDownRef": "KeyDownRef", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelTextColor": "LabelTextColor", + "LostFocusRef": "LostFocusRef", + "MaxDate": "MaxDate", + "MinDate": "MinDate", + "OpenAsChild": "OpenAsChild", + "OpenOnFocus": "OpenOnFocus", + "Placeholder": "Placeholder", + "SelectedValueChangedRef": "SelectedValueChangedRef", + "ShowClearButton": "ShowClearButton", + "ShowTodayButton": "ShowTodayButton", + "ShowWeekNumbers": "ShowWeekNumbers", + "TextColor": "TextColor", + "TextFontFamily": "TextFontFamily", + "TextFontSize": "TextFontSize", + "TextFontStyle": "TextFontStyle", + "TextFontWeight": "TextFontWeight", + "Today": "Today", + "Type": "Type", + "UseTopLayer": "UseTopLayer", + "Value": "Value", + "ValueChangeRef": "ValueChangeRef" + } + } + ], + "DatePickerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DatePickerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DatePickerDescriptionMetadata()": "DatePickerDescriptionMetadata()", + "DatePickerDescriptionMetadata": "DatePickerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DatePickerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DatePickerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DatePickerDescriptionModule()": "DatePickerDescriptionModule()", + "DatePickerDescriptionModule": "DatePickerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateRangeDescriptorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateRangeDescriptorDescription", + "k": "class", + "s": "classes", + "m": { + "DateRangeDescriptorDescription()": "DateRangeDescriptorDescription()", + "DateRangeDescriptorDescription": "DateRangeDescriptorDescription()", + "DateRange": "DateRange", + "RangeType": "RangeType", + "Type": "Type" + } + } + ], + "DateRangeDescriptorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateRangeDescriptorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DateRangeDescriptorDescriptionMetadata()": "DateRangeDescriptorDescriptionMetadata()", + "DateRangeDescriptorDescriptionMetadata": "DateRangeDescriptorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DateTimeCellInfo", + "k": "class", + "s": "classes", + "m": { + "DateTimeCellInfo()": "DateTimeCellInfo()", + "DateTimeCellInfo": "DateTimeCellInfo()", + "DateTimeFormat": "DateTimeFormat", + "DateTimeFormatPropertyName": "DateTimeFormatPropertyName", + "DateTimeValue": "DateTimeValue", + "DateTimeValuePropertyName": "DateTimeValuePropertyName", + "FormatSpecifiers": "FormatSpecifiers", + "FormatSpecifiersPropertyName": "FormatSpecifiersPropertyName", + "FormatStringOverride": "FormatStringOverride", + "FormatStringOverridePropertyName": "FormatStringOverridePropertyName", + "IsOffsetValue": "IsOffsetValue", + "IsOffsetValuePropertyName": "IsOffsetValuePropertyName" + } + } + ], + "DateTimeCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DateTimeCellInfoDescription()": "DateTimeCellInfoDescription()", + "DateTimeCellInfoDescription": "DateTimeCellInfoDescription()", + "DateTimeFormat": "DateTimeFormat", + "DateTimeValue": "DateTimeValue", + "FormatOverrideRef": "FormatOverrideRef", + "FormatSpecifiers": "FormatSpecifiers", + "FormatStringOverride": "FormatStringOverride", + "IsOffsetValue": "IsOffsetValue", + "Type": "Type" + } + } + ], + "DateTimeCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DateTimeCellInfoDescriptionMetadata()": "DateTimeCellInfoDescriptionMetadata()", + "DateTimeCellInfoDescriptionMetadata": "DateTimeCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DateTimeCellModelExport", + "k": "class", + "s": "classes", + "m": { + "DateTimeCellModelExport()": "DateTimeCellModelExport()", + "DateTimeCellModelExport": "DateTimeCellModelExport()", + "DateTimeFormat": "DateTimeFormat", + "DateTimeValue": "DateTimeValue", + "IsOffsetValue": "IsOffsetValue", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "DateTimeColumn": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DateTimeColumn", + "k": "class", + "s": "classes", + "m": { + "DateTimeColumn()": "DateTimeColumn()", + "DateTimeColumn": "DateTimeColumn()", + "DateTimeFormat": "DateTimeFormat", + "DateTimeFormatProperty": "DateTimeFormatProperty", + "EditorFormatString": "EditorFormatString", + "EditorFormatStringProperty": "EditorFormatStringProperty", + "EditorItemsSource": "EditorItemsSource", + "EditorItemsSourceProperty": "EditorItemsSourceProperty", + "EditorTextField": "EditorTextField", + "EditorTextFieldProperty": "EditorTextFieldProperty", + "EditorType": "EditorType", + "EditorTypeProperty": "EditorTypeProperty", + "EditorValueField": "EditorValueField", + "EditorValueFieldProperty": "EditorValueFieldProperty", + "FormatSpecifiers": "FormatSpecifiers", + "FormatSpecifiersProperty": "FormatSpecifiersProperty", + "FormatString": "FormatString", + "FormatStringProperty": "FormatStringProperty", + "ShowTodayButton": "ShowTodayButton", + "ShowTodayButtonProperty": "ShowTodayButtonProperty" + } + } + ], + "DateTimeColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeColumnDescription", + "k": "class", + "s": "classes", + "m": { + "DateTimeColumnDescription()": "DateTimeColumnDescription()", + "DateTimeColumnDescription": "DateTimeColumnDescription()", + "DataSource": "DataSource", + "DateTimeFormat": "DateTimeFormat", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorFormatString": "EditorFormatString", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "FormatOverrideRef": "FormatOverrideRef", + "FormatSpecifiers": "FormatSpecifiers", + "FormatString": "FormatString", + "GenericDataSource": "GenericDataSource", + "ShowTodayButton": "ShowTodayButton", + "Type": "Type" + } + } + ], + "DateTimeColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DateTimeColumnDescriptionMetadata()": "DateTimeColumnDescriptionMetadata()", + "DateTimeColumnDescriptionMetadata": "DateTimeColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeColumnDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DateTimeColumnDescriptionModule()": "DateTimeColumnDescriptionModule()", + "DateTimeColumnDescriptionModule": "DateTimeColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeFormats": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/DateTimeFormats", + "k": "enum", + "s": "enums" + } + ], + "DateTimeFormatSpecifier": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeFormatSpecifier", + "k": "class", + "s": "classes", + "m": { + "DateTimeFormatSpecifier()": "DateTimeFormatSpecifier()", + "DateTimeFormatSpecifier": "DateTimeFormatSpecifier()", + "DateStyle": "DateStyle", + "Locale": "Locale", + "TimeStyle": "TimeStyle" + } + } + ], + "DateTimeFormatSpecifierDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeFormatSpecifierDescription", + "k": "class", + "s": "classes", + "m": { + "DateTimeFormatSpecifierDescription()": "DateTimeFormatSpecifierDescription()", + "DateTimeFormatSpecifierDescription": "DateTimeFormatSpecifierDescription()", + "Calendar": "Calendar", + "DateStyle": "DateStyle", + "Day": "Day", + "DayPeriod": "DayPeriod", + "Era": "Era", + "FormatMatcher": "FormatMatcher", + "FractionalSecondDigits": "FractionalSecondDigits", + "Hour": "Hour", + "Hour12": "Hour12", + "HourCycle": "HourCycle", + "Locale": "Locale", + "LocaleMatcher": "LocaleMatcher", + "Minute": "Minute", + "Month": "Month", + "NumberingSystem": "NumberingSystem", + "Second": "Second", + "TimeStyle": "TimeStyle", + "TimeZone": "TimeZone", + "TimeZoneName": "TimeZoneName", + "Type": "Type", + "WeekDay": "WeekDay", + "Year": "Year" + } + } + ], + "DateTimeFormatSpecifierDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeFormatSpecifierDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DateTimeFormatSpecifierDescriptionMetadata()": "DateTimeFormatSpecifierDescriptionMetadata()", + "DateTimeFormatSpecifierDescriptionMetadata": "DateTimeFormatSpecifierDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeFormatSpecifierDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DateTimeFormatSpecifierDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DateTimeFormatSpecifierDescriptionModule()": "DateTimeFormatSpecifierDescriptionModule()", + "DateTimeFormatSpecifierDescriptionModule": "DateTimeFormatSpecifierDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeRange": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DateTimeRange", + "k": "class", + "s": "classes", + "m": { + "DateTimeRange(DateTime, DateTime)": "DateTimeRange(DateTime, DateTime)", + "DateTimeRange": "DateTimeRange(DateTime, DateTime)", + "Contains(DateTime)": "Contains(DateTime)", + "Contains": "Contains(DateTime)", + "End": "End", + "IntersectsWith(DateTimeRange, bool)": "IntersectsWith(DateTimeRange, bool)", + "IntersectsWith": "IntersectsWith(DateTimeRange, bool)", + "IntersectsWith(DateTime, DateTime, bool)": "IntersectsWith(DateTime, DateTime, bool)", + "Start": "Start", + "ToString()": "ToString()", + "ToString": "ToString()" + } + } + ], + "DecimalConstantAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DecimalConstantAttribute", + "k": "class", + "s": "classes", + "m": { + "DecimalConstantAttribute(byte, byte, int, int, int)": "DecimalConstantAttribute(byte, byte, int, int, int)", + "DecimalConstantAttribute": "DecimalConstantAttribute(byte, byte, int, int, int)", + "DecimalConstantAttribute(byte, byte, uint, uint, uint)": "DecimalConstantAttribute(byte, byte, uint, uint, uint)", + "Value": "Value" + } + } + ], + "DefaultDataSourceSchema": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DefaultDataSourceSchema", + "k": "class", + "s": "classes", + "m": { + "DefaultDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[], string[][], IDataSourceSchema[])": "DefaultDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[], string[][], IDataSourceSchema[])", + "DefaultDataSourceSchema": "DefaultDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[], string[][], IDataSourceSchema[])", + "PrimaryKey": "PrimaryKey", + "PropertyDataIntents": "PropertyDataIntents", + "PropertyNames": "PropertyNames", + "PropertyTypes": "PropertyTypes", + "SubSchemas": "SubSchemas" + } + } + ], + "DefaultODataLiteralEmitter": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DefaultODataLiteralEmitter", + "k": "class", + "s": "classes", + "m": { + "DefaultODataLiteralEmitter()": "DefaultODataLiteralEmitter()", + "DefaultODataLiteralEmitter": "DefaultODataLiteralEmitter()", + "EmitLiteral(object, bool)": "EmitLiteral(object, bool)", + "EmitLiteral": "EmitLiteral(object, bool)" + } + } + ], + "DefaultOverloadOnNullCollisionAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DefaultOverloadOnNullCollisionAttribute", + "k": "class", + "s": "classes", + "m": { + "DefaultOverloadOnNullCollisionAttribute()": "DefaultOverloadOnNullCollisionAttribute()", + "DefaultOverloadOnNullCollisionAttribute": "DefaultOverloadOnNullCollisionAttribute()" + } + } + ], + "DefaultSectionInformation": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DefaultSectionInformation", + "k": "class", + "s": "classes", + "m": { + "DefaultSectionInformation(int, int, string[], object[], ISummaryResult[])": "DefaultSectionInformation(int, int, string[], object[], ISummaryResult[])", + "DefaultSectionInformation": "DefaultSectionInformation(int, int, string[], object[], ISummaryResult[])", + "EndIndex": "EndIndex", + "GroupKeyProperties": "GroupKeyProperties", + "GroupKeyValues": "GroupKeyValues", + "StartIndex": "StartIndex", + "SummaryResults": "SummaryResults" + } + } + ], + "DefaultSummaryResult": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DefaultSummaryResult", + "k": "class", + "s": "classes", + "m": { + "DefaultSummaryResult(string, DataSourceSummaryOperand, object)": "DefaultSummaryResult(string, DataSourceSummaryOperand, object)", + "DefaultSummaryResult": "DefaultSummaryResult(string, DataSourceSummaryOperand, object)", + "CreateWithDisplay(string, DataSourceSummaryOperand, object, bool)": "CreateWithDisplay(string, DataSourceSummaryOperand, object, bool)", + "CreateWithDisplay": "CreateWithDisplay(string, DataSourceSummaryOperand, object, bool)", + "GroupKey": "GroupKey", + "Operand": "Operand", + "PropertyName": "PropertyName", + "ShouldDisplay": "ShouldDisplay", + "SummaryIndex": "SummaryIndex", + "Value": "Value" + } + } + ], + "DefinitionBase": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/DefinitionBase", + "k": "class", + "s": "classes", + "m": { + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderBottomWidthProperty": "ActivationBorderBottomWidthProperty", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderLeftWidthProperty": "ActivationBorderLeftWidthProperty", + "ActivationBorderProperty": "ActivationBorderProperty", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderRightWidthProperty": "ActivationBorderRightWidthProperty", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationBorderTopWidthProperty": "ActivationBorderTopWidthProperty", + "ActualActivationBorder": "ActualActivationBorder", + "ActualActivationBorderProperty": "ActualActivationBorderProperty", + "ActualBackground": "ActualBackground", + "ActualBackgroundProperty": "ActualBackgroundProperty", + "ActualBarBackground": "ActualBarBackground", + "ActualBarBackgroundProperty": "ActualBarBackgroundProperty", + "ActualBarCornerRadius": "ActualBarCornerRadius", + "ActualBarCornerRadiusProperty": "ActualBarCornerRadiusProperty", + "ActualBarOutline": "ActualBarOutline", + "ActualBarOutlineProperty": "ActualBarOutlineProperty", + "ActualBarStrokeThickness": "ActualBarStrokeThickness", + "ActualBarStrokeThicknessProperty": "ActualBarStrokeThicknessProperty", + "ActualBorder": "ActualBorder", + "ActualBorderProperty": "ActualBorderProperty", + "ActualErrorBorder": "ActualErrorBorder", + "ActualErrorBorderProperty": "ActualErrorBorderProperty", + "ActualHorizontalAlignment": "ActualHorizontalAlignment", + "ActualHorizontalAlignmentProperty": "ActualHorizontalAlignmentProperty", + "ActualLastStickyRowBackground": "ActualLastStickyRowBackground", + "ActualLastStickyRowBackgroundProperty": "ActualLastStickyRowBackgroundProperty", + "ActualLineBreakMode": "ActualLineBreakMode", + "ActualLineBreakModeProperty": "ActualLineBreakModeProperty", + "ActualPinnedRowBackground": "ActualPinnedRowBackground", + "ActualPinnedRowBackgroundProperty": "ActualPinnedRowBackgroundProperty", + "ActualPinnedRowOpacity": "ActualPinnedRowOpacity", + "ActualPinnedRowOpacityProperty": "ActualPinnedRowOpacityProperty", + "ActualStickyRowBackground": "ActualStickyRowBackground", + "ActualStickyRowBackgroundProperty": "ActualStickyRowBackgroundProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualVerticalAlignment": "ActualVerticalAlignment", + "ActualVerticalAlignmentProperty": "ActualVerticalAlignmentProperty", + "Background": "Background", + "BackgroundProperty": "BackgroundProperty", + "BarBackground": "BarBackground", + "BarBackgroundProperty": "BarBackgroundProperty", + "BarCornerRadius": "BarCornerRadius", + "BarCornerRadiusProperty": "BarCornerRadiusProperty", + "BarOutline": "BarOutline", + "BarOutlineProperty": "BarOutlineProperty", + "BarStrokeThickness": "BarStrokeThickness", + "BarStrokeThicknessProperty": "BarStrokeThicknessProperty", + "Border": "Border", + "BorderBottomWidth": "BorderBottomWidth", + "BorderBottomWidthProperty": "BorderBottomWidthProperty", + "BorderLeftWidth": "BorderLeftWidth", + "BorderLeftWidthProperty": "BorderLeftWidthProperty", + "BorderProperty": "BorderProperty", + "BorderRightWidth": "BorderRightWidth", + "BorderRightWidthProperty": "BorderRightWidthProperty", + "BorderTopWidth": "BorderTopWidth", + "BorderTopWidthProperty": "BorderTopWidthProperty", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "ConditionalStyles": "ConditionalStyles", + "ContentOpacity": "ContentOpacity", + "ContentOpacityProperty": "ContentOpacityProperty", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "ErrorBorder": "ErrorBorder", + "ErrorBorderBottomWidth": "ErrorBorderBottomWidth", + "ErrorBorderBottomWidthProperty": "ErrorBorderBottomWidthProperty", + "ErrorBorderLeftWidth": "ErrorBorderLeftWidth", + "ErrorBorderLeftWidthProperty": "ErrorBorderLeftWidthProperty", + "ErrorBorderProperty": "ErrorBorderProperty", + "ErrorBorderRightWidth": "ErrorBorderRightWidth", + "ErrorBorderRightWidthProperty": "ErrorBorderRightWidthProperty", + "ErrorBorderTopWidth": "ErrorBorderTopWidth", + "ErrorBorderTopWidthProperty": "ErrorBorderTopWidthProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetNamedValue(string)": "GetNamedValue(string)", + "GetNamedValue": "GetNamedValue(string)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "HasNamedValue(string)": "HasNamedValue(string)", + "HasNamedValue": "HasNamedValue(string)", + "HasNamedValues()": "HasNamedValues()", + "HasNamedValues": "HasNamedValues()", + "HorizontalAlignment": "HorizontalAlignment", + "HorizontalAlignmentProperty": "HorizontalAlignmentProperty", + "IsBarRequired": "IsBarRequired", + "IsBarRequiredProperty": "IsBarRequiredProperty", + "IsBarSupported": "IsBarSupported", + "IsBarSupportedProperty": "IsBarSupportedProperty", + "IsStoreInitialized": "IsStoreInitialized", + "IsStyleTransitioningOut(GridConditionalStyle)": "IsStyleTransitioningOut(GridConditionalStyle)", + "IsStyleTransitioningOut": "IsStyleTransitioningOut(GridConditionalStyle)", + "LastStickyRowBackground": "LastStickyRowBackground", + "LastStickyRowBackgroundProperty": "LastStickyRowBackgroundProperty", + "LineBreakMode": "LineBreakMode", + "LineBreakModeProperty": "LineBreakModeProperty", + "OnCellStyleKeyRequested(CellStyleRequestedEventArgs)": "OnCellStyleKeyRequested(CellStyleRequestedEventArgs)", + "OnCellStyleKeyRequested": "OnCellStyleKeyRequested(CellStyleRequestedEventArgs)", + "OnDataBinding(DataBindingEventArgs)": "OnDataBinding(DataBindingEventArgs)", + "OnDataBinding": "OnDataBinding(DataBindingEventArgs)", + "OnDataBound(DataBindingEventArgs)": "OnDataBound(DataBindingEventArgs)", + "OnDataBound": "OnDataBound(DataBindingEventArgs)", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowBackgroundProperty": "PinnedRowBackgroundProperty", + "PinnedRowOpacity": "PinnedRowOpacity", + "PinnedRowOpacityProperty": "PinnedRowOpacityProperty", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RemoveNamedValue(string)": "RemoveNamedValue(string)", + "RemoveNamedValue": "RemoveNamedValue(string)", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetNamedValue(string, CellPropertyAnimationType, object)": "SetNamedValue(string, CellPropertyAnimationType, object)", + "SetNamedValue": "SetNamedValue(string, CellPropertyAnimationType, object)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "StickyRowBackground": "StickyRowBackground", + "StickyRowBackgroundProperty": "StickyRowBackgroundProperty", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ToString()": "ToString()", + "ToString": "ToString()", + "TransitionStyleIn(GridConditionalStyle)": "TransitionStyleIn(GridConditionalStyle)", + "TransitionStyleIn": "TransitionStyleIn(GridConditionalStyle)", + "TransitionStyleOut(GridConditionalStyle)": "TransitionStyleOut(GridConditionalStyle)", + "TransitionStyleOut": "TransitionStyleOut(GridConditionalStyle)", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "VerticalAlignment": "VerticalAlignment", + "VerticalAlignmentProperty": "VerticalAlignmentProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DefinitionBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DefinitionBaseDescription", + "k": "class", + "s": "classes", + "m": { + "DefinitionBaseDescription()": "DefinitionBaseDescription()", + "DefinitionBaseDescription": "DefinitionBaseDescription()", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActualActivationBorder": "ActualActivationBorder", + "ActualBackground": "ActualBackground", + "ActualBarBackground": "ActualBarBackground", + "ActualBarCornerRadius": "ActualBarCornerRadius", + "ActualBarOutline": "ActualBarOutline", + "ActualBarStrokeThickness": "ActualBarStrokeThickness", + "ActualBorder": "ActualBorder", + "ActualErrorBorder": "ActualErrorBorder", + "ActualLastStickyRowBackground": "ActualLastStickyRowBackground", + "ActualLineBreakMode": "ActualLineBreakMode", + "ActualPinnedRowBackground": "ActualPinnedRowBackground", + "ActualPinnedRowOpacity": "ActualPinnedRowOpacity", + "ActualStickyRowBackground": "ActualStickyRowBackground", + "ActualTextColor": "ActualTextColor", + "Background": "Background", + "BarBackground": "BarBackground", + "BarCornerRadius": "BarCornerRadius", + "BarOutline": "BarOutline", + "BarStrokeThickness": "BarStrokeThickness", + "Border": "Border", + "BorderBottomWidth": "BorderBottomWidth", + "BorderLeftWidth": "BorderLeftWidth", + "BorderRightWidth": "BorderRightWidth", + "BorderTopWidth": "BorderTopWidth", + "CellStyleKeyRequestedRef": "CellStyleKeyRequestedRef", + "ConditionalStyles": "ConditionalStyles", + "ContentOpacity": "ContentOpacity", + "DataBindingRef": "DataBindingRef", + "DataBoundRef": "DataBoundRef", + "ErrorBorder": "ErrorBorder", + "ErrorBorderBottomWidth": "ErrorBorderBottomWidth", + "ErrorBorderLeftWidth": "ErrorBorderLeftWidth", + "ErrorBorderRightWidth": "ErrorBorderRightWidth", + "ErrorBorderTopWidth": "ErrorBorderTopWidth", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HorizontalAlignment": "HorizontalAlignment", + "IsBarSupported": "IsBarSupported", + "LastStickyRowBackground": "LastStickyRowBackground", + "LineBreakMode": "LineBreakMode", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowOpacity": "PinnedRowOpacity", + "StickyRowBackground": "StickyRowBackground", + "TextColor": "TextColor", + "Type": "Type", + "VerticalAlignment": "VerticalAlignment" + } + } + ], + "DefinitionBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DefinitionBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DefinitionBaseDescriptionMetadata()": "DefinitionBaseDescriptionMetadata()", + "DefinitionBaseDescriptionMetadata": "DefinitionBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DelayManager": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DelayManager", + "k": "class", + "s": "classes", + "m": { + "DelayManager(IExecutionContext)": "DelayManager(IExecutionContext)", + "DelayManager": "DelayManager(IExecutionContext)", + "Cancel(int)": "Cancel(int)", + "Cancel": "Cancel(int)", + "Start(ExecutionContextExecuteCallback, int)": "Start(ExecutionContextExecuteCallback, int)", + "Start": "Start(ExecutionContextExecuteCallback, int)" + } + } + ], + "Description": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Description", + "k": "class", + "s": "classes", + "m": { + "Description()": "Description()", + "Description": "Description()", + "ClearIsDescriptionModified()": "ClearIsDescriptionModified()", + "ClearIsDescriptionModified": "ClearIsDescriptionModified()", + "IsDescriptionModified()": "IsDescriptionModified()", + "IsDescriptionModified": "IsDescriptionModified()", + "IsDirty(string)": "IsDirty(string)", + "IsDirty": "IsDirty(string)", + "MarkDirty(string)": "MarkDirty(string)", + "MarkDirty": "MarkDirty(string)", + "Name": "Name" + } + } + ], + "DescriptionJsonValidator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionJsonValidator", + "k": "class", + "s": "classes", + "m": { + "DescriptionJsonValidator()": "DescriptionJsonValidator()", + "DescriptionJsonValidator": "DescriptionJsonValidator()", + "FromJson(string)": "FromJson(string)", + "FromJson": "FromJson(string)", + "GetContainingModules(string)": "GetContainingModules(string)", + "GetContainingModules": "GetContainingModules(string)", + "ToJson()": "ToJson()", + "ToJson": "ToJson()", + "Validate(string)": "Validate(string)", + "Validate": "Validate(string)" + } + } + ], + "DescriptionPath": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionPath", + "k": "class", + "s": "classes", + "m": { + "DescriptionPath()": "DescriptionPath()", + "DescriptionPath": "DescriptionPath()", + "Operator": "Operator", + "RootSegments": "RootSegments" + } + } + ], + "DescriptionPathEvaluator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionPathEvaluator", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathEvaluator()": "DescriptionPathEvaluator()", + "DescriptionPathEvaluator": "DescriptionPathEvaluator()", + "Evaluate(TypeDescriptionContext, Description, DescriptionPath)": "Evaluate(TypeDescriptionContext, Description, DescriptionPath)", + "Evaluate": "Evaluate(TypeDescriptionContext, Description, DescriptionPath)" + } + } + ], + "DescriptionPathEvaluatorResult": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionPathEvaluatorResult", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathEvaluatorResult()": "DescriptionPathEvaluatorResult()", + "DescriptionPathEvaluatorResult": "DescriptionPathEvaluatorResult()", + "Result": "Result" + } + } + ], + "DescriptionPathIndexer": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionPathIndexer", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathIndexer()": "DescriptionPathIndexer()", + "DescriptionPathIndexer": "DescriptionPathIndexer()", + "DescriptionType": "DescriptionType", + "Index": "Index", + "IsAny": "IsAny" + } + } + ], + "DescriptionPathOperatorType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/DescriptionPathOperatorType", + "k": "enum", + "s": "enums" + } + ], + "DescriptionPathParser": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionPathParser", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathParser()": "DescriptionPathParser()", + "DescriptionPathParser": "DescriptionPathParser()", + "Parse(string)": "Parse(string)", + "Parse": "Parse(string)" + } + } + ], + "DescriptionPathSegment": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionPathSegment", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathSegment()": "DescriptionPathSegment()", + "DescriptionPathSegment": "DescriptionPathSegment()", + "ElementName": "ElementName", + "Indexers": "Indexers" + } + } + ], + "DescriptionRefTargetInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionRefTargetInfo", + "k": "class", + "s": "classes", + "m": { + "DescriptionRefTargetInfo()": "DescriptionRefTargetInfo()", + "DescriptionRefTargetInfo": "DescriptionRefTargetInfo()", + "Container": "Container", + "PropertyName": "PropertyName", + "Target": "Target" + } + } + ], + "DescriptionResult": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionResult", + "k": "class", + "s": "classes", + "m": { + "DescriptionResult()": "DescriptionResult()", + "DescriptionResult": "DescriptionResult()", + "Result": "Result", + "Warnings": "Warnings" + } + } + ], + "DescriptionSerializer": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionSerializer", + "k": "class", + "s": "classes", + "m": { + "DescriptionSerializer()": "DescriptionSerializer()", + "DescriptionSerializer": "DescriptionSerializer()", + "Deserialize(TypeDescriptionContext, string)": "Deserialize(TypeDescriptionContext, string)", + "Deserialize": "Deserialize(TypeDescriptionContext, string)", + "IsModified(TypeDescriptionContext, Description, bool)": "IsModified(TypeDescriptionContext, Description, bool)", + "IsModified": "IsModified(TypeDescriptionContext, Description, bool)", + "Serialize(TypeDescriptionContext, Description)": "Serialize(TypeDescriptionContext, Description)", + "Serialize": "Serialize(TypeDescriptionContext, Description)", + "ThrowOnMissingDescription": "ThrowOnMissingDescription" + } + } + ], + "DescriptionSerializerBuilder": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DescriptionSerializerBuilder", + "k": "class", + "s": "classes", + "m": { + "DescriptionSerializerBuilder()": "DescriptionSerializerBuilder()", + "DescriptionSerializerBuilder": "DescriptionSerializerBuilder()", + "Append(string)": "Append(string)", + "Append": "Append(string)", + "AppendLine(string)": "AppendLine(string)", + "AppendLine": "AppendLine(string)", + "DecreaseTabLevel()": "DecreaseTabLevel()", + "DecreaseTabLevel": "DecreaseTabLevel()", + "IncreaseTabLevel()": "IncreaseTabLevel()", + "IncreaseTabLevel": "IncreaseTabLevel()", + "ToString()": "ToString()", + "ToString": "ToString()" + } + } + ], + "DetrendedPriceOscillatorIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DetrendedPriceOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "DetrendedPriceOscillatorIndicator()": "DetrendedPriceOscillatorIndicator()", + "DetrendedPriceOscillatorIndicator": "DetrendedPriceOscillatorIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "DetrendedPriceOscillatorIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DetrendedPriceOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "DetrendedPriceOscillatorIndicatorDescription()": "DetrendedPriceOscillatorIndicatorDescription()", + "DetrendedPriceOscillatorIndicatorDescription": "DetrendedPriceOscillatorIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "DetrendedPriceOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DetrendedPriceOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DetrendedPriceOscillatorIndicatorDescriptionMetadata()": "DetrendedPriceOscillatorIndicatorDescriptionMetadata()", + "DetrendedPriceOscillatorIndicatorDescriptionMetadata": "DetrendedPriceOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DetrendedPriceOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DetrendedPriceOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DetrendedPriceOscillatorIndicatorDescriptionModule()": "DetrendedPriceOscillatorIndicatorDescriptionModule()", + "DetrendedPriceOscillatorIndicatorDescriptionModule": "DetrendedPriceOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DeviceInfo": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DeviceInfo", + "k": "class", + "s": "classes", + "m": { + "DeviceInfo()": "DeviceInfo()", + "DeviceInfo": "DeviceInfo()", + "PlatformType": "PlatformType" + } + } + ], + "DispatcherUtil": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DispatcherUtil", + "k": "class", + "s": "classes", + "m": { + "QueueSingleInvoke(Action)": "QueueSingleInvoke(Action)", + "QueueSingleInvoke": "QueueSingleInvoke(Action)" + } + } + ], + "DomainChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DomainChart", + "k": "class", + "s": "classes", + "m": { + "ActualBrushes": "ActualBrushes", + "ActualBrushesProperty": "ActualBrushesProperty", + "ActualHighlightedItemsSource": "ActualHighlightedItemsSource", + "ActualHighlightedItemsSourceProperty": "ActualHighlightedItemsSourceProperty", + "ActualItemsSource": "ActualItemsSource", + "ActualItemsSourceProperty": "ActualItemsSourceProperty", + "ActualOutlines": "ActualOutlines", + "ActualOutlinesProperty": "ActualOutlinesProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AlignsGridLinesToPixels": "AlignsGridLinesToPixels", + "AlignsGridLinesToPixelsProperty": "AlignsGridLinesToPixelsProperty", + "AnimateSeriesWhenAxisRangeChanges": "AnimateSeriesWhenAxisRangeChanges", + "AnimateSeriesWhenAxisRangeChangesProperty": "AnimateSeriesWhenAxisRangeChangesProperty", + "AreaFillOpacity": "AreaFillOpacity", + "AreaFillOpacityProperty": "AreaFillOpacityProperty", + "AutoCalloutsVisible": "AutoCalloutsVisible", + "AutoCalloutsVisibleProperty": "AutoCalloutsVisibleProperty", + "BottomMargin": "BottomMargin", + "BottomMarginProperty": "BottomMarginProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "CalloutCollisionMode": "CalloutCollisionMode", + "CalloutCollisionModeProperty": "CalloutCollisionModeProperty", + "CalloutStyleUpdatingEventEnabled": "CalloutStyleUpdatingEventEnabled", + "CalloutStyleUpdatingEventEnabledProperty": "CalloutStyleUpdatingEventEnabledProperty", + "CalloutsAllowedPositions": "CalloutsAllowedPositions", + "CalloutsAllowedPositionsProperty": "CalloutsAllowedPositionsProperty", + "CalloutsAutoLabelPrecision": "CalloutsAutoLabelPrecision", + "CalloutsAutoLabelPrecisionProperty": "CalloutsAutoLabelPrecisionProperty", + "CalloutsBackground": "CalloutsBackground", + "CalloutsBackgroundProperty": "CalloutsBackgroundProperty", + "CalloutsContentMemberPath": "CalloutsContentMemberPath", + "CalloutsContentMemberPathProperty": "CalloutsContentMemberPathProperty", + "CalloutsDarkTextColor": "CalloutsDarkTextColor", + "CalloutsDarkTextColorProperty": "CalloutsDarkTextColorProperty", + "CalloutsFontFamily": "CalloutsFontFamily", + "CalloutsFontFamilyProperty": "CalloutsFontFamilyProperty", + "CalloutsFontSize": "CalloutsFontSize", + "CalloutsFontSizeProperty": "CalloutsFontSizeProperty", + "CalloutsFontStyle": "CalloutsFontStyle", + "CalloutsFontStyleProperty": "CalloutsFontStyleProperty", + "CalloutsFontWeight": "CalloutsFontWeight", + "CalloutsFontWeightProperty": "CalloutsFontWeightProperty", + "CalloutsItemsSource": "CalloutsItemsSource", + "CalloutsItemsSourceProperty": "CalloutsItemsSourceProperty", + "CalloutsLabelMemberPath": "CalloutsLabelMemberPath", + "CalloutsLabelMemberPathProperty": "CalloutsLabelMemberPathProperty", + "CalloutsLeaderBrush": "CalloutsLeaderBrush", + "CalloutsLeaderBrushProperty": "CalloutsLeaderBrushProperty", + "CalloutsLightTextColor": "CalloutsLightTextColor", + "CalloutsLightTextColorProperty": "CalloutsLightTextColorProperty", + "CalloutsOutline": "CalloutsOutline", + "CalloutsOutlineProperty": "CalloutsOutlineProperty", + "CalloutsStrokeThickness": "CalloutsStrokeThickness", + "CalloutsStrokeThicknessProperty": "CalloutsStrokeThicknessProperty", + "CalloutsTextColor": "CalloutsTextColor", + "CalloutsTextColorProperty": "CalloutsTextColorProperty", + "CalloutsUseAutoContrastingLabelColors": "CalloutsUseAutoContrastingLabelColors", + "CalloutsUseAutoContrastingLabelColorsProperty": "CalloutsUseAutoContrastingLabelColorsProperty", + "CalloutsUseItemColorForFill": "CalloutsUseItemColorForFill", + "CalloutsUseItemColorForFillProperty": "CalloutsUseItemColorForFillProperty", + "CalloutsUseItemColorForOutline": "CalloutsUseItemColorForOutline", + "CalloutsUseItemColorForOutlineProperty": "CalloutsUseItemColorForOutlineProperty", + "CalloutsVisible": "CalloutsVisible", + "CalloutsVisibleProperty": "CalloutsVisibleProperty", + "CalloutsXMemberPath": "CalloutsXMemberPath", + "CalloutsXMemberPathProperty": "CalloutsXMemberPathProperty", + "CalloutsYMemberPath": "CalloutsYMemberPath", + "CalloutsYMemberPathProperty": "CalloutsYMemberPathProperty", + "CancelAnnotationFlow(string)": "CancelAnnotationFlow(string)", + "CancelAnnotationFlow": "CancelAnnotationFlow(string)", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "ComputedPlotAreaMarginMode": "ComputedPlotAreaMarginMode", + "ComputedPlotAreaMarginModeProperty": "ComputedPlotAreaMarginModeProperty", + "CrosshairsAnnotationEnabled": "CrosshairsAnnotationEnabled", + "CrosshairsAnnotationEnabledProperty": "CrosshairsAnnotationEnabledProperty", + "CrosshairsAnnotationXAxisBackground": "CrosshairsAnnotationXAxisBackground", + "CrosshairsAnnotationXAxisBackgroundProperty": "CrosshairsAnnotationXAxisBackgroundProperty", + "CrosshairsAnnotationXAxisPrecision": "CrosshairsAnnotationXAxisPrecision", + "CrosshairsAnnotationXAxisPrecisionProperty": "CrosshairsAnnotationXAxisPrecisionProperty", + "CrosshairsAnnotationXAxisTextColor": "CrosshairsAnnotationXAxisTextColor", + "CrosshairsAnnotationXAxisTextColorProperty": "CrosshairsAnnotationXAxisTextColorProperty", + "CrosshairsAnnotationYAxisBackground": "CrosshairsAnnotationYAxisBackground", + "CrosshairsAnnotationYAxisBackgroundProperty": "CrosshairsAnnotationYAxisBackgroundProperty", + "CrosshairsAnnotationYAxisPrecision": "CrosshairsAnnotationYAxisPrecision", + "CrosshairsAnnotationYAxisPrecisionProperty": "CrosshairsAnnotationYAxisPrecisionProperty", + "CrosshairsAnnotationYAxisTextColor": "CrosshairsAnnotationYAxisTextColor", + "CrosshairsAnnotationYAxisTextColorProperty": "CrosshairsAnnotationYAxisTextColorProperty", + "CrosshairsDisplayMode": "CrosshairsDisplayMode", + "CrosshairsDisplayModeProperty": "CrosshairsDisplayModeProperty", + "CrosshairsLineHorizontalStroke": "CrosshairsLineHorizontalStroke", + "CrosshairsLineHorizontalStrokeProperty": "CrosshairsLineHorizontalStrokeProperty", + "CrosshairsLineThickness": "CrosshairsLineThickness", + "CrosshairsLineThicknessProperty": "CrosshairsLineThicknessProperty", + "CrosshairsLineVerticalStroke": "CrosshairsLineVerticalStroke", + "CrosshairsLineVerticalStrokeProperty": "CrosshairsLineVerticalStrokeProperty", + "CrosshairsSkipInvalidData": "CrosshairsSkipInvalidData", + "CrosshairsSkipInvalidDataProperty": "CrosshairsSkipInvalidDataProperty", + "CrosshairsSkipZeroValueFragments": "CrosshairsSkipZeroValueFragments", + "CrosshairsSkipZeroValueFragmentsProperty": "CrosshairsSkipZeroValueFragmentsProperty", + "CrosshairsSnapToData": "CrosshairsSnapToData", + "CrosshairsSnapToDataProperty": "CrosshairsSnapToDataProperty", + "DataChartProperty": "DataChartProperty", + "DataToolTipBadgeMarginBottom": "DataToolTipBadgeMarginBottom", + "DataToolTipBadgeMarginBottomProperty": "DataToolTipBadgeMarginBottomProperty", + "DataToolTipBadgeMarginLeft": "DataToolTipBadgeMarginLeft", + "DataToolTipBadgeMarginLeftProperty": "DataToolTipBadgeMarginLeftProperty", + "DataToolTipBadgeMarginRight": "DataToolTipBadgeMarginRight", + "DataToolTipBadgeMarginRightProperty": "DataToolTipBadgeMarginRightProperty", + "DataToolTipBadgeMarginTop": "DataToolTipBadgeMarginTop", + "DataToolTipBadgeMarginTopProperty": "DataToolTipBadgeMarginTopProperty", + "DataToolTipBadgeShape": "DataToolTipBadgeShape", + "DataToolTipBadgeShapeProperty": "DataToolTipBadgeShapeProperty", + "DataToolTipDefaultPositionOffsetX": "DataToolTipDefaultPositionOffsetX", + "DataToolTipDefaultPositionOffsetXProperty": "DataToolTipDefaultPositionOffsetXProperty", + "DataToolTipDefaultPositionOffsetY": "DataToolTipDefaultPositionOffsetY", + "DataToolTipDefaultPositionOffsetYProperty": "DataToolTipDefaultPositionOffsetYProperty", + "DataToolTipExcludedColumns": "DataToolTipExcludedColumns", + "DataToolTipExcludedColumnsProperty": "DataToolTipExcludedColumnsProperty", + "DataToolTipExcludedSeries": "DataToolTipExcludedSeries", + "DataToolTipExcludedSeriesProperty": "DataToolTipExcludedSeriesProperty", + "DataToolTipGroupRowMarginBottom": "DataToolTipGroupRowMarginBottom", + "DataToolTipGroupRowMarginBottomProperty": "DataToolTipGroupRowMarginBottomProperty", + "DataToolTipGroupRowMarginLeft": "DataToolTipGroupRowMarginLeft", + "DataToolTipGroupRowMarginLeftProperty": "DataToolTipGroupRowMarginLeftProperty", + "DataToolTipGroupRowMarginRight": "DataToolTipGroupRowMarginRight", + "DataToolTipGroupRowMarginRightProperty": "DataToolTipGroupRowMarginRightProperty", + "DataToolTipGroupRowMarginTop": "DataToolTipGroupRowMarginTop", + "DataToolTipGroupRowMarginTopProperty": "DataToolTipGroupRowMarginTopProperty", + "DataToolTipGroupRowVisible": "DataToolTipGroupRowVisible", + "DataToolTipGroupRowVisibleProperty": "DataToolTipGroupRowVisibleProperty", + "DataToolTipGroupTextColor": "DataToolTipGroupTextColor", + "DataToolTipGroupTextColorProperty": "DataToolTipGroupTextColorProperty", + "DataToolTipGroupTextFontFamily": "DataToolTipGroupTextFontFamily", + "DataToolTipGroupTextFontFamilyProperty": "DataToolTipGroupTextFontFamilyProperty", + "DataToolTipGroupTextFontSize": "DataToolTipGroupTextFontSize", + "DataToolTipGroupTextFontSizeProperty": "DataToolTipGroupTextFontSizeProperty", + "DataToolTipGroupTextFontStyle": "DataToolTipGroupTextFontStyle", + "DataToolTipGroupTextFontStyleProperty": "DataToolTipGroupTextFontStyleProperty", + "DataToolTipGroupTextFontWeight": "DataToolTipGroupTextFontWeight", + "DataToolTipGroupTextFontWeightProperty": "DataToolTipGroupTextFontWeightProperty", + "DataToolTipGroupTextMarginBottom": "DataToolTipGroupTextMarginBottom", + "DataToolTipGroupTextMarginBottomProperty": "DataToolTipGroupTextMarginBottomProperty", + "DataToolTipGroupTextMarginLeft": "DataToolTipGroupTextMarginLeft", + "DataToolTipGroupTextMarginLeftProperty": "DataToolTipGroupTextMarginLeftProperty", + "DataToolTipGroupTextMarginRight": "DataToolTipGroupTextMarginRight", + "DataToolTipGroupTextMarginRightProperty": "DataToolTipGroupTextMarginRightProperty", + "DataToolTipGroupTextMarginTop": "DataToolTipGroupTextMarginTop", + "DataToolTipGroupTextMarginTopProperty": "DataToolTipGroupTextMarginTopProperty", + "DataToolTipGroupedPositionModeX": "DataToolTipGroupedPositionModeX", + "DataToolTipGroupedPositionModeXProperty": "DataToolTipGroupedPositionModeXProperty", + "DataToolTipGroupedPositionModeY": "DataToolTipGroupedPositionModeY", + "DataToolTipGroupedPositionModeYProperty": "DataToolTipGroupedPositionModeYProperty", + "DataToolTipGroupingMode": "DataToolTipGroupingMode", + "DataToolTipGroupingModeProperty": "DataToolTipGroupingModeProperty", + "DataToolTipHeaderFormatCulture": "DataToolTipHeaderFormatCulture", + "DataToolTipHeaderFormatCultureProperty": "DataToolTipHeaderFormatCultureProperty", + "DataToolTipHeaderFormatDate": "DataToolTipHeaderFormatDate", + "DataToolTipHeaderFormatDateProperty": "DataToolTipHeaderFormatDateProperty", + "DataToolTipHeaderFormatSpecifiers": "DataToolTipHeaderFormatSpecifiers", + "DataToolTipHeaderFormatSpecifiersProperty": "DataToolTipHeaderFormatSpecifiersProperty", + "DataToolTipHeaderFormatString": "DataToolTipHeaderFormatString", + "DataToolTipHeaderFormatStringProperty": "DataToolTipHeaderFormatStringProperty", + "DataToolTipHeaderFormatTime": "DataToolTipHeaderFormatTime", + "DataToolTipHeaderFormatTimeProperty": "DataToolTipHeaderFormatTimeProperty", + "DataToolTipHeaderRowMarginBottom": "DataToolTipHeaderRowMarginBottom", + "DataToolTipHeaderRowMarginBottomProperty": "DataToolTipHeaderRowMarginBottomProperty", + "DataToolTipHeaderRowMarginLeft": "DataToolTipHeaderRowMarginLeft", + "DataToolTipHeaderRowMarginLeftProperty": "DataToolTipHeaderRowMarginLeftProperty", + "DataToolTipHeaderRowMarginRight": "DataToolTipHeaderRowMarginRight", + "DataToolTipHeaderRowMarginRightProperty": "DataToolTipHeaderRowMarginRightProperty", + "DataToolTipHeaderRowMarginTop": "DataToolTipHeaderRowMarginTop", + "DataToolTipHeaderRowMarginTopProperty": "DataToolTipHeaderRowMarginTopProperty", + "DataToolTipHeaderRowVisible": "DataToolTipHeaderRowVisible", + "DataToolTipHeaderRowVisibleProperty": "DataToolTipHeaderRowVisibleProperty", + "DataToolTipHeaderText": "DataToolTipHeaderText", + "DataToolTipHeaderTextColor": "DataToolTipHeaderTextColor", + "DataToolTipHeaderTextColorProperty": "DataToolTipHeaderTextColorProperty", + "DataToolTipHeaderTextFontFamily": "DataToolTipHeaderTextFontFamily", + "DataToolTipHeaderTextFontFamilyProperty": "DataToolTipHeaderTextFontFamilyProperty", + "DataToolTipHeaderTextFontSize": "DataToolTipHeaderTextFontSize", + "DataToolTipHeaderTextFontSizeProperty": "DataToolTipHeaderTextFontSizeProperty", + "DataToolTipHeaderTextFontStyle": "DataToolTipHeaderTextFontStyle", + "DataToolTipHeaderTextFontStyleProperty": "DataToolTipHeaderTextFontStyleProperty", + "DataToolTipHeaderTextFontWeight": "DataToolTipHeaderTextFontWeight", + "DataToolTipHeaderTextFontWeightProperty": "DataToolTipHeaderTextFontWeightProperty", + "DataToolTipHeaderTextMarginBottom": "DataToolTipHeaderTextMarginBottom", + "DataToolTipHeaderTextMarginBottomProperty": "DataToolTipHeaderTextMarginBottomProperty", + "DataToolTipHeaderTextMarginLeft": "DataToolTipHeaderTextMarginLeft", + "DataToolTipHeaderTextMarginLeftProperty": "DataToolTipHeaderTextMarginLeftProperty", + "DataToolTipHeaderTextMarginRight": "DataToolTipHeaderTextMarginRight", + "DataToolTipHeaderTextMarginRightProperty": "DataToolTipHeaderTextMarginRightProperty", + "DataToolTipHeaderTextMarginTop": "DataToolTipHeaderTextMarginTop", + "DataToolTipHeaderTextMarginTopProperty": "DataToolTipHeaderTextMarginTopProperty", + "DataToolTipHeaderTextProperty": "DataToolTipHeaderTextProperty", + "DataToolTipIncludedColumns": "DataToolTipIncludedColumns", + "DataToolTipIncludedColumnsProperty": "DataToolTipIncludedColumnsProperty", + "DataToolTipIncludedSeries": "DataToolTipIncludedSeries", + "DataToolTipIncludedSeriesProperty": "DataToolTipIncludedSeriesProperty", + "DataToolTipLabelDisplayMode": "DataToolTipLabelDisplayMode", + "DataToolTipLabelDisplayModeProperty": "DataToolTipLabelDisplayModeProperty", + "DataToolTipLabelTextColor": "DataToolTipLabelTextColor", + "DataToolTipLabelTextColorProperty": "DataToolTipLabelTextColorProperty", + "DataToolTipLabelTextFontFamily": "DataToolTipLabelTextFontFamily", + "DataToolTipLabelTextFontFamilyProperty": "DataToolTipLabelTextFontFamilyProperty", + "DataToolTipLabelTextFontSize": "DataToolTipLabelTextFontSize", + "DataToolTipLabelTextFontSizeProperty": "DataToolTipLabelTextFontSizeProperty", + "DataToolTipLabelTextFontStyle": "DataToolTipLabelTextFontStyle", + "DataToolTipLabelTextFontStyleProperty": "DataToolTipLabelTextFontStyleProperty", + "DataToolTipLabelTextFontWeight": "DataToolTipLabelTextFontWeight", + "DataToolTipLabelTextFontWeightProperty": "DataToolTipLabelTextFontWeightProperty", + "DataToolTipLabelTextMarginBottom": "DataToolTipLabelTextMarginBottom", + "DataToolTipLabelTextMarginBottomProperty": "DataToolTipLabelTextMarginBottomProperty", + "DataToolTipLabelTextMarginLeft": "DataToolTipLabelTextMarginLeft", + "DataToolTipLabelTextMarginLeftProperty": "DataToolTipLabelTextMarginLeftProperty", + "DataToolTipLabelTextMarginRight": "DataToolTipLabelTextMarginRight", + "DataToolTipLabelTextMarginRightProperty": "DataToolTipLabelTextMarginRightProperty", + "DataToolTipLabelTextMarginTop": "DataToolTipLabelTextMarginTop", + "DataToolTipLabelTextMarginTopProperty": "DataToolTipLabelTextMarginTopProperty", + "DataToolTipPositionOffsetX": "DataToolTipPositionOffsetX", + "DataToolTipPositionOffsetXProperty": "DataToolTipPositionOffsetXProperty", + "DataToolTipPositionOffsetY": "DataToolTipPositionOffsetY", + "DataToolTipPositionOffsetYProperty": "DataToolTipPositionOffsetYProperty", + "DataToolTipShouldUpdateWhenSeriesDataChanges": "DataToolTipShouldUpdateWhenSeriesDataChanges", + "DataToolTipShouldUpdateWhenSeriesDataChangesProperty": "DataToolTipShouldUpdateWhenSeriesDataChangesProperty", + "DataToolTipSummaryLabelText": "DataToolTipSummaryLabelText", + "DataToolTipSummaryLabelTextColor": "DataToolTipSummaryLabelTextColor", + "DataToolTipSummaryLabelTextColorProperty": "DataToolTipSummaryLabelTextColorProperty", + "DataToolTipSummaryLabelTextFontFamily": "DataToolTipSummaryLabelTextFontFamily", + "DataToolTipSummaryLabelTextFontFamilyProperty": "DataToolTipSummaryLabelTextFontFamilyProperty", + "DataToolTipSummaryLabelTextFontSize": "DataToolTipSummaryLabelTextFontSize", + "DataToolTipSummaryLabelTextFontSizeProperty": "DataToolTipSummaryLabelTextFontSizeProperty", + "DataToolTipSummaryLabelTextFontStyle": "DataToolTipSummaryLabelTextFontStyle", + "DataToolTipSummaryLabelTextFontStyleProperty": "DataToolTipSummaryLabelTextFontStyleProperty", + "DataToolTipSummaryLabelTextFontWeight": "DataToolTipSummaryLabelTextFontWeight", + "DataToolTipSummaryLabelTextFontWeightProperty": "DataToolTipSummaryLabelTextFontWeightProperty", + "DataToolTipSummaryLabelTextProperty": "DataToolTipSummaryLabelTextProperty", + "DataToolTipSummaryRowMarginBottom": "DataToolTipSummaryRowMarginBottom", + "DataToolTipSummaryRowMarginBottomProperty": "DataToolTipSummaryRowMarginBottomProperty", + "DataToolTipSummaryRowMarginLeft": "DataToolTipSummaryRowMarginLeft", + "DataToolTipSummaryRowMarginLeftProperty": "DataToolTipSummaryRowMarginLeftProperty", + "DataToolTipSummaryRowMarginRight": "DataToolTipSummaryRowMarginRight", + "DataToolTipSummaryRowMarginRightProperty": "DataToolTipSummaryRowMarginRightProperty", + "DataToolTipSummaryRowMarginTop": "DataToolTipSummaryRowMarginTop", + "DataToolTipSummaryRowMarginTopProperty": "DataToolTipSummaryRowMarginTopProperty", + "DataToolTipSummaryTitleText": "DataToolTipSummaryTitleText", + "DataToolTipSummaryTitleTextColor": "DataToolTipSummaryTitleTextColor", + "DataToolTipSummaryTitleTextColorProperty": "DataToolTipSummaryTitleTextColorProperty", + "DataToolTipSummaryTitleTextFontFamily": "DataToolTipSummaryTitleTextFontFamily", + "DataToolTipSummaryTitleTextFontFamilyProperty": "DataToolTipSummaryTitleTextFontFamilyProperty", + "DataToolTipSummaryTitleTextFontSize": "DataToolTipSummaryTitleTextFontSize", + "DataToolTipSummaryTitleTextFontSizeProperty": "DataToolTipSummaryTitleTextFontSizeProperty", + "DataToolTipSummaryTitleTextFontStyle": "DataToolTipSummaryTitleTextFontStyle", + "DataToolTipSummaryTitleTextFontStyleProperty": "DataToolTipSummaryTitleTextFontStyleProperty", + "DataToolTipSummaryTitleTextFontWeight": "DataToolTipSummaryTitleTextFontWeight", + "DataToolTipSummaryTitleTextFontWeightProperty": "DataToolTipSummaryTitleTextFontWeightProperty", + "DataToolTipSummaryTitleTextMarginBottom": "DataToolTipSummaryTitleTextMarginBottom", + "DataToolTipSummaryTitleTextMarginBottomProperty": "DataToolTipSummaryTitleTextMarginBottomProperty", + "DataToolTipSummaryTitleTextMarginLeft": "DataToolTipSummaryTitleTextMarginLeft", + "DataToolTipSummaryTitleTextMarginLeftProperty": "DataToolTipSummaryTitleTextMarginLeftProperty", + "DataToolTipSummaryTitleTextMarginRight": "DataToolTipSummaryTitleTextMarginRight", + "DataToolTipSummaryTitleTextMarginRightProperty": "DataToolTipSummaryTitleTextMarginRightProperty", + "DataToolTipSummaryTitleTextMarginTop": "DataToolTipSummaryTitleTextMarginTop", + "DataToolTipSummaryTitleTextMarginTopProperty": "DataToolTipSummaryTitleTextMarginTopProperty", + "DataToolTipSummaryTitleTextProperty": "DataToolTipSummaryTitleTextProperty", + "DataToolTipSummaryType": "DataToolTipSummaryType", + "DataToolTipSummaryTypeProperty": "DataToolTipSummaryTypeProperty", + "DataToolTipSummaryUnitsText": "DataToolTipSummaryUnitsText", + "DataToolTipSummaryUnitsTextColor": "DataToolTipSummaryUnitsTextColor", + "DataToolTipSummaryUnitsTextColorProperty": "DataToolTipSummaryUnitsTextColorProperty", + "DataToolTipSummaryUnitsTextFontFamily": "DataToolTipSummaryUnitsTextFontFamily", + "DataToolTipSummaryUnitsTextFontFamilyProperty": "DataToolTipSummaryUnitsTextFontFamilyProperty", + "DataToolTipSummaryUnitsTextFontSize": "DataToolTipSummaryUnitsTextFontSize", + "DataToolTipSummaryUnitsTextFontSizeProperty": "DataToolTipSummaryUnitsTextFontSizeProperty", + "DataToolTipSummaryUnitsTextFontStyle": "DataToolTipSummaryUnitsTextFontStyle", + "DataToolTipSummaryUnitsTextFontStyleProperty": "DataToolTipSummaryUnitsTextFontStyleProperty", + "DataToolTipSummaryUnitsTextFontWeight": "DataToolTipSummaryUnitsTextFontWeight", + "DataToolTipSummaryUnitsTextFontWeightProperty": "DataToolTipSummaryUnitsTextFontWeightProperty", + "DataToolTipSummaryUnitsTextProperty": "DataToolTipSummaryUnitsTextProperty", + "DataToolTipSummaryValueTextColor": "DataToolTipSummaryValueTextColor", + "DataToolTipSummaryValueTextColorProperty": "DataToolTipSummaryValueTextColorProperty", + "DataToolTipSummaryValueTextFontFamily": "DataToolTipSummaryValueTextFontFamily", + "DataToolTipSummaryValueTextFontFamilyProperty": "DataToolTipSummaryValueTextFontFamilyProperty", + "DataToolTipSummaryValueTextFontSize": "DataToolTipSummaryValueTextFontSize", + "DataToolTipSummaryValueTextFontSizeProperty": "DataToolTipSummaryValueTextFontSizeProperty", + "DataToolTipSummaryValueTextFontStyle": "DataToolTipSummaryValueTextFontStyle", + "DataToolTipSummaryValueTextFontStyleProperty": "DataToolTipSummaryValueTextFontStyleProperty", + "DataToolTipSummaryValueTextFontWeight": "DataToolTipSummaryValueTextFontWeight", + "DataToolTipSummaryValueTextFontWeightProperty": "DataToolTipSummaryValueTextFontWeightProperty", + "DataToolTipTitleTextColor": "DataToolTipTitleTextColor", + "DataToolTipTitleTextColorProperty": "DataToolTipTitleTextColorProperty", + "DataToolTipTitleTextFontFamily": "DataToolTipTitleTextFontFamily", + "DataToolTipTitleTextFontFamilyProperty": "DataToolTipTitleTextFontFamilyProperty", + "DataToolTipTitleTextFontSize": "DataToolTipTitleTextFontSize", + "DataToolTipTitleTextFontSizeProperty": "DataToolTipTitleTextFontSizeProperty", + "DataToolTipTitleTextFontStyle": "DataToolTipTitleTextFontStyle", + "DataToolTipTitleTextFontStyleProperty": "DataToolTipTitleTextFontStyleProperty", + "DataToolTipTitleTextFontWeight": "DataToolTipTitleTextFontWeight", + "DataToolTipTitleTextFontWeightProperty": "DataToolTipTitleTextFontWeightProperty", + "DataToolTipTitleTextMarginBottom": "DataToolTipTitleTextMarginBottom", + "DataToolTipTitleTextMarginBottomProperty": "DataToolTipTitleTextMarginBottomProperty", + "DataToolTipTitleTextMarginLeft": "DataToolTipTitleTextMarginLeft", + "DataToolTipTitleTextMarginLeftProperty": "DataToolTipTitleTextMarginLeftProperty", + "DataToolTipTitleTextMarginRight": "DataToolTipTitleTextMarginRight", + "DataToolTipTitleTextMarginRightProperty": "DataToolTipTitleTextMarginRightProperty", + "DataToolTipTitleTextMarginTop": "DataToolTipTitleTextMarginTop", + "DataToolTipTitleTextMarginTopProperty": "DataToolTipTitleTextMarginTopProperty", + "DataToolTipUnitsDisplayMode": "DataToolTipUnitsDisplayMode", + "DataToolTipUnitsDisplayModeProperty": "DataToolTipUnitsDisplayModeProperty", + "DataToolTipUnitsText": "DataToolTipUnitsText", + "DataToolTipUnitsTextColor": "DataToolTipUnitsTextColor", + "DataToolTipUnitsTextColorProperty": "DataToolTipUnitsTextColorProperty", + "DataToolTipUnitsTextFontFamily": "DataToolTipUnitsTextFontFamily", + "DataToolTipUnitsTextFontFamilyProperty": "DataToolTipUnitsTextFontFamilyProperty", + "DataToolTipUnitsTextFontSize": "DataToolTipUnitsTextFontSize", + "DataToolTipUnitsTextFontSizeProperty": "DataToolTipUnitsTextFontSizeProperty", + "DataToolTipUnitsTextFontStyle": "DataToolTipUnitsTextFontStyle", + "DataToolTipUnitsTextFontStyleProperty": "DataToolTipUnitsTextFontStyleProperty", + "DataToolTipUnitsTextFontWeight": "DataToolTipUnitsTextFontWeight", + "DataToolTipUnitsTextFontWeightProperty": "DataToolTipUnitsTextFontWeightProperty", + "DataToolTipUnitsTextMarginBottom": "DataToolTipUnitsTextMarginBottom", + "DataToolTipUnitsTextMarginBottomProperty": "DataToolTipUnitsTextMarginBottomProperty", + "DataToolTipUnitsTextMarginLeft": "DataToolTipUnitsTextMarginLeft", + "DataToolTipUnitsTextMarginLeftProperty": "DataToolTipUnitsTextMarginLeftProperty", + "DataToolTipUnitsTextMarginRight": "DataToolTipUnitsTextMarginRight", + "DataToolTipUnitsTextMarginRightProperty": "DataToolTipUnitsTextMarginRightProperty", + "DataToolTipUnitsTextMarginTop": "DataToolTipUnitsTextMarginTop", + "DataToolTipUnitsTextMarginTopProperty": "DataToolTipUnitsTextMarginTopProperty", + "DataToolTipUnitsTextProperty": "DataToolTipUnitsTextProperty", + "DataToolTipValueFormatAbbreviation": "DataToolTipValueFormatAbbreviation", + "DataToolTipValueFormatAbbreviationProperty": "DataToolTipValueFormatAbbreviationProperty", + "DataToolTipValueFormatCulture": "DataToolTipValueFormatCulture", + "DataToolTipValueFormatCultureProperty": "DataToolTipValueFormatCultureProperty", + "DataToolTipValueFormatMaxFractions": "DataToolTipValueFormatMaxFractions", + "DataToolTipValueFormatMaxFractionsProperty": "DataToolTipValueFormatMaxFractionsProperty", + "DataToolTipValueFormatMinFractions": "DataToolTipValueFormatMinFractions", + "DataToolTipValueFormatMinFractionsProperty": "DataToolTipValueFormatMinFractionsProperty", + "DataToolTipValueFormatMode": "DataToolTipValueFormatMode", + "DataToolTipValueFormatModeProperty": "DataToolTipValueFormatModeProperty", + "DataToolTipValueFormatSpecifiers": "DataToolTipValueFormatSpecifiers", + "DataToolTipValueFormatSpecifiersProperty": "DataToolTipValueFormatSpecifiersProperty", + "DataToolTipValueFormatString": "DataToolTipValueFormatString", + "DataToolTipValueFormatStringProperty": "DataToolTipValueFormatStringProperty", + "DataToolTipValueFormatUseGrouping": "DataToolTipValueFormatUseGrouping", + "DataToolTipValueFormatUseGroupingProperty": "DataToolTipValueFormatUseGroupingProperty", + "DataToolTipValueRowMarginBottom": "DataToolTipValueRowMarginBottom", + "DataToolTipValueRowMarginBottomProperty": "DataToolTipValueRowMarginBottomProperty", + "DataToolTipValueRowMarginLeft": "DataToolTipValueRowMarginLeft", + "DataToolTipValueRowMarginLeftProperty": "DataToolTipValueRowMarginLeftProperty", + "DataToolTipValueRowMarginRight": "DataToolTipValueRowMarginRight", + "DataToolTipValueRowMarginRightProperty": "DataToolTipValueRowMarginRightProperty", + "DataToolTipValueRowMarginTop": "DataToolTipValueRowMarginTop", + "DataToolTipValueRowMarginTopProperty": "DataToolTipValueRowMarginTopProperty", + "DataToolTipValueRowVisible": "DataToolTipValueRowVisible", + "DataToolTipValueRowVisibleProperty": "DataToolTipValueRowVisibleProperty", + "DataToolTipValueTextColor": "DataToolTipValueTextColor", + "DataToolTipValueTextColorProperty": "DataToolTipValueTextColorProperty", + "DataToolTipValueTextFontFamily": "DataToolTipValueTextFontFamily", + "DataToolTipValueTextFontFamilyProperty": "DataToolTipValueTextFontFamilyProperty", + "DataToolTipValueTextFontSize": "DataToolTipValueTextFontSize", + "DataToolTipValueTextFontSizeProperty": "DataToolTipValueTextFontSizeProperty", + "DataToolTipValueTextFontStyle": "DataToolTipValueTextFontStyle", + "DataToolTipValueTextFontStyleProperty": "DataToolTipValueTextFontStyleProperty", + "DataToolTipValueTextFontWeight": "DataToolTipValueTextFontWeight", + "DataToolTipValueTextFontWeightProperty": "DataToolTipValueTextFontWeightProperty", + "DataToolTipValueTextMarginBottom": "DataToolTipValueTextMarginBottom", + "DataToolTipValueTextMarginBottomProperty": "DataToolTipValueTextMarginBottomProperty", + "DataToolTipValueTextMarginLeft": "DataToolTipValueTextMarginLeft", + "DataToolTipValueTextMarginLeftProperty": "DataToolTipValueTextMarginLeftProperty", + "DataToolTipValueTextMarginRight": "DataToolTipValueTextMarginRight", + "DataToolTipValueTextMarginRightProperty": "DataToolTipValueTextMarginRightProperty", + "DataToolTipValueTextMarginTop": "DataToolTipValueTextMarginTop", + "DataToolTipValueTextMarginTopProperty": "DataToolTipValueTextMarginTopProperty", + "DataToolTipValueTextUseSeriesColors": "DataToolTipValueTextUseSeriesColors", + "DataToolTipValueTextUseSeriesColorsProperty": "DataToolTipValueTextUseSeriesColorsProperty", + "DataToolTipValueTextWhenMissingData": "DataToolTipValueTextWhenMissingData", + "DataToolTipValueTextWhenMissingDataProperty": "DataToolTipValueTextWhenMissingDataProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "DomainType": "DomainType", + "DomainTypeProperty": "DomainTypeProperty", + "ExcludedProperties": "ExcludedProperties", + "ExcludedPropertiesProperty": "ExcludedPropertiesProperty", + "ExportDomainChartTestingInfo()": "ExportDomainChartTestingInfo()", + "ExportDomainChartTestingInfo": "ExportDomainChartTestingInfo()", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FilterExpressions": "FilterExpressions", + "FinalValueAnnotationsBackground": "FinalValueAnnotationsBackground", + "FinalValueAnnotationsBackgroundProperty": "FinalValueAnnotationsBackgroundProperty", + "FinalValueAnnotationsPrecision": "FinalValueAnnotationsPrecision", + "FinalValueAnnotationsPrecisionProperty": "FinalValueAnnotationsPrecisionProperty", + "FinalValueAnnotationsTextColor": "FinalValueAnnotationsTextColor", + "FinalValueAnnotationsTextColorProperty": "FinalValueAnnotationsTextColorProperty", + "FinalValueAnnotationsVisible": "FinalValueAnnotationsVisible", + "FinalValueAnnotationsVisibleProperty": "FinalValueAnnotationsVisibleProperty", + "FinishAnnotationFlow(UserAnnotationInformation)": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishAnnotationFlow": "FinishAnnotationFlow(UserAnnotationInformation)", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FocusBrush": "FocusBrush", + "FocusBrushProperty": "FocusBrushProperty", + "FocusDismissDelayMilliseconds": "FocusDismissDelayMilliseconds", + "FocusDismissDelayMillisecondsProperty": "FocusDismissDelayMillisecondsProperty", + "FocusMode": "FocusMode", + "FocusModeProperty": "FocusModeProperty", + "FocusTransitionDuration": "FocusTransitionDuration", + "FocusTransitionDurationProperty": "FocusTransitionDurationProperty", + "FocusedSeriesItems": "FocusedSeriesItems", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "GroupDescriptions": "GroupDescriptions", + "GroupSortDescriptions": "GroupSortDescriptions", + "GroupSorts": "GroupSorts", + "GroupSortsProperty": "GroupSortsProperty", + "HideToolTip()": "HideToolTip()", + "HideToolTip": "HideToolTip()", + "HideToolTipImmediate()": "HideToolTipImmediate()", + "HideToolTipImmediate": "HideToolTipImmediate()", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedLegendItemVisibility": "HighlightedLegendItemVisibility", + "HighlightedLegendItemVisibilityProperty": "HighlightedLegendItemVisibilityProperty", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "HighlightingBehavior": "HighlightingBehavior", + "HighlightingBehaviorProperty": "HighlightingBehaviorProperty", + "HighlightingDismissDelayMilliseconds": "HighlightingDismissDelayMilliseconds", + "HighlightingDismissDelayMillisecondsProperty": "HighlightingDismissDelayMillisecondsProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "HighlightingMode": "HighlightingMode", + "HighlightingModeProperty": "HighlightingModeProperty", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HighlightingTransitionDurationProperty": "HighlightingTransitionDurationProperty", + "HorizontalViewScrollbarCornerRadius": "HorizontalViewScrollbarCornerRadius", + "HorizontalViewScrollbarCornerRadiusProperty": "HorizontalViewScrollbarCornerRadiusProperty", + "HorizontalViewScrollbarFill": "HorizontalViewScrollbarFill", + "HorizontalViewScrollbarFillProperty": "HorizontalViewScrollbarFillProperty", + "HorizontalViewScrollbarHeight": "HorizontalViewScrollbarHeight", + "HorizontalViewScrollbarHeightProperty": "HorizontalViewScrollbarHeightProperty", + "HorizontalViewScrollbarInset": "HorizontalViewScrollbarInset", + "HorizontalViewScrollbarInsetProperty": "HorizontalViewScrollbarInsetProperty", + "HorizontalViewScrollbarMaxOpacity": "HorizontalViewScrollbarMaxOpacity", + "HorizontalViewScrollbarMaxOpacityProperty": "HorizontalViewScrollbarMaxOpacityProperty", + "HorizontalViewScrollbarMode": "HorizontalViewScrollbarMode", + "HorizontalViewScrollbarModeProperty": "HorizontalViewScrollbarModeProperty", + "HorizontalViewScrollbarOutline": "HorizontalViewScrollbarOutline", + "HorizontalViewScrollbarOutlineProperty": "HorizontalViewScrollbarOutlineProperty", + "HorizontalViewScrollbarPosition": "HorizontalViewScrollbarPosition", + "HorizontalViewScrollbarPositionProperty": "HorizontalViewScrollbarPositionProperty", + "HorizontalViewScrollbarShouldAddAutoTrackInsets": "HorizontalViewScrollbarShouldAddAutoTrackInsets", + "HorizontalViewScrollbarShouldAddAutoTrackInsetsProperty": "HorizontalViewScrollbarShouldAddAutoTrackInsetsProperty", + "HorizontalViewScrollbarStrokeThickness": "HorizontalViewScrollbarStrokeThickness", + "HorizontalViewScrollbarStrokeThicknessProperty": "HorizontalViewScrollbarStrokeThicknessProperty", + "HorizontalViewScrollbarTrackEndInset": "HorizontalViewScrollbarTrackEndInset", + "HorizontalViewScrollbarTrackEndInsetProperty": "HorizontalViewScrollbarTrackEndInsetProperty", + "HorizontalViewScrollbarTrackStartInset": "HorizontalViewScrollbarTrackStartInset", + "HorizontalViewScrollbarTrackStartInsetProperty": "HorizontalViewScrollbarTrackStartInsetProperty", + "IncludedProperties": "IncludedProperties", + "IncludedPropertiesProperty": "IncludedPropertiesProperty", + "InitialFilter": "InitialFilter", + "InitialFilterExpressions": "InitialFilterExpressions", + "InitialFilterProperty": "InitialFilterProperty", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroupSortDescriptions": "InitialGroupSortDescriptions", + "InitialGroups": "InitialGroups", + "InitialGroupsProperty": "InitialGroupsProperty", + "InitialHighlightFilter": "InitialHighlightFilter", + "InitialHighlightFilterExpressions": "InitialHighlightFilterExpressions", + "InitialHighlightFilterProperty": "InitialHighlightFilterProperty", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSortsProperty": "InitialSortsProperty", + "InitialSummaries": "InitialSummaries", + "InitialSummariesProperty": "InitialSummariesProperty", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsDetached": "IsDetached", + "IsDetachedProperty": "IsDetachedProperty", + "IsHorizontalZoomEnabled": "IsHorizontalZoomEnabled", + "IsHorizontalZoomEnabledProperty": "IsHorizontalZoomEnabledProperty", + "IsSeriesHighlightingEnabled": "IsSeriesHighlightingEnabled", + "IsSeriesHighlightingEnabledProperty": "IsSeriesHighlightingEnabledProperty", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsUserAnnotationsEnabledProperty": "IsUserAnnotationsEnabledProperty", + "IsVerticalZoomEnabled": "IsVerticalZoomEnabled", + "IsVerticalZoomEnabledProperty": "IsVerticalZoomEnabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LeftMargin": "LeftMargin", + "LeftMarginProperty": "LeftMarginProperty", + "Legend": "Legend", + "LegendHighlightingMode": "LegendHighlightingMode", + "LegendHighlightingModeProperty": "LegendHighlightingModeProperty", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeModeProperty": "LegendItemBadgeModeProperty", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeShapeProperty": "LegendItemBadgeShapeProperty", + "LegendItemVisibility": "LegendItemVisibility", + "LegendItemVisibilityProperty": "LegendItemVisibilityProperty", + "LegendProperty": "LegendProperty", + "LoadAnnotationsFromJson(string)": "LoadAnnotationsFromJson(string)", + "LoadAnnotationsFromJson": "LoadAnnotationsFromJson(string)", + "MarkerAutomaticBehavior": "MarkerAutomaticBehavior", + "MarkerAutomaticBehaviorProperty": "MarkerAutomaticBehaviorProperty", + "MarkerBrushes": "MarkerBrushes", + "MarkerBrushesProperty": "MarkerBrushesProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerFillOpacityProperty": "MarkerFillOpacityProperty", + "MarkerMaxCount": "MarkerMaxCount", + "MarkerMaxCountProperty": "MarkerMaxCountProperty", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlines": "MarkerOutlines", + "MarkerOutlinesProperty": "MarkerOutlinesProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerTypes": "MarkerTypes", + "MarkerTypesProperty": "MarkerTypesProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySeriesDataChanged()": "NotifySeriesDataChanged()", + "NotifySeriesDataChanged": "NotifySeriesDataChanged()", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "NotifyVisualPropertiesChanged()": "NotifyVisualPropertiesChanged()", + "NotifyVisualPropertiesChanged": "NotifyVisualPropertiesChanged()", + "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)": "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)", + "OnCalloutLabelUpdating": "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)", + "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)": "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)", + "OnCalloutRenderStyleUpdating": "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)", + "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)": "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)", + "OnCalloutStyleUpdating": "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)", + "OnDetach()": "OnDetach()", + "OnDetach": "OnDetach()", + "OnFilterStringErrorsParsing(FilterStringErrorsParsingEventArgs)": "OnFilterStringErrorsParsing(FilterStringErrorsParsingEventArgs)", + "OnFilterStringErrorsParsing": "OnFilterStringErrorsParsing(FilterStringErrorsParsingEventArgs)", + "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)": "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnFocusedSeriesItemsChanged": "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnPlotAreaPointerDown(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerDown(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerDown": "OnPlotAreaPointerDown(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerEnter(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerEnter(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerEnter": "OnPlotAreaPointerEnter(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerLeave(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerLeave(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerLeave": "OnPlotAreaPointerLeave(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerMove(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerMove(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerMove": "OnPlotAreaPointerMove(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerUp(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerUp(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerUp": "OnPlotAreaPointerUp(DomainChartPlotAreaPointerEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)": "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnSelectedSeriesItemsChanged": "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnSeriesAdded(ChartSeriesEventArgs)": "OnSeriesAdded(ChartSeriesEventArgs)", + "OnSeriesAdded": "OnSeriesAdded(ChartSeriesEventArgs)", + "OnSeriesClick(DomainChartSeriesPointerEventArgs)": "OnSeriesClick(DomainChartSeriesPointerEventArgs)", + "OnSeriesClick": "OnSeriesClick(DomainChartSeriesPointerEventArgs)", + "OnSeriesDataChanged(PropertyChangedEventArgs)": "OnSeriesDataChanged(PropertyChangedEventArgs)", + "OnSeriesDataChanged": "OnSeriesDataChanged(PropertyChangedEventArgs)", + "OnSeriesPointerDown(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerDown(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerDown": "OnSeriesPointerDown(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerEnter(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerEnter(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerEnter": "OnSeriesPointerEnter(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerLeave(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerLeave(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerLeave": "OnSeriesPointerLeave(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerMove(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerMove(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerMove": "OnSeriesPointerMove(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerUp(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerUp(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerUp": "OnSeriesPointerUp(DomainChartSeriesPointerEventArgs)", + "OnSeriesRemoved(ChartSeriesEventArgs)": "OnSeriesRemoved(ChartSeriesEventArgs)", + "OnSeriesRemoved": "OnSeriesRemoved(ChartSeriesEventArgs)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationInformationRequested": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnUserAnnotationToolTipContentUpdating": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OutlineMode": "OutlineMode", + "OutlineModeProperty": "OutlineModeProperty", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "PlotAreaMarginBottom": "PlotAreaMarginBottom", + "PlotAreaMarginBottomProperty": "PlotAreaMarginBottomProperty", + "PlotAreaMarginLeft": "PlotAreaMarginLeft", + "PlotAreaMarginLeftProperty": "PlotAreaMarginLeftProperty", + "PlotAreaMarginRight": "PlotAreaMarginRight", + "PlotAreaMarginRightProperty": "PlotAreaMarginRightProperty", + "PlotAreaMarginTop": "PlotAreaMarginTop", + "PlotAreaMarginTopProperty": "PlotAreaMarginTopProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "ReplayTransitionIn()": "ReplayTransitionIn()", + "ReplayTransitionIn": "ReplayTransitionIn()", + "ResetAnnotations()": "ResetAnnotations()", + "ResetAnnotations": "ResetAnnotations()", + "ResetZoom()": "ResetZoom()", + "ResetZoom": "ResetZoom()", + "Resolution": "Resolution", + "ResolutionProperty": "ResolutionProperty", + "RightMargin": "RightMargin", + "RightMarginProperty": "RightMarginProperty", + "SaveAnnotationsToJson()": "SaveAnnotationsToJson()", + "SaveAnnotationsToJson": "SaveAnnotationsToJson()", + "SelectedSeriesItems": "SelectedSeriesItems", + "SelectionBehavior": "SelectionBehavior", + "SelectionBehaviorProperty": "SelectionBehaviorProperty", + "SelectionBrush": "SelectionBrush", + "SelectionBrushProperty": "SelectionBrushProperty", + "SelectionDismissDelayMilliseconds": "SelectionDismissDelayMilliseconds", + "SelectionDismissDelayMillisecondsProperty": "SelectionDismissDelayMillisecondsProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "SelectionTransitionDuration": "SelectionTransitionDuration", + "SelectionTransitionDurationProperty": "SelectionTransitionDurationProperty", + "SeriesPlotAreaMarginHorizontalMode": "SeriesPlotAreaMarginHorizontalMode", + "SeriesPlotAreaMarginHorizontalModeProperty": "SeriesPlotAreaMarginHorizontalModeProperty", + "SeriesPlotAreaMarginVerticalMode": "SeriesPlotAreaMarginVerticalMode", + "SeriesPlotAreaMarginVerticalModeProperty": "SeriesPlotAreaMarginVerticalModeProperty", + "SeriesValueLayerUseLegend": "SeriesValueLayerUseLegend", + "SeriesValueLayerUseLegendProperty": "SeriesValueLayerUseLegendProperty", + "ShouldAvoidAxisAnnotationCollisions": "ShouldAvoidAxisAnnotationCollisions", + "ShouldAvoidAxisAnnotationCollisionsProperty": "ShouldAvoidAxisAnnotationCollisionsProperty", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldDisplayMockDataProperty": "ShouldDisplayMockDataProperty", + "ShouldPanOnMaximumZoom": "ShouldPanOnMaximumZoom", + "ShouldPanOnMaximumZoomProperty": "ShouldPanOnMaximumZoomProperty", + "ShouldSimulateHoverMoveCrosshairPoint": "ShouldSimulateHoverMoveCrosshairPoint", + "ShouldSimulateHoverMoveCrosshairPointProperty": "ShouldSimulateHoverMoveCrosshairPointProperty", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "ShouldUseSkeletonStyleForMockDataProperty": "ShouldUseSkeletonStyleForMockDataProperty", + "SimulateClick(Point)": "SimulateClick(Point)", + "SimulateClick": "SimulateClick(Point)", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "SimulatePlotPointerUp(Point)": "SimulatePlotPointerUp(Point)", + "SimulatePlotPointerUp": "SimulatePlotPointerUp(Point)", + "SimulatePressAndHold(Point)": "SimulatePressAndHold(Point)", + "SimulatePressAndHold": "SimulatePressAndHold(Point)", + "SortDescriptions": "SortDescriptions", + "StartCreatingAnnotation()": "StartCreatingAnnotation()", + "StartCreatingAnnotation": "StartCreatingAnnotation()", + "StartDeletingAnnotation()": "StartDeletingAnnotation()", + "StartDeletingAnnotation": "StartDeletingAnnotation()", + "Subtitle": "Subtitle", + "SubtitleAlignment": "SubtitleAlignment", + "SubtitleAlignmentProperty": "SubtitleAlignmentProperty", + "SubtitleBottomMargin": "SubtitleBottomMargin", + "SubtitleBottomMarginProperty": "SubtitleBottomMarginProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleLeftMargin": "SubtitleLeftMargin", + "SubtitleLeftMarginProperty": "SubtitleLeftMarginProperty", + "SubtitleProperty": "SubtitleProperty", + "SubtitleRightMargin": "SubtitleRightMargin", + "SubtitleRightMarginProperty": "SubtitleRightMarginProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "SubtitleTopMargin": "SubtitleTopMargin", + "SubtitleTopMarginProperty": "SubtitleTopMarginProperty", + "SummaryDescriptions": "SummaryDescriptions", + "Thickness": "Thickness", + "ThicknessProperty": "ThicknessProperty", + "Title": "Title", + "TitleAlignment": "TitleAlignment", + "TitleAlignmentProperty": "TitleAlignmentProperty", + "TitleBottomMargin": "TitleBottomMargin", + "TitleBottomMarginProperty": "TitleBottomMarginProperty", + "TitleFontFamily": "TitleFontFamily", + "TitleFontFamilyProperty": "TitleFontFamilyProperty", + "TitleFontSize": "TitleFontSize", + "TitleFontSizeProperty": "TitleFontSizeProperty", + "TitleFontStyle": "TitleFontStyle", + "TitleFontStyleProperty": "TitleFontStyleProperty", + "TitleFontWeight": "TitleFontWeight", + "TitleFontWeightProperty": "TitleFontWeightProperty", + "TitleLeftMargin": "TitleLeftMargin", + "TitleLeftMarginProperty": "TitleLeftMarginProperty", + "TitleProperty": "TitleProperty", + "TitleRightMargin": "TitleRightMargin", + "TitleRightMarginProperty": "TitleRightMarginProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTopMargin": "TitleTopMargin", + "TitleTopMarginProperty": "TitleTopMarginProperty", + "ToolTipType": "ToolTipType", + "ToolTipTypeProperty": "ToolTipTypeProperty", + "TooltipTemplate": "TooltipTemplate", + "TooltipTemplateProperty": "TooltipTemplateProperty", + "TooltipTemplates": "TooltipTemplates", + "TooltipTemplatesProperty": "TooltipTemplatesProperty", + "TopMargin": "TopMargin", + "TopMarginProperty": "TopMarginProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionEasingFunction": "TransitionEasingFunction", + "TransitionEasingFunctionProperty": "TransitionEasingFunctionProperty", + "TrendLineBrushes": "TrendLineBrushes", + "TrendLineBrushesProperty": "TrendLineBrushesProperty", + "TrendLineLayerUseLegend": "TrendLineLayerUseLegend", + "TrendLineLayerUseLegendProperty": "TrendLineLayerUseLegendProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "TrendLineTypes": "TrendLineTypes", + "TrendLineTypesProperty": "TrendLineTypesProperty", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty", + "UseValueForAutoCalloutLabels": "UseValueForAutoCalloutLabels", + "UseValueForAutoCalloutLabelsProperty": "UseValueForAutoCalloutLabelsProperty", + "ValueLines": "ValueLines", + "ValueLinesBrushes": "ValueLinesBrushes", + "ValueLinesBrushesProperty": "ValueLinesBrushesProperty", + "ValueLinesProperty": "ValueLinesProperty", + "ValueLinesThickness": "ValueLinesThickness", + "ValueLinesThicknessProperty": "ValueLinesThicknessProperty", + "VerticalViewScrollbarCornerRadius": "VerticalViewScrollbarCornerRadius", + "VerticalViewScrollbarCornerRadiusProperty": "VerticalViewScrollbarCornerRadiusProperty", + "VerticalViewScrollbarFill": "VerticalViewScrollbarFill", + "VerticalViewScrollbarFillProperty": "VerticalViewScrollbarFillProperty", + "VerticalViewScrollbarInset": "VerticalViewScrollbarInset", + "VerticalViewScrollbarInsetProperty": "VerticalViewScrollbarInsetProperty", + "VerticalViewScrollbarMaxOpacity": "VerticalViewScrollbarMaxOpacity", + "VerticalViewScrollbarMaxOpacityProperty": "VerticalViewScrollbarMaxOpacityProperty", + "VerticalViewScrollbarMode": "VerticalViewScrollbarMode", + "VerticalViewScrollbarModeProperty": "VerticalViewScrollbarModeProperty", + "VerticalViewScrollbarOutline": "VerticalViewScrollbarOutline", + "VerticalViewScrollbarOutlineProperty": "VerticalViewScrollbarOutlineProperty", + "VerticalViewScrollbarPosition": "VerticalViewScrollbarPosition", + "VerticalViewScrollbarPositionProperty": "VerticalViewScrollbarPositionProperty", + "VerticalViewScrollbarShouldAddAutoTrackInsets": "VerticalViewScrollbarShouldAddAutoTrackInsets", + "VerticalViewScrollbarShouldAddAutoTrackInsetsProperty": "VerticalViewScrollbarShouldAddAutoTrackInsetsProperty", + "VerticalViewScrollbarStrokeThickness": "VerticalViewScrollbarStrokeThickness", + "VerticalViewScrollbarStrokeThicknessProperty": "VerticalViewScrollbarStrokeThicknessProperty", + "VerticalViewScrollbarTrackEndInset": "VerticalViewScrollbarTrackEndInset", + "VerticalViewScrollbarTrackEndInsetProperty": "VerticalViewScrollbarTrackEndInsetProperty", + "VerticalViewScrollbarTrackStartInset": "VerticalViewScrollbarTrackStartInset", + "VerticalViewScrollbarTrackStartInsetProperty": "VerticalViewScrollbarTrackStartInsetProperty", + "VerticalViewScrollbarWidth": "VerticalViewScrollbarWidth", + "VerticalViewScrollbarWidthProperty": "VerticalViewScrollbarWidthProperty", + "Viewport": "Viewport", + "ViewportProperty": "ViewportProperty", + "WindowRect": "WindowRect", + "WindowRectMinHeight": "WindowRectMinHeight", + "WindowRectMinHeightProperty": "WindowRectMinHeightProperty", + "WindowRectMinWidth": "WindowRectMinWidth", + "WindowRectMinWidthProperty": "WindowRectMinWidthProperty", + "WindowRectProperty": "WindowRectProperty", + "WindowSizeMinHeight": "WindowSizeMinHeight", + "WindowSizeMinHeightProperty": "WindowSizeMinHeightProperty", + "WindowSizeMinWidth": "WindowSizeMinWidth", + "WindowSizeMinWidthProperty": "WindowSizeMinWidthProperty", + "ZoomIn(double)": "ZoomIn(double)", + "ZoomIn": "ZoomIn(double)", + "ZoomOut(double)": "ZoomOut(double)", + "ZoomOut": "ZoomOut(double)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DomainChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartDescription", + "k": "class", + "s": "classes", + "m": { + "DomainChartDescription()": "DomainChartDescription()", + "DomainChartDescription": "DomainChartDescription()", + "ActualBrushes": "ActualBrushes", + "ActualOutlines": "ActualOutlines", + "AlignsGridLinesToPixels": "AlignsGridLinesToPixels", + "AnimateSeriesWhenAxisRangeChanges": "AnimateSeriesWhenAxisRangeChanges", + "AreaFillOpacity": "AreaFillOpacity", + "AutoCalloutsVisible": "AutoCalloutsVisible", + "BottomMargin": "BottomMargin", + "Brushes": "Brushes", + "CalloutCollisionMode": "CalloutCollisionMode", + "CalloutLabelUpdatingRef": "CalloutLabelUpdatingRef", + "CalloutRenderStyleUpdatingRef": "CalloutRenderStyleUpdatingRef", + "CalloutStyleUpdatingEventEnabled": "CalloutStyleUpdatingEventEnabled", + "CalloutStyleUpdatingRef": "CalloutStyleUpdatingRef", + "CalloutsAllowedPositions": "CalloutsAllowedPositions", + "CalloutsAutoLabelPrecision": "CalloutsAutoLabelPrecision", + "CalloutsBackground": "CalloutsBackground", + "CalloutsContentMemberPath": "CalloutsContentMemberPath", + "CalloutsDarkTextColor": "CalloutsDarkTextColor", + "CalloutsDataSourceRef": "CalloutsDataSourceRef", + "CalloutsFontFamily": "CalloutsFontFamily", + "CalloutsFontSize": "CalloutsFontSize", + "CalloutsFontStyle": "CalloutsFontStyle", + "CalloutsFontWeight": "CalloutsFontWeight", + "CalloutsLabelMemberPath": "CalloutsLabelMemberPath", + "CalloutsLeaderBrush": "CalloutsLeaderBrush", + "CalloutsLightTextColor": "CalloutsLightTextColor", + "CalloutsOutline": "CalloutsOutline", + "CalloutsStrokeThickness": "CalloutsStrokeThickness", + "CalloutsTextColor": "CalloutsTextColor", + "CalloutsUseAutoContrastingLabelColors": "CalloutsUseAutoContrastingLabelColors", + "CalloutsUseItemColorForFill": "CalloutsUseItemColorForFill", + "CalloutsUseItemColorForOutline": "CalloutsUseItemColorForOutline", + "CalloutsVisible": "CalloutsVisible", + "CalloutsXMemberPath": "CalloutsXMemberPath", + "CalloutsYMemberPath": "CalloutsYMemberPath", + "ChartTitle": "ChartTitle", + "ComputedPlotAreaMarginMode": "ComputedPlotAreaMarginMode", + "CrosshairsAnnotationEnabled": "CrosshairsAnnotationEnabled", + "CrosshairsAnnotationXAxisBackground": "CrosshairsAnnotationXAxisBackground", + "CrosshairsAnnotationXAxisPrecision": "CrosshairsAnnotationXAxisPrecision", + "CrosshairsAnnotationXAxisTextColor": "CrosshairsAnnotationXAxisTextColor", + "CrosshairsAnnotationYAxisBackground": "CrosshairsAnnotationYAxisBackground", + "CrosshairsAnnotationYAxisPrecision": "CrosshairsAnnotationYAxisPrecision", + "CrosshairsAnnotationYAxisTextColor": "CrosshairsAnnotationYAxisTextColor", + "CrosshairsDisplayMode": "CrosshairsDisplayMode", + "CrosshairsLineHorizontalStroke": "CrosshairsLineHorizontalStroke", + "CrosshairsLineThickness": "CrosshairsLineThickness", + "CrosshairsLineVerticalStroke": "CrosshairsLineVerticalStroke", + "CrosshairsSkipInvalidData": "CrosshairsSkipInvalidData", + "CrosshairsSkipZeroValueFragments": "CrosshairsSkipZeroValueFragments", + "CrosshairsSnapToData": "CrosshairsSnapToData", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "DataToolTipBadgeMarginBottom": "DataToolTipBadgeMarginBottom", + "DataToolTipBadgeMarginLeft": "DataToolTipBadgeMarginLeft", + "DataToolTipBadgeMarginRight": "DataToolTipBadgeMarginRight", + "DataToolTipBadgeMarginTop": "DataToolTipBadgeMarginTop", + "DataToolTipBadgeShape": "DataToolTipBadgeShape", + "DataToolTipDefaultPositionOffsetX": "DataToolTipDefaultPositionOffsetX", + "DataToolTipDefaultPositionOffsetY": "DataToolTipDefaultPositionOffsetY", + "DataToolTipExcludedColumns": "DataToolTipExcludedColumns", + "DataToolTipExcludedSeries": "DataToolTipExcludedSeries", + "DataToolTipGroupRowMarginBottom": "DataToolTipGroupRowMarginBottom", + "DataToolTipGroupRowMarginLeft": "DataToolTipGroupRowMarginLeft", + "DataToolTipGroupRowMarginRight": "DataToolTipGroupRowMarginRight", + "DataToolTipGroupRowMarginTop": "DataToolTipGroupRowMarginTop", + "DataToolTipGroupRowVisible": "DataToolTipGroupRowVisible", + "DataToolTipGroupTextColor": "DataToolTipGroupTextColor", + "DataToolTipGroupTextFontFamily": "DataToolTipGroupTextFontFamily", + "DataToolTipGroupTextFontSize": "DataToolTipGroupTextFontSize", + "DataToolTipGroupTextFontStyle": "DataToolTipGroupTextFontStyle", + "DataToolTipGroupTextFontWeight": "DataToolTipGroupTextFontWeight", + "DataToolTipGroupTextMarginBottom": "DataToolTipGroupTextMarginBottom", + "DataToolTipGroupTextMarginLeft": "DataToolTipGroupTextMarginLeft", + "DataToolTipGroupTextMarginRight": "DataToolTipGroupTextMarginRight", + "DataToolTipGroupTextMarginTop": "DataToolTipGroupTextMarginTop", + "DataToolTipGroupedPositionModeX": "DataToolTipGroupedPositionModeX", + "DataToolTipGroupedPositionModeY": "DataToolTipGroupedPositionModeY", + "DataToolTipGroupingMode": "DataToolTipGroupingMode", + "DataToolTipHeaderFormatCulture": "DataToolTipHeaderFormatCulture", + "DataToolTipHeaderFormatDate": "DataToolTipHeaderFormatDate", + "DataToolTipHeaderFormatSpecifiers": "DataToolTipHeaderFormatSpecifiers", + "DataToolTipHeaderFormatString": "DataToolTipHeaderFormatString", + "DataToolTipHeaderFormatTime": "DataToolTipHeaderFormatTime", + "DataToolTipHeaderRowMarginBottom": "DataToolTipHeaderRowMarginBottom", + "DataToolTipHeaderRowMarginLeft": "DataToolTipHeaderRowMarginLeft", + "DataToolTipHeaderRowMarginRight": "DataToolTipHeaderRowMarginRight", + "DataToolTipHeaderRowMarginTop": "DataToolTipHeaderRowMarginTop", + "DataToolTipHeaderRowVisible": "DataToolTipHeaderRowVisible", + "DataToolTipHeaderText": "DataToolTipHeaderText", + "DataToolTipHeaderTextColor": "DataToolTipHeaderTextColor", + "DataToolTipHeaderTextFontFamily": "DataToolTipHeaderTextFontFamily", + "DataToolTipHeaderTextFontSize": "DataToolTipHeaderTextFontSize", + "DataToolTipHeaderTextFontStyle": "DataToolTipHeaderTextFontStyle", + "DataToolTipHeaderTextFontWeight": "DataToolTipHeaderTextFontWeight", + "DataToolTipHeaderTextMarginBottom": "DataToolTipHeaderTextMarginBottom", + "DataToolTipHeaderTextMarginLeft": "DataToolTipHeaderTextMarginLeft", + "DataToolTipHeaderTextMarginRight": "DataToolTipHeaderTextMarginRight", + "DataToolTipHeaderTextMarginTop": "DataToolTipHeaderTextMarginTop", + "DataToolTipIncludedColumns": "DataToolTipIncludedColumns", + "DataToolTipIncludedSeries": "DataToolTipIncludedSeries", + "DataToolTipLabelDisplayMode": "DataToolTipLabelDisplayMode", + "DataToolTipLabelTextColor": "DataToolTipLabelTextColor", + "DataToolTipLabelTextFontFamily": "DataToolTipLabelTextFontFamily", + "DataToolTipLabelTextFontSize": "DataToolTipLabelTextFontSize", + "DataToolTipLabelTextFontStyle": "DataToolTipLabelTextFontStyle", + "DataToolTipLabelTextFontWeight": "DataToolTipLabelTextFontWeight", + "DataToolTipLabelTextMarginBottom": "DataToolTipLabelTextMarginBottom", + "DataToolTipLabelTextMarginLeft": "DataToolTipLabelTextMarginLeft", + "DataToolTipLabelTextMarginRight": "DataToolTipLabelTextMarginRight", + "DataToolTipLabelTextMarginTop": "DataToolTipLabelTextMarginTop", + "DataToolTipPositionOffsetX": "DataToolTipPositionOffsetX", + "DataToolTipPositionOffsetY": "DataToolTipPositionOffsetY", + "DataToolTipShouldUpdateWhenSeriesDataChanges": "DataToolTipShouldUpdateWhenSeriesDataChanges", + "DataToolTipSummaryLabelText": "DataToolTipSummaryLabelText", + "DataToolTipSummaryLabelTextColor": "DataToolTipSummaryLabelTextColor", + "DataToolTipSummaryLabelTextFontFamily": "DataToolTipSummaryLabelTextFontFamily", + "DataToolTipSummaryLabelTextFontSize": "DataToolTipSummaryLabelTextFontSize", + "DataToolTipSummaryLabelTextFontStyle": "DataToolTipSummaryLabelTextFontStyle", + "DataToolTipSummaryLabelTextFontWeight": "DataToolTipSummaryLabelTextFontWeight", + "DataToolTipSummaryRowMarginBottom": "DataToolTipSummaryRowMarginBottom", + "DataToolTipSummaryRowMarginLeft": "DataToolTipSummaryRowMarginLeft", + "DataToolTipSummaryRowMarginRight": "DataToolTipSummaryRowMarginRight", + "DataToolTipSummaryRowMarginTop": "DataToolTipSummaryRowMarginTop", + "DataToolTipSummaryTitleText": "DataToolTipSummaryTitleText", + "DataToolTipSummaryTitleTextColor": "DataToolTipSummaryTitleTextColor", + "DataToolTipSummaryTitleTextFontFamily": "DataToolTipSummaryTitleTextFontFamily", + "DataToolTipSummaryTitleTextFontSize": "DataToolTipSummaryTitleTextFontSize", + "DataToolTipSummaryTitleTextFontStyle": "DataToolTipSummaryTitleTextFontStyle", + "DataToolTipSummaryTitleTextFontWeight": "DataToolTipSummaryTitleTextFontWeight", + "DataToolTipSummaryTitleTextMarginBottom": "DataToolTipSummaryTitleTextMarginBottom", + "DataToolTipSummaryTitleTextMarginLeft": "DataToolTipSummaryTitleTextMarginLeft", + "DataToolTipSummaryTitleTextMarginRight": "DataToolTipSummaryTitleTextMarginRight", + "DataToolTipSummaryTitleTextMarginTop": "DataToolTipSummaryTitleTextMarginTop", + "DataToolTipSummaryType": "DataToolTipSummaryType", + "DataToolTipSummaryUnitsText": "DataToolTipSummaryUnitsText", + "DataToolTipSummaryUnitsTextColor": "DataToolTipSummaryUnitsTextColor", + "DataToolTipSummaryUnitsTextFontFamily": "DataToolTipSummaryUnitsTextFontFamily", + "DataToolTipSummaryUnitsTextFontSize": "DataToolTipSummaryUnitsTextFontSize", + "DataToolTipSummaryUnitsTextFontStyle": "DataToolTipSummaryUnitsTextFontStyle", + "DataToolTipSummaryUnitsTextFontWeight": "DataToolTipSummaryUnitsTextFontWeight", + "DataToolTipSummaryValueTextColor": "DataToolTipSummaryValueTextColor", + "DataToolTipSummaryValueTextFontFamily": "DataToolTipSummaryValueTextFontFamily", + "DataToolTipSummaryValueTextFontSize": "DataToolTipSummaryValueTextFontSize", + "DataToolTipSummaryValueTextFontStyle": "DataToolTipSummaryValueTextFontStyle", + "DataToolTipSummaryValueTextFontWeight": "DataToolTipSummaryValueTextFontWeight", + "DataToolTipTitleTextColor": "DataToolTipTitleTextColor", + "DataToolTipTitleTextFontFamily": "DataToolTipTitleTextFontFamily", + "DataToolTipTitleTextFontSize": "DataToolTipTitleTextFontSize", + "DataToolTipTitleTextFontStyle": "DataToolTipTitleTextFontStyle", + "DataToolTipTitleTextFontWeight": "DataToolTipTitleTextFontWeight", + "DataToolTipTitleTextMarginBottom": "DataToolTipTitleTextMarginBottom", + "DataToolTipTitleTextMarginLeft": "DataToolTipTitleTextMarginLeft", + "DataToolTipTitleTextMarginRight": "DataToolTipTitleTextMarginRight", + "DataToolTipTitleTextMarginTop": "DataToolTipTitleTextMarginTop", + "DataToolTipUnitsDisplayMode": "DataToolTipUnitsDisplayMode", + "DataToolTipUnitsText": "DataToolTipUnitsText", + "DataToolTipUnitsTextColor": "DataToolTipUnitsTextColor", + "DataToolTipUnitsTextFontFamily": "DataToolTipUnitsTextFontFamily", + "DataToolTipUnitsTextFontSize": "DataToolTipUnitsTextFontSize", + "DataToolTipUnitsTextFontStyle": "DataToolTipUnitsTextFontStyle", + "DataToolTipUnitsTextFontWeight": "DataToolTipUnitsTextFontWeight", + "DataToolTipUnitsTextMarginBottom": "DataToolTipUnitsTextMarginBottom", + "DataToolTipUnitsTextMarginLeft": "DataToolTipUnitsTextMarginLeft", + "DataToolTipUnitsTextMarginRight": "DataToolTipUnitsTextMarginRight", + "DataToolTipUnitsTextMarginTop": "DataToolTipUnitsTextMarginTop", + "DataToolTipValueFormatAbbreviation": "DataToolTipValueFormatAbbreviation", + "DataToolTipValueFormatCulture": "DataToolTipValueFormatCulture", + "DataToolTipValueFormatMaxFractions": "DataToolTipValueFormatMaxFractions", + "DataToolTipValueFormatMinFractions": "DataToolTipValueFormatMinFractions", + "DataToolTipValueFormatMode": "DataToolTipValueFormatMode", + "DataToolTipValueFormatSpecifiers": "DataToolTipValueFormatSpecifiers", + "DataToolTipValueFormatString": "DataToolTipValueFormatString", + "DataToolTipValueFormatUseGrouping": "DataToolTipValueFormatUseGrouping", + "DataToolTipValueRowMarginBottom": "DataToolTipValueRowMarginBottom", + "DataToolTipValueRowMarginLeft": "DataToolTipValueRowMarginLeft", + "DataToolTipValueRowMarginRight": "DataToolTipValueRowMarginRight", + "DataToolTipValueRowMarginTop": "DataToolTipValueRowMarginTop", + "DataToolTipValueRowVisible": "DataToolTipValueRowVisible", + "DataToolTipValueTextColor": "DataToolTipValueTextColor", + "DataToolTipValueTextFontFamily": "DataToolTipValueTextFontFamily", + "DataToolTipValueTextFontSize": "DataToolTipValueTextFontSize", + "DataToolTipValueTextFontStyle": "DataToolTipValueTextFontStyle", + "DataToolTipValueTextFontWeight": "DataToolTipValueTextFontWeight", + "DataToolTipValueTextMarginBottom": "DataToolTipValueTextMarginBottom", + "DataToolTipValueTextMarginLeft": "DataToolTipValueTextMarginLeft", + "DataToolTipValueTextMarginRight": "DataToolTipValueTextMarginRight", + "DataToolTipValueTextMarginTop": "DataToolTipValueTextMarginTop", + "DataToolTipValueTextUseSeriesColors": "DataToolTipValueTextUseSeriesColors", + "DataToolTipValueTextWhenMissingData": "DataToolTipValueTextWhenMissingData", + "ExcludedProperties": "ExcludedProperties", + "FilterExpressions": "FilterExpressions", + "FilterStringErrorsParsingRef": "FilterStringErrorsParsingRef", + "FinalValueAnnotationsBackground": "FinalValueAnnotationsBackground", + "FinalValueAnnotationsPrecision": "FinalValueAnnotationsPrecision", + "FinalValueAnnotationsTextColor": "FinalValueAnnotationsTextColor", + "FinalValueAnnotationsVisible": "FinalValueAnnotationsVisible", + "FocusBrush": "FocusBrush", + "FocusDismissDelayMilliseconds": "FocusDismissDelayMilliseconds", + "FocusMode": "FocusMode", + "FocusTransitionDuration": "FocusTransitionDuration", + "FocusedSeriesItems": "FocusedSeriesItems", + "FocusedSeriesItemsChangedRef": "FocusedSeriesItemsChangedRef", + "GroupDescriptions": "GroupDescriptions", + "GroupSortDescriptions": "GroupSortDescriptions", + "GroupSorts": "GroupSorts", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "HighlightedDataSource": "HighlightedDataSource", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedLegendItemVisibility": "HighlightedLegendItemVisibility", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightingBehavior": "HighlightingBehavior", + "HighlightingDismissDelayMilliseconds": "HighlightingDismissDelayMilliseconds", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingMode": "HighlightingMode", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HorizontalViewScrollbarCornerRadius": "HorizontalViewScrollbarCornerRadius", + "HorizontalViewScrollbarFill": "HorizontalViewScrollbarFill", + "HorizontalViewScrollbarHeight": "HorizontalViewScrollbarHeight", + "HorizontalViewScrollbarInset": "HorizontalViewScrollbarInset", + "HorizontalViewScrollbarMaxOpacity": "HorizontalViewScrollbarMaxOpacity", + "HorizontalViewScrollbarMode": "HorizontalViewScrollbarMode", + "HorizontalViewScrollbarOutline": "HorizontalViewScrollbarOutline", + "HorizontalViewScrollbarPosition": "HorizontalViewScrollbarPosition", + "HorizontalViewScrollbarShouldAddAutoTrackInsets": "HorizontalViewScrollbarShouldAddAutoTrackInsets", + "HorizontalViewScrollbarStrokeThickness": "HorizontalViewScrollbarStrokeThickness", + "HorizontalViewScrollbarTrackEndInset": "HorizontalViewScrollbarTrackEndInset", + "HorizontalViewScrollbarTrackStartInset": "HorizontalViewScrollbarTrackStartInset", + "IncludedProperties": "IncludedProperties", + "InitialFilter": "InitialFilter", + "InitialFilterExpressions": "InitialFilterExpressions", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroupSortDescriptions": "InitialGroupSortDescriptions", + "InitialGroups": "InitialGroups", + "InitialHighlightFilter": "InitialHighlightFilter", + "InitialHighlightFilterExpressions": "InitialHighlightFilterExpressions", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSummaries": "InitialSummaries", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "IsHorizontalZoomEnabled": "IsHorizontalZoomEnabled", + "IsSeriesHighlightingEnabled": "IsSeriesHighlightingEnabled", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsVerticalZoomEnabled": "IsVerticalZoomEnabled", + "LeftMargin": "LeftMargin", + "LegendHighlightingMode": "LegendHighlightingMode", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemVisibility": "LegendItemVisibility", + "LegendRef": "LegendRef", + "MarkerAutomaticBehavior": "MarkerAutomaticBehavior", + "MarkerBrushes": "MarkerBrushes", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerMaxCount": "MarkerMaxCount", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlines": "MarkerOutlines", + "MarkerThickness": "MarkerThickness", + "MarkerTypes": "MarkerTypes", + "OutlineMode": "OutlineMode", + "Outlines": "Outlines", + "PixelScalingRatio": "PixelScalingRatio", + "PlotAreaMarginBottom": "PlotAreaMarginBottom", + "PlotAreaMarginLeft": "PlotAreaMarginLeft", + "PlotAreaMarginRight": "PlotAreaMarginRight", + "PlotAreaMarginTop": "PlotAreaMarginTop", + "PlotAreaPointerDownRef": "PlotAreaPointerDownRef", + "PlotAreaPointerEnterRef": "PlotAreaPointerEnterRef", + "PlotAreaPointerLeaveRef": "PlotAreaPointerLeaveRef", + "PlotAreaPointerMoveRef": "PlotAreaPointerMoveRef", + "PlotAreaPointerUpRef": "PlotAreaPointerUpRef", + "Resolution": "Resolution", + "RightMargin": "RightMargin", + "SelectedSeriesItems": "SelectedSeriesItems", + "SelectedSeriesItemsChangedRef": "SelectedSeriesItemsChangedRef", + "SelectionBehavior": "SelectionBehavior", + "SelectionBrush": "SelectionBrush", + "SelectionDismissDelayMilliseconds": "SelectionDismissDelayMilliseconds", + "SelectionMode": "SelectionMode", + "SelectionTransitionDuration": "SelectionTransitionDuration", + "SeriesAddedRef": "SeriesAddedRef", + "SeriesClickRef": "SeriesClickRef", + "SeriesPlotAreaMarginHorizontalMode": "SeriesPlotAreaMarginHorizontalMode", + "SeriesPlotAreaMarginVerticalMode": "SeriesPlotAreaMarginVerticalMode", + "SeriesPointerDownRef": "SeriesPointerDownRef", + "SeriesPointerEnterRef": "SeriesPointerEnterRef", + "SeriesPointerLeaveRef": "SeriesPointerLeaveRef", + "SeriesPointerMoveRef": "SeriesPointerMoveRef", + "SeriesPointerUpRef": "SeriesPointerUpRef", + "SeriesRemovedRef": "SeriesRemovedRef", + "SeriesValueLayerUseLegend": "SeriesValueLayerUseLegend", + "ShouldAvoidAxisAnnotationCollisions": "ShouldAvoidAxisAnnotationCollisions", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldPanOnMaximumZoom": "ShouldPanOnMaximumZoom", + "ShouldSimulateHoverMoveCrosshairPoint": "ShouldSimulateHoverMoveCrosshairPoint", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "SortDescriptions": "SortDescriptions", + "Subtitle": "Subtitle", + "SubtitleAlignment": "SubtitleAlignment", + "SubtitleBottomMargin": "SubtitleBottomMargin", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleLeftMargin": "SubtitleLeftMargin", + "SubtitleRightMargin": "SubtitleRightMargin", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextStyle": "SubtitleTextStyle", + "SubtitleTopMargin": "SubtitleTopMargin", + "SummaryDescriptions": "SummaryDescriptions", + "Thickness": "Thickness", + "TitleAlignment": "TitleAlignment", + "TitleBottomMargin": "TitleBottomMargin", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "TitleLeftMargin": "TitleLeftMargin", + "TitleRightMargin": "TitleRightMargin", + "TitleTextColor": "TitleTextColor", + "TitleTextStyle": "TitleTextStyle", + "TitleTopMargin": "TitleTopMargin", + "ToolTipType": "ToolTipType", + "TopMargin": "TopMargin", + "TransitionDuration": "TransitionDuration", + "TransitionEasingFunctionRef": "TransitionEasingFunctionRef", + "TrendLineBrushes": "TrendLineBrushes", + "TrendLineLayerUseLegend": "TrendLineLayerUseLegend", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "TrendLineTypes": "TrendLineTypes", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting", + "UseValueForAutoCalloutLabels": "UseValueForAutoCalloutLabels", + "UserAnnotationInformationRequestedRef": "UserAnnotationInformationRequestedRef", + "UserAnnotationToolTipContentUpdatingRef": "UserAnnotationToolTipContentUpdatingRef", + "ValueLines": "ValueLines", + "ValueLinesBrushes": "ValueLinesBrushes", + "ValueLinesThickness": "ValueLinesThickness", + "VerticalViewScrollbarCornerRadius": "VerticalViewScrollbarCornerRadius", + "VerticalViewScrollbarFill": "VerticalViewScrollbarFill", + "VerticalViewScrollbarInset": "VerticalViewScrollbarInset", + "VerticalViewScrollbarMaxOpacity": "VerticalViewScrollbarMaxOpacity", + "VerticalViewScrollbarMode": "VerticalViewScrollbarMode", + "VerticalViewScrollbarOutline": "VerticalViewScrollbarOutline", + "VerticalViewScrollbarPosition": "VerticalViewScrollbarPosition", + "VerticalViewScrollbarShouldAddAutoTrackInsets": "VerticalViewScrollbarShouldAddAutoTrackInsets", + "VerticalViewScrollbarStrokeThickness": "VerticalViewScrollbarStrokeThickness", + "VerticalViewScrollbarTrackEndInset": "VerticalViewScrollbarTrackEndInset", + "VerticalViewScrollbarTrackStartInset": "VerticalViewScrollbarTrackStartInset", + "VerticalViewScrollbarWidth": "VerticalViewScrollbarWidth", + "WindowRect": "WindowRect", + "WindowRectMinHeight": "WindowRectMinHeight", + "WindowRectMinWidth": "WindowRectMinWidth", + "WindowSizeMinHeight": "WindowSizeMinHeight", + "WindowSizeMinWidth": "WindowSizeMinWidth" + } + } + ], + "DomainChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DomainChartDescriptionMetadata()": "DomainChartDescriptionMetadata()", + "DomainChartDescriptionMetadata": "DomainChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainChartPlotAreaPointerEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DomainChartPlotAreaPointerEventArgs", + "k": "class", + "s": "classes", + "m": { + "ChartPosition": "ChartPosition", + "PlotAreaPosition": "PlotAreaPosition", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DomainChartPlotAreaPointerEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartPlotAreaPointerEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DomainChartPlotAreaPointerEventArgsDescription()": "DomainChartPlotAreaPointerEventArgsDescription()", + "DomainChartPlotAreaPointerEventArgsDescription": "DomainChartPlotAreaPointerEventArgsDescription()", + "PlotAreaPosition": "PlotAreaPosition", + "Type": "Type" + } + } + ], + "DomainChartPlotAreaPointerEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartPlotAreaPointerEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DomainChartPlotAreaPointerEventArgsDescriptionMetadata()": "DomainChartPlotAreaPointerEventArgsDescriptionMetadata()", + "DomainChartPlotAreaPointerEventArgsDescriptionMetadata": "DomainChartPlotAreaPointerEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainChartSeriesPointerEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DomainChartSeriesPointerEventArgs", + "k": "class", + "s": "classes", + "m": { + "CancelSelection": "CancelSelection", + "ChartPosition": "ChartPosition", + "Item": "Item", + "PlotAreaPosition": "PlotAreaPosition", + "Series": "Series", + "WorldPosition": "WorldPosition", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DomainChartSeriesPointerEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartSeriesPointerEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DomainChartSeriesPointerEventArgsDescription()": "DomainChartSeriesPointerEventArgsDescription()", + "DomainChartSeriesPointerEventArgsDescription": "DomainChartSeriesPointerEventArgsDescription()", + "CancelSelection": "CancelSelection", + "ItemRef": "ItemRef", + "PlotAreaPosition": "PlotAreaPosition", + "SeriesRef": "SeriesRef", + "Type": "Type", + "WorldPosition": "WorldPosition" + } + } + ], + "DomainChartSeriesPointerEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartSeriesPointerEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DomainChartSeriesPointerEventArgsDescriptionMetadata()": "DomainChartSeriesPointerEventArgsDescriptionMetadata()", + "DomainChartSeriesPointerEventArgsDescriptionMetadata": "DomainChartSeriesPointerEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainChartTestingInfo": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DomainChartTestingInfo", + "k": "class", + "s": "classes", + "m": { + "DomainChartTestingInfo()": "DomainChartTestingInfo()", + "DomainChartTestingInfo": "DomainChartTestingInfo()", + "MainDataChart": "MainDataChart", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DomainChartTestingInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartTestingInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DomainChartTestingInfoDescription()": "DomainChartTestingInfoDescription()", + "DomainChartTestingInfoDescription": "DomainChartTestingInfoDescription()", + "MainDataChart": "MainDataChart", + "Type": "Type" + } + } + ], + "DomainChartTestingInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartTestingInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DomainChartTestingInfoDescriptionMetadata()": "DomainChartTestingInfoDescriptionMetadata()", + "DomainChartTestingInfoDescriptionMetadata": "DomainChartTestingInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainChartToolbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DomainChartToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DomainChartToolbarDescriptionModule()": "DomainChartToolbarDescriptionModule()", + "DomainChartToolbarDescriptionModule": "DomainChartToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/DomainType", + "k": "enum", + "s": "enums" + } + ], + "DoubleCollection": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/DoubleCollection", + "k": "class", + "s": "classes", + "m": { + "DoubleCollection()": "DoubleCollection()", + "DoubleCollection": "DoubleCollection()" + } + } + ], + "DoubleColumn": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DoubleColumn", + "k": "class", + "s": "classes", + "m": { + "DoubleColumn()": "DoubleColumn()", + "DoubleColumn": "DoubleColumn()", + "SetValues(object)": "SetValues(object)", + "SetValues": "SetValues(object)", + "Values": "Values" + } + } + ], + "DoubleValueChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoubleValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DoubleValueChangedEventArgs(double, double)": "DoubleValueChangedEventArgs(double, double)", + "DoubleValueChangedEventArgs": "DoubleValueChangedEventArgs(double, double)", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DoubleValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoubleValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DoubleValueChangedEventArgsDescription()": "DoubleValueChangedEventArgsDescription()", + "DoubleValueChangedEventArgsDescription": "DoubleValueChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "DoubleValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoubleValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DoubleValueChangedEventArgsDescriptionMetadata()": "DoubleValueChangedEventArgsDescriptionMetadata()", + "DoubleValueChangedEventArgsDescriptionMetadata": "DoubleValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoughnutChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartCoreDescriptionModule()": "DoughnutChartCoreDescriptionModule()", + "DoughnutChartCoreDescriptionModule": "DoughnutChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartDefaultTooltipsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoughnutChartDefaultTooltipsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDefaultTooltipsDescriptionMetadata()": "DoughnutChartDefaultTooltipsDescriptionMetadata()", + "DoughnutChartDefaultTooltipsDescriptionMetadata": "DoughnutChartDefaultTooltipsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoughnutChartDefaultTooltipsExtendedDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata()": "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata()", + "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata": "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoughnutChartDescription", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDescription()": "DoughnutChartDescription()", + "DoughnutChartDescription": "DoughnutChartDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AllowSliceExplosion": "AllowSliceExplosion", + "AllowSliceSelection": "AllowSliceSelection", + "Background": "Background", + "HoleDimensionsChangedRef": "HoleDimensionsChangedRef", + "InnerExtent": "InnerExtent", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "PixelScalingRatio": "PixelScalingRatio", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "Series": "Series", + "SliceClickRef": "SliceClickRef", + "Type": "Type" + } + } + ], + "DoughnutChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoughnutChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDescriptionMetadata()": "DoughnutChartDescriptionMetadata()", + "DoughnutChartDescriptionMetadata": "DoughnutChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoughnutChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDescriptionModule()": "DoughnutChartDescriptionModule()", + "DoughnutChartDescriptionModule": "DoughnutChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartInteractivityDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DoughnutChartInteractivityDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartInteractivityDescriptionModule()": "DoughnutChartInteractivityDescriptionModule()", + "DoughnutChartInteractivityDescriptionModule": "DoughnutChartInteractivityDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartLabelVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DoughnutChartLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartLabelVisualData()": "DoughnutChartLabelVisualData()", + "DoughnutChartLabelVisualData": "DoughnutChartLabelVisualData()", + "LabelPosition": "LabelPosition", + "LabelSize": "LabelSize", + "LabelValue": "LabelValue", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "DoughnutChartVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/DoughnutChartVisualData", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartVisualData()": "DoughnutChartVisualData()", + "DoughnutChartVisualData": "DoughnutChartVisualData()", + "DipScalingRatio": "DipScalingRatio", + "Height": "Height", + "HoleRadius": "HoleRadius", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Series": "Series", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "DownloadingMultiScaleImageEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DownloadingMultiScaleImageEventArgs", + "k": "class", + "s": "classes", + "m": { + "DownloadingMultiScaleImageEventArgs()": "DownloadingMultiScaleImageEventArgs()", + "DownloadingMultiScaleImageEventArgs": "DownloadingMultiScaleImageEventArgs()", + "AlternateDownloadHandler": "AlternateDownloadHandler", + "Uri": "Uri" + } + } + ], + "DownloadingMultiScaleImageEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DownloadingMultiScaleImageEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DownloadingMultiScaleImageEventArgsDescription()": "DownloadingMultiScaleImageEventArgsDescription()", + "DownloadingMultiScaleImageEventArgsDescription": "DownloadingMultiScaleImageEventArgsDescription()", + "Type": "Type", + "Uri": "Uri" + } + } + ], + "DownloadingMultiScaleImageEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DownloadingMultiScaleImageEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DownloadingMultiScaleImageEventArgsDescriptionMetadata()": "DownloadingMultiScaleImageEventArgsDescriptionMetadata()", + "DownloadingMultiScaleImageEventArgsDescriptionMetadata": "DownloadingMultiScaleImageEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DVInteractivityDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/DVInteractivityDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DVInteractivityDescriptionModule()": "DVInteractivityDescriptionModule()", + "DVInteractivityDescriptionModule": "DVInteractivityDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EaseOfMovementIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/EaseOfMovementIndicator", + "k": "class", + "s": "classes", + "m": { + "EaseOfMovementIndicator()": "EaseOfMovementIndicator()", + "EaseOfMovementIndicator": "EaseOfMovementIndicator()" + } + } + ], + "EaseOfMovementIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EaseOfMovementIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "EaseOfMovementIndicatorDescription()": "EaseOfMovementIndicatorDescription()", + "EaseOfMovementIndicatorDescription": "EaseOfMovementIndicatorDescription()", + "Type": "Type" + } + } + ], + "EaseOfMovementIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EaseOfMovementIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EaseOfMovementIndicatorDescriptionMetadata()": "EaseOfMovementIndicatorDescriptionMetadata()", + "EaseOfMovementIndicatorDescriptionMetadata": "EaseOfMovementIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EaseOfMovementIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EaseOfMovementIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "EaseOfMovementIndicatorDescriptionModule()": "EaseOfMovementIndicatorDescriptionModule()", + "EaseOfMovementIndicatorDescriptionModule": "EaseOfMovementIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EasingFunctions": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EasingFunctions", + "k": "class", + "s": "classes", + "m": { + "EasingFunctions()": "EasingFunctions()", + "EasingFunctions": "EasingFunctions()", + "CircleEase(double)": "CircleEase(double)", + "CircleEase": "CircleEase(double)", + "CubicEase(double)": "CubicEase(double)", + "CubicEase": "CubicEase(double)", + "ExponentialEase(double)": "ExponentialEase(double)", + "ExponentialEase": "ExponentialEase(double)" + } + } + ], + "EditModeClickAction": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/EditModeClickAction", + "k": "enum", + "s": "enums" + } + ], + "EditModeType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/EditModeType", + "k": "enum", + "s": "enums" + } + ], + "EditorCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/EditorCellInfo", + "k": "class", + "s": "classes", + "m": { + "EditorCellInfo()": "EditorCellInfo()", + "EditorCellInfo": "EditorCellInfo()", + "DataType": "DataType", + "DateFormatString": "DateFormatString", + "EditTarget": "EditTarget", + "EditValue": "EditValue", + "EditorItemsSource": "EditorItemsSource", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "ErrorMessage": "ErrorMessage", + "IsHidden": "IsHidden", + "ShowTodayButton": "ShowTodayButton", + "ShowTodayButtonPropertyName": "ShowTodayButtonPropertyName", + "TargetColumn": "TargetColumn", + "TargetRow": "TargetRow" + } + } + ], + "EditorCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditorCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "EditorCellInfoDescription()": "EditorCellInfoDescription()", + "EditorCellInfoDescription": "EditorCellInfoDescription()", + "DataType": "DataType", + "DateFormatString": "DateFormatString", + "EditTarget": "EditTarget", + "EditValueRef": "EditValueRef", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "ErrorMessage": "ErrorMessage", + "IsHidden": "IsHidden", + "ShowTodayButton": "ShowTodayButton", + "TargetColumn": "TargetColumn", + "TargetRow": "TargetRow", + "Type": "Type" + } + } + ], + "EditorCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditorCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EditorCellInfoDescriptionMetadata()": "EditorCellInfoDescriptionMetadata()", + "EditorCellInfoDescriptionMetadata": "EditorCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditorCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/EditorCellModelExport", + "k": "class", + "s": "classes", + "m": { + "EditorCellModelExport()": "EditorCellModelExport()", + "EditorCellModelExport": "EditorCellModelExport()", + "DataType": "DataType", + "EditValue": "EditValue", + "ErrorMessage": "ErrorMessage", + "IsHidden": "IsHidden", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "EditorDefinition": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/EditorDefinition", + "k": "class", + "s": "classes", + "m": { + "EditorDefinition()": "EditorDefinition()", + "EditorDefinition": "EditorDefinition()" + } + } + ], + "EditorDefinitionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditorDefinitionDescription", + "k": "class", + "s": "classes", + "m": { + "EditorDefinitionDescription()": "EditorDefinitionDescription()", + "EditorDefinitionDescription": "EditorDefinitionDescription()", + "Type": "Type" + } + } + ], + "EditorDefinitionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditorDefinitionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EditorDefinitionDescriptionMetadata()": "EditorDefinitionDescriptionMetadata()", + "EditorDefinitionDescriptionMetadata": "EditorDefinitionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditorDefinitionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditorDefinitionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "EditorDefinitionDescriptionModule()": "EditorDefinitionDescriptionModule()", + "EditorDefinitionDescriptionModule": "EditorDefinitionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditorRowCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/EditorRowCellInfo", + "k": "class", + "s": "classes", + "m": { + "EditorRowCellInfo()": "EditorRowCellInfo()", + "EditorRowCellInfo": "EditorRowCellInfo()" + } + } + ], + "EditorRowCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditorRowCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "EditorRowCellInfoDescription()": "EditorRowCellInfoDescription()", + "EditorRowCellInfoDescription": "EditorRowCellInfoDescription()", + "Type": "Type" + } + } + ], + "EditorRowCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditorRowCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EditorRowCellInfoDescriptionMetadata()": "EditorRowCellInfoDescriptionMetadata()", + "EditorRowCellInfoDescriptionMetadata": "EditorRowCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditorType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/EditorType", + "k": "enum", + "s": "enums" + } + ], + "EditRowDefinition": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/EditRowDefinition", + "k": "class", + "s": "classes", + "m": { + "EditRowDefinition()": "EditRowDefinition()", + "EditRowDefinition": "EditRowDefinition()" + } + } + ], + "EditRowDefinitionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditRowDefinitionDescription", + "k": "class", + "s": "classes", + "m": { + "EditRowDefinitionDescription()": "EditRowDefinitionDescription()", + "EditRowDefinitionDescription": "EditRowDefinitionDescription()", + "Type": "Type" + } + } + ], + "EditRowDefinitionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditRowDefinitionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EditRowDefinitionDescriptionMetadata()": "EditRowDefinitionDescriptionMetadata()", + "EditRowDefinitionDescriptionMetadata": "EditRowDefinitionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditRowDefinitionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EditRowDefinitionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "EditRowDefinitionDescriptionModule()": "EditRowDefinitionDescriptionModule()", + "EditRowDefinitionDescriptionModule": "EditRowDefinitionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ElevationMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ElevationMode", + "k": "enum", + "s": "enums" + } + ], + "EllipseGeometryData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EllipseGeometryData", + "k": "class", + "s": "classes", + "m": { + "EllipseGeometryData()": "EllipseGeometryData()", + "EllipseGeometryData": "EllipseGeometryData()", + "CenterX": "CenterX", + "CenterY": "CenterY", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "EllipseVisualData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EllipseVisualData", + "k": "class", + "s": "classes", + "m": { + "EllipseVisualData()": "EllipseVisualData()", + "EllipseVisualData": "EllipseVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Height": "Height", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "Width": "Width" + } + } + ], + "EmbeddedRefDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/EmbeddedRefDescription", + "k": "class", + "s": "classes", + "m": { + "EmbeddedRefDescription()": "EmbeddedRefDescription()", + "EmbeddedRefDescription": "EmbeddedRefDescription()", + "RefType": "RefType", + "Type": "Type", + "Value": "Value" + } + } + ], + "EmitIgnoreAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/EmitIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "EmitIgnoreAttribute()": "EmitIgnoreAttribute()", + "EmitIgnoreAttribute": "EmitIgnoreAttribute()" + } + } + ], + "EmitIgnoreSpecificAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/EmitIgnoreSpecificAttribute", + "k": "class", + "s": "classes", + "m": { + "EmitIgnoreSpecificAttribute()": "EmitIgnoreSpecificAttribute()", + "EmitIgnoreSpecificAttribute": "EmitIgnoreSpecificAttribute()" + } + } + ], + "EmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/EmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "EmitIgnoreTypeAttribute()": "EmitIgnoreTypeAttribute()", + "EmitIgnoreTypeAttribute": "EmitIgnoreTypeAttribute()" + } + } + ], + "EncodingUtilities": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/EncodingUtilities", + "k": "class", + "s": "classes", + "m": { + "RegisterEncodingProvider()": "RegisterEncodingProvider()", + "RegisterEncodingProvider": "RegisterEncodingProvider()", + "SetRegistrationAction(Action)": "SetRegistrationAction(Action)", + "SetRegistrationAction": "SetRegistrationAction(Action)" + } + } + ], + "EnterKeyBehaviorAfterEdit": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/EnterKeyBehaviorAfterEdit", + "k": "enum", + "s": "enums" + } + ], + "EnterKeyBehaviors": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/EnterKeyBehaviors", + "k": "enum", + "s": "enums" + } + ], + "ExpansionPanelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ExpansionPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ExpansionPanelDescription()": "ExpansionPanelDescription()", + "ExpansionPanelDescription": "ExpansionPanelDescription()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualCaptionTextColor": "ActualCaptionTextColor", + "ActualDescriptionTextColor": "ActualDescriptionTextColor", + "ActualElevation": "ActualElevation", + "ActualHeaderBackgroundColor": "ActualHeaderBackgroundColor", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "Caption": "Caption", + "CaptionCollapsedTextColor": "CaptionCollapsedTextColor", + "CaptionExpandedTextColor": "CaptionExpandedTextColor", + "CaptionTextColor": "CaptionTextColor", + "DescriptionCollapsedTextColor": "DescriptionCollapsedTextColor", + "DescriptionExpandedTextColor": "DescriptionExpandedTextColor", + "DescriptionText": "DescriptionText", + "DescriptionTextColor": "DescriptionTextColor", + "Elevation": "Elevation", + "Expanded": "Expanded", + "HeaderBackgroundColor": "HeaderBackgroundColor", + "HeaderCollapsedBackgroundColor": "HeaderCollapsedBackgroundColor", + "HeaderExpandedBackgroundColor": "HeaderExpandedBackgroundColor", + "OnCollapsedRef": "OnCollapsedRef", + "OnExpandedRef": "OnExpandedRef", + "Type": "Type" + } + } + ], + "ExpansionPanelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ExpansionPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ExpansionPanelDescriptionMetadata()": "ExpansionPanelDescriptionMetadata()", + "ExpansionPanelDescriptionMetadata": "ExpansionPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ExpansionPanelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ExpansionPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ExpansionPanelDescriptionModule()": "ExpansionPanelDescriptionModule()", + "ExpansionPanelDescriptionModule": "ExpansionPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FastReflectionHelper": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FastReflectionHelper", + "k": "class", + "s": "classes", + "m": { + "FastReflectionHelper()": "FastReflectionHelper()", + "FastReflectionHelper": "FastReflectionHelper()", + "FastReflectionHelper(bool, string)": "FastReflectionHelper(bool, string)", + "GetPropertyValue(object)": "GetPropertyValue(object)", + "GetPropertyValue": "GetPropertyValue(object)", + "GetPropertyValue(Type, object)": "GetPropertyValue(Type, object)", + "Invalid": "Invalid", + "PropertyName": "PropertyName", + "SetPropertyValue(object, object)": "SetPropertyValue(object, object)", + "SetPropertyValue": "SetPropertyValue(object, object)", + "UseTraditionalReflection": "UseTraditionalReflection" + } + } + ], + "FastStochasticOscillatorIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FastStochasticOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "FastStochasticOscillatorIndicator()": "FastStochasticOscillatorIndicator()", + "FastStochasticOscillatorIndicator": "FastStochasticOscillatorIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "FastStochasticOscillatorIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FastStochasticOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "FastStochasticOscillatorIndicatorDescription()": "FastStochasticOscillatorIndicatorDescription()", + "FastStochasticOscillatorIndicatorDescription": "FastStochasticOscillatorIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "FastStochasticOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FastStochasticOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FastStochasticOscillatorIndicatorDescriptionMetadata()": "FastStochasticOscillatorIndicatorDescriptionMetadata()", + "FastStochasticOscillatorIndicatorDescriptionMetadata": "FastStochasticOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FastStochasticOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FastStochasticOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FastStochasticOscillatorIndicatorDescriptionModule()": "FastStochasticOscillatorIndicatorDescriptionModule()", + "FastStochasticOscillatorIndicatorDescriptionModule": "FastStochasticOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FeatureState": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/FeatureState", + "k": "enum", + "s": "enums" + } + ], + "FilterCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/FilterCellInfo", + "k": "class", + "s": "classes", + "m": { + "FilterCellInfo()": "FilterCellInfo()", + "FilterCellInfo": "FilterCellInfo()", + "ClearIconLeft": "ClearIconLeft", + "ClearIconTop": "ClearIconTop", + "DataType": "DataType", + "EditorLeft": "EditorLeft", + "EditorTop": "EditorTop", + "Filter": "Filter", + "FilterExpression": "FilterExpression", + "FilterOperands": "FilterOperands", + "FilterValue": "FilterValue", + "OperatorType": "OperatorType", + "SelectorLeft": "SelectorLeft", + "SelectorTop": "SelectorTop" + } + } + ], + "FilterCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "FilterCellInfoDescription()": "FilterCellInfoDescription()", + "FilterCellInfoDescription": "FilterCellInfoDescription()", + "ClearIconLeft": "ClearIconLeft", + "ClearIconTop": "ClearIconTop", + "DataType": "DataType", + "EditorLeft": "EditorLeft", + "EditorTop": "EditorTop", + "Filter": "Filter", + "FilterExpression": "FilterExpression", + "FilterOperands": "FilterOperands", + "FilterValueRef": "FilterValueRef", + "OperatorType": "OperatorType", + "SelectorLeft": "SelectorLeft", + "SelectorTop": "SelectorTop", + "Type": "Type" + } + } + ], + "FilterCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterCellInfoDescriptionMetadata()": "FilterCellInfoDescriptionMetadata()", + "FilterCellInfoDescriptionMetadata": "FilterCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/FilterCellModelExport", + "k": "class", + "s": "classes", + "m": { + "FilterCellModelExport()": "FilterCellModelExport()", + "FilterCellModelExport": "FilterCellModelExport()", + "ClearIconLeft": "ClearIconLeft", + "ClearIconTop": "ClearIconTop", + "DataType": "DataType", + "EditorLeft": "EditorLeft", + "EditorTop": "EditorTop", + "FilterValue": "FilterValue", + "IsEnabled": "IsEnabled", + "OperatorType": "OperatorType", + "SelectorLeft": "SelectorLeft", + "SelectorTop": "SelectorTop", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "FilterComparisonType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/FilterComparisonType", + "k": "enum", + "s": "enums" + } + ], + "FilterDialogRenderCompletedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/FilterDialogRenderCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "FilterDialogRenderCompletedEventArgs()": "FilterDialogRenderCompletedEventArgs()", + "FilterDialogRenderCompletedEventArgs": "FilterDialogRenderCompletedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FilterDialogRenderCompletedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterDialogRenderCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FilterDialogRenderCompletedEventArgsDescription()": "FilterDialogRenderCompletedEventArgsDescription()", + "FilterDialogRenderCompletedEventArgsDescription": "FilterDialogRenderCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "FilterDialogRenderCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterDialogRenderCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterDialogRenderCompletedEventArgsDescriptionMetadata()": "FilterDialogRenderCompletedEventArgsDescriptionMetadata()", + "FilterDialogRenderCompletedEventArgsDescriptionMetadata": "FilterDialogRenderCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterExpression", + "k": "class", + "s": "classes", + "m": { + "FilterExpression()": "FilterExpression()", + "FilterExpression": "FilterExpression()", + "Add(IFilterExpression)": "Add(IFilterExpression)", + "Add": "Add(IFilterExpression)", + "Add(object)": "Add(object)", + "And(IFilterExpression)": "And(IFilterExpression)", + "And": "And(IFilterExpression)", + "Cast(DataSourceSchemaPropertyType)": "Cast(DataSourceSchemaPropertyType)", + "Cast": "Cast(DataSourceSchemaPropertyType)", + "Cast(string)": "Cast(string)", + "Ceiling()": "Ceiling()", + "Ceiling": "Ceiling()", + "Concat(IFilterExpression)": "Concat(IFilterExpression)", + "Concat": "Concat(IFilterExpression)", + "Concat(string)": "Concat(string)", + "Contains(IFilterExpression)": "Contains(IFilterExpression)", + "Contains": "Contains(IFilterExpression)", + "Contains(string)": "Contains(string)", + "Date()": "Date()", + "Date": "Date()", + "Day()": "Day()", + "Day": "Day()", + "Divide(IFilterExpression)": "Divide(IFilterExpression)", + "Divide": "Divide(IFilterExpression)", + "Divide(object)": "Divide(object)", + "DividedBy(IFilterExpression)": "DividedBy(IFilterExpression)", + "DividedBy": "DividedBy(IFilterExpression)", + "DividedBy(object)": "DividedBy(object)", + "EndsWith(IFilterExpression)": "EndsWith(IFilterExpression)", + "EndsWith": "EndsWith(IFilterExpression)", + "EndsWith(string)": "EndsWith(string)", + "Env(string)": "Env(string)", + "Env": "Env(string)", + "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)": "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)", + "Evaluate": "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "Floor()": "Floor()", + "Floor": "Floor()", + "Function(FilterExpressionFunctionType, params IFilterExpression[])": "Function(FilterExpressionFunctionType, params IFilterExpression[])", + "Function": "Function(FilterExpressionFunctionType, params IFilterExpression[])", + "Group()": "Group()", + "Group": "Group()", + "Hour()": "Hour()", + "Hour": "Hour()", + "IndexOf(IFilterExpression)": "IndexOf(IFilterExpression)", + "IndexOf": "IndexOf(IFilterExpression)", + "IndexOf(string)": "IndexOf(string)", + "IsAutoGenerated": "IsAutoGenerated", + "IsEqualTo(IFilterExpression)": "IsEqualTo(IFilterExpression)", + "IsEqualTo": "IsEqualTo(IFilterExpression)", + "IsEqualTo(object)": "IsEqualTo(object)", + "IsFilterExpression(object)": "IsFilterExpression(object)", + "IsFilterExpression": "IsFilterExpression(object)", + "IsFunction": "IsFunction", + "IsGreaterThan(IFilterExpression)": "IsGreaterThan(IFilterExpression)", + "IsGreaterThan": "IsGreaterThan(IFilterExpression)", + "IsGreaterThan(object)": "IsGreaterThan(object)", + "IsGreaterThanOrEqualTo(IFilterExpression)": "IsGreaterThanOrEqualTo(IFilterExpression)", + "IsGreaterThanOrEqualTo": "IsGreaterThanOrEqualTo(IFilterExpression)", + "IsGreaterThanOrEqualTo(object)": "IsGreaterThanOrEqualTo(object)", + "IsLast30Days()": "IsLast30Days()", + "IsLast30Days": "IsLast30Days()", + "IsLast365Days()": "IsLast365Days()", + "IsLast365Days": "IsLast365Days()", + "IsLast7Days()": "IsLast7Days()", + "IsLast7Days": "IsLast7Days()", + "IsLastMonth()": "IsLastMonth()", + "IsLastMonth": "IsLastMonth()", + "IsLastQuarter()": "IsLastQuarter()", + "IsLastQuarter": "IsLastQuarter()", + "IsLastWeek()": "IsLastWeek()", + "IsLastWeek": "IsLastWeek()", + "IsLastYear()": "IsLastYear()", + "IsLastYear": "IsLastYear()", + "IsLessThan(IFilterExpression)": "IsLessThan(IFilterExpression)", + "IsLessThan": "IsLessThan(IFilterExpression)", + "IsLessThan(object)": "IsLessThan(object)", + "IsLessThanOrEqualTo(IFilterExpression)": "IsLessThanOrEqualTo(IFilterExpression)", + "IsLessThanOrEqualTo": "IsLessThanOrEqualTo(IFilterExpression)", + "IsLessThanOrEqualTo(object)": "IsLessThanOrEqualTo(object)", + "IsLiteral": "IsLiteral", + "IsMonthToDate()": "IsMonthToDate()", + "IsMonthToDate": "IsMonthToDate()", + "IsNextMonth()": "IsNextMonth()", + "IsNextMonth": "IsNextMonth()", + "IsNextQuarter()": "IsNextQuarter()", + "IsNextQuarter": "IsNextQuarter()", + "IsNextWeek()": "IsNextWeek()", + "IsNextWeek": "IsNextWeek()", + "IsNextYear()": "IsNextYear()", + "IsNextYear": "IsNextYear()", + "IsNotEqualTo(IFilterExpression)": "IsNotEqualTo(IFilterExpression)", + "IsNotEqualTo": "IsNotEqualTo(IFilterExpression)", + "IsNotEqualTo(object)": "IsNotEqualTo(object)", + "IsNull": "IsNull", + "IsOf(DataSourceSchemaPropertyType)": "IsOf(DataSourceSchemaPropertyType)", + "IsOf": "IsOf(DataSourceSchemaPropertyType)", + "IsOf(string)": "IsOf(string)", + "IsOperation": "IsOperation", + "IsPropertyReference": "IsPropertyReference", + "IsQ1()": "IsQ1()", + "IsQ1": "IsQ1()", + "IsQ2()": "IsQ2()", + "IsQ2": "IsQ2()", + "IsQ3()": "IsQ3()", + "IsQ3": "IsQ3()", + "IsQ4()": "IsQ4()", + "IsQ4": "IsQ4()", + "IsQuarterToDate()": "IsQuarterToDate()", + "IsQuarterToDate": "IsQuarterToDate()", + "IsSchemaType(object)": "IsSchemaType(object)", + "IsSchemaType": "IsSchemaType(object)", + "IsThisMonth()": "IsThisMonth()", + "IsThisMonth": "IsThisMonth()", + "IsThisQuarter()": "IsThisQuarter()", + "IsThisQuarter": "IsThisQuarter()", + "IsThisWeek()": "IsThisWeek()", + "IsThisWeek": "IsThisWeek()", + "IsThisYear()": "IsThisYear()", + "IsThisYear": "IsThisYear()", + "IsToday()": "IsToday()", + "IsToday": "IsToday()", + "IsTomorrow()": "IsTomorrow()", + "IsTomorrow": "IsTomorrow()", + "IsTrailingTwelveMonths()": "IsTrailingTwelveMonths()", + "IsTrailingTwelveMonths": "IsTrailingTwelveMonths()", + "IsWrapper": "IsWrapper", + "IsYearToDate()": "IsYearToDate()", + "IsYearToDate": "IsYearToDate()", + "IsYesterday()": "IsYesterday()", + "IsYesterday": "IsYesterday()", + "Length()": "Length()", + "Length": "Length()", + "Literal(object)": "Literal(object)", + "Literal": "Literal(object)", + "MarkAutoGenerated()": "MarkAutoGenerated()", + "MarkAutoGenerated": "MarkAutoGenerated()", + "Match(object, IDataSourceDataProvider, IDataSourceSchema)": "Match(object, IDataSourceDataProvider, IDataSourceSchema)", + "Match": "Match(object, IDataSourceDataProvider, IDataSourceSchema)", + "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "MatchWithEnvironment": "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "Minus(IFilterExpression)": "Minus(IFilterExpression)", + "Minus": "Minus(IFilterExpression)", + "Minus(object)": "Minus(object)", + "Minute()": "Minute()", + "Minute": "Minute()", + "Modulo(IFilterExpression)": "Modulo(IFilterExpression)", + "Modulo": "Modulo(IFilterExpression)", + "Modulo(object)": "Modulo(object)", + "Month()": "Month()", + "Month": "Month()", + "Multiply(IFilterExpression)": "Multiply(IFilterExpression)", + "Multiply": "Multiply(IFilterExpression)", + "Multiply(object)": "Multiply(object)", + "Not()": "Not()", + "Not": "Not()", + "Now()": "Now()", + "Now": "Now()", + "NullLiteral()": "NullLiteral()", + "NullLiteral": "NullLiteral()", + "Operation(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)": "Operation(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)", + "Operation": "Operation(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)", + "Operation(IFilterExpression, FilterExpressionOperatorType, object)": "Operation(IFilterExpression, FilterExpressionOperatorType, object)", + "Operation(string, FilterExpressionOperatorType, IFilterExpression)": "Operation(string, FilterExpressionOperatorType, IFilterExpression)", + "Operation(string, FilterExpressionOperatorType, object)": "Operation(string, FilterExpressionOperatorType, object)", + "Or(IFilterExpression)": "Or(IFilterExpression)", + "Or": "Or(IFilterExpression)", + "Plus(IFilterExpression)": "Plus(IFilterExpression)", + "Plus": "Plus(IFilterExpression)", + "Plus(object)": "Plus(object)", + "Precedence": "Precedence", + "Property(string)": "Property(string)", + "Property": "Property(string)", + "Replace(IFilterExpression, IFilterExpression)": "Replace(IFilterExpression, IFilterExpression)", + "Replace": "Replace(IFilterExpression, IFilterExpression)", + "Replace(IFilterExpression, string)": "Replace(IFilterExpression, string)", + "Replace(string, IFilterExpression)": "Replace(string, IFilterExpression)", + "Replace(string, string)": "Replace(string, string)", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()", + "Round()": "Round()", + "Round": "Round()", + "Second()": "Second()", + "Second": "Second()", + "StartsWith(IFilterExpression)": "StartsWith(IFilterExpression)", + "StartsWith": "StartsWith(IFilterExpression)", + "StartsWith(string)": "StartsWith(string)", + "Substring(IFilterExpression)": "Substring(IFilterExpression)", + "Substring": "Substring(IFilterExpression)", + "Substring(IFilterExpression, IFilterExpression)": "Substring(IFilterExpression, IFilterExpression)", + "Substring(IFilterExpression, int)": "Substring(IFilterExpression, int)", + "Substring(int)": "Substring(int)", + "Substring(int, IFilterExpression)": "Substring(int, IFilterExpression)", + "Substring(int, int)": "Substring(int, int)", + "Subtract(IFilterExpression)": "Subtract(IFilterExpression)", + "Subtract": "Subtract(IFilterExpression)", + "Subtract(object)": "Subtract(object)", + "Time()": "Time()", + "Time": "Time()", + "Times(IFilterExpression)": "Times(IFilterExpression)", + "Times": "Times(IFilterExpression)", + "Times(object)": "Times(object)", + "ToLower()": "ToLower()", + "ToLower": "ToLower()", + "ToUpper()": "ToUpper()", + "ToUpper": "ToUpper()", + "Trim()": "Trim()", + "Trim": "Trim()", + "UnquotedLiteral(string)": "UnquotedLiteral(string)", + "UnquotedLiteral": "UnquotedLiteral(string)", + "UpdateBooleanReturn()": "UpdateBooleanReturn()", + "UpdateBooleanReturn": "UpdateBooleanReturn()", + "Year()": "Year()", + "Year": "Year()" + } + } + ], + "FilterExpressionCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterExpressionCollection", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionCollection()": "FilterExpressionCollection()", + "FilterExpressionCollection": "FilterExpressionCollection()" + } + } + ], + "FilterExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionDescription()": "FilterExpressionDescription()", + "FilterExpressionDescription": "FilterExpressionDescription()", + "IsAutoGenerated": "IsAutoGenerated", + "IsFunction": "IsFunction", + "IsLiteral": "IsLiteral", + "IsNull": "IsNull", + "IsOperation": "IsOperation", + "IsPropertyReference": "IsPropertyReference", + "IsWrapper": "IsWrapper", + "Precedence": "Precedence", + "Type": "Type" + } + } + ], + "FilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionDescriptionMetadata()": "FilterExpressionDescriptionMetadata()", + "FilterExpressionDescriptionMetadata": "FilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterExpressionEnvironment": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterExpressionEnvironment", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionEnvironment()": "FilterExpressionEnvironment()", + "FilterExpressionEnvironment": "FilterExpressionEnvironment()", + "GetVariableValue(string)": "GetVariableValue(string)", + "GetVariableValue": "GetVariableValue(string)", + "HasVariable(string)": "HasVariable(string)", + "HasVariable": "HasVariable(string)", + "SetVariableValue(string, object)": "SetVariableValue(string, object)", + "SetVariableValue": "SetVariableValue(string, object)" + } + } + ], + "FilterExpressionFunctionType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/FilterExpressionFunctionType", + "k": "enum", + "s": "enums" + } + ], + "FilterExpressionOperatorType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/FilterExpressionOperatorType", + "k": "enum", + "s": "enums" + } + ], + "FilterExpressionParsingHelper": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterExpressionParsingHelper", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionParsingHelper()": "FilterExpressionParsingHelper()", + "FilterExpressionParsingHelper": "FilterExpressionParsingHelper()", + "GetFilterExpression(string)": "GetFilterExpression(string)", + "GetFilterExpression": "GetFilterExpression(string)" + } + } + ], + "FilterExpressionParsingResult": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterExpressionParsingResult", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionParsingResult()": "FilterExpressionParsingResult()", + "FilterExpressionParsingResult": "FilterExpressionParsingResult()", + "Errors": "Errors", + "Result": "Result" + } + } + ], + "FilterExpressionVisitor": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterExpressionVisitor", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionVisitor()": "FilterExpressionVisitor()", + "FilterExpressionVisitor": "FilterExpressionVisitor()", + "Visit(IFilterExpression)": "Visit(IFilterExpression)", + "Visit": "Visit(IFilterExpression)", + "VisitFunctionExpression(IFunctionFilterExpression)": "VisitFunctionExpression(IFunctionFilterExpression)", + "VisitFunctionExpression": "VisitFunctionExpression(IFunctionFilterExpression)", + "VisitLiteralExpression(ILiteralFilterExpression)": "VisitLiteralExpression(ILiteralFilterExpression)", + "VisitLiteralExpression": "VisitLiteralExpression(ILiteralFilterExpression)", + "VisitOperationExpression(IOperationFilterExpression)": "VisitOperationExpression(IOperationFilterExpression)", + "VisitOperationExpression": "VisitOperationExpression(IOperationFilterExpression)", + "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)", + "VisitPropertyReferenceExpression": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)" + } + } + ], + "FilterExpressionWrapperType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/FilterExpressionWrapperType", + "k": "enum", + "s": "enums" + } + ], + "FilterFactory": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterFactory", + "k": "class", + "s": "classes", + "m": { + "FilterFactory()": "FilterFactory()", + "FilterFactory": "FilterFactory()", + "Add(IFilterExpression, IFilterExpression)": "Add(IFilterExpression, IFilterExpression)", + "Add": "Add(IFilterExpression, IFilterExpression)", + "And(IFilterExpression, IFilterExpression)": "And(IFilterExpression, IFilterExpression)", + "And": "And(IFilterExpression, IFilterExpression)", + "Build(DataSourceFilterBuilderBuildCallback)": "Build(DataSourceFilterBuilderBuildCallback)", + "Build": "Build(DataSourceFilterBuilderBuildCallback)", + "Cast(IFilterExpression, DataSourceSchemaPropertyType)": "Cast(IFilterExpression, DataSourceSchemaPropertyType)", + "Cast": "Cast(IFilterExpression, DataSourceSchemaPropertyType)", + "Ceiling(IFilterExpression)": "Ceiling(IFilterExpression)", + "Ceiling": "Ceiling(IFilterExpression)", + "Concat(IFilterExpression, IFilterExpression)": "Concat(IFilterExpression, IFilterExpression)", + "Concat": "Concat(IFilterExpression, IFilterExpression)", + "Concat(IFilterExpression, string)": "Concat(IFilterExpression, string)", + "Contains(IFilterExpression, IFilterExpression)": "Contains(IFilterExpression, IFilterExpression)", + "Contains": "Contains(IFilterExpression, IFilterExpression)", + "Contains(IFilterExpression, string)": "Contains(IFilterExpression, string)", + "Date(IFilterExpression)": "Date(IFilterExpression)", + "Date": "Date(IFilterExpression)", + "Day(IFilterExpression)": "Day(IFilterExpression)", + "Day": "Day(IFilterExpression)", + "Divide(IFilterExpression, IFilterExpression)": "Divide(IFilterExpression, IFilterExpression)", + "Divide": "Divide(IFilterExpression, IFilterExpression)", + "EndsWith(IFilterExpression, IFilterExpression)": "EndsWith(IFilterExpression, IFilterExpression)", + "EndsWith": "EndsWith(IFilterExpression, IFilterExpression)", + "EndsWith(IFilterExpression, string)": "EndsWith(IFilterExpression, string)", + "Env(IFilterExpression)": "Env(IFilterExpression)", + "Env": "Env(IFilterExpression)", + "Equal(IFilterExpression, IFilterExpression)": "Equal(IFilterExpression, IFilterExpression)", + "Equal": "Equal(IFilterExpression, IFilterExpression)", + "Floor(IFilterExpression)": "Floor(IFilterExpression)", + "Floor": "Floor(IFilterExpression)", + "GreaterThan(IFilterExpression, IFilterExpression)": "GreaterThan(IFilterExpression, IFilterExpression)", + "GreaterThan": "GreaterThan(IFilterExpression, IFilterExpression)", + "GreaterThanOrEqual(IFilterExpression, IFilterExpression)": "GreaterThanOrEqual(IFilterExpression, IFilterExpression)", + "GreaterThanOrEqual": "GreaterThanOrEqual(IFilterExpression, IFilterExpression)", + "Group(IFilterExpression)": "Group(IFilterExpression)", + "Group": "Group(IFilterExpression)", + "Hour(IFilterExpression)": "Hour(IFilterExpression)", + "Hour": "Hour(IFilterExpression)", + "IndexOf(IFilterExpression, IFilterExpression)": "IndexOf(IFilterExpression, IFilterExpression)", + "IndexOf": "IndexOf(IFilterExpression, IFilterExpression)", + "IndexOf(IFilterExpression, string)": "IndexOf(IFilterExpression, string)", + "Instance": "Instance", + "IsOf(IFilterExpression, DataSourceSchemaPropertyType)": "IsOf(IFilterExpression, DataSourceSchemaPropertyType)", + "IsOf": "IsOf(IFilterExpression, DataSourceSchemaPropertyType)", + "Length(IFilterExpression)": "Length(IFilterExpression)", + "Length": "Length(IFilterExpression)", + "LessThan(IFilterExpression, IFilterExpression)": "LessThan(IFilterExpression, IFilterExpression)", + "LessThan": "LessThan(IFilterExpression, IFilterExpression)", + "LessThanOrEqual(IFilterExpression, IFilterExpression)": "LessThanOrEqual(IFilterExpression, IFilterExpression)", + "LessThanOrEqual": "LessThanOrEqual(IFilterExpression, IFilterExpression)", + "Literal(object)": "Literal(object)", + "Literal": "Literal(object)", + "Minute(IFilterExpression)": "Minute(IFilterExpression)", + "Minute": "Minute(IFilterExpression)", + "Modulus(IFilterExpression, IFilterExpression)": "Modulus(IFilterExpression, IFilterExpression)", + "Modulus": "Modulus(IFilterExpression, IFilterExpression)", + "Month(IFilterExpression)": "Month(IFilterExpression)", + "Month": "Month(IFilterExpression)", + "Multiply(IFilterExpression, IFilterExpression)": "Multiply(IFilterExpression, IFilterExpression)", + "Multiply": "Multiply(IFilterExpression, IFilterExpression)", + "Not(IFilterExpression)": "Not(IFilterExpression)", + "Not": "Not(IFilterExpression)", + "NotEqual(IFilterExpression, IFilterExpression)": "NotEqual(IFilterExpression, IFilterExpression)", + "NotEqual": "NotEqual(IFilterExpression, IFilterExpression)", + "Now()": "Now()", + "Now": "Now()", + "Or(IFilterExpression, IFilterExpression)": "Or(IFilterExpression, IFilterExpression)", + "Or": "Or(IFilterExpression, IFilterExpression)", + "Property(string)": "Property(string)", + "Property": "Property(string)", + "Replace(IFilterExpression, IFilterExpression, IFilterExpression)": "Replace(IFilterExpression, IFilterExpression, IFilterExpression)", + "Replace": "Replace(IFilterExpression, IFilterExpression, IFilterExpression)", + "Replace(IFilterExpression, IFilterExpression, string)": "Replace(IFilterExpression, IFilterExpression, string)", + "Replace(IFilterExpression, string, IFilterExpression)": "Replace(IFilterExpression, string, IFilterExpression)", + "Replace(IFilterExpression, string, string)": "Replace(IFilterExpression, string, string)", + "Round(IFilterExpression)": "Round(IFilterExpression)", + "Round": "Round(IFilterExpression)", + "Second(IFilterExpression)": "Second(IFilterExpression)", + "Second": "Second(IFilterExpression)", + "StartsWith(IFilterExpression, IFilterExpression)": "StartsWith(IFilterExpression, IFilterExpression)", + "StartsWith": "StartsWith(IFilterExpression, IFilterExpression)", + "StartsWith(IFilterExpression, string)": "StartsWith(IFilterExpression, string)", + "Substring(IFilterExpression, IFilterExpression)": "Substring(IFilterExpression, IFilterExpression)", + "Substring": "Substring(IFilterExpression, IFilterExpression)", + "Substring(IFilterExpression, IFilterExpression, IFilterExpression)": "Substring(IFilterExpression, IFilterExpression, IFilterExpression)", + "Substring(IFilterExpression, IFilterExpression, int)": "Substring(IFilterExpression, IFilterExpression, int)", + "Substring(IFilterExpression, int)": "Substring(IFilterExpression, int)", + "Substring(IFilterExpression, int, IFilterExpression)": "Substring(IFilterExpression, int, IFilterExpression)", + "Substring(IFilterExpression, int, int)": "Substring(IFilterExpression, int, int)", + "Subtract(IFilterExpression, IFilterExpression)": "Subtract(IFilterExpression, IFilterExpression)", + "Subtract": "Subtract(IFilterExpression, IFilterExpression)", + "Time(IFilterExpression)": "Time(IFilterExpression)", + "Time": "Time(IFilterExpression)", + "ToLower(IFilterExpression)": "ToLower(IFilterExpression)", + "ToLower": "ToLower(IFilterExpression)", + "ToUpper(IFilterExpression)": "ToUpper(IFilterExpression)", + "ToUpper": "ToUpper(IFilterExpression)", + "TodayOverride": "TodayOverride", + "Trim(IFilterExpression)": "Trim(IFilterExpression)", + "Trim": "Trim(IFilterExpression)", + "Year(IFilterExpression)": "Year(IFilterExpression)", + "Year": "Year(IFilterExpression)" + } + } + ], + "FilterLogicalOperator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/FilterLogicalOperator", + "k": "enum", + "s": "enums" + } + ], + "FilterOperand": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/FilterOperand", + "k": "class", + "s": "classes", + "m": { + "FilterOperand()": "FilterOperand()", + "FilterOperand": "FilterOperand()", + "DisplayName": "DisplayName", + "EditorType": "EditorType", + "FilterFactory": "FilterFactory", + "ID": "ID", + "Icon": "Icon", + "IsInputRequired": "IsInputRequired", + "OnFilterRequested(GridCustomFilterRequestedEventArgs)": "OnFilterRequested(GridCustomFilterRequestedEventArgs)", + "OnFilterRequested": "OnFilterRequested(GridCustomFilterRequestedEventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FilterOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterOperandDescription", + "k": "class", + "s": "classes", + "m": { + "FilterOperandDescription()": "FilterOperandDescription()", + "FilterOperandDescription": "FilterOperandDescription()", + "DisplayName": "DisplayName", + "EditorType": "EditorType", + "FilterRequestedRef": "FilterRequestedRef", + "ID": "ID", + "Icon": "Icon", + "IsInputRequired": "IsInputRequired", + "Type": "Type" + } + } + ], + "FilterOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterOperandDescriptionMetadata()": "FilterOperandDescriptionMetadata()", + "FilterOperandDescriptionMetadata": "FilterOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterOperandDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterOperandDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FilterOperandDescriptionModule()": "FilterOperandDescriptionModule()", + "FilterOperandDescriptionModule": "FilterOperandDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterRowDefinition": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/FilterRowDefinition", + "k": "class", + "s": "classes", + "m": { + "FilterRowDefinition()": "FilterRowDefinition()", + "FilterRowDefinition": "FilterRowDefinition()", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty" + } + } + ], + "FilterRowDefinitionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterRowDefinitionDescription", + "k": "class", + "s": "classes", + "m": { + "FilterRowDefinitionDescription()": "FilterRowDefinitionDescription()", + "FilterRowDefinitionDescription": "FilterRowDefinitionDescription()", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "Type": "Type" + } + } + ], + "FilterRowDefinitionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterRowDefinitionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterRowDefinitionDescriptionMetadata()": "FilterRowDefinitionDescriptionMetadata()", + "FilterRowDefinitionDescriptionMetadata": "FilterRowDefinitionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterRowDefinitionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterRowDefinitionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FilterRowDefinitionDescriptionModule()": "FilterRowDefinitionDescriptionModule()", + "FilterRowDefinitionDescriptionModule": "FilterRowDefinitionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterStringErrorsParsingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FilterStringErrorsParsingEventArgs", + "k": "class", + "s": "classes", + "m": { + "Errors": "Errors", + "PropertyName": "PropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FilterStringErrorsParsingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterStringErrorsParsingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FilterStringErrorsParsingEventArgsDescription()": "FilterStringErrorsParsingEventArgsDescription()", + "FilterStringErrorsParsingEventArgsDescription": "FilterStringErrorsParsingEventArgsDescription()", + "Errors": "Errors", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "FilterStringErrorsParsingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FilterStringErrorsParsingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterStringErrorsParsingEventArgsDescriptionMetadata()": "FilterStringErrorsParsingEventArgsDescriptionMetadata()", + "FilterStringErrorsParsingEventArgsDescriptionMetadata": "FilterStringErrorsParsingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterUIType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/FilterUIType", + "k": "enum", + "s": "enums" + } + ], + "FinalValueLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FinalValueLayer", + "k": "class", + "s": "classes", + "m": { + "FinalValueLayer()": "FinalValueLayer()", + "FinalValueLayer": "FinalValueLayer()", + "AxisAnnotationBackground": "AxisAnnotationBackground", + "AxisAnnotationBackgroundCornerRadius": "AxisAnnotationBackgroundCornerRadius", + "AxisAnnotationBackgroundCornerRadiusProperty": "AxisAnnotationBackgroundCornerRadiusProperty", + "AxisAnnotationBackgroundProperty": "AxisAnnotationBackgroundProperty", + "AxisAnnotationInterpolatedValuePrecision": "AxisAnnotationInterpolatedValuePrecision", + "AxisAnnotationInterpolatedValuePrecisionProperty": "AxisAnnotationInterpolatedValuePrecisionProperty", + "AxisAnnotationOutline": "AxisAnnotationOutline", + "AxisAnnotationOutlineProperty": "AxisAnnotationOutlineProperty", + "AxisAnnotationPaddingBottom": "AxisAnnotationPaddingBottom", + "AxisAnnotationPaddingBottomProperty": "AxisAnnotationPaddingBottomProperty", + "AxisAnnotationPaddingLeft": "AxisAnnotationPaddingLeft", + "AxisAnnotationPaddingLeftProperty": "AxisAnnotationPaddingLeftProperty", + "AxisAnnotationPaddingRight": "AxisAnnotationPaddingRight", + "AxisAnnotationPaddingRightProperty": "AxisAnnotationPaddingRightProperty", + "AxisAnnotationPaddingTop": "AxisAnnotationPaddingTop", + "AxisAnnotationPaddingTopProperty": "AxisAnnotationPaddingTopProperty", + "AxisAnnotationStrokeThickness": "AxisAnnotationStrokeThickness", + "AxisAnnotationStrokeThicknessProperty": "AxisAnnotationStrokeThicknessProperty", + "AxisAnnotationTextColor": "AxisAnnotationTextColor", + "AxisAnnotationTextColorProperty": "AxisAnnotationTextColorProperty", + "FinalValueSelectionMode": "FinalValueSelectionMode", + "FinalValueSelectionModeProperty": "FinalValueSelectionModeProperty", + "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnAxisAnnotationFormatLabel": "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty" + } + } + ], + "FinalValueLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinalValueLayerDescription", + "k": "class", + "s": "classes", + "m": { + "FinalValueLayerDescription()": "FinalValueLayerDescription()", + "FinalValueLayerDescription": "FinalValueLayerDescription()", + "AxisAnnotationBackground": "AxisAnnotationBackground", + "AxisAnnotationBackgroundCornerRadius": "AxisAnnotationBackgroundCornerRadius", + "AxisAnnotationFormatLabelRef": "AxisAnnotationFormatLabelRef", + "AxisAnnotationInterpolatedValuePrecision": "AxisAnnotationInterpolatedValuePrecision", + "AxisAnnotationOutline": "AxisAnnotationOutline", + "AxisAnnotationPaddingBottom": "AxisAnnotationPaddingBottom", + "AxisAnnotationPaddingLeft": "AxisAnnotationPaddingLeft", + "AxisAnnotationPaddingRight": "AxisAnnotationPaddingRight", + "AxisAnnotationPaddingTop": "AxisAnnotationPaddingTop", + "AxisAnnotationStrokeThickness": "AxisAnnotationStrokeThickness", + "AxisAnnotationTextColor": "AxisAnnotationTextColor", + "FinalValueSelectionMode": "FinalValueSelectionMode", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type" + } + } + ], + "FinalValueLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinalValueLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinalValueLayerDescriptionMetadata()": "FinalValueLayerDescriptionMetadata()", + "FinalValueLayerDescriptionMetadata": "FinalValueLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinalValueLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinalValueLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinalValueLayerDescriptionModule()": "FinalValueLayerDescriptionModule()", + "FinalValueLayerDescriptionModule": "FinalValueLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinalValueSelectionMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/FinalValueSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "FinancialCalculationDataSource": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FinancialCalculationDataSource", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationDataSource()": "FinancialCalculationDataSource()", + "FinancialCalculationDataSource": "FinancialCalculationDataSource()", + "CalculateCount": "CalculateCount", + "CalculateFrom": "CalculateFrom", + "CloseColumn": "CloseColumn", + "Count": "Count", + "HighColumn": "HighColumn", + "IndicatorColumn": "IndicatorColumn", + "LongPeriod": "LongPeriod", + "LowColumn": "LowColumn", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Multiplier": "Multiplier", + "OpenColumn": "OpenColumn", + "Period": "Period", + "ShortPeriod": "ShortPeriod", + "SpecifiesRange": "SpecifiesRange", + "TrueLow": "TrueLow", + "TrueRange": "TrueRange", + "TypicalColumn": "TypicalColumn", + "VolumeColumn": "VolumeColumn" + } + } + ], + "FinancialCalculationDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialCalculationDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationDataSourceDescription()": "FinancialCalculationDataSourceDescription()", + "FinancialCalculationDataSourceDescription": "FinancialCalculationDataSourceDescription()", + "CalculateCount": "CalculateCount", + "CalculateFrom": "CalculateFrom", + "Count": "Count", + "LongPeriod": "LongPeriod", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Multiplier": "Multiplier", + "Period": "Period", + "ShortPeriod": "ShortPeriod", + "SpecifiesRange": "SpecifiesRange", + "TrueLow": "TrueLow", + "TrueRange": "TrueRange", + "Type": "Type", + "TypicalColumn": "TypicalColumn" + } + } + ], + "FinancialCalculationDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialCalculationDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationDataSourceDescriptionMetadata()": "FinancialCalculationDataSourceDescriptionMetadata()", + "FinancialCalculationDataSourceDescriptionMetadata": "FinancialCalculationDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialCalculationSupportingCalculations": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FinancialCalculationSupportingCalculations", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationSupportingCalculations()": "FinancialCalculationSupportingCalculations()", + "FinancialCalculationSupportingCalculations": "FinancialCalculationSupportingCalculations()", + "EMA": "EMA", + "LongPriceOscillatorAverage": "LongPriceOscillatorAverage", + "LongVolumeOscillatorAverage": "LongVolumeOscillatorAverage", + "MakeSafe": "MakeSafe", + "MovingSum": "MovingSum", + "SMA": "SMA", + "STDEV": "STDEV", + "ShortPriceOscillatorAverage": "ShortPriceOscillatorAverage", + "ShortVolumeOscillatorAverage": "ShortVolumeOscillatorAverage", + "ToEnumerable": "ToEnumerable", + "ToEnumerableRange": "ToEnumerableRange" + } + } + ], + "FinancialCalculationSupportingCalculationsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialCalculationSupportingCalculationsDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationSupportingCalculationsDescription()": "FinancialCalculationSupportingCalculationsDescription()", + "FinancialCalculationSupportingCalculationsDescription": "FinancialCalculationSupportingCalculationsDescription()", + "EMA": "EMA", + "LongPriceOscillatorAverage": "LongPriceOscillatorAverage", + "LongVolumeOscillatorAverage": "LongVolumeOscillatorAverage", + "MakeSafeRef": "MakeSafeRef", + "MovingSum": "MovingSum", + "SMA": "SMA", + "STDEV": "STDEV", + "ShortPriceOscillatorAverage": "ShortPriceOscillatorAverage", + "ShortVolumeOscillatorAverage": "ShortVolumeOscillatorAverage", + "Type": "Type" + } + } + ], + "FinancialCalculationSupportingCalculationsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialCalculationSupportingCalculationsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationSupportingCalculationsDescriptionMetadata()": "FinancialCalculationSupportingCalculationsDescriptionMetadata()", + "FinancialCalculationSupportingCalculationsDescriptionMetadata": "FinancialCalculationSupportingCalculationsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinancialChartCoreDescriptionModule()": "FinancialChartCoreDescriptionModule()", + "FinancialChartCoreDescriptionModule": "FinancialChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartCustomIndicatorArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialChartCustomIndicatorArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialChartCustomIndicatorArgsDescription()": "FinancialChartCustomIndicatorArgsDescription()", + "FinancialChartCustomIndicatorArgsDescription": "FinancialChartCustomIndicatorArgsDescription()", + "Index": "Index", + "Series": "Series", + "Type": "Type" + } + } + ], + "FinancialChartCustomIndicatorArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialChartCustomIndicatorArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialChartCustomIndicatorArgsDescriptionMetadata()": "FinancialChartCustomIndicatorArgsDescriptionMetadata()", + "FinancialChartCustomIndicatorArgsDescriptionMetadata": "FinancialChartCustomIndicatorArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartDefaultTemplatesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialChartDefaultTemplatesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDefaultTemplatesDescriptionMetadata()": "FinancialChartDefaultTemplatesDescriptionMetadata()", + "FinancialChartDefaultTemplatesDescriptionMetadata": "FinancialChartDefaultTemplatesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartDefaultTemplatesExtendedDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialChartDefaultTemplatesExtendedDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDefaultTemplatesExtendedDescriptionMetadata()": "FinancialChartDefaultTemplatesExtendedDescriptionMetadata()", + "FinancialChartDefaultTemplatesExtendedDescriptionMetadata": "FinancialChartDefaultTemplatesExtendedDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialChartDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDescription()": "FinancialChartDescription()", + "FinancialChartDescription": "FinancialChartDescription()", + "ApplyCustomIndicatorsRef": "ApplyCustomIndicatorsRef", + "Background": "Background", + "ChartType": "ChartType", + "CustomIndicatorNames": "CustomIndicatorNames", + "Height": "Height", + "IndicatorBrushes": "IndicatorBrushes", + "IndicatorDisplayTypes": "IndicatorDisplayTypes", + "IndicatorLongPeriod": "IndicatorLongPeriod", + "IndicatorMultiplier": "IndicatorMultiplier", + "IndicatorNegativeBrushes": "IndicatorNegativeBrushes", + "IndicatorPeriod": "IndicatorPeriod", + "IndicatorShortPeriod": "IndicatorShortPeriod", + "IndicatorSignalPeriod": "IndicatorSignalPeriod", + "IndicatorSmoothingPeriod": "IndicatorSmoothingPeriod", + "IndicatorThickness": "IndicatorThickness", + "IndicatorTypes": "IndicatorTypes", + "IsLegendVisible": "IsLegendVisible", + "IsToolbarVisible": "IsToolbarVisible", + "IsWindowSyncedToVisibleRange": "IsWindowSyncedToVisibleRange", + "NegativeBrushes": "NegativeBrushes", + "NegativeOutlines": "NegativeOutlines", + "OverlayBrushes": "OverlayBrushes", + "OverlayMultiplier": "OverlayMultiplier", + "OverlayOutlines": "OverlayOutlines", + "OverlayThickness": "OverlayThickness", + "OverlayTypes": "OverlayTypes", + "RangeSelectorOptions": "RangeSelectorOptions", + "ToolbarHeight": "ToolbarHeight", + "TooltipTemplateRef": "TooltipTemplateRef", + "Type": "Type", + "VolumeBrushes": "VolumeBrushes", + "VolumeOutlines": "VolumeOutlines", + "VolumeThickness": "VolumeThickness", + "VolumeType": "VolumeType", + "Width": "Width", + "XAxisBreaks": "XAxisBreaks", + "XAxisEnhancedIntervalPreferMoreCategoryLabels": "XAxisEnhancedIntervalPreferMoreCategoryLabels", + "XAxisMaximumValue": "XAxisMaximumValue", + "XAxisMinimumValue": "XAxisMinimumValue", + "XAxisMode": "XAxisMode", + "XAxisZoomMaximumCategoryRange": "XAxisZoomMaximumCategoryRange", + "XAxisZoomMaximumItemSpan": "XAxisZoomMaximumItemSpan", + "XAxisZoomToCategoryRange": "XAxisZoomToCategoryRange", + "XAxisZoomToCategoryStart": "XAxisZoomToCategoryStart", + "XAxisZoomToItemSpan": "XAxisZoomToItemSpan", + "YAxisAbbreviateLargeNumbers": "YAxisAbbreviateLargeNumbers", + "YAxisEnhancedIntervalPreferMoreCategoryLabels": "YAxisEnhancedIntervalPreferMoreCategoryLabels", + "YAxisInterval": "YAxisInterval", + "YAxisIsLogarithmic": "YAxisIsLogarithmic", + "YAxisLogarithmBase": "YAxisLogarithmBase", + "YAxisMaximumValue": "YAxisMaximumValue", + "YAxisMinimumValue": "YAxisMinimumValue", + "YAxisMinorInterval": "YAxisMinorInterval", + "YAxisMode": "YAxisMode", + "ZoomSliderType": "ZoomSliderType", + "ZoomSliderXAxisMajorStroke": "ZoomSliderXAxisMajorStroke", + "ZoomSliderXAxisMajorStrokeThickness": "ZoomSliderXAxisMajorStrokeThickness" + } + } + ], + "FinancialChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDescriptionMetadata()": "FinancialChartDescriptionMetadata()", + "FinancialChartDescriptionMetadata": "FinancialChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDescriptionModule()": "FinancialChartDescriptionModule()", + "FinancialChartDescriptionModule": "FinancialChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialEventArgsDescription()": "FinancialEventArgsDescription()", + "FinancialEventArgsDescription": "FinancialEventArgsDescription()", + "Count": "Count", + "DataSource": "DataSource", + "Position": "Position", + "SupportingCalculations": "SupportingCalculations", + "Type": "Type" + } + } + ], + "FinancialEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialEventArgsDescriptionMetadata()": "FinancialEventArgsDescriptionMetadata()", + "FinancialEventArgsDescriptionMetadata": "FinancialEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FinancialIndicator", + "k": "class", + "s": "classes", + "m": { + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "DefaultDisplayType": "DefaultDisplayType", + "DefaultDisplayTypeProperty": "DefaultDisplayTypeProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "IgnoreFirst": "IgnoreFirst", + "IgnoreFirstProperty": "IgnoreFirstProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty" + } + } + ], + "FinancialIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialIndicatorDescription()": "FinancialIndicatorDescription()", + "FinancialIndicatorDescription": "FinancialIndicatorDescription()", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "DisplayType": "DisplayType", + "IgnoreFirst": "IgnoreFirst", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "Type": "Type" + } + } + ], + "FinancialIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialIndicatorDescriptionMetadata()": "FinancialIndicatorDescriptionMetadata()", + "FinancialIndicatorDescriptionMetadata": "FinancialIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialLegend": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FinancialLegend", + "k": "class", + "s": "classes", + "m": { + "FinancialLegend()": "FinancialLegend()", + "FinancialLegend": "FinancialLegend()" + } + } + ], + "FinancialLegendDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialLegendDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialLegendDescription()": "FinancialLegendDescription()", + "FinancialLegendDescription": "FinancialLegendDescription()", + "Type": "Type" + } + } + ], + "FinancialLegendDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialLegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialLegendDescriptionMetadata()": "FinancialLegendDescriptionMetadata()", + "FinancialLegendDescriptionMetadata": "FinancialLegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialLegendDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialLegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinancialLegendDescriptionModule()": "FinancialLegendDescriptionModule()", + "FinancialLegendDescriptionModule": "FinancialLegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialOverlay": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FinancialOverlay", + "k": "class", + "s": "classes", + "m": { + "IgnoreFirst": "IgnoreFirst", + "IgnoreFirstProperty": "IgnoreFirstProperty" + } + } + ], + "FinancialOverlayDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialOverlayDescription()": "FinancialOverlayDescription()", + "FinancialOverlayDescription": "FinancialOverlayDescription()", + "IgnoreFirst": "IgnoreFirst", + "Type": "Type" + } + } + ], + "FinancialOverlayDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialOverlayDescriptionMetadata()": "FinancialOverlayDescriptionMetadata()", + "FinancialOverlayDescriptionMetadata": "FinancialOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialPriceSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FinancialPriceSeries", + "k": "class", + "s": "classes", + "m": { + "FinancialPriceSeries()": "FinancialPriceSeries()", + "FinancialPriceSeries": "FinancialPriceSeries()", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "CategoryCollisionMode": "CategoryCollisionMode", + "CategoryCollisionModeProperty": "CategoryCollisionModeProperty", + "CloseMemberAsLegendLabel": "CloseMemberAsLegendLabel", + "CloseMemberAsLegendLabelProperty": "CloseMemberAsLegendLabelProperty", + "CloseMemberAsLegendUnit": "CloseMemberAsLegendUnit", + "CloseMemberAsLegendUnitProperty": "CloseMemberAsLegendUnitProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendLabelProperty": "HighMemberAsLegendLabelProperty", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "HighMemberAsLegendUnitProperty": "HighMemberAsLegendUnitProperty", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendLabelProperty": "LowMemberAsLegendLabelProperty", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "LowMemberAsLegendUnitProperty": "LowMemberAsLegendUnitProperty", + "NegativeOutline": "NegativeOutline", + "NegativeOutlineProperty": "NegativeOutlineProperty", + "OpenMemberAsLegendLabel": "OpenMemberAsLegendLabel", + "OpenMemberAsLegendLabelProperty": "OpenMemberAsLegendLabelProperty", + "OpenMemberAsLegendUnit": "OpenMemberAsLegendUnit", + "OpenMemberAsLegendUnitProperty": "OpenMemberAsLegendUnitProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty" + } + } + ], + "FinancialPriceSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialPriceSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialPriceSeriesDescription()": "FinancialPriceSeriesDescription()", + "FinancialPriceSeriesDescription": "FinancialPriceSeriesDescription()", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "CategoryCollisionMode": "CategoryCollisionMode", + "CloseMemberAsLegendLabel": "CloseMemberAsLegendLabel", + "CloseMemberAsLegendUnit": "CloseMemberAsLegendUnit", + "DisplayType": "DisplayType", + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "NegativeOutline": "NegativeOutline", + "OpenMemberAsLegendLabel": "OpenMemberAsLegendLabel", + "OpenMemberAsLegendUnit": "OpenMemberAsLegendUnit", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "Type": "Type" + } + } + ], + "FinancialPriceSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialPriceSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialPriceSeriesDescriptionMetadata()": "FinancialPriceSeriesDescriptionMetadata()", + "FinancialPriceSeriesDescriptionMetadata": "FinancialPriceSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialPriceSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialPriceSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinancialPriceSeriesDescriptionModule()": "FinancialPriceSeriesDescriptionModule()", + "FinancialPriceSeriesDescriptionModule": "FinancialPriceSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FinancialSeries", + "k": "class", + "s": "classes", + "m": { + "CloseMemberPath": "CloseMemberPath", + "CloseMemberPathProperty": "CloseMemberPathProperty", + "GetCategoryItems(int, int)": "GetCategoryItems(int, int)", + "GetCategoryItems": "GetCategoryItems(int, int)", + "GetCategoryWidth()": "GetCategoryWidth()", + "GetCategoryWidth": "GetCategoryWidth()", + "GetOffsetValue()": "GetOffsetValue()", + "GetOffsetValue": "GetOffsetValue()", + "GetSeriesCloseValue(Point, bool, bool)": "GetSeriesCloseValue(Point, bool, bool)", + "GetSeriesCloseValue": "GetSeriesCloseValue(Point, bool, bool)", + "GetSeriesCloseValuePosition(Point, bool, bool)": "GetSeriesCloseValuePosition(Point, bool, bool)", + "GetSeriesCloseValuePosition": "GetSeriesCloseValuePosition(Point, bool, bool)", + "GetSeriesOpenValue(Point, bool, bool)": "GetSeriesOpenValue(Point, bool, bool)", + "GetSeriesOpenValue": "GetSeriesOpenValue(Point, bool, bool)", + "GetSeriesOpenValuePosition(Point, bool, bool)": "GetSeriesOpenValuePosition(Point, bool, bool)", + "GetSeriesOpenValuePosition": "GetSeriesOpenValuePosition(Point, bool, bool)", + "GetSeriesVolumeValue(Point, bool, bool)": "GetSeriesVolumeValue(Point, bool, bool)", + "GetSeriesVolumeValue": "GetSeriesVolumeValue(Point, bool, bool)", + "GetSeriesVolumeValuePosition(Point, bool, bool)": "GetSeriesVolumeValuePosition(Point, bool, bool)", + "GetSeriesVolumeValuePosition": "GetSeriesVolumeValuePosition(Point, bool, bool)", + "HighMemberPath": "HighMemberPath", + "HighMemberPathProperty": "HighMemberPathProperty", + "HighlightedCloseMemberPath": "HighlightedCloseMemberPath", + "HighlightedCloseMemberPathProperty": "HighlightedCloseMemberPathProperty", + "HighlightedHighMemberPath": "HighlightedHighMemberPath", + "HighlightedHighMemberPathProperty": "HighlightedHighMemberPathProperty", + "HighlightedLowMemberPath": "HighlightedLowMemberPath", + "HighlightedLowMemberPathProperty": "HighlightedLowMemberPathProperty", + "HighlightedOpenMemberPath": "HighlightedOpenMemberPath", + "HighlightedOpenMemberPathProperty": "HighlightedOpenMemberPathProperty", + "HighlightedVolumeMemberPath": "HighlightedVolumeMemberPath", + "HighlightedVolumeMemberPathProperty": "HighlightedVolumeMemberPathProperty", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsCustomCategoryStyleAllowedProperty": "IsCustomCategoryStyleAllowedProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "LowMemberPath": "LowMemberPath", + "LowMemberPathProperty": "LowMemberPathProperty", + "NegativeBrush": "NegativeBrush", + "NegativeBrushProperty": "NegativeBrushProperty", + "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnAssigningCategoryStyle": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnTypical(FinancialEventArgs)": "OnTypical(FinancialEventArgs)", + "OnTypical": "OnTypical(FinancialEventArgs)", + "OnTypicalBasedOn(FinancialEventArgs)": "OnTypicalBasedOn(FinancialEventArgs)", + "OnTypicalBasedOn": "OnTypicalBasedOn(FinancialEventArgs)", + "OpenMemberPath": "OpenMemberPath", + "OpenMemberPathProperty": "OpenMemberPathProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "VolumeMemberPath": "VolumeMemberPath", + "VolumeMemberPathProperty": "VolumeMemberPathProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "FinancialSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialSeriesDescription()": "FinancialSeriesDescription()", + "FinancialSeriesDescription": "FinancialSeriesDescription()", + "AssigningCategoryStyleRef": "AssigningCategoryStyleRef", + "CloseMemberPath": "CloseMemberPath", + "HighMemberPath": "HighMemberPath", + "HighlightedCloseMemberPath": "HighlightedCloseMemberPath", + "HighlightedHighMemberPath": "HighlightedHighMemberPath", + "HighlightedLowMemberPath": "HighlightedLowMemberPath", + "HighlightedOpenMemberPath": "HighlightedOpenMemberPath", + "HighlightedVolumeMemberPath": "HighlightedVolumeMemberPath", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "LowMemberPath": "LowMemberPath", + "NegativeBrush": "NegativeBrush", + "OpenMemberPath": "OpenMemberPath", + "TransitionInMode": "TransitionInMode", + "Type": "Type", + "TypicalBasedOnRef": "TypicalBasedOnRef", + "TypicalRef": "TypicalRef", + "VolumeMemberPath": "VolumeMemberPath", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "FinancialSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FinancialSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialSeriesDescriptionMetadata()": "FinancialSeriesDescriptionMetadata()", + "FinancialSeriesDescriptionMetadata": "FinancialSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FlatDataProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FlatDataProvider", + "k": "class", + "s": "classes", + "m": { + "FlatDataProvider()": "FlatDataProvider()", + "FlatDataProvider": "FlatDataProvider()", + "ActualCount": "ActualCount", + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "BroadcastChangesToRightDataSource": "BroadcastChangesToRightDataSource", + "Clone()": "Clone()", + "Clone": "Clone()", + "CreateDynamicItem()": "CreateDynamicItem()", + "CreateDynamicItem": "CreateDynamicItem()", + "DeferAutoRefresh": "DeferAutoRefresh", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GroupDescriptions": "GroupDescriptions", + "HasDynamicItemProperty(object, string)": "HasDynamicItemProperty(object, string)", + "HasDynamicItemProperty": "HasDynamicItemProperty(object, string)", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsSortingSupported": "IsSortingSupported", + "ItemsSource": "ItemsSource", + "JoinCollisionType": "JoinCollisionType", + "JoinType": "JoinType", + "LeftJoinProperty": "LeftJoinProperty", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "PropertiesRequested": "PropertiesRequested", + "PropertyUpdatedOverride(string, object, object)": "PropertyUpdatedOverride(string, object, object)", + "PropertyUpdatedOverride": "PropertyUpdatedOverride(string, object, object)", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RefreshInternalOverride()": "RefreshInternalOverride()", + "RefreshInternalOverride": "RefreshInternalOverride()", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "RightDataSource": "RightDataSource", + "RightJoinProperty": "RightJoinProperty", + "SchemaHints": "SchemaHints", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SetDynamicItemProperty(object, string, object)": "SetDynamicItemProperty(object, string, object)", + "SetDynamicItemProperty": "SetDynamicItemProperty(object, string, object)", + "SetItemValue(object, string, object)": "SetItemValue(object, string, object)", + "SetItemValue": "SetItemValue(object, string, object)", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "TargetDataSource": "TargetDataSource", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "FlatDataProviderJoinCollisionType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/FlatDataProviderJoinCollisionType", + "k": "enum", + "s": "enums" + } + ], + "FlatDataProviderJoinType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/FlatDataProviderJoinType", + "k": "enum", + "s": "enums" + } + ], + "FlattenerSettings": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FlattenerSettings", + "k": "class", + "s": "classes", + "m": { + "ChunkingAmount": "ChunkingAmount", + "Instance": "Instance" + } + } + ], + "FocusEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "FocusEventArgs()": "FocusEventArgs()", + "FocusEventArgs": "FocusEventArgs()", + "FromTarget": "FromTarget", + "Target": "Target" + } + } + ], + "FocusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FocusEventArgsDescription()": "FocusEventArgsDescription()", + "FocusEventArgsDescription": "FocusEventArgsDescription()", + "FromTargetRef": "FromTargetRef", + "TargetRef": "TargetRef", + "Type": "Type" + } + } + ], + "FocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FocusEventArgsDescriptionMetadata()": "FocusEventArgsDescriptionMetadata()", + "FocusEventArgsDescriptionMetadata": "FocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FocusOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FocusOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "FocusOptionsDescription()": "FocusOptionsDescription()", + "FocusOptionsDescription": "FocusOptionsDescription()", + "PreventScroll": "PreventScroll", + "Type": "Type" + } + } + ], + "FocusOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FocusOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FocusOptionsDescriptionMetadata()": "FocusOptionsDescriptionMetadata()", + "FocusOptionsDescriptionMetadata": "FocusOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FontRegistry": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FontRegistry", + "k": "class", + "s": "classes", + "m": { + "FontRegistry()": "FontRegistry()", + "FontRegistry": "FontRegistry()", + "GetFont(string)": "GetFont(string)", + "GetFont": "GetFont(string)", + "Instance": "Instance", + "RegisterFont(string, object)": "RegisterFont(string, object)", + "RegisterFont": "RegisterFont(string, object)", + "RemoveFont(string)": "RemoveFont(string)", + "RemoveFont": "RemoveFont(string)" + } + } + ], + "ForceIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ForceIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "ForceIndexIndicator()": "ForceIndexIndicator()", + "ForceIndexIndicator": "ForceIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "ForceIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ForceIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "ForceIndexIndicatorDescription()": "ForceIndexIndicatorDescription()", + "ForceIndexIndicatorDescription": "ForceIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "ForceIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ForceIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ForceIndexIndicatorDescriptionMetadata()": "ForceIndexIndicatorDescriptionMetadata()", + "ForceIndexIndicatorDescriptionMetadata": "ForceIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ForceIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ForceIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ForceIndexIndicatorDescriptionModule()": "ForceIndexIndicatorDescriptionModule()", + "ForceIndexIndicatorDescriptionModule": "ForceIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ForceWriteConstantValueAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/ForceWriteConstantValueAttribute", + "k": "class", + "s": "classes", + "m": { + "ForceWriteConstantValueAttribute()": "ForceWriteConstantValueAttribute()", + "ForceWriteConstantValueAttribute": "ForceWriteConstantValueAttribute()" + } + } + ], + "FormatCellEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/FormatCellEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatCellEventArgs()": "FormatCellEventArgs()", + "FormatCellEventArgs": "FormatCellEventArgs()", + "IsGroup": "IsGroup", + "IsSummary": "IsSummary", + "Item": "Item", + "Row": "Row", + "Text": "Text", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatCellEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatCellEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatCellEventArgsDescription()": "FormatCellEventArgsDescription()", + "FormatCellEventArgsDescription": "FormatCellEventArgsDescription()", + "IsGroup": "IsGroup", + "IsSummary": "IsSummary", + "ItemRef": "ItemRef", + "Row": "Row", + "Text": "Text", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "FormatCellEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatCellEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatCellEventArgsDescriptionMetadata()": "FormatCellEventArgsDescriptionMetadata()", + "FormatCellEventArgsDescriptionMetadata": "FormatCellEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatGroupTextEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/FormatGroupTextEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatGroupTextEventArgs()": "FormatGroupTextEventArgs()", + "FormatGroupTextEventArgs": "FormatGroupTextEventArgs()", + "FormattedText": "FormattedText", + "FormattedValue": "FormattedValue", + "GroupName": "GroupName", + "GroupValue": "GroupValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatGroupTextEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatGroupTextEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatGroupTextEventArgsDescription()": "FormatGroupTextEventArgsDescription()", + "FormatGroupTextEventArgsDescription": "FormatGroupTextEventArgsDescription()", + "FormattedText": "FormattedText", + "FormattedValue": "FormattedValue", + "GroupName": "GroupName", + "GroupValueRef": "GroupValueRef", + "Type": "Type" + } + } + ], + "FormatGroupTextEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatGroupTextEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatGroupTextEventArgsDescriptionMetadata()": "FormatGroupTextEventArgsDescriptionMetadata()", + "FormatGroupTextEventArgsDescriptionMetadata": "FormatGroupTextEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatLinearGraphLabelEventArgs": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/FormatLinearGraphLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatLinearGraphLabelEventArgs()": "FormatLinearGraphLabelEventArgs()", + "FormatLinearGraphLabelEventArgs": "FormatLinearGraphLabelEventArgs()", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMinimumValue": "ActualMinimumValue", + "Label": "Label", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatLinearGraphLabelEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatLinearGraphLabelEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatLinearGraphLabelEventArgsDescription()": "FormatLinearGraphLabelEventArgsDescription()", + "FormatLinearGraphLabelEventArgsDescription": "FormatLinearGraphLabelEventArgsDescription()", + "Type": "Type" + } + } + ], + "FormatLinearGraphLabelEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatLinearGraphLabelEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatLinearGraphLabelEventArgsDescriptionMetadata()": "FormatLinearGraphLabelEventArgsDescriptionMetadata()", + "FormatLinearGraphLabelEventArgsDescriptionMetadata": "FormatLinearGraphLabelEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatRadialGaugeLabelEventArgs": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/FormatRadialGaugeLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatRadialGaugeLabelEventArgs()": "FormatRadialGaugeLabelEventArgs()", + "FormatRadialGaugeLabelEventArgs": "FormatRadialGaugeLabelEventArgs()", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMinimumValue": "ActualMinimumValue", + "Angle": "Angle", + "EndAngle": "EndAngle", + "Extent": "Extent", + "Label": "Label", + "StartAngle": "StartAngle", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatRadialGaugeLabelEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatRadialGaugeLabelEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatRadialGaugeLabelEventArgsDescription()": "FormatRadialGaugeLabelEventArgsDescription()", + "FormatRadialGaugeLabelEventArgsDescription": "FormatRadialGaugeLabelEventArgsDescription()", + "Type": "Type" + } + } + ], + "FormatRadialGaugeLabelEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatRadialGaugeLabelEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatRadialGaugeLabelEventArgsDescriptionMetadata()": "FormatRadialGaugeLabelEventArgsDescriptionMetadata()", + "FormatRadialGaugeLabelEventArgsDescriptionMetadata": "FormatRadialGaugeLabelEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatSpecifier": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatSpecifier", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifier()": "FormatSpecifier()", + "FormatSpecifier": "FormatSpecifier()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatSpecifierCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatSpecifierCollection", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifierCollection()": "FormatSpecifierCollection()", + "FormatSpecifierCollection": "FormatSpecifierCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatSpecifierDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatSpecifierDescription", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifierDescription()": "FormatSpecifierDescription()", + "FormatSpecifierDescription": "FormatSpecifierDescription()", + "Type": "Type" + } + } + ], + "FormatSpecifierDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatSpecifierDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifierDescriptionMetadata()": "FormatSpecifierDescriptionMetadata()", + "FormatSpecifierDescriptionMetadata": "FormatSpecifierDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatSpecifierDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatSpecifierDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifierDescriptionModule()": "FormatSpecifierDescriptionModule()", + "FormatSpecifierDescriptionModule": "FormatSpecifierDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatSummaryTextEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/FormatSummaryTextEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatSummaryTextEventArgs()": "FormatSummaryTextEventArgs()", + "FormatSummaryTextEventArgs": "FormatSummaryTextEventArgs()", + "DisplayName": "DisplayName", + "Field": "Field", + "FormattedResult": "FormattedResult", + "FormattedText": "FormattedText", + "SummaryResult": "SummaryResult", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatSummaryTextEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatSummaryTextEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatSummaryTextEventArgsDescription()": "FormatSummaryTextEventArgsDescription()", + "FormatSummaryTextEventArgsDescription": "FormatSummaryTextEventArgsDescription()", + "DisplayName": "DisplayName", + "Field": "Field", + "FormattedResult": "FormattedResult", + "FormattedText": "FormattedText", + "SummaryResultRef": "SummaryResultRef", + "Type": "Type" + } + } + ], + "FormatSummaryTextEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FormatSummaryTextEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatSummaryTextEventArgsDescriptionMetadata()": "FormatSummaryTextEventArgsDescriptionMetadata()", + "FormatSummaryTextEventArgsDescriptionMetadata": "FormatSummaryTextEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FragmentBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FragmentBaseDescription", + "k": "class", + "s": "classes", + "m": { + "FragmentBaseDescription()": "FragmentBaseDescription()", + "FragmentBaseDescription": "FragmentBaseDescription()", + "Type": "Type" + } + } + ], + "FragmentBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FragmentBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FragmentBaseDescriptionMetadata()": "FragmentBaseDescriptionMetadata()", + "FragmentBaseDescriptionMetadata": "FragmentBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FullStochasticOscillatorIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FullStochasticOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "FullStochasticOscillatorIndicator()": "FullStochasticOscillatorIndicator()", + "FullStochasticOscillatorIndicator": "FullStochasticOscillatorIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty", + "SmoothingPeriod": "SmoothingPeriod", + "SmoothingPeriodProperty": "SmoothingPeriodProperty", + "TriggerPeriod": "TriggerPeriod", + "TriggerPeriodProperty": "TriggerPeriodProperty" + } + } + ], + "FullStochasticOscillatorIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FullStochasticOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "FullStochasticOscillatorIndicatorDescription()": "FullStochasticOscillatorIndicatorDescription()", + "FullStochasticOscillatorIndicatorDescription": "FullStochasticOscillatorIndicatorDescription()", + "Period": "Period", + "SmoothingPeriod": "SmoothingPeriod", + "TriggerPeriod": "TriggerPeriod", + "Type": "Type" + } + } + ], + "FullStochasticOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FullStochasticOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FullStochasticOscillatorIndicatorDescriptionMetadata()": "FullStochasticOscillatorIndicatorDescriptionMetadata()", + "FullStochasticOscillatorIndicatorDescriptionMetadata": "FullStochasticOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FullStochasticOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FullStochasticOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FullStochasticOscillatorIndicatorDescriptionModule()": "FullStochasticOscillatorIndicatorDescriptionModule()", + "FullStochasticOscillatorIndicatorDescriptionModule": "FullStochasticOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunctionFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunctionFilterExpression", + "k": "class", + "s": "classes", + "m": { + "FunctionFilterExpression()": "FunctionFilterExpression()", + "FunctionFilterExpression": "FunctionFilterExpression()", + "FunctionFilterExpression(FilterExpressionFunctionType, params IFilterExpression[])": "FunctionFilterExpression(FilterExpressionFunctionType, params IFilterExpression[])", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "FunctionArguments": "FunctionArguments", + "FunctionType": "FunctionType", + "HasFunctionArguments": "HasFunctionArguments", + "IsBooleanFunction": "IsBooleanFunction", + "IsFunction": "IsFunction", + "Precedence": "Precedence", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()" + } + } + ], + "FunctionFilterExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunctionFilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "FunctionFilterExpressionDescription()": "FunctionFilterExpressionDescription()", + "FunctionFilterExpressionDescription": "FunctionFilterExpressionDescription()", + "FunctionArguments": "FunctionArguments", + "FunctionType": "FunctionType", + "HasFunctionArguments": "HasFunctionArguments", + "Type": "Type" + } + } + ], + "FunctionFilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunctionFilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunctionFilterExpressionDescriptionMetadata()": "FunctionFilterExpressionDescriptionMetadata()", + "FunctionFilterExpressionDescriptionMetadata": "FunctionFilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FunnelChartCoreDescriptionModule()": "FunnelChartCoreDescriptionModule()", + "FunnelChartCoreDescriptionModule": "FunnelChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelChartDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelChartDescription()": "FunnelChartDescription()", + "FunnelChartDescription": "FunnelChartDescription()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "AllowSliceSelection": "AllowSliceSelection", + "BottomEdgeWidth": "BottomEdgeWidth", + "Brushes": "Brushes", + "DataSourceRef": "DataSourceRef", + "FormatInnerLabelRef": "FormatInnerLabelRef", + "FormatOuterLabelRef": "FormatOuterLabelRef", + "FunnelSliceDisplay": "FunnelSliceDisplay", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "InnerLabelMemberPath": "InnerLabelMemberPath", + "InnerLabelVisibility": "InnerLabelVisibility", + "IsInverted": "IsInverted", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "OuterLabelAlignment": "OuterLabelAlignment", + "OuterLabelMemberPath": "OuterLabelMemberPath", + "OuterLabelTextColor": "OuterLabelTextColor", + "OuterLabelTextStyle": "OuterLabelTextStyle", + "OuterLabelVisibility": "OuterLabelVisibility", + "OutlineThickness": "OutlineThickness", + "Outlines": "Outlines", + "PixelScalingRatio": "PixelScalingRatio", + "SelectedItems": "SelectedItems", + "SelectedItemsChangedRef": "SelectedItemsChangedRef", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SliceClickedRef": "SliceClickedRef", + "SliceEnterRef": "SliceEnterRef", + "SliceHoverRef": "SliceHoverRef", + "SliceLeaveRef": "SliceLeaveRef", + "TextColor": "TextColor", + "TextStyle": "TextStyle", + "TransitionDuration": "TransitionDuration", + "Type": "Type", + "UnselectedSliceFill": "UnselectedSliceFill", + "UnselectedSliceOpacity": "UnselectedSliceOpacity", + "UnselectedSliceStroke": "UnselectedSliceStroke", + "UnselectedSliceStrokeThickness": "UnselectedSliceStrokeThickness", + "UseBezierCurve": "UseBezierCurve", + "UseOuterLabelsForLegend": "UseOuterLabelsForLegend", + "UseUnselectedStyle": "UseUnselectedStyle", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "FunnelChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelChartDescriptionMetadata()": "FunnelChartDescriptionMetadata()", + "FunnelChartDescriptionMetadata": "FunnelChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FunnelChartDescriptionModule()": "FunnelChartDescriptionModule()", + "FunnelChartDescriptionModule": "FunnelChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartSelectedItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelChartSelectedItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelChartSelectedItemsChangedEventArgsDescription()": "FunnelChartSelectedItemsChangedEventArgsDescription()", + "FunnelChartSelectedItemsChangedEventArgsDescription": "FunnelChartSelectedItemsChangedEventArgsDescription()", + "CurrentItems": "CurrentItems", + "NewItems": "NewItems", + "OldItems": "OldItems", + "Type": "Type" + } + } + ], + "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata()": "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata()", + "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata": "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartSelectedItemsCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FunnelChartSelectedItemsCollection", + "k": "class", + "s": "classes", + "m": { + "FunnelChartSelectedItemsCollection()": "FunnelChartSelectedItemsCollection()", + "FunnelChartSelectedItemsCollection": "FunnelChartSelectedItemsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FunnelChartVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FunnelChartVisualData", + "k": "class", + "s": "classes", + "m": { + "FunnelChartVisualData()": "FunnelChartVisualData()", + "FunnelChartVisualData": "FunnelChartVisualData()", + "BackgroundColor": "BackgroundColor", + "BorderBrush": "BorderBrush", + "DipScalingRatio": "DipScalingRatio", + "ForegroundColor": "ForegroundColor", + "IsInverted": "IsInverted", + "Name": "Name", + "Opacity": "Opacity", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "SelectedItems": "SelectedItems", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Slices": "Slices", + "Viewport": "Viewport" + } + } + ], + "FunnelDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FunnelDataContext", + "k": "class", + "s": "classes", + "m": { + "FunnelDataContext()": "FunnelDataContext()", + "FunnelDataContext": "FunnelDataContext()", + "Index": "Index", + "Item": "Item", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FunnelDataContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelDataContextDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelDataContextDescription()": "FunnelDataContextDescription()", + "FunnelDataContextDescription": "FunnelDataContextDescription()", + "Index": "Index", + "ItemRef": "ItemRef", + "Type": "Type" + } + } + ], + "FunnelDataContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelDataContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelDataContextDescriptionMetadata()": "FunnelDataContextDescriptionMetadata()", + "FunnelDataContextDescriptionMetadata": "FunnelDataContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelSliceClickedEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FunnelSliceClickedEventArgs", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceClickedEventArgs()": "FunnelSliceClickedEventArgs()", + "FunnelSliceClickedEventArgs": "FunnelSliceClickedEventArgs()", + "Bounds": "Bounds", + "Index": "Index", + "Item": "Item", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FunnelSliceClickedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelSliceClickedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceClickedEventArgsDescription()": "FunnelSliceClickedEventArgsDescription()", + "FunnelSliceClickedEventArgsDescription": "FunnelSliceClickedEventArgsDescription()", + "Bounds": "Bounds", + "Index": "Index", + "ItemRef": "ItemRef", + "Type": "Type" + } + } + ], + "FunnelSliceClickedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelSliceClickedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceClickedEventArgsDescriptionMetadata()": "FunnelSliceClickedEventArgsDescriptionMetadata()", + "FunnelSliceClickedEventArgsDescriptionMetadata": "FunnelSliceClickedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelSliceDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FunnelSliceDataContext", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceDataContext()": "FunnelSliceDataContext()", + "FunnelSliceDataContext": "FunnelSliceDataContext()", + "ItemOutline": "ItemOutline" + } + } + ], + "FunnelSliceDataContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelSliceDataContextDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceDataContextDescription()": "FunnelSliceDataContextDescription()", + "FunnelSliceDataContextDescription": "FunnelSliceDataContextDescription()", + "ItemOutline": "ItemOutline", + "Type": "Type" + } + } + ], + "FunnelSliceDataContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelSliceDataContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceDataContextDescriptionMetadata()": "FunnelSliceDataContextDescriptionMetadata()", + "FunnelSliceDataContextDescriptionMetadata": "FunnelSliceDataContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelSliceDisplay": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/FunnelSliceDisplay", + "k": "enum", + "s": "enums" + } + ], + "FunnelSliceEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FunnelSliceEventArgs", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceEventArgs()": "FunnelSliceEventArgs()", + "FunnelSliceEventArgs": "FunnelSliceEventArgs()", + "Bounds": "Bounds", + "Index": "Index", + "Item": "Item", + "Position": "Position", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FunnelSliceEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelSliceEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceEventArgsDescription()": "FunnelSliceEventArgsDescription()", + "FunnelSliceEventArgsDescription": "FunnelSliceEventArgsDescription()", + "Bounds": "Bounds", + "Index": "Index", + "ItemRef": "ItemRef", + "Position": "Position", + "Type": "Type" + } + } + ], + "FunnelSliceEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/FunnelSliceEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceEventArgsDescriptionMetadata()": "FunnelSliceEventArgsDescriptionMetadata()", + "FunnelSliceEventArgsDescriptionMetadata": "FunnelSliceEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelSliceVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FunnelSliceVisualData", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceVisualData()": "FunnelSliceVisualData()", + "FunnelSliceVisualData": "FunnelSliceVisualData()", + "Appearance": "Appearance", + "Bottom": "Bottom", + "Height": "Height", + "Index": "Index", + "InnerLabel": "InnerLabel", + "InnerLabelAppearance": "InnerLabelAppearance", + "InnerLabelBounds": "InnerLabelBounds", + "InnerLabelPosition": "InnerLabelPosition", + "IsSelected": "IsSelected", + "IsVisibile": "IsVisibile", + "LowerLeft": "LowerLeft", + "LowerRight": "LowerRight", + "LowerWidth": "LowerWidth", + "OuterLabel": "OuterLabel", + "OuterLabelAppearance": "OuterLabelAppearance", + "OuterLabelBounds": "OuterLabelBounds", + "OuterLabelPosition": "OuterLabelPosition", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SliceBorderBrush": "SliceBorderBrush", + "SliceBorderThickness": "SliceBorderThickness", + "SliceCenterPoint": "SliceCenterPoint", + "SlicePoints": "SlicePoints", + "Top": "Top", + "UpperLeft": "UpperLeft", + "UpperRight": "UpperRight", + "UpperWidth": "UpperWidth" + } + } + ], + "FunnelSliceVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/FunnelSliceVisualDataList", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceVisualDataList()": "FunnelSliceVisualDataList()", + "FunnelSliceVisualDataList": "FunnelSliceVisualDataList()" + } + } + ], + "GaugeVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/GaugeVisualData", + "k": "class", + "s": "classes", + "m": { + "GaugeVisualData()": "GaugeVisualData()", + "GaugeVisualData": "GaugeVisualData()", + "BackingPath": "BackingPath", + "HighlightLabels": "HighlightLabels", + "HighlightNeedle": "HighlightNeedle", + "HighlightNeedlePath": "HighlightNeedlePath", + "Name": "Name", + "Needle": "Needle", + "NeedlePath": "NeedlePath", + "OverlayPath": "OverlayPath", + "Ranges": "Ranges", + "Scale": "Scale", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleLabels": "ScaleLabels", + "ScalePath": "ScalePath", + "ScaleTickmarks": "ScaleTickmarks", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SubtitleLabels": "SubtitleLabels", + "TitleLabels": "TitleLabels", + "UnderlayPath": "UnderlayPath", + "Viewport": "Viewport" + } + } + ], + "GenericDataSourceSchemaPropertyType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/GenericDataSourceSchemaPropertyType", + "k": "enum", + "s": "enums" + } + ], + "GenericInternalVirtualDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GenericInternalVirtualDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "GenericInternalVirtualDataSourceDescription()": "GenericInternalVirtualDataSourceDescription()", + "GenericInternalVirtualDataSourceDescription": "GenericInternalVirtualDataSourceDescription()", + "DataSourceId": "DataSourceId", + "IsAggregationSupported": "IsAggregationSupported", + "IsClone": "IsClone", + "PageRequestedRef": "PageRequestedRef", + "Type": "Type" + } + } + ], + "GenericInternalVirtualDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GenericInternalVirtualDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GenericInternalVirtualDataSourceDescriptionMetadata()": "GenericInternalVirtualDataSourceDescriptionMetadata()", + "GenericInternalVirtualDataSourceDescriptionMetadata": "GenericInternalVirtualDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GenericVirtualDataSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GenericVirtualDataSource", + "k": "class", + "s": "classes", + "m": { + "GenericVirtualDataSource()": "GenericVirtualDataSource()", + "GenericVirtualDataSource": "GenericVirtualDataSource()", + "AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)": "AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)", + "AddSchemaProperty": "AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)", + "AddSummaryDate(string, DataSourceSummaryOperand, DateTime)": "AddSummaryDate(string, DataSourceSummaryOperand, DateTime)", + "AddSummaryDate": "AddSummaryDate(string, DataSourceSummaryOperand, DateTime)", + "AddSummaryDouble(string, DataSourceSummaryOperand, double)": "AddSummaryDouble(string, DataSourceSummaryOperand, double)", + "AddSummaryDouble": "AddSummaryDouble(string, DataSourceSummaryOperand, double)", + "AddSummaryInt(string, DataSourceSummaryOperand, int)": "AddSummaryInt(string, DataSourceSummaryOperand, int)", + "AddSummaryInt": "AddSummaryInt(string, DataSourceSummaryOperand, int)", + "AddSummaryString(string, DataSourceSummaryOperand, string)": "AddSummaryString(string, DataSourceSummaryOperand, string)", + "AddSummaryString": "AddSummaryString(string, DataSourceSummaryOperand, string)", + "FillColumnBool(string, bool[])": "FillColumnBool(string, bool[])", + "FillColumnBool": "FillColumnBool(string, bool[])", + "FillColumnDate(string, DateTime[])": "FillColumnDate(string, DateTime[])", + "FillColumnDate": "FillColumnDate(string, DateTime[])", + "FillColumnDouble(string, double[])": "FillColumnDouble(string, double[])", + "FillColumnDouble": "FillColumnDouble(string, double[])", + "FillColumnInt(string, int[])": "FillColumnInt(string, int[])", + "FillColumnInt": "FillColumnInt(string, int[])", + "FillColumnString(string, string[])": "FillColumnString(string, string[])", + "FillColumnString": "FillColumnString(string, string[])", + "FillCount(int)": "FillCount(int)", + "FillCount": "FillCount(int)", + "FillGroupEnd()": "FillGroupEnd()", + "FillGroupEnd": "FillGroupEnd()", + "FillGroupStart(int, int)": "FillGroupStart(int, int)", + "FillGroupStart": "FillGroupStart(int, int)", + "FillGroupValueDate(string, DateTime)": "FillGroupValueDate(string, DateTime)", + "FillGroupValueDate": "FillGroupValueDate(string, DateTime)", + "FillGroupValueDouble(string, double)": "FillGroupValueDouble(string, double)", + "FillGroupValueDouble": "FillGroupValueDouble(string, double)", + "FillGroupValueInt(string, int)": "FillGroupValueInt(string, int)", + "FillGroupValueInt": "FillGroupValueInt(string, int)", + "FillGroupValueString(string, string)": "FillGroupValueString(string, string)", + "FillGroupValueString": "FillGroupValueString(string, string)", + "FillPageEnd()": "FillPageEnd()", + "FillPageEnd": "FillPageEnd()", + "FillPageStart(int)": "FillPageStart(int)", + "FillPageStart": "FillPageStart(int)", + "FillPageStartForSource(int, int)": "FillPageStartForSource(int, int)", + "FillPageStartForSource": "FillPageStartForSource(int, int)", + "OnPageRequested(PageRequestedEventArgs)": "OnPageRequested(PageRequestedEventArgs)", + "OnPageRequested": "OnPageRequested(PageRequestedEventArgs)", + "PageSizeRequested": "PageSizeRequested" + } + } + ], + "GenericVirtualDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GenericVirtualDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "GenericVirtualDataSourceDescription()": "GenericVirtualDataSourceDescription()", + "GenericVirtualDataSourceDescription": "GenericVirtualDataSourceDescription()", + "PageRequestedRef": "PageRequestedRef", + "PageSizeRequested": "PageSizeRequested", + "Type": "Type" + } + } + ], + "GenericVirtualDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GenericVirtualDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GenericVirtualDataSourceDescriptionMetadata()": "GenericVirtualDataSourceDescriptionMetadata()", + "GenericVirtualDataSourceDescriptionMetadata": "GenericVirtualDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GenericVirtualDataSourceDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GenericVirtualDataSourceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GenericVirtualDataSourceDescriptionModule()": "GenericVirtualDataSourceDescriptionModule()", + "GenericVirtualDataSourceDescriptionModule": "GenericVirtualDataSourceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicContourLineSeries": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicContourLineSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicContourLineSeries()": "GeographicContourLineSeries()", + "GeographicContourLineSeries": "GeographicContourLineSeries()", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "OnTriangulationStatusChanged(TriangulationStatusEventArgs)": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "OnTriangulationStatusChanged": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "ValueResolver": "ValueResolver", + "ValueResolverProperty": "ValueResolverProperty" + } + } + ], + "GeographicContourLineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicContourLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicContourLineSeriesDescription()": "GeographicContourLineSeriesDescription()", + "GeographicContourLineSeriesDescription": "GeographicContourLineSeriesDescription()", + "ActualFillScale": "ActualFillScale", + "FillScale": "FillScale", + "TriangulationStatusChangedRef": "TriangulationStatusChangedRef", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath", + "ValueResolver": "ValueResolver" + } + } + ], + "GeographicContourLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicContourLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicContourLineSeriesDescriptionMetadata()": "GeographicContourLineSeriesDescriptionMetadata()", + "GeographicContourLineSeriesDescriptionMetadata": "GeographicContourLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicContourLineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicContourLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicContourLineSeriesDescriptionModule()": "GeographicContourLineSeriesDescriptionModule()", + "GeographicContourLineSeriesDescriptionModule": "GeographicContourLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicHighDensityScatterSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicHighDensityScatterSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicHighDensityScatterSeriesDescription()": "GeographicHighDensityScatterSeriesDescription()", + "GeographicHighDensityScatterSeriesDescription": "GeographicHighDensityScatterSeriesDescription()", + "HeatMaximum": "HeatMaximum", + "HeatMaximumColor": "HeatMaximumColor", + "HeatMinimum": "HeatMinimum", + "HeatMinimumColor": "HeatMinimumColor", + "LatitudeMemberPath": "LatitudeMemberPath", + "LongitudeMemberPath": "LongitudeMemberPath", + "PointExtent": "PointExtent", + "ProgressiveLoad": "ProgressiveLoad", + "ProgressiveLoadStatusChangedRef": "ProgressiveLoadStatusChangedRef", + "ProgressiveStatus": "ProgressiveStatus", + "Type": "Type", + "UseBruteForce": "UseBruteForce" + } + } + ], + "GeographicHighDensityScatterSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicHighDensityScatterSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicHighDensityScatterSeriesDescriptionMetadata()": "GeographicHighDensityScatterSeriesDescriptionMetadata()", + "GeographicHighDensityScatterSeriesDescriptionMetadata": "GeographicHighDensityScatterSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicHighDensityScatterSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicHighDensityScatterSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicHighDensityScatterSeriesDescriptionModule()": "GeographicHighDensityScatterSeriesDescriptionModule()", + "GeographicHighDensityScatterSeriesDescriptionModule": "GeographicHighDensityScatterSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicMapCoreDescriptionModule()": "GeographicMapCoreDescriptionModule()", + "GeographicMapCoreDescriptionModule": "GeographicMapCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapDashboardTileDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDashboardTileDescriptionModule()": "GeographicMapDashboardTileDescriptionModule()", + "GeographicMapDashboardTileDescriptionModule": "GeographicMapDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/GeographicMapDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDashboardTileFeature()": "GeographicMapDashboardTileFeature()", + "GeographicMapDashboardTileFeature": "GeographicMapDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "GeographicMapDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDescription()": "GeographicMapDescription()", + "GeographicMapDescription": "GeographicMapDescription()", + "ActualWindowScale": "ActualWindowScale", + "ActualWorldRect": "ActualWorldRect", + "BackgroundContent": "BackgroundContent", + "BackgroundTilingMode": "BackgroundTilingMode", + "Height": "Height", + "ImageTilesReadyRef": "ImageTilesReadyRef", + "IsHorizontalWrappingEnabled": "IsHorizontalWrappingEnabled", + "ResizeBehavior": "ResizeBehavior", + "SuppressZoomResetOnWorldRectChange": "SuppressZoomResetOnWorldRectChange", + "Type": "Type", + "UseWorldRectForZoomBounds": "UseWorldRectForZoomBounds", + "Width": "Width", + "WindowScale": "WindowScale", + "WorldRect": "WorldRect", + "Zoomable": "Zoomable" + } + } + ], + "GeographicMapDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDescriptionMetadata()": "GeographicMapDescriptionMetadata()", + "GeographicMapDescriptionMetadata": "GeographicMapDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDescriptionModule()": "GeographicMapDescriptionModule()", + "GeographicMapDescriptionModule": "GeographicMapDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapImagery": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicMapImagery", + "k": "class", + "s": "classes", + "m": { + "ClearTileCache()": "ClearTileCache()", + "ClearTileCache": "ClearTileCache()", + "GeographicMap": "GeographicMap", + "IsHorizontalWrappingEnabled": "IsHorizontalWrappingEnabled", + "OnCancellingImage(CancellingMultiScaleImageEventArgs)": "OnCancellingImage(CancellingMultiScaleImageEventArgs)", + "OnCancellingImage": "OnCancellingImage(CancellingMultiScaleImageEventArgs)", + "OnDownloadingImage(DownloadingMultiScaleImageEventArgs)": "OnDownloadingImage(DownloadingMultiScaleImageEventArgs)", + "OnDownloadingImage": "OnDownloadingImage(DownloadingMultiScaleImageEventArgs)", + "OnImageTilesReady(EventArgs)": "OnImageTilesReady(EventArgs)", + "OnImageTilesReady": "OnImageTilesReady(EventArgs)", + "OnImagesChanged(EventArgs)": "OnImagesChanged(EventArgs)", + "OnImagesChanged": "OnImagesChanged(EventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Referer": "Referer", + "UserAgent": "UserAgent", + "WindowRect": "WindowRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GeographicMapImageryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMapImageryDescription()": "GeographicMapImageryDescription()", + "GeographicMapImageryDescription": "GeographicMapImageryDescription()", + "CancellingImageRef": "CancellingImageRef", + "DownloadingImageRef": "DownloadingImageRef", + "ImageTilesReadyRef": "ImageTilesReadyRef", + "ImagesChangedRef": "ImagesChangedRef", + "IsHorizontalWrappingEnabled": "IsHorizontalWrappingEnabled", + "Opacity": "Opacity", + "Referer": "Referer", + "Type": "Type", + "UserAgent": "UserAgent", + "WindowRect": "WindowRect" + } + } + ], + "GeographicMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMapImageryDescriptionMetadata()": "GeographicMapImageryDescriptionMetadata()", + "GeographicMapImageryDescriptionMetadata": "GeographicMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapSeriesHost": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicMapSeriesHost", + "k": "class", + "s": "classes", + "m": { + "VisibleFromScale": "VisibleFromScale", + "VisibleFromScaleProperty": "VisibleFromScaleProperty" + } + } + ], + "GeographicMapSeriesHostDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapSeriesHostDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMapSeriesHostDescription()": "GeographicMapSeriesHostDescription()", + "GeographicMapSeriesHostDescription": "GeographicMapSeriesHostDescription()", + "Type": "Type", + "VisibleFromScale": "VisibleFromScale" + } + } + ], + "GeographicMapSeriesHostDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMapSeriesHostDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMapSeriesHostDescriptionMetadata()": "GeographicMapSeriesHostDescriptionMetadata()", + "GeographicMapSeriesHostDescriptionMetadata": "GeographicMapSeriesHostDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMarkerSeries": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicMarkerSeries", + "k": "class", + "s": "classes", + "m": { + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerTemplate": "MarkerTemplate", + "MarkerTemplateProperty": "MarkerTemplateProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "MaximumMarkers": "MaximumMarkers", + "MaximumMarkersProperty": "MaximumMarkersProperty" + } + } + ], + "GeographicMarkerSeriesBase": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicMarkerSeriesBase", + "k": "class", + "s": "classes" + } + ], + "GeographicMarkerSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMarkerSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMarkerSeriesBaseDescription()": "GeographicMarkerSeriesBaseDescription()", + "GeographicMarkerSeriesBaseDescription": "GeographicMarkerSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicMarkerSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMarkerSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMarkerSeriesBaseDescriptionMetadata()": "GeographicMarkerSeriesBaseDescriptionMetadata()", + "GeographicMarkerSeriesBaseDescriptionMetadata": "GeographicMarkerSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMarkerSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMarkerSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMarkerSeriesDescription()": "GeographicMarkerSeriesDescription()", + "GeographicMarkerSeriesDescription": "GeographicMarkerSeriesDescription()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "MarkerBrush": "MarkerBrush", + "MarkerFillMode": "MarkerFillMode", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "MaximumMarkers": "MaximumMarkers", + "Type": "Type" + } + } + ], + "GeographicMarkerSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicMarkerSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMarkerSeriesDescriptionMetadata()": "GeographicMarkerSeriesDescriptionMetadata()", + "GeographicMarkerSeriesDescriptionMetadata": "GeographicMarkerSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicPolylineSeries": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicPolylineSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicPolylineSeries()": "GeographicPolylineSeries()", + "GeographicPolylineSeries": "GeographicPolylineSeries()", + "ShapeFill": "ShapeFill", + "ShapeFillProperty": "ShapeFillProperty", + "ShapeOpacity": "ShapeOpacity", + "ShapeOpacityProperty": "ShapeOpacityProperty", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeProperty": "ShapeStrokeProperty", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "ShapeStrokeThicknessProperty": "ShapeStrokeThicknessProperty", + "ShapeStyleSelector": "ShapeStyleSelector", + "ShapeStyleSelectorProperty": "ShapeStyleSelectorProperty" + } + } + ], + "GeographicPolylineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicPolylineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicPolylineSeriesDescription()": "GeographicPolylineSeriesDescription()", + "GeographicPolylineSeriesDescription": "GeographicPolylineSeriesDescription()", + "ShapeFill": "ShapeFill", + "ShapeOpacity": "ShapeOpacity", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "ShapeStyleSelectorRef": "ShapeStyleSelectorRef", + "StyleShapeRef": "StyleShapeRef", + "Type": "Type" + } + } + ], + "GeographicPolylineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicPolylineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicPolylineSeriesDescriptionMetadata()": "GeographicPolylineSeriesDescriptionMetadata()", + "GeographicPolylineSeriesDescriptionMetadata": "GeographicPolylineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicPolylineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicPolylineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicPolylineSeriesDescriptionModule()": "GeographicPolylineSeriesDescriptionModule()", + "GeographicPolylineSeriesDescriptionModule": "GeographicPolylineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicProportionalSymbolSeries": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicProportionalSymbolSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeries()": "GeographicProportionalSymbolSeries()", + "GeographicProportionalSymbolSeries": "GeographicProportionalSymbolSeries()", + "FillMemberPath": "FillMemberPath", + "FillMemberPathProperty": "FillMemberPathProperty", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "FillScaleUseGlobalValuesProperty": "FillScaleUseGlobalValuesProperty", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterMarkerStyleAllowedProperty": "IsCustomScatterMarkerStyleAllowedProperty", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "IsCustomScatterStyleAllowedProperty": "IsCustomScatterStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LatitudeMemberPath": "LatitudeMemberPath", + "LatitudeMemberPathProperty": "LatitudeMemberPathProperty", + "LongitudeMemberPath": "LongitudeMemberPath", + "LongitudeMemberPathProperty": "LongitudeMemberPathProperty", + "MarkerBrushBrightness": "MarkerBrushBrightness", + "MarkerBrushBrightnessProperty": "MarkerBrushBrightnessProperty", + "MarkerOutlineBrightness": "MarkerOutlineBrightness", + "MarkerOutlineBrightnessProperty": "MarkerOutlineBrightnessProperty", + "MarkerOutlineUsesFillScale": "MarkerOutlineUsesFillScale", + "MarkerOutlineUsesFillScaleProperty": "MarkerOutlineUsesFillScaleProperty", + "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterMarkerStyle": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "OnAssigningScatterStyle": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusMemberPathProperty": "RadiusMemberPathProperty", + "RadiusScale": "RadiusScale", + "RadiusScaleProperty": "RadiusScaleProperty", + "RadiusScaleUseGlobalValues": "RadiusScaleUseGlobalValues", + "RadiusScaleUseGlobalValuesProperty": "RadiusScaleUseGlobalValuesProperty" + } + } + ], + "GeographicProportionalSymbolSeriesBase": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicProportionalSymbolSeriesBase", + "k": "class", + "s": "classes" + } + ], + "GeographicProportionalSymbolSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesBaseDescription()": "GeographicProportionalSymbolSeriesBaseDescription()", + "GeographicProportionalSymbolSeriesBaseDescription": "GeographicProportionalSymbolSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicProportionalSymbolSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesBaseDescriptionMetadata()": "GeographicProportionalSymbolSeriesBaseDescriptionMetadata()", + "GeographicProportionalSymbolSeriesBaseDescriptionMetadata": "GeographicProportionalSymbolSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicProportionalSymbolSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesDescription()": "GeographicProportionalSymbolSeriesDescription()", + "GeographicProportionalSymbolSeriesDescription": "GeographicProportionalSymbolSeriesDescription()", + "AssigningScatterMarkerStyleRef": "AssigningScatterMarkerStyleRef", + "AssigningScatterStyleRef": "AssigningScatterStyleRef", + "FillMemberPath": "FillMemberPath", + "FillScale": "FillScale", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchThreshold": "ItemSearchThreshold", + "LabelMemberPath": "LabelMemberPath", + "LatitudeMemberPath": "LatitudeMemberPath", + "LongitudeMemberPath": "LongitudeMemberPath", + "MarkerBrushBrightness": "MarkerBrushBrightness", + "MarkerOutlineBrightness": "MarkerOutlineBrightness", + "MarkerOutlineUsesFillScale": "MarkerOutlineUsesFillScale", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusScale": "RadiusScale", + "RadiusScaleUseGlobalValues": "RadiusScaleUseGlobalValues", + "Type": "Type" + } + } + ], + "GeographicProportionalSymbolSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesDescriptionMetadata()": "GeographicProportionalSymbolSeriesDescriptionMetadata()", + "GeographicProportionalSymbolSeriesDescriptionMetadata": "GeographicProportionalSymbolSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicProportionalSymbolSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesDescriptionModule()": "GeographicProportionalSymbolSeriesDescriptionModule()", + "GeographicProportionalSymbolSeriesDescriptionModule": "GeographicProportionalSymbolSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicScatterAreaSeries": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicScatterAreaSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicScatterAreaSeries()": "GeographicScatterAreaSeries()", + "GeographicScatterAreaSeries": "GeographicScatterAreaSeries()", + "ColorMemberPath": "ColorMemberPath", + "ColorMemberPathProperty": "ColorMemberPathProperty", + "ColorScale": "ColorScale", + "ColorScaleProperty": "ColorScaleProperty", + "OnTriangulationStatusChanged(TriangulationStatusEventArgs)": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "OnTriangulationStatusChanged": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "UpdateActualColorScale()": "UpdateActualColorScale()", + "UpdateActualColorScale": "UpdateActualColorScale()" + } + } + ], + "GeographicScatterAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicScatterAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicScatterAreaSeriesDescription()": "GeographicScatterAreaSeriesDescription()", + "GeographicScatterAreaSeriesDescription": "GeographicScatterAreaSeriesDescription()", + "ActualColorScale": "ActualColorScale", + "ColorMemberPath": "ColorMemberPath", + "ColorScale": "ColorScale", + "TriangulationStatusChangedRef": "TriangulationStatusChangedRef", + "Type": "Type" + } + } + ], + "GeographicScatterAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicScatterAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicScatterAreaSeriesDescriptionMetadata()": "GeographicScatterAreaSeriesDescriptionMetadata()", + "GeographicScatterAreaSeriesDescriptionMetadata": "GeographicScatterAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicScatterAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicScatterAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicScatterAreaSeriesDescriptionModule()": "GeographicScatterAreaSeriesDescriptionModule()", + "GeographicScatterAreaSeriesDescriptionModule": "GeographicScatterAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicShapeSeries": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicShapeSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeries()": "GeographicShapeSeries()", + "GeographicShapeSeries": "GeographicShapeSeries()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerTemplate": "MarkerTemplate", + "MarkerTemplateProperty": "MarkerTemplateProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "ShapeFill": "ShapeFill", + "ShapeFillProperty": "ShapeFillProperty", + "ShapeOpacity": "ShapeOpacity", + "ShapeOpacityProperty": "ShapeOpacityProperty", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeProperty": "ShapeStrokeProperty", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "ShapeStrokeThicknessProperty": "ShapeStrokeThicknessProperty", + "ShapeStyleSelector": "ShapeStyleSelector", + "ShapeStyleSelectorProperty": "ShapeStyleSelectorProperty" + } + } + ], + "GeographicShapeSeriesBase": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicShapeSeriesBase", + "k": "class", + "s": "classes", + "m": { + "FillMemberPath": "FillMemberPath", + "FillMemberPathProperty": "FillMemberPathProperty", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "FillScaleUseGlobalValuesProperty": "FillScaleUseGlobalValuesProperty", + "IsCustomShapeMarkerStyleAllowed": "IsCustomShapeMarkerStyleAllowed", + "IsCustomShapeMarkerStyleAllowedProperty": "IsCustomShapeMarkerStyleAllowedProperty", + "IsCustomShapeStyleAllowed": "IsCustomShapeStyleAllowed", + "IsCustomShapeStyleAllowedProperty": "IsCustomShapeStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchPointsThreshold": "ItemSearchPointsThreshold", + "ItemSearchPointsThresholdProperty": "ItemSearchPointsThresholdProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)": "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)", + "OnAssigningShapeMarkerStyle": "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)", + "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)": "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)", + "OnAssigningShapeStyle": "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)", + "ShapeFilterResolution": "ShapeFilterResolution", + "ShapeFilterResolutionProperty": "ShapeFilterResolutionProperty", + "ShapeMemberPath": "ShapeMemberPath", + "ShapeMemberPathProperty": "ShapeMemberPathProperty", + "ShapefileDataSource": "ShapefileDataSource", + "ShapefileDataSourceProperty": "ShapefileDataSourceProperty" + } + } + ], + "GeographicShapeSeriesBaseBase": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicShapeSeriesBaseBase", + "k": "class", + "s": "classes" + } + ], + "GeographicShapeSeriesBaseBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicShapeSeriesBaseBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesBaseBaseDescription()": "GeographicShapeSeriesBaseBaseDescription()", + "GeographicShapeSeriesBaseBaseDescription": "GeographicShapeSeriesBaseBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicShapeSeriesBaseBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicShapeSeriesBaseBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesBaseBaseDescriptionMetadata()": "GeographicShapeSeriesBaseBaseDescriptionMetadata()", + "GeographicShapeSeriesBaseBaseDescriptionMetadata": "GeographicShapeSeriesBaseBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicShapeSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicShapeSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesBaseDescription()": "GeographicShapeSeriesBaseDescription()", + "GeographicShapeSeriesBaseDescription": "GeographicShapeSeriesBaseDescription()", + "AssigningShapeMarkerStyleRef": "AssigningShapeMarkerStyleRef", + "AssigningShapeStyleRef": "AssigningShapeStyleRef", + "FillMemberPath": "FillMemberPath", + "FillScale": "FillScale", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "IsCustomShapeMarkerStyleAllowed": "IsCustomShapeMarkerStyleAllowed", + "IsCustomShapeStyleAllowed": "IsCustomShapeStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchPointsThreshold": "ItemSearchPointsThreshold", + "ItemSearchThreshold": "ItemSearchThreshold", + "ShapeFilterResolution": "ShapeFilterResolution", + "ShapeMemberPath": "ShapeMemberPath", + "ShapefileDataSource": "ShapefileDataSource", + "Type": "Type" + } + } + ], + "GeographicShapeSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicShapeSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesBaseDescriptionMetadata()": "GeographicShapeSeriesBaseDescriptionMetadata()", + "GeographicShapeSeriesBaseDescriptionMetadata": "GeographicShapeSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicShapeSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicShapeSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesDescription()": "GeographicShapeSeriesDescription()", + "GeographicShapeSeriesDescription": "GeographicShapeSeriesDescription()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "MarkerBrush": "MarkerBrush", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerFillMode": "MarkerFillMode", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "ShapeFill": "ShapeFill", + "ShapeOpacity": "ShapeOpacity", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "ShapeStyleSelectorRef": "ShapeStyleSelectorRef", + "StyleShapeRef": "StyleShapeRef", + "Type": "Type" + } + } + ], + "GeographicShapeSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicShapeSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesDescriptionMetadata()": "GeographicShapeSeriesDescriptionMetadata()", + "GeographicShapeSeriesDescriptionMetadata": "GeographicShapeSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicShapeSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicShapeSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesDescriptionModule()": "GeographicShapeSeriesDescriptionModule()", + "GeographicShapeSeriesDescriptionModule": "GeographicShapeSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicSymbolSeries": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicSymbolSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeries()": "GeographicSymbolSeries()", + "GeographicSymbolSeries": "GeographicSymbolSeries()", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterMarkerStyleAllowedProperty": "IsCustomScatterMarkerStyleAllowedProperty", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "IsCustomScatterStyleAllowedProperty": "IsCustomScatterStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "LatitudeMemberPath": "LatitudeMemberPath", + "LatitudeMemberPathProperty": "LatitudeMemberPathProperty", + "LongitudeMemberPath": "LongitudeMemberPath", + "LongitudeMemberPathProperty": "LongitudeMemberPathProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterMarkerStyle": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "OnAssigningScatterStyle": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)" + } + } + ], + "GeographicSymbolSeriesBase": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicSymbolSeriesBase", + "k": "class", + "s": "classes" + } + ], + "GeographicSymbolSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicSymbolSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesBaseDescription()": "GeographicSymbolSeriesBaseDescription()", + "GeographicSymbolSeriesBaseDescription": "GeographicSymbolSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicSymbolSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicSymbolSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesBaseDescriptionMetadata()": "GeographicSymbolSeriesBaseDescriptionMetadata()", + "GeographicSymbolSeriesBaseDescriptionMetadata": "GeographicSymbolSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicSymbolSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicSymbolSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesDescription()": "GeographicSymbolSeriesDescription()", + "GeographicSymbolSeriesDescription": "GeographicSymbolSeriesDescription()", + "AssigningScatterMarkerStyleRef": "AssigningScatterMarkerStyleRef", + "AssigningScatterStyleRef": "AssigningScatterStyleRef", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchThreshold": "ItemSearchThreshold", + "LatitudeMemberPath": "LatitudeMemberPath", + "LongitudeMemberPath": "LongitudeMemberPath", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "Type": "Type" + } + } + ], + "GeographicSymbolSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicSymbolSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesDescriptionMetadata()": "GeographicSymbolSeriesDescriptionMetadata()", + "GeographicSymbolSeriesDescriptionMetadata": "GeographicSymbolSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicSymbolSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicSymbolSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesDescriptionModule()": "GeographicSymbolSeriesDescriptionModule()", + "GeographicSymbolSeriesDescriptionModule": "GeographicSymbolSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicTileSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicTileSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicTileSeriesDescription()": "GeographicTileSeriesDescription()", + "GeographicTileSeriesDescription": "GeographicTileSeriesDescription()", + "ImageTilesReadyRef": "ImageTilesReadyRef", + "TileImagery": "TileImagery", + "Type": "Type" + } + } + ], + "GeographicTileSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicTileSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicTileSeriesDescriptionMetadata()": "GeographicTileSeriesDescriptionMetadata()", + "GeographicTileSeriesDescriptionMetadata": "GeographicTileSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicTileSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicTileSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicTileSeriesDescriptionModule()": "GeographicTileSeriesDescriptionModule()", + "GeographicTileSeriesDescriptionModule": "GeographicTileSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicXYTriangulatingSeries": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicXYTriangulatingSeries", + "k": "class", + "s": "classes", + "m": { + "LatitudeMemberPath": "LatitudeMemberPath", + "LatitudeMemberPathProperty": "LatitudeMemberPathProperty", + "LongitudeMemberPath": "LongitudeMemberPath", + "LongitudeMemberPathProperty": "LongitudeMemberPathProperty", + "TriangleVertexMemberPath1": "TriangleVertexMemberPath1", + "TriangleVertexMemberPath1Property": "TriangleVertexMemberPath1Property", + "TriangleVertexMemberPath2": "TriangleVertexMemberPath2", + "TriangleVertexMemberPath2Property": "TriangleVertexMemberPath2Property", + "TriangleVertexMemberPath3": "TriangleVertexMemberPath3", + "TriangleVertexMemberPath3Property": "TriangleVertexMemberPath3Property", + "TrianglesSource": "TrianglesSource", + "TrianglesSourceProperty": "TrianglesSourceProperty" + } + } + ], + "GeographicXYTriangulatingSeriesBase": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/GeographicXYTriangulatingSeriesBase", + "k": "class", + "s": "classes" + } + ], + "GeographicXYTriangulatingSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicXYTriangulatingSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicXYTriangulatingSeriesBaseDescription()": "GeographicXYTriangulatingSeriesBaseDescription()", + "GeographicXYTriangulatingSeriesBaseDescription": "GeographicXYTriangulatingSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicXYTriangulatingSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicXYTriangulatingSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicXYTriangulatingSeriesBaseDescriptionMetadata()": "GeographicXYTriangulatingSeriesBaseDescriptionMetadata()", + "GeographicXYTriangulatingSeriesBaseDescriptionMetadata": "GeographicXYTriangulatingSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicXYTriangulatingSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicXYTriangulatingSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicXYTriangulatingSeriesDescription()": "GeographicXYTriangulatingSeriesDescription()", + "GeographicXYTriangulatingSeriesDescription": "GeographicXYTriangulatingSeriesDescription()", + "LatitudeMemberPath": "LatitudeMemberPath", + "LongitudeMemberPath": "LongitudeMemberPath", + "TriangleVertexMemberPath1": "TriangleVertexMemberPath1", + "TriangleVertexMemberPath2": "TriangleVertexMemberPath2", + "TriangleVertexMemberPath3": "TriangleVertexMemberPath3", + "TrianglesSourceRef": "TrianglesSourceRef", + "Type": "Type" + } + } + ], + "GeographicXYTriangulatingSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeographicXYTriangulatingSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicXYTriangulatingSeriesDescriptionMetadata()": "GeographicXYTriangulatingSeriesDescriptionMetadata()", + "GeographicXYTriangulatingSeriesDescriptionMetadata": "GeographicXYTriangulatingSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeometryData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GeometryData", + "k": "class", + "s": "classes", + "m": { + "GeometryData()": "GeometryData()", + "GeometryData": "GeometryData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "GetPointsSettings": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GetPointsSettings", + "k": "class", + "s": "classes", + "m": { + "GetPointsSettings()": "GetPointsSettings()", + "GetPointsSettings": "GetPointsSettings()", + "IgnoreFigureStartPoint": "IgnoreFigureStartPoint" + } + } + ], + "GetTileImageUriArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GetTileImageUriArgs", + "k": "class", + "s": "classes", + "m": { + "GetTileImageUriArgs(int, int, int)": "GetTileImageUriArgs(int, int, int)", + "GetTileImageUriArgs": "GetTileImageUriArgs(int, int, int)", + "TileImageUri": "TileImageUri", + "TileLevel": "TileLevel", + "TilePositionX": "TilePositionX", + "TilePositionY": "TilePositionY", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GetTileImageUriArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GetTileImageUriArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GetTileImageUriArgsDescription()": "GetTileImageUriArgsDescription()", + "GetTileImageUriArgsDescription": "GetTileImageUriArgsDescription()", + "TileImageUri": "TileImageUri", + "TileLevel": "TileLevel", + "TilePositionX": "TilePositionX", + "TilePositionY": "TilePositionY", + "Type": "Type" + } + } + ], + "GetTileImageUriArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GetTileImageUriArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GetTileImageUriArgsDescriptionMetadata()": "GetTileImageUriArgsDescriptionMetadata()", + "GetTileImageUriArgsDescriptionMetadata": "GetTileImageUriArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GlobalAnimationState": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GlobalAnimationState", + "k": "class", + "s": "classes", + "m": { + "GetAnimationIdleVersionNumber()": "GetAnimationIdleVersionNumber()", + "GetAnimationIdleVersionNumber": "GetAnimationIdleVersionNumber()", + "Instance": "Instance", + "IsAnimationActive()": "IsAnimationActive()", + "IsAnimationActive": "IsAnimationActive()", + "NotifyAnimationEnd()": "NotifyAnimationEnd()", + "NotifyAnimationEnd": "NotifyAnimationEnd()", + "NotifyAnimationStart()": "NotifyAnimationStart()", + "NotifyAnimationStart": "NotifyAnimationStart()", + "QueueForAnimationIdle(Action, int)": "QueueForAnimationIdle(Action, int)", + "QueueForAnimationIdle": "QueueForAnimationIdle(Action, int)", + "QueueForAnimationIdleWithTimeout(Action, int, int)": "QueueForAnimationIdleWithTimeout(Action, int, int)", + "QueueForAnimationIdleWithTimeout": "QueueForAnimationIdleWithTimeout(Action, int, int)", + "SetExecutionContext(IExecutionContext)": "SetExecutionContext(IExecutionContext)", + "SetExecutionContext": "SetExecutionContext(IExecutionContext)" + } + } + ], + "GlobalMemberAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/GlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "GlobalMemberAttribute()": "GlobalMemberAttribute()", + "GlobalMemberAttribute": "GlobalMemberAttribute()" + } + } + ], + "GlobalStaticResources": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/GlobalStaticResources", + "k": "class", + "s": "classes", + "m": { + "Initialize()": "Initialize()", + "Initialize": "Initialize()", + "RegisterDefaultStyles()": "RegisterDefaultStyles()", + "RegisterDefaultStyles": "RegisterDefaultStyles()", + "RegisterResourceDictionariesBySource()": "RegisterResourceDictionariesBySource()", + "RegisterResourceDictionariesBySource": "RegisterResourceDictionariesBySource()", + "RegisterResourceDictionariesBySourceLocal()": "RegisterResourceDictionariesBySourceLocal()", + "RegisterResourceDictionariesBySourceLocal": "RegisterResourceDictionariesBySourceLocal()" + } + } + ], + "GotFocusEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GotFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "GotFocusEventArgs()": "GotFocusEventArgs()", + "GotFocusEventArgs": "GotFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GotFocusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GotFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GotFocusEventArgsDescription()": "GotFocusEventArgsDescription()", + "GotFocusEventArgsDescription": "GotFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "GotFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GotFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GotFocusEventArgsDescriptionMetadata()": "GotFocusEventArgsDescriptionMetadata()", + "GotFocusEventArgsDescriptionMetadata": "GotFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GradientStop": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/GradientStop", + "k": "class", + "s": "classes", + "m": { + "GradientStop()": "GradientStop()", + "GradientStop": "GradientStop()", + "Color": "Color", + "Offset": "Offset" + } + } + ], + "GradientStopAppearanceData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GradientStopAppearanceData", + "k": "class", + "s": "classes", + "m": { + "GradientStopAppearanceData()": "GradientStopAppearanceData()", + "GradientStopAppearanceData": "GradientStopAppearanceData()", + "ColorValue": "ColorValue", + "Offset": "Offset", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "GradientStopCollection": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/GradientStopCollection", + "k": "class", + "s": "classes", + "m": { + "GradientStopCollection()": "GradientStopCollection()", + "GradientStopCollection": "GradientStopCollection()" + } + } + ], + "GridActivationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/GridActivationMode", + "k": "enum", + "s": "enums" + } + ], + "GridActiveCellChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridActiveCellChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridActiveCellChangedEventArgs()": "GridActiveCellChangedEventArgs()", + "GridActiveCellChangedEventArgs": "GridActiveCellChangedEventArgs()", + "NewActiveCell": "NewActiveCell", + "OldActiveCell": "OldActiveCell", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridActiveCellChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridActiveCellChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridActiveCellChangedEventArgsDescription()": "GridActiveCellChangedEventArgsDescription()", + "GridActiveCellChangedEventArgsDescription": "GridActiveCellChangedEventArgsDescription()", + "NewActiveCell": "NewActiveCell", + "OldActiveCell": "OldActiveCell", + "Type": "Type" + } + } + ], + "GridActiveCellChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridActiveCellChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridActiveCellChangedEventArgsDescriptionMetadata()": "GridActiveCellChangedEventArgsDescriptionMetadata()", + "GridActiveCellChangedEventArgsDescriptionMetadata": "GridActiveCellChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridAnimationPhaseSettings": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridAnimationPhaseSettings", + "k": "class", + "s": "classes", + "m": { + "GridAnimationPhaseSettings()": "GridAnimationPhaseSettings()", + "GridAnimationPhaseSettings": "GridAnimationPhaseSettings()", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "DesiredSubItemDurationMilliseconds": "DesiredSubItemDurationMilliseconds", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "DurationMilliseconds": "DurationMilliseconds", + "EasingFunctionType": "EasingFunctionType", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "HoldInitialMilliseconds": "HoldInitialMilliseconds", + "IsStoreInitialized": "IsStoreInitialized", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PerItemDelayMilliseconds": "PerItemDelayMilliseconds", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "ShouldItemsFinishSimultaneously": "ShouldItemsFinishSimultaneously", + "SubItemDurationMilliseconds": "SubItemDurationMilliseconds", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "ToString()": "ToString()", + "ToString": "ToString()", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridAnimationPhaseSettingsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridAnimationPhaseSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "GridAnimationPhaseSettingsDescription()": "GridAnimationPhaseSettingsDescription()", + "GridAnimationPhaseSettingsDescription": "GridAnimationPhaseSettingsDescription()", + "DesiredSubItemDurationMilliseconds": "DesiredSubItemDurationMilliseconds", + "DurationMilliseconds": "DurationMilliseconds", + "EasingFunctionType": "EasingFunctionType", + "HoldInitialMilliseconds": "HoldInitialMilliseconds", + "PerItemDelayMilliseconds": "PerItemDelayMilliseconds", + "ShouldItemsFinishSimultaneously": "ShouldItemsFinishSimultaneously", + "SubItemDurationMilliseconds": "SubItemDurationMilliseconds", + "Type": "Type" + } + } + ], + "GridAnimationPhaseSettingsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridAnimationPhaseSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridAnimationPhaseSettingsDescriptionMetadata()": "GridAnimationPhaseSettingsDescriptionMetadata()", + "GridAnimationPhaseSettingsDescriptionMetadata": "GridAnimationPhaseSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridAnimationSettings": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridAnimationSettings", + "k": "class", + "s": "classes", + "m": { + "GridAnimationSettings()": "GridAnimationSettings()", + "GridAnimationSettings": "GridAnimationSettings()", + "CellActivationMainPhase": "CellActivationMainPhase", + "CellActivationMainPhaseProperty": "CellActivationMainPhaseProperty", + "CellDataLoadedMainPhase": "CellDataLoadedMainPhase", + "CellDataLoadedMainPhaseProperty": "CellDataLoadedMainPhaseProperty", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "IsStoreInitialized": "IsStoreInitialized", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "RowHoverMainPhase": "RowHoverMainPhase", + "RowHoverMainPhaseProperty": "RowHoverMainPhaseProperty", + "RowSelectionMainPhase": "RowSelectionMainPhase", + "RowSelectionMainPhaseProperty": "RowSelectionMainPhaseProperty", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "ToString()": "ToString()", + "ToString": "ToString()", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridAnimationSettingsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridAnimationSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "GridAnimationSettingsDescription()": "GridAnimationSettingsDescription()", + "GridAnimationSettingsDescription": "GridAnimationSettingsDescription()", + "Type": "Type" + } + } + ], + "GridAnimationSettingsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridAnimationSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridAnimationSettingsDescriptionMetadata()": "GridAnimationSettingsDescriptionMetadata()", + "GridAnimationSettingsDescriptionMetadata": "GridAnimationSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellEditEndedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridCellEditEndedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridCellEditEndedEventArgs()": "GridCellEditEndedEventArgs()", + "GridCellEditEndedEventArgs": "GridCellEditEndedEventArgs()", + "Column": "Column", + "Item": "Item", + "Row": "Row", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCellEditEndedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellEditEndedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellEditEndedEventArgsDescription()": "GridCellEditEndedEventArgsDescription()", + "GridCellEditEndedEventArgsDescription": "GridCellEditEndedEventArgsDescription()", + "Column": "Column", + "Item": "Item", + "Row": "Row", + "Type": "Type" + } + } + ], + "GridCellEditEndedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellEditEndedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellEditEndedEventArgsDescriptionMetadata()": "GridCellEditEndedEventArgsDescriptionMetadata()", + "GridCellEditEndedEventArgsDescriptionMetadata": "GridCellEditEndedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellEditStartedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridCellEditStartedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridCellEditStartedEventArgs()": "GridCellEditStartedEventArgs()", + "GridCellEditStartedEventArgs": "GridCellEditStartedEventArgs()", + "Column": "Column", + "Item": "Item", + "Row": "Row", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCellEditStartedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellEditStartedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellEditStartedEventArgsDescription()": "GridCellEditStartedEventArgsDescription()", + "GridCellEditStartedEventArgsDescription": "GridCellEditStartedEventArgsDescription()", + "Column": "Column", + "Item": "Item", + "Row": "Row", + "Type": "Type" + } + } + ], + "GridCellEditStartedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellEditStartedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellEditStartedEventArgsDescriptionMetadata()": "GridCellEditStartedEventArgsDescriptionMetadata()", + "GridCellEditStartedEventArgsDescriptionMetadata": "GridCellEditStartedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellEventArgsDescription()": "GridCellEventArgsDescription()", + "GridCellEventArgsDescription": "GridCellEventArgsDescription()", + "Button": "Button", + "CellInfo": "CellInfo", + "Grid": "Grid", + "IsDoubleClick": "IsDoubleClick", + "Type": "Type" + } + } + ], + "GridCellEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellEventArgsDescriptionMetadata()": "GridCellEventArgsDescriptionMetadata()", + "GridCellEventArgsDescriptionMetadata": "GridCellEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellPosition": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridCellPosition", + "k": "class", + "s": "classes", + "m": { + "GridCellPosition()": "GridCellPosition()", + "GridCellPosition": "GridCellPosition()", + "ColumnUniqueKey": "ColumnUniqueKey", + "RowIndex": "RowIndex", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCellPositionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellPositionDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellPositionDescription()": "GridCellPositionDescription()", + "GridCellPositionDescription": "GridCellPositionDescription()", + "ColumnUniqueKey": "ColumnUniqueKey", + "RowIndex": "RowIndex", + "Type": "Type" + } + } + ], + "GridCellPositionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellPositionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellPositionDescriptionMetadata()": "GridCellPositionDescriptionMetadata()", + "GridCellPositionDescriptionMetadata": "GridCellPositionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellPositionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellPositionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridCellPositionDescriptionModule()": "GridCellPositionDescriptionModule()", + "GridCellPositionDescriptionModule": "GridCellPositionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellValueChangingEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridCellValueChangingEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridCellValueChangingEventArgs()": "GridCellValueChangingEventArgs()", + "GridCellValueChangingEventArgs": "GridCellValueChangingEventArgs()", + "CellInfo": "CellInfo", + "Column": "Column", + "EditID": "EditID", + "Item": "Item", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCellValueChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellValueChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellValueChangingEventArgsDescription()": "GridCellValueChangingEventArgsDescription()", + "GridCellValueChangingEventArgsDescription": "GridCellValueChangingEventArgsDescription()", + "CellInfo": "CellInfo", + "ColumnRef": "ColumnRef", + "EditID": "EditID", + "Item": "Item", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "GridCellValueChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCellValueChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellValueChangingEventArgsDescriptionMetadata()": "GridCellValueChangingEventArgsDescriptionMetadata()", + "GridCellValueChangingEventArgsDescriptionMetadata": "GridCellValueChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnAnimationSettings": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridColumnAnimationSettings", + "k": "class", + "s": "classes", + "m": { + "GridColumnAnimationSettings()": "GridColumnAnimationSettings()", + "GridColumnAnimationSettings": "GridColumnAnimationSettings()", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "ColumnAddingMainPhase": "ColumnAddingMainPhase", + "ColumnAddingPrePhase": "ColumnAddingPrePhase", + "ColumnExchangingCleanupPhase": "ColumnExchangingCleanupPhase", + "ColumnExchangingMainPhase": "ColumnExchangingMainPhase", + "ColumnHidingMainPhase": "ColumnHidingMainPhase", + "ColumnHidingPostPhase": "ColumnHidingPostPhase", + "ColumnMovingMainPhase": "ColumnMovingMainPhase", + "ColumnMovingPrePhase": "ColumnMovingPrePhase", + "ColumnPropertyUpdatingMainPhase": "ColumnPropertyUpdatingMainPhase", + "ColumnResizingMainPhase": "ColumnResizingMainPhase", + "ColumnShowingMainPhase": "ColumnShowingMainPhase", + "ColumnShowingPrePhase": "ColumnShowingPrePhase", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "IsStoreInitialized": "IsStoreInitialized", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "ToString()": "ToString()", + "ToString": "ToString()", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnAnimationSettingsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnAnimationSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnAnimationSettingsDescription()": "GridColumnAnimationSettingsDescription()", + "GridColumnAnimationSettingsDescription": "GridColumnAnimationSettingsDescription()", + "Type": "Type" + } + } + ], + "GridColumnAnimationSettingsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnAnimationSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnAnimationSettingsDescriptionMetadata()": "GridColumnAnimationSettingsDescriptionMetadata()", + "GridColumnAnimationSettingsDescriptionMetadata": "GridColumnAnimationSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnButtonOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnButtonOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnButtonOptionsDescription()": "GridColumnButtonOptionsDescription()", + "GridColumnButtonOptionsDescription": "GridColumnButtonOptionsDescription()", + "ApplyButtonCaption": "ApplyButtonCaption", + "ApplyButtonClickRef": "ApplyButtonClickRef", + "CancelButtonCaption": "CancelButtonCaption", + "CancelButtonClickRef": "CancelButtonClickRef", + "Type": "Type" + } + } + ], + "GridColumnButtonOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnButtonOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnButtonOptionsDescriptionMetadata()": "GridColumnButtonOptionsDescriptionMetadata()", + "GridColumnButtonOptionsDescriptionMetadata": "GridColumnButtonOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnButtonOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnButtonOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnButtonOptionsDescriptionModule()": "GridColumnButtonOptionsDescriptionModule()", + "GridColumnButtonOptionsDescriptionModule": "GridColumnButtonOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridColumnCollection", + "k": "class", + "s": "classes", + "m": { + "GridColumnCollection()": "GridColumnCollection()", + "GridColumnCollection": "GridColumnCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnFilterOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnFilterOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnFilterOptionsDescription()": "GridColumnFilterOptionsDescription()", + "GridColumnFilterOptionsDescription": "GridColumnFilterOptionsDescription()", + "ActualFilterListDensity": "ActualFilterListDensity", + "ClearColumnFiltersCaption": "ClearColumnFiltersCaption", + "FilterListDensity": "FilterListDensity", + "FilterListPlaceholderText": "FilterListPlaceholderText", + "TextFilterCaption": "TextFilterCaption", + "Type": "Type" + } + } + ], + "GridColumnFilterOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnFilterOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnFilterOptionsDescriptionMetadata()": "GridColumnFilterOptionsDescriptionMetadata()", + "GridColumnFilterOptionsDescriptionMetadata": "GridColumnFilterOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnFilterOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnFilterOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnFilterOptionsDescriptionModule()": "GridColumnFilterOptionsDescriptionModule()", + "GridColumnFilterOptionsDescriptionModule": "GridColumnFilterOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnGroupOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnGroupOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnGroupOptionsDescription()": "GridColumnGroupOptionsDescription()", + "GridColumnGroupOptionsDescription": "GridColumnGroupOptionsDescription()", + "Type": "Type" + } + } + ], + "GridColumnGroupOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnGroupOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnGroupOptionsDescriptionMetadata()": "GridColumnGroupOptionsDescriptionMetadata()", + "GridColumnGroupOptionsDescriptionMetadata": "GridColumnGroupOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnGroupOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnGroupOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnGroupOptionsDescriptionModule()": "GridColumnGroupOptionsDescriptionModule()", + "GridColumnGroupOptionsDescriptionModule": "GridColumnGroupOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnHideOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnHideOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnHideOptionsDescription()": "GridColumnHideOptionsDescription()", + "GridColumnHideOptionsDescription": "GridColumnHideOptionsDescription()", + "Type": "Type" + } + } + ], + "GridColumnHideOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnHideOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnHideOptionsDescriptionMetadata()": "GridColumnHideOptionsDescriptionMetadata()", + "GridColumnHideOptionsDescriptionMetadata": "GridColumnHideOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnHideOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnHideOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnHideOptionsDescriptionModule()": "GridColumnHideOptionsDescriptionModule()", + "GridColumnHideOptionsDescriptionModule": "GridColumnHideOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnMoveOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnMoveOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnMoveOptionsDescription()": "GridColumnMoveOptionsDescription()", + "GridColumnMoveOptionsDescription": "GridColumnMoveOptionsDescription()", + "MoveLeftCaption": "MoveLeftCaption", + "MoveRightCaption": "MoveRightCaption", + "Type": "Type" + } + } + ], + "GridColumnMoveOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnMoveOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnMoveOptionsDescriptionMetadata()": "GridColumnMoveOptionsDescriptionMetadata()", + "GridColumnMoveOptionsDescriptionMetadata": "GridColumnMoveOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnMoveOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnMoveOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnMoveOptionsDescriptionModule()": "GridColumnMoveOptionsDescriptionModule()", + "GridColumnMoveOptionsDescriptionModule": "GridColumnMoveOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsBaseDescription()": "GridColumnOptionsBaseDescription()", + "GridColumnOptionsBaseDescription": "GridColumnOptionsBaseDescription()", + "ActualBaseTheme": "ActualBaseTheme", + "ActualButtonDensity": "ActualButtonDensity", + "ActualDensity": "ActualDensity", + "AutoSize": "AutoSize", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "ButtonDensity": "ButtonDensity", + "ButtonFontFamily": "ButtonFontFamily", + "ButtonFontSize": "ButtonFontSize", + "ButtonFontStyle": "ButtonFontStyle", + "ButtonFontWeight": "ButtonFontWeight", + "Column": "Column", + "Density": "Density", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "TextColor": "TextColor", + "Type": "Type" + } + } + ], + "GridColumnOptionsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsBaseDescriptionMetadata()": "GridColumnOptionsBaseDescriptionMetadata()", + "GridColumnOptionsBaseDescriptionMetadata": "GridColumnOptionsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsDescription()": "GridColumnOptionsDescription()", + "GridColumnOptionsDescription": "GridColumnOptionsDescription()", + "ActualFilterListDensity": "ActualFilterListDensity", + "ActualSummaryListDensity": "ActualSummaryListDensity", + "ApplyButtonClickRef": "ApplyButtonClickRef", + "ApplyFiltersButtonCaption": "ApplyFiltersButtonCaption", + "CancelButtonClickRef": "CancelButtonClickRef", + "CancelFiltersButtonCaption": "CancelFiltersButtonCaption", + "ClearColumnFiltersCaption": "ClearColumnFiltersCaption", + "ColumnNameFontFamily": "ColumnNameFontFamily", + "ColumnNameFontSize": "ColumnNameFontSize", + "ColumnNameFontStyle": "ColumnNameFontStyle", + "ColumnNameFontWeight": "ColumnNameFontWeight", + "FilterListDensity": "FilterListDensity", + "FilterListPlaceholderText": "FilterListPlaceholderText", + "FilterOptionsVisible": "FilterOptionsVisible", + "GroupOptionsVisible": "GroupOptionsVisible", + "HeaderVisible": "HeaderVisible", + "HideOptionsVisible": "HideOptionsVisible", + "MoveHeaderCaption": "MoveHeaderCaption", + "MoveLeftCaption": "MoveLeftCaption", + "MoveOptionsVisible": "MoveOptionsVisible", + "MoveRightCaption": "MoveRightCaption", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "PinHeaderCaption": "PinHeaderCaption", + "PinLeftCaption": "PinLeftCaption", + "PinOptionsVisible": "PinOptionsVisible", + "PinRightCaption": "PinRightCaption", + "SortAscendingCaption": "SortAscendingCaption", + "SortDescendingCaption": "SortDescendingCaption", + "SortHeaderCaption": "SortHeaderCaption", + "SortOptionsVisible": "SortOptionsVisible", + "SummaryListBackground": "SummaryListBackground", + "SummaryListDensity": "SummaryListDensity", + "SummaryListTextColor": "SummaryListTextColor", + "SummaryOptionsVisible": "SummaryOptionsVisible", + "Type": "Type" + } + } + ], + "GridColumnOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsDescriptionMetadata()": "GridColumnOptionsDescriptionMetadata()", + "GridColumnOptionsDescriptionMetadata": "GridColumnOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsDescriptionModule()": "GridColumnOptionsDescriptionModule()", + "GridColumnOptionsDescriptionModule": "GridColumnOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsSectionBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsSectionBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsSectionBaseDescription()": "GridColumnOptionsSectionBaseDescription()", + "GridColumnOptionsSectionBaseDescription": "GridColumnOptionsSectionBaseDescription()", + "Type": "Type" + } + } + ], + "GridColumnOptionsSectionBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsSectionBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsSectionBaseDescriptionMetadata()": "GridColumnOptionsSectionBaseDescriptionMetadata()", + "GridColumnOptionsSectionBaseDescriptionMetadata": "GridColumnOptionsSectionBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsSimpleSectionBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsSimpleSectionBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsSimpleSectionBaseDescription()": "GridColumnOptionsSimpleSectionBaseDescription()", + "GridColumnOptionsSimpleSectionBaseDescription": "GridColumnOptionsSimpleSectionBaseDescription()", + "Caption": "Caption", + "ShowCaption": "ShowCaption", + "Type": "Type" + } + } + ], + "GridColumnOptionsSimpleSectionBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnOptionsSimpleSectionBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsSimpleSectionBaseDescriptionMetadata()": "GridColumnOptionsSimpleSectionBaseDescriptionMetadata()", + "GridColumnOptionsSimpleSectionBaseDescriptionMetadata": "GridColumnOptionsSimpleSectionBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnPinOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnPinOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnPinOptionsDescription()": "GridColumnPinOptionsDescription()", + "GridColumnPinOptionsDescription": "GridColumnPinOptionsDescription()", + "PinLeftCaption": "PinLeftCaption", + "PinRightCaption": "PinRightCaption", + "Type": "Type" + } + } + ], + "GridColumnPinOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnPinOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnPinOptionsDescriptionMetadata()": "GridColumnPinOptionsDescriptionMetadata()", + "GridColumnPinOptionsDescriptionMetadata": "GridColumnPinOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnPinOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnPinOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnPinOptionsDescriptionModule()": "GridColumnPinOptionsDescriptionModule()", + "GridColumnPinOptionsDescriptionModule": "GridColumnPinOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnsAutoGeneratedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridColumnsAutoGeneratedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridColumnsAutoGeneratedEventArgs()": "GridColumnsAutoGeneratedEventArgs()", + "GridColumnsAutoGeneratedEventArgs": "GridColumnsAutoGeneratedEventArgs()", + "Columns": "Columns", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnsAutoGeneratedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnsAutoGeneratedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnsAutoGeneratedEventArgsDescription()": "GridColumnsAutoGeneratedEventArgsDescription()", + "GridColumnsAutoGeneratedEventArgsDescription": "GridColumnsAutoGeneratedEventArgsDescription()", + "Columns": "Columns", + "Type": "Type" + } + } + ], + "GridColumnsAutoGeneratedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnsAutoGeneratedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnsAutoGeneratedEventArgsDescriptionMetadata()": "GridColumnsAutoGeneratedEventArgsDescriptionMetadata()", + "GridColumnsAutoGeneratedEventArgsDescriptionMetadata": "GridColumnsAutoGeneratedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnsChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridColumnsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridColumnsChangedEventArgs()": "GridColumnsChangedEventArgs()", + "GridColumnsChangedEventArgs": "GridColumnsChangedEventArgs()", + "Columns": "Columns", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnsChangedEventArgsDescription()": "GridColumnsChangedEventArgsDescription()", + "GridColumnsChangedEventArgsDescription": "GridColumnsChangedEventArgsDescription()", + "Columns": "Columns", + "Type": "Type" + } + } + ], + "GridColumnsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnsChangedEventArgsDescriptionMetadata()": "GridColumnsChangedEventArgsDescriptionMetadata()", + "GridColumnsChangedEventArgsDescriptionMetadata": "GridColumnsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnSortOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnSortOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnSortOptionsDescription()": "GridColumnSortOptionsDescription()", + "GridColumnSortOptionsDescription": "GridColumnSortOptionsDescription()", + "AscendingCaption": "AscendingCaption", + "DescendingCaption": "DescendingCaption", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "GridColumnSortOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnSortOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnSortOptionsDescriptionMetadata()": "GridColumnSortOptionsDescriptionMetadata()", + "GridColumnSortOptionsDescriptionMetadata": "GridColumnSortOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnSortOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnSortOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnSortOptionsDescriptionModule()": "GridColumnSortOptionsDescriptionModule()", + "GridColumnSortOptionsDescriptionModule": "GridColumnSortOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnSummaryOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnSummaryOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnSummaryOptionsDescription()": "GridColumnSummaryOptionsDescription()", + "GridColumnSummaryOptionsDescription": "GridColumnSummaryOptionsDescription()", + "ActiveCount": "ActiveCount", + "ActualSummaryListDensity": "ActualSummaryListDensity", + "SummaryCaption": "SummaryCaption", + "SummaryListBackground": "SummaryListBackground", + "SummaryListDensity": "SummaryListDensity", + "SummaryListTextColor": "SummaryListTextColor", + "Type": "Type" + } + } + ], + "GridColumnSummaryOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnSummaryOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnSummaryOptionsDescriptionMetadata()": "GridColumnSummaryOptionsDescriptionMetadata()", + "GridColumnSummaryOptionsDescriptionMetadata": "GridColumnSummaryOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnSummaryOptionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnSummaryOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnSummaryOptionsDescriptionModule()": "GridColumnSummaryOptionsDescriptionModule()", + "GridColumnSummaryOptionsDescriptionModule": "GridColumnSummaryOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnWidthChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridColumnWidthChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridColumnWidthChangedEventArgs()": "GridColumnWidthChangedEventArgs()", + "GridColumnWidthChangedEventArgs": "GridColumnWidthChangedEventArgs()", + "Column": "Column", + "NewWidth": "NewWidth", + "OldWidth": "OldWidth", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnWidthChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnWidthChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnWidthChangedEventArgsDescription()": "GridColumnWidthChangedEventArgsDescription()", + "GridColumnWidthChangedEventArgsDescription": "GridColumnWidthChangedEventArgsDescription()", + "ColumnRef": "ColumnRef", + "NewWidth": "NewWidth", + "OldWidth": "OldWidth", + "Type": "Type" + } + } + ], + "GridColumnWidthChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridColumnWidthChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnWidthChangedEventArgsDescriptionMetadata()": "GridColumnWidthChangedEventArgsDescriptionMetadata()", + "GridColumnWidthChangedEventArgsDescriptionMetadata": "GridColumnWidthChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCompoundConditionalStyle": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridCompoundConditionalStyle", + "k": "class", + "s": "classes", + "m": { + "GetSubStyles()": "GetSubStyles()", + "GetSubStyles": "GetSubStyles()" + } + } + ], + "GridCompoundConditionalStyleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCompoundConditionalStyleDescription", + "k": "class", + "s": "classes", + "m": { + "GridCompoundConditionalStyleDescription()": "GridCompoundConditionalStyleDescription()", + "GridCompoundConditionalStyleDescription": "GridCompoundConditionalStyleDescription()", + "Type": "Type" + } + } + ], + "GridCompoundConditionalStyleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCompoundConditionalStyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCompoundConditionalStyleDescriptionMetadata()": "GridCompoundConditionalStyleDescriptionMetadata()", + "GridCompoundConditionalStyleDescriptionMetadata": "GridCompoundConditionalStyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyle": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridConditionalStyle", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyle()": "GridConditionalStyle()", + "GridConditionalStyle": "GridConditionalStyle()", + "ActualNeedsFieldMaximum()": "ActualNeedsFieldMaximum()", + "ActualNeedsFieldMaximum": "ActualNeedsFieldMaximum()", + "ActualNeedsFieldMinimum()": "ActualNeedsFieldMinimum()", + "ActualNeedsFieldMinimum": "ActualNeedsFieldMinimum()", + "ActualNeedsFieldSum()": "ActualNeedsFieldSum()", + "ActualNeedsFieldSum": "ActualNeedsFieldSum()", + "Condition": "Condition", + "ConditionString": "ConditionString", + "IsCompound": "IsCompound", + "IsFieldMaximumNeeded": "IsFieldMaximumNeeded", + "IsFieldMinimumNeeded": "IsFieldMinimumNeeded", + "IsFieldSumNeeded": "IsFieldSumNeeded", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)": "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)", + "OnFilterStringErrorsParsing": "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "Properties": "Properties", + "RequiresGlobalValues()": "RequiresGlobalValues()", + "RequiresGlobalValues": "RequiresGlobalValues()", + "StyleKey": "StyleKey", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStyleBoundType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/GridConditionalStyleBoundType", + "k": "enum", + "s": "enums" + } + ], + "GridConditionalStyleCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridConditionalStyleCollection", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleCollection()": "GridConditionalStyleCollection()", + "GridConditionalStyleCollection": "GridConditionalStyleCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStyleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStyleDescription", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleDescription()": "GridConditionalStyleDescription()", + "GridConditionalStyleDescription": "GridConditionalStyleDescription()", + "Condition": "Condition", + "ConditionString": "ConditionString", + "FilterStringErrorsParsingRef": "FilterStringErrorsParsingRef", + "IsFieldMaximumNeeded": "IsFieldMaximumNeeded", + "IsFieldMinimumNeeded": "IsFieldMinimumNeeded", + "IsFieldSumNeeded": "IsFieldSumNeeded", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "Properties": "Properties", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "StyleKey": "StyleKey", + "Type": "Type" + } + } + ], + "GridConditionalStyleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleDescriptionMetadata()": "GridConditionalStyleDescriptionMetadata()", + "GridConditionalStyleDescriptionMetadata": "GridConditionalStyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStyleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleDescriptionModule()": "GridConditionalStyleDescriptionModule()", + "GridConditionalStyleDescriptionModule": "GridConditionalStyleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyleFontInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridConditionalStyleFontInfo", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleFontInfo()": "GridConditionalStyleFontInfo()", + "GridConditionalStyleFontInfo": "GridConditionalStyleFontInfo()", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStyleFontInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStyleFontInfoDescription", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleFontInfoDescription()": "GridConditionalStyleFontInfoDescription()", + "GridConditionalStyleFontInfoDescription": "GridConditionalStyleFontInfoDescription()", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "Type": "Type" + } + } + ], + "GridConditionalStyleFontInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStyleFontInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleFontInfoDescriptionMetadata()": "GridConditionalStyleFontInfoDescriptionMetadata()", + "GridConditionalStyleFontInfoDescriptionMetadata": "GridConditionalStyleFontInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyleFontInfoDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStyleFontInfoDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleFontInfoDescriptionModule()": "GridConditionalStyleFontInfoDescriptionModule()", + "GridConditionalStyleFontInfoDescriptionModule": "GridConditionalStyleFontInfoDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyleProperty": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridConditionalStyleProperty", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleProperty()": "GridConditionalStyleProperty()", + "GridConditionalStyleProperty": "GridConditionalStyleProperty()", + "ActualInputValueExpression": "ActualInputValueExpression", + "ActualMaximumInputValueExpression": "ActualMaximumInputValueExpression", + "ActualMinimumInputValueExpression": "ActualMinimumInputValueExpression", + "ActualSumInputValueExpression": "ActualSumInputValueExpression", + "BoolValue": "BoolValue", + "BrushValue": "BrushValue", + "ColorCollection": "ColorCollection", + "DateValue": "DateValue", + "DoubleValue": "DoubleValue", + "FontValue": "FontValue", + "InputValueExpression": "InputValueExpression", + "InputValueExpressionString": "InputValueExpressionString", + "IntValue": "IntValue", + "MaximumColor": "MaximumColor", + "MaximumInputValue": "MaximumInputValue", + "MaximumInputValueExpression": "MaximumInputValueExpression", + "MaximumInputValueExpressionString": "MaximumInputValueExpressionString", + "MaximumType": "MaximumType", + "MinimumColor": "MinimumColor", + "MinimumInputValue": "MinimumInputValue", + "MinimumInputValueExpression": "MinimumInputValueExpression", + "MinimumInputValueExpressionString": "MinimumInputValueExpressionString", + "MinimumType": "MinimumType", + "NeedsGlobalMaximum": "NeedsGlobalMaximum", + "NeedsGlobalMinimum": "NeedsGlobalMinimum", + "NeedsGlobalSum": "NeedsGlobalSum", + "ObjectValue": "ObjectValue", + "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)": "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)", + "OnFilterStringErrorsParsing": "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PropertyName": "PropertyName", + "RequiresGlobalValues": "RequiresGlobalValues", + "ShouldSetValue": "ShouldSetValue", + "StringValue": "StringValue", + "StylingType": "StylingType", + "SumInputValue": "SumInputValue", + "SumInputValueExpression": "SumInputValueExpression", + "SumInputValueExpressionString": "SumInputValueExpressionString", + "ValueCollection": "ValueCollection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStylePropertyCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridConditionalStylePropertyCollection", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStylePropertyCollection()": "GridConditionalStylePropertyCollection()", + "GridConditionalStylePropertyCollection": "GridConditionalStylePropertyCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStylePropertyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStylePropertyDescription", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStylePropertyDescription()": "GridConditionalStylePropertyDescription()", + "GridConditionalStylePropertyDescription": "GridConditionalStylePropertyDescription()", + "ActualInputValueExpression": "ActualInputValueExpression", + "ActualMaximumInputValueExpression": "ActualMaximumInputValueExpression", + "ActualMinimumInputValueExpression": "ActualMinimumInputValueExpression", + "ActualSumInputValueExpression": "ActualSumInputValueExpression", + "BoolValue": "BoolValue", + "BrushValue": "BrushValue", + "ColorCollection": "ColorCollection", + "DateValue": "DateValue", + "DoubleValue": "DoubleValue", + "FilterStringErrorsParsingRef": "FilterStringErrorsParsingRef", + "FontValue": "FontValue", + "InputValueExpression": "InputValueExpression", + "InputValueExpressionString": "InputValueExpressionString", + "IntValue": "IntValue", + "MaximumColor": "MaximumColor", + "MaximumInputValueExpression": "MaximumInputValueExpression", + "MaximumInputValueExpressionString": "MaximumInputValueExpressionString", + "MaximumInputValueRef": "MaximumInputValueRef", + "MaximumType": "MaximumType", + "MinimumColor": "MinimumColor", + "MinimumInputValueExpression": "MinimumInputValueExpression", + "MinimumInputValueExpressionString": "MinimumInputValueExpressionString", + "MinimumInputValueRef": "MinimumInputValueRef", + "MinimumType": "MinimumType", + "ObjectValue": "ObjectValue", + "PropertyName": "PropertyName", + "ShouldSetValue": "ShouldSetValue", + "StringValue": "StringValue", + "StylingType": "StylingType", + "SumInputValueExpression": "SumInputValueExpression", + "SumInputValueExpressionString": "SumInputValueExpressionString", + "SumInputValueRef": "SumInputValueRef", + "Type": "Type", + "ValueCollectionRef": "ValueCollectionRef" + } + } + ], + "GridConditionalStylePropertyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStylePropertyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStylePropertyDescriptionMetadata()": "GridConditionalStylePropertyDescriptionMetadata()", + "GridConditionalStylePropertyDescriptionMetadata": "GridConditionalStylePropertyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStylePropertyDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionalStylePropertyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStylePropertyDescriptionModule()": "GridConditionalStylePropertyDescriptionModule()", + "GridConditionalStylePropertyDescriptionModule": "GridConditionalStylePropertyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStylePropertyStylingType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/GridConditionalStylePropertyStylingType", + "k": "enum", + "s": "enums" + } + ], + "GridConditionFilterStringErrorsParsingEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridConditionFilterStringErrorsParsingEventArgs", + "k": "class", + "s": "classes", + "m": { + "Errors": "Errors", + "PropertyName": "PropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionFilterStringErrorsParsingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionFilterStringErrorsParsingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridConditionFilterStringErrorsParsingEventArgsDescription()": "GridConditionFilterStringErrorsParsingEventArgsDescription()", + "GridConditionFilterStringErrorsParsingEventArgsDescription": "GridConditionFilterStringErrorsParsingEventArgsDescription()", + "Errors": "Errors", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata()": "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata()", + "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata": "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCustomFilterRequestedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridCustomFilterRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridCustomFilterRequestedEventArgs()": "GridCustomFilterRequestedEventArgs()", + "GridCustomFilterRequestedEventArgs": "GridCustomFilterRequestedEventArgs()", + "Column": "Column", + "Expression": "Expression", + "Filter": "Filter", + "FilterFactory": "FilterFactory", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCustomFilterRequestedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCustomFilterRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCustomFilterRequestedEventArgsDescription()": "GridCustomFilterRequestedEventArgsDescription()", + "GridCustomFilterRequestedEventArgsDescription": "GridCustomFilterRequestedEventArgsDescription()", + "Column": "Column", + "Expression": "Expression", + "Filter": "Filter", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "GridCustomFilterRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridCustomFilterRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCustomFilterRequestedEventArgsDescriptionMetadata()": "GridCustomFilterRequestedEventArgsDescriptionMetadata()", + "GridCustomFilterRequestedEventArgsDescriptionMetadata": "GridCustomFilterRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridDataCommittedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridDataCommittedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittedEventArgs(int, DataSourceAggregatedResult[])": "GridDataCommittedEventArgs(int, DataSourceAggregatedResult[])", + "GridDataCommittedEventArgs": "GridDataCommittedEventArgs(int, DataSourceAggregatedResult[])", + "Changes": "Changes", + "CommitID": "CommitID", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridDataCommittedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridDataCommittedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittedEventArgsDescription()": "GridDataCommittedEventArgsDescription()", + "GridDataCommittedEventArgsDescription": "GridDataCommittedEventArgsDescription()", + "Changes": "Changes", + "CommitID": "CommitID", + "Type": "Type" + } + } + ], + "GridDataCommittedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridDataCommittedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittedEventArgsDescriptionMetadata()": "GridDataCommittedEventArgsDescriptionMetadata()", + "GridDataCommittedEventArgsDescriptionMetadata": "GridDataCommittedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridDataCommittingEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridDataCommittingEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittingEventArgs(int, DataSourceAggregatedResult[])": "GridDataCommittingEventArgs(int, DataSourceAggregatedResult[])", + "GridDataCommittingEventArgs": "GridDataCommittingEventArgs(int, DataSourceAggregatedResult[])", + "Changes": "Changes", + "CommitID": "CommitID", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridDataCommittingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridDataCommittingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittingEventArgsDescription()": "GridDataCommittingEventArgsDescription()", + "GridDataCommittingEventArgsDescription": "GridDataCommittingEventArgsDescription()", + "Changes": "Changes", + "CommitID": "CommitID", + "Type": "Type" + } + } + ], + "GridDataCommittingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridDataCommittingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittingEventArgsDescriptionMetadata()": "GridDataCommittingEventArgsDescriptionMetadata()", + "GridDataCommittingEventArgsDescriptionMetadata": "GridDataCommittingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridEasingFunctionType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/GridEasingFunctionType", + "k": "enum", + "s": "enums" + } + ], + "GridFilterDialogFilterChangeEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterDialogFilterChangeEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogFilterChangeEventArgs()": "GridFilterDialogFilterChangeEventArgs()", + "GridFilterDialogFilterChangeEventArgs": "GridFilterDialogFilterChangeEventArgs()", + "Filter": "Filter", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogFilterChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogFilterChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogFilterChangeEventArgsDescription()": "GridFilterDialogFilterChangeEventArgsDescription()", + "GridFilterDialogFilterChangeEventArgsDescription": "GridFilterDialogFilterChangeEventArgsDescription()", + "Filter": "Filter", + "Type": "Type" + } + } + ], + "GridFilterDialogFilterChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogFilterChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogFilterChangeEventArgsDescriptionMetadata()": "GridFilterDialogFilterChangeEventArgsDescriptionMetadata()", + "GridFilterDialogFilterChangeEventArgsDescriptionMetadata": "GridFilterDialogFilterChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterDialogOpeningEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterDialogOpeningEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogOpeningEventArgs()": "GridFilterDialogOpeningEventArgs()", + "GridFilterDialogOpeningEventArgs": "GridFilterDialogOpeningEventArgs()", + "Column": "Column", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogOpeningEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogOpeningEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogOpeningEventArgsDescription()": "GridFilterDialogOpeningEventArgsDescription()", + "GridFilterDialogOpeningEventArgsDescription": "GridFilterDialogOpeningEventArgsDescription()", + "Column": "Column", + "Type": "Type" + } + } + ], + "GridFilterDialogOpeningEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogOpeningEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogOpeningEventArgsDescriptionMetadata()": "GridFilterDialogOpeningEventArgsDescriptionMetadata()", + "GridFilterDialogOpeningEventArgsDescriptionMetadata": "GridFilterDialogOpeningEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterDialogViewModel": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterDialogViewModel", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModel()": "GridFilterDialogViewModel()", + "GridFilterDialogViewModel": "GridFilterDialogViewModel()", + "AddNewRow()": "AddNewRow()", + "AddNewRow": "AddNewRow()", + "CanGroupRange(int, int)": "CanGroupRange(int, int)", + "CanGroupRange": "CanGroupRange(int, int)", + "GroupRange(int, int, bool)": "GroupRange(int, int, bool)", + "GroupRange": "GroupRange(int, int, bool)", + "GroupingLevels": "GroupingLevels", + "IsTopLevelOr": "IsTopLevelOr", + "MaxGroupingLevels": "MaxGroupingLevels", + "PropertyType": "PropertyType", + "Rows": "Rows", + "TargetingRange(int, int)": "TargetingRange(int, int)", + "TargetingRange": "TargetingRange(int, int)", + "ToggleRange(int, int)": "ToggleRange(int, int)", + "ToggleRange": "ToggleRange(int, int)", + "UngroupRange(int, int)": "UngroupRange(int, int)", + "UngroupRange": "UngroupRange(int, int)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogViewModelDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelDescription()": "GridFilterDialogViewModelDescription()", + "GridFilterDialogViewModelDescription": "GridFilterDialogViewModelDescription()", + "IsTopLevelOr": "IsTopLevelOr", + "MaxGroupingLevels": "MaxGroupingLevels", + "PropertyType": "PropertyType", + "Rows": "Rows", + "Type": "Type" + } + } + ], + "GridFilterDialogViewModelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogViewModelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelDescriptionMetadata()": "GridFilterDialogViewModelDescriptionMetadata()", + "GridFilterDialogViewModelDescriptionMetadata": "GridFilterDialogViewModelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterDialogViewModelGrouping": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterDialogViewModelGrouping", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGrouping()": "GridFilterDialogViewModelGrouping()", + "GridFilterDialogViewModelGrouping": "GridFilterDialogViewModelGrouping()", + "EndIndex": "EndIndex", + "IsOrGrouping": "IsOrGrouping", + "StartIndex": "StartIndex", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelGroupingDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogViewModelGroupingDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGroupingDescription()": "GridFilterDialogViewModelGroupingDescription()", + "GridFilterDialogViewModelGroupingDescription": "GridFilterDialogViewModelGroupingDescription()", + "EndIndex": "EndIndex", + "IsOrGrouping": "IsOrGrouping", + "StartIndex": "StartIndex", + "Type": "Type" + } + } + ], + "GridFilterDialogViewModelGroupingDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogViewModelGroupingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGroupingDescriptionMetadata()": "GridFilterDialogViewModelGroupingDescriptionMetadata()", + "GridFilterDialogViewModelGroupingDescriptionMetadata": "GridFilterDialogViewModelGroupingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterDialogViewModelGroupingLevel": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterDialogViewModelGroupingLevel", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGroupingLevel()": "GridFilterDialogViewModelGroupingLevel()", + "GridFilterDialogViewModelGroupingLevel": "GridFilterDialogViewModelGroupingLevel()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelGroupingLevelCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterDialogViewModelGroupingLevelCollection", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGroupingLevelCollection()": "GridFilterDialogViewModelGroupingLevelCollection()", + "GridFilterDialogViewModelGroupingLevelCollection": "GridFilterDialogViewModelGroupingLevelCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelRow": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterDialogViewModelRow", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelRow()": "GridFilterDialogViewModelRow()", + "GridFilterDialogViewModelRow": "GridFilterDialogViewModelRow()", + "CurrentOperator": "CurrentOperator", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Operand1": "Operand1", + "Operand2": "Operand2", + "OperandNumber": "OperandNumber", + "OperatorTypes": "OperatorTypes", + "Operators": "Operators", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelRowCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterDialogViewModelRowCollection", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelRowCollection()": "GridFilterDialogViewModelRowCollection()", + "GridFilterDialogViewModelRowCollection": "GridFilterDialogViewModelRowCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelRowDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogViewModelRowDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelRowDescription()": "GridFilterDialogViewModelRowDescription()", + "GridFilterDialogViewModelRowDescription": "GridFilterDialogViewModelRowDescription()", + "CurrentOperator": "CurrentOperator", + "Operand1Ref": "Operand1Ref", + "Operand2Ref": "Operand2Ref", + "OperandNumber": "OperandNumber", + "Operators": "Operators", + "Type": "Type" + } + } + ], + "GridFilterDialogViewModelRowDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterDialogViewModelRowDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelRowDescriptionMetadata()": "GridFilterDialogViewModelRowDescriptionMetadata()", + "GridFilterDialogViewModelRowDescriptionMetadata": "GridFilterDialogViewModelRowDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterExpressionsEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterExpressionsEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridFilterExpressionsEventArgs()": "GridFilterExpressionsEventArgs()", + "GridFilterExpressionsEventArgs": "GridFilterExpressionsEventArgs()", + "FilterExpressions": "FilterExpressions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterExpressionsEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterExpressionsEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterExpressionsEventArgsDescription()": "GridFilterExpressionsEventArgsDescription()", + "GridFilterExpressionsEventArgsDescription": "GridFilterExpressionsEventArgsDescription()", + "FilterExpressions": "FilterExpressions", + "Type": "Type" + } + } + ], + "GridFilterExpressionsEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridFilterExpressionsEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterExpressionsEventArgsDescriptionMetadata()": "GridFilterExpressionsEventArgsDescriptionMetadata()", + "GridFilterExpressionsEventArgsDescriptionMetadata": "GridFilterExpressionsEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterOperandsCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridFilterOperandsCollection", + "k": "class", + "s": "classes", + "m": { + "GridFilterOperandsCollection()": "GridFilterOperandsCollection()", + "GridFilterOperandsCollection": "GridFilterOperandsCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridGroupDescriptionsChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridGroupDescriptionsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridGroupDescriptionsChangedEventArgs()": "GridGroupDescriptionsChangedEventArgs()", + "GridGroupDescriptionsChangedEventArgs": "GridGroupDescriptionsChangedEventArgs()", + "GroupDescriptions": "GroupDescriptions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridGroupDescriptionsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridGroupDescriptionsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridGroupDescriptionsChangedEventArgsDescription()": "GridGroupDescriptionsChangedEventArgsDescription()", + "GridGroupDescriptionsChangedEventArgsDescription": "GridGroupDescriptionsChangedEventArgsDescription()", + "GroupDescriptions": "GroupDescriptions", + "Type": "Type" + } + } + ], + "GridGroupDescriptionsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridGroupDescriptionsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridGroupDescriptionsChangedEventArgsDescriptionMetadata()": "GridGroupDescriptionsChangedEventArgsDescriptionMetadata()", + "GridGroupDescriptionsChangedEventArgsDescriptionMetadata": "GridGroupDescriptionsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridHyperlinkNavigationRequestedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridHyperlinkNavigationRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridHyperlinkNavigationRequestedEventArgs()": "GridHyperlinkNavigationRequestedEventArgs()", + "GridHyperlinkNavigationRequestedEventArgs": "GridHyperlinkNavigationRequestedEventArgs()", + "Column": "Column", + "DisplayText": "DisplayText", + "Item": "Item", + "NavigateUri": "NavigateUri", + "OriginalValue": "OriginalValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridHyperlinkNavigationRequestedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridHyperlinkNavigationRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridHyperlinkNavigationRequestedEventArgsDescription()": "GridHyperlinkNavigationRequestedEventArgsDescription()", + "GridHyperlinkNavigationRequestedEventArgsDescription": "GridHyperlinkNavigationRequestedEventArgsDescription()", + "Column": "Column", + "DisplayText": "DisplayText", + "Item": "Item", + "NavigateUri": "NavigateUri", + "OriginalValue": "OriginalValue", + "Type": "Type" + } + } + ], + "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata()": "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata()", + "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata": "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridLayerExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridLayerExport", + "k": "class", + "s": "classes", + "m": { + "GridLayerExport(string)": "GridLayerExport(string)", + "GridLayerExport": "GridLayerExport(string)", + "Add(CellModelExport)": "Add(CellModelExport)", + "Add": "Add(CellModelExport)", + "Cells": "Cells", + "Clear()": "Clear()", + "Clear": "Clear()", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "GridLayoutSizeDefinition": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridLayoutSizeDefinition", + "k": "class", + "s": "classes", + "m": { + "GridLayoutSizeDefinition()": "GridLayoutSizeDefinition()", + "GridLayoutSizeDefinition": "GridLayoutSizeDefinition()", + "GridLayoutSizeDefinition(GridLayoutSizeType, double)": "GridLayoutSizeDefinition(GridLayoutSizeType, double)", + "SizeType": "SizeType", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridLayoutSizeType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/GridLayoutSizeType", + "k": "enum", + "s": "enums" + } + ], + "GridMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/GridMode", + "k": "enum", + "s": "enums" + } + ], + "GridRowEditEndedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridRowEditEndedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridRowEditEndedEventArgs()": "GridRowEditEndedEventArgs()", + "GridRowEditEndedEventArgs": "GridRowEditEndedEventArgs()", + "Item": "Item", + "Row": "Row", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridRowEditEndedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridRowEditEndedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridRowEditEndedEventArgsDescription()": "GridRowEditEndedEventArgsDescription()", + "GridRowEditEndedEventArgsDescription": "GridRowEditEndedEventArgsDescription()", + "Item": "Item", + "Row": "Row", + "Type": "Type" + } + } + ], + "GridRowEditEndedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridRowEditEndedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridRowEditEndedEventArgsDescriptionMetadata()": "GridRowEditEndedEventArgsDescriptionMetadata()", + "GridRowEditEndedEventArgsDescriptionMetadata": "GridRowEditEndedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridRowEditStartedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridRowEditStartedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridRowEditStartedEventArgs()": "GridRowEditStartedEventArgs()", + "GridRowEditStartedEventArgs": "GridRowEditStartedEventArgs()", + "Item": "Item", + "Row": "Row", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridRowEditStartedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridRowEditStartedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridRowEditStartedEventArgsDescription()": "GridRowEditStartedEventArgsDescription()", + "GridRowEditStartedEventArgsDescription": "GridRowEditStartedEventArgsDescription()", + "Item": "Item", + "Row": "Row", + "Type": "Type" + } + } + ], + "GridRowEditStartedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridRowEditStartedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridRowEditStartedEventArgsDescriptionMetadata()": "GridRowEditStartedEventArgsDescriptionMetadata()", + "GridRowEditStartedEventArgsDescriptionMetadata": "GridRowEditStartedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedCellRangesChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectedCellRangesChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellRangesChangedEventArgs()": "GridSelectedCellRangesChangedEventArgs()", + "GridSelectedCellRangesChangedEventArgs": "GridSelectedCellRangesChangedEventArgs()", + "AddedRanges": "AddedRanges", + "CurrentRanges": "CurrentRanges", + "RemovedRanges": "RemovedRanges", + "UpdatedRanges": "UpdatedRanges", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedCellRangesChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectedCellRangesChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellRangesChangedEventArgsDescription()": "GridSelectedCellRangesChangedEventArgsDescription()", + "GridSelectedCellRangesChangedEventArgsDescription": "GridSelectedCellRangesChangedEventArgsDescription()", + "AddedRanges": "AddedRanges", + "CurrentRanges": "CurrentRanges", + "RemovedRanges": "RemovedRanges", + "Type": "Type", + "UpdatedRanges": "UpdatedRanges" + } + } + ], + "GridSelectedCellRangesChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectedCellRangesChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellRangesChangedEventArgsDescriptionMetadata()": "GridSelectedCellRangesChangedEventArgsDescriptionMetadata()", + "GridSelectedCellRangesChangedEventArgsDescriptionMetadata": "GridSelectedCellRangesChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedCellRangesCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectedCellRangesCollection", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellRangesCollection()": "GridSelectedCellRangesCollection()", + "GridSelectedCellRangesCollection": "GridSelectedCellRangesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedCellsChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectedCellsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellsChangedEventArgs()": "GridSelectedCellsChangedEventArgs()", + "GridSelectedCellsChangedEventArgs": "GridSelectedCellsChangedEventArgs()", + "AddedCells": "AddedCells", + "CurrentCells": "CurrentCells", + "RemovedCells": "RemovedCells", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedCellsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectedCellsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellsChangedEventArgsDescription()": "GridSelectedCellsChangedEventArgsDescription()", + "GridSelectedCellsChangedEventArgsDescription": "GridSelectedCellsChangedEventArgsDescription()", + "AddedCells": "AddedCells", + "CurrentCells": "CurrentCells", + "RemovedCells": "RemovedCells", + "Type": "Type" + } + } + ], + "GridSelectedCellsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectedCellsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellsChangedEventArgsDescriptionMetadata()": "GridSelectedCellsChangedEventArgsDescriptionMetadata()", + "GridSelectedCellsChangedEventArgsDescriptionMetadata": "GridSelectedCellsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedCellsCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectedCellsCollection", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellsCollection()": "GridSelectedCellsCollection()", + "GridSelectedCellsCollection": "GridSelectedCellsCollection()", + "AddCell(PrimaryKeyValue, DataGridColumn)": "AddCell(PrimaryKeyValue, DataGridColumn)", + "AddCell": "AddCell(PrimaryKeyValue, DataGridColumn)", + "AddCell(PrimaryKeyValue, string)": "AddCell(PrimaryKeyValue, string)", + "AddCell(object, DataGridColumn)": "AddCell(object, DataGridColumn)", + "AddCell(object, string)": "AddCell(object, string)", + "RemoveCell(PrimaryKeyValue, long)": "RemoveCell(PrimaryKeyValue, long)", + "RemoveCell": "RemoveCell(PrimaryKeyValue, long)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedItemsChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectedItemsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectedItemsChangedEventArgs()": "GridSelectedItemsChangedEventArgs()", + "GridSelectedItemsChangedEventArgs": "GridSelectedItemsChangedEventArgs()", + "AddedItems": "AddedItems", + "CurrentItems": "CurrentItems", + "RemovedItems": "RemovedItems", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectedItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectedItemsChangedEventArgsDescription()": "GridSelectedItemsChangedEventArgsDescription()", + "GridSelectedItemsChangedEventArgsDescription": "GridSelectedItemsChangedEventArgsDescription()", + "AddedItems": "AddedItems", + "CurrentItems": "CurrentItems", + "RemovedItems": "RemovedItems", + "Type": "Type" + } + } + ], + "GridSelectedItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectedItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectedItemsChangedEventArgsDescriptionMetadata()": "GridSelectedItemsChangedEventArgsDescriptionMetadata()", + "GridSelectedItemsChangedEventArgsDescriptionMetadata": "GridSelectedItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedItemsCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectedItemsCollection", + "k": "class", + "s": "classes", + "m": { + "GridSelectedItemsCollection()": "GridSelectedItemsCollection()", + "GridSelectedItemsCollection": "GridSelectedItemsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedKeysChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectedKeysChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectedKeysChangedEventArgs()": "GridSelectedKeysChangedEventArgs()", + "GridSelectedKeysChangedEventArgs": "GridSelectedKeysChangedEventArgs()", + "AddedKeys": "AddedKeys", + "CurrentKeys": "CurrentKeys", + "RemovedKeys": "RemovedKeys", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedKeysChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectedKeysChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectedKeysChangedEventArgsDescription()": "GridSelectedKeysChangedEventArgsDescription()", + "GridSelectedKeysChangedEventArgsDescription": "GridSelectedKeysChangedEventArgsDescription()", + "AddedKeys": "AddedKeys", + "CurrentKeys": "CurrentKeys", + "RemovedKeys": "RemovedKeys", + "Type": "Type" + } + } + ], + "GridSelectedKeysChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectedKeysChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectedKeysChangedEventArgsDescriptionMetadata()": "GridSelectedKeysChangedEventArgsDescriptionMetadata()", + "GridSelectedKeysChangedEventArgsDescriptionMetadata": "GridSelectedKeysChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedKeysCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectedKeysCollection", + "k": "class", + "s": "classes", + "m": { + "GridSelectedKeysCollection()": "GridSelectedKeysCollection()", + "GridSelectedKeysCollection": "GridSelectedKeysCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectionBehavior": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/GridSelectionBehavior", + "k": "enum", + "s": "enums" + } + ], + "GridSelectionChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSelectionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectionChangedEventArgs()": "GridSelectionChangedEventArgs()", + "GridSelectionChangedEventArgs": "GridSelectionChangedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectionChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectionChangedEventArgsDescription()": "GridSelectionChangedEventArgsDescription()", + "GridSelectionChangedEventArgsDescription": "GridSelectionChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "GridSelectionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSelectionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectionChangedEventArgsDescriptionMetadata()": "GridSelectionChangedEventArgsDescriptionMetadata()", + "GridSelectionChangedEventArgsDescriptionMetadata": "GridSelectionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSizeChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSizeChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSizeChangedEventArgs()": "GridSizeChangedEventArgs()", + "GridSizeChangedEventArgs": "GridSizeChangedEventArgs()", + "Height": "Height", + "Width": "Width", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSizeChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSizeChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSizeChangedEventArgsDescription()": "GridSizeChangedEventArgsDescription()", + "GridSizeChangedEventArgsDescription": "GridSizeChangedEventArgsDescription()", + "Height": "Height", + "Type": "Type", + "Width": "Width" + } + } + ], + "GridSizeChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSizeChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSizeChangedEventArgsDescriptionMetadata()": "GridSizeChangedEventArgsDescriptionMetadata()", + "GridSizeChangedEventArgsDescriptionMetadata": "GridSizeChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSortDescriptionsChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSortDescriptionsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSortDescriptionsChangedEventArgs()": "GridSortDescriptionsChangedEventArgs()", + "GridSortDescriptionsChangedEventArgs": "GridSortDescriptionsChangedEventArgs()", + "SortDescriptions": "SortDescriptions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSortDescriptionsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSortDescriptionsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSortDescriptionsChangedEventArgsDescription()": "GridSortDescriptionsChangedEventArgsDescription()", + "GridSortDescriptionsChangedEventArgsDescription": "GridSortDescriptionsChangedEventArgsDescription()", + "SortDescriptions": "SortDescriptions", + "Type": "Type" + } + } + ], + "GridSortDescriptionsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSortDescriptionsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSortDescriptionsChangedEventArgsDescriptionMetadata()": "GridSortDescriptionsChangedEventArgsDescriptionMetadata()", + "GridSortDescriptionsChangedEventArgsDescriptionMetadata": "GridSortDescriptionsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSummaryDescriptionsChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GridSummaryDescriptionsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSummaryDescriptionsChangedEventArgs()": "GridSummaryDescriptionsChangedEventArgs()", + "GridSummaryDescriptionsChangedEventArgs": "GridSummaryDescriptionsChangedEventArgs()", + "SummaryDescriptions": "SummaryDescriptions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSummaryDescriptionsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSummaryDescriptionsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSummaryDescriptionsChangedEventArgsDescription()": "GridSummaryDescriptionsChangedEventArgsDescription()", + "GridSummaryDescriptionsChangedEventArgsDescription": "GridSummaryDescriptionsChangedEventArgsDescription()", + "SummaryDescriptions": "SummaryDescriptions", + "Type": "Type" + } + } + ], + "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridSummaryDescriptionsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata()": "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata()", + "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata": "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridVisualModelExport": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GridVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "GridVisualModelExport()": "GridVisualModelExport()", + "GridVisualModelExport": "GridVisualModelExport()", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Width": "Width" + } + } + ], + "GroupData": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/GroupData", + "k": "class", + "s": "classes", + "m": { + "GroupData()": "GroupData()", + "GroupData": "GroupData()", + "FormattedText": "FormattedText", + "GroupName": "GroupName", + "GroupValue": "GroupValue" + } + } + ], + "GroupDataDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GroupDataDescription", + "k": "class", + "s": "classes", + "m": { + "GroupDataDescription()": "GroupDataDescription()", + "GroupDataDescription": "GroupDataDescription()", + "FormattedText": "FormattedText", + "GroupName": "GroupName", + "GroupValueRef": "GroupValueRef", + "Type": "Type" + } + } + ], + "GroupDataDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/GroupDataDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GroupDataDescriptionMetadata()": "GroupDataDescriptionMetadata()", + "GroupDataDescriptionMetadata": "GroupDataDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GroupHeaderDisplayMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/GroupHeaderDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "GroupSummaryDisplayMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/GroupSummaryDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "Header": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Header", + "k": "class", + "s": "classes", + "m": { + "Header()": "Header()", + "Header": "Header()", + "Bounds": "Bounds", + "ShapeType": "ShapeType", + "XYMax": "XYMax", + "XYMin": "XYMin", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + }, + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/Header", + "k": "class", + "s": "classes", + "m": { + "ActualSortIndicatorColor": "ActualSortIndicatorColor", + "ActualSortIndicatorColorProperty": "ActualSortIndicatorColorProperty", + "ActualSortIndicatorStyle": "ActualSortIndicatorStyle", + "ActualSortIndicatorStyleProperty": "ActualSortIndicatorStyleProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "SortIndicatorColor": "SortIndicatorColor", + "SortIndicatorColorProperty": "SortIndicatorColorProperty", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortIndicatorStyleProperty": "SortIndicatorStyleProperty" + } + } + ], + "HeaderClickAction": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/HeaderClickAction", + "k": "enum", + "s": "enums" + } + ], + "HeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeaderDescription", + "k": "class", + "s": "classes", + "m": { + "HeaderDescription()": "HeaderDescription()", + "HeaderDescription": "HeaderDescription()", + "ActualSortIndicatorColor": "ActualSortIndicatorColor", + "ActualSortIndicatorStyle": "ActualSortIndicatorStyle", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "SortIndicatorColor": "SortIndicatorColor", + "SortIndicatorStyle": "SortIndicatorStyle", + "Type": "Type" + } + } + ], + "HeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HeaderDescriptionMetadata()": "HeaderDescriptionMetadata()", + "HeaderDescriptionMetadata": "HeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeaderRowSeparator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/HeaderRowSeparator", + "k": "class", + "s": "classes", + "m": { + "HeaderRowSeparator()": "HeaderRowSeparator()", + "HeaderRowSeparator": "HeaderRowSeparator()" + } + } + ], + "HeaderRowSeparatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeaderRowSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "HeaderRowSeparatorDescription()": "HeaderRowSeparatorDescription()", + "HeaderRowSeparatorDescription": "HeaderRowSeparatorDescription()", + "Type": "Type" + } + } + ], + "HeaderRowSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeaderRowSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HeaderRowSeparatorDescriptionMetadata()": "HeaderRowSeparatorDescriptionMetadata()", + "HeaderRowSeparatorDescriptionMetadata": "HeaderRowSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeaderRowSeparatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeaderRowSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HeaderRowSeparatorDescriptionModule()": "HeaderRowSeparatorDescriptionModule()", + "HeaderRowSeparatorDescriptionModule": "HeaderRowSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeaderSeparator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/HeaderSeparator", + "k": "class", + "s": "classes", + "m": { + "HeaderSeparator()": "HeaderSeparator()", + "HeaderSeparator": "HeaderSeparator()" + } + } + ], + "HeaderSeparatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeaderSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "HeaderSeparatorDescription()": "HeaderSeparatorDescription()", + "HeaderSeparatorDescription": "HeaderSeparatorDescription()", + "Type": "Type" + } + } + ], + "HeaderSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeaderSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HeaderSeparatorDescriptionMetadata()": "HeaderSeparatorDescriptionMetadata()", + "HeaderSeparatorDescriptionMetadata": "HeaderSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeaderSeparatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeaderSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HeaderSeparatorDescriptionModule()": "HeaderSeparatorDescriptionModule()", + "HeaderSeparatorDescriptionModule": "HeaderSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeatTileGenerator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeatTileGenerator", + "k": "class", + "s": "classes", + "m": { + "HeatTileGenerator()": "HeatTileGenerator()", + "HeatTileGenerator": "HeatTileGenerator()", + "BlurRadius": "BlurRadius", + "CancelTile(int, int, int)": "CancelTile(int, int, int)", + "CancelTile": "CancelTile(int, int, int)", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)": "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)", + "GetTile": "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)", + "LogarithmBase": "LogarithmBase", + "MaxBlurRadius": "MaxBlurRadius", + "MaximumColor": "MaximumColor", + "MaximumValue": "MaximumValue", + "MinimumColor": "MinimumColor", + "MinimumValue": "MinimumValue", + "ScaleColorOffsets": "ScaleColorOffsets", + "ScaleColors": "ScaleColors", + "UseBlurRadiusAdjustedForZoom": "UseBlurRadiusAdjustedForZoom", + "UseGlobalMinMax": "UseGlobalMinMax", + "UseGlobalMinMaxAdjustedForZoom": "UseGlobalMinMaxAdjustedForZoom", + "UseLogarithmicScale": "UseLogarithmicScale", + "Values": "Values", + "XValues": "XValues", + "YValues": "YValues", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "HeatTileGeneratorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeatTileGeneratorDescription", + "k": "class", + "s": "classes", + "m": { + "HeatTileGeneratorDescription()": "HeatTileGeneratorDescription()", + "HeatTileGeneratorDescription": "HeatTileGeneratorDescription()", + "BlurRadius": "BlurRadius", + "LogarithmBase": "LogarithmBase", + "MaxBlurRadius": "MaxBlurRadius", + "MaximumColor": "MaximumColor", + "MaximumValue": "MaximumValue", + "MinimumColor": "MinimumColor", + "MinimumValue": "MinimumValue", + "ScaleColorOffsets": "ScaleColorOffsets", + "ScaleColors": "ScaleColors", + "Type": "Type", + "UseBlurRadiusAdjustedForZoom": "UseBlurRadiusAdjustedForZoom", + "UseGlobalMinMax": "UseGlobalMinMax", + "UseGlobalMinMaxAdjustedForZoom": "UseGlobalMinMaxAdjustedForZoom", + "UseLogarithmicScale": "UseLogarithmicScale", + "UseWebWorkers": "UseWebWorkers", + "Values": "Values", + "WebWorkerInstanceRef": "WebWorkerInstanceRef", + "WebWorkerScriptPath": "WebWorkerScriptPath", + "XValues": "XValues", + "YValues": "YValues" + } + } + ], + "HeatTileGeneratorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeatTileGeneratorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HeatTileGeneratorDescriptionMetadata()": "HeatTileGeneratorDescriptionMetadata()", + "HeatTileGeneratorDescriptionMetadata": "HeatTileGeneratorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeatTileGeneratorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeatTileGeneratorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HeatTileGeneratorDescriptionModule()": "HeatTileGeneratorDescriptionModule()", + "HeatTileGeneratorDescriptionModule": "HeatTileGeneratorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeatTileImageCreatedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HeatTileImageCreatedEventArgs", + "k": "class", + "s": "classes", + "m": { + "HeatTileImageCreatedEventArgs()": "HeatTileImageCreatedEventArgs()", + "HeatTileImageCreatedEventArgs": "HeatTileImageCreatedEventArgs()", + "GlobalMaximumValue": "GlobalMaximumValue", + "GlobalMaximumValueLatitude": "GlobalMaximumValueLatitude", + "GlobalMaximumValueLongitude": "GlobalMaximumValueLongitude", + "GlobalMinimumValue": "GlobalMinimumValue", + "GlobalMinimumValueLatitude": "GlobalMinimumValueLatitude", + "GlobalMinimumValueLongitude": "GlobalMinimumValueLongitude" + } + } + ], + "HideAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/HideAttribute", + "k": "class", + "s": "classes", + "m": { + "HideAttribute()": "HideAttribute()", + "HideAttribute": "HideAttribute()" + } + } + ], + "HierarchicalRingSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HierarchicalRingSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "HierarchicalRingSeriesDescription()": "HierarchicalRingSeriesDescription()", + "HierarchicalRingSeriesDescription": "HierarchicalRingSeriesDescription()", + "ChildrenMemberPath": "ChildrenMemberPath", + "Type": "Type" + } + } + ], + "HierarchicalRingSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HierarchicalRingSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HierarchicalRingSeriesDescriptionMetadata()": "HierarchicalRingSeriesDescriptionMetadata()", + "HierarchicalRingSeriesDescriptionMetadata": "HierarchicalRingSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HierarchicalRingSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HierarchicalRingSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HierarchicalRingSeriesDescriptionModule()": "HierarchicalRingSeriesDescriptionModule()", + "HierarchicalRingSeriesDescriptionModule": "HierarchicalRingSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HighDensityScatterSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HighDensityScatterSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "HighDensityScatterSeriesDescription()": "HighDensityScatterSeriesDescription()", + "HighDensityScatterSeriesDescription": "HighDensityScatterSeriesDescription()", + "HeatMaximum": "HeatMaximum", + "HeatMaximumColor": "HeatMaximumColor", + "HeatMinimum": "HeatMinimum", + "HeatMinimumColor": "HeatMinimumColor", + "PointExtent": "PointExtent", + "ProgressiveLoad": "ProgressiveLoad", + "ProgressiveLoadStatusChangedRef": "ProgressiveLoadStatusChangedRef", + "ProgressiveStatus": "ProgressiveStatus", + "Type": "Type", + "UseBruteForce": "UseBruteForce", + "XAxisRef": "XAxisRef", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberPath": "XMemberPath", + "YAxisRef": "YAxisRef", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberPath": "YMemberPath" + } + } + ], + "HighDensityScatterSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HighDensityScatterSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HighDensityScatterSeriesDescriptionMetadata()": "HighDensityScatterSeriesDescriptionMetadata()", + "HighDensityScatterSeriesDescriptionMetadata": "HighDensityScatterSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HighDensityScatterSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HighDensityScatterSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HighDensityScatterSeriesDescriptionModule()": "HighDensityScatterSeriesDescriptionModule()", + "HighDensityScatterSeriesDescriptionModule": "HighDensityScatterSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HighlightedValueDisplayMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/HighlightedValueDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "HighlightedValueLabelMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/HighlightedValueLabelMode", + "k": "enum", + "s": "enums" + } + ], + "HighlightingInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HighlightingInfo", + "k": "class", + "s": "classes", + "m": { + "HighlightingInfo()": "HighlightingInfo()", + "HighlightingInfo": "HighlightingInfo()", + "Context": "Context", + "EndIndex": "EndIndex", + "IsExclusive": "IsExclusive", + "IsFullRange": "IsFullRange", + "IsMarker": "IsMarker", + "Progress": "Progress", + "StartIndex": "StartIndex", + "State": "State", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "HighlightingInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HighlightingInfoDescription", + "k": "class", + "s": "classes", + "m": { + "HighlightingInfoDescription()": "HighlightingInfoDescription()", + "HighlightingInfoDescription": "HighlightingInfoDescription()", + "ContextRef": "ContextRef", + "EndIndex": "EndIndex", + "IsExclusive": "IsExclusive", + "IsFullRange": "IsFullRange", + "IsMarker": "IsMarker", + "Progress": "Progress", + "StartIndex": "StartIndex", + "State": "State", + "Type": "Type" + } + } + ], + "HighlightingInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HighlightingInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HighlightingInfoDescriptionMetadata()": "HighlightingInfoDescriptionMetadata()", + "HighlightingInfoDescriptionMetadata": "HighlightingInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HighlightingState": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/HighlightingState", + "k": "enum", + "s": "enums" + } + ], + "HoleDimensionsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HoleDimensionsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "HoleDimensionsChangedEventArgsDescription()": "HoleDimensionsChangedEventArgsDescription()", + "HoleDimensionsChangedEventArgsDescription": "HoleDimensionsChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "HoleDimensionsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HoleDimensionsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HoleDimensionsChangedEventArgsDescriptionMetadata()": "HoleDimensionsChangedEventArgsDescriptionMetadata()", + "HoleDimensionsChangedEventArgsDescriptionMetadata": "HoleDimensionsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalAlignment": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/enums/HorizontalAlignment", + "k": "enum", + "s": "enums" + } + ], + "HorizontalAnchoredCategorySeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/HorizontalAnchoredCategorySeries", + "k": "class", + "s": "classes", + "m": { + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "HorizontalAnchoredCategorySeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HorizontalAnchoredCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "HorizontalAnchoredCategorySeriesDescription()": "HorizontalAnchoredCategorySeriesDescription()", + "HorizontalAnchoredCategorySeriesDescription": "HorizontalAnchoredCategorySeriesDescription()", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "HorizontalAnchoredCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HorizontalAnchoredCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HorizontalAnchoredCategorySeriesDescriptionMetadata()": "HorizontalAnchoredCategorySeriesDescriptionMetadata()", + "HorizontalAnchoredCategorySeriesDescriptionMetadata": "HorizontalAnchoredCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalAnchoredCategorySeriesProxyDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HorizontalAnchoredCategorySeriesProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HorizontalAnchoredCategorySeriesProxyDescriptionModule()": "HorizontalAnchoredCategorySeriesProxyDescriptionModule()", + "HorizontalAnchoredCategorySeriesProxyDescriptionModule": "HorizontalAnchoredCategorySeriesProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalRangeCategorySeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/HorizontalRangeCategorySeries", + "k": "class", + "s": "classes", + "m": { + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendLabelProperty": "HighMemberAsLegendLabelProperty", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "HighMemberAsLegendUnitProperty": "HighMemberAsLegendUnitProperty", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendLabelProperty": "LowMemberAsLegendLabelProperty", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "LowMemberAsLegendUnitProperty": "LowMemberAsLegendUnitProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "HorizontalRangeCategorySeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HorizontalRangeCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "HorizontalRangeCategorySeriesDescription()": "HorizontalRangeCategorySeriesDescription()", + "HorizontalRangeCategorySeriesDescription": "HorizontalRangeCategorySeriesDescription()", + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "HorizontalRangeCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HorizontalRangeCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HorizontalRangeCategorySeriesDescriptionMetadata()": "HorizontalRangeCategorySeriesDescriptionMetadata()", + "HorizontalRangeCategorySeriesDescriptionMetadata": "HorizontalRangeCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalRangeCategorySeriesProxyDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HorizontalRangeCategorySeriesProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HorizontalRangeCategorySeriesProxyDescriptionModule()": "HorizontalRangeCategorySeriesProxyDescriptionModule()", + "HorizontalRangeCategorySeriesProxyDescriptionModule": "HorizontalRangeCategorySeriesProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalStackedSeriesBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/HorizontalStackedSeriesBase", + "k": "class", + "s": "classes", + "m": { + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "HorizontalStackedSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HorizontalStackedSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "HorizontalStackedSeriesBaseDescription()": "HorizontalStackedSeriesBaseDescription()", + "HorizontalStackedSeriesBaseDescription": "HorizontalStackedSeriesBaseDescription()", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "HorizontalStackedSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HorizontalStackedSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HorizontalStackedSeriesBaseDescriptionMetadata()": "HorizontalStackedSeriesBaseDescriptionMetadata()", + "HorizontalStackedSeriesBaseDescriptionMetadata": "HorizontalStackedSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HyperlinkCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/HyperlinkCellInfo", + "k": "class", + "s": "classes", + "m": { + "HyperlinkCellInfo()": "HyperlinkCellInfo()", + "HyperlinkCellInfo": "HyperlinkCellInfo()", + "IsVisited": "IsVisited", + "IsVisitedPropertyName": "IsVisitedPropertyName", + "NavigationUri": "NavigationUri", + "NavigationUriPropertyName": "NavigationUriPropertyName", + "VisitedTextColor": "VisitedTextColor", + "VisitedTextColorPropertyName": "VisitedTextColorPropertyName" + } + } + ], + "HyperlinkCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HyperlinkCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "HyperlinkCellInfoDescription()": "HyperlinkCellInfoDescription()", + "HyperlinkCellInfoDescription": "HyperlinkCellInfoDescription()", + "IsVisited": "IsVisited", + "NavigationUri": "NavigationUri", + "Type": "Type", + "VisitedTextColor": "VisitedTextColor" + } + } + ], + "HyperlinkCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HyperlinkCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HyperlinkCellInfoDescriptionMetadata()": "HyperlinkCellInfoDescriptionMetadata()", + "HyperlinkCellInfoDescriptionMetadata": "HyperlinkCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HyperlinkColumn": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/HyperlinkColumn", + "k": "class", + "s": "classes", + "m": { + "HyperlinkColumn()": "HyperlinkColumn()", + "HyperlinkColumn": "HyperlinkColumn()", + "ActualVisitedTextColor": "ActualVisitedTextColor", + "ActualVisitedTextColorProperty": "ActualVisitedTextColorProperty", + "BaseUri": "BaseUri", + "BaseUriProperty": "BaseUriProperty", + "DisplayMemberPath": "DisplayMemberPath", + "DisplayMemberPathProperty": "DisplayMemberPathProperty", + "DisplayText": "DisplayText", + "DisplayTextProperty": "DisplayTextProperty", + "PreventDefaultNavigation": "PreventDefaultNavigation", + "PreventDefaultNavigationProperty": "PreventDefaultNavigationProperty", + "VisitedTextColor": "VisitedTextColor", + "VisitedTextColorProperty": "VisitedTextColorProperty" + } + } + ], + "HyperlinkColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HyperlinkColumnDescription", + "k": "class", + "s": "classes", + "m": { + "HyperlinkColumnDescription()": "HyperlinkColumnDescription()", + "HyperlinkColumnDescription": "HyperlinkColumnDescription()", + "ActualVisitedTextColor": "ActualVisitedTextColor", + "BaseUri": "BaseUri", + "DisplayMemberPath": "DisplayMemberPath", + "DisplayText": "DisplayText", + "PreventDefaultNavigation": "PreventDefaultNavigation", + "Type": "Type", + "VisitedTextColor": "VisitedTextColor" + } + } + ], + "HyperlinkColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HyperlinkColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HyperlinkColumnDescriptionMetadata()": "HyperlinkColumnDescriptionMetadata()", + "HyperlinkColumnDescriptionMetadata": "HyperlinkColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HyperlinkColumnDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/HyperlinkColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HyperlinkColumnDescriptionModule()": "HyperlinkColumnDescriptionModule()", + "HyperlinkColumnDescriptionModule": "HyperlinkColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "IAcceptsDataSeriesToDescriptionCustomizations": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IAcceptsDataSeriesToDescriptionCustomizations", + "k": "interface", + "s": "interfaces", + "m": { + "OnCustomizationsChanged(DataSeriesToDescriptionCustomization[])": "OnCustomizationsChanged(DataSeriesToDescriptionCustomization[])", + "OnCustomizationsChanged": "OnCustomizationsChanged(DataSeriesToDescriptionCustomization[])" + } + } + ], + "ICellActionManager": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/interfaces/ICellActionManager", + "k": "interface", + "s": "interfaces", + "m": { + "ApplyCustomFilter(string, int, object)": "ApplyCustomFilter(string, int, object)", + "ApplyCustomFilter": "ApplyCustomFilter(string, int, object)", + "ApplyFilter(ColumnComparisonConditionOperatorType, object)": "ApplyFilter(ColumnComparisonConditionOperatorType, object)", + "ApplyFilter": "ApplyFilter(ColumnComparisonConditionOperatorType, object)", + "CancelEditMode(bool)": "CancelEditMode(bool)", + "CancelEditMode": "CancelEditMode(bool)", + "ClearFilter()": "ClearFilter()", + "ClearFilter": "ClearFilter()", + "ClickCell(MouseButton)": "ClickCell(MouseButton)", + "ClickCell": "ClickCell(MouseButton)", + "ClickExpansionIndicator()": "ClickExpansionIndicator()", + "ClickExpansionIndicator": "ClickExpansionIndicator()", + "ColumnFilterChanged(ColumnFilterCondition)": "ColumnFilterChanged(ColumnFilterCondition)", + "ColumnFilterChanged": "ColumnFilterChanged(ColumnFilterCondition)", + "ColumnFilterChanging(ColumnFilterCondition)": "ColumnFilterChanging(ColumnFilterCondition)", + "ColumnFilterChanging": "ColumnFilterChanging(ColumnFilterCondition)", + "DisableKeyInput()": "DisableKeyInput()", + "DisableKeyInput": "DisableKeyInput()", + "DoubleClicked(MouseButton)": "DoubleClicked(MouseButton)", + "DoubleClicked": "DoubleClicked(MouseButton)", + "DragStarted()": "DragStarted()", + "DragStarted": "DragStarted()", + "EditorCellLostFocus()": "EditorCellLostFocus()", + "EditorCellLostFocus": "EditorCellLostFocus()", + "EnableKeyInput()": "EnableKeyInput()", + "EnableKeyInput": "EnableKeyInput()", + "GetColumnFilterCondition()": "GetColumnFilterCondition()", + "GetColumnFilterCondition": "GetColumnFilterCondition()", + "GetColumnPropertyType()": "GetColumnPropertyType()", + "GetColumnPropertyType": "GetColumnPropertyType()", + "IsCellDown()": "IsCellDown()", + "IsCellDown": "IsCellDown()", + "IsClickActionDesired": "IsClickActionDesired", + "IsControlPressed": "IsControlPressed", + "IsDrag": "IsDrag", + "IsEditRefocusDesired": "IsEditRefocusDesired", + "IsEnterActionDesired": "IsEnterActionDesired", + "IsGridDragging": "IsGridDragging", + "IsHandlingNavigationUris()": "IsHandlingNavigationUris()", + "IsHandlingNavigationUris": "IsHandlingNavigationUris()", + "IsHoverActionDesired": "IsHoverActionDesired", + "IsLeaveActionDesired": "IsLeaveActionDesired", + "IsMouseDown": "IsMouseDown", + "IsPointerDownActionDesired": "IsPointerDownActionDesired", + "IsPointerUpActionDesired": "IsPointerUpActionDesired", + "IsPreviewPointerDownActionDesired": "IsPreviewPointerDownActionDesired", + "IsPreviewPointerUpActionDesired": "IsPreviewPointerUpActionDesired", + "IsShiftPressed": "IsShiftPressed", + "MouseDownCell(double, double)": "MouseDownCell(double, double)", + "MouseDownCell": "MouseDownCell(double, double)", + "MouseEnterCell(double, double)": "MouseEnterCell(double, double)", + "MouseEnterCell": "MouseEnterCell(double, double)", + "MouseIsOver(double, double)": "MouseIsOver(double, double)", + "MouseIsOver": "MouseIsOver(double, double)", + "MouseLeaveCell(double, double)": "MouseLeaveCell(double, double)", + "MouseLeaveCell": "MouseLeaveCell(double, double)", + "MousePosition": "MousePosition", + "MouseUpCell(double, double)": "MouseUpCell(double, double)", + "MouseUpCell": "MouseUpCell(double, double)", + "NavigationRequested()": "NavigationRequested()", + "NavigationRequested": "NavigationRequested()", + "PassCellClone(object)": "PassCellClone(object)", + "PassCellClone": "PassCellClone(object)", + "PointerDownCell()": "PointerDownCell()", + "PointerDownCell": "PointerDownCell()", + "PointerUpCell()": "PointerUpCell()", + "PointerUpCell": "PointerUpCell()", + "PreviewMouseDownCell(bool, bool, MouseButton)": "PreviewMouseDownCell(bool, bool, MouseButton)", + "PreviewMouseDownCell": "PreviewMouseDownCell(bool, bool, MouseButton)", + "PreviewMouseUpCell(bool, bool, MouseButton)": "PreviewMouseUpCell(bool, bool, MouseButton)", + "PreviewMouseUpCell": "PreviewMouseUpCell(bool, bool, MouseButton)", + "PreviewPointerDownCell()": "PreviewPointerDownCell()", + "PreviewPointerDownCell": "PreviewPointerDownCell()", + "PreviewPointerUpCell()": "PreviewPointerUpCell()", + "PreviewPointerUpCell": "PreviewPointerUpCell()", + "ShouldSkipFocusRetain()": "ShouldSkipFocusRetain()", + "ShouldSkipFocusRetain": "ShouldSkipFocusRetain()", + "StartEditMode()": "StartEditMode()", + "StartEditMode": "StartEditMode()", + "UpdateCellEditValue(object)": "UpdateCellEditValue(object)", + "UpdateCellEditValue": "UpdateCellEditValue(object)" + } + } + ], + "ICodeGenerationRendererTemplate": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ICodeGenerationRendererTemplate", + "k": "interface", + "s": "interfaces", + "m": { + "Execute(CodeGeneratingRendererResult)": "Execute(CodeGeneratingRendererResult)", + "Execute": "Execute(CodeGeneratingRendererResult)" + } + } + ], + "ICommandAvailabilityListener": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ICommandAvailabilityListener", + "k": "interface", + "s": "interfaces" + } + ], + "ICommandStateChangedListener": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ICommandStateChangedListener", + "k": "interface", + "s": "interfaces", + "m": { + "OnCommandStateChanged(string, ToolCommandStateType, object)": "OnCommandStateChanged(string, ToolCommandStateType, object)", + "OnCommandStateChanged": "OnCommandStateChanged(string, ToolCommandStateType, object)" + } + } + ], + "IComponentRendererSerializationProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IComponentRendererSerializationProvider", + "k": "interface", + "s": "interfaces", + "m": { + "CanSerializeRef(string, object)": "CanSerializeRef(string, object)", + "CanSerializeRef": "CanSerializeRef(string, object)", + "SerializeRef(DescriptionSerializerBuilder, string, object)": "SerializeRef(DescriptionSerializerBuilder, string, object)", + "SerializeRef": "SerializeRef(DescriptionSerializerBuilder, string, object)" + } + } + ], + "IconDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/IconDescription", + "k": "class", + "s": "classes", + "m": { + "IconDescription()": "IconDescription()", + "IconDescription": "IconDescription()", + "ActualFill": "ActualFill", + "ActualStroke": "ActualStroke", + "ActualStrokeWidth": "ActualStrokeWidth", + "ActualTextColor": "ActualTextColor", + "ActualViewBoxHeight": "ActualViewBoxHeight", + "ActualViewBoxLeft": "ActualViewBoxLeft", + "ActualViewBoxTop": "ActualViewBoxTop", + "ActualViewBoxWidth": "ActualViewBoxWidth", + "AriaLabel": "AriaLabel", + "BaseTheme": "BaseTheme", + "DataURL": "DataURL", + "Disabled": "Disabled", + "Fill": "Fill", + "FillColors": "FillColors", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "Height": "Height", + "HoverFill": "HoverFill", + "HoverStroke": "HoverStroke", + "HoverStrokeThickness": "HoverStrokeThickness", + "HoverTextColor": "HoverTextColor", + "Id": "Id", + "IsHover": "IsHover", + "Opacity": "Opacity", + "PrimaryFillColor": "PrimaryFillColor", + "PrimaryStrokeColor": "PrimaryStrokeColor", + "SVGPaths": "SVGPaths", + "SecondaryFillColor": "SecondaryFillColor", + "SecondaryStrokeColor": "SecondaryStrokeColor", + "SourceRef": "SourceRef", + "Stroke": "Stroke", + "StrokeColors": "StrokeColors", + "StrokeWidth": "StrokeWidth", + "Svg": "Svg", + "SvgPath": "SvgPath", + "TabIndex": "TabIndex", + "TextColor": "TextColor", + "Type": "Type", + "ViewBoxHeight": "ViewBoxHeight", + "ViewBoxLeft": "ViewBoxLeft", + "ViewBoxTop": "ViewBoxTop", + "ViewBoxWidth": "ViewBoxWidth", + "Width": "Width" + } + } + ], + "IconDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/IconDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "IconDescriptionMetadata()": "IconDescriptionMetadata()", + "IconDescriptionMetadata": "IconDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "IconDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/IconDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "IconDescriptionModule()": "IconDescriptionModule()", + "IconDescriptionModule": "IconDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "IconVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/IconVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "IconVisualModelExport()": "IconVisualModelExport()", + "IconVisualModelExport": "IconVisualModelExport()", + "ActualFill": "ActualFill", + "ActualStroke": "ActualStroke", + "ActualStrokeThickness": "ActualStrokeThickness", + "ActualTextColor": "ActualTextColor", + "DataURL": "DataURL", + "Height": "Height", + "Left": "Left", + "SVG": "SVG", + "SVGPath": "SVGPath", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Shapes": "Shapes", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Width": "Width" + } + } + ], + "IDataIntentAttribute": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataIntentAttribute", + "k": "interface", + "s": "interfaces", + "m": { + "Intent": "Intent" + } + } + ], + "IDataSeriesAdapterRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSeriesAdapterRule", + "k": "interface", + "s": "interfaces", + "m": { + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "IDataSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSource", + "k": "interface", + "s": "interfaces", + "m": { + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualSchema": "ActualSchema", + "ClearPinnedRows()": "ClearPinnedRows()", + "ClearPinnedRows": "ClearPinnedRows()", + "Clone()": "Clone()", + "Clone": "Clone()", + "DeferAutoRefresh": "DeferAutoRefresh", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FirstVisibleIndexRequested": "FirstVisibleIndexRequested", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetIsRowExpandedAtIndex(int)": "GetIsRowExpandedAtIndex(int)", + "GetIsRowExpandedAtIndex": "GetIsRowExpandedAtIndex(int)", + "GetItemProperty(object, string)": "GetItemProperty(object, string)", + "GetItemProperty": "GetItemProperty(object, string)", + "GetItemPropertyAtIndex(int, string)": "GetItemPropertyAtIndex(int, string)", + "GetItemPropertyAtIndex": "GetItemPropertyAtIndex(int, string)", + "GetMainValuePath(DataSourceRowType)": "GetMainValuePath(DataSourceRowType)", + "GetMainValuePath": "GetMainValuePath(DataSourceRowType)", + "GetRootSummaryResults()": "GetRootSummaryResults()", + "GetRootSummaryResults": "GetRootSummaryResults()", + "GetRootSummaryRowCount()": "GetRootSummaryRowCount()", + "GetRootSummaryRowCount": "GetRootSummaryRowCount()", + "GetRowLevel(int)": "GetRowLevel(int)", + "GetRowLevel": "GetRowLevel(int)", + "GetRowType(int)": "GetRowType(int)", + "GetRowType": "GetRowType(int)", + "GetSectionSummaryResults(int)": "GetSectionSummaryResults(int)", + "GetSectionSummaryResults": "GetSectionSummaryResults(int)", + "GetStickyRowPriority(int)": "GetStickyRowPriority(int)", + "GetStickyRowPriority": "GetStickyRowPriority(int)", + "GetStickyRows()": "GetStickyRows()", + "GetStickyRows": "GetStickyRows()", + "GetStickyRowsInRange(int, int)": "GetStickyRowsInRange(int, int)", + "GetStickyRowsInRange": "GetStickyRowsInRange(int, int)", + "GroupDescriptions": "GroupDescriptions", + "IncludeSummaryRowsInSection": "IncludeSummaryRowsInSection", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsExclusivelySticky(int)": "IsExclusivelySticky(int)", + "IsExclusivelySticky": "IsExclusivelySticky(int)", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsPlaceholderItem(int)": "IsPlaceholderItem(int)", + "IsPlaceholderItem": "IsPlaceholderItem(int)", + "IsRowPinned(int)": "IsRowPinned(int)", + "IsRowPinned": "IsRowPinned(int)", + "IsRowSpanning(DataSourceRowType)": "IsRowSpanning(DataSourceRowType)", + "IsRowSpanning": "IsRowSpanning(DataSourceRowType)", + "IsSectionCollapsable": "IsSectionCollapsable", + "IsSectionContentVisible": "IsSectionContentVisible", + "IsSectionExpandedDefault": "IsSectionExpandedDefault", + "IsSectionHeaderNormalRow": "IsSectionHeaderNormalRow", + "IsSectionSummaryRowsAtBottom": "IsSectionSummaryRowsAtBottom", + "IsSortingSupported": "IsSortingSupported", + "IsVirtual": "IsVirtual", + "LastVisibleIndexRequested": "LastVisibleIndexRequested", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "PinRow(object[])": "PinRow(object[])", + "PinRow": "PinRow(object[])", + "PrimaryKey": "PrimaryKey", + "PropertiesRequested": "PropertiesRequested", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "ResolvedDataProvider": "ResolvedDataProvider", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SectionHeaderDisplayMode": "SectionHeaderDisplayMode", + "SetIsRowExpandedAtIndex(int, bool)": "SetIsRowExpandedAtIndex(int, bool)", + "SetIsRowExpandedAtIndex": "SetIsRowExpandedAtIndex(int, bool)", + "ShouldEmitSectionFooters": "ShouldEmitSectionFooters", + "ShouldEmitSectionHeaders": "ShouldEmitSectionHeaders", + "ShouldEmitShiftedRows": "ShouldEmitShiftedRows", + "ShouldEmitSummaryRows": "ShouldEmitSummaryRows", + "SortDescriptions": "SortDescriptions", + "SourceName": "SourceName", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "UnpinRow(object[])": "UnpinRow(object[])", + "UnpinRow": "UnpinRow(object[])", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "IDataSourceClonableDataProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceClonableDataProvider", + "k": "interface", + "s": "interfaces", + "m": { + "Clone()": "Clone()", + "Clone": "Clone()" + } + } + ], + "IDataSourceDataProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceDataProvider", + "k": "interface", + "s": "interfaces", + "m": { + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "DeferAutoRefresh": "DeferAutoRefresh", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GroupDescriptions": "GroupDescriptions", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsSortingSupported": "IsSortingSupported", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "PropertiesRequested": "PropertiesRequested", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SetItemValue(object, string, object)": "SetItemValue(object, string, object)", + "SetItemValue": "SetItemValue(object, string, object)", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "IDataSourceDataProviderUpdateNotifier": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceDataProviderUpdateNotifier", + "k": "interface", + "s": "interfaces" + } + ], + "IDataSourceExecutionContext": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceExecutionContext", + "k": "interface", + "s": "interfaces", + "m": { + "EnqueueAction(DataSourceExecutionContextExecuteCallback)": "EnqueueAction(DataSourceExecutionContextExecuteCallback)", + "EnqueueAction": "EnqueueAction(DataSourceExecutionContextExecuteCallback)", + "Execute(DataSourceExecutionContextExecuteCallback)": "Execute(DataSourceExecutionContextExecuteCallback)", + "Execute": "Execute(DataSourceExecutionContextExecuteCallback)", + "ExecuteDelayed(DataSourceExecutionContextExecuteCallback, int)": "ExecuteDelayed(DataSourceExecutionContextExecuteCallback, int)", + "ExecuteDelayed": "ExecuteDelayed(DataSourceExecutionContextExecuteCallback, int)" + } + } + ], + "IDataSourceLocalDataProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceLocalDataProvider", + "k": "interface", + "s": "interfaces", + "m": { + "ItemsSource": "ItemsSource" + } + } + ], + "IDataSourcePage": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourcePage", + "k": "interface", + "s": "interfaces", + "m": { + "Count()": "Count()", + "Count": "Count()", + "GetGroupInformation()": "GetGroupInformation()", + "GetGroupInformation": "GetGroupInformation()", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemValueAtIndex(int, string)": "GetItemValueAtIndex(int, string)", + "GetItemValueAtIndex": "GetItemValueAtIndex(int, string)", + "GetSummaryInformation()": "GetSummaryInformation()", + "GetSummaryInformation": "GetSummaryInformation()", + "PageIndex()": "PageIndex()", + "PageIndex": "PageIndex()", + "Schema()": "Schema()", + "Schema": "Schema()" + } + } + ], + "IDataSourceSchema": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceSchema", + "k": "interface", + "s": "interfaces", + "m": { + "PrimaryKey": "PrimaryKey", + "PropertyDataIntents": "PropertyDataIntents", + "PropertyNames": "PropertyNames", + "PropertyTypes": "PropertyTypes", + "SubSchemas": "SubSchemas" + } + } + ], + "IDataSourceSupportsCount": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceSupportsCount", + "k": "interface", + "s": "interfaces", + "m": { + "ActualCount": "ActualCount" + } + } + ], + "IDataSourceSupportsIndexedAccess": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceSupportsIndexedAccess", + "k": "interface", + "s": "interfaces", + "m": { + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)" + } + } + ], + "IDataSourceUpdateNotifier": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceUpdateNotifier", + "k": "interface", + "s": "interfaces", + "m": { + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "RangeActualized(int, int)": "RangeActualized(int, int)", + "RangeActualized": "RangeActualized(int, int)" + } + } + ], + "IDataSourceVirtualDataProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IDataSourceVirtualDataProvider", + "k": "interface", + "s": "interfaces", + "m": { + "AddPageRequest(int, DataSourcePageRequestPriority)": "AddPageRequest(int, DataSourcePageRequestPriority)", + "AddPageRequest": "AddPageRequest(int, DataSourcePageRequestPriority)", + "BatchCompleted": "BatchCompleted", + "Close()": "Close()", + "Close": "Close()", + "CreateBatchRequest(TransactionState[])": "CreateBatchRequest(TransactionState[])", + "CreateBatchRequest": "CreateBatchRequest(TransactionState[])", + "PageLoaded": "PageLoaded", + "PageSizeRequested": "PageSizeRequested", + "RemoveAllPageRequests()": "RemoveAllPageRequests()", + "RemoveAllPageRequests": "RemoveAllPageRequests()", + "RemovePageRequest(int)": "RemovePageRequest(int)", + "RemovePageRequest": "RemovePageRequest(int)" + } + } + ], + "IEditableDataSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IEditableDataSource", + "k": "interface", + "s": "interfaces", + "m": { + "AcceptPendingCommit(int)": "AcceptPendingCommit(int)", + "AcceptPendingCommit": "AcceptPendingCommit(int)", + "AcceptPendingTransaction(int)": "AcceptPendingTransaction(int)", + "AcceptPendingTransaction": "AcceptPendingTransaction(int)", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "CanCommit": "CanCommit", + "CanRedo": "CanRedo", + "CanUndo": "CanUndo", + "CancelEdits()": "CancelEdits()", + "CancelEdits": "CancelEdits()", + "CommitEdits(bool)": "CommitEdits(bool)", + "CommitEdits": "CommitEdits(bool)", + "GetAggregatedChanges(int)": "GetAggregatedChanges(int)", + "GetAggregatedChanges": "GetAggregatedChanges(int)", + "GetTransactionErrorByID(int)": "GetTransactionErrorByID(int)", + "GetTransactionErrorByID": "GetTransactionErrorByID(int)", + "GetTransactionErrorByKey(object[], string)": "GetTransactionErrorByKey(object[], string)", + "GetTransactionErrorByKey": "GetTransactionErrorByKey(object[], string)", + "GetTransactionID(object[], string)": "GetTransactionID(object[], string)", + "GetTransactionID": "GetTransactionID(object[], string)", + "HasAdd(object)": "HasAdd(object)", + "HasAdd": "HasAdd(object)", + "HasDelete(object[])": "HasDelete(object[])", + "HasDelete": "HasDelete(object[])", + "HasEdit(object[], string)": "HasEdit(object[], string)", + "HasEdit": "HasEdit(object[], string)", + "IsBatchingEnabled": "IsBatchingEnabled", + "IsPendingCommit(int)": "IsPendingCommit(int)", + "IsPendingCommit": "IsPendingCommit(int)", + "IsPendingTransaction(int)": "IsPendingTransaction(int)", + "IsPendingTransaction": "IsPendingTransaction(int)", + "IsReadOnly": "IsReadOnly", + "Redo()": "Redo()", + "Redo": "Redo()", + "RejectPendingCommit(int)": "RejectPendingCommit(int)", + "RejectPendingCommit": "RejectPendingCommit(int)", + "RejectPendingTransaction(int)": "RejectPendingTransaction(int)", + "RejectPendingTransaction": "RejectPendingTransaction(int)", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "RemoveItemByKey(object[])": "RemoveItemByKey(object[])", + "RemoveItemByKey": "RemoveItemByKey(object[])", + "SetTransactionError(int, string)": "SetTransactionError(int, string)", + "SetTransactionError": "SetTransactionError(int, string)", + "Undo()": "Undo()", + "Undo": "Undo()", + "UpdatePropertyAtKey(object[], string, object, bool)": "UpdatePropertyAtKey(object[], string, object, bool)", + "UpdatePropertyAtKey": "UpdatePropertyAtKey(object[], string, object, bool)" + } + } + ], + "IExecutionContext": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IExecutionContext", + "k": "interface", + "s": "interfaces", + "m": { + "EnqueueAction(ExecutionContextExecuteCallback)": "EnqueueAction(ExecutionContextExecuteCallback)", + "EnqueueAction": "EnqueueAction(ExecutionContextExecuteCallback)", + "EnqueueAnimationAction(ExecutionContextExecuteCallback)": "EnqueueAnimationAction(ExecutionContextExecuteCallback)", + "EnqueueAnimationAction": "EnqueueAnimationAction(ExecutionContextExecuteCallback)", + "Execute(ExecutionContextExecuteCallback)": "Execute(ExecutionContextExecuteCallback)", + "Execute": "Execute(ExecutionContextExecuteCallback)", + "ExecuteDelayed(ExecutionContextExecuteCallback, int)": "ExecuteDelayed(ExecutionContextExecuteCallback, int)", + "ExecuteDelayed": "ExecuteDelayed(ExecutionContextExecuteCallback, int)", + "GetCurrentRelativeTime()": "GetCurrentRelativeTime()", + "GetCurrentRelativeTime": "GetCurrentRelativeTime()" + } + } + ], + "IExternalDataSeriesAdapter": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IExternalDataSeriesAdapter", + "k": "interface", + "s": "interfaces", + "m": { + "GetDataProvider(object)": "GetDataProvider(object)", + "GetDataProvider": "GetDataProvider(object)", + "GetLocalDataSource(object)": "GetLocalDataSource(object)", + "GetLocalDataSource": "GetLocalDataSource(object)" + } + } + ], + "IExternalizable": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IExternalizable", + "k": "interface", + "s": "interfaces", + "m": { + "ToExternalObject()": "ToExternalObject()", + "ToExternalObject": "ToExternalObject()" + } + } + ], + "IFastItemColumn": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IFastItemColumn", + "k": "interface", + "s": "interfaces", + "m": { + "Maximum": "Maximum", + "MayContainUnknowns": "MayContainUnknowns", + "Minimum": "Minimum" + } + } + ], + "IFastItemColumnPropertyName": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IFastItemColumnPropertyName", + "k": "interface", + "s": "interfaces", + "m": { + "PropertyName": "PropertyName" + } + } + ], + "IFastItemsSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IFastItemsSource", + "k": "interface", + "s": "interfaces", + "m": { + "ContentsAsIList()": "ContentsAsIList()", + "ContentsAsIList": "ContentsAsIList()", + "Count": "Count", + "DeregisterColumn(IFastItemColumnPropertyName)": "DeregisterColumn(IFastItemColumnPropertyName)", + "DeregisterColumn": "DeregisterColumn(IFastItemColumnPropertyName)", + "HandleCollectionChanged(NotifyCollectionChangedEventArgs)": "HandleCollectionChanged(NotifyCollectionChangedEventArgs)", + "HandleCollectionChanged": "HandleCollectionChanged(NotifyCollectionChangedEventArgs)", + "IndexOf(object)": "IndexOf(object)", + "IndexOf": "IndexOf(object)", + "this[int]": "this[int]", + "RegisterColumn(string)": "RegisterColumn(string)", + "RegisterColumn": "RegisterColumn(string)", + "RegisterColumnDateTime(string)": "RegisterColumnDateTime(string)", + "RegisterColumnDateTime": "RegisterColumnDateTime(string)", + "RegisterColumnInt(string)": "RegisterColumnInt(string)", + "RegisterColumnInt": "RegisterColumnInt(string)", + "RegisterColumnObject(string)": "RegisterColumnObject(string)", + "RegisterColumnObject": "RegisterColumnObject(string)" + } + } + ], + "IFastItemsSourceProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IFastItemsSourceProvider", + "k": "interface", + "s": "interfaces", + "m": { + "GetFastItemsSource(IEnumerable)": "GetFastItemsSource(IEnumerable)", + "GetFastItemsSource": "GetFastItemsSource(IEnumerable)", + "ReleaseFastItemsSource(IEnumerable)": "ReleaseFastItemsSource(IEnumerable)", + "ReleaseFastItemsSource": "ReleaseFastItemsSource(IEnumerable)" + } + } + ], + "IFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)": "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)", + "Evaluate": "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "IsAutoGenerated": "IsAutoGenerated", + "IsFunction": "IsFunction", + "IsLiteral": "IsLiteral", + "IsNull": "IsNull", + "IsOperation": "IsOperation", + "IsPropertyReference": "IsPropertyReference", + "IsWrapper": "IsWrapper", + "MarkAutoGenerated()": "MarkAutoGenerated()", + "MarkAutoGenerated": "MarkAutoGenerated()", + "Match(object, IDataSourceDataProvider, IDataSourceSchema)": "Match(object, IDataSourceDataProvider, IDataSourceSchema)", + "Match": "Match(object, IDataSourceDataProvider, IDataSourceSchema)", + "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "MatchWithEnvironment": "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "Precedence": "Precedence" + } + } + ], + "IFilterExpressionEnvironment": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IFilterExpressionEnvironment", + "k": "interface", + "s": "interfaces", + "m": { + "GetVariableValue(string)": "GetVariableValue(string)", + "GetVariableValue": "GetVariableValue(string)", + "HasVariable(string)": "HasVariable(string)", + "HasVariable": "HasVariable(string)", + "SetVariableValue(string, object)": "SetVariableValue(string, object)", + "SetVariableValue": "SetVariableValue(string, object)" + } + } + ], + "IFunctionFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IFunctionFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "FunctionArguments": "FunctionArguments", + "FunctionType": "FunctionType", + "HasFunctionArguments": "HasFunctionArguments" + } + } + ], + "IGBaseView": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/IGBaseView", + "k": "class", + "s": "classes", + "m": { + "IGBaseView()": "IGBaseView()", + "IGBaseView": "IGBaseView()", + "DisableEventProxyInputCapture()": "DisableEventProxyInputCapture()", + "DisableEventProxyInputCapture": "DisableEventProxyInputCapture()", + "FlushAcrossContextsAsync(Action)": "FlushAcrossContextsAsync(Action)", + "FlushAcrossContextsAsync": "FlushAcrossContextsAsync(Action)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "ResolveDesiredPixelScalingRatio()": "ResolveDesiredPixelScalingRatio()", + "ResolveDesiredPixelScalingRatio": "ResolveDesiredPixelScalingRatio()" + } + } + ], + "IGetItemAtIndex": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IGetItemAtIndex", + "k": "interface", + "s": "interfaces", + "m": { + "GetItem(int)": "GetItem(int)", + "GetItem": "GetItem(int)" + } + } + ], + "IgnoreAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/IgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "IgnoreAttribute()": "IgnoreAttribute()", + "IgnoreAttribute": "IgnoreAttribute()" + } + } + ], + "IgQueue": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/IgQueue", + "k": "class", + "s": "classes", + "m": { + "IgQueue()": "IgQueue()", + "IgQueue": "IgQueue()", + "Count": "Count", + "Dequeue(out T)": "Dequeue(out T)", + "Dequeue": "Dequeue(out T)", + "Enqueue(T)": "Enqueue(T)", + "Enqueue": "Enqueue(T)", + "empty": "empty" + } + } + ], + "ILiteralFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ILiteralFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "LeaveUnquoted": "LeaveUnquoted", + "LiteralValue": "LiteralValue" + } + } + ], + "ImageCapturedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageCapturedEventArgs", + "k": "class", + "s": "classes", + "m": { + "Base64Data": "Base64Data", + "Settings": "Settings", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ImageCapturedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageCapturedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ImageCapturedEventArgsDescription()": "ImageCapturedEventArgsDescription()", + "ImageCapturedEventArgsDescription": "ImageCapturedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ImageCapturedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageCapturedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageCapturedEventArgsDescriptionMetadata()": "ImageCapturedEventArgsDescriptionMetadata()", + "ImageCapturedEventArgsDescriptionMetadata": "ImageCapturedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ImageCellInfo", + "k": "class", + "s": "classes", + "m": { + "ImageCellInfo()": "ImageCellInfo()", + "ImageCellInfo": "ImageCellInfo()", + "ImagePath": "ImagePath", + "ImagePathPropertyName": "ImagePathPropertyName", + "ImageResourceType": "ImageResourceType", + "ImageResourceTypePropertyName": "ImageResourceTypePropertyName", + "ImageStretchOption": "ImageStretchOption", + "ImageStretchOptionPropertyName": "ImageStretchOptionPropertyName" + } + } + ], + "ImageCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ImageCellInfoDescription()": "ImageCellInfoDescription()", + "ImageCellInfoDescription": "ImageCellInfoDescription()", + "ImagePath": "ImagePath", + "ImageResourceType": "ImageResourceType", + "ImageStretchOption": "ImageStretchOption", + "Type": "Type" + } + } + ], + "ImageCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageCellInfoDescriptionMetadata()": "ImageCellInfoDescriptionMetadata()", + "ImageCellInfoDescriptionMetadata": "ImageCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ImageCellModelExport", + "k": "class", + "s": "classes", + "m": { + "ImageCellModelExport()": "ImageCellModelExport()", + "ImageCellModelExport": "ImageCellModelExport()", + "ImagePath": "ImagePath", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "ImageColumn": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ImageColumn", + "k": "class", + "s": "classes", + "m": { + "ImageColumn()": "ImageColumn()", + "ImageColumn": "ImageColumn()", + "EditorItemsSource": "EditorItemsSource", + "EditorItemsSourceProperty": "EditorItemsSourceProperty", + "EditorTextField": "EditorTextField", + "EditorTextFieldProperty": "EditorTextFieldProperty", + "EditorType": "EditorType", + "EditorTypeProperty": "EditorTypeProperty", + "EditorValueField": "EditorValueField", + "EditorValueFieldProperty": "EditorValueFieldProperty", + "ImageResourceType": "ImageResourceType", + "ImageResourceTypeProperty": "ImageResourceTypeProperty", + "ImageStretchOption": "ImageStretchOption", + "ImageStretchOptionProperty": "ImageStretchOptionProperty" + } + } + ], + "ImageColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageColumnDescription", + "k": "class", + "s": "classes", + "m": { + "ImageColumnDescription()": "ImageColumnDescription()", + "ImageColumnDescription": "ImageColumnDescription()", + "DataSource": "DataSource", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "GenericDataSource": "GenericDataSource", + "ImageStretchOption": "ImageStretchOption", + "Type": "Type" + } + } + ], + "ImageColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageColumnDescriptionMetadata()": "ImageColumnDescriptionMetadata()", + "ImageColumnDescriptionMetadata": "ImageColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageColumnDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ImageColumnDescriptionModule()": "ImageColumnDescriptionModule()", + "ImageColumnDescriptionModule": "ImageColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageHelper": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/ImageHelper", + "k": "class", + "s": "classes" + } + ], + "ImageLoadEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageLoadEventArgs", + "k": "class", + "s": "classes", + "m": { + "Data": "Data", + "Error": "Error", + "Path": "Path", + "Status": "Status", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ImageLoadEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageLoadEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ImageLoadEventArgsDescription()": "ImageLoadEventArgsDescription()", + "ImageLoadEventArgsDescription": "ImageLoadEventArgsDescription()", + "DataRef": "DataRef", + "Error": "Error", + "Path": "Path", + "Status": "Status", + "Type": "Type" + } + } + ], + "ImageLoadEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageLoadEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageLoadEventArgsDescriptionMetadata()": "ImageLoadEventArgsDescriptionMetadata()", + "ImageLoadEventArgsDescriptionMetadata": "ImageLoadEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageLoadStatus": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ImageLoadStatus", + "k": "enum", + "s": "enums" + } + ], + "ImageResourceType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ImageResourceType", + "k": "enum", + "s": "enums" + } + ], + "ImageryMetadata": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/ImageryMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageryMetadata()": "ImageryMetadata()", + "ImageryMetadata": "ImageryMetadata()", + "ImageUrl": "ImageUrl", + "ImageUrlSubdomains": "ImageUrlSubdomains" + } + } + ], + "ImagesChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImagesChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ImagesChangedEventArgsDescription()": "ImagesChangedEventArgsDescription()", + "ImagesChangedEventArgsDescription": "ImagesChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ImagesChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImagesChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImagesChangedEventArgsDescriptionMetadata()": "ImagesChangedEventArgsDescriptionMetadata()", + "ImagesChangedEventArgsDescriptionMetadata": "ImagesChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageStretchOptions": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/ImageStretchOptions", + "k": "enum", + "s": "enums" + } + ], + "ImageTilesReadyEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageTilesReadyEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ImageTilesReadyEventArgsDescription()": "ImageTilesReadyEventArgsDescription()", + "ImageTilesReadyEventArgsDescription": "ImageTilesReadyEventArgsDescription()", + "Type": "Type" + } + } + ], + "ImageTilesReadyEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ImageTilesReadyEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageTilesReadyEventArgsDescriptionMetadata()": "ImageTilesReadyEventArgsDescriptionMetadata()", + "ImageTilesReadyEventArgsDescriptionMetadata": "ImageTilesReadyEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageType": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/enums/ImageType", + "k": "enum", + "s": "enums" + } + ], + "ImageWrapper": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/ImageWrapper", + "k": "class", + "s": "classes", + "m": { + "ImageWrapper(string)": "ImageWrapper(string)", + "ImageWrapper": "ImageWrapper(string)", + "IsEquivalent(ImageWrapper)": "IsEquivalent(ImageWrapper)", + "IsEquivalent": "IsEquivalent(ImageWrapper)" + } + } + ], + "IndexCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/IndexCollection", + "k": "class", + "s": "classes", + "m": { + "IndexCollection()": "IndexCollection()", + "IndexCollection": "IndexCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "IndicatorDisplayType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/IndicatorDisplayType", + "k": "enum", + "s": "enums" + } + ], + "IndicatorProxyDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/IndicatorProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "IndicatorProxyDescriptionModule()": "IndicatorProxyDescriptionModule()", + "IndicatorProxyDescriptionModule": "IndicatorProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "IndicatorsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/IndicatorsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "IndicatorsDescriptionModule()": "IndicatorsDescriptionModule()", + "IndicatorsDescriptionModule": "IndicatorsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InlineItemAccessAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/InlineItemAccessAttribute", + "k": "class", + "s": "classes", + "m": { + "InlineItemAccessAttribute()": "InlineItemAccessAttribute()", + "InlineItemAccessAttribute": "InlineItemAccessAttribute()", + "InlineItemAccessAttribute(string)": "InlineItemAccessAttribute(string)" + } + } + ], + "InlinePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/InlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "InlinePropertyAttribute()": "InlinePropertyAttribute()", + "InlinePropertyAttribute": "InlinePropertyAttribute()" + } + } + ], + "InputChangeEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/InputChangeEventArgs", + "k": "class", + "s": "classes", + "m": { + "InputChangeEventArgs()": "InputChangeEventArgs()", + "InputChangeEventArgs": "InputChangeEventArgs()", + "IsCompositionInProgress": "IsCompositionInProgress", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "InputChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "InputChangeEventArgsDescription()": "InputChangeEventArgsDescription()", + "InputChangeEventArgsDescription": "InputChangeEventArgsDescription()", + "IsCompositionInProgress": "IsCompositionInProgress", + "Type": "Type", + "Value": "Value" + } + } + ], + "InputChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "InputChangeEventArgsDescriptionMetadata()": "InputChangeEventArgsDescriptionMetadata()", + "InputChangeEventArgsDescriptionMetadata": "InputChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputDescription", + "k": "class", + "s": "classes", + "m": { + "InputDescription()": "InputDescription()", + "InputDescription": "InputDescription()", + "ActualDensity": "ActualDensity", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualTextColor": "ActualTextColor", + "AriaLabel": "AriaLabel", + "BaseTheme": "BaseTheme", + "ChangeRef": "ChangeRef", + "ChangingRef": "ChangingRef", + "CompositionEndRef": "CompositionEndRef", + "Density": "Density", + "Disabled": "Disabled", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "For": "For", + "HoverTextColor": "HoverTextColor", + "Id": "Id", + "IncludeLiterals": "IncludeLiterals", + "InputType": "InputType", + "IsHover": "IsHover", + "KeyDownRef": "KeyDownRef", + "KeyPressRef": "KeyPressRef", + "KeyUpRef": "KeyUpRef", + "Mask": "Mask", + "Placeholder": "Placeholder", + "PromptChar": "PromptChar", + "Readonly": "Readonly", + "SelectionEnd": "SelectionEnd", + "SelectionStart": "SelectionStart", + "ShowSpinner": "ShowSpinner", + "TabIndex": "TabIndex", + "TextAlignment": "TextAlignment", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value" + } + } + ], + "InputDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "InputDescriptionMetadata()": "InputDescriptionMetadata()", + "InputDescriptionMetadata": "InputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "InputDescriptionModule()": "InputDescriptionModule()", + "InputDescriptionModule": "InputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputGroupDescription", + "k": "class", + "s": "classes", + "m": { + "InputGroupDescription()": "InputGroupDescription()", + "InputGroupDescription": "InputGroupDescription()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualDensity": "ActualDensity", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualIsExpanded": "ActualIsExpanded", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderColor": "BorderColor", + "BorderTypeBackgroundColor": "BorderTypeBackgroundColor", + "BorderTypeBorderColor": "BorderTypeBorderColor", + "BorderTypeBorderWidth": "BorderTypeBorderWidth", + "BorderTypeContentPaddingBottom": "BorderTypeContentPaddingBottom", + "BorderTypeContentPaddingLeft": "BorderTypeContentPaddingLeft", + "BorderTypeContentPaddingRight": "BorderTypeContentPaddingRight", + "BorderTypeContentPaddingTop": "BorderTypeContentPaddingTop", + "BorderTypeCornerRadiusBottomLeft": "BorderTypeCornerRadiusBottomLeft", + "BorderTypeCornerRadiusBottomRight": "BorderTypeCornerRadiusBottomRight", + "BorderTypeCornerRadiusTopLeft": "BorderTypeCornerRadiusTopLeft", + "BorderTypeCornerRadiusTopRight": "BorderTypeCornerRadiusTopRight", + "BorderTypeFocusBorderColor": "BorderTypeFocusBorderColor", + "BorderTypeFocusBorderWidth": "BorderTypeFocusBorderWidth", + "BorderTypeFocusUnderlineColor": "BorderTypeFocusUnderlineColor", + "BorderTypeFocusUnderlineOpacity": "BorderTypeFocusUnderlineOpacity", + "BorderTypeFocusUnderlineRippleOpacity": "BorderTypeFocusUnderlineRippleOpacity", + "BorderTypeHoverUnderlineColor": "BorderTypeHoverUnderlineColor", + "BorderTypeHoverUnderlineOpacity": "BorderTypeHoverUnderlineOpacity", + "BorderTypeHoverUnderlineWidth": "BorderTypeHoverUnderlineWidth", + "BorderTypeUnderlineColor": "BorderTypeUnderlineColor", + "BorderTypeUnderlineOpacity": "BorderTypeUnderlineOpacity", + "BorderTypeUnderlineRippleColor": "BorderTypeUnderlineRippleColor", + "BorderTypeUnderlineRippleOpacity": "BorderTypeUnderlineRippleOpacity", + "BorderTypeUnderlineRippleWidth": "BorderTypeUnderlineRippleWidth", + "BorderTypeUnderlineWidth": "BorderTypeUnderlineWidth", + "BorderWidth": "BorderWidth", + "BoxTypeBackgroundColor": "BoxTypeBackgroundColor", + "BoxTypeBorderColor": "BoxTypeBorderColor", + "BoxTypeBorderWidth": "BoxTypeBorderWidth", + "BoxTypeContentPaddingBottom": "BoxTypeContentPaddingBottom", + "BoxTypeContentPaddingLeft": "BoxTypeContentPaddingLeft", + "BoxTypeContentPaddingRight": "BoxTypeContentPaddingRight", + "BoxTypeContentPaddingTop": "BoxTypeContentPaddingTop", + "BoxTypeCornerRadiusBottomLeft": "BoxTypeCornerRadiusBottomLeft", + "BoxTypeCornerRadiusBottomRight": "BoxTypeCornerRadiusBottomRight", + "BoxTypeCornerRadiusTopLeft": "BoxTypeCornerRadiusTopLeft", + "BoxTypeCornerRadiusTopRight": "BoxTypeCornerRadiusTopRight", + "BoxTypeFocusBorderColor": "BoxTypeFocusBorderColor", + "BoxTypeFocusBorderWidth": "BoxTypeFocusBorderWidth", + "BoxTypeFocusUnderlineColor": "BoxTypeFocusUnderlineColor", + "BoxTypeFocusUnderlineOpacity": "BoxTypeFocusUnderlineOpacity", + "BoxTypeFocusUnderlineRippleOpacity": "BoxTypeFocusUnderlineRippleOpacity", + "BoxTypeHoverUnderlineColor": "BoxTypeHoverUnderlineColor", + "BoxTypeHoverUnderlineOpacity": "BoxTypeHoverUnderlineOpacity", + "BoxTypeHoverUnderlineWidth": "BoxTypeHoverUnderlineWidth", + "BoxTypeUnderlineColor": "BoxTypeUnderlineColor", + "BoxTypeUnderlineOpacity": "BoxTypeUnderlineOpacity", + "BoxTypeUnderlineRippleColor": "BoxTypeUnderlineRippleColor", + "BoxTypeUnderlineRippleOpacity": "BoxTypeUnderlineRippleOpacity", + "BoxTypeUnderlineRippleWidth": "BoxTypeUnderlineRippleWidth", + "BoxTypeUnderlineWidth": "BoxTypeUnderlineWidth", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "Density": "Density", + "Disabled": "Disabled", + "DisplayType": "DisplayType", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderWidth": "FocusBorderWidth", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "Id": "Id", + "Inputs": "Inputs", + "IsExpanded": "IsExpanded", + "IsFocused": "IsFocused", + "IsHovered": "IsHovered", + "LineTypeBackgroundColor": "LineTypeBackgroundColor", + "LineTypeBorderColor": "LineTypeBorderColor", + "LineTypeBorderWidth": "LineTypeBorderWidth", + "LineTypeContentPaddingBottom": "LineTypeContentPaddingBottom", + "LineTypeContentPaddingLeft": "LineTypeContentPaddingLeft", + "LineTypeContentPaddingRight": "LineTypeContentPaddingRight", + "LineTypeContentPaddingTop": "LineTypeContentPaddingTop", + "LineTypeCornerRadiusBottomLeft": "LineTypeCornerRadiusBottomLeft", + "LineTypeCornerRadiusBottomRight": "LineTypeCornerRadiusBottomRight", + "LineTypeCornerRadiusTopLeft": "LineTypeCornerRadiusTopLeft", + "LineTypeCornerRadiusTopRight": "LineTypeCornerRadiusTopRight", + "LineTypeFocusBorderColor": "LineTypeFocusBorderColor", + "LineTypeFocusBorderWidth": "LineTypeFocusBorderWidth", + "LineTypeFocusUnderlineColor": "LineTypeFocusUnderlineColor", + "LineTypeFocusUnderlineOpacity": "LineTypeFocusUnderlineOpacity", + "LineTypeFocusUnderlineRippleOpacity": "LineTypeFocusUnderlineRippleOpacity", + "LineTypeHoverUnderlineColor": "LineTypeHoverUnderlineColor", + "LineTypeHoverUnderlineOpacity": "LineTypeHoverUnderlineOpacity", + "LineTypeHoverUnderlineWidth": "LineTypeHoverUnderlineWidth", + "LineTypeUnderlineColor": "LineTypeUnderlineColor", + "LineTypeUnderlineOpacity": "LineTypeUnderlineOpacity", + "LineTypeUnderlineRippleColor": "LineTypeUnderlineRippleColor", + "LineTypeUnderlineRippleOpacity": "LineTypeUnderlineRippleOpacity", + "LineTypeUnderlineRippleWidth": "LineTypeUnderlineRippleWidth", + "LineTypeUnderlineWidth": "LineTypeUnderlineWidth", + "SearchTypeBackgroundColor": "SearchTypeBackgroundColor", + "SearchTypeBorderColor": "SearchTypeBorderColor", + "SearchTypeBorderWidth": "SearchTypeBorderWidth", + "SearchTypeContentPaddingBottom": "SearchTypeContentPaddingBottom", + "SearchTypeContentPaddingLeft": "SearchTypeContentPaddingLeft", + "SearchTypeContentPaddingRight": "SearchTypeContentPaddingRight", + "SearchTypeContentPaddingTop": "SearchTypeContentPaddingTop", + "SearchTypeCornerRadiusBottomLeft": "SearchTypeCornerRadiusBottomLeft", + "SearchTypeCornerRadiusBottomRight": "SearchTypeCornerRadiusBottomRight", + "SearchTypeCornerRadiusTopLeft": "SearchTypeCornerRadiusTopLeft", + "SearchTypeCornerRadiusTopRight": "SearchTypeCornerRadiusTopRight", + "SearchTypeFocusBorderColor": "SearchTypeFocusBorderColor", + "SearchTypeFocusBorderWidth": "SearchTypeFocusBorderWidth", + "SearchTypeFocusUnderlineColor": "SearchTypeFocusUnderlineColor", + "SearchTypeFocusUnderlineOpacity": "SearchTypeFocusUnderlineOpacity", + "SearchTypeFocusUnderlineRippleOpacity": "SearchTypeFocusUnderlineRippleOpacity", + "SearchTypeHoverUnderlineColor": "SearchTypeHoverUnderlineColor", + "SearchTypeHoverUnderlineOpacity": "SearchTypeHoverUnderlineOpacity", + "SearchTypeHoverUnderlineWidth": "SearchTypeHoverUnderlineWidth", + "SearchTypeUnderlineColor": "SearchTypeUnderlineColor", + "SearchTypeUnderlineOpacity": "SearchTypeUnderlineOpacity", + "SearchTypeUnderlineRippleColor": "SearchTypeUnderlineRippleColor", + "SearchTypeUnderlineRippleOpacity": "SearchTypeUnderlineRippleOpacity", + "SearchTypeUnderlineRippleWidth": "SearchTypeUnderlineRippleWidth", + "SearchTypeUnderlineWidth": "SearchTypeUnderlineWidth", + "Type": "Type", + "UnderlineColor": "UnderlineColor", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineWidth": "UnderlineWidth" + } + } + ], + "InputGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "InputGroupDescriptionMetadata()": "InputGroupDescriptionMetadata()", + "InputGroupDescriptionMetadata": "InputGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "InputGroupDescriptionModule()": "InputGroupDescriptionModule()", + "InputGroupDescriptionModule": "InputGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputGroupDisplayType": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/InputGroupDisplayType", + "k": "enum", + "s": "enums" + } + ], + "InputGroupInputCollection": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/InputGroupInputCollection", + "k": "class", + "s": "classes", + "m": { + "InputGroupInputCollection()": "InputGroupInputCollection()", + "InputGroupInputCollection": "InputGroupInputCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "InputGroupItemDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputGroupItemDescription", + "k": "class", + "s": "classes", + "m": { + "InputGroupItemDescription()": "InputGroupItemDescription()", + "InputGroupItemDescription": "InputGroupItemDescription()", + "Type": "Type" + } + } + ], + "InputGroupItemDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/InputGroupItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "InputGroupItemDescriptionMetadata()": "InputGroupItemDescriptionMetadata()", + "InputGroupItemDescriptionMetadata": "InputGroupItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputGroupVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/InputGroupVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "InputGroupVisualModelExport()": "InputGroupVisualModelExport()", + "InputGroupVisualModelExport": "InputGroupVisualModelExport()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualIsExpanded": "ActualIsExpanded", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "InputModels": "InputModels", + "IsDisabled": "IsDisabled", + "IsFocused": "IsFocused", + "IsHovered": "IsHovered", + "LabelModels": "LabelModels", + "PrefixModels": "PrefixModels", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SuffixModels": "SuffixModels" + } + } + ], + "InputShiftType": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/InputShiftType", + "k": "enum", + "s": "enums" + } + ], + "InputVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/InputVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "InputVisualModelExport()": "InputVisualModelExport()", + "InputVisualModelExport": "InputVisualModelExport()", + "ActualTextColor": "ActualTextColor", + "Height": "Height", + "IncludeLiterals": "IncludeLiterals", + "InputType": "InputType", + "IsHover": "IsHover", + "Left": "Left", + "Mask": "Mask", + "Name": "Name", + "Placeholder": "Placeholder", + "PromptChar": "PromptChar", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "IntColumn": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/IntColumn", + "k": "class", + "s": "classes", + "m": { + "IntColumn()": "IntColumn()", + "IntColumn": "IntColumn()", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "Populate(int)": "Populate(int)", + "Populate": "Populate(int)", + "Sort(IntColumnComparison)": "Sort(IntColumnComparison)", + "Sort": "Sort(IntColumnComparison)", + "Values": "Values" + } + } + ], + "InteractionState": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/InteractionState", + "k": "enum", + "s": "enums" + } + ], + "InterpolationMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/InterpolationMode", + "k": "enum", + "s": "enums" + } + ], + "IODataLiteralEmitter": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IODataLiteralEmitter", + "k": "interface", + "s": "interfaces", + "m": { + "EmitLiteral(object, bool)": "EmitLiteral(object, bool)", + "EmitLiteral": "EmitLiteral(object, bool)" + } + } + ], + "IOperationFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IOperationFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "Left": "Left", + "Operator": "Operator", + "Right": "Right" + } + } + ], + "IPlatformAppPackageLoader": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/interfaces/IPlatformAppPackageLoader", + "k": "interface", + "s": "interfaces", + "m": { + "CanHandle(Uri)": "CanHandle(Uri)", + "CanHandle": "CanHandle(Uri)", + "LoadAsync(Uri, Action, Action)": "LoadAsync(Uri, Action, Action)", + "LoadAsync": "LoadAsync(Uri, Action, Action)" + } + } + ], + "IPlatformBitmapUtilities": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/interfaces/IPlatformBitmapUtilities", + "k": "interface", + "s": "interfaces", + "m": { + "GetPixelAt(object, int, int)": "GetPixelAt(object, int, int)", + "GetPixelAt": "GetPixelAt(object, int, int)" + } + } + ], + "IPlatformPixelScaler": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/interfaces/IPlatformPixelScaler", + "k": "interface", + "s": "interfaces", + "m": { + "ClampPixelScalingRatio(double)": "ClampPixelScalingRatio(double)", + "ClampPixelScalingRatio": "ClampPixelScalingRatio(double)", + "ToFontPixelUnits(double)": "ToFontPixelUnits(double)", + "ToFontPixelUnits": "ToFontPixelUnits(double)", + "ToNativePixelUnits(double)": "ToNativePixelUnits(double)", + "ToNativePixelUnits": "ToNativePixelUnits(double)", + "ToPixelUnits(double)": "ToPixelUnits(double)", + "ToPixelUnits": "ToPixelUnits(double)" + } + } + ], + "IPlatformTextMetrics": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/interfaces/IPlatformTextMetrics", + "k": "interface", + "s": "interfaces", + "m": { + "ExecuteWithDispatcher(Action)": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher(Action, object)": "ExecuteWithDispatcher(Action, object)", + "MeasureText(string, string, float, bool, bool, bool, ref Rect)": "MeasureText(string, string, float, bool, bool, bool, ref Rect)", + "MeasureText": "MeasureText(string, string, float, bool, bool, bool, ref Rect)" + } + } + ], + "IPlatformUtilities": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/interfaces/IPlatformUtilities", + "k": "interface", + "s": "interfaces", + "m": { + "CreateCultureFromID(int, string)": "CreateCultureFromID(int, string)", + "CreateCultureFromID": "CreateCultureFromID(int, string)", + "GetAppWindow(object)": "GetAppWindow(object)", + "GetAppWindow": "GetAppWindow(object)", + "GetCurrentDispatchContext()": "GetCurrentDispatchContext()", + "GetCurrentDispatchContext": "GetCurrentDispatchContext()", + "InvokeOnMainThread(object, Action)": "InvokeOnMainThread(object, Action)", + "InvokeOnMainThread": "InvokeOnMainThread(object, Action)", + "InvokeOnMainThreadAfter(object, Action, long)": "InvokeOnMainThreadAfter(object, Action, long)", + "InvokeOnMainThreadAfter": "InvokeOnMainThreadAfter(object, Action, long)" + } + } + ], + "IPropertyReferenceFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IPropertyReferenceFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "PropertyReference": "PropertyReference" + } + } + ], + "IRandomnessGenerator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IRandomnessGenerator", + "k": "interface", + "s": "interfaces", + "m": { + "Next(int, int)": "Next(int, int)", + "Next": "Next(int, int)", + "NextDouble()": "NextDouble()", + "NextDouble": "NextDouble()" + } + } + ], + "IRandomnessSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IRandomnessSource", + "k": "interface", + "s": "interfaces", + "m": { + "GetGenerator(string)": "GetGenerator(string)", + "GetGenerator": "GetGenerator(string)" + } + } + ], + "ISectionInformation": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ISectionInformation", + "k": "interface", + "s": "interfaces", + "m": { + "EndIndex": "EndIndex", + "GroupKeyProperties": "GroupKeyProperties", + "GroupKeyValues": "GroupKeyValues", + "StartIndex": "StartIndex", + "SummaryResults": "SummaryResults" + } + } + ], + "ISummaryResult": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ISummaryResult", + "k": "interface", + "s": "interfaces", + "m": { + "GroupKey": "GroupKey", + "Operand": "Operand", + "PropertyName": "PropertyName", + "ShouldDisplay": "ShouldDisplay", + "SummaryIndex": "SummaryIndex", + "Value": "Value" + } + } + ], + "ISupportsDataChangeNotifications": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ISupportsDataChangeNotifications", + "k": "interface", + "s": "interfaces", + "m": { + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)" + } + } + ], + "ISupportsExpansionChangeNotifications": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ISupportsExpansionChangeNotifications", + "k": "interface", + "s": "interfaces", + "m": { + "NotifyRowExpansionChanged(int, bool, bool)": "NotifyRowExpansionChanged(int, bool, bool)", + "NotifyRowExpansionChanged": "NotifyRowExpansionChanged(int, bool, bool)" + } + } + ], + "ItemLegend": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ItemLegend", + "k": "class", + "s": "classes", + "m": { + "ItemLegend()": "ItemLegend()", + "ItemLegend": "ItemLegend()", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty" + } + } + ], + "ItemLegendDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItemLegendDescription", + "k": "class", + "s": "classes", + "m": { + "ItemLegendDescription()": "ItemLegendDescription()", + "ItemLegendDescription": "ItemLegendDescription()", + "Height": "Height", + "Orientation": "Orientation", + "TextColor": "TextColor", + "TextStyle": "TextStyle", + "Type": "Type", + "Width": "Width" + } + } + ], + "ItemLegendDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItemLegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ItemLegendDescriptionMetadata()": "ItemLegendDescriptionMetadata()", + "ItemLegendDescriptionMetadata": "ItemLegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItemLegendDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItemLegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ItemLegendDescriptionModule()": "ItemLegendDescriptionModule()", + "ItemLegendDescriptionModule": "ItemLegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItemsSourceAction": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ItemsSourceAction", + "k": "enum", + "s": "enums" + } + ], + "ItemToolTipLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ItemToolTipLayer", + "k": "class", + "s": "classes", + "m": { + "ItemToolTipLayer()": "ItemToolTipLayer()", + "ItemToolTipLayer": "ItemToolTipLayer()", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBackgroundProperty": "ToolTipBackgroundProperty", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderBrushProperty": "ToolTipBorderBrushProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty" + } + } + ], + "ItemToolTipLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItemToolTipLayerDescription", + "k": "class", + "s": "classes", + "m": { + "ItemToolTipLayerDescription()": "ItemToolTipLayerDescription()", + "ItemToolTipLayerDescription": "ItemToolTipLayerDescription()", + "SkipUnknownValues": "SkipUnknownValues", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "Type": "Type", + "UseInterpolation": "UseInterpolation" + } + } + ], + "ItemToolTipLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItemToolTipLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ItemToolTipLayerDescriptionMetadata()": "ItemToolTipLayerDescriptionMetadata()", + "ItemToolTipLayerDescriptionMetadata": "ItemToolTipLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItemToolTipLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItemToolTipLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ItemToolTipLayerDescriptionModule()": "ItemToolTipLayerDescriptionModule()", + "ItemToolTipLayerDescriptionModule": "ItemToolTipLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItemwiseStrategyBasedIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ItemwiseStrategyBasedIndicator", + "k": "class", + "s": "classes", + "m": { + "ResolveIsItemwise()": "ResolveIsItemwise()", + "ResolveIsItemwise": "ResolveIsItemwise()" + } + } + ], + "ItemwiseStrategyBasedIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItemwiseStrategyBasedIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "ItemwiseStrategyBasedIndicatorDescription()": "ItemwiseStrategyBasedIndicatorDescription()", + "ItemwiseStrategyBasedIndicatorDescription": "ItemwiseStrategyBasedIndicatorDescription()", + "Type": "Type" + } + } + ], + "ItemwiseStrategyBasedIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItemwiseStrategyBasedIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ItemwiseStrategyBasedIndicatorDescriptionMetadata()": "ItemwiseStrategyBasedIndicatorDescriptionMetadata()", + "ItemwiseStrategyBasedIndicatorDescriptionMetadata": "ItemwiseStrategyBasedIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItfConverter": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ItfConverter", + "k": "class", + "s": "classes", + "m": { + "ItfConverter()": "ItfConverter()", + "ItfConverter": "ItfConverter()", + "OnImportCompleted(AsyncCompletedEventArgs)": "OnImportCompleted(AsyncCompletedEventArgs)", + "OnImportCompleted": "OnImportCompleted(AsyncCompletedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Source": "Source", + "TriangulationSource": "TriangulationSource", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ITickProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ITickProvider", + "k": "interface", + "s": "interfaces", + "m": { + "RequestFrame(int)": "RequestFrame(int)", + "RequestFrame": "RequestFrame(int)", + "SetupTicking(Action)": "SetupTicking(Action)", + "SetupTicking": "SetupTicking(Action)", + "TeardownTicking(int)": "TeardownTicking(int)", + "TeardownTicking": "TeardownTicking(int)" + } + } + ], + "ITileGenerator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/ITileGenerator", + "k": "interface", + "s": "interfaces", + "m": { + "CancelTile(int, int, int)": "CancelTile(int, int, int)", + "CancelTile": "CancelTile(int, int, int)", + "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)": "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)", + "GetTile": "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)" + } + } + ], + "IToolbarContextAccessor": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IToolbarContextAccessor", + "k": "interface", + "s": "interfaces", + "m": { + "GetContextValue(string, ToolContextValueType)": "GetContextValue(string, ToolContextValueType)", + "GetContextValue": "GetContextValue(string, ToolContextValueType)", + "GetInternalAccessor()": "GetInternalAccessor()", + "GetInternalAccessor": "GetInternalAccessor()", + "SetContextValue(string, ToolContextValueType, object)": "SetContextValue(string, ToolContextValueType, object)", + "SetContextValue": "SetContextValue(string, ToolContextValueType, object)" + } + } + ], + "IToolbarTarget": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IToolbarTarget", + "k": "interface", + "s": "interfaces", + "m": { + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "CommandCompleted": "CommandCompleted", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "InvalidateActions": "InvalidateActions", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)" + } + } + ], + "IToolbarVisualModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/interfaces/IToolbarVisualModelExport", + "k": "interface", + "s": "interfaces", + "m": { + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "IVisualData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/interfaces/IVisualData", + "k": "interface", + "s": "interfaces", + "m": { + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "JAVADefaultOverloadOnNullCollisionAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVADefaultOverloadOnNullCollisionAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVADefaultOverloadOnNullCollisionAttribute()": "JAVADefaultOverloadOnNullCollisionAttribute()", + "JAVADefaultOverloadOnNullCollisionAttribute": "JAVADefaultOverloadOnNullCollisionAttribute()" + } + } + ], + "JAVAEmitIgnoreAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVAEmitIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAEmitIgnoreAttribute()": "JAVAEmitIgnoreAttribute()", + "JAVAEmitIgnoreAttribute": "JAVAEmitIgnoreAttribute()" + } + } + ], + "JAVAEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVAEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAEmitIgnoreTypeAttribute()": "JAVAEmitIgnoreTypeAttribute()", + "JAVAEmitIgnoreTypeAttribute": "JAVAEmitIgnoreTypeAttribute()" + } + } + ], + "JAVAGlobalMemberAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVAGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAGlobalMemberAttribute()": "JAVAGlobalMemberAttribute()", + "JAVAGlobalMemberAttribute": "JAVAGlobalMemberAttribute()" + } + } + ], + "JAVAIgnoreAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVAIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAIgnoreAttribute()": "JAVAIgnoreAttribute()", + "JAVAIgnoreAttribute": "JAVAIgnoreAttribute()" + } + } + ], + "JAVAInlineItemAccessAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVAInlineItemAccessAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAInlineItemAccessAttribute()": "JAVAInlineItemAccessAttribute()", + "JAVAInlineItemAccessAttribute": "JAVAInlineItemAccessAttribute()", + "JAVAInlineItemAccessAttribute(string)": "JAVAInlineItemAccessAttribute(string)" + } + } + ], + "JAVAInlinePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVAInlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAInlinePropertyAttribute()": "JAVAInlinePropertyAttribute()", + "JAVAInlinePropertyAttribute": "JAVAInlinePropertyAttribute()" + } + } + ], + "JAVAKeepOriginalNameAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVAKeepOriginalNameAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAKeepOriginalNameAttribute()": "JAVAKeepOriginalNameAttribute()", + "JAVAKeepOriginalNameAttribute": "JAVAKeepOriginalNameAttribute()" + } + } + ], + "JAVALiteralStringAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVALiteralStringAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVALiteralStringAttribute()": "JAVALiteralStringAttribute()", + "JAVALiteralStringAttribute": "JAVALiteralStringAttribute()" + } + } + ], + "JAVANativeMethodAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVANativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVANativeMethodAttribute(string)": "JAVANativeMethodAttribute(string)", + "JAVANativeMethodAttribute": "JAVANativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "JAVANativePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVANativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVANativePropertyAttribute()": "JAVANativePropertyAttribute()", + "JAVANativePropertyAttribute": "JAVANativePropertyAttribute()" + } + } + ], + "JAVANativeTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVANativeTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVANativeTypeAttribute()": "JAVANativeTypeAttribute()", + "JAVANativeTypeAttribute": "JAVANativeTypeAttribute()" + } + } + ], + "JAVAReadOnlyStreamAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVAReadOnlyStreamAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAReadOnlyStreamAttribute()": "JAVAReadOnlyStreamAttribute()", + "JAVAReadOnlyStreamAttribute": "JAVAReadOnlyStreamAttribute()" + } + } + ], + "JAVASubstituteTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVASubstituteTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVASubstituteTypeAttribute(Type)": "JAVASubstituteTypeAttribute(Type)", + "JAVASubstituteTypeAttribute": "JAVASubstituteTypeAttribute(Type)", + "Type": "Type" + } + } + ], + "JAVASubstituteValueAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JAVASubstituteValueAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVASubstituteValueAttribute(object)": "JAVASubstituteValueAttribute(object)", + "JAVASubstituteValueAttribute": "JAVASubstituteValueAttribute(object)", + "AllowCaseLabels": "AllowCaseLabels", + "Value": "Value" + } + } + ], + "JSDefaultOverloadOnNullCollisionAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSDefaultOverloadOnNullCollisionAttribute", + "k": "class", + "s": "classes", + "m": { + "JSDefaultOverloadOnNullCollisionAttribute()": "JSDefaultOverloadOnNullCollisionAttribute()", + "JSDefaultOverloadOnNullCollisionAttribute": "JSDefaultOverloadOnNullCollisionAttribute()" + } + } + ], + "JSEmitIgnoreAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSEmitIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "JSEmitIgnoreAttribute()": "JSEmitIgnoreAttribute()", + "JSEmitIgnoreAttribute": "JSEmitIgnoreAttribute()" + } + } + ], + "JSEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JSEmitIgnoreTypeAttribute()": "JSEmitIgnoreTypeAttribute()", + "JSEmitIgnoreTypeAttribute": "JSEmitIgnoreTypeAttribute()" + } + } + ], + "JSForceWriteConstantValueAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSForceWriteConstantValueAttribute", + "k": "class", + "s": "classes", + "m": { + "JSForceWriteConstantValueAttribute()": "JSForceWriteConstantValueAttribute()", + "JSForceWriteConstantValueAttribute": "JSForceWriteConstantValueAttribute()" + } + } + ], + "JSGlobalMemberAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "JSGlobalMemberAttribute()": "JSGlobalMemberAttribute()", + "JSGlobalMemberAttribute": "JSGlobalMemberAttribute()" + } + } + ], + "JSIgnoreAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "JSIgnoreAttribute()": "JSIgnoreAttribute()", + "JSIgnoreAttribute": "JSIgnoreAttribute()" + } + } + ], + "JSInlineItemAccessAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSInlineItemAccessAttribute", + "k": "class", + "s": "classes", + "m": { + "JSInlineItemAccessAttribute()": "JSInlineItemAccessAttribute()", + "JSInlineItemAccessAttribute": "JSInlineItemAccessAttribute()", + "JSInlineItemAccessAttribute(string)": "JSInlineItemAccessAttribute(string)" + } + } + ], + "JSInlinePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSInlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "JSInlinePropertyAttribute()": "JSInlinePropertyAttribute()", + "JSInlinePropertyAttribute": "JSInlinePropertyAttribute()" + } + } + ], + "JSKeepOriginalNameAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSKeepOriginalNameAttribute", + "k": "class", + "s": "classes", + "m": { + "JSKeepOriginalNameAttribute()": "JSKeepOriginalNameAttribute()", + "JSKeepOriginalNameAttribute": "JSKeepOriginalNameAttribute()" + } + } + ], + "JSLiteralStringAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSLiteralStringAttribute", + "k": "class", + "s": "classes", + "m": { + "JSLiteralStringAttribute()": "JSLiteralStringAttribute()", + "JSLiteralStringAttribute": "JSLiteralStringAttribute()" + } + } + ], + "JSNativeMethodAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSNativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "JSNativeMethodAttribute(string)": "JSNativeMethodAttribute(string)", + "JSNativeMethodAttribute": "JSNativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "JSNativePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSNativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "JSNativePropertyAttribute()": "JSNativePropertyAttribute()", + "JSNativePropertyAttribute": "JSNativePropertyAttribute()" + } + } + ], + "JSNativeTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSNativeTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JSNativeTypeAttribute()": "JSNativeTypeAttribute()", + "JSNativeTypeAttribute": "JSNativeTypeAttribute()" + } + } + ], + "JSReadOnlyStreamAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSReadOnlyStreamAttribute", + "k": "class", + "s": "classes", + "m": { + "JSReadOnlyStreamAttribute()": "JSReadOnlyStreamAttribute()", + "JSReadOnlyStreamAttribute": "JSReadOnlyStreamAttribute()" + } + } + ], + "JSSubstituteTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSSubstituteTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JSSubstituteTypeAttribute(Type)": "JSSubstituteTypeAttribute(Type)", + "JSSubstituteTypeAttribute": "JSSubstituteTypeAttribute(Type)", + "Type": "Type" + } + } + ], + "JSSubstituteValueAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/JSSubstituteValueAttribute", + "k": "class", + "s": "classes", + "m": { + "JSSubstituteValueAttribute(object)": "JSSubstituteValueAttribute(object)", + "JSSubstituteValueAttribute": "JSSubstituteValueAttribute(object)", + "AllowCaseLabels": "AllowCaseLabels", + "Value": "Value" + } + } + ], + "KeepOriginalNameAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/KeepOriginalNameAttribute", + "k": "class", + "s": "classes", + "m": { + "KeepOriginalNameAttribute()": "KeepOriginalNameAttribute()", + "KeepOriginalNameAttribute": "KeepOriginalNameAttribute()" + } + } + ], + "KeyEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/KeyEventArgs", + "k": "class", + "s": "classes", + "m": { + "KeyEventArgs(int, bool, bool, bool, object)": "KeyEventArgs(int, bool, bool, bool, object)", + "KeyEventArgs": "KeyEventArgs(int, bool, bool, bool, object)", + "Alt": "Alt", + "Ctrl": "Ctrl", + "DefaultPrevented": "DefaultPrevented", + "KeyCode": "KeyCode", + "OriginalEvent": "OriginalEvent", + "PreventDefault()": "PreventDefault()", + "PreventDefault": "PreventDefault()", + "Shift": "Shift", + "StopPropagation()": "StopPropagation()", + "StopPropagation": "StopPropagation()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "KeyEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/KeyEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "KeyEventArgsDescription()": "KeyEventArgsDescription()", + "KeyEventArgsDescription": "KeyEventArgsDescription()", + "Type": "Type" + } + } + ], + "KeyEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/KeyEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "KeyEventArgsDescriptionMetadata()": "KeyEventArgsDescriptionMetadata()", + "KeyEventArgsDescriptionMetadata": "KeyEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "KotlinEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/KotlinEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "KotlinEmitIgnoreTypeAttribute()": "KotlinEmitIgnoreTypeAttribute()", + "KotlinEmitIgnoreTypeAttribute": "KotlinEmitIgnoreTypeAttribute()" + } + } + ], + "KotlinInlinePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/KotlinInlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "KotlinInlinePropertyAttribute()": "KotlinInlinePropertyAttribute()", + "KotlinInlinePropertyAttribute": "KotlinInlinePropertyAttribute()" + } + } + ], + "KotlinLiteralUnwrapAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/KotlinLiteralUnwrapAttribute", + "k": "class", + "s": "classes", + "m": { + "KotlinLiteralUnwrapAttribute()": "KotlinLiteralUnwrapAttribute()", + "KotlinLiteralUnwrapAttribute": "KotlinLiteralUnwrapAttribute()" + } + } + ], + "LabelAppearanceData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelAppearanceData", + "k": "class", + "s": "classes", + "m": { + "LabelAppearanceData()": "LabelAppearanceData()", + "LabelAppearanceData": "LabelAppearanceData()", + "Angle": "Angle", + "Font": "Font", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStretch": "FontStretch", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HorizontalAlignment": "HorizontalAlignment", + "LabelBrush": "LabelBrush", + "LabelBrushExtended": "LabelBrushExtended", + "MarginBottom": "MarginBottom", + "MarginLeft": "MarginLeft", + "MarginRight": "MarginRight", + "MarginTop": "MarginTop", + "Opacity": "Opacity", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextAlignment": "TextAlignment", + "TextPosition": "TextPosition", + "TextWrapping": "TextWrapping", + "VerticalAlignment": "VerticalAlignment", + "Visibility": "Visibility" + } + } + ], + "LabelAppearanceDataList": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelAppearanceDataList", + "k": "class", + "s": "classes", + "m": { + "LabelAppearanceDataList()": "LabelAppearanceDataList()", + "LabelAppearanceDataList": "LabelAppearanceDataList()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "LabelClickEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LabelClickEventArgsDescription()": "LabelClickEventArgsDescription()", + "LabelClickEventArgsDescription": "LabelClickEventArgsDescription()", + "AllowSliceClick": "AllowSliceClick", + "Type": "Type" + } + } + ], + "LabelClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LabelClickEventArgsDescriptionMetadata()": "LabelClickEventArgsDescriptionMetadata()", + "LabelClickEventArgsDescriptionMetadata": "LabelClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LabelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelDescription", + "k": "class", + "s": "classes", + "m": { + "LabelDescription()": "LabelDescription()", + "LabelDescription": "LabelDescription()", + "ActualDensity": "ActualDensity", + "ActualHighlightTextColor": "ActualHighlightTextColor", + "ActualHoverHighlightTextColor": "ActualHoverHighlightTextColor", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualTextColor": "ActualTextColor", + "AlignItems": "AlignItems", + "AlignSelf": "AlignSelf", + "AriaLabel": "AriaLabel", + "BaseTheme": "BaseTheme", + "Density": "Density", + "Disabled": "Disabled", + "Display": "Display", + "FlexDirection": "FlexDirection", + "FlexGrow": "FlexGrow", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "For": "For", + "HighlightTextColor": "HighlightTextColor", + "HoverHighlightTextColor": "HoverHighlightTextColor", + "HoverTextColor": "HoverTextColor", + "Id": "Id", + "IsHover": "IsHover", + "TabIndex": "TabIndex", + "Text": "Text", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value" + } + } + ], + "LabelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LabelDescriptionMetadata()": "LabelDescriptionMetadata()", + "LabelDescriptionMetadata": "LabelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LabelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LabelDescriptionModule()": "LabelDescriptionModule()", + "LabelDescriptionModule": "LabelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LabelFormatOverrideEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LabelFormatOverrideEventArgs", + "k": "class", + "s": "classes", + "m": { + "LabelFormatOverrideEventArgs()": "LabelFormatOverrideEventArgs()", + "LabelFormatOverrideEventArgs": "LabelFormatOverrideEventArgs()", + "DateTime": "DateTime", + "Format": "Format", + "Label": "Label", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LabelFormatOverrideEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelFormatOverrideEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LabelFormatOverrideEventArgsDescription()": "LabelFormatOverrideEventArgsDescription()", + "LabelFormatOverrideEventArgsDescription": "LabelFormatOverrideEventArgsDescription()", + "DateTime": "DateTime", + "Format": "Format", + "Label": "Label", + "Type": "Type" + } + } + ], + "LabelFormatOverrideEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelFormatOverrideEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LabelFormatOverrideEventArgsDescriptionMetadata()": "LabelFormatOverrideEventArgsDescriptionMetadata()", + "LabelFormatOverrideEventArgsDescriptionMetadata": "LabelFormatOverrideEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LabelShiftType": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/LabelShiftType", + "k": "enum", + "s": "enums" + } + ], + "LabelsPosition": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/LabelsPosition", + "k": "enum", + "s": "enums" + } + ], + "LabelVisualModelExport": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LabelVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "LabelVisualModelExport()": "LabelVisualModelExport()", + "LabelVisualModelExport": "LabelVisualModelExport()", + "Height": "Height", + "IsWrapEnabled": "IsWrapEnabled", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "Top": "Top", + "Width": "Width" + } + }, + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/LabelVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "LabelVisualModelExport()": "LabelVisualModelExport()", + "LabelVisualModelExport": "LabelVisualModelExport()", + "ActualTextColor": "ActualTextColor", + "AlignItems": "AlignItems", + "Display": "Display", + "FlexDirection": "FlexDirection", + "FlexGrow": "FlexGrow", + "IsDisabled": "IsDisabled", + "IsHover": "IsHover", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Value": "Value" + } + } + ], + "LastMonthExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastMonthExpression", + "k": "class", + "s": "classes", + "m": { + "LastMonthExpression(FilterExpression)": "LastMonthExpression(FilterExpression)", + "LastMonthExpression": "LastMonthExpression(FilterExpression)", + "LastMonthExpression(string)": "LastMonthExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastMonthExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastMonthExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastMonthExpressionDescription()": "LastMonthExpressionDescription()", + "LastMonthExpressionDescription": "LastMonthExpressionDescription()", + "Type": "Type" + } + } + ], + "LastMonthExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastMonthExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastMonthExpressionDescriptionMetadata()": "LastMonthExpressionDescriptionMetadata()", + "LastMonthExpressionDescriptionMetadata": "LastMonthExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastQuarterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastQuarterExpression", + "k": "class", + "s": "classes", + "m": { + "LastQuarterExpression(FilterExpression)": "LastQuarterExpression(FilterExpression)", + "LastQuarterExpression": "LastQuarterExpression(FilterExpression)", + "LastQuarterExpression(string)": "LastQuarterExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastQuarterExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastQuarterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastQuarterExpressionDescription()": "LastQuarterExpressionDescription()", + "LastQuarterExpressionDescription": "LastQuarterExpressionDescription()", + "Type": "Type" + } + } + ], + "LastQuarterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastQuarterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastQuarterExpressionDescriptionMetadata()": "LastQuarterExpressionDescriptionMetadata()", + "LastQuarterExpressionDescriptionMetadata": "LastQuarterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastSevenDaysExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastSevenDaysExpression", + "k": "class", + "s": "classes", + "m": { + "LastSevenDaysExpression(FilterExpression)": "LastSevenDaysExpression(FilterExpression)", + "LastSevenDaysExpression": "LastSevenDaysExpression(FilterExpression)", + "LastSevenDaysExpression(string)": "LastSevenDaysExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastSevenDaysExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastSevenDaysExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastSevenDaysExpressionDescription()": "LastSevenDaysExpressionDescription()", + "LastSevenDaysExpressionDescription": "LastSevenDaysExpressionDescription()", + "Type": "Type" + } + } + ], + "LastSevenDaysExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastSevenDaysExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastSevenDaysExpressionDescriptionMetadata()": "LastSevenDaysExpressionDescriptionMetadata()", + "LastSevenDaysExpressionDescriptionMetadata": "LastSevenDaysExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastThirtyDaysExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastThirtyDaysExpression", + "k": "class", + "s": "classes", + "m": { + "LastThirtyDaysExpression(FilterExpression)": "LastThirtyDaysExpression(FilterExpression)", + "LastThirtyDaysExpression": "LastThirtyDaysExpression(FilterExpression)", + "LastThirtyDaysExpression(string)": "LastThirtyDaysExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastThirtyDaysExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastThirtyDaysExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastThirtyDaysExpressionDescription()": "LastThirtyDaysExpressionDescription()", + "LastThirtyDaysExpressionDescription": "LastThirtyDaysExpressionDescription()", + "Type": "Type" + } + } + ], + "LastThirtyDaysExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastThirtyDaysExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastThirtyDaysExpressionDescriptionMetadata()": "LastThirtyDaysExpressionDescriptionMetadata()", + "LastThirtyDaysExpressionDescriptionMetadata": "LastThirtyDaysExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastThreeSixtyFiveDaysExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastThreeSixtyFiveDaysExpression", + "k": "class", + "s": "classes", + "m": { + "LastThreeSixtyFiveDaysExpression(FilterExpression)": "LastThreeSixtyFiveDaysExpression(FilterExpression)", + "LastThreeSixtyFiveDaysExpression": "LastThreeSixtyFiveDaysExpression(FilterExpression)", + "LastThreeSixtyFiveDaysExpression(string)": "LastThreeSixtyFiveDaysExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastThreeSixtyFiveDaysExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastThreeSixtyFiveDaysExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastThreeSixtyFiveDaysExpressionDescription()": "LastThreeSixtyFiveDaysExpressionDescription()", + "LastThreeSixtyFiveDaysExpressionDescription": "LastThreeSixtyFiveDaysExpressionDescription()", + "Type": "Type" + } + } + ], + "LastThreeSixtyFiveDaysExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastThreeSixtyFiveDaysExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastThreeSixtyFiveDaysExpressionDescriptionMetadata()": "LastThreeSixtyFiveDaysExpressionDescriptionMetadata()", + "LastThreeSixtyFiveDaysExpressionDescriptionMetadata": "LastThreeSixtyFiveDaysExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastWeekExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastWeekExpression", + "k": "class", + "s": "classes", + "m": { + "LastWeekExpression(FilterExpression)": "LastWeekExpression(FilterExpression)", + "LastWeekExpression": "LastWeekExpression(FilterExpression)", + "LastWeekExpression(string)": "LastWeekExpression(string)", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastWeekExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastWeekExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastWeekExpressionDescription()": "LastWeekExpressionDescription()", + "LastWeekExpressionDescription": "LastWeekExpressionDescription()", + "Type": "Type" + } + } + ], + "LastWeekExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastWeekExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastWeekExpressionDescriptionMetadata()": "LastWeekExpressionDescriptionMetadata()", + "LastWeekExpressionDescriptionMetadata": "LastWeekExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastYearExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastYearExpression", + "k": "class", + "s": "classes", + "m": { + "LastYearExpression(FilterExpression)": "LastYearExpression(FilterExpression)", + "LastYearExpression": "LastYearExpression(FilterExpression)", + "LastYearExpression(string)": "LastYearExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastYearExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastYearExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastYearExpressionDescription()": "LastYearExpressionDescription()", + "LastYearExpressionDescription": "LastYearExpressionDescription()", + "Type": "Type" + } + } + ], + "LastYearExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LastYearExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastYearExpressionDescriptionMetadata()": "LastYearExpressionDescriptionMetadata()", + "LastYearExpressionDescriptionMetadata": "LastYearExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LayoutAction": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/LayoutAction", + "k": "enum", + "s": "enums" + } + ], + "LayoutPrimaryKeyValue": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/LayoutPrimaryKeyValue", + "k": "class", + "s": "classes", + "m": { + "LayoutPrimaryKeyValue(object)": "LayoutPrimaryKeyValue(object)", + "LayoutPrimaryKeyValue": "LayoutPrimaryKeyValue(object)", + "LayoutPrimaryKeyValue(object[])": "LayoutPrimaryKeyValue(object[])", + "LayoutPrimaryKeyValue(string[], object[])": "LayoutPrimaryKeyValue(string[], object[])", + "CreateIdentityKey(object)": "CreateIdentityKey(object)", + "CreateIdentityKey": "CreateIdentityKey(object)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Key": "Key", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LayoutPrimaryKeyValueDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LayoutPrimaryKeyValueDescription", + "k": "class", + "s": "classes", + "m": { + "LayoutPrimaryKeyValueDescription()": "LayoutPrimaryKeyValueDescription()", + "LayoutPrimaryKeyValueDescription": "LayoutPrimaryKeyValueDescription()", + "Key": "Key", + "Type": "Type", + "Value": "Value" + } + } + ], + "LayoutPrimaryKeyValueDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LayoutPrimaryKeyValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LayoutPrimaryKeyValueDescriptionMetadata()": "LayoutPrimaryKeyValueDescriptionMetadata()", + "LayoutPrimaryKeyValueDescriptionMetadata": "LayoutPrimaryKeyValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LayoutPrimaryKeyValueDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LayoutPrimaryKeyValueDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LayoutPrimaryKeyValueDescriptionModule()": "LayoutPrimaryKeyValueDescriptionModule()", + "LayoutPrimaryKeyValueDescriptionModule": "LayoutPrimaryKeyValueDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LayoutSelectedItemsCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/LayoutSelectedItemsCollection", + "k": "class", + "s": "classes", + "m": { + "LayoutSelectedItemsCollection()": "LayoutSelectedItemsCollection()", + "LayoutSelectedItemsCollection": "LayoutSelectedItemsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LayoutSelectedKeysCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/LayoutSelectedKeysCollection", + "k": "class", + "s": "classes", + "m": { + "LayoutSelectedKeysCollection()": "LayoutSelectedKeysCollection()", + "LayoutSelectedKeysCollection": "LayoutSelectedKeysCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LeaderLineType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/LeaderLineType", + "k": "enum", + "s": "enums" + } + ], + "Legend": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Legend", + "k": "class", + "s": "classes", + "m": { + "Legend()": "Legend()", + "Legend": "Legend()", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty" + } + } + ], + "LegendBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LegendBase", + "k": "class", + "s": "classes", + "m": { + "ChartOwner": "ChartOwner", + "ChartOwnerProperty": "ChartOwnerProperty", + "CustomLegendContainer": "CustomLegendContainer", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FlushTextContentChangedCheck()": "FlushTextContentChangedCheck()", + "FlushTextContentChangedCheck": "FlushTextContentChangedCheck()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "IsFinancial": "IsFinancial", + "IsHorizontal": "IsHorizontal", + "IsItemwise": "IsItemwise", + "IsItemwiseProperty": "IsItemwiseProperty", + "IsScale": "IsScale", + "IsScaleProperty": "IsScaleProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "SeriesOwner": "SeriesOwner", + "SeriesOwnerProperty": "SeriesOwnerProperty", + "SimulateClick(Point)": "SimulateClick(Point)", + "SimulateClick": "SimulateClick(Point)", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "SimulateMouseLeave()": "SimulateMouseLeave()", + "SimulateMouseLeave": "SimulateMouseLeave()", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LegendBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendBaseDescription", + "k": "class", + "s": "classes", + "m": { + "LegendBaseDescription()": "LegendBaseDescription()", + "LegendBaseDescription": "LegendBaseDescription()", + "Background": "Background", + "LegendItemMouseEnterRef": "LegendItemMouseEnterRef", + "LegendItemMouseLeaveRef": "LegendItemMouseLeaveRef", + "LegendItemMouseLeftButtonDownRef": "LegendItemMouseLeftButtonDownRef", + "LegendItemMouseLeftButtonUpRef": "LegendItemMouseLeftButtonUpRef", + "LegendItemMouseMoveRef": "LegendItemMouseMoveRef", + "LegendTextContentChangedRef": "LegendTextContentChangedRef", + "Type": "Type" + } + } + ], + "LegendBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendBaseDescriptionMetadata()": "LegendBaseDescriptionMetadata()", + "LegendBaseDescriptionMetadata": "LegendBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendDescription", + "k": "class", + "s": "classes", + "m": { + "LegendDescription()": "LegendDescription()", + "LegendDescription": "LegendDescription()", + "Height": "Height", + "Orientation": "Orientation", + "TextColor": "TextColor", + "TextStyle": "TextStyle", + "Type": "Type", + "Width": "Width" + } + } + ], + "LegendDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendDescriptionMetadata()": "LegendDescriptionMetadata()", + "LegendDescriptionMetadata": "LegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LegendDescriptionModule()": "LegendDescriptionModule()", + "LegendDescriptionModule": "LegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendEmptyValuesMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/LegendEmptyValuesMode", + "k": "enum", + "s": "enums" + } + ], + "LegendHighlightingMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/LegendHighlightingMode", + "k": "enum", + "s": "enums" + } + ], + "LegendItemAdapter": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LegendItemAdapter", + "k": "class", + "s": "classes", + "m": { + "LegendItemAdapter()": "LegendItemAdapter()", + "LegendItemAdapter": "LegendItemAdapter()", + "GetView(DataContext, FrameworkElement, CustomContentUpdateInfo)": "GetView(DataContext, FrameworkElement, CustomContentUpdateInfo)", + "GetView": "GetView(DataContext, FrameworkElement, CustomContentUpdateInfo)", + "GetVisualDataForKey(string)": "GetVisualDataForKey(string)", + "GetVisualDataForKey": "GetVisualDataForKey(string)" + } + } + ], + "LegendItemBadgeMarkerSizeScaling": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/LegendItemBadgeMarkerSizeScaling", + "k": "enum", + "s": "enums" + } + ], + "LegendItemBadgeMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/LegendItemBadgeMode", + "k": "enum", + "s": "enums" + } + ], + "LegendItemBadgeShape": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/LegendItemBadgeShape", + "k": "enum", + "s": "enums" + } + ], + "LegendItemVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LegendItemVisualData", + "k": "class", + "s": "classes", + "m": { + "LegendItemVisualData()": "LegendItemVisualData()", + "LegendItemVisualData": "LegendItemVisualData()", + "Appearance": "Appearance", + "BadgeBounds": "BadgeBounds", + "Bounds": "Bounds", + "Label": "Label", + "LabelAppearance": "LabelAppearance", + "LabelBounds": "LabelBounds", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "LegendMouseButtonEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendMouseButtonEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LegendMouseButtonEventArgsDescription()": "LegendMouseButtonEventArgsDescription()", + "LegendMouseButtonEventArgsDescription": "LegendMouseButtonEventArgsDescription()", + "Handled": "Handled", + "ItemRef": "ItemRef", + "LegendItemRef": "LegendItemRef", + "Type": "Type" + } + } + ], + "LegendMouseButtonEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendMouseButtonEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendMouseButtonEventArgsDescriptionMetadata()": "LegendMouseButtonEventArgsDescriptionMetadata()", + "LegendMouseButtonEventArgsDescriptionMetadata": "LegendMouseButtonEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendMouseEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendMouseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LegendMouseEventArgsDescription()": "LegendMouseEventArgsDescription()", + "LegendMouseEventArgsDescription": "LegendMouseEventArgsDescription()", + "ItemRef": "ItemRef", + "LegendItemRef": "LegendItemRef", + "Type": "Type" + } + } + ], + "LegendMouseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendMouseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendMouseEventArgsDescriptionMetadata()": "LegendMouseEventArgsDescriptionMetadata()", + "LegendMouseEventArgsDescriptionMetadata": "LegendMouseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendOrientation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/LegendOrientation", + "k": "enum", + "s": "enums" + } + ], + "LegendSettings": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LegendSettings", + "k": "class", + "s": "classes", + "m": { + "LegendSettings()": "LegendSettings()", + "LegendSettings": "LegendSettings()", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "IsDirty": "IsDirty", + "IsHorizontal": "IsHorizontal", + "TextColor": "TextColor" + } + } + ], + "LegendTextContentChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendTextContentChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LegendTextContentChangedEventArgsDescription()": "LegendTextContentChangedEventArgsDescription()", + "LegendTextContentChangedEventArgsDescription": "LegendTextContentChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "LegendTextContentChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LegendTextContentChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendTextContentChangedEventArgsDescriptionMetadata()": "LegendTextContentChangedEventArgsDescriptionMetadata()", + "LegendTextContentChangedEventArgsDescriptionMetadata": "LegendTextContentChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LegendVisualData", + "k": "class", + "s": "classes", + "m": { + "LegendVisualData()": "LegendVisualData()", + "LegendVisualData": "LegendVisualData()", + "Height": "Height", + "Items": "Items", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "LegendVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LegendVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LegendVisualDataList()": "LegendVisualDataList()", + "LegendVisualDataList": "LegendVisualDataList()" + } + } + ], + "LevelOfDetailResponseModel": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/LevelOfDetailResponseModel", + "k": "class", + "s": "classes", + "m": { + "LevelOfDetailResponseModel()": "LevelOfDetailResponseModel()", + "LevelOfDetailResponseModel": "LevelOfDetailResponseModel()", + "Level": "Level", + "Resolution": "Resolution", + "Scale": "Scale" + } + } + ], + "LinearContourValueResolver": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LinearContourValueResolver", + "k": "class", + "s": "classes", + "m": { + "LinearContourValueResolver()": "LinearContourValueResolver()", + "LinearContourValueResolver": "LinearContourValueResolver()", + "ValueCount": "ValueCount" + } + } + ], + "LinearContourValueResolverDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearContourValueResolverDescription", + "k": "class", + "s": "classes", + "m": { + "LinearContourValueResolverDescription()": "LinearContourValueResolverDescription()", + "LinearContourValueResolverDescription": "LinearContourValueResolverDescription()", + "Type": "Type", + "ValueCount": "ValueCount" + } + } + ], + "LinearContourValueResolverDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearContourValueResolverDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LinearContourValueResolverDescriptionMetadata()": "LinearContourValueResolverDescriptionMetadata()", + "LinearContourValueResolverDescriptionMetadata": "LinearContourValueResolverDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearContourValueResolverDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearContourValueResolverDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearContourValueResolverDescriptionModule()": "LinearContourValueResolverDescriptionModule()", + "LinearContourValueResolverDescriptionModule": "LinearContourValueResolverDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGaugeCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeCoreDescriptionModule()": "LinearGaugeCoreDescriptionModule()", + "LinearGaugeCoreDescriptionModule": "LinearGaugeCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeDashboardTileDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGaugeDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDashboardTileDescriptionModule()": "LinearGaugeDashboardTileDescriptionModule()", + "LinearGaugeDashboardTileDescriptionModule": "LinearGaugeDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/LinearGaugeDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDashboardTileFeature()": "LinearGaugeDashboardTileFeature()", + "LinearGaugeDashboardTileFeature": "LinearGaugeDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "LinearGaugeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGaugeDescription", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDescription()": "LinearGaugeDescription()", + "LinearGaugeDescription": "LinearGaugeDescription()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AlignLabelRef": "AlignLabelRef", + "Background": "Background", + "BackingBrush": "BackingBrush", + "BackingInnerExtent": "BackingInnerExtent", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOutline": "BackingOutline", + "BackingStrokeThickness": "BackingStrokeThickness", + "Font": "Font", + "FontBrush": "FontBrush", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "Height": "Height", + "HighlightValue": "HighlightValue", + "HighlightValueChangedRef": "HighlightValueChangedRef", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueOpacity": "HighlightValueOpacity", + "Interval": "Interval", + "IsHighlightNeedleDraggingEnabled": "IsHighlightNeedleDraggingEnabled", + "IsNeedleDraggingEnabled": "IsNeedleDraggingEnabled", + "IsScaleInverted": "IsScaleInverted", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInterval": "LabelInterval", + "LabelsPostInitial": "LabelsPostInitial", + "LabelsPreTerminal": "LabelsPreTerminal", + "LabelsVisible": "LabelsVisible", + "MaximumValue": "MaximumValue", + "MergeViewports": "MergeViewports", + "MinimumValue": "MinimumValue", + "MinorTickBrush": "MinorTickBrush", + "MinorTickCount": "MinorTickCount", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "NeedleBreadth": "NeedleBreadth", + "NeedleBrush": "NeedleBrush", + "NeedleInnerBaseWidth": "NeedleInnerBaseWidth", + "NeedleInnerExtent": "NeedleInnerExtent", + "NeedleInnerPointExtent": "NeedleInnerPointExtent", + "NeedleInnerPointWidth": "NeedleInnerPointWidth", + "NeedleName": "NeedleName", + "NeedleOuterBaseWidth": "NeedleOuterBaseWidth", + "NeedleOuterExtent": "NeedleOuterExtent", + "NeedleOuterPointExtent": "NeedleOuterPointExtent", + "NeedleOuterPointWidth": "NeedleOuterPointWidth", + "NeedleOutline": "NeedleOutline", + "NeedleShape": "NeedleShape", + "NeedleStrokeThickness": "NeedleStrokeThickness", + "Orientation": "Orientation", + "PixelScalingRatio": "PixelScalingRatio", + "RangeBrushes": "RangeBrushes", + "RangeInnerExtent": "RangeInnerExtent", + "RangeOuterExtent": "RangeOuterExtent", + "RangeOutlines": "RangeOutlines", + "Ranges": "Ranges", + "ScaleBrush": "ScaleBrush", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleInnerExtent": "ScaleInnerExtent", + "ScaleOuterExtent": "ScaleOuterExtent", + "ScaleOutline": "ScaleOutline", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleStrokeThickness": "ScaleStrokeThickness", + "ShowToolTip": "ShowToolTip", + "ShowToolTipTimeout": "ShowToolTipTimeout", + "TickBrush": "TickBrush", + "TickEndExtent": "TickEndExtent", + "TickStartExtent": "TickStartExtent", + "TickStrokeThickness": "TickStrokeThickness", + "TicksPostInitial": "TicksPostInitial", + "TicksPreTerminal": "TicksPreTerminal", + "TransitionDuration": "TransitionDuration", + "TransitionProgress": "TransitionProgress", + "Type": "Type", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef", + "Width": "Width" + } + } + ], + "LinearGaugeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGaugeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDescriptionMetadata()": "LinearGaugeDescriptionMetadata()", + "LinearGaugeDescriptionMetadata": "LinearGaugeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGaugeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDescriptionModule()": "LinearGaugeDescriptionModule()", + "LinearGaugeDescriptionModule": "LinearGaugeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGaugeVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeVisualData()": "LinearGaugeVisualData()", + "LinearGaugeVisualData": "LinearGaugeVisualData()", + "HighlightNeedle": "HighlightNeedle", + "HighlightNeedlePath": "HighlightNeedlePath", + "Needle": "Needle", + "NeedlePath": "NeedlePath", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "LinearGradientBrush": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/LinearGradientBrush", + "k": "class", + "s": "classes", + "m": { + "LinearGradientBrush()": "LinearGradientBrush()", + "LinearGradientBrush": "LinearGradientBrush()", + "EndX": "EndX", + "EndY": "EndY", + "GradientStops": "GradientStops", + "StartX": "StartX", + "StartY": "StartY" + } + } + ], + "LinearGradientBrushAppearanceData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGradientBrushAppearanceData", + "k": "class", + "s": "classes", + "m": { + "LinearGradientBrushAppearanceData()": "LinearGradientBrushAppearanceData()", + "LinearGradientBrushAppearanceData": "LinearGradientBrushAppearanceData()", + "EndX": "EndX", + "EndY": "EndY", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "StartX": "StartX", + "StartY": "StartY", + "Stops": "Stops", + "Type": "Type" + } + } + ], + "LinearGraphNeedleShape": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/enums/LinearGraphNeedleShape", + "k": "enum", + "s": "enums" + } + ], + "LinearGraphRange": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphRange", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRange()": "LinearGraphRange()", + "LinearGraphRange": "LinearGraphRange()", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "EndInset": "EndInset", + "EndInsetProperty": "EndInsetProperty", + "EndValue": "EndValue", + "EndValueProperty": "EndValueProperty", + "InnerEndExtent": "InnerEndExtent", + "InnerEndExtentProperty": "InnerEndExtentProperty", + "InnerStartExtent": "InnerStartExtent", + "InnerStartExtentProperty": "InnerStartExtentProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OuterEndExtent": "OuterEndExtent", + "OuterEndExtentProperty": "OuterEndExtentProperty", + "OuterStartExtent": "OuterStartExtent", + "OuterStartExtentProperty": "OuterStartExtentProperty", + "Outline": "Outline", + "OutlineProperty": "OutlineProperty", + "StartInset": "StartInset", + "StartInsetProperty": "StartInsetProperty", + "StartValue": "StartValue", + "StartValueProperty": "StartValueProperty", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LinearGraphRangeCollection": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphRangeCollection", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeCollection()": "LinearGraphRangeCollection()", + "LinearGraphRangeCollection": "LinearGraphRangeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LinearGraphRangeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGraphRangeDescription", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeDescription()": "LinearGraphRangeDescription()", + "LinearGraphRangeDescription": "LinearGraphRangeDescription()", + "Brush": "Brush", + "EndInset": "EndInset", + "EndValue": "EndValue", + "InnerEndExtent": "InnerEndExtent", + "InnerStartExtent": "InnerStartExtent", + "OuterEndExtent": "OuterEndExtent", + "OuterStartExtent": "OuterStartExtent", + "Outline": "Outline", + "StartInset": "StartInset", + "StartValue": "StartValue", + "StrokeThickness": "StrokeThickness", + "Type": "Type" + } + } + ], + "LinearGraphRangeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGraphRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeDescriptionMetadata()": "LinearGraphRangeDescriptionMetadata()", + "LinearGraphRangeDescriptionMetadata": "LinearGraphRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGraphRangeDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LinearGraphRangeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeDescriptionModule()": "LinearGraphRangeDescriptionModule()", + "LinearGraphRangeDescriptionModule": "LinearGraphRangeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGraphRangeVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphRangeVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeVisualData()": "LinearGraphRangeVisualData()", + "LinearGraphRangeVisualData": "LinearGraphRangeVisualData()", + "RangePath": "RangePath", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type" + } + } + ], + "LinearGraphRangeVisualDataList": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphRangeVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeVisualDataList()": "LinearGraphRangeVisualDataList()", + "LinearGraphRangeVisualDataList": "LinearGraphRangeVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "LinearGraphScaleLabelVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphScaleLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphScaleLabelVisualData()": "LinearGraphScaleLabelVisualData()", + "LinearGraphScaleLabelVisualData": "LinearGraphScaleLabelVisualData()", + "Appearance": "Appearance", + "LabelPosition": "LabelPosition", + "LabelSize": "LabelSize", + "LabelValue": "LabelValue", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "LinearGraphScaleLabelVisualDataList": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphScaleLabelVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LinearGraphScaleLabelVisualDataList()": "LinearGraphScaleLabelVisualDataList()", + "LinearGraphScaleLabelVisualDataList": "LinearGraphScaleLabelVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "LinearGraphScaleTickmarkVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphScaleTickmarkVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphScaleTickmarkVisualData()": "LinearGraphScaleTickmarkVisualData()", + "LinearGraphScaleTickmarkVisualData": "LinearGraphScaleTickmarkVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TickPath": "TickPath" + } + } + ], + "LinearGraphScaleTickmarkVisualDataList": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphScaleTickmarkVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LinearGraphScaleTickmarkVisualDataList()": "LinearGraphScaleTickmarkVisualDataList()", + "LinearGraphScaleTickmarkVisualDataList": "LinearGraphScaleTickmarkVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "LinearGraphToolTipVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphToolTipVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphToolTipVisualData()": "LinearGraphToolTipVisualData()", + "LinearGraphToolTipVisualData": "LinearGraphToolTipVisualData()", + "Item": "Item", + "ItemBrush": "ItemBrush", + "Outline": "Outline", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Thickness": "Thickness" + } + } + ], + "LinearGraphVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearGraphVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphVisualData()": "LinearGraphVisualData()", + "LinearGraphVisualData": "LinearGraphVisualData()", + "BackingPath": "BackingPath", + "Name": "Name", + "OverlayPath": "OverlayPath", + "Ranges": "Ranges", + "Scale": "Scale", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleLabels": "ScaleLabels", + "ScalePath": "ScalePath", + "ScaleTickmarks": "ScaleTickmarks", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "ToolTip": "ToolTip", + "UnderlayPath": "UnderlayPath", + "Viewport": "Viewport" + } + } + ], + "LinearNeedleVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearNeedleVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearNeedleVisualData()": "LinearNeedleVisualData()", + "LinearNeedleVisualData": "LinearNeedleVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type", + "Value": "Value" + } + } + ], + "LinearNeedleVisualDataList": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearNeedleVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LinearNeedleVisualDataList()": "LinearNeedleVisualDataList()", + "LinearNeedleVisualDataList": "LinearNeedleVisualDataList()" + } + } + ], + "LinearScaleOrientation": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/enums/LinearScaleOrientation", + "k": "enum", + "s": "enums" + } + ], + "LinearScaleVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/LinearScaleVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearScaleVisualData()": "LinearScaleVisualData()", + "LinearScaleVisualData": "LinearScaleVisualData()" + } + } + ], + "LineFragmentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "LineFragmentDescription()": "LineFragmentDescription()", + "LineFragmentDescription": "LineFragmentDescription()", + "Type": "Type" + } + } + ], + "LineFragmentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LineFragmentDescriptionMetadata()": "LineFragmentDescriptionMetadata()", + "LineFragmentDescriptionMetadata": "LineFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LineFragmentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LineFragmentDescriptionModule()": "LineFragmentDescriptionModule()", + "LineFragmentDescriptionModule": "LineFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LineGeometryData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineGeometryData", + "k": "class", + "s": "classes", + "m": { + "LineGeometryData()": "LineGeometryData()", + "LineGeometryData": "LineGeometryData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "X1": "X1", + "X2": "X2", + "Y1": "Y1", + "Y2": "Y2" + } + } + ], + "LineSegmentData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineSegmentData", + "k": "class", + "s": "classes", + "m": { + "LineSegmentData()": "LineSegmentData()", + "LineSegmentData": "LineSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "Point": "Point", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "LineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/LineSeries", + "k": "class", + "s": "classes", + "m": { + "LineSeries()": "LineSeries()", + "LineSeries": "LineSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "LineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "LineSeriesDescription()": "LineSeriesDescription()", + "LineSeriesDescription": "LineSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "LineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LineSeriesDescriptionMetadata()": "LineSeriesDescriptionMetadata()", + "LineSeriesDescriptionMetadata": "LineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LineSeriesDescriptionModule()": "LineSeriesDescriptionModule()", + "LineSeriesDescriptionModule": "LineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LineVisualData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LineVisualData", + "k": "class", + "s": "classes", + "m": { + "LineVisualData()": "LineVisualData()", + "LineVisualData": "LineVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "X1": "X1", + "X2": "X2", + "Y1": "Y1", + "Y2": "Y2" + } + } + ], + "ListPanelActivationMode": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ListPanelActivationMode", + "k": "enum", + "s": "enums" + } + ], + "ListPanelActiveRowChangedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelActiveRowChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelActiveRowChangedEventArgs()": "ListPanelActiveRowChangedEventArgs()", + "ListPanelActiveRowChangedEventArgs": "ListPanelActiveRowChangedEventArgs()", + "NewActiveRow": "NewActiveRow", + "OldActiveRow": "OldActiveRow", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelActiveRowChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelActiveRowChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelActiveRowChangedEventArgsDescription()": "ListPanelActiveRowChangedEventArgsDescription()", + "ListPanelActiveRowChangedEventArgsDescription": "ListPanelActiveRowChangedEventArgsDescription()", + "NewActiveRow": "NewActiveRow", + "OldActiveRow": "OldActiveRow", + "Type": "Type" + } + } + ], + "ListPanelActiveRowChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelActiveRowChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelActiveRowChangedEventArgsDescriptionMetadata()": "ListPanelActiveRowChangedEventArgsDescriptionMetadata()", + "ListPanelActiveRowChangedEventArgsDescriptionMetadata": "ListPanelActiveRowChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelContentRebindEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelContentRebindEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRebindEventArgs()": "ListPanelContentRebindEventArgs()", + "ListPanelContentRebindEventArgs": "ListPanelContentRebindEventArgs()", + "RowObject": "RowObject", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelContentRebindEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelContentRebindEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRebindEventArgsDescription()": "ListPanelContentRebindEventArgsDescription()", + "ListPanelContentRebindEventArgsDescription": "ListPanelContentRebindEventArgsDescription()", + "RowObjectRef": "RowObjectRef", + "Type": "Type" + } + } + ], + "ListPanelContentRebindEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelContentRebindEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRebindEventArgsDescriptionMetadata()": "ListPanelContentRebindEventArgsDescriptionMetadata()", + "ListPanelContentRebindEventArgsDescriptionMetadata": "ListPanelContentRebindEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelContentRecycledEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelContentRecycledEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRecycledEventArgs()": "ListPanelContentRecycledEventArgs()", + "ListPanelContentRecycledEventArgs": "ListPanelContentRecycledEventArgs()", + "RowObject": "RowObject", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelContentRecycledEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelContentRecycledEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRecycledEventArgsDescription()": "ListPanelContentRecycledEventArgsDescription()", + "ListPanelContentRecycledEventArgsDescription": "ListPanelContentRecycledEventArgsDescription()", + "RowObjectRef": "RowObjectRef", + "Type": "Type" + } + } + ], + "ListPanelContentRecycledEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelContentRecycledEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRecycledEventArgsDescriptionMetadata()": "ListPanelContentRecycledEventArgsDescriptionMetadata()", + "ListPanelContentRecycledEventArgsDescriptionMetadata": "ListPanelContentRecycledEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelContentRefreshedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelContentRefreshedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRefreshedEventArgs()": "ListPanelContentRefreshedEventArgs()", + "ListPanelContentRefreshedEventArgs": "ListPanelContentRefreshedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelContentRefreshedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelContentRefreshedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRefreshedEventArgsDescription()": "ListPanelContentRefreshedEventArgsDescription()", + "ListPanelContentRefreshedEventArgsDescription": "ListPanelContentRefreshedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ListPanelContentRefreshedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelContentRefreshedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRefreshedEventArgsDescriptionMetadata()": "ListPanelContentRefreshedEventArgsDescriptionMetadata()", + "ListPanelContentRefreshedEventArgsDescriptionMetadata": "ListPanelContentRefreshedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelDescription()": "ListPanelDescription()", + "ListPanelDescription": "ListPanelDescription()", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationMode": "ActivationMode", + "ActiveRow": "ActiveRow", + "ActiveRowChangedRef": "ActiveRowChangedRef", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualPrimaryKeyChangeRef": "ActualPrimaryKeyChangeRef", + "ActualRowHeight": "ActualRowHeight", + "BackgroundColor": "BackgroundColor", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "ContentRefreshedRef": "ContentRefreshedRef", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "IsActiveRowStyleEnabled": "IsActiveRowStyleEnabled", + "IsCustomRowHeightEnabled": "IsCustomRowHeightEnabled", + "ItemClickedRef": "ItemClickedRef", + "ItemHeightRequestedRef": "ItemHeightRequestedRef", + "ItemRebindRef": "ItemRebindRef", + "ItemRecycledRef": "ItemRecycledRef", + "ItemSpacing": "ItemSpacing", + "ItemWidthRequestedRef": "ItemWidthRequestedRef", + "NormalBackground": "NormalBackground", + "NotifyOnAllSelectionChanges": "NotifyOnAllSelectionChanges", + "Orientation": "Orientation", + "PrimaryKey": "PrimaryKey", + "RowHeight": "RowHeight", + "RowUpdatingRef": "RowUpdatingRef", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarStyle": "ScrollbarStyle", + "SelectedBackground": "SelectedBackground", + "SelectedItems": "SelectedItems", + "SelectedItemsChangedRef": "SelectedItemsChangedRef", + "SelectedKeys": "SelectedKeys", + "SelectedKeysChangedRef": "SelectedKeysChangedRef", + "SelectionBehavior": "SelectionBehavior", + "SelectionChangedRef": "SelectionChangedRef", + "SelectionMode": "SelectionMode", + "TextColor": "TextColor", + "Type": "Type" + } + } + ], + "ListPanelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelDescriptionMetadata()": "ListPanelDescriptionMetadata()", + "ListPanelDescriptionMetadata": "ListPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ListPanelDescriptionModule()": "ListPanelDescriptionModule()", + "ListPanelDescriptionModule": "ListPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelItemEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelItemEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemEventArgs()": "ListPanelItemEventArgs()", + "ListPanelItemEventArgs": "ListPanelItemEventArgs()", + "IsDoubleClick": "IsDoubleClick", + "IsLeftButton": "IsLeftButton", + "ItemInfo": "ItemInfo", + "ListPanel": "ListPanel", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelItemEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelItemEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemEventArgsDescription()": "ListPanelItemEventArgsDescription()", + "ListPanelItemEventArgsDescription": "ListPanelItemEventArgsDescription()", + "IsDoubleClick": "IsDoubleClick", + "IsLeftButton": "IsLeftButton", + "ItemInfo": "ItemInfo", + "ListPanel": "ListPanel", + "Type": "Type" + } + } + ], + "ListPanelItemEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelItemEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemEventArgsDescriptionMetadata()": "ListPanelItemEventArgsDescriptionMetadata()", + "ListPanelItemEventArgsDescriptionMetadata": "ListPanelItemEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelItemModel": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelItemModel", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemModel()": "ListPanelItemModel()", + "ListPanelItemModel": "ListPanelItemModel()", + "DataRow": "DataRow", + "IsActivated": "IsActivated", + "IsActivationSupported": "IsActivationSupported", + "IsModelDirty": "IsModelDirty", + "IsSelected": "IsSelected", + "Left": "Left", + "RowHeight": "RowHeight", + "RowObject": "RowObject", + "Top": "Top", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelItemModelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelItemModelDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemModelDescription()": "ListPanelItemModelDescription()", + "ListPanelItemModelDescription": "ListPanelItemModelDescription()", + "DataRow": "DataRow", + "IsActivated": "IsActivated", + "IsActivationSupported": "IsActivationSupported", + "IsModelDirty": "IsModelDirty", + "IsSelected": "IsSelected", + "Left": "Left", + "RowHeight": "RowHeight", + "RowObjectRef": "RowObjectRef", + "Top": "Top", + "Type": "Type" + } + } + ], + "ListPanelItemModelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelItemModelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemModelDescriptionMetadata()": "ListPanelItemModelDescriptionMetadata()", + "ListPanelItemModelDescriptionMetadata": "ListPanelItemModelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelItemVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelItemVisualData", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemVisualData()": "ListPanelItemVisualData()", + "ListPanelItemVisualData": "ListPanelItemVisualData()", + "DataRow": "DataRow", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "Top": "Top", + "Width": "Width" + } + } + ], + "ListPanelOrientation": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ListPanelOrientation", + "k": "enum", + "s": "enums" + } + ], + "ListPanelPrimaryKeyValue": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelPrimaryKeyValue", + "k": "class", + "s": "classes", + "m": { + "ListPanelPrimaryKeyValue(object)": "ListPanelPrimaryKeyValue(object)", + "ListPanelPrimaryKeyValue": "ListPanelPrimaryKeyValue(object)", + "ListPanelPrimaryKeyValue(object[])": "ListPanelPrimaryKeyValue(object[])", + "ListPanelPrimaryKeyValue(string[], object[])": "ListPanelPrimaryKeyValue(string[], object[])", + "CreateIdentityKey(object)": "CreateIdentityKey(object)", + "CreateIdentityKey": "CreateIdentityKey(object)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Key": "Key", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelPrimaryKeyValueDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelPrimaryKeyValueDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelPrimaryKeyValueDescription()": "ListPanelPrimaryKeyValueDescription()", + "ListPanelPrimaryKeyValueDescription": "ListPanelPrimaryKeyValueDescription()", + "Key": "Key", + "Type": "Type", + "Value": "Value" + } + } + ], + "ListPanelPrimaryKeyValueDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelPrimaryKeyValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelPrimaryKeyValueDescriptionMetadata()": "ListPanelPrimaryKeyValueDescriptionMetadata()", + "ListPanelPrimaryKeyValueDescriptionMetadata": "ListPanelPrimaryKeyValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelPrimaryKeyValueDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelPrimaryKeyValueDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ListPanelPrimaryKeyValueDescriptionModule()": "ListPanelPrimaryKeyValueDescriptionModule()", + "ListPanelPrimaryKeyValueDescriptionModule": "ListPanelPrimaryKeyValueDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelSelectedItemsChangedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelSelectedItemsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedItemsChangedEventArgs()": "ListPanelSelectedItemsChangedEventArgs()", + "ListPanelSelectedItemsChangedEventArgs": "ListPanelSelectedItemsChangedEventArgs()", + "AddedItems": "AddedItems", + "CurrentItems": "CurrentItems", + "RemovedItems": "RemovedItems", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectedItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelSelectedItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedItemsChangedEventArgsDescription()": "ListPanelSelectedItemsChangedEventArgsDescription()", + "ListPanelSelectedItemsChangedEventArgsDescription": "ListPanelSelectedItemsChangedEventArgsDescription()", + "AddedItems": "AddedItems", + "CurrentItems": "CurrentItems", + "RemovedItems": "RemovedItems", + "Type": "Type" + } + } + ], + "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelSelectedItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata()": "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata()", + "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata": "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelSelectedItemsCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelSelectedItemsCollection", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedItemsCollection()": "ListPanelSelectedItemsCollection()", + "ListPanelSelectedItemsCollection": "ListPanelSelectedItemsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectedKeysChangedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelSelectedKeysChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedKeysChangedEventArgs()": "ListPanelSelectedKeysChangedEventArgs()", + "ListPanelSelectedKeysChangedEventArgs": "ListPanelSelectedKeysChangedEventArgs()", + "AddedKeys": "AddedKeys", + "CurrentKeys": "CurrentKeys", + "RemovedKeys": "RemovedKeys", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectedKeysChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelSelectedKeysChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedKeysChangedEventArgsDescription()": "ListPanelSelectedKeysChangedEventArgsDescription()", + "ListPanelSelectedKeysChangedEventArgsDescription": "ListPanelSelectedKeysChangedEventArgsDescription()", + "AddedKeys": "AddedKeys", + "CurrentKeys": "CurrentKeys", + "RemovedKeys": "RemovedKeys", + "Type": "Type" + } + } + ], + "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelSelectedKeysChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata()": "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata()", + "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata": "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelSelectedKeysCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelSelectedKeysCollection", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedKeysCollection()": "ListPanelSelectedKeysCollection()", + "ListPanelSelectedKeysCollection": "ListPanelSelectedKeysCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectionBehavior": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ListPanelSelectionBehavior", + "k": "enum", + "s": "enums" + } + ], + "ListPanelSelectionChangedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelSelectionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectionChangedEventArgs()": "ListPanelSelectionChangedEventArgs()", + "ListPanelSelectionChangedEventArgs": "ListPanelSelectionChangedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectionChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelSelectionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectionChangedEventArgsDescription()": "ListPanelSelectionChangedEventArgsDescription()", + "ListPanelSelectionChangedEventArgsDescription": "ListPanelSelectionChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ListPanelSelectionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelSelectionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectionChangedEventArgsDescriptionMetadata()": "ListPanelSelectionChangedEventArgsDescriptionMetadata()", + "ListPanelSelectionChangedEventArgsDescriptionMetadata": "ListPanelSelectionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelSelectionMode": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ListPanelSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "ListPanelTemplateHeightRequestedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelTemplateHeightRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateHeightRequestedEventArgs()": "ListPanelTemplateHeightRequestedEventArgs()", + "ListPanelTemplateHeightRequestedEventArgs": "ListPanelTemplateHeightRequestedEventArgs()", + "DataItem": "DataItem", + "DataRow": "DataRow", + "Height": "Height", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelTemplateHeightRequestedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelTemplateHeightRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateHeightRequestedEventArgsDescription()": "ListPanelTemplateHeightRequestedEventArgsDescription()", + "ListPanelTemplateHeightRequestedEventArgsDescription": "ListPanelTemplateHeightRequestedEventArgsDescription()", + "DataItemRef": "DataItemRef", + "DataRow": "DataRow", + "Height": "Height", + "Type": "Type" + } + } + ], + "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata()": "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata()", + "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata": "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelTemplateItemUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelTemplateItemUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateItemUpdatingEventArgs()": "ListPanelTemplateItemUpdatingEventArgs()", + "ListPanelTemplateItemUpdatingEventArgs": "ListPanelTemplateItemUpdatingEventArgs()", + "AvailableWidth": "AvailableWidth", + "Content": "Content", + "Model": "Model", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelTemplateItemUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelTemplateItemUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateItemUpdatingEventArgsDescription()": "ListPanelTemplateItemUpdatingEventArgsDescription()", + "ListPanelTemplateItemUpdatingEventArgsDescription": "ListPanelTemplateItemUpdatingEventArgsDescription()", + "AvailableWidth": "AvailableWidth", + "ContentRef": "ContentRef", + "Model": "Model", + "Type": "Type" + } + } + ], + "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata()": "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata()", + "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata": "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelTemplateWidthRequestedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelTemplateWidthRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateWidthRequestedEventArgs()": "ListPanelTemplateWidthRequestedEventArgs()", + "ListPanelTemplateWidthRequestedEventArgs": "ListPanelTemplateWidthRequestedEventArgs()", + "DataItem": "DataItem", + "DataRow": "DataRow", + "Width": "Width", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelTemplateWidthRequestedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelTemplateWidthRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateWidthRequestedEventArgsDescription()": "ListPanelTemplateWidthRequestedEventArgsDescription()", + "ListPanelTemplateWidthRequestedEventArgsDescription": "ListPanelTemplateWidthRequestedEventArgsDescription()", + "DataItemRef": "DataItemRef", + "DataRow": "DataRow", + "Type": "Type", + "Width": "Width" + } + } + ], + "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata()": "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata()", + "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata": "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ListPanelVisualData", + "k": "class", + "s": "classes", + "m": { + "ListPanelVisualData()": "ListPanelVisualData()", + "ListPanelVisualData": "ListPanelVisualData()", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "VisibleItems": "VisibleItems", + "Width": "Width" + } + } + ], + "ListSortDirection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ListSortDirection", + "k": "enum", + "s": "enums" + } + ], + "LiteralFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LiteralFilterExpression", + "k": "class", + "s": "classes", + "m": { + "LiteralFilterExpression()": "LiteralFilterExpression()", + "LiteralFilterExpression": "LiteralFilterExpression()", + "LiteralFilterExpression(object)": "LiteralFilterExpression(object)", + "LiteralFilterExpression(string, bool)": "LiteralFilterExpression(string, bool)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "IsLiteral": "IsLiteral", + "IsNull": "IsNull", + "LeaveUnquoted": "LeaveUnquoted", + "LiteralValue": "LiteralValue", + "Precedence": "Precedence", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()" + } + } + ], + "LiteralFilterExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LiteralFilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LiteralFilterExpressionDescription()": "LiteralFilterExpressionDescription()", + "LiteralFilterExpressionDescription": "LiteralFilterExpressionDescription()", + "LeaveUnquoted": "LeaveUnquoted", + "LiteralValue": "LiteralValue", + "Type": "Type" + } + } + ], + "LiteralFilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LiteralFilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LiteralFilterExpressionDescriptionMetadata()": "LiteralFilterExpressionDescriptionMetadata()", + "LiteralFilterExpressionDescriptionMetadata": "LiteralFilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LiteralStringAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/LiteralStringAttribute", + "k": "class", + "s": "classes", + "m": { + "LiteralStringAttribute()": "LiteralStringAttribute()", + "LiteralStringAttribute": "LiteralStringAttribute()" + } + } + ], + "LocalDataSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LocalDataSource", + "k": "class", + "s": "classes", + "m": { + "LocalDataSource()": "LocalDataSource()", + "LocalDataSource": "LocalDataSource()", + "ActualDataProvider": "ActualDataProvider", + "Clone()": "Clone()", + "Clone": "Clone()", + "DataProvider": "DataProvider", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "ItemsSource": "ItemsSource", + "ResolveDataProvider()": "ResolveDataProvider()", + "ResolveDataProvider": "ResolveDataProvider()" + } + } + ], + "LocalDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LocalDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "LocalDataSourceDescription()": "LocalDataSourceDescription()", + "LocalDataSourceDescription": "LocalDataSourceDescription()", + "DataSourceRef": "DataSourceRef", + "Type": "Type" + } + } + ], + "LocalDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LocalDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LocalDataSourceDescriptionMetadata()": "LocalDataSourceDescriptionMetadata()", + "LocalDataSourceDescriptionMetadata": "LocalDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LocalDataSourceDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LocalDataSourceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LocalDataSourceDescriptionModule()": "LocalDataSourceDescriptionModule()", + "LocalDataSourceDescriptionModule": "LocalDataSourceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LostFocusEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/LostFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "LostFocusEventArgs()": "LostFocusEventArgs()", + "LostFocusEventArgs": "LostFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LostFocusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LostFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LostFocusEventArgsDescription()": "LostFocusEventArgsDescription()", + "LostFocusEventArgsDescription": "LostFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "LostFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/LostFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LostFocusEventArgsDescriptionMetadata()": "LostFocusEventArgsDescriptionMetadata()", + "LostFocusEventArgsDescriptionMetadata": "LostFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MapBackgroundTilingMode": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/enums/MapBackgroundTilingMode", + "k": "enum", + "s": "enums" + } + ], + "MapResizeBehavior": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/enums/MapResizeBehavior", + "k": "enum", + "s": "enums" + } + ], + "MapServerResponseModel": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/MapServerResponseModel", + "k": "class", + "s": "classes", + "m": { + "MapServerResponseModel()": "MapServerResponseModel()", + "MapServerResponseModel": "MapServerResponseModel()", + "Name": "Name", + "TileInfo": "TileInfo" + } + } + ], + "MapTileSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MapTileSource", + "k": "class", + "s": "classes", + "m": { + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MarkerAutomaticBehavior": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/MarkerAutomaticBehavior", + "k": "enum", + "s": "enums" + } + ], + "MarkerFillMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/MarkerFillMode", + "k": "enum", + "s": "enums" + } + ], + "MarkerOutlineMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/MarkerOutlineMode", + "k": "enum", + "s": "enums" + } + ], + "MarkerSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MarkerSeries", + "k": "class", + "s": "classes", + "m": { + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "ActualMarkerType": "ActualMarkerType", + "ActualMarkerTypeProperty": "ActualMarkerTypeProperty", + "EffectiveIsMarkerCircular": "EffectiveIsMarkerCircular", + "EffectiveIsMarkerCircularProperty": "EffectiveIsMarkerCircularProperty", + "IsCustomMarkerCircular": "IsCustomMarkerCircular", + "IsCustomMarkerCircularProperty": "IsCustomMarkerCircularProperty", + "LegendItemBadgeMarkerSizeScaling": "LegendItemBadgeMarkerSizeScaling", + "LegendItemBadgeMarkerSizeScalingProperty": "LegendItemBadgeMarkerSizeScalingProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerSize": "MarkerSize", + "MarkerSizeProperty": "MarkerSizeProperty", + "MarkerTemplate": "MarkerTemplate", + "MarkerTemplateProperty": "MarkerTemplateProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty" + } + } + ], + "MarkerSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MarkerSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "MarkerSeriesDescription()": "MarkerSeriesDescription()", + "MarkerSeriesDescription": "MarkerSeriesDescription()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "ActualMarkerType": "ActualMarkerType", + "IsCustomMarkerCircular": "IsCustomMarkerCircular", + "LegendItemBadgeMarkerSizeScaling": "LegendItemBadgeMarkerSizeScaling", + "MarkerBrush": "MarkerBrush", + "MarkerFillMode": "MarkerFillMode", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerSize": "MarkerSize", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "Type": "Type" + } + } + ], + "MarkerSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MarkerSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MarkerSeriesDescriptionMetadata()": "MarkerSeriesDescriptionMetadata()", + "MarkerSeriesDescriptionMetadata": "MarkerSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MarkerType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/MarkerType", + "k": "enum", + "s": "enums" + } + ], + "MarkerTypeCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MarkerTypeCollection", + "k": "class", + "s": "classes", + "m": { + "MarkerTypeCollection()": "MarkerTypeCollection()", + "MarkerTypeCollection": "MarkerTypeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MarkerTypeCollectionHelper": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MarkerTypeCollectionHelper", + "k": "class", + "s": "classes", + "m": { + "MarkerTypeCollectionHelper()": "MarkerTypeCollectionHelper()", + "MarkerTypeCollectionHelper": "MarkerTypeCollectionHelper()", + "CreateFromString(string)": "CreateFromString(string)", + "CreateFromString": "CreateFromString(string)" + } + } + ], + "MarkerVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MarkerVisualData", + "k": "class", + "s": "classes", + "m": { + "MarkerVisualData()": "MarkerVisualData()", + "MarkerVisualData": "MarkerVisualData()", + "Bounds": "Bounds", + "ContentTemplate": "ContentTemplate", + "Index": "Index", + "IsVisible": "IsVisible", + "MarkerAppearance": "MarkerAppearance", + "MarkerType": "MarkerType", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "X": "X", + "Y": "Y" + } + } + ], + "MarkerVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MarkerVisualDataList", + "k": "class", + "s": "classes", + "m": { + "MarkerVisualDataList()": "MarkerVisualDataList()", + "MarkerVisualDataList": "MarkerVisualDataList()" + } + } + ], + "MarketFacilitationIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MarketFacilitationIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "MarketFacilitationIndexIndicator()": "MarketFacilitationIndexIndicator()", + "MarketFacilitationIndexIndicator": "MarketFacilitationIndexIndicator()" + } + } + ], + "MarketFacilitationIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MarketFacilitationIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MarketFacilitationIndexIndicatorDescription()": "MarketFacilitationIndexIndicatorDescription()", + "MarketFacilitationIndexIndicatorDescription": "MarketFacilitationIndexIndicatorDescription()", + "Type": "Type" + } + } + ], + "MarketFacilitationIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MarketFacilitationIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MarketFacilitationIndexIndicatorDescriptionMetadata()": "MarketFacilitationIndexIndicatorDescriptionMetadata()", + "MarketFacilitationIndexIndicatorDescriptionMetadata": "MarketFacilitationIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MarketFacilitationIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MarketFacilitationIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MarketFacilitationIndexIndicatorDescriptionModule()": "MarketFacilitationIndexIndicatorDescriptionModule()", + "MarketFacilitationIndexIndicatorDescriptionModule": "MarketFacilitationIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MassIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MassIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "MassIndexIndicator()": "MassIndexIndicator()", + "MassIndexIndicator": "MassIndexIndicator()" + } + } + ], + "MassIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MassIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MassIndexIndicatorDescription()": "MassIndexIndicatorDescription()", + "MassIndexIndicatorDescription": "MassIndexIndicatorDescription()", + "Type": "Type" + } + } + ], + "MassIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MassIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MassIndexIndicatorDescriptionMetadata()": "MassIndexIndicatorDescriptionMetadata()", + "MassIndexIndicatorDescriptionMetadata": "MassIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MassIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MassIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MassIndexIndicatorDescriptionModule()": "MassIndexIndicatorDescriptionModule()", + "MassIndexIndicatorDescriptionModule": "MassIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MathUtil": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MathUtil", + "k": "class", + "s": "classes", + "m": { + "Asinh(double)": "Asinh(double)", + "Asinh": "Asinh(double)", + "AverageArray(double[])": "AverageArray(double[])", + "AverageArray": "AverageArray(double[])", + "Clamp(double, double, double)": "Clamp(double, double, double)", + "Clamp": "Clamp(double, double, double)", + "CloseEnough(double, double)": "CloseEnough(double, double)", + "CloseEnough": "CloseEnough(double, double)", + "DegreeAsRadian": "DegreeAsRadian", + "Degrees(double)": "Degrees(double)", + "Degrees": "Degrees(double)", + "Hypot(double, double)": "Hypot(double, double)", + "Hypot": "Hypot(double, double)", + "IsPlotable(double)": "IsPlotable(double)", + "IsPlotable": "IsPlotable(double)", + "Max(params double[])": "Max(params double[])", + "Max": "Max(params double[])", + "Max3(double, double, double)": "Max3(double, double, double)", + "Max3": "Max3(double, double, double)", + "MaxArray(double[])": "MaxArray(double[])", + "MaxArray": "MaxArray(double[])", + "Min(params double[])": "Min(params double[])", + "Min": "Min(params double[])", + "Min3(double, double, double)": "Min3(double, double, double)", + "Min3": "Min3(double, double, double)", + "MinArray(double[])": "MinArray(double[])", + "MinArray": "MinArray(double[])", + "NumberToMinDecimalsString(double)": "NumberToMinDecimalsString(double)", + "NumberToMinDecimalsString": "NumberToMinDecimalsString(double)", + "PHI": "PHI", + "Radians(double)": "Radians(double)", + "Radians": "Radians(double)", + "SQRT2": "SQRT2", + "Sqr(double)": "Sqr(double)", + "Sqr": "Sqr(double)", + "SumArray(double[])": "SumArray(double[])", + "SumArray": "SumArray(double[])" + } + } + ], + "MathUtilExtended": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MathUtilExtended", + "k": "class", + "s": "classes", + "m": { + "GammaLn(double)": "GammaLn(double)", + "GammaLn": "GammaLn(double)", + "NiceCeiling(double)": "NiceCeiling(double)", + "NiceCeiling": "NiceCeiling(double)", + "NiceFloor(double)": "NiceFloor(double)", + "NiceFloor": "NiceFloor(double)", + "NiceRound(double)": "NiceRound(double)", + "NiceRound": "NiceRound(double)", + "Noise(double, double, double)": "Noise(double, double, double)", + "Noise": "Noise(double, double, double)" + } + } + ], + "MaxSummaryCalculator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MaxSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "MaxSummaryCalculator()": "MaxSummaryCalculator()", + "MaxSummaryCalculator": "MaxSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "MedianPriceIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MedianPriceIndicator", + "k": "class", + "s": "classes", + "m": { + "MedianPriceIndicator()": "MedianPriceIndicator()", + "MedianPriceIndicator": "MedianPriceIndicator()" + } + } + ], + "MedianPriceIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MedianPriceIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MedianPriceIndicatorDescription()": "MedianPriceIndicatorDescription()", + "MedianPriceIndicatorDescription": "MedianPriceIndicatorDescription()", + "Type": "Type" + } + } + ], + "MedianPriceIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MedianPriceIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MedianPriceIndicatorDescriptionMetadata()": "MedianPriceIndicatorDescriptionMetadata()", + "MedianPriceIndicatorDescriptionMetadata": "MedianPriceIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MedianPriceIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MedianPriceIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MedianPriceIndicatorDescriptionModule()": "MedianPriceIndicatorDescriptionModule()", + "MedianPriceIndicatorDescriptionModule": "MedianPriceIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MergedCellEvaluationCriteria": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/MergedCellEvaluationCriteria", + "k": "enum", + "s": "enums" + } + ], + "MergedCellMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/MergedCellMode", + "k": "enum", + "s": "enums" + } + ], + "MinSummaryCalculator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MinSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "MinSummaryCalculator()": "MinSummaryCalculator()", + "MinSummaryCalculator": "MinSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "MockComparer": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/MockComparer", + "k": "class", + "s": "classes", + "m": { + "MockComparer(SortDescriptionCollection)": "MockComparer(SortDescriptionCollection)", + "MockComparer": "MockComparer(SortDescriptionCollection)", + "Compare(object, object)": "Compare(object, object)", + "Compare": "Compare(object, object)" + } + } + ], + "MockDataItem": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/MockDataItem", + "k": "class", + "s": "classes", + "m": { + "MockDataItem(string, int, DateTime)": "MockDataItem(string, int, DateTime)", + "MockDataItem": "MockDataItem(string, int, DateTime)", + "Key": "Key", + "Mock2": "Mock2", + "Mock3": "Mock3" + } + } + ], + "MockRowItem": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/MockRowItem", + "k": "class", + "s": "classes", + "m": { + "MockRowItem()": "MockRowItem()", + "MockRowItem": "MockRowItem()", + "Values": "Values", + "canPush": "canPush", + "dataItem": "dataItem", + "pinnedPriorty": "pinnedPriorty", + "rowType": "rowType" + } + } + ], + "MockView": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/MockView", + "k": "class", + "s": "classes", + "m": { + "MockView()": "MockView()", + "MockView": "MockView()", + "MockData": "MockData" + } + } + ], + "MoneyFlowIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MoneyFlowIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "MoneyFlowIndexIndicator()": "MoneyFlowIndexIndicator()", + "MoneyFlowIndexIndicator": "MoneyFlowIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "MoneyFlowIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MoneyFlowIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MoneyFlowIndexIndicatorDescription()": "MoneyFlowIndexIndicatorDescription()", + "MoneyFlowIndexIndicatorDescription": "MoneyFlowIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "MoneyFlowIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MoneyFlowIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MoneyFlowIndexIndicatorDescriptionMetadata()": "MoneyFlowIndexIndicatorDescriptionMetadata()", + "MoneyFlowIndexIndicatorDescriptionMetadata": "MoneyFlowIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MoneyFlowIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MoneyFlowIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MoneyFlowIndexIndicatorDescriptionModule()": "MoneyFlowIndexIndicatorDescriptionModule()", + "MoneyFlowIndexIndicatorDescriptionModule": "MoneyFlowIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MonthToDateExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MonthToDateExpression", + "k": "class", + "s": "classes", + "m": { + "MonthToDateExpression(FilterExpression)": "MonthToDateExpression(FilterExpression)", + "MonthToDateExpression": "MonthToDateExpression(FilterExpression)", + "MonthToDateExpression(string)": "MonthToDateExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "MonthToDateExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MonthToDateExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "MonthToDateExpressionDescription()": "MonthToDateExpressionDescription()", + "MonthToDateExpressionDescription": "MonthToDateExpressionDescription()", + "Type": "Type" + } + } + ], + "MonthToDateExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MonthToDateExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MonthToDateExpressionDescriptionMetadata()": "MonthToDateExpressionDescriptionMetadata()", + "MonthToDateExpressionDescriptionMetadata": "MonthToDateExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MouseButton": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/MouseButton", + "k": "enum", + "s": "enums" + } + ], + "MouseButtonEventArgs": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/MouseButtonEventArgs", + "k": "class", + "s": "classes", + "m": { + "MouseButtonEventArgs()": "MouseButtonEventArgs()", + "MouseButtonEventArgs": "MouseButtonEventArgs()", + "Handled": "Handled" + } + } + ], + "MouseEventArgs": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/MouseEventArgs", + "k": "class", + "s": "classes", + "m": { + "MouseEventArgs()": "MouseEventArgs()", + "MouseEventArgs": "MouseEventArgs()", + "GetPosition(object)": "GetPosition(object)", + "GetPosition": "GetPosition(object)", + "OriginalSource": "OriginalSource", + "Position": "Position" + } + } + ], + "MovingAverageConvergenceDivergenceIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/MovingAverageConvergenceDivergenceIndicator", + "k": "class", + "s": "classes", + "m": { + "MovingAverageConvergenceDivergenceIndicator()": "MovingAverageConvergenceDivergenceIndicator()", + "MovingAverageConvergenceDivergenceIndicator": "MovingAverageConvergenceDivergenceIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty", + "SignalPeriod": "SignalPeriod", + "SignalPeriodProperty": "SignalPeriodProperty" + } + } + ], + "MovingAverageConvergenceDivergenceIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MovingAverageConvergenceDivergenceIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MovingAverageConvergenceDivergenceIndicatorDescription()": "MovingAverageConvergenceDivergenceIndicatorDescription()", + "MovingAverageConvergenceDivergenceIndicatorDescription": "MovingAverageConvergenceDivergenceIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "SignalPeriod": "SignalPeriod", + "Type": "Type" + } + } + ], + "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata()": "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata()", + "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata": "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MovingAverageConvergenceDivergenceIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MovingAverageConvergenceDivergenceIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MovingAverageConvergenceDivergenceIndicatorDescriptionModule()": "MovingAverageConvergenceDivergenceIndicatorDescriptionModule()", + "MovingAverageConvergenceDivergenceIndicatorDescriptionModule": "MovingAverageConvergenceDivergenceIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboBoxDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiColumnComboBoxDescription", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxDescription()": "MultiColumnComboBoxDescription()", + "MultiColumnComboBoxDescription": "MultiColumnComboBoxDescription()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBaseTheme": "ActualBaseTheme", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualDensity": "ActualDensity", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelVisible": "ActualLabelVisible", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualTextColor": "ActualTextColor", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualValueField": "ActualValueField", + "AllowFilter": "AllowFilter", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderColor": "BorderColor", + "BorderWidth": "BorderWidth", + "ChangeRef": "ChangeRef", + "ChangingRef": "ChangingRef", + "ColumnHeadersVisible": "ColumnHeadersVisible", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceRef": "DataSourceRef", + "DefaultColumnWidth": "DefaultColumnWidth", + "Density": "Density", + "DropDownButtonVisible": "DropDownButtonVisible", + "Fields": "Fields", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderWidth": "FocusBorderWidth", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "GotFocusRef": "GotFocusRef", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "IsFixed": "IsFixed", + "KeyDownRef": "KeyDownRef", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelTextColor": "LabelTextColor", + "LostFocusRef": "LostFocusRef", + "NoMatchesFoundLabel": "NoMatchesFoundLabel", + "NoMatchesFoundLabelBackgroundColor": "NoMatchesFoundLabelBackgroundColor", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "NoMatchesFoundLabelTextColor": "NoMatchesFoundLabelTextColor", + "OpenAsChild": "OpenAsChild", + "Placeholder": "Placeholder", + "RowSeparatorsVisible": "RowSeparatorsVisible", + "SelectedValueChangedRef": "SelectedValueChangedRef", + "ShowClearButton": "ShowClearButton", + "SortMode": "SortMode", + "Text": "Text", + "TextChangeRef": "TextChangeRef", + "TextColor": "TextColor", + "TextField": "TextField", + "TextValueChangedRef": "TextValueChangedRef", + "Type": "Type", + "UnderlineColor": "UnderlineColor", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineWidth": "UnderlineWidth", + "UseTopLayer": "UseTopLayer", + "Value": "Value", + "ValueChangeRef": "ValueChangeRef", + "ValueField": "ValueField" + } + } + ], + "MultiColumnComboBoxDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiColumnComboBoxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxDescriptionMetadata()": "MultiColumnComboBoxDescriptionMetadata()", + "MultiColumnComboBoxDescriptionMetadata": "MultiColumnComboBoxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboBoxDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiColumnComboBoxDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxDescriptionModule()": "MultiColumnComboBoxDescriptionModule()", + "MultiColumnComboBoxDescriptionModule": "MultiColumnComboBoxDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboBoxSelectedItemChangeType": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/MultiColumnComboBoxSelectedItemChangeType", + "k": "enum", + "s": "enums" + } + ], + "MultiColumnComboBoxTextChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/MultiColumnComboBoxTextChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxTextChangedEventArgs(string, string)": "MultiColumnComboBoxTextChangedEventArgs(string, string)", + "MultiColumnComboBoxTextChangedEventArgs": "MultiColumnComboBoxTextChangedEventArgs(string, string)", + "NewText": "NewText", + "OldText": "OldText", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiColumnComboBoxTextChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiColumnComboBoxTextChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxTextChangedEventArgsDescription()": "MultiColumnComboBoxTextChangedEventArgsDescription()", + "MultiColumnComboBoxTextChangedEventArgsDescription": "MultiColumnComboBoxTextChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata()": "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata()", + "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata": "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboBoxValueChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/MultiColumnComboBoxValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxValueChangedEventArgs(object, object)": "MultiColumnComboBoxValueChangedEventArgs(object, object)", + "MultiColumnComboBoxValueChangedEventArgs": "MultiColumnComboBoxValueChangedEventArgs(object, object)", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiColumnComboBoxValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiColumnComboBoxValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxValueChangedEventArgsDescription()": "MultiColumnComboBoxValueChangedEventArgsDescription()", + "MultiColumnComboBoxValueChangedEventArgsDescription": "MultiColumnComboBoxValueChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata()": "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata()", + "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata": "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboVisualModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/MultiColumnComboVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboVisualModelExport()": "MultiColumnComboVisualModelExport()", + "MultiColumnComboVisualModelExport": "MultiColumnComboVisualModelExport()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPadding": "ActualContentPadding", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelVisible": "ActualLabelVisible", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualTextColor": "ActualTextColor", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ColumnHeadersVisible": "ColumnHeadersVisible", + "DropDownButtonVisible": "DropDownButtonVisible", + "Grid": "Grid", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStretch": "LabelFontStretch", + "LabelFontStyle": "LabelFontStyle", + "LabelFontVariant": "LabelFontVariant", + "LabelFontWeight": "LabelFontWeight", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontStretch": "NoMatchesFoundLabelFontStretch", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontVariant": "NoMatchesFoundLabelFontVariant", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "Placeholder": "Placeholder", + "RowSeparatorsVisible": "RowSeparatorsVisible", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Value": "Value" + } + } + ], + "MultiSliderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderDescription()": "MultiSliderDescription()", + "MultiSliderDescription": "MultiSliderDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AreThumbCalloutsEnabled": "AreThumbCalloutsEnabled", + "BarBrush": "BarBrush", + "BarExtent": "BarExtent", + "BarOutline": "BarOutline", + "BarStrokeThickness": "BarStrokeThickness", + "CalloutBrush": "CalloutBrush", + "CalloutOutline": "CalloutOutline", + "CalloutStrokeThickness": "CalloutStrokeThickness", + "CalloutTextColor": "CalloutTextColor", + "EndInset": "EndInset", + "Max": "Max", + "Min": "Min", + "Orientation": "Orientation", + "PixelScalingRatio": "PixelScalingRatio", + "RangeThumbBrush": "RangeThumbBrush", + "RangeThumbOutline": "RangeThumbOutline", + "RangeThumbRidgesBrush": "RangeThumbRidgesBrush", + "RangeThumbStrokeThickness": "RangeThumbStrokeThickness", + "ResolvingToolTipValueRef": "ResolvingToolTipValueRef", + "StartInset": "StartInset", + "Step": "Step", + "ThumbBrush": "ThumbBrush", + "ThumbCalloutFontFamily": "ThumbCalloutFontFamily", + "ThumbCalloutFontSize": "ThumbCalloutFontSize", + "ThumbCalloutFontStyle": "ThumbCalloutFontStyle", + "ThumbCalloutFontWeight": "ThumbCalloutFontWeight", + "ThumbHeight": "ThumbHeight", + "ThumbOutline": "ThumbOutline", + "ThumbRidgesBrush": "ThumbRidgesBrush", + "ThumbStrokeThickness": "ThumbStrokeThickness", + "ThumbValueChangedRef": "ThumbValueChangedRef", + "ThumbValueChangingRef": "ThumbValueChangingRef", + "ThumbWidth": "ThumbWidth", + "Thumbs": "Thumbs", + "TrackEndInset": "TrackEndInset", + "TrackStartInset": "TrackStartInset", + "Type": "Type", + "WindowRect": "WindowRect", + "YMax": "YMax", + "YMin": "YMin", + "YStep": "YStep", + "YTrackEndInset": "YTrackEndInset", + "YTrackStartInset": "YTrackStartInset", + "YValue": "YValue", + "YValueChangedRef": "YValueChangedRef", + "YValueChangingRef": "YValueChangingRef" + } + } + ], + "MultiSliderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderDescriptionMetadata()": "MultiSliderDescriptionMetadata()", + "MultiSliderDescriptionMetadata": "MultiSliderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MultiSliderDescriptionModule()": "MultiSliderDescriptionModule()", + "MultiSliderDescriptionModule": "MultiSliderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderOrientation": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/MultiSliderOrientation", + "k": "enum", + "s": "enums" + } + ], + "MultiSliderResolvingToolTipValueEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/MultiSliderResolvingToolTipValueEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiSliderResolvingToolTipValueEventArgs()": "MultiSliderResolvingToolTipValueEventArgs()", + "MultiSliderResolvingToolTipValueEventArgs": "MultiSliderResolvingToolTipValueEventArgs()", + "Position": "Position", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderResolvingToolTipValueEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderResolvingToolTipValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderResolvingToolTipValueEventArgsDescription()": "MultiSliderResolvingToolTipValueEventArgsDescription()", + "MultiSliderResolvingToolTipValueEventArgsDescription": "MultiSliderResolvingToolTipValueEventArgsDescription()", + "Position": "Position", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata()": "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata()", + "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata": "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderThumb": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/MultiSliderThumb", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumb()": "MultiSliderThumb()", + "MultiSliderThumb": "MultiSliderThumb()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "Push(double)": "Push(double)", + "Push": "Push(double)", + "Range": "Range", + "RangePosition": "RangePosition", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderThumbCollection": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/MultiSliderThumbCollection", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbCollection()": "MultiSliderThumbCollection()", + "MultiSliderThumbCollection": "MultiSliderThumbCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderThumbDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderThumbDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbDescription()": "MultiSliderThumbDescription()", + "MultiSliderThumbDescription": "MultiSliderThumbDescription()", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "RangePosition": "RangePosition", + "RangeRef": "RangeRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "MultiSliderThumbDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderThumbDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbDescriptionMetadata()": "MultiSliderThumbDescriptionMetadata()", + "MultiSliderThumbDescriptionMetadata": "MultiSliderThumbDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderThumbDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderThumbDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbDescriptionModule()": "MultiSliderThumbDescriptionModule()", + "MultiSliderThumbDescriptionModule": "MultiSliderThumbDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderThumbRangePosition": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/MultiSliderThumbRangePosition", + "k": "enum", + "s": "enums" + } + ], + "MultiSliderThumbValueChangingEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/MultiSliderThumbValueChangingEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbValueChangingEventArgs()": "MultiSliderThumbValueChangingEventArgs()", + "MultiSliderThumbValueChangingEventArgs": "MultiSliderThumbValueChangingEventArgs()", + "Thumb": "Thumb", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderThumbValueChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderThumbValueChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbValueChangingEventArgsDescription()": "MultiSliderThumbValueChangingEventArgsDescription()", + "MultiSliderThumbValueChangingEventArgsDescription": "MultiSliderThumbValueChangingEventArgsDescription()", + "Thumb": "Thumb", + "Type": "Type", + "Value": "Value" + } + } + ], + "MultiSliderThumbValueChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderThumbValueChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbValueChangingEventArgsDescriptionMetadata()": "MultiSliderThumbValueChangingEventArgsDescriptionMetadata()", + "MultiSliderThumbValueChangingEventArgsDescriptionMetadata": "MultiSliderThumbValueChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderTrackThumbRange": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/MultiSliderTrackThumbRange", + "k": "class", + "s": "classes", + "m": { + "MultiSliderTrackThumbRange()": "MultiSliderTrackThumbRange()", + "MultiSliderTrackThumbRange": "MultiSliderTrackThumbRange()", + "HigherThumb": "HigherThumb", + "LowerThumb": "LowerThumb", + "MaxWidth": "MaxWidth", + "MinWidth": "MinWidth", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Position": "Position", + "Width": "Width", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderTrackThumbRangeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderTrackThumbRangeDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderTrackThumbRangeDescription()": "MultiSliderTrackThumbRangeDescription()", + "MultiSliderTrackThumbRangeDescription": "MultiSliderTrackThumbRangeDescription()", + "HigherThumb": "HigherThumb", + "LowerThumb": "LowerThumb", + "MaxWidth": "MaxWidth", + "MinWidth": "MinWidth", + "Position": "Position", + "Type": "Type", + "Width": "Width" + } + } + ], + "MultiSliderTrackThumbRangeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderTrackThumbRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderTrackThumbRangeDescriptionMetadata()": "MultiSliderTrackThumbRangeDescriptionMetadata()", + "MultiSliderTrackThumbRangeDescriptionMetadata": "MultiSliderTrackThumbRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderYValueChangingEventArgs": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/MultiSliderYValueChangingEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiSliderYValueChangingEventArgs()": "MultiSliderYValueChangingEventArgs()", + "MultiSliderYValueChangingEventArgs": "MultiSliderYValueChangingEventArgs()", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderYValueChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderYValueChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderYValueChangingEventArgsDescription()": "MultiSliderYValueChangingEventArgsDescription()", + "MultiSliderYValueChangingEventArgsDescription": "MultiSliderYValueChangingEventArgsDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "MultiSliderYValueChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/MultiSliderYValueChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderYValueChangingEventArgsDescriptionMetadata()": "MultiSliderYValueChangingEventArgsDescriptionMetadata()", + "MultiSliderYValueChangingEventArgsDescriptionMetadata": "MultiSliderYValueChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NativeMethodAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/NativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "NativeMethodAttribute(string)": "NativeMethodAttribute(string)", + "NativeMethodAttribute": "NativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "NativePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/NativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "NativePropertyAttribute()": "NativePropertyAttribute()", + "NativePropertyAttribute": "NativePropertyAttribute()" + } + } + ], + "NativeTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/NativeTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "NativeTypeAttribute()": "NativeTypeAttribute()", + "NativeTypeAttribute": "NativeTypeAttribute()" + } + } + ], + "NativeUICoreFactory": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NativeUICoreFactory", + "k": "class", + "s": "classes", + "m": { + "NativeUICoreFactory()": "NativeUICoreFactory()", + "NativeUICoreFactory": "NativeUICoreFactory()", + "Instance": "Instance", + "Register()": "Register()", + "Register": "Register()", + "Register(NativeUIElementFactoryFlavor)": "Register(NativeUIElementFactoryFlavor)" + } + } + ], + "NativeUIElementFactoryFlavor": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/NativeUIElementFactoryFlavor", + "k": "enum", + "s": "enums" + } + ], + "NativeUIGridFactory": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/NativeUIGridFactory", + "k": "class", + "s": "classes", + "m": { + "NativeUIGridFactory()": "NativeUIGridFactory()", + "NativeUIGridFactory": "NativeUIGridFactory()", + "Instance": "Instance", + "Register()": "Register()", + "Register": "Register()", + "Register(NativeUIElementFactoryFlavor)": "Register(NativeUIElementFactoryFlavor)" + } + } + ], + "NativeUIInputsFactory": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/NativeUIInputsFactory", + "k": "class", + "s": "classes", + "m": { + "NativeUIInputsFactory()": "NativeUIInputsFactory()", + "NativeUIInputsFactory": "NativeUIInputsFactory()", + "Instance": "Instance", + "Register()": "Register()", + "Register": "Register()", + "Register(NativeUIElementFactoryFlavor)": "Register(NativeUIElementFactoryFlavor)" + } + } + ], + "NativeUILayoutsFactory": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/NativeUILayoutsFactory", + "k": "class", + "s": "classes", + "m": { + "NativeUILayoutsFactory()": "NativeUILayoutsFactory()", + "NativeUILayoutsFactory": "NativeUILayoutsFactory()", + "Instance": "Instance", + "Register()": "Register()", + "Register": "Register()", + "Register(NativeUIElementFactoryFlavor)": "Register(NativeUIElementFactoryFlavor)" + } + } + ], + "NeedleVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/NeedleVisualData", + "k": "class", + "s": "classes", + "m": { + "NeedleVisualData()": "NeedleVisualData()", + "NeedleVisualData": "NeedleVisualData()", + "Angle": "Angle", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "NegativeVolumeIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/NegativeVolumeIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "NegativeVolumeIndexIndicator()": "NegativeVolumeIndexIndicator()", + "NegativeVolumeIndexIndicator": "NegativeVolumeIndexIndicator()" + } + } + ], + "NegativeVolumeIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NegativeVolumeIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "NegativeVolumeIndexIndicatorDescription()": "NegativeVolumeIndexIndicatorDescription()", + "NegativeVolumeIndexIndicatorDescription": "NegativeVolumeIndexIndicatorDescription()", + "Type": "Type" + } + } + ], + "NegativeVolumeIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NegativeVolumeIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NegativeVolumeIndexIndicatorDescriptionMetadata()": "NegativeVolumeIndexIndicatorDescriptionMetadata()", + "NegativeVolumeIndexIndicatorDescriptionMetadata": "NegativeVolumeIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NegativeVolumeIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NegativeVolumeIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NegativeVolumeIndexIndicatorDescriptionModule()": "NegativeVolumeIndexIndicatorDescriptionModule()", + "NegativeVolumeIndexIndicatorDescriptionModule": "NegativeVolumeIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NestedActionMode": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/NestedActionMode", + "k": "enum", + "s": "enums" + } + ], + "NextMonthExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextMonthExpression", + "k": "class", + "s": "classes", + "m": { + "NextMonthExpression(FilterExpression)": "NextMonthExpression(FilterExpression)", + "NextMonthExpression": "NextMonthExpression(FilterExpression)", + "NextMonthExpression(string)": "NextMonthExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "NextMonthExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextMonthExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "NextMonthExpressionDescription()": "NextMonthExpressionDescription()", + "NextMonthExpressionDescription": "NextMonthExpressionDescription()", + "Type": "Type" + } + } + ], + "NextMonthExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextMonthExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NextMonthExpressionDescriptionMetadata()": "NextMonthExpressionDescriptionMetadata()", + "NextMonthExpressionDescriptionMetadata": "NextMonthExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NextQuarterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextQuarterExpression", + "k": "class", + "s": "classes", + "m": { + "NextQuarterExpression(FilterExpression)": "NextQuarterExpression(FilterExpression)", + "NextQuarterExpression": "NextQuarterExpression(FilterExpression)", + "NextQuarterExpression(string)": "NextQuarterExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "NextQuarterExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextQuarterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "NextQuarterExpressionDescription()": "NextQuarterExpressionDescription()", + "NextQuarterExpressionDescription": "NextQuarterExpressionDescription()", + "Type": "Type" + } + } + ], + "NextQuarterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextQuarterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NextQuarterExpressionDescriptionMetadata()": "NextQuarterExpressionDescriptionMetadata()", + "NextQuarterExpressionDescriptionMetadata": "NextQuarterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NextWeekExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextWeekExpression", + "k": "class", + "s": "classes", + "m": { + "NextWeekExpression(FilterExpression)": "NextWeekExpression(FilterExpression)", + "NextWeekExpression": "NextWeekExpression(FilterExpression)", + "NextWeekExpression(string)": "NextWeekExpression(string)", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "NextWeekExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextWeekExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "NextWeekExpressionDescription()": "NextWeekExpressionDescription()", + "NextWeekExpressionDescription": "NextWeekExpressionDescription()", + "Type": "Type" + } + } + ], + "NextWeekExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextWeekExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NextWeekExpressionDescriptionMetadata()": "NextWeekExpressionDescriptionMetadata()", + "NextWeekExpressionDescriptionMetadata": "NextWeekExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NextYearExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextYearExpression", + "k": "class", + "s": "classes", + "m": { + "NextYearExpression(FilterExpression)": "NextYearExpression(FilterExpression)", + "NextYearExpression": "NextYearExpression(FilterExpression)", + "NextYearExpression(string)": "NextYearExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "NextYearExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextYearExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "NextYearExpressionDescription()": "NextYearExpressionDescription()", + "NextYearExpressionDescription": "NextYearExpressionDescription()", + "Type": "Type" + } + } + ], + "NextYearExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NextYearExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NextYearExpressionDescriptionMetadata()": "NextYearExpressionDescriptionMetadata()", + "NextYearExpressionDescriptionMetadata": "NextYearExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumberAbbreviatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumberAbbreviatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumberAbbreviatorDescriptionModule()": "NumberAbbreviatorDescriptionModule()", + "NumberAbbreviatorDescriptionModule": "NumberAbbreviatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumberDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumberDescription", + "k": "class", + "s": "classes", + "m": { + "NumberDescription()": "NumberDescription()", + "NumberDescription": "NumberDescription()", + "Value": "Value" + } + } + ], + "NumberFormatSpecifier": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumberFormatSpecifier", + "k": "class", + "s": "classes", + "m": { + "NumberFormatSpecifier()": "NumberFormatSpecifier()", + "NumberFormatSpecifier": "NumberFormatSpecifier()", + "Locale": "Locale", + "MaximumFractionDigits": "MaximumFractionDigits", + "MinimumFractionDigits": "MinimumFractionDigits", + "MinimumIntegerDigits": "MinimumIntegerDigits", + "Notation": "Notation", + "SignDisplay": "SignDisplay", + "Style": "Style", + "UseGrouping": "UseGrouping" + } + } + ], + "NumberFormatSpecifierDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumberFormatSpecifierDescription", + "k": "class", + "s": "classes", + "m": { + "NumberFormatSpecifierDescription()": "NumberFormatSpecifierDescription()", + "NumberFormatSpecifierDescription": "NumberFormatSpecifierDescription()", + "CompactDisplay": "CompactDisplay", + "Currency": "Currency", + "CurrencyCode": "CurrencyCode", + "CurrencyDisplay": "CurrencyDisplay", + "CurrencySign": "CurrencySign", + "Locale": "Locale", + "LocaleMatcher": "LocaleMatcher", + "MaximumFractionDigits": "MaximumFractionDigits", + "MaximumSignificantDigits": "MaximumSignificantDigits", + "MinimumFractionDigits": "MinimumFractionDigits", + "MinimumIntegerDigits": "MinimumIntegerDigits", + "MinimumSignificantDigits": "MinimumSignificantDigits", + "Notation": "Notation", + "NumberingSystem": "NumberingSystem", + "SignDisplay": "SignDisplay", + "Style": "Style", + "Type": "Type", + "Unit": "Unit", + "UnitDisplay": "UnitDisplay", + "UseGrouping": "UseGrouping" + } + } + ], + "NumberFormatSpecifierDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumberFormatSpecifierDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumberFormatSpecifierDescriptionMetadata()": "NumberFormatSpecifierDescriptionMetadata()", + "NumberFormatSpecifierDescriptionMetadata": "NumberFormatSpecifierDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumberFormatSpecifierDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumberFormatSpecifierDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumberFormatSpecifierDescriptionModule()": "NumberFormatSpecifierDescriptionModule()", + "NumberFormatSpecifierDescriptionModule": "NumberFormatSpecifierDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericAngleAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/NumericAngleAxis", + "k": "class", + "s": "classes", + "m": { + "NumericAngleAxis()": "NumericAngleAxis()", + "NumericAngleAxis": "NumericAngleAxis()", + "CompanionAxisLabelMode": "CompanionAxisLabelMode", + "CompanionAxisLabelModeProperty": "CompanionAxisLabelModeProperty", + "CompanionAxisStartAngleOffset": "CompanionAxisStartAngleOffset", + "CompanionAxisStartAngleOffsetProperty": "CompanionAxisStartAngleOffsetProperty", + "GetScaledAngle(double)": "GetScaledAngle(double)", + "GetScaledAngle": "GetScaledAngle(double)", + "GetUnscaledAngle(double)": "GetUnscaledAngle(double)", + "GetUnscaledAngle": "GetUnscaledAngle(double)", + "LabelMode": "LabelMode", + "LabelModeProperty": "LabelModeProperty", + "StartAngleOffset": "StartAngleOffset", + "StartAngleOffsetProperty": "StartAngleOffsetProperty" + } + } + ], + "NumericAngleAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericAngleAxisDescription", + "k": "class", + "s": "classes", + "m": { + "NumericAngleAxisDescription()": "NumericAngleAxisDescription()", + "NumericAngleAxisDescription": "NumericAngleAxisDescription()", + "CompanionAxisLabelMode": "CompanionAxisLabelMode", + "CompanionAxisStartAngleOffset": "CompanionAxisStartAngleOffset", + "LabelMode": "LabelMode", + "StartAngleOffset": "StartAngleOffset", + "Type": "Type" + } + } + ], + "NumericAngleAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericAngleAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericAngleAxisDescriptionMetadata()": "NumericAngleAxisDescriptionMetadata()", + "NumericAngleAxisDescriptionMetadata": "NumericAngleAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericAngleAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericAngleAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericAngleAxisDescriptionModule()": "NumericAngleAxisDescriptionModule()", + "NumericAngleAxisDescriptionModule": "NumericAngleAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericAxisBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/NumericAxisBase", + "k": "class", + "s": "classes", + "m": { + "AbbreviateLargeNumbers": "AbbreviateLargeNumbers", + "AbbreviateLargeNumbersProperty": "AbbreviateLargeNumbersProperty", + "AbbreviatedLabelFormat": "AbbreviatedLabelFormat", + "AbbreviatedLabelFormatProperty": "AbbreviatedLabelFormatProperty", + "AbbreviatedLabelFormatSpecifiers": "AbbreviatedLabelFormatSpecifiers", + "AbbreviatedLabelFormatSpecifiersProperty": "AbbreviatedLabelFormatSpecifiersProperty", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualIsLogarithmic": "ActualIsLogarithmic", + "ActualIsLogarithmicProperty": "ActualIsLogarithmicProperty", + "ActualMaxPrecision": "ActualMaxPrecision", + "ActualMaxPrecisionProperty": "ActualMaxPrecisionProperty", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "ActualVisibleMaximumValue": "ActualVisibleMaximumValue", + "ActualVisibleMaximumValueProperty": "ActualVisibleMaximumValueProperty", + "ActualVisibleMinimumValue": "ActualVisibleMinimumValue", + "ActualVisibleMinimumValueProperty": "ActualVisibleMinimumValueProperty", + "AutoRangeBufferMode": "AutoRangeBufferMode", + "AutoRangeBufferModeProperty": "AutoRangeBufferModeProperty", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIntervalProperty": "CompanionAxisIntervalProperty", + "CompanionAxisIsLogarithmic": "CompanionAxisIsLogarithmic", + "CompanionAxisIsLogarithmicProperty": "CompanionAxisIsLogarithmicProperty", + "CompanionAxisLogarithmBase": "CompanionAxisLogarithmBase", + "CompanionAxisLogarithmBaseProperty": "CompanionAxisLogarithmBaseProperty", + "CompanionAxisMaximumValue": "CompanionAxisMaximumValue", + "CompanionAxisMaximumValueProperty": "CompanionAxisMaximumValueProperty", + "CompanionAxisMinimumValue": "CompanionAxisMinimumValue", + "CompanionAxisMinimumValueProperty": "CompanionAxisMinimumValueProperty", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisMinorIntervalProperty": "CompanionAxisMinorIntervalProperty", + "FavorLabellingScaleEnd": "FavorLabellingScaleEnd", + "FavorLabellingScaleEndProperty": "FavorLabellingScaleEndProperty", + "HasUserMaximum": "HasUserMaximum", + "HasUserMaximumProperty": "HasUserMaximumProperty", + "HasUserMinimum": "HasUserMinimum", + "HasUserMinimumProperty": "HasUserMinimumProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "IsFormattingAbbreviatedLargeNumber": "IsFormattingAbbreviatedLargeNumber", + "IsFormattingAbbreviatedLargeNumberProperty": "IsFormattingAbbreviatedLargeNumberProperty", + "IsLogarithmic": "IsLogarithmic", + "IsLogarithmicProperty": "IsLogarithmicProperty", + "LogarithmBase": "LogarithmBase", + "LogarithmBaseProperty": "LogarithmBaseProperty", + "MaxPrecision": "MaxPrecision", + "MaxPrecisionProperty": "MaxPrecisionProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "OnFormatAbbreviatedLabel(AxisFormatLabelEventArgs)": "OnFormatAbbreviatedLabel(AxisFormatLabelEventArgs)", + "OnFormatAbbreviatedLabel": "OnFormatAbbreviatedLabel(AxisFormatLabelEventArgs)", + "ReferenceValue": "ReferenceValue", + "ReferenceValueProperty": "ReferenceValueProperty", + "ShouldApplyMaxPrecisionWhenZoomed": "ShouldApplyMaxPrecisionWhenZoomed", + "ShouldApplyMaxPrecisionWhenZoomedProperty": "ShouldApplyMaxPrecisionWhenZoomedProperty", + "UnscaleValue(double)": "UnscaleValue(double)", + "UnscaleValue": "UnscaleValue(double)" + } + } + ], + "NumericAxisBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericAxisBaseDescription", + "k": "class", + "s": "classes", + "m": { + "NumericAxisBaseDescription()": "NumericAxisBaseDescription()", + "NumericAxisBaseDescription": "NumericAxisBaseDescription()", + "AbbreviateLargeNumbers": "AbbreviateLargeNumbers", + "AbbreviatedLabelFormat": "AbbreviatedLabelFormat", + "AbbreviatedLabelFormatSpecifiers": "AbbreviatedLabelFormatSpecifiers", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualIsLogarithmic": "ActualIsLogarithmic", + "ActualMaxPrecision": "ActualMaxPrecision", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalChangeRef": "ActualMinorIntervalChangeRef", + "ActualVisibleMaximumValue": "ActualVisibleMaximumValue", + "ActualVisibleMinimumValue": "ActualVisibleMinimumValue", + "AutoRangeBufferMode": "AutoRangeBufferMode", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIsLogarithmic": "CompanionAxisIsLogarithmic", + "CompanionAxisLogarithmBase": "CompanionAxisLogarithmBase", + "CompanionAxisMaximumValue": "CompanionAxisMaximumValue", + "CompanionAxisMinimumValue": "CompanionAxisMinimumValue", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "FavorLabellingScaleEnd": "FavorLabellingScaleEnd", + "FormatAbbreviatedLabelRef": "FormatAbbreviatedLabelRef", + "Interval": "Interval", + "IsFormattingAbbreviatedLargeNumber": "IsFormattingAbbreviatedLargeNumber", + "IsLogarithmic": "IsLogarithmic", + "LogarithmBase": "LogarithmBase", + "MaxPrecision": "MaxPrecision", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "MinorInterval": "MinorInterval", + "ReferenceValue": "ReferenceValue", + "ShouldApplyMaxPrecisionWhenZoomed": "ShouldApplyMaxPrecisionWhenZoomed", + "Type": "Type" + } + } + ], + "NumericAxisBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericAxisBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericAxisBaseDescriptionMetadata()": "NumericAxisBaseDescriptionMetadata()", + "NumericAxisBaseDescriptionMetadata": "NumericAxisBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/NumericCellInfo", + "k": "class", + "s": "classes", + "m": { + "NumericCellInfo()": "NumericCellInfo()", + "NumericCellInfo": "NumericCellInfo()", + "DecimalNumericValue": "DecimalNumericValue", + "DecimalNumericValuePropertyName": "DecimalNumericValuePropertyName", + "FormatSpecifiers": "FormatSpecifiers", + "FormatSpecifiersPropertyName": "FormatSpecifiersPropertyName", + "FormatStringOverride": "FormatStringOverride", + "FormatStringOverridePropertyName": "FormatStringOverridePropertyName", + "HasDecimalValue": "HasDecimalValue", + "HasDecimalValuePropertyName": "HasDecimalValuePropertyName", + "IsPercent": "IsPercent", + "IsPercentPropertyName": "IsPercentPropertyName", + "MaxFractionDigits": "MaxFractionDigits", + "MaxFractionDigitsPropertyName": "MaxFractionDigitsPropertyName", + "MinFractionDigits": "MinFractionDigits", + "MinFractionDigitsPropertyName": "MinFractionDigitsPropertyName", + "MinIntegerDigits": "MinIntegerDigits", + "MinIntegerDigitsPropertyName": "MinIntegerDigitsPropertyName", + "NegativePrefix": "NegativePrefix", + "NegativePrefixPropertyName": "NegativePrefixPropertyName", + "NegativeSuffix": "NegativeSuffix", + "NegativeSuffixPropertyName": "NegativeSuffixPropertyName", + "NumericValue": "NumericValue", + "NumericValuePropertyName": "NumericValuePropertyName", + "PositivePrefix": "PositivePrefix", + "PositivePrefixPropertyName": "PositivePrefixPropertyName", + "PositiveSuffix": "PositiveSuffix", + "PositiveSuffixPropertyName": "PositiveSuffixPropertyName", + "ShowGroupingSeparator": "ShowGroupingSeparator", + "ShowGroupingSeparatorPropertyName": "ShowGroupingSeparatorPropertyName" + } + } + ], + "NumericCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "NumericCellInfoDescription()": "NumericCellInfoDescription()", + "NumericCellInfoDescription": "NumericCellInfoDescription()", + "FormatOverrideRef": "FormatOverrideRef", + "FormatSpecifiers": "FormatSpecifiers", + "FormatStringOverride": "FormatStringOverride", + "HasDecimalValue": "HasDecimalValue", + "IsPercent": "IsPercent", + "MaxFractionDigits": "MaxFractionDigits", + "MinFractionDigits": "MinFractionDigits", + "MinIntegerDigits": "MinIntegerDigits", + "NegativePrefix": "NegativePrefix", + "NegativeSuffix": "NegativeSuffix", + "NumericValue": "NumericValue", + "PositivePrefix": "PositivePrefix", + "PositiveSuffix": "PositiveSuffix", + "ShowGroupingSeparator": "ShowGroupingSeparator", + "Type": "Type" + } + } + ], + "NumericCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericCellInfoDescriptionMetadata()": "NumericCellInfoDescriptionMetadata()", + "NumericCellInfoDescriptionMetadata": "NumericCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/NumericCellModelExport", + "k": "class", + "s": "classes", + "m": { + "NumericCellModelExport()": "NumericCellModelExport()", + "NumericCellModelExport": "NumericCellModelExport()", + "MaxDecimalPlaces": "MaxDecimalPlaces", + "MinDecimalPlaces": "MinDecimalPlaces", + "NumericValue": "NumericValue", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "NumericColumn": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/NumericColumn", + "k": "class", + "s": "classes", + "m": { + "NumericColumn()": "NumericColumn()", + "NumericColumn": "NumericColumn()", + "EditorItemsSource": "EditorItemsSource", + "EditorItemsSourceProperty": "EditorItemsSourceProperty", + "EditorTextField": "EditorTextField", + "EditorTextFieldProperty": "EditorTextFieldProperty", + "EditorType": "EditorType", + "EditorTypeProperty": "EditorTypeProperty", + "EditorValueField": "EditorValueField", + "EditorValueFieldProperty": "EditorValueFieldProperty", + "FormatSpecifiers": "FormatSpecifiers", + "FormatSpecifiersProperty": "FormatSpecifiersProperty", + "FormatString": "FormatString", + "FormatStringProperty": "FormatStringProperty", + "IsPercent": "IsPercent", + "IsPercentProperty": "IsPercentProperty", + "MaxFractionDigits": "MaxFractionDigits", + "MaxFractionDigitsProperty": "MaxFractionDigitsProperty", + "MinFractionDigits": "MinFractionDigits", + "MinFractionDigitsProperty": "MinFractionDigitsProperty", + "MinIntegerDigits": "MinIntegerDigits", + "MinIntegerDigitsProperty": "MinIntegerDigitsProperty", + "NegativePrefix": "NegativePrefix", + "NegativePrefixProperty": "NegativePrefixProperty", + "NegativeSuffix": "NegativeSuffix", + "NegativeSuffixProperty": "NegativeSuffixProperty", + "PositivePrefix": "PositivePrefix", + "PositivePrefixProperty": "PositivePrefixProperty", + "PositiveSuffix": "PositiveSuffix", + "PositiveSuffixProperty": "PositiveSuffixProperty", + "ShowGroupingSeparator": "ShowGroupingSeparator", + "ShowGroupingSeparatorProperty": "ShowGroupingSeparatorProperty" + } + } + ], + "NumericColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericColumnDescription", + "k": "class", + "s": "classes", + "m": { + "NumericColumnDescription()": "NumericColumnDescription()", + "NumericColumnDescription": "NumericColumnDescription()", + "DataSource": "DataSource", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "FormatOverrideRef": "FormatOverrideRef", + "FormatSpecifiers": "FormatSpecifiers", + "FormatString": "FormatString", + "GenericDataSource": "GenericDataSource", + "IsPercent": "IsPercent", + "MaxFractionDigits": "MaxFractionDigits", + "MinFractionDigits": "MinFractionDigits", + "MinIntegerDigits": "MinIntegerDigits", + "NegativePrefix": "NegativePrefix", + "NegativeSuffix": "NegativeSuffix", + "PositivePrefix": "PositivePrefix", + "PositiveSuffix": "PositiveSuffix", + "ShowGroupingSeparator": "ShowGroupingSeparator", + "Type": "Type" + } + } + ], + "NumericColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericColumnDescriptionMetadata()": "NumericColumnDescriptionMetadata()", + "NumericColumnDescriptionMetadata": "NumericColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericColumnDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericColumnDescriptionModule()": "NumericColumnDescriptionModule()", + "NumericColumnDescriptionModule": "NumericColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericRadiusAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/NumericRadiusAxis", + "k": "class", + "s": "classes", + "m": { + "NumericRadiusAxis()": "NumericRadiusAxis()", + "NumericRadiusAxis": "NumericRadiusAxis()", + "GetScaledValue(double)": "GetScaledValue(double)", + "GetScaledValue": "GetScaledValue(double)", + "GetUnscaledValue(double)": "GetUnscaledValue(double)", + "GetUnscaledValue": "GetUnscaledValue(double)", + "InnerRadiusExtentScale": "InnerRadiusExtentScale", + "InnerRadiusExtentScaleProperty": "InnerRadiusExtentScaleProperty", + "RadiusExtentScale": "RadiusExtentScale", + "RadiusExtentScaleProperty": "RadiusExtentScaleProperty" + } + } + ], + "NumericRadiusAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericRadiusAxisDescription", + "k": "class", + "s": "classes", + "m": { + "NumericRadiusAxisDescription()": "NumericRadiusAxisDescription()", + "NumericRadiusAxisDescription": "NumericRadiusAxisDescription()", + "InnerRadiusExtentScale": "InnerRadiusExtentScale", + "RadiusExtentScale": "RadiusExtentScale", + "Type": "Type" + } + } + ], + "NumericRadiusAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericRadiusAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericRadiusAxisDescriptionMetadata()": "NumericRadiusAxisDescriptionMetadata()", + "NumericRadiusAxisDescriptionMetadata": "NumericRadiusAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericRadiusAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericRadiusAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericRadiusAxisDescriptionModule()": "NumericRadiusAxisDescriptionModule()", + "NumericRadiusAxisDescriptionModule": "NumericRadiusAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericScaleMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/NumericScaleMode", + "k": "enum", + "s": "enums" + } + ], + "NumericXAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/NumericXAxis", + "k": "class", + "s": "classes", + "m": { + "NumericXAxis()": "NumericXAxis()", + "NumericXAxis": "NumericXAxis()", + "ScrollRangeIntoView(double, double)": "ScrollRangeIntoView(double, double)", + "ScrollRangeIntoView": "ScrollRangeIntoView(double, double)" + } + } + ], + "NumericXAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "NumericXAxisDescription()": "NumericXAxisDescription()", + "NumericXAxisDescription": "NumericXAxisDescription()", + "Type": "Type" + } + } + ], + "NumericXAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericXAxisDescriptionMetadata()": "NumericXAxisDescriptionMetadata()", + "NumericXAxisDescriptionMetadata": "NumericXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericXAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericXAxisDescriptionModule()": "NumericXAxisDescriptionModule()", + "NumericXAxisDescriptionModule": "NumericXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericYAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/NumericYAxis", + "k": "class", + "s": "classes", + "m": { + "NumericYAxis()": "NumericYAxis()", + "NumericYAxis": "NumericYAxis()", + "ScrollRangeIntoView(double, double)": "ScrollRangeIntoView(double, double)", + "ScrollRangeIntoView": "ScrollRangeIntoView(double, double)" + } + } + ], + "NumericYAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericYAxisDescription", + "k": "class", + "s": "classes", + "m": { + "NumericYAxisDescription()": "NumericYAxisDescription()", + "NumericYAxisDescription": "NumericYAxisDescription()", + "Type": "Type" + } + } + ], + "NumericYAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericYAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericYAxisDescriptionMetadata()": "NumericYAxisDescriptionMetadata()", + "NumericYAxisDescriptionMetadata": "NumericYAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericYAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/NumericYAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericYAxisDescriptionModule()": "NumericYAxisDescriptionModule()", + "NumericYAxisDescriptionModule": "NumericYAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OBJCDefaultOverloadOnNullCollisionAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCDefaultOverloadOnNullCollisionAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCDefaultOverloadOnNullCollisionAttribute()": "OBJCDefaultOverloadOnNullCollisionAttribute()", + "OBJCDefaultOverloadOnNullCollisionAttribute": "OBJCDefaultOverloadOnNullCollisionAttribute()" + } + } + ], + "OBJCEmitIgnoreAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCEmitIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCEmitIgnoreAttribute()": "OBJCEmitIgnoreAttribute()", + "OBJCEmitIgnoreAttribute": "OBJCEmitIgnoreAttribute()" + } + } + ], + "OBJCEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCEmitIgnoreTypeAttribute()": "OBJCEmitIgnoreTypeAttribute()", + "OBJCEmitIgnoreTypeAttribute": "OBJCEmitIgnoreTypeAttribute()" + } + } + ], + "OBJCGlobalMemberAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCGlobalMemberAttribute()": "OBJCGlobalMemberAttribute()", + "OBJCGlobalMemberAttribute": "OBJCGlobalMemberAttribute()" + } + } + ], + "OBJCIgnoreAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCIgnoreAttribute()": "OBJCIgnoreAttribute()", + "OBJCIgnoreAttribute": "OBJCIgnoreAttribute()" + } + } + ], + "OBJCInlineItemAccessAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCInlineItemAccessAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCInlineItemAccessAttribute()": "OBJCInlineItemAccessAttribute()", + "OBJCInlineItemAccessAttribute": "OBJCInlineItemAccessAttribute()", + "OBJCInlineItemAccessAttribute(string)": "OBJCInlineItemAccessAttribute(string)" + } + } + ], + "OBJCInlinePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCInlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCInlinePropertyAttribute()": "OBJCInlinePropertyAttribute()", + "OBJCInlinePropertyAttribute": "OBJCInlinePropertyAttribute()" + } + } + ], + "OBJCKeepOriginalNameAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCKeepOriginalNameAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCKeepOriginalNameAttribute()": "OBJCKeepOriginalNameAttribute()", + "OBJCKeepOriginalNameAttribute": "OBJCKeepOriginalNameAttribute()" + } + } + ], + "OBJCLiteralStringAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCLiteralStringAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCLiteralStringAttribute()": "OBJCLiteralStringAttribute()", + "OBJCLiteralStringAttribute": "OBJCLiteralStringAttribute()" + } + } + ], + "OBJCNativeMethodAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCNativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCNativeMethodAttribute(string)": "OBJCNativeMethodAttribute(string)", + "OBJCNativeMethodAttribute": "OBJCNativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "OBJCNativePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCNativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCNativePropertyAttribute()": "OBJCNativePropertyAttribute()", + "OBJCNativePropertyAttribute": "OBJCNativePropertyAttribute()" + } + } + ], + "OBJCNativeTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCNativeTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCNativeTypeAttribute()": "OBJCNativeTypeAttribute()", + "OBJCNativeTypeAttribute": "OBJCNativeTypeAttribute()" + } + } + ], + "OBJCReadOnlyStreamAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCReadOnlyStreamAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCReadOnlyStreamAttribute()": "OBJCReadOnlyStreamAttribute()", + "OBJCReadOnlyStreamAttribute": "OBJCReadOnlyStreamAttribute()" + } + } + ], + "OBJCSubstituteTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCSubstituteTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCSubstituteTypeAttribute(Type)": "OBJCSubstituteTypeAttribute(Type)", + "OBJCSubstituteTypeAttribute": "OBJCSubstituteTypeAttribute(Type)", + "Type": "Type" + } + } + ], + "OBJCSubstituteValueAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OBJCSubstituteValueAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCSubstituteValueAttribute(object)": "OBJCSubstituteValueAttribute(object)", + "OBJCSubstituteValueAttribute": "OBJCSubstituteValueAttribute(object)", + "AllowCaseLabels": "AllowCaseLabels", + "Value": "Value" + } + } + ], + "ObjectColumn": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ObjectColumn", + "k": "class", + "s": "classes", + "m": { + "ObjectColumn()": "ObjectColumn()", + "ObjectColumn": "ObjectColumn()", + "SetValues(object)": "SetValues(object)", + "SetValues": "SetValues(object)", + "Values": "Values" + } + } + ], + "ObservableCollectionWrapper": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/ObservableCollectionWrapper", + "k": "class", + "s": "classes", + "m": { + "ObservableCollectionWrapper(IList)": "ObservableCollectionWrapper(IList)", + "ObservableCollectionWrapper": "ObservableCollectionWrapper(IList)", + "ShouldDetachOnTargetChange": "ShouldDetachOnTargetChange" + } + } + ], + "ODataDataSourceFilterExpressionVisitor": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ODataDataSourceFilterExpressionVisitor", + "k": "class", + "s": "classes", + "m": { + "ODataDataSourceFilterExpressionVisitor()": "ODataDataSourceFilterExpressionVisitor()", + "ODataDataSourceFilterExpressionVisitor": "ODataDataSourceFilterExpressionVisitor()", + "ODataDataSourceFilterExpressionVisitor(IODataLiteralEmitter)": "ODataDataSourceFilterExpressionVisitor(IODataLiteralEmitter)", + "ToString()": "ToString()", + "ToString": "ToString()", + "VisitFunctionExpression(IFunctionFilterExpression)": "VisitFunctionExpression(IFunctionFilterExpression)", + "VisitFunctionExpression": "VisitFunctionExpression(IFunctionFilterExpression)", + "VisitLiteralExpression(ILiteralFilterExpression)": "VisitLiteralExpression(ILiteralFilterExpression)", + "VisitLiteralExpression": "VisitLiteralExpression(ILiteralFilterExpression)", + "VisitOperationExpression(IOperationFilterExpression)": "VisitOperationExpression(IOperationFilterExpression)", + "VisitOperationExpression": "VisitOperationExpression(IOperationFilterExpression)", + "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)", + "VisitPropertyReferenceExpression": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)" + } + } + ], + "ODataDataSourceSchema": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ODataDataSourceSchema", + "k": "class", + "s": "classes", + "m": { + "ODataDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[])": "ODataDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[])", + "ODataDataSourceSchema": "ODataDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[])", + "PrimaryKey": "PrimaryKey", + "PropertyDataIntents": "PropertyDataIntents", + "PropertyNames": "PropertyNames", + "PropertyTypes": "PropertyTypes", + "SubSchemas": "SubSchemas" + } + } + ], + "ODataSchemaProvider": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ODataSchemaProvider", + "k": "class", + "s": "classes", + "m": { + "ODataSchemaProvider(string)": "ODataSchemaProvider(string)", + "ODataSchemaProvider": "ODataSchemaProvider(string)", + "GetODataDataSourceSchema(string)": "GetODataDataSourceSchema(string)", + "GetODataDataSourceSchema": "GetODataDataSourceSchema(string)" + } + } + ], + "OffsettableWeekExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OffsettableWeekExpression", + "k": "class", + "s": "classes", + "m": { + "OffsettableWeekExpression(FilterExpression)": "OffsettableWeekExpression(FilterExpression)", + "OffsettableWeekExpression": "OffsettableWeekExpression(FilterExpression)", + "OffsettableWeekExpression(string)": "OffsettableWeekExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "Offset": "Offset" + } + } + ], + "OffsettableWeekExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OffsettableWeekExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "OffsettableWeekExpressionDescription()": "OffsettableWeekExpressionDescription()", + "OffsettableWeekExpressionDescription": "OffsettableWeekExpressionDescription()", + "Type": "Type" + } + } + ], + "OffsettableWeekExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OffsettableWeekExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OffsettableWeekExpressionDescriptionMetadata()": "OffsettableWeekExpressionDescriptionMetadata()", + "OffsettableWeekExpressionDescriptionMetadata": "OffsettableWeekExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OmitFromTypeMarkingAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/OmitFromTypeMarkingAttribute", + "k": "class", + "s": "classes", + "m": { + "OmitFromTypeMarkingAttribute()": "OmitFromTypeMarkingAttribute()", + "OmitFromTypeMarkingAttribute": "OmitFromTypeMarkingAttribute()" + } + } + ], + "OnBalanceVolumeIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/OnBalanceVolumeIndicator", + "k": "class", + "s": "classes", + "m": { + "OnBalanceVolumeIndicator()": "OnBalanceVolumeIndicator()", + "OnBalanceVolumeIndicator": "OnBalanceVolumeIndicator()" + } + } + ], + "OnBalanceVolumeIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnBalanceVolumeIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "OnBalanceVolumeIndicatorDescription()": "OnBalanceVolumeIndicatorDescription()", + "OnBalanceVolumeIndicatorDescription": "OnBalanceVolumeIndicatorDescription()", + "Type": "Type" + } + } + ], + "OnBalanceVolumeIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnBalanceVolumeIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnBalanceVolumeIndicatorDescriptionMetadata()": "OnBalanceVolumeIndicatorDescriptionMetadata()", + "OnBalanceVolumeIndicatorDescriptionMetadata": "OnBalanceVolumeIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnBalanceVolumeIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnBalanceVolumeIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OnBalanceVolumeIndicatorDescriptionModule()": "OnBalanceVolumeIndicatorDescriptionModule()", + "OnBalanceVolumeIndicatorDescriptionModule": "OnBalanceVolumeIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnClosedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnClosedEventArgs", + "k": "class", + "s": "classes", + "m": { + "OnClosedEventArgs()": "OnClosedEventArgs()", + "OnClosedEventArgs": "OnClosedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OnClosedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnClosedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OnClosedEventArgsDescription()": "OnClosedEventArgsDescription()", + "OnClosedEventArgsDescription": "OnClosedEventArgsDescription()", + "Type": "Type" + } + } + ], + "OnClosedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnClosedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnClosedEventArgsDescriptionMetadata()": "OnClosedEventArgsDescriptionMetadata()", + "OnClosedEventArgsDescriptionMetadata": "OnClosedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnCollapsedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/OnCollapsedEventArgs", + "k": "class", + "s": "classes", + "m": { + "OnCollapsedEventArgs()": "OnCollapsedEventArgs()", + "OnCollapsedEventArgs": "OnCollapsedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OnCollapsedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnCollapsedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OnCollapsedEventArgsDescription()": "OnCollapsedEventArgsDescription()", + "OnCollapsedEventArgsDescription": "OnCollapsedEventArgsDescription()", + "Type": "Type" + } + } + ], + "OnCollapsedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnCollapsedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnCollapsedEventArgsDescriptionMetadata()": "OnCollapsedEventArgsDescriptionMetadata()", + "OnCollapsedEventArgsDescriptionMetadata": "OnCollapsedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnExpandedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/OnExpandedEventArgs", + "k": "class", + "s": "classes", + "m": { + "OnExpandedEventArgs()": "OnExpandedEventArgs()", + "OnExpandedEventArgs": "OnExpandedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OnExpandedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnExpandedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OnExpandedEventArgsDescription()": "OnExpandedEventArgsDescription()", + "OnExpandedEventArgsDescription": "OnExpandedEventArgsDescription()", + "Type": "Type" + } + } + ], + "OnExpandedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnExpandedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnExpandedEventArgsDescriptionMetadata()": "OnExpandedEventArgsDescriptionMetadata()", + "OnExpandedEventArgsDescriptionMetadata": "OnExpandedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnPopupEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnPopupEventArgs", + "k": "class", + "s": "classes", + "m": { + "OnPopupEventArgs()": "OnPopupEventArgs()", + "OnPopupEventArgs": "OnPopupEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OnPopupEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnPopupEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OnPopupEventArgsDescription()": "OnPopupEventArgsDescription()", + "OnPopupEventArgsDescription": "OnPopupEventArgsDescription()", + "Type": "Type" + } + } + ], + "OnPopupEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OnPopupEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnPopupEventArgsDescriptionMetadata()": "OnPopupEventArgsDescriptionMetadata()", + "OnPopupEventArgsDescriptionMetadata": "OnPopupEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OpenStreetMapImagery": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/OpenStreetMapImagery", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapImagery()": "OpenStreetMapImagery()", + "OpenStreetMapImagery": "OpenStreetMapImagery()", + "TilePath": "TilePath" + } + } + ], + "OpenStreetMapImageryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OpenStreetMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapImageryDescription()": "OpenStreetMapImageryDescription()", + "OpenStreetMapImageryDescription": "OpenStreetMapImageryDescription()", + "TilePath": "TilePath", + "Type": "Type" + } + } + ], + "OpenStreetMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OpenStreetMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapImageryDescriptionMetadata()": "OpenStreetMapImageryDescriptionMetadata()", + "OpenStreetMapImageryDescriptionMetadata": "OpenStreetMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OpenStreetMapImageryDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OpenStreetMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapImageryDescriptionModule()": "OpenStreetMapImageryDescriptionModule()", + "OpenStreetMapImageryDescriptionModule": "OpenStreetMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OpenStreetMapTileSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OpenStreetMapTileSource", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapTileSource()": "OpenStreetMapTileSource()", + "OpenStreetMapTileSource": "OpenStreetMapTileSource()", + "SetTilePathUrl(string)": "SetTilePathUrl(string)", + "SetTilePathUrl": "SetTilePathUrl(string)" + } + } + ], + "OperationFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperationFilterExpression", + "k": "class", + "s": "classes", + "m": { + "OperationFilterExpression()": "OperationFilterExpression()", + "OperationFilterExpression": "OperationFilterExpression()", + "OperationFilterExpression(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)": "OperationFilterExpression(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)", + "OperationFilterExpression(IFilterExpression, FilterExpressionOperatorType, object)": "OperationFilterExpression(IFilterExpression, FilterExpressionOperatorType, object)", + "OperationFilterExpression(string, FilterExpressionOperatorType, IFilterExpression)": "OperationFilterExpression(string, FilterExpressionOperatorType, IFilterExpression)", + "OperationFilterExpression(string, FilterExpressionOperatorType, object)": "OperationFilterExpression(string, FilterExpressionOperatorType, object)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "HasLeft": "HasLeft", + "HasOperator": "HasOperator", + "HasPropertyName": "HasPropertyName", + "HasRight": "HasRight", + "HasValue": "HasValue", + "IsBooleanOperation": "IsBooleanOperation", + "IsComparisonOperation": "IsComparisonOperation", + "IsOperation": "IsOperation", + "Left": "Left", + "Operator": "Operator", + "Precedence": "Precedence", + "PropertyName": "PropertyName", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()", + "Right": "Right", + "Value": "Value" + } + } + ], + "OperationFilterExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperationFilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "OperationFilterExpressionDescription()": "OperationFilterExpressionDescription()", + "OperationFilterExpressionDescription": "OperationFilterExpressionDescription()", + "HasLeft": "HasLeft", + "HasOperator": "HasOperator", + "HasPropertyName": "HasPropertyName", + "HasRight": "HasRight", + "HasValue": "HasValue", + "IsComparisonOperation": "IsComparisonOperation", + "Left": "Left", + "Operator": "Operator", + "PropertyName": "PropertyName", + "Right": "Right", + "Type": "Type" + } + } + ], + "OperationFilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperationFilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OperationFilterExpressionDescriptionMetadata()": "OperationFilterExpressionDescriptionMetadata()", + "OperationFilterExpressionDescriptionMetadata": "OperationFilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OperatorSelectorClosingEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/OperatorSelectorClosingEventArgs", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorClosingEventArgs()": "OperatorSelectorClosingEventArgs()", + "OperatorSelectorClosingEventArgs": "OperatorSelectorClosingEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OperatorSelectorClosingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperatorSelectorClosingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorClosingEventArgsDescription()": "OperatorSelectorClosingEventArgsDescription()", + "OperatorSelectorClosingEventArgsDescription": "OperatorSelectorClosingEventArgsDescription()", + "Type": "Type" + } + } + ], + "OperatorSelectorClosingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperatorSelectorClosingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorClosingEventArgsDescriptionMetadata()": "OperatorSelectorClosingEventArgsDescriptionMetadata()", + "OperatorSelectorClosingEventArgsDescriptionMetadata": "OperatorSelectorClosingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OperatorSelectorOpeningEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/OperatorSelectorOpeningEventArgs", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorOpeningEventArgs()": "OperatorSelectorOpeningEventArgs()", + "OperatorSelectorOpeningEventArgs": "OperatorSelectorOpeningEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OperatorSelectorOpeningEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperatorSelectorOpeningEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorOpeningEventArgsDescription()": "OperatorSelectorOpeningEventArgsDescription()", + "OperatorSelectorOpeningEventArgsDescription": "OperatorSelectorOpeningEventArgsDescription()", + "Type": "Type" + } + } + ], + "OperatorSelectorOpeningEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperatorSelectorOpeningEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorOpeningEventArgsDescriptionMetadata()": "OperatorSelectorOpeningEventArgsDescriptionMetadata()", + "OperatorSelectorOpeningEventArgsDescriptionMetadata": "OperatorSelectorOpeningEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OperatorSelectorValueChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/OperatorSelectorValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorValueChangedEventArgs()": "OperatorSelectorValueChangedEventArgs()", + "OperatorSelectorValueChangedEventArgs": "OperatorSelectorValueChangedEventArgs()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OperatorSelectorValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperatorSelectorValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorValueChangedEventArgsDescription()": "OperatorSelectorValueChangedEventArgsDescription()", + "OperatorSelectorValueChangedEventArgsDescription": "OperatorSelectorValueChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "OperatorSelectorValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OperatorSelectorValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorValueChangedEventArgsDescriptionMetadata()": "OperatorSelectorValueChangedEventArgsDescriptionMetadata()", + "OperatorSelectorValueChangedEventArgsDescriptionMetadata": "OperatorSelectorValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OrdinalTimeXAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/OrdinalTimeXAxis", + "k": "class", + "s": "classes", + "m": { + "OrdinalTimeXAxis()": "OrdinalTimeXAxis()", + "OrdinalTimeXAxis": "OrdinalTimeXAxis()", + "DateTimeMemberPath": "DateTimeMemberPath", + "DateTimeMemberPathProperty": "DateTimeMemberPathProperty", + "LabelFormats": "LabelFormats", + "LabelFormatsProperty": "LabelFormatsProperty", + "LabellingMode": "LabellingMode", + "LabellingModeProperty": "LabellingModeProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "OnVisibleRangeChanged(EventArgs)": "OnVisibleRangeChanged(EventArgs)", + "OnVisibleRangeChanged": "OnVisibleRangeChanged(EventArgs)" + } + } + ], + "OrdinalTimeXAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OrdinalTimeXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "OrdinalTimeXAxisDescription()": "OrdinalTimeXAxisDescription()", + "OrdinalTimeXAxisDescription": "OrdinalTimeXAxisDescription()", + "DateTimeMemberPath": "DateTimeMemberPath", + "LabelFormats": "LabelFormats", + "LabellingMode": "LabellingMode", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Type": "Type" + } + } + ], + "OrdinalTimeXAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OrdinalTimeXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OrdinalTimeXAxisDescriptionMetadata()": "OrdinalTimeXAxisDescriptionMetadata()", + "OrdinalTimeXAxisDescriptionMetadata": "OrdinalTimeXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OrdinalTimeXAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OrdinalTimeXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OrdinalTimeXAxisDescriptionModule()": "OrdinalTimeXAxisDescriptionModule()", + "OrdinalTimeXAxisDescriptionModule": "OrdinalTimeXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OthersCategoryContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/OthersCategoryContext", + "k": "class", + "s": "classes", + "m": { + "OthersCategoryContext()": "OthersCategoryContext()", + "OthersCategoryContext": "OthersCategoryContext()", + "Items": "Items", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OthersCategoryContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OthersCategoryContextDescription", + "k": "class", + "s": "classes", + "m": { + "OthersCategoryContextDescription()": "OthersCategoryContextDescription()", + "OthersCategoryContextDescription": "OthersCategoryContextDescription()", + "ItemsRef": "ItemsRef", + "Type": "Type" + } + } + ], + "OthersCategoryContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OthersCategoryContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OthersCategoryContextDescriptionMetadata()": "OthersCategoryContextDescriptionMetadata()", + "OthersCategoryContextDescriptionMetadata": "OthersCategoryContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OthersCategoryContextDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OthersCategoryContextDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OthersCategoryContextDescriptionModule()": "OthersCategoryContextDescriptionModule()", + "OthersCategoryContextDescriptionModule": "OthersCategoryContextDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OthersCategoryType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/OthersCategoryType", + "k": "enum", + "s": "enums" + } + ], + "OuterLabelAlignment": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/OuterLabelAlignment", + "k": "enum", + "s": "enums" + } + ], + "OverlayProxyDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OverlayProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OverlayProxyDescriptionModule()": "OverlayProxyDescriptionModule()", + "OverlayProxyDescriptionModule": "OverlayProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OverlaysDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OverlaysDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OverlaysDescriptionModule()": "OverlaysDescriptionModule()", + "OverlaysDescriptionModule": "OverlaysDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OverlayTextInfo": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/OverlayTextInfo", + "k": "class", + "s": "classes", + "m": { + "OverlayTextInfo()": "OverlayTextInfo()", + "OverlayTextInfo": "OverlayTextInfo()", + "Background": "Background", + "BackgroundMode": "BackgroundMode", + "BackgroundShift": "BackgroundShift", + "BorderMode": "BorderMode", + "BorderRadius": "BorderRadius", + "BorderShift": "BorderShift", + "BorderStroke": "BorderStroke", + "BorderThickness": "BorderThickness", + "HorizontalMargin": "HorizontalMargin", + "HorizontalPadding": "HorizontalPadding", + "ShapeBrush": "ShapeBrush", + "ShapeOutline": "ShapeOutline", + "TextAngle": "TextAngle", + "TextColor": "TextColor", + "TextColorMode": "TextColorMode", + "TextColorShift": "TextColorShift", + "TextContent": "TextContent", + "TextLocation": "TextLocation", + "TextVisible": "TextVisible", + "VerticalMargin": "VerticalMargin", + "VerticalPadding": "VerticalPadding", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OverlayTextInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OverlayTextInfoDescription", + "k": "class", + "s": "classes", + "m": { + "OverlayTextInfoDescription()": "OverlayTextInfoDescription()", + "OverlayTextInfoDescription": "OverlayTextInfoDescription()", + "Background": "Background", + "BackgroundMode": "BackgroundMode", + "BackgroundShift": "BackgroundShift", + "BorderMode": "BorderMode", + "BorderRadius": "BorderRadius", + "BorderShift": "BorderShift", + "BorderStroke": "BorderStroke", + "BorderThickness": "BorderThickness", + "HorizontalMargin": "HorizontalMargin", + "HorizontalPadding": "HorizontalPadding", + "ShapeBrush": "ShapeBrush", + "ShapeOutline": "ShapeOutline", + "TextAngle": "TextAngle", + "TextColor": "TextColor", + "TextColorMode": "TextColorMode", + "TextColorShift": "TextColorShift", + "TextContent": "TextContent", + "TextLocation": "TextLocation", + "TextVisible": "TextVisible", + "Type": "Type", + "VerticalMargin": "VerticalMargin", + "VerticalPadding": "VerticalPadding" + } + } + ], + "OverlayTextInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OverlayTextInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OverlayTextInfoDescriptionMetadata()": "OverlayTextInfoDescriptionMetadata()", + "OverlayTextInfoDescriptionMetadata": "OverlayTextInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OverlayTextLocation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/OverlayTextLocation", + "k": "enum", + "s": "enums" + } + ], + "OverlayTextUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OverlayTextUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OverlayTextUpdatingEventArgsDescription()": "OverlayTextUpdatingEventArgsDescription()", + "OverlayTextUpdatingEventArgsDescription": "OverlayTextUpdatingEventArgsDescription()", + "Background": "Background", + "BackgroundMode": "BackgroundMode", + "BackgroundShift": "BackgroundShift", + "BorderMode": "BorderMode", + "BorderRadius": "BorderRadius", + "BorderShift": "BorderShift", + "BorderStroke": "BorderStroke", + "BorderThickness": "BorderThickness", + "DataIndex": "DataIndex", + "HorizontalMargin": "HorizontalMargin", + "HorizontalPadding": "HorizontalPadding", + "ShapeBrush": "ShapeBrush", + "ShapeOutline": "ShapeOutline", + "TextAngle": "TextAngle", + "TextColor": "TextColor", + "TextColorMode": "TextColorMode", + "TextColorShift": "TextColorShift", + "TextContent": "TextContent", + "TextEmpty": "TextEmpty", + "TextLocation": "TextLocation", + "TextVisible": "TextVisible", + "Type": "Type", + "VerticalMargin": "VerticalMargin", + "VerticalPadding": "VerticalPadding" + } + } + ], + "OverlayTextUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/OverlayTextUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OverlayTextUpdatingEventArgsDescriptionMetadata()": "OverlayTextUpdatingEventArgsDescriptionMetadata()", + "OverlayTextUpdatingEventArgsDescriptionMetadata": "OverlayTextUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PageChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/PageChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "PageChangedEventArgs()": "PageChangedEventArgs()", + "PageChangedEventArgs": "PageChangedEventArgs()", + "Data": "Data", + "Page": "Page", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PageChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PageChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PageChangedEventArgsDescription()": "PageChangedEventArgsDescription()", + "PageChangedEventArgsDescription": "PageChangedEventArgsDescription()", + "DataRef": "DataRef", + "Page": "Page", + "Type": "Type" + } + } + ], + "PageChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PageChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PageChangedEventArgsDescriptionMetadata()": "PageChangedEventArgsDescriptionMetadata()", + "PageChangedEventArgsDescriptionMetadata": "PageChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PagedDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PagedDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "PagedDataSourceDescription()": "PagedDataSourceDescription()", + "PagedDataSourceDescription": "PagedDataSourceDescription()", + "Type": "Type" + } + } + ], + "PagedDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PagedDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PagedDataSourceDescriptionMetadata()": "PagedDataSourceDescriptionMetadata()", + "PagedDataSourceDescriptionMetadata": "PagedDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PageRequestedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PageRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "PageRequestedEventArgs()": "PageRequestedEventArgs()", + "PageRequestedEventArgs": "PageRequestedEventArgs()", + "DataSourceId": "DataSourceId", + "FilterExpressions": "FilterExpressions", + "GroupDescriptions": "GroupDescriptions", + "IsFilterExpressionsDirty": "IsFilterExpressionsDirty", + "IsGroupDescriptionsDirty": "IsGroupDescriptionsDirty", + "IsSchemaRequest": "IsSchemaRequest", + "IsSortDescriptionsDirty": "IsSortDescriptionsDirty", + "IsSummaryDescriptionsDirty": "IsSummaryDescriptionsDirty", + "IsSummaryScopeDirty": "IsSummaryScopeDirty", + "PageIndex": "PageIndex", + "PageSize": "PageSize", + "RequestId": "RequestId", + "SortDescriptions": "SortDescriptions", + "SourceName": "SourceName", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PageRequestedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PageRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PageRequestedEventArgsDescription()": "PageRequestedEventArgsDescription()", + "PageRequestedEventArgsDescription": "PageRequestedEventArgsDescription()", + "DataSourceId": "DataSourceId", + "FilterExpressions": "FilterExpressions", + "GroupDescriptions": "GroupDescriptions", + "IsFilterExpressionsDirty": "IsFilterExpressionsDirty", + "IsGroupDescriptionsDirty": "IsGroupDescriptionsDirty", + "IsSchemaRequest": "IsSchemaRequest", + "IsSortDescriptionsDirty": "IsSortDescriptionsDirty", + "IsSummaryDescriptionsDirty": "IsSummaryDescriptionsDirty", + "IsSummaryScopeDirty": "IsSummaryScopeDirty", + "PageIndex": "PageIndex", + "PageSize": "PageSize", + "RequestId": "RequestId", + "SortDescriptions": "SortDescriptions", + "SourceName": "SourceName", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "Type": "Type" + } + } + ], + "PageRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PageRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PageRequestedEventArgsDescriptionMetadata()": "PageRequestedEventArgsDescriptionMetadata()", + "PageRequestedEventArgsDescriptionMetadata": "PageRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PagerVisualModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/PagerVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "PagerVisualModelExport()": "PagerVisualModelExport()", + "PagerVisualModelExport": "PagerVisualModelExport()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "CurrentPage": "CurrentPage", + "FirstPageButton": "FirstPageButton", + "LastPageButton": "LastPageButton", + "NextPageButton": "NextPageButton", + "PageCount": "PageCount", + "PreviousPageButton": "PreviousPageButton", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight" + } + } + ], + "PathFigureData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PathFigureData", + "k": "class", + "s": "classes", + "m": { + "PathFigureData()": "PathFigureData()", + "PathFigureData": "PathFigureData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Segments": "Segments", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "StartPoint": "StartPoint" + } + } + ], + "PathGeometryData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PathGeometryData", + "k": "class", + "s": "classes", + "m": { + "PathGeometryData()": "PathGeometryData()", + "PathGeometryData": "PathGeometryData()", + "Figures": "Figures", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PathVisualData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PathVisualData", + "k": "class", + "s": "classes", + "m": { + "PathVisualData()": "PathVisualData()", + "PathVisualData": "PathVisualData()", + "Data": "Data", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PenLineCap": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/enums/PenLineCap", + "k": "enum", + "s": "enums" + } + ], + "PenLineJoin": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/enums/PenLineJoin", + "k": "enum", + "s": "enums" + } + ], + "PercentagePriceOscillatorIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PercentagePriceOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "PercentagePriceOscillatorIndicator()": "PercentagePriceOscillatorIndicator()", + "PercentagePriceOscillatorIndicator": "PercentagePriceOscillatorIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty" + } + } + ], + "PercentagePriceOscillatorIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentagePriceOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "PercentagePriceOscillatorIndicatorDescription()": "PercentagePriceOscillatorIndicatorDescription()", + "PercentagePriceOscillatorIndicatorDescription": "PercentagePriceOscillatorIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "Type": "Type" + } + } + ], + "PercentagePriceOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentagePriceOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PercentagePriceOscillatorIndicatorDescriptionMetadata()": "PercentagePriceOscillatorIndicatorDescriptionMetadata()", + "PercentagePriceOscillatorIndicatorDescriptionMetadata": "PercentagePriceOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentagePriceOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentagePriceOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PercentagePriceOscillatorIndicatorDescriptionModule()": "PercentagePriceOscillatorIndicatorDescriptionModule()", + "PercentagePriceOscillatorIndicatorDescriptionModule": "PercentagePriceOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentageVolumeOscillatorIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PercentageVolumeOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "PercentageVolumeOscillatorIndicator()": "PercentageVolumeOscillatorIndicator()", + "PercentageVolumeOscillatorIndicator": "PercentageVolumeOscillatorIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty" + } + } + ], + "PercentageVolumeOscillatorIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentageVolumeOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "PercentageVolumeOscillatorIndicatorDescription()": "PercentageVolumeOscillatorIndicatorDescription()", + "PercentageVolumeOscillatorIndicatorDescription": "PercentageVolumeOscillatorIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "Type": "Type" + } + } + ], + "PercentageVolumeOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentageVolumeOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PercentageVolumeOscillatorIndicatorDescriptionMetadata()": "PercentageVolumeOscillatorIndicatorDescriptionMetadata()", + "PercentageVolumeOscillatorIndicatorDescriptionMetadata": "PercentageVolumeOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentageVolumeOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentageVolumeOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PercentageVolumeOscillatorIndicatorDescriptionModule()": "PercentageVolumeOscillatorIndicatorDescriptionModule()", + "PercentageVolumeOscillatorIndicatorDescriptionModule": "PercentageVolumeOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentChangeYAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PercentChangeYAxis", + "k": "class", + "s": "classes", + "m": { + "PercentChangeYAxis()": "PercentChangeYAxis()", + "PercentChangeYAxis": "PercentChangeYAxis()" + } + } + ], + "PercentChangeYAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentChangeYAxisDescription", + "k": "class", + "s": "classes", + "m": { + "PercentChangeYAxisDescription()": "PercentChangeYAxisDescription()", + "PercentChangeYAxisDescription": "PercentChangeYAxisDescription()", + "Type": "Type" + } + } + ], + "PercentChangeYAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentChangeYAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PercentChangeYAxisDescriptionMetadata()": "PercentChangeYAxisDescriptionMetadata()", + "PercentChangeYAxisDescriptionMetadata": "PercentChangeYAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentChangeYAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PercentChangeYAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PercentChangeYAxisDescriptionModule()": "PercentChangeYAxisDescriptionModule()", + "PercentChangeYAxisDescriptionModule": "PercentChangeYAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PieChartBase", + "k": "class", + "s": "classes", + "m": { + "ActualBrushes": "ActualBrushes", + "ActualBrushesProperty": "ActualBrushesProperty", + "ActualItemsSource": "ActualItemsSource", + "ActualItemsSourceProperty": "ActualItemsSourceProperty", + "ActualLabelInnerColor": "ActualLabelInnerColor", + "ActualLabelInnerColorProperty": "ActualLabelInnerColorProperty", + "ActualLabelOuterColor": "ActualLabelOuterColor", + "ActualLabelOuterColorProperty": "ActualLabelOuterColorProperty", + "ActualOutlines": "ActualOutlines", + "ActualOutlinesProperty": "ActualOutlinesProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "AllowSliceExplosion": "AllowSliceExplosion", + "AllowSliceExplosionProperty": "AllowSliceExplosionProperty", + "AllowSliceSelection": "AllowSliceSelection", + "AllowSliceSelectionProperty": "AllowSliceSelectionProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "ExplodedRadius": "ExplodedRadius", + "ExplodedRadiusProperty": "ExplodedRadiusProperty", + "ExplodedSlices": "ExplodedSlices", + "ExplodedSlicesProperty": "ExplodedSlicesProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "InnerExtent": "InnerExtent", + "InnerExtentProperty": "InnerExtentProperty", + "IsDragInteractionEnabled": "IsDragInteractionEnabled", + "IsDragInteractionEnabledProperty": "IsDragInteractionEnabledProperty", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsSurfaceInteractionDisabledProperty": "IsSurfaceInteractionDisabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInnerColor": "LabelInnerColor", + "LabelInnerColorProperty": "LabelInnerColorProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LabelOuterColor": "LabelOuterColor", + "LabelOuterColorProperty": "LabelOuterColorProperty", + "LabelsPosition": "LabelsPosition", + "LabelsPositionProperty": "LabelsPositionProperty", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineMarginProperty": "LeaderLineMarginProperty", + "LeaderLineOpacity": "LeaderLineOpacity", + "LeaderLineOpacityProperty": "LeaderLineOpacityProperty", + "LeaderLineStroke": "LeaderLineStroke", + "LeaderLineStrokeProperty": "LeaderLineStrokeProperty", + "LeaderLineStrokeThickness": "LeaderLineStrokeThickness", + "LeaderLineStrokeThicknessProperty": "LeaderLineStrokeThicknessProperty", + "LeaderLineType": "LeaderLineType", + "LeaderLineTypeProperty": "LeaderLineTypeProperty", + "LeaderLineVisibility": "LeaderLineVisibility", + "LeaderLineVisibilityProperty": "LeaderLineVisibilityProperty", + "Legend": "Legend", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendEmptyValuesModeProperty": "LegendEmptyValuesModeProperty", + "LegendLabelFormat": "LegendLabelFormat", + "LegendLabelFormatProperty": "LegendLabelFormatProperty", + "LegendLabelFormatSpecifiers": "LegendLabelFormatSpecifiers", + "LegendLabelFormatSpecifiersProperty": "LegendLabelFormatSpecifiersProperty", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendLabelMemberPathProperty": "LegendLabelMemberPathProperty", + "LegendOthersLabelFormat": "LegendOthersLabelFormat", + "LegendOthersLabelFormatProperty": "LegendOthersLabelFormatProperty", + "LegendOthersLabelFormatSpecifiers": "LegendOthersLabelFormatSpecifiers", + "LegendOthersLabelFormatSpecifiersProperty": "LegendOthersLabelFormatSpecifiersProperty", + "LegendProperty": "LegendProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "OnFormatLabel(PieChartFormatLabelEventArgs)": "OnFormatLabel(PieChartFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(PieChartFormatLabelEventArgs)", + "OnFormatLegendLabel(PieChartFormatLabelEventArgs)": "OnFormatLegendLabel(PieChartFormatLabelEventArgs)", + "OnFormatLegendLabel": "OnFormatLegendLabel(PieChartFormatLabelEventArgs)", + "OnLabelClick(LabelClickEventArgs)": "OnLabelClick(LabelClickEventArgs)", + "OnLabelClick": "OnLabelClick(LabelClickEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectedItemChanged(SelectedItemChangedEventArgs)": "OnSelectedItemChanged(SelectedItemChangedEventArgs)", + "OnSelectedItemChanged": "OnSelectedItemChanged(SelectedItemChangedEventArgs)", + "OnSelectedItemChanging(SelectedItemChangingEventArgs)": "OnSelectedItemChanging(SelectedItemChangingEventArgs)", + "OnSelectedItemChanging": "OnSelectedItemChanging(SelectedItemChangingEventArgs)", + "OnSelectedItemsChanged(SelectedItemsChangedEventArgs)": "OnSelectedItemsChanged(SelectedItemsChangedEventArgs)", + "OnSelectedItemsChanged": "OnSelectedItemsChanged(SelectedItemsChangedEventArgs)", + "OnSelectedItemsChanging(SelectedItemsChangingEventArgs)": "OnSelectedItemsChanging(SelectedItemsChangingEventArgs)", + "OnSelectedItemsChanging": "OnSelectedItemsChanging(SelectedItemsChangingEventArgs)", + "OnSliceClick(SliceClickEventArgs)": "OnSliceClick(SliceClickEventArgs)", + "OnSliceClick": "OnSliceClick(SliceClickEventArgs)", + "OnSliceEnter(SliceEventArgs)": "OnSliceEnter(SliceEventArgs)", + "OnSliceEnter": "OnSliceEnter(SliceEventArgs)", + "OnSliceHover(SliceEventArgs)": "OnSliceHover(SliceEventArgs)", + "OnSliceHover": "OnSliceHover(SliceEventArgs)", + "OnSliceLeave(SliceEventArgs)": "OnSliceLeave(SliceEventArgs)", + "OnSliceLeave": "OnSliceLeave(SliceEventArgs)", + "OthersCategoryFill": "OthersCategoryFill", + "OthersCategoryFillProperty": "OthersCategoryFillProperty", + "OthersCategoryOpacity": "OthersCategoryOpacity", + "OthersCategoryOpacityProperty": "OthersCategoryOpacityProperty", + "OthersCategoryStroke": "OthersCategoryStroke", + "OthersCategoryStrokeProperty": "OthersCategoryStrokeProperty", + "OthersCategoryStrokeThickness": "OthersCategoryStrokeThickness", + "OthersCategoryStrokeThicknessProperty": "OthersCategoryStrokeThicknessProperty", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryTextProperty": "OthersCategoryTextProperty", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryThresholdProperty": "OthersCategoryThresholdProperty", + "OthersCategoryType": "OthersCategoryType", + "OthersCategoryTypeProperty": "OthersCategoryTypeProperty", + "OthersLabelFormat": "OthersLabelFormat", + "OthersLabelFormatProperty": "OthersLabelFormatProperty", + "OthersLabelFormatSpecifiers": "OthersLabelFormatSpecifiers", + "OthersLabelFormatSpecifiersProperty": "OthersLabelFormatSpecifiersProperty", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RadiusFactor": "RadiusFactor", + "RadiusFactorProperty": "RadiusFactorProperty", + "SelectedItem": "SelectedItem", + "SelectedItemProperty": "SelectedItemProperty", + "SelectedItems": "SelectedItems", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceFillProperty": "SelectedSliceFillProperty", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceOpacityProperty": "SelectedSliceOpacityProperty", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeProperty": "SelectedSliceStrokeProperty", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectedSliceStrokeThicknessProperty": "SelectedSliceStrokeThicknessProperty", + "SelectedSlices": "SelectedSlices", + "SelectedSlicesProperty": "SelectedSlicesProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldDisplayMockDataProperty": "ShouldDisplayMockDataProperty", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "ShouldUseSkeletonStyleForMockDataProperty": "ShouldUseSkeletonStyleForMockDataProperty", + "SimulateLeftClick(Point)": "SimulateLeftClick(Point)", + "SimulateLeftClick": "SimulateLeftClick(Point)", + "StartAngle": "StartAngle", + "StartAngleProperty": "StartAngleProperty", + "SweepDirection": "SweepDirection", + "SweepDirectionProperty": "SweepDirectionProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PieChartBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieChartBaseDescription", + "k": "class", + "s": "classes", + "m": { + "PieChartBaseDescription()": "PieChartBaseDescription()", + "PieChartBaseDescription": "PieChartBaseDescription()", + "ActualBrushes": "ActualBrushes", + "ActualLabelInnerColor": "ActualLabelInnerColor", + "ActualLabelOuterColor": "ActualLabelOuterColor", + "ActualLegendItemBadgeTemplateRef": "ActualLegendItemBadgeTemplateRef", + "ActualOutlines": "ActualOutlines", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AllowSliceExplosion": "AllowSliceExplosion", + "AllowSliceSelection": "AllowSliceSelection", + "Brushes": "Brushes", + "DataSourceRef": "DataSourceRef", + "ExplodedRadius": "ExplodedRadius", + "ExplodedSlices": "ExplodedSlices", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "FormatLegendLabelRef": "FormatLegendLabelRef", + "InnerExtent": "InnerExtent", + "IsDragInteractionEnabled": "IsDragInteractionEnabled", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "LabelClickRef": "LabelClickRef", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInnerColor": "LabelInnerColor", + "LabelMemberPath": "LabelMemberPath", + "LabelOuterColor": "LabelOuterColor", + "LabelsPosition": "LabelsPosition", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineType": "LeaderLineType", + "LeaderLineVisibility": "LeaderLineVisibility", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "LegendItemTemplateRef": "LegendItemTemplateRef", + "LegendLabelFormat": "LegendLabelFormat", + "LegendLabelFormatSpecifiers": "LegendLabelFormatSpecifiers", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendOthersLabelFormat": "LegendOthersLabelFormat", + "LegendOthersLabelFormatSpecifiers": "LegendOthersLabelFormatSpecifiers", + "LegendRef": "LegendRef", + "OthersCategoryFill": "OthersCategoryFill", + "OthersCategoryOpacity": "OthersCategoryOpacity", + "OthersCategoryStroke": "OthersCategoryStroke", + "OthersCategoryStrokeThickness": "OthersCategoryStrokeThickness", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryType": "OthersCategoryType", + "OthersLabelFormat": "OthersLabelFormat", + "OthersLabelFormatSpecifiers": "OthersLabelFormatSpecifiers", + "Outlines": "Outlines", + "PixelScalingRatio": "PixelScalingRatio", + "RadiusFactor": "RadiusFactor", + "SelectedItem": "SelectedItem", + "SelectedItemChangedRef": "SelectedItemChangedRef", + "SelectedItemChangingRef": "SelectedItemChangingRef", + "SelectedItems": "SelectedItems", + "SelectedItemsChangedRef": "SelectedItemsChangedRef", + "SelectedItemsChangingRef": "SelectedItemsChangingRef", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectionMode": "SelectionMode", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "SliceClickRef": "SliceClickRef", + "SliceEnterRef": "SliceEnterRef", + "SliceHoverRef": "SliceHoverRef", + "SliceLeaveRef": "SliceLeaveRef", + "StartAngle": "StartAngle", + "SweepDirection": "SweepDirection", + "TextStyle": "TextStyle", + "TooltipTemplateRef": "TooltipTemplateRef", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "PieChartBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieChartBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PieChartBaseDescriptionMetadata()": "PieChartBaseDescriptionMetadata()", + "PieChartBaseDescriptionMetadata": "PieChartBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PieChartCoreDescriptionModule()": "PieChartCoreDescriptionModule()", + "PieChartCoreDescriptionModule": "PieChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartDashboardTileDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieChartDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PieChartDashboardTileDescriptionModule()": "PieChartDashboardTileDescriptionModule()", + "PieChartDashboardTileDescriptionModule": "PieChartDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/PieChartDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "PieChartDashboardTileFeature()": "PieChartDashboardTileFeature()", + "PieChartDashboardTileFeature": "PieChartDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "PieChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieChartDescription", + "k": "class", + "s": "classes", + "m": { + "PieChartDescription()": "PieChartDescription()", + "PieChartDescription": "PieChartDescription()", + "Background": "Background", + "Height": "Height", + "Type": "Type", + "Width": "Width" + } + } + ], + "PieChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PieChartDescriptionMetadata()": "PieChartDescriptionMetadata()", + "PieChartDescriptionMetadata": "PieChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PieChartDescriptionModule()": "PieChartDescriptionModule()", + "PieChartDescriptionModule": "PieChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartFormatLabelEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PieChartFormatLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "PieChartFormatLabelEventArgs()": "PieChartFormatLabelEventArgs()", + "PieChartFormatLabelEventArgs": "PieChartFormatLabelEventArgs()", + "Item": "Item", + "Label": "Label", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PieChartMockDataItem": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PieChartMockDataItem", + "k": "class", + "s": "classes", + "m": { + "PieChartMockDataItem()": "PieChartMockDataItem()", + "PieChartMockDataItem": "PieChartMockDataItem()", + "Label": "Label", + "Value": "Value" + } + } + ], + "PieChartSweepDirection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/PieChartSweepDirection", + "k": "enum", + "s": "enums" + } + ], + "PieChartVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PieChartVisualData", + "k": "class", + "s": "classes", + "m": { + "PieChartVisualData()": "PieChartVisualData()", + "PieChartVisualData": "PieChartVisualData()", + "DipScalingRatio": "DipScalingRatio", + "Height": "Height", + "IsViewportScaled": "IsViewportScaled", + "LeaderLineMargin": "LeaderLineMargin", + "Name": "Name", + "Others": "Others", + "OthersSlice": "OthersSlice", + "RadiusFactor": "RadiusFactor", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Slices": "Slices", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "PieSliceCollisionGeometry": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieSliceCollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "PieSliceCollisionGeometry(double, double, double, double, double, double)": "PieSliceCollisionGeometry(double, double, double, double, double, double)", + "PieSliceCollisionGeometry": "PieSliceCollisionGeometry(double, double, double, double, double, double)", + "BoundingBox": "BoundingBox", + "CenterX": "CenterX", + "CenterY": "CenterY", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "CollidesWithCoreHeavy(CollisionRect)": "CollidesWithCoreHeavy(CollisionRect)", + "CollidesWithCoreHeavy": "CollidesWithCoreHeavy(CollisionRect)", + "CollidesWithHeavy(CollisionRect)": "CollidesWithHeavy(CollisionRect)", + "CollidesWithHeavy": "CollidesWithHeavy(CollisionRect)", + "EndAngle": "EndAngle", + "InnerRadius": "InnerRadius", + "Radius": "Radius", + "StartAngle": "StartAngle", + "Type": "Type" + } + } + ], + "PieSliceDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PieSliceDataContext", + "k": "class", + "s": "classes", + "m": { + "PieSliceDataContext()": "PieSliceDataContext()", + "PieSliceDataContext": "PieSliceDataContext()", + "IsOthersSlice": "IsOthersSlice", + "PercentValue": "PercentValue" + } + } + ], + "PieSliceDataContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieSliceDataContextDescription", + "k": "class", + "s": "classes", + "m": { + "PieSliceDataContextDescription()": "PieSliceDataContextDescription()", + "PieSliceDataContextDescription": "PieSliceDataContextDescription()", + "IsOthersSlice": "IsOthersSlice", + "PercentValue": "PercentValue", + "Type": "Type" + } + } + ], + "PieSliceDataContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieSliceDataContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PieSliceDataContextDescriptionMetadata()": "PieSliceDataContextDescriptionMetadata()", + "PieSliceDataContextDescriptionMetadata": "PieSliceDataContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieSliceOthersContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PieSliceOthersContext", + "k": "class", + "s": "classes", + "m": { + "PieSliceOthersContext()": "PieSliceOthersContext()", + "PieSliceOthersContext": "PieSliceOthersContext()", + "Data": "Data", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PieSliceOthersContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieSliceOthersContextDescription", + "k": "class", + "s": "classes", + "m": { + "PieSliceOthersContextDescription()": "PieSliceOthersContextDescription()", + "PieSliceOthersContextDescription": "PieSliceOthersContextDescription()", + "Type": "Type" + } + } + ], + "PieSliceOthersContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PieSliceOthersContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PieSliceOthersContextDescriptionMetadata()": "PieSliceOthersContextDescriptionMetadata()", + "PieSliceOthersContextDescriptionMetadata": "PieSliceOthersContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieSliceVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PieSliceVisualData", + "k": "class", + "s": "classes", + "m": { + "PieSliceVisualData()": "PieSliceVisualData()", + "PieSliceVisualData": "PieSliceVisualData()", + "Appearance": "Appearance", + "EndAngle": "EndAngle", + "ExplodedOrigin": "ExplodedOrigin", + "ExplodedRadius": "ExplodedRadius", + "Index": "Index", + "InnerExtentEnd": "InnerExtentEnd", + "InnerExtentStart": "InnerExtentStart", + "IsExploded": "IsExploded", + "IsOthersSlice": "IsOthersSlice", + "IsSelected": "IsSelected", + "Label": "Label", + "LabelAngle": "LabelAngle", + "LabelAppearance": "LabelAppearance", + "LabelBounds": "LabelBounds", + "LeaderLineAppearance": "LeaderLineAppearance", + "LeaderLinePath": "LeaderLinePath", + "Origin": "Origin", + "Radius": "Radius", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SlicePath": "SlicePath", + "StartAngle": "StartAngle" + } + } + ], + "PieSliceVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PieSliceVisualDataList", + "k": "class", + "s": "classes", + "m": { + "PieSliceVisualDataList()": "PieSliceVisualDataList()", + "PieSliceVisualDataList": "PieSliceVisualDataList()" + } + } + ], + "PinnedAreaSeparator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/PinnedAreaSeparator", + "k": "class", + "s": "classes", + "m": { + "PinnedAreaSeparator()": "PinnedAreaSeparator()", + "PinnedAreaSeparator": "PinnedAreaSeparator()" + } + } + ], + "PinnedAreaSeparatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PinnedAreaSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "PinnedAreaSeparatorDescription()": "PinnedAreaSeparatorDescription()", + "PinnedAreaSeparatorDescription": "PinnedAreaSeparatorDescription()", + "Type": "Type" + } + } + ], + "PinnedAreaSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PinnedAreaSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PinnedAreaSeparatorDescriptionMetadata()": "PinnedAreaSeparatorDescriptionMetadata()", + "PinnedAreaSeparatorDescriptionMetadata": "PinnedAreaSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PinnedAreaSeparatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PinnedAreaSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PinnedAreaSeparatorDescriptionModule()": "PinnedAreaSeparatorDescriptionModule()", + "PinnedAreaSeparatorDescriptionModule": "PinnedAreaSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PinnedPositions": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/PinnedPositions", + "k": "enum", + "s": "enums" + } + ], + "PlatformPixelScaler": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/PlatformPixelScaler", + "k": "class", + "s": "classes", + "m": { + "ClampPixelScalingRatio(double)": "ClampPixelScalingRatio(double)", + "ClampPixelScalingRatio": "ClampPixelScalingRatio(double)", + "ToFontPixelUnits(double)": "ToFontPixelUnits(double)", + "ToFontPixelUnits": "ToFontPixelUnits(double)", + "ToNativePixelUnits(double)": "ToNativePixelUnits(double)", + "ToNativePixelUnits": "ToNativePixelUnits(double)", + "ToPixelUnits(double)": "ToPixelUnits(double)", + "ToPixelUnits": "ToPixelUnits(double)" + } + } + ], + "PlatformServices": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/PlatformServices", + "k": "class", + "s": "classes", + "m": { + "AppPackageLoader": "AppPackageLoader", + "BitmapUtilities": "BitmapUtilities", + "PixelScaler": "PixelScaler", + "PlatformType": "PlatformType", + "RegisterAppPackageLoader(IPlatformAppPackageLoader)": "RegisterAppPackageLoader(IPlatformAppPackageLoader)", + "RegisterAppPackageLoader": "RegisterAppPackageLoader(IPlatformAppPackageLoader)", + "RegisterBitmapUtilities(IPlatformBitmapUtilities)": "RegisterBitmapUtilities(IPlatformBitmapUtilities)", + "RegisterBitmapUtilities": "RegisterBitmapUtilities(IPlatformBitmapUtilities)", + "RegisterPixelScaler(IPlatformPixelScaler)": "RegisterPixelScaler(IPlatformPixelScaler)", + "RegisterPixelScaler": "RegisterPixelScaler(IPlatformPixelScaler)", + "RegisterPlatformType(PlatformType)": "RegisterPlatformType(PlatformType)", + "RegisterPlatformType": "RegisterPlatformType(PlatformType)", + "RegisterTextMetrics(IPlatformTextMetrics)": "RegisterTextMetrics(IPlatformTextMetrics)", + "RegisterTextMetrics": "RegisterTextMetrics(IPlatformTextMetrics)", + "RegisterUtilities(IPlatformUtilities)": "RegisterUtilities(IPlatformUtilities)", + "RegisterUtilities": "RegisterUtilities(IPlatformUtilities)", + "TextMetrics": "TextMetrics", + "Utilities": "Utilities" + } + } + ], + "PlatformType": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/enums/PlatformType", + "k": "enum", + "s": "enums" + } + ], + "PlotAreaMouseButtonEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PlotAreaMouseButtonEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PlotAreaMouseButtonEventArgsDescription()": "PlotAreaMouseButtonEventArgsDescription()", + "PlotAreaMouseButtonEventArgsDescription": "PlotAreaMouseButtonEventArgsDescription()", + "ChartPosition": "ChartPosition", + "ManipulationOccurred": "ManipulationOccurred", + "PlotAreaPosition": "PlotAreaPosition", + "Type": "Type", + "Viewer": "Viewer" + } + } + ], + "PlotAreaMouseButtonEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PlotAreaMouseButtonEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PlotAreaMouseButtonEventArgsDescriptionMetadata()": "PlotAreaMouseButtonEventArgsDescriptionMetadata()", + "PlotAreaMouseButtonEventArgsDescriptionMetadata": "PlotAreaMouseButtonEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PlotAreaMouseEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PlotAreaMouseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PlotAreaMouseEventArgsDescription()": "PlotAreaMouseEventArgsDescription()", + "PlotAreaMouseEventArgsDescription": "PlotAreaMouseEventArgsDescription()", + "ChartPosition": "ChartPosition", + "IsDuringManipulation": "IsDuringManipulation", + "PlotAreaPosition": "PlotAreaPosition", + "Type": "Type", + "Viewer": "Viewer" + } + } + ], + "PlotAreaMouseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PlotAreaMouseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PlotAreaMouseEventArgsDescriptionMetadata()": "PlotAreaMouseEventArgsDescriptionMetadata()", + "PlotAreaMouseEventArgsDescriptionMetadata": "PlotAreaMouseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PointData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PointData", + "k": "class", + "s": "classes", + "m": { + "PointData(double, double)": "PointData(double, double)", + "PointData": "PointData(double, double)", + "Empty": "Empty", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "X": "X", + "Y": "Y" + } + } + ], + "PointDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PointDescription", + "k": "class", + "s": "classes", + "m": { + "PointDescription()": "PointDescription()", + "PointDescription": "PointDescription()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "X": "X", + "Y": "Y" + } + } + ], + "PointerTooltipVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PointerTooltipVisualData", + "k": "class", + "s": "classes", + "m": { + "PointerTooltipVisualData()": "PointerTooltipVisualData()", + "PointerTooltipVisualData": "PointerTooltipVisualData()", + "BoxShape": "BoxShape", + "CategoryNames": "CategoryNames", + "Content": "Content", + "OffsetX": "OffsetX", + "OffsetY": "OffsetY", + "PointerFillShape": "PointerFillShape", + "PointerOutlineShape": "PointerOutlineShape", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Viewport": "Viewport" + } + } + ], + "PointerTooltipVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PointerTooltipVisualDataList", + "k": "class", + "s": "classes", + "m": { + "PointerTooltipVisualDataList()": "PointerTooltipVisualDataList()", + "PointerTooltipVisualDataList": "PointerTooltipVisualDataList()" + } + } + ], + "PointSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PointSeries", + "k": "class", + "s": "classes", + "m": { + "PointSeries()": "PointSeries()", + "PointSeries": "PointSeries()" + } + } + ], + "PointSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PointSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PointSeriesDescription()": "PointSeriesDescription()", + "PointSeriesDescription": "PointSeriesDescription()", + "Type": "Type" + } + } + ], + "PointSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PointSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PointSeriesDescriptionMetadata()": "PointSeriesDescriptionMetadata()", + "PointSeriesDescriptionMetadata": "PointSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PointSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PointSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PointSeriesDescriptionModule()": "PointSeriesDescriptionModule()", + "PointSeriesDescriptionModule": "PointSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PolarAreaSeries", + "k": "class", + "s": "classes", + "m": { + "PolarAreaSeries()": "PolarAreaSeries()", + "PolarAreaSeries": "PolarAreaSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "PolarAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarAreaSeriesDescription()": "PolarAreaSeriesDescription()", + "PolarAreaSeriesDescription": "PolarAreaSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "PolarAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarAreaSeriesDescriptionMetadata()": "PolarAreaSeriesDescriptionMetadata()", + "PolarAreaSeriesDescriptionMetadata": "PolarAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarAreaSeriesDescriptionModule()": "PolarAreaSeriesDescriptionModule()", + "PolarAreaSeriesDescriptionModule": "PolarAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PolarBase", + "k": "class", + "s": "classes", + "m": { + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualItemSearchModeProperty": "ActualItemSearchModeProperty", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "AngleAxis": "AngleAxis", + "AngleAxisProperty": "AngleAxisProperty", + "AngleMemberAsLegendLabel": "AngleMemberAsLegendLabel", + "AngleMemberAsLegendLabelProperty": "AngleMemberAsLegendLabelProperty", + "AngleMemberAsLegendUnit": "AngleMemberAsLegendUnit", + "AngleMemberAsLegendUnitProperty": "AngleMemberAsLegendUnitProperty", + "AngleMemberPath": "AngleMemberPath", + "AngleMemberPathProperty": "AngleMemberPathProperty", + "GetPolarItems(int, int)": "GetPolarItems(int, int)", + "GetPolarItems": "GetPolarItems(int, int)", + "HighlightedAngleMemberPath": "HighlightedAngleMemberPath", + "HighlightedAngleMemberPathProperty": "HighlightedAngleMemberPathProperty", + "HighlightedRadiusMemberPath": "HighlightedRadiusMemberPath", + "HighlightedRadiusMemberPathProperty": "HighlightedRadiusMemberPathProperty", + "IsCustomPolarMarkerStyleAllowed": "IsCustomPolarMarkerStyleAllowed", + "IsCustomPolarMarkerStyleAllowedProperty": "IsCustomPolarMarkerStyleAllowedProperty", + "IsCustomPolarStyleAllowed": "IsCustomPolarStyleAllowed", + "IsCustomPolarStyleAllowedProperty": "IsCustomPolarStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "MaximumMarkers": "MaximumMarkers", + "MaximumMarkersProperty": "MaximumMarkersProperty", + "OnAssigningPolarMarkerStyle(AssigningPolarMarkerStyleEventArgs)": "OnAssigningPolarMarkerStyle(AssigningPolarMarkerStyleEventArgs)", + "OnAssigningPolarMarkerStyle": "OnAssigningPolarMarkerStyle(AssigningPolarMarkerStyleEventArgs)", + "OnAssigningPolarStyle(AssigningPolarStyleEventArgs)": "OnAssigningPolarStyle(AssigningPolarStyleEventArgs)", + "OnAssigningPolarStyle": "OnAssigningPolarStyle(AssigningPolarStyleEventArgs)", + "RadiusAxis": "RadiusAxis", + "RadiusAxisProperty": "RadiusAxisProperty", + "RadiusMemberAsLegendLabel": "RadiusMemberAsLegendLabel", + "RadiusMemberAsLegendLabelProperty": "RadiusMemberAsLegendLabelProperty", + "RadiusMemberAsLegendUnit": "RadiusMemberAsLegendUnit", + "RadiusMemberAsLegendUnitProperty": "RadiusMemberAsLegendUnitProperty", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusMemberPathProperty": "RadiusMemberPathProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "UseCartesianInterpolation": "UseCartesianInterpolation", + "UseCartesianInterpolationProperty": "UseCartesianInterpolationProperty" + } + } + ], + "PolarBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarBaseDescription", + "k": "class", + "s": "classes", + "m": { + "PolarBaseDescription()": "PolarBaseDescription()", + "PolarBaseDescription": "PolarBaseDescription()", + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "AngleAxisRef": "AngleAxisRef", + "AngleMemberAsLegendLabel": "AngleMemberAsLegendLabel", + "AngleMemberAsLegendUnit": "AngleMemberAsLegendUnit", + "AngleMemberPath": "AngleMemberPath", + "AssigningPolarMarkerStyleRef": "AssigningPolarMarkerStyleRef", + "AssigningPolarStyleRef": "AssigningPolarStyleRef", + "ClipSeriesToBounds": "ClipSeriesToBounds", + "HighlightedAngleMemberPath": "HighlightedAngleMemberPath", + "HighlightedRadiusMemberPath": "HighlightedRadiusMemberPath", + "IsCustomPolarMarkerStyleAllowed": "IsCustomPolarMarkerStyleAllowed", + "IsCustomPolarStyleAllowed": "IsCustomPolarStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchThreshold": "ItemSearchThreshold", + "MaximumMarkers": "MaximumMarkers", + "RadiusAxisRef": "RadiusAxisRef", + "RadiusMemberAsLegendLabel": "RadiusMemberAsLegendLabel", + "RadiusMemberAsLegendUnit": "RadiusMemberAsLegendUnit", + "RadiusMemberPath": "RadiusMemberPath", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "TrendLineZIndex": "TrendLineZIndex", + "Type": "Type", + "UseCartesianInterpolation": "UseCartesianInterpolation" + } + } + ], + "PolarBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarBaseDescriptionMetadata()": "PolarBaseDescriptionMetadata()", + "PolarBaseDescriptionMetadata": "PolarBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarLineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PolarLineSeries", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeries()": "PolarLineSeries()", + "PolarLineSeries": "PolarLineSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "PolarLineSeriesBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PolarLineSeriesBase", + "k": "class", + "s": "classes" + } + ], + "PolarLineSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarLineSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesBaseDescription()": "PolarLineSeriesBaseDescription()", + "PolarLineSeriesBaseDescription": "PolarLineSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "PolarLineSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarLineSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesBaseDescriptionMetadata()": "PolarLineSeriesBaseDescriptionMetadata()", + "PolarLineSeriesBaseDescriptionMetadata": "PolarLineSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarLineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesDescription()": "PolarLineSeriesDescription()", + "PolarLineSeriesDescription": "PolarLineSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "PolarLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesDescriptionMetadata()": "PolarLineSeriesDescriptionMetadata()", + "PolarLineSeriesDescriptionMetadata": "PolarLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarLineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesDescriptionModule()": "PolarLineSeriesDescriptionModule()", + "PolarLineSeriesDescriptionModule": "PolarLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarScatterSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PolarScatterSeries", + "k": "class", + "s": "classes", + "m": { + "PolarScatterSeries()": "PolarScatterSeries()", + "PolarScatterSeries": "PolarScatterSeries()" + } + } + ], + "PolarScatterSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarScatterSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarScatterSeriesDescription()": "PolarScatterSeriesDescription()", + "PolarScatterSeriesDescription": "PolarScatterSeriesDescription()", + "Type": "Type" + } + } + ], + "PolarScatterSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarScatterSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarScatterSeriesDescriptionMetadata()": "PolarScatterSeriesDescriptionMetadata()", + "PolarScatterSeriesDescriptionMetadata": "PolarScatterSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarScatterSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarScatterSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarScatterSeriesDescriptionModule()": "PolarScatterSeriesDescriptionModule()", + "PolarScatterSeriesDescriptionModule": "PolarScatterSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarSplineAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PolarSplineAreaSeries", + "k": "class", + "s": "classes", + "m": { + "PolarSplineAreaSeries()": "PolarSplineAreaSeries()", + "PolarSplineAreaSeries": "PolarSplineAreaSeries()", + "Stiffness": "Stiffness", + "StiffnessProperty": "StiffnessProperty" + } + } + ], + "PolarSplineAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarSplineAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarSplineAreaSeriesDescription()": "PolarSplineAreaSeriesDescription()", + "PolarSplineAreaSeriesDescription": "PolarSplineAreaSeriesDescription()", + "Stiffness": "Stiffness", + "Type": "Type" + } + } + ], + "PolarSplineAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarSplineAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarSplineAreaSeriesDescriptionMetadata()": "PolarSplineAreaSeriesDescriptionMetadata()", + "PolarSplineAreaSeriesDescriptionMetadata": "PolarSplineAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarSplineAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarSplineAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarSplineAreaSeriesDescriptionModule()": "PolarSplineAreaSeriesDescriptionModule()", + "PolarSplineAreaSeriesDescriptionModule": "PolarSplineAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarSplineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PolarSplineSeries", + "k": "class", + "s": "classes", + "m": { + "PolarSplineSeries()": "PolarSplineSeries()", + "PolarSplineSeries": "PolarSplineSeries()", + "Stiffness": "Stiffness", + "StiffnessProperty": "StiffnessProperty" + } + } + ], + "PolarSplineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarSplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarSplineSeriesDescription()": "PolarSplineSeriesDescription()", + "PolarSplineSeriesDescription": "PolarSplineSeriesDescription()", + "Stiffness": "Stiffness", + "Type": "Type" + } + } + ], + "PolarSplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarSplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarSplineSeriesDescriptionMetadata()": "PolarSplineSeriesDescriptionMetadata()", + "PolarSplineSeriesDescriptionMetadata": "PolarSplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarSplineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolarSplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarSplineSeriesDescriptionModule()": "PolarSplineSeriesDescriptionModule()", + "PolarSplineSeriesDescriptionModule": "PolarSplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolyBezierSegmentData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolyBezierSegmentData", + "k": "class", + "s": "classes", + "m": { + "PolyBezierSegmentData()": "PolyBezierSegmentData()", + "PolyBezierSegmentData": "PolyBezierSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PolygonVisualData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolygonVisualData", + "k": "class", + "s": "classes", + "m": { + "PolygonVisualData()": "PolygonVisualData()", + "PolygonVisualData": "PolygonVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PolylineSegmentData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolylineSegmentData", + "k": "class", + "s": "classes", + "m": { + "PolylineSegmentData()": "PolylineSegmentData()", + "PolylineSegmentData": "PolylineSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PolyLineVisualData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolyLineVisualData", + "k": "class", + "s": "classes", + "m": { + "PolyLineVisualData()": "PolyLineVisualData()", + "PolyLineVisualData": "PolyLineVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PolySimplification": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PolySimplification", + "k": "class", + "s": "classes", + "m": { + "VertexReduction(Tuple, double)": "VertexReduction(Tuple, double)", + "VertexReduction": "VertexReduction(Tuple, double)" + } + } + ], + "PopupAlignment": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/PopupAlignment", + "k": "enum", + "s": "enums" + } + ], + "PopupAnimationType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/PopupAnimationType", + "k": "enum", + "s": "enums" + } + ], + "PopupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PopupDescription", + "k": "class", + "s": "classes", + "m": { + "PopupDescription()": "PopupDescription()", + "PopupDescription": "PopupDescription()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualElevation": "ActualElevation", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "AnimationDuration": "AnimationDuration", + "AnimationEnabled": "AnimationEnabled", + "AnimationType": "AnimationType", + "Background": "Background", + "CornerRadius": "CornerRadius", + "DisableHitTestDuringAnimation": "DisableHitTestDuringAnimation", + "Elevation": "Elevation", + "IsClosing": "IsClosing", + "IsFixed": "IsFixed", + "IsFocusable": "IsFocusable", + "IsHitTestVisible": "IsHitTestVisible", + "IsPointerEnabled": "IsPointerEnabled", + "IsShowing": "IsShowing", + "MeasuringContentSizeRef": "MeasuringContentSizeRef", + "OnClosedRef": "OnClosedRef", + "OnPopupRef": "OnPopupRef", + "PointerBackground": "PointerBackground", + "PointerPosition": "PointerPosition", + "PointerSize": "PointerSize", + "PopupGotFocusRef": "PopupGotFocusRef", + "PopupLostFocusRef": "PopupLostFocusRef", + "Type": "Type", + "UseTopLayer": "UseTopLayer" + } + } + ], + "PopupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PopupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PopupDescriptionMetadata()": "PopupDescriptionMetadata()", + "PopupDescriptionMetadata": "PopupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PopupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PopupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PopupDescriptionModule()": "PopupDescriptionModule()", + "PopupDescriptionModule": "PopupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PopupDirection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/PopupDirection", + "k": "enum", + "s": "enums" + } + ], + "PopupMeasuringContentSizeEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PopupMeasuringContentSizeEventArgs", + "k": "class", + "s": "classes", + "m": { + "PopupMeasuringContentSizeEventArgs()": "PopupMeasuringContentSizeEventArgs()", + "PopupMeasuringContentSizeEventArgs": "PopupMeasuringContentSizeEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PopupMeasuringContentSizeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PopupMeasuringContentSizeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PopupMeasuringContentSizeEventArgsDescription()": "PopupMeasuringContentSizeEventArgsDescription()", + "PopupMeasuringContentSizeEventArgsDescription": "PopupMeasuringContentSizeEventArgsDescription()", + "Type": "Type" + } + } + ], + "PopupMeasuringContentSizeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PopupMeasuringContentSizeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PopupMeasuringContentSizeEventArgsDescriptionMetadata()": "PopupMeasuringContentSizeEventArgsDescriptionMetadata()", + "PopupMeasuringContentSizeEventArgsDescriptionMetadata": "PopupMeasuringContentSizeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PopupPointerPosition": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/PopupPointerPosition", + "k": "enum", + "s": "enums" + } + ], + "PopupVisualModelExport": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PopupVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "PopupVisualModelExport()": "PopupVisualModelExport()", + "PopupVisualModelExport": "PopupVisualModelExport()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualElevation": "ActualElevation", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "IsShown": "IsShown", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "PositiveVolumeIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PositiveVolumeIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "PositiveVolumeIndexIndicator()": "PositiveVolumeIndexIndicator()", + "PositiveVolumeIndexIndicator": "PositiveVolumeIndexIndicator()" + } + } + ], + "PositiveVolumeIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PositiveVolumeIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "PositiveVolumeIndexIndicatorDescription()": "PositiveVolumeIndexIndicatorDescription()", + "PositiveVolumeIndexIndicatorDescription": "PositiveVolumeIndexIndicatorDescription()", + "Type": "Type" + } + } + ], + "PositiveVolumeIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PositiveVolumeIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PositiveVolumeIndexIndicatorDescriptionMetadata()": "PositiveVolumeIndexIndicatorDescriptionMetadata()", + "PositiveVolumeIndexIndicatorDescriptionMetadata": "PositiveVolumeIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PositiveVolumeIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PositiveVolumeIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PositiveVolumeIndexIndicatorDescriptionModule()": "PositiveVolumeIndexIndicatorDescriptionModule()", + "PositiveVolumeIndexIndicatorDescriptionModule": "PositiveVolumeIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrefixDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrefixDescription", + "k": "class", + "s": "classes", + "m": { + "PrefixDescription()": "PrefixDescription()", + "PrefixDescription": "PrefixDescription()", + "AriaLabel": "AriaLabel", + "Disabled": "Disabled", + "Id": "Id", + "IsHover": "IsHover", + "Type": "Type" + } + } + ], + "PrefixDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrefixDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PrefixDescriptionMetadata()": "PrefixDescriptionMetadata()", + "PrefixDescriptionMetadata": "PrefixDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrefixDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrefixDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PrefixDescriptionModule()": "PrefixDescriptionModule()", + "PrefixDescriptionModule": "PrefixDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrefixShiftType": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/PrefixShiftType", + "k": "enum", + "s": "enums" + } + ], + "PrefixVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/PrefixVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "PrefixVisualModelExport()": "PrefixVisualModelExport()", + "PrefixVisualModelExport": "PrefixVisualModelExport()", + "IsDisabled": "IsDisabled", + "IsHover": "IsHover", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "PreserveAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/PreserveAttribute", + "k": "class", + "s": "classes", + "m": { + "PreserveAttribute()": "PreserveAttribute()", + "PreserveAttribute": "PreserveAttribute()", + "AllMembers": "AllMembers", + "Conditional": "Conditional" + } + } + ], + "PriceChannelOverlay": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PriceChannelOverlay", + "k": "class", + "s": "classes", + "m": { + "PriceChannelOverlay()": "PriceChannelOverlay()", + "PriceChannelOverlay": "PriceChannelOverlay()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "PriceChannelOverlayDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PriceChannelOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "PriceChannelOverlayDescription()": "PriceChannelOverlayDescription()", + "PriceChannelOverlayDescription": "PriceChannelOverlayDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "PriceChannelOverlayDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PriceChannelOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PriceChannelOverlayDescriptionMetadata()": "PriceChannelOverlayDescriptionMetadata()", + "PriceChannelOverlayDescriptionMetadata": "PriceChannelOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PriceChannelOverlayDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PriceChannelOverlayDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PriceChannelOverlayDescriptionModule()": "PriceChannelOverlayDescriptionModule()", + "PriceChannelOverlayDescriptionModule": "PriceChannelOverlayDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PriceDisplayType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/PriceDisplayType", + "k": "enum", + "s": "enums" + } + ], + "PriceVolumeTrendIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/PriceVolumeTrendIndicator", + "k": "class", + "s": "classes", + "m": { + "PriceVolumeTrendIndicator()": "PriceVolumeTrendIndicator()", + "PriceVolumeTrendIndicator": "PriceVolumeTrendIndicator()" + } + } + ], + "PriceVolumeTrendIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PriceVolumeTrendIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "PriceVolumeTrendIndicatorDescription()": "PriceVolumeTrendIndicatorDescription()", + "PriceVolumeTrendIndicatorDescription": "PriceVolumeTrendIndicatorDescription()", + "Type": "Type" + } + } + ], + "PriceVolumeTrendIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PriceVolumeTrendIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PriceVolumeTrendIndicatorDescriptionMetadata()": "PriceVolumeTrendIndicatorDescriptionMetadata()", + "PriceVolumeTrendIndicatorDescriptionMetadata": "PriceVolumeTrendIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PriceVolumeTrendIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PriceVolumeTrendIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PriceVolumeTrendIndicatorDescriptionModule()": "PriceVolumeTrendIndicatorDescriptionModule()", + "PriceVolumeTrendIndicatorDescriptionModule": "PriceVolumeTrendIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrimaryKeyValue": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/PrimaryKeyValue", + "k": "class", + "s": "classes", + "m": { + "PrimaryKeyValue(object)": "PrimaryKeyValue(object)", + "PrimaryKeyValue": "PrimaryKeyValue(object)", + "PrimaryKeyValue(object[])": "PrimaryKeyValue(object[])", + "PrimaryKeyValue(string[], object[])": "PrimaryKeyValue(string[], object[])", + "CreateIdentityKey(object)": "CreateIdentityKey(object)", + "CreateIdentityKey": "CreateIdentityKey(object)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Key": "Key", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PrimaryKeyValueDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrimaryKeyValueDescription", + "k": "class", + "s": "classes", + "m": { + "PrimaryKeyValueDescription()": "PrimaryKeyValueDescription()", + "PrimaryKeyValueDescription": "PrimaryKeyValueDescription()", + "Key": "Key", + "Type": "Type", + "Value": "Value" + } + } + ], + "PrimaryKeyValueDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrimaryKeyValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PrimaryKeyValueDescriptionMetadata()": "PrimaryKeyValueDescriptionMetadata()", + "PrimaryKeyValueDescriptionMetadata": "PrimaryKeyValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrimaryKeyValueDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrimaryKeyValueDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PrimaryKeyValueDescriptionModule()": "PrimaryKeyValueDescriptionModule()", + "PrimaryKeyValueDescriptionModule": "PrimaryKeyValueDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrimitiveAppearanceData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrimitiveAppearanceData", + "k": "class", + "s": "classes", + "m": { + "PrimitiveAppearanceData()": "PrimitiveAppearanceData()", + "PrimitiveAppearanceData": "PrimitiveAppearanceData()", + "CanvaZIndex": "CanvaZIndex", + "CanvasLeft": "CanvasLeft", + "CanvasTop": "CanvasTop", + "DashArray": "DashArray", + "DashCap": "DashCap", + "Fill": "Fill", + "FillExtended": "FillExtended", + "IsVisible": "IsVisible", + "Opacity": "Opacity", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Stroke": "Stroke", + "StrokeExtended": "StrokeExtended", + "StrokeThickness": "StrokeThickness" + } + } + ], + "PrimitiveVisualData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrimitiveVisualData", + "k": "class", + "s": "classes", + "m": { + "PrimitiveVisualData()": "PrimitiveVisualData()", + "PrimitiveVisualData": "PrimitiveVisualData()", + "PrimitiveVisualData(string)": "PrimitiveVisualData(string)", + "Appearance": "Appearance", + "GetPoints(GetPointsSettings)": "GetPoints(GetPointsSettings)", + "GetPoints": "GetPoints(GetPointsSettings)", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Name": "Name", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Tags": "Tags", + "Type": "Type" + } + } + ], + "PrimitiveVisualDataList": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PrimitiveVisualDataList", + "k": "class", + "s": "classes", + "m": { + "PrimitiveVisualDataList()": "PrimitiveVisualDataList()", + "PrimitiveVisualDataList": "PrimitiveVisualDataList()", + "ContainingTag(string)": "ContainingTag(string)", + "ContainingTag": "ContainingTag(string)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "PriorityDataRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PriorityDataRule", + "k": "class", + "s": "classes", + "m": { + "PriorityDataRule()": "PriorityDataRule()", + "PriorityDataRule": "PriorityDataRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "ProgressiveLoadStatusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ProgressiveLoadStatusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ProgressiveLoadStatusEventArgsDescription()": "ProgressiveLoadStatusEventArgsDescription()", + "ProgressiveLoadStatusEventArgsDescription": "ProgressiveLoadStatusEventArgsDescription()", + "CurrentStatus": "CurrentStatus", + "Type": "Type" + } + } + ], + "ProgressiveLoadStatusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ProgressiveLoadStatusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ProgressiveLoadStatusEventArgsDescriptionMetadata()": "ProgressiveLoadStatusEventArgsDescriptionMetadata()", + "ProgressiveLoadStatusEventArgsDescriptionMetadata": "ProgressiveLoadStatusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorDataSource": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorDataSource", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDataSource()": "PropertyEditorDataSource()", + "PropertyEditorDataSource": "PropertyEditorDataSource()", + "Context": "Context", + "DescriptionType": "DescriptionType", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDataSourceDescription()": "PropertyEditorDataSourceDescription()", + "PropertyEditorDataSourceDescription": "PropertyEditorDataSourceDescription()", + "ContextRef": "ContextRef", + "DescriptionType": "DescriptionType", + "Type": "Type" + } + } + ], + "PropertyEditorDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDataSourceDescriptionMetadata()": "PropertyEditorDataSourceDescriptionMetadata()", + "PropertyEditorDataSourceDescriptionMetadata": "PropertyEditorDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescription()": "PropertyEditorDescription()", + "PropertyEditorDescription": "PropertyEditorDescription()", + "ActualDataSource": "ActualDataSource", + "Background": "Background", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "ComponentRendererRef": "ComponentRendererRef", + "Density": "Density", + "DescriptionContextRef": "DescriptionContextRef", + "DescriptionType": "DescriptionType", + "FilterPlaceholderText": "FilterPlaceholderText", + "Height": "Height", + "IsHorizontal": "IsHorizontal", + "IsIndirectModeEnabled": "IsIndirectModeEnabled", + "IsWrappingEnabled": "IsWrappingEnabled", + "Properties": "Properties", + "RowHeight": "RowHeight", + "SearchInputType": "SearchInputType", + "TargetRef": "TargetRef", + "TextColor": "TextColor", + "Type": "Type", + "Width": "Width" + } + } + ], + "PropertyEditorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionMetadata()": "PropertyEditorDescriptionMetadata()", + "PropertyEditorDescriptionMetadata": "PropertyEditorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionModule()": "PropertyEditorDescriptionModule()", + "PropertyEditorDescriptionModule": "PropertyEditorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorDescriptionObject": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorDescriptionObject", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionObject()": "PropertyEditorDescriptionObject()", + "PropertyEditorDescriptionObject": "PropertyEditorDescriptionObject()", + "DescriptionType": "DescriptionType", + "Properties": "Properties", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorDescriptionObjectCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorDescriptionObjectCollection", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionObjectCollection()": "PropertyEditorDescriptionObjectCollection()", + "PropertyEditorDescriptionObjectCollection": "PropertyEditorDescriptionObjectCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorDescriptionObjectDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorDescriptionObjectDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionObjectDescription()": "PropertyEditorDescriptionObjectDescription()", + "PropertyEditorDescriptionObjectDescription": "PropertyEditorDescriptionObjectDescription()", + "DescriptionType": "DescriptionType", + "Properties": "Properties", + "Type": "Type" + } + } + ], + "PropertyEditorDescriptionObjectDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorDescriptionObjectDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionObjectDescriptionMetadata()": "PropertyEditorDescriptionObjectDescriptionMetadata()", + "PropertyEditorDescriptionObjectDescriptionMetadata": "PropertyEditorDescriptionObjectDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPanelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPanelDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPanelDescription()": "PropertyEditorPanelDescription()", + "PropertyEditorPanelDescription": "PropertyEditorPanelDescription()", + "ActualDataSource": "ActualDataSource", + "ActualRowHeight": "ActualRowHeight", + "Background": "Background", + "BackgroundColor": "BackgroundColor", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "ComponentRendererRef": "ComponentRendererRef", + "DescriptionContextRef": "DescriptionContextRef", + "DescriptionType": "DescriptionType", + "Height": "Height", + "IsHorizontal": "IsHorizontal", + "IsIndirectModeEnabled": "IsIndirectModeEnabled", + "IsWrappingEnabled": "IsWrappingEnabled", + "Properties": "Properties", + "RowHeight": "RowHeight", + "TargetRef": "TargetRef", + "TextColor": "TextColor", + "Type": "Type", + "UpdateMode": "UpdateMode", + "Width": "Width" + } + } + ], + "PropertyEditorPanelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPanelDescriptionMetadata()": "PropertyEditorPanelDescriptionMetadata()", + "PropertyEditorPanelDescriptionMetadata": "PropertyEditorPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPanelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPanelDescriptionModule()": "PropertyEditorPanelDescriptionModule()", + "PropertyEditorPanelDescriptionModule": "PropertyEditorPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPanelUpdateMode": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/PropertyEditorPanelUpdateMode", + "k": "enum", + "s": "enums" + } + ], + "PropertyEditorPropertyDescription": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorPropertyDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescription()": "PropertyEditorPropertyDescription()", + "PropertyEditorPropertyDescription": "PropertyEditorPropertyDescription()", + "CoercedComplexValue": "CoercedComplexValue", + "CoercedComplexValueProperty": "CoercedComplexValueProperty", + "CoercedComplexValues": "CoercedComplexValues", + "CoercedComplexValuesProperty": "CoercedComplexValuesProperty", + "CoercedPrimitiveValue": "CoercedPrimitiveValue", + "CoercedPrimitiveValueProperty": "CoercedPrimitiveValueProperty", + "CoercedValueType": "CoercedValueType", + "CoercedValueTypeProperty": "CoercedValueTypeProperty", + "ComplexValue": "ComplexValue", + "ComplexValueProperty": "ComplexValueProperty", + "ComplexValues": "ComplexValues", + "ComplexValuesProperty": "ComplexValuesProperty", + "DropDownNames": "DropDownNames", + "DropDownNamesProperty": "DropDownNamesProperty", + "DropDownValues": "DropDownValues", + "DropDownValuesProperty": "DropDownValuesProperty", + "EditorWidth": "EditorWidth", + "EditorWidthProperty": "EditorWidthProperty", + "ElementDescriptionType": "ElementDescriptionType", + "ElementDescriptionTypeProperty": "ElementDescriptionTypeProperty", + "Label": "Label", + "LabelProperty": "LabelProperty", + "LabelWidth": "LabelWidth", + "LabelWidthProperty": "LabelWidthProperty", + "Max": "Max", + "MaxProperty": "MaxProperty", + "Min": "Min", + "MinProperty": "MinProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnButtonClicked(PropertyEditorPropertyDescriptionButtonClickEventArgs)": "OnButtonClicked(PropertyEditorPropertyDescriptionButtonClickEventArgs)", + "OnButtonClicked": "OnButtonClicked(PropertyEditorPropertyDescriptionButtonClickEventArgs)", + "OnChanged(PropertyEditorPropertyDescriptionChangedEventArgs)": "OnChanged(PropertyEditorPropertyDescriptionChangedEventArgs)", + "OnChanged": "OnChanged(PropertyEditorPropertyDescriptionChangedEventArgs)", + "OnCoercingValue(PropertyEditorPropertyDescriptionCoercingValueEventArgs)": "OnCoercingValue(PropertyEditorPropertyDescriptionCoercingValueEventArgs)", + "OnCoercingValue": "OnCoercingValue(PropertyEditorPropertyDescriptionCoercingValueEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnTargetPropertyUpdating(PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs)": "OnTargetPropertyUpdating(PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs)", + "OnTargetPropertyUpdating": "OnTargetPropertyUpdating(PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs)", + "PrimitiveValue": "PrimitiveValue", + "PrimitiveValueProperty": "PrimitiveValueProperty", + "Properties": "Properties", + "PropertiesProperty": "PropertiesProperty", + "PropertyDescriptionType": "PropertyDescriptionType", + "PropertyDescriptionTypeProperty": "PropertyDescriptionTypeProperty", + "PropertyPath": "PropertyPath", + "PropertyPathProperty": "PropertyPathProperty", + "ShouldOverrideDefaultEditor": "ShouldOverrideDefaultEditor", + "ShouldOverrideDefaultEditorProperty": "ShouldOverrideDefaultEditorProperty", + "Step": "Step", + "StepProperty": "StepProperty", + "Subtitle": "Subtitle", + "SubtitleProperty": "SubtitleProperty", + "UseCoercedValue": "UseCoercedValue", + "UseCoercedValueProperty": "UseCoercedValueProperty", + "ValueType": "ValueType", + "ValueTypeProperty": "ValueTypeProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionButtonClickEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorPropertyDescriptionButtonClickEventArgs", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionButtonClickEventArgs()": "PropertyEditorPropertyDescriptionButtonClickEventArgs()", + "PropertyEditorPropertyDescriptionButtonClickEventArgs": "PropertyEditorPropertyDescriptionButtonClickEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionButtonClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription()": "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription()", + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription": "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription()", + "Type": "Type" + } + } + ], + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata()": "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata()", + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata": "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionChangedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorPropertyDescriptionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionChangedEventArgs()": "PropertyEditorPropertyDescriptionChangedEventArgs()", + "PropertyEditorPropertyDescriptionChangedEventArgs": "PropertyEditorPropertyDescriptionChangedEventArgs()", + "NewValue": "NewValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionChangedEventArgsDescription()": "PropertyEditorPropertyDescriptionChangedEventArgsDescription()", + "PropertyEditorPropertyDescriptionChangedEventArgsDescription": "PropertyEditorPropertyDescriptionChangedEventArgsDescription()", + "NewValue": "NewValue", + "Type": "Type" + } + } + ], + "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata()": "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata()", + "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata": "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionCoercingValueEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorPropertyDescriptionCoercingValueEventArgs", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionCoercingValueEventArgs()": "PropertyEditorPropertyDescriptionCoercingValueEventArgs()", + "PropertyEditorPropertyDescriptionCoercingValueEventArgs": "PropertyEditorPropertyDescriptionCoercingValueEventArgs()", + "ComplexValue": "ComplexValue", + "ComplexValues": "ComplexValues", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription()": "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription()", + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription": "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription()", + "ComplexValue": "ComplexValue", + "ComplexValues": "ComplexValues", + "Type": "Type", + "Value": "Value" + } + } + ], + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata()": "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata()", + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata": "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorPropertyDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionCollection()": "PropertyEditorPropertyDescriptionCollection()", + "PropertyEditorPropertyDescriptionCollection": "PropertyEditorPropertyDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionDescription()": "PropertyEditorPropertyDescriptionDescription()", + "PropertyEditorPropertyDescriptionDescription": "PropertyEditorPropertyDescriptionDescription()", + "ButtonClickedRef": "ButtonClickedRef", + "ChangedRef": "ChangedRef", + "CoercedComplexValue": "CoercedComplexValue", + "CoercedComplexValues": "CoercedComplexValues", + "CoercedPrimitiveValue": "CoercedPrimitiveValue", + "CoercedValueType": "CoercedValueType", + "CoercingValueRef": "CoercingValueRef", + "ComplexValue": "ComplexValue", + "ComplexValues": "ComplexValues", + "DropDownNames": "DropDownNames", + "DropDownValues": "DropDownValues", + "EditorWidth": "EditorWidth", + "ElementDescriptionType": "ElementDescriptionType", + "Label": "Label", + "LabelWidth": "LabelWidth", + "Max": "Max", + "Min": "Min", + "PrimitiveValue": "PrimitiveValue", + "Properties": "Properties", + "PropertyDescriptionType": "PropertyDescriptionType", + "PropertyPath": "PropertyPath", + "ShouldOverrideDefaultEditor": "ShouldOverrideDefaultEditor", + "Step": "Step", + "Subtitle": "Subtitle", + "TargetPropertyUpdatingRef": "TargetPropertyUpdatingRef", + "Type": "Type", + "UseCoercedValue": "UseCoercedValue", + "ValueType": "ValueType" + } + } + ], + "PropertyEditorPropertyDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionDescriptionMetadata()": "PropertyEditorPropertyDescriptionDescriptionMetadata()", + "PropertyEditorPropertyDescriptionDescriptionMetadata": "PropertyEditorPropertyDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionDescriptionModule()": "PropertyEditorPropertyDescriptionDescriptionModule()", + "PropertyEditorPropertyDescriptionDescriptionModule": "PropertyEditorPropertyDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()", + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()", + "PropertyPath": "PropertyPath", + "Target": "Target", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription()": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription()", + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription()", + "PropertyPath": "PropertyPath", + "TargetRef": "TargetRef", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata()": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata()", + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorValueType": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/PropertyEditorValueType", + "k": "enum", + "s": "enums" + } + ], + "PropertyReferenceFilterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyReferenceFilterExpression", + "k": "class", + "s": "classes", + "m": { + "PropertyReferenceFilterExpression()": "PropertyReferenceFilterExpression()", + "PropertyReferenceFilterExpression": "PropertyReferenceFilterExpression()", + "PropertyReferenceFilterExpression(string)": "PropertyReferenceFilterExpression(string)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "IsPropertyReference": "IsPropertyReference", + "Precedence": "Precedence", + "PropertyReference": "PropertyReference", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()" + } + } + ], + "PropertyReferenceFilterExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyReferenceFilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyReferenceFilterExpressionDescription()": "PropertyReferenceFilterExpressionDescription()", + "PropertyReferenceFilterExpressionDescription": "PropertyReferenceFilterExpressionDescription()", + "PropertyReference": "PropertyReference", + "Type": "Type" + } + } + ], + "PropertyReferenceFilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyReferenceFilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyReferenceFilterExpressionDescriptionMetadata()": "PropertyReferenceFilterExpressionDescriptionMetadata()", + "PropertyReferenceFilterExpressionDescriptionMetadata": "PropertyReferenceFilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyUpdatedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyUpdatedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyUpdatedEventArgsDescription()": "PropertyUpdatedEventArgsDescription()", + "PropertyUpdatedEventArgsDescription": "PropertyUpdatedEventArgsDescription()", + "NewValueRef": "NewValueRef", + "OldValueRef": "OldValueRef", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "PropertyUpdatedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PropertyUpdatedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyUpdatedEventArgsDescriptionMetadata()": "PropertyUpdatedEventArgsDescriptionMetadata()", + "PropertyUpdatedEventArgsDescriptionMetadata": "PropertyUpdatedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ProportionalCategoryAngleAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ProportionalCategoryAngleAxis", + "k": "class", + "s": "classes", + "m": { + "ProportionalCategoryAngleAxis()": "ProportionalCategoryAngleAxis()", + "ProportionalCategoryAngleAxis": "ProportionalCategoryAngleAxis()", + "GetNormalizingValueAtIndex(int, double)": "GetNormalizingValueAtIndex(int, double)", + "GetNormalizingValueAtIndex": "GetNormalizingValueAtIndex(int, double)", + "GetPercentageValue(int)": "GetPercentageValue(int)", + "GetPercentageValue": "GetPercentageValue(int)", + "HasOthersCategory": "HasOthersCategory", + "HasOthersCategoryProperty": "HasOthersCategoryProperty", + "IsOthersValue(int)": "IsOthersValue(int)", + "IsOthersValue": "IsOthersValue(int)", + "NormalizationMayContainUnknowns": "NormalizationMayContainUnknowns", + "NormalizationMayContainUnknownsProperty": "NormalizationMayContainUnknownsProperty", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryTextProperty": "OthersCategoryTextProperty", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryThresholdProperty": "OthersCategoryThresholdProperty", + "OthersCategoryType": "OthersCategoryType", + "OthersCategoryTypeProperty": "OthersCategoryTypeProperty", + "OthersIndex": "OthersIndex", + "OthersIndexProperty": "OthersIndexProperty", + "OthersValue": "OthersValue", + "OthersValueProperty": "OthersValueProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty" + } + } + ], + "ProportionalCategoryAngleAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ProportionalCategoryAngleAxisDescription", + "k": "class", + "s": "classes", + "m": { + "ProportionalCategoryAngleAxisDescription()": "ProportionalCategoryAngleAxisDescription()", + "ProportionalCategoryAngleAxisDescription": "ProportionalCategoryAngleAxisDescription()", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryType": "OthersCategoryType", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "ProportionalCategoryAngleAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ProportionalCategoryAngleAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ProportionalCategoryAngleAxisDescriptionMetadata()": "ProportionalCategoryAngleAxisDescriptionMetadata()", + "ProportionalCategoryAngleAxisDescriptionMetadata": "ProportionalCategoryAngleAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ProportionalCategoryAngleAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ProportionalCategoryAngleAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ProportionalCategoryAngleAxisDescriptionModule()": "ProportionalCategoryAngleAxisDescriptionModule()", + "ProportionalCategoryAngleAxisDescriptionModule": "ProportionalCategoryAngleAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ProportionalRadialLabelContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ProportionalRadialLabelContext", + "k": "class", + "s": "classes", + "m": { + "ProportionalRadialLabelContext()": "ProportionalRadialLabelContext()", + "ProportionalRadialLabelContext": "ProportionalRadialLabelContext()", + "Item": "Item", + "Label": "Label", + "Percent": "Percent", + "Value": "Value" + } + } + ], + "ProvideCalculatorEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ProvideCalculatorEventArgs", + "k": "class", + "s": "classes", + "m": { + "ProvideCalculatorEventArgs()": "ProvideCalculatorEventArgs()", + "ProvideCalculatorEventArgs": "ProvideCalculatorEventArgs()", + "Calculator": "Calculator" + } + } + ], + "ProvideCalculatorEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ProvideCalculatorEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ProvideCalculatorEventArgsDescription()": "ProvideCalculatorEventArgsDescription()", + "ProvideCalculatorEventArgsDescription": "ProvideCalculatorEventArgsDescription()", + "Type": "Type" + } + } + ], + "ProvideCalculatorEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ProvideCalculatorEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ProvideCalculatorEventArgsDescriptionMetadata()": "ProvideCalculatorEventArgsDescriptionMetadata()", + "ProvideCalculatorEventArgsDescriptionMetadata": "ProvideCalculatorEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PublicPointCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/PublicPointCollection", + "k": "class", + "s": "classes", + "m": { + "Add(Point)": "Add(Point)", + "Add": "Add(Point)", + "Clear()": "Clear()", + "Clear": "Clear()", + "Contains(Point)": "Contains(Point)", + "Contains": "Contains(Point)", + "CopyTo(Point[], int)": "CopyTo(Point[], int)", + "CopyTo": "CopyTo(Point[], int)", + "Count": "Count", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "IndexOf(Point)": "IndexOf(Point)", + "IndexOf": "IndexOf(Point)", + "Insert(int, Point)": "Insert(int, Point)", + "Insert": "Insert(int, Point)", + "IsReadOnly": "IsReadOnly", + "this[int]": "this[int]", + "Remove(Point)": "Remove(Point)", + "Remove": "Remove(Point)", + "RemoveAt(int)": "RemoveAt(int)", + "RemoveAt": "RemoveAt(int)" + } + } + ], + "Q1Expression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q1Expression", + "k": "class", + "s": "classes", + "m": { + "Q1Expression(FilterExpression)": "Q1Expression(FilterExpression)", + "Q1Expression": "Q1Expression(FilterExpression)", + "Q1Expression(string)": "Q1Expression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "Q1ExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q1ExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "Q1ExpressionDescription()": "Q1ExpressionDescription()", + "Q1ExpressionDescription": "Q1ExpressionDescription()", + "Type": "Type" + } + } + ], + "Q1ExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q1ExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Q1ExpressionDescriptionMetadata()": "Q1ExpressionDescriptionMetadata()", + "Q1ExpressionDescriptionMetadata": "Q1ExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Q2Expression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q2Expression", + "k": "class", + "s": "classes", + "m": { + "Q2Expression(FilterExpression)": "Q2Expression(FilterExpression)", + "Q2Expression": "Q2Expression(FilterExpression)", + "Q2Expression(string)": "Q2Expression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "Q2ExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q2ExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "Q2ExpressionDescription()": "Q2ExpressionDescription()", + "Q2ExpressionDescription": "Q2ExpressionDescription()", + "Type": "Type" + } + } + ], + "Q2ExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q2ExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Q2ExpressionDescriptionMetadata()": "Q2ExpressionDescriptionMetadata()", + "Q2ExpressionDescriptionMetadata": "Q2ExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Q3Expression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q3Expression", + "k": "class", + "s": "classes", + "m": { + "Q3Expression(FilterExpression)": "Q3Expression(FilterExpression)", + "Q3Expression": "Q3Expression(FilterExpression)", + "Q3Expression(string)": "Q3Expression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "Q3ExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q3ExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "Q3ExpressionDescription()": "Q3ExpressionDescription()", + "Q3ExpressionDescription": "Q3ExpressionDescription()", + "Type": "Type" + } + } + ], + "Q3ExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q3ExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Q3ExpressionDescriptionMetadata()": "Q3ExpressionDescriptionMetadata()", + "Q3ExpressionDescriptionMetadata": "Q3ExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Q4Expression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q4Expression", + "k": "class", + "s": "classes", + "m": { + "Q4Expression(FilterExpression)": "Q4Expression(FilterExpression)", + "Q4Expression": "Q4Expression(FilterExpression)", + "Q4Expression(string)": "Q4Expression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "Q4ExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q4ExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "Q4ExpressionDescription()": "Q4ExpressionDescription()", + "Q4ExpressionDescription": "Q4ExpressionDescription()", + "Type": "Type" + } + } + ], + "Q4ExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Q4ExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Q4ExpressionDescriptionMetadata()": "Q4ExpressionDescriptionMetadata()", + "Q4ExpressionDescriptionMetadata": "Q4ExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "QuarterToDateExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/QuarterToDateExpression", + "k": "class", + "s": "classes", + "m": { + "QuarterToDateExpression(FilterExpression)": "QuarterToDateExpression(FilterExpression)", + "QuarterToDateExpression": "QuarterToDateExpression(FilterExpression)", + "QuarterToDateExpression(string)": "QuarterToDateExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "QuarterToDateExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/QuarterToDateExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "QuarterToDateExpressionDescription()": "QuarterToDateExpressionDescription()", + "QuarterToDateExpressionDescription": "QuarterToDateExpressionDescription()", + "Type": "Type" + } + } + ], + "QuarterToDateExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/QuarterToDateExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "QuarterToDateExpressionDescriptionMetadata()": "QuarterToDateExpressionDescriptionMetadata()", + "QuarterToDateExpressionDescriptionMetadata": "QuarterToDateExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RadialAreaSeries", + "k": "class", + "s": "classes", + "m": { + "RadialAreaSeries()": "RadialAreaSeries()", + "RadialAreaSeries": "RadialAreaSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "RadialAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RadialAreaSeriesDescription()": "RadialAreaSeriesDescription()", + "RadialAreaSeriesDescription": "RadialAreaSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "RadialAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialAreaSeriesDescriptionMetadata()": "RadialAreaSeriesDescriptionMetadata()", + "RadialAreaSeriesDescriptionMetadata": "RadialAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialAreaSeriesDescriptionModule()": "RadialAreaSeriesDescriptionModule()", + "RadialAreaSeriesDescriptionModule": "RadialAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RadialBase", + "k": "class", + "s": "classes", + "m": { + "AngleAxis": "AngleAxis", + "AngleAxisProperty": "AngleAxisProperty", + "AutoCalloutLabelPrecision": "AutoCalloutLabelPrecision", + "AutoCalloutLabelPrecisionProperty": "AutoCalloutLabelPrecisionProperty", + "AutoCalloutLabelValueSeparator": "AutoCalloutLabelValueSeparator", + "AutoCalloutLabelValueSeparatorProperty": "AutoCalloutLabelValueSeparatorProperty", + "AutoCalloutOthersLabelFormat": "AutoCalloutOthersLabelFormat", + "AutoCalloutOthersLabelFormatProperty": "AutoCalloutOthersLabelFormatProperty", + "AutoCalloutOthersLabelFormatSpecifiers": "AutoCalloutOthersLabelFormatSpecifiers", + "AutoCalloutOthersLabelFormatSpecifiersProperty": "AutoCalloutOthersLabelFormatSpecifiersProperty", + "AutoCalloutPercentagePrecision": "AutoCalloutPercentagePrecision", + "AutoCalloutPercentagePrecisionProperty": "AutoCalloutPercentagePrecisionProperty", + "AutoCalloutRadialLabelMode": "AutoCalloutRadialLabelMode", + "AutoCalloutRadialLabelModeProperty": "AutoCalloutRadialLabelModeProperty", + "CategoryCollisionMode": "CategoryCollisionMode", + "CategoryCollisionModeProperty": "CategoryCollisionModeProperty", + "GetAngleFromWorld(Point)": "GetAngleFromWorld(Point)", + "GetAngleFromWorld": "GetAngleFromWorld(Point)", + "GetCategoryItems(int, int)": "GetCategoryItems(int, int)", + "GetCategoryItems": "GetCategoryItems(int, int)", + "GetCategoryWidth()": "GetCategoryWidth()", + "GetCategoryWidth": "GetCategoryWidth()", + "GetOffsetValue()": "GetOffsetValue()", + "GetOffsetValue": "GetOffsetValue()", + "IsCustomRadialMarkerStyleAllowed": "IsCustomRadialMarkerStyleAllowed", + "IsCustomRadialMarkerStyleAllowedProperty": "IsCustomRadialMarkerStyleAllowedProperty", + "IsCustomRadialStyleAllowed": "IsCustomRadialStyleAllowed", + "IsCustomRadialStyleAllowedProperty": "IsCustomRadialStyleAllowedProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "LegendProportionalRadialLabelFormat": "LegendProportionalRadialLabelFormat", + "LegendProportionalRadialLabelFormatProperty": "LegendProportionalRadialLabelFormatProperty", + "LegendProportionalRadialLabelFormatSpecifiers": "LegendProportionalRadialLabelFormatSpecifiers", + "LegendProportionalRadialLabelFormatSpecifiersProperty": "LegendProportionalRadialLabelFormatSpecifiersProperty", + "LegendRadialLabelMode": "LegendRadialLabelMode", + "LegendRadialLabelModeProperty": "LegendRadialLabelModeProperty", + "OnAssigningRadialMarkerStyle(AssigningRadialMarkerStyleEventArgs)": "OnAssigningRadialMarkerStyle(AssigningRadialMarkerStyleEventArgs)", + "OnAssigningRadialMarkerStyle": "OnAssigningRadialMarkerStyle(AssigningRadialMarkerStyleEventArgs)", + "OnAssigningRadialStyle(AssigningRadialStyleEventArgs)": "OnAssigningRadialStyle(AssigningRadialStyleEventArgs)", + "OnAssigningRadialStyle": "OnAssigningRadialStyle(AssigningRadialStyleEventArgs)", + "OthersCategoryBrush": "OthersCategoryBrush", + "OthersCategoryBrushProperty": "OthersCategoryBrushProperty", + "OthersCategoryOutline": "OthersCategoryOutline", + "OthersCategoryOutlineProperty": "OthersCategoryOutlineProperty", + "OthersLegendProportionalRadialLabelFormat": "OthersLegendProportionalRadialLabelFormat", + "OthersLegendProportionalRadialLabelFormatProperty": "OthersLegendProportionalRadialLabelFormatProperty", + "OthersLegendProportionalRadialLabelFormatSpecifiers": "OthersLegendProportionalRadialLabelFormatSpecifiers", + "OthersLegendProportionalRadialLabelFormatSpecifiersProperty": "OthersLegendProportionalRadialLabelFormatSpecifiersProperty", + "OthersProportionalRadialLabelFormat": "OthersProportionalRadialLabelFormat", + "OthersProportionalRadialLabelFormatProperty": "OthersProportionalRadialLabelFormatProperty", + "OthersProportionalRadialLabelFormatSpecifiers": "OthersProportionalRadialLabelFormatSpecifiers", + "OthersProportionalRadialLabelFormatSpecifiersProperty": "OthersProportionalRadialLabelFormatSpecifiersProperty", + "ProportionalRadialLabelFormat": "ProportionalRadialLabelFormat", + "ProportionalRadialLabelFormatProperty": "ProportionalRadialLabelFormatProperty", + "ProportionalRadialLabelFormatSpecifiers": "ProportionalRadialLabelFormatSpecifiers", + "ProportionalRadialLabelFormatSpecifiersProperty": "ProportionalRadialLabelFormatSpecifiersProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "ValueAxis": "ValueAxis", + "ValueAxisProperty": "ValueAxisProperty" + } + } + ], + "RadialBaseChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RadialBaseChart", + "k": "class", + "s": "classes", + "m": { + "ActualAngleAxisLabelTextColor": "ActualAngleAxisLabelTextColor", + "ActualAngleAxisLabelTextColorProperty": "ActualAngleAxisLabelTextColorProperty", + "ActualValueAxisLabelTextColor": "ActualValueAxisLabelTextColor", + "ActualValueAxisLabelTextColorProperty": "ActualValueAxisLabelTextColorProperty", + "AngleAxisExtent": "AngleAxisExtent", + "AngleAxisExtentProperty": "AngleAxisExtentProperty", + "AngleAxisInverted": "AngleAxisInverted", + "AngleAxisInvertedProperty": "AngleAxisInvertedProperty", + "AngleAxisLabel": "AngleAxisLabel", + "AngleAxisLabelAngle": "AngleAxisLabelAngle", + "AngleAxisLabelAngleProperty": "AngleAxisLabelAngleProperty", + "AngleAxisLabelBottomMargin": "AngleAxisLabelBottomMargin", + "AngleAxisLabelBottomMarginProperty": "AngleAxisLabelBottomMarginProperty", + "AngleAxisLabelFontFamily": "AngleAxisLabelFontFamily", + "AngleAxisLabelFontFamilyProperty": "AngleAxisLabelFontFamilyProperty", + "AngleAxisLabelFontSize": "AngleAxisLabelFontSize", + "AngleAxisLabelFontSizeProperty": "AngleAxisLabelFontSizeProperty", + "AngleAxisLabelFontStyle": "AngleAxisLabelFontStyle", + "AngleAxisLabelFontStyleProperty": "AngleAxisLabelFontStyleProperty", + "AngleAxisLabelFontWeight": "AngleAxisLabelFontWeight", + "AngleAxisLabelFontWeightProperty": "AngleAxisLabelFontWeightProperty", + "AngleAxisLabelFormat": "AngleAxisLabelFormat", + "AngleAxisLabelFormatProperty": "AngleAxisLabelFormatProperty", + "AngleAxisLabelFormatSpecifiers": "AngleAxisLabelFormatSpecifiers", + "AngleAxisLabelFormatSpecifiersProperty": "AngleAxisLabelFormatSpecifiersProperty", + "AngleAxisLabelHorizontalAlignment": "AngleAxisLabelHorizontalAlignment", + "AngleAxisLabelHorizontalAlignmentProperty": "AngleAxisLabelHorizontalAlignmentProperty", + "AngleAxisLabelLeftMargin": "AngleAxisLabelLeftMargin", + "AngleAxisLabelLeftMarginProperty": "AngleAxisLabelLeftMarginProperty", + "AngleAxisLabelLocation": "AngleAxisLabelLocation", + "AngleAxisLabelLocationProperty": "AngleAxisLabelLocationProperty", + "AngleAxisLabelProperty": "AngleAxisLabelProperty", + "AngleAxisLabelRightMargin": "AngleAxisLabelRightMargin", + "AngleAxisLabelRightMarginProperty": "AngleAxisLabelRightMarginProperty", + "AngleAxisLabelTextColor": "AngleAxisLabelTextColor", + "AngleAxisLabelTextColorProperty": "AngleAxisLabelTextColorProperty", + "AngleAxisLabelTopMargin": "AngleAxisLabelTopMargin", + "AngleAxisLabelTopMarginProperty": "AngleAxisLabelTopMarginProperty", + "AngleAxisLabelVerticalAlignment": "AngleAxisLabelVerticalAlignment", + "AngleAxisLabelVerticalAlignmentProperty": "AngleAxisLabelVerticalAlignmentProperty", + "AngleAxisLabelVisibility": "AngleAxisLabelVisibility", + "AngleAxisLabelVisibilityProperty": "AngleAxisLabelVisibilityProperty", + "AngleAxisMajorStroke": "AngleAxisMajorStroke", + "AngleAxisMajorStrokeProperty": "AngleAxisMajorStrokeProperty", + "AngleAxisMajorStrokeThickness": "AngleAxisMajorStrokeThickness", + "AngleAxisMajorStrokeThicknessProperty": "AngleAxisMajorStrokeThicknessProperty", + "AngleAxisMaximumExtent": "AngleAxisMaximumExtent", + "AngleAxisMaximumExtentPercentage": "AngleAxisMaximumExtentPercentage", + "AngleAxisMaximumExtentPercentageProperty": "AngleAxisMaximumExtentPercentageProperty", + "AngleAxisMaximumExtentProperty": "AngleAxisMaximumExtentProperty", + "AngleAxisMinorStroke": "AngleAxisMinorStroke", + "AngleAxisMinorStrokeProperty": "AngleAxisMinorStrokeProperty", + "AngleAxisMinorStrokeThickness": "AngleAxisMinorStrokeThickness", + "AngleAxisMinorStrokeThicknessProperty": "AngleAxisMinorStrokeThicknessProperty", + "AngleAxisStrip": "AngleAxisStrip", + "AngleAxisStripProperty": "AngleAxisStripProperty", + "AngleAxisStroke": "AngleAxisStroke", + "AngleAxisStrokeProperty": "AngleAxisStrokeProperty", + "AngleAxisStrokeThickness": "AngleAxisStrokeThickness", + "AngleAxisStrokeThicknessProperty": "AngleAxisStrokeThicknessProperty", + "AngleAxisTickLength": "AngleAxisTickLength", + "AngleAxisTickLengthProperty": "AngleAxisTickLengthProperty", + "AngleAxisTickStroke": "AngleAxisTickStroke", + "AngleAxisTickStrokeProperty": "AngleAxisTickStrokeProperty", + "AngleAxisTickStrokeThickness": "AngleAxisTickStrokeThickness", + "AngleAxisTickStrokeThicknessProperty": "AngleAxisTickStrokeThicknessProperty", + "AngleAxisTitle": "AngleAxisTitle", + "AngleAxisTitleAlignment": "AngleAxisTitleAlignment", + "AngleAxisTitleAlignmentProperty": "AngleAxisTitleAlignmentProperty", + "AngleAxisTitleAngle": "AngleAxisTitleAngle", + "AngleAxisTitleAngleProperty": "AngleAxisTitleAngleProperty", + "AngleAxisTitleBottomMargin": "AngleAxisTitleBottomMargin", + "AngleAxisTitleBottomMarginProperty": "AngleAxisTitleBottomMarginProperty", + "AngleAxisTitleFontFamily": "AngleAxisTitleFontFamily", + "AngleAxisTitleFontFamilyProperty": "AngleAxisTitleFontFamilyProperty", + "AngleAxisTitleFontSize": "AngleAxisTitleFontSize", + "AngleAxisTitleFontSizeProperty": "AngleAxisTitleFontSizeProperty", + "AngleAxisTitleFontStyle": "AngleAxisTitleFontStyle", + "AngleAxisTitleFontStyleProperty": "AngleAxisTitleFontStyleProperty", + "AngleAxisTitleFontWeight": "AngleAxisTitleFontWeight", + "AngleAxisTitleFontWeightProperty": "AngleAxisTitleFontWeightProperty", + "AngleAxisTitleLeftMargin": "AngleAxisTitleLeftMargin", + "AngleAxisTitleLeftMarginProperty": "AngleAxisTitleLeftMarginProperty", + "AngleAxisTitleMargin": "AngleAxisTitleMargin", + "AngleAxisTitleMarginProperty": "AngleAxisTitleMarginProperty", + "AngleAxisTitleProperty": "AngleAxisTitleProperty", + "AngleAxisTitleRightMargin": "AngleAxisTitleRightMargin", + "AngleAxisTitleRightMarginProperty": "AngleAxisTitleRightMarginProperty", + "AngleAxisTitleTextColor": "AngleAxisTitleTextColor", + "AngleAxisTitleTextColorProperty": "AngleAxisTitleTextColorProperty", + "AngleAxisTitleTopMargin": "AngleAxisTitleTopMargin", + "AngleAxisTitleTopMarginProperty": "AngleAxisTitleTopMarginProperty", + "GetScaledAngle(double)": "GetScaledAngle(double)", + "GetScaledAngle": "GetScaledAngle(double)", + "GetScaledValue(double)": "GetScaledValue(double)", + "GetScaledValue": "GetScaledValue(double)", + "GetUnscaledAngle(double)": "GetUnscaledAngle(double)", + "GetUnscaledAngle": "GetUnscaledAngle(double)", + "GetUnscaledValue(double)": "GetUnscaledValue(double)", + "GetUnscaledValue": "GetUnscaledValue(double)", + "OnAngleAxisFormatLabel(AxisFormatLabelEventArgs)": "OnAngleAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnAngleAxisFormatLabel": "OnAngleAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnValueAxisFormatLabel(AxisFormatLabelEventArgs)": "OnValueAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnValueAxisFormatLabel": "OnValueAxisFormatLabel(AxisFormatLabelEventArgs)", + "ValueAxisExtent": "ValueAxisExtent", + "ValueAxisExtentProperty": "ValueAxisExtentProperty", + "ValueAxisInverted": "ValueAxisInverted", + "ValueAxisInvertedProperty": "ValueAxisInvertedProperty", + "ValueAxisLabel": "ValueAxisLabel", + "ValueAxisLabelAngle": "ValueAxisLabelAngle", + "ValueAxisLabelAngleProperty": "ValueAxisLabelAngleProperty", + "ValueAxisLabelBottomMargin": "ValueAxisLabelBottomMargin", + "ValueAxisLabelBottomMarginProperty": "ValueAxisLabelBottomMarginProperty", + "ValueAxisLabelFontFamily": "ValueAxisLabelFontFamily", + "ValueAxisLabelFontFamilyProperty": "ValueAxisLabelFontFamilyProperty", + "ValueAxisLabelFontSize": "ValueAxisLabelFontSize", + "ValueAxisLabelFontSizeProperty": "ValueAxisLabelFontSizeProperty", + "ValueAxisLabelFontStyle": "ValueAxisLabelFontStyle", + "ValueAxisLabelFontStyleProperty": "ValueAxisLabelFontStyleProperty", + "ValueAxisLabelFontWeight": "ValueAxisLabelFontWeight", + "ValueAxisLabelFontWeightProperty": "ValueAxisLabelFontWeightProperty", + "ValueAxisLabelFormat": "ValueAxisLabelFormat", + "ValueAxisLabelFormatProperty": "ValueAxisLabelFormatProperty", + "ValueAxisLabelFormatSpecifiers": "ValueAxisLabelFormatSpecifiers", + "ValueAxisLabelFormatSpecifiersProperty": "ValueAxisLabelFormatSpecifiersProperty", + "ValueAxisLabelHorizontalAlignment": "ValueAxisLabelHorizontalAlignment", + "ValueAxisLabelHorizontalAlignmentProperty": "ValueAxisLabelHorizontalAlignmentProperty", + "ValueAxisLabelLeftMargin": "ValueAxisLabelLeftMargin", + "ValueAxisLabelLeftMarginProperty": "ValueAxisLabelLeftMarginProperty", + "ValueAxisLabelLocation": "ValueAxisLabelLocation", + "ValueAxisLabelLocationProperty": "ValueAxisLabelLocationProperty", + "ValueAxisLabelProperty": "ValueAxisLabelProperty", + "ValueAxisLabelRightMargin": "ValueAxisLabelRightMargin", + "ValueAxisLabelRightMarginProperty": "ValueAxisLabelRightMarginProperty", + "ValueAxisLabelTextColor": "ValueAxisLabelTextColor", + "ValueAxisLabelTextColorProperty": "ValueAxisLabelTextColorProperty", + "ValueAxisLabelTopMargin": "ValueAxisLabelTopMargin", + "ValueAxisLabelTopMarginProperty": "ValueAxisLabelTopMarginProperty", + "ValueAxisLabelVerticalAlignment": "ValueAxisLabelVerticalAlignment", + "ValueAxisLabelVerticalAlignmentProperty": "ValueAxisLabelVerticalAlignmentProperty", + "ValueAxisLabelVisibility": "ValueAxisLabelVisibility", + "ValueAxisLabelVisibilityProperty": "ValueAxisLabelVisibilityProperty", + "ValueAxisMajorStroke": "ValueAxisMajorStroke", + "ValueAxisMajorStrokeProperty": "ValueAxisMajorStrokeProperty", + "ValueAxisMajorStrokeThickness": "ValueAxisMajorStrokeThickness", + "ValueAxisMajorStrokeThicknessProperty": "ValueAxisMajorStrokeThicknessProperty", + "ValueAxisMaximumExtent": "ValueAxisMaximumExtent", + "ValueAxisMaximumExtentPercentage": "ValueAxisMaximumExtentPercentage", + "ValueAxisMaximumExtentPercentageProperty": "ValueAxisMaximumExtentPercentageProperty", + "ValueAxisMaximumExtentProperty": "ValueAxisMaximumExtentProperty", + "ValueAxisMinorStroke": "ValueAxisMinorStroke", + "ValueAxisMinorStrokeProperty": "ValueAxisMinorStrokeProperty", + "ValueAxisMinorStrokeThickness": "ValueAxisMinorStrokeThickness", + "ValueAxisMinorStrokeThicknessProperty": "ValueAxisMinorStrokeThicknessProperty", + "ValueAxisStrip": "ValueAxisStrip", + "ValueAxisStripProperty": "ValueAxisStripProperty", + "ValueAxisStroke": "ValueAxisStroke", + "ValueAxisStrokeProperty": "ValueAxisStrokeProperty", + "ValueAxisStrokeThickness": "ValueAxisStrokeThickness", + "ValueAxisStrokeThicknessProperty": "ValueAxisStrokeThicknessProperty", + "ValueAxisTickLength": "ValueAxisTickLength", + "ValueAxisTickLengthProperty": "ValueAxisTickLengthProperty", + "ValueAxisTickStroke": "ValueAxisTickStroke", + "ValueAxisTickStrokeProperty": "ValueAxisTickStrokeProperty", + "ValueAxisTickStrokeThickness": "ValueAxisTickStrokeThickness", + "ValueAxisTickStrokeThicknessProperty": "ValueAxisTickStrokeThicknessProperty", + "ValueAxisTitle": "ValueAxisTitle", + "ValueAxisTitleAlignment": "ValueAxisTitleAlignment", + "ValueAxisTitleAlignmentProperty": "ValueAxisTitleAlignmentProperty", + "ValueAxisTitleAngle": "ValueAxisTitleAngle", + "ValueAxisTitleAngleProperty": "ValueAxisTitleAngleProperty", + "ValueAxisTitleBottomMargin": "ValueAxisTitleBottomMargin", + "ValueAxisTitleBottomMarginProperty": "ValueAxisTitleBottomMarginProperty", + "ValueAxisTitleFontFamily": "ValueAxisTitleFontFamily", + "ValueAxisTitleFontFamilyProperty": "ValueAxisTitleFontFamilyProperty", + "ValueAxisTitleFontSize": "ValueAxisTitleFontSize", + "ValueAxisTitleFontSizeProperty": "ValueAxisTitleFontSizeProperty", + "ValueAxisTitleFontStyle": "ValueAxisTitleFontStyle", + "ValueAxisTitleFontStyleProperty": "ValueAxisTitleFontStyleProperty", + "ValueAxisTitleFontWeight": "ValueAxisTitleFontWeight", + "ValueAxisTitleFontWeightProperty": "ValueAxisTitleFontWeightProperty", + "ValueAxisTitleLeftMargin": "ValueAxisTitleLeftMargin", + "ValueAxisTitleLeftMarginProperty": "ValueAxisTitleLeftMarginProperty", + "ValueAxisTitleMargin": "ValueAxisTitleMargin", + "ValueAxisTitleMarginProperty": "ValueAxisTitleMarginProperty", + "ValueAxisTitleProperty": "ValueAxisTitleProperty", + "ValueAxisTitleRightMargin": "ValueAxisTitleRightMargin", + "ValueAxisTitleRightMarginProperty": "ValueAxisTitleRightMarginProperty", + "ValueAxisTitleTextColor": "ValueAxisTitleTextColor", + "ValueAxisTitleTextColorProperty": "ValueAxisTitleTextColorProperty", + "ValueAxisTitleTopMargin": "ValueAxisTitleTopMargin", + "ValueAxisTitleTopMarginProperty": "ValueAxisTitleTopMarginProperty" + } + } + ], + "RadialBaseChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialBaseChartDescription", + "k": "class", + "s": "classes", + "m": { + "RadialBaseChartDescription()": "RadialBaseChartDescription()", + "RadialBaseChartDescription": "RadialBaseChartDescription()", + "ActualAngleAxisLabelTextColor": "ActualAngleAxisLabelTextColor", + "ActualValueAxisLabelTextColor": "ActualValueAxisLabelTextColor", + "AngleAxisExtent": "AngleAxisExtent", + "AngleAxisFormatLabelRef": "AngleAxisFormatLabelRef", + "AngleAxisInverted": "AngleAxisInverted", + "AngleAxisLabelAngle": "AngleAxisLabelAngle", + "AngleAxisLabelBottomMargin": "AngleAxisLabelBottomMargin", + "AngleAxisLabelFormat": "AngleAxisLabelFormat", + "AngleAxisLabelFormatSpecifiers": "AngleAxisLabelFormatSpecifiers", + "AngleAxisLabelHorizontalAlignment": "AngleAxisLabelHorizontalAlignment", + "AngleAxisLabelLeftMargin": "AngleAxisLabelLeftMargin", + "AngleAxisLabelLocation": "AngleAxisLabelLocation", + "AngleAxisLabelRef": "AngleAxisLabelRef", + "AngleAxisLabelRightMargin": "AngleAxisLabelRightMargin", + "AngleAxisLabelTextColor": "AngleAxisLabelTextColor", + "AngleAxisLabelTextStyle": "AngleAxisLabelTextStyle", + "AngleAxisLabelTopMargin": "AngleAxisLabelTopMargin", + "AngleAxisLabelVerticalAlignment": "AngleAxisLabelVerticalAlignment", + "AngleAxisLabelVisibility": "AngleAxisLabelVisibility", + "AngleAxisMajorStroke": "AngleAxisMajorStroke", + "AngleAxisMajorStrokeThickness": "AngleAxisMajorStrokeThickness", + "AngleAxisMaximumExtent": "AngleAxisMaximumExtent", + "AngleAxisMaximumExtentPercentage": "AngleAxisMaximumExtentPercentage", + "AngleAxisMinorStroke": "AngleAxisMinorStroke", + "AngleAxisMinorStrokeThickness": "AngleAxisMinorStrokeThickness", + "AngleAxisStrip": "AngleAxisStrip", + "AngleAxisStroke": "AngleAxisStroke", + "AngleAxisStrokeThickness": "AngleAxisStrokeThickness", + "AngleAxisTickLength": "AngleAxisTickLength", + "AngleAxisTickStroke": "AngleAxisTickStroke", + "AngleAxisTickStrokeThickness": "AngleAxisTickStrokeThickness", + "AngleAxisTitle": "AngleAxisTitle", + "AngleAxisTitleAlignment": "AngleAxisTitleAlignment", + "AngleAxisTitleAngle": "AngleAxisTitleAngle", + "AngleAxisTitleBottomMargin": "AngleAxisTitleBottomMargin", + "AngleAxisTitleLeftMargin": "AngleAxisTitleLeftMargin", + "AngleAxisTitleMargin": "AngleAxisTitleMargin", + "AngleAxisTitleRightMargin": "AngleAxisTitleRightMargin", + "AngleAxisTitleTextColor": "AngleAxisTitleTextColor", + "AngleAxisTitleTextStyle": "AngleAxisTitleTextStyle", + "AngleAxisTitleTopMargin": "AngleAxisTitleTopMargin", + "Type": "Type", + "ValueAxisExtent": "ValueAxisExtent", + "ValueAxisFormatLabelRef": "ValueAxisFormatLabelRef", + "ValueAxisInverted": "ValueAxisInverted", + "ValueAxisLabelAngle": "ValueAxisLabelAngle", + "ValueAxisLabelBottomMargin": "ValueAxisLabelBottomMargin", + "ValueAxisLabelFormat": "ValueAxisLabelFormat", + "ValueAxisLabelFormatSpecifiers": "ValueAxisLabelFormatSpecifiers", + "ValueAxisLabelHorizontalAlignment": "ValueAxisLabelHorizontalAlignment", + "ValueAxisLabelLeftMargin": "ValueAxisLabelLeftMargin", + "ValueAxisLabelLocation": "ValueAxisLabelLocation", + "ValueAxisLabelRef": "ValueAxisLabelRef", + "ValueAxisLabelRightMargin": "ValueAxisLabelRightMargin", + "ValueAxisLabelTextColor": "ValueAxisLabelTextColor", + "ValueAxisLabelTextStyle": "ValueAxisLabelTextStyle", + "ValueAxisLabelTopMargin": "ValueAxisLabelTopMargin", + "ValueAxisLabelVerticalAlignment": "ValueAxisLabelVerticalAlignment", + "ValueAxisLabelVisibility": "ValueAxisLabelVisibility", + "ValueAxisMajorStroke": "ValueAxisMajorStroke", + "ValueAxisMajorStrokeThickness": "ValueAxisMajorStrokeThickness", + "ValueAxisMaximumExtent": "ValueAxisMaximumExtent", + "ValueAxisMaximumExtentPercentage": "ValueAxisMaximumExtentPercentage", + "ValueAxisMinorStroke": "ValueAxisMinorStroke", + "ValueAxisMinorStrokeThickness": "ValueAxisMinorStrokeThickness", + "ValueAxisStrip": "ValueAxisStrip", + "ValueAxisStroke": "ValueAxisStroke", + "ValueAxisStrokeThickness": "ValueAxisStrokeThickness", + "ValueAxisTickLength": "ValueAxisTickLength", + "ValueAxisTickStroke": "ValueAxisTickStroke", + "ValueAxisTickStrokeThickness": "ValueAxisTickStrokeThickness", + "ValueAxisTitle": "ValueAxisTitle", + "ValueAxisTitleAlignment": "ValueAxisTitleAlignment", + "ValueAxisTitleAngle": "ValueAxisTitleAngle", + "ValueAxisTitleBottomMargin": "ValueAxisTitleBottomMargin", + "ValueAxisTitleLeftMargin": "ValueAxisTitleLeftMargin", + "ValueAxisTitleMargin": "ValueAxisTitleMargin", + "ValueAxisTitleRightMargin": "ValueAxisTitleRightMargin", + "ValueAxisTitleTextColor": "ValueAxisTitleTextColor", + "ValueAxisTitleTextStyle": "ValueAxisTitleTextStyle", + "ValueAxisTitleTopMargin": "ValueAxisTitleTopMargin" + } + } + ], + "RadialBaseChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialBaseChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialBaseChartDescriptionMetadata()": "RadialBaseChartDescriptionMetadata()", + "RadialBaseChartDescriptionMetadata": "RadialBaseChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialBaseDescription", + "k": "class", + "s": "classes", + "m": { + "RadialBaseDescription()": "RadialBaseDescription()", + "RadialBaseDescription": "RadialBaseDescription()", + "AngleAxisRef": "AngleAxisRef", + "AssigningRadialMarkerStyleRef": "AssigningRadialMarkerStyleRef", + "AssigningRadialStyleRef": "AssigningRadialStyleRef", + "AutoCalloutLabelPrecision": "AutoCalloutLabelPrecision", + "AutoCalloutLabelValueSeparator": "AutoCalloutLabelValueSeparator", + "AutoCalloutOthersLabelFormat": "AutoCalloutOthersLabelFormat", + "AutoCalloutOthersLabelFormatSpecifiers": "AutoCalloutOthersLabelFormatSpecifiers", + "AutoCalloutPercentagePrecision": "AutoCalloutPercentagePrecision", + "AutoCalloutRadialLabelMode": "AutoCalloutRadialLabelMode", + "CategoryCollisionMode": "CategoryCollisionMode", + "ClipSeriesToBounds": "ClipSeriesToBounds", + "IsCustomRadialMarkerStyleAllowed": "IsCustomRadialMarkerStyleAllowed", + "IsCustomRadialStyleAllowed": "IsCustomRadialStyleAllowed", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "LegendProportionalRadialLabelFormat": "LegendProportionalRadialLabelFormat", + "LegendProportionalRadialLabelFormatSpecifiers": "LegendProportionalRadialLabelFormatSpecifiers", + "LegendRadialLabelMode": "LegendRadialLabelMode", + "OthersCategoryBrush": "OthersCategoryBrush", + "OthersCategoryOutline": "OthersCategoryOutline", + "OthersLegendProportionalRadialLabelFormat": "OthersLegendProportionalRadialLabelFormat", + "OthersLegendProportionalRadialLabelFormatSpecifiers": "OthersLegendProportionalRadialLabelFormatSpecifiers", + "OthersProportionalRadialLabelFormat": "OthersProportionalRadialLabelFormat", + "OthersProportionalRadialLabelFormatSpecifiers": "OthersProportionalRadialLabelFormatSpecifiers", + "ProportionalRadialLabelFormat": "ProportionalRadialLabelFormat", + "ProportionalRadialLabelFormatSpecifiers": "ProportionalRadialLabelFormatSpecifiers", + "TransitionInMode": "TransitionInMode", + "Type": "Type", + "ValueAxisRef": "ValueAxisRef" + } + } + ], + "RadialBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialBaseDescriptionMetadata()": "RadialBaseDescriptionMetadata()", + "RadialBaseDescriptionMetadata": "RadialBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialColumnSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RadialColumnSeries", + "k": "class", + "s": "classes", + "m": { + "RadialColumnSeries()": "RadialColumnSeries()", + "RadialColumnSeries": "RadialColumnSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "RadialColumnSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RadialColumnSeriesDescription()": "RadialColumnSeriesDescription()", + "RadialColumnSeriesDescription": "RadialColumnSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "RadialColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialColumnSeriesDescriptionMetadata()": "RadialColumnSeriesDescriptionMetadata()", + "RadialColumnSeriesDescriptionMetadata": "RadialColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialColumnSeriesDescriptionModule()": "RadialColumnSeriesDescriptionModule()", + "RadialColumnSeriesDescriptionModule": "RadialColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeBackingShape": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/enums/RadialGaugeBackingShape", + "k": "enum", + "s": "enums" + } + ], + "RadialGaugeCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialGaugeCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeCoreDescriptionModule()": "RadialGaugeCoreDescriptionModule()", + "RadialGaugeCoreDescriptionModule": "RadialGaugeCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDashboardTileDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialGaugeDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDashboardTileDescriptionModule()": "RadialGaugeDashboardTileDescriptionModule()", + "RadialGaugeDashboardTileDescriptionModule": "RadialGaugeDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/RadialGaugeDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDashboardTileFeature()": "RadialGaugeDashboardTileFeature()", + "RadialGaugeDashboardTileFeature": "RadialGaugeDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialGaugeDescription", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDescription()": "RadialGaugeDescription()", + "RadialGaugeDescription": "RadialGaugeDescription()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AlignHighlightLabelRef": "AlignHighlightLabelRef", + "AlignLabelRef": "AlignLabelRef", + "AlignSubtitleRef": "AlignSubtitleRef", + "AlignTitleRef": "AlignTitleRef", + "Background": "Background", + "BackingBrush": "BackingBrush", + "BackingCornerRadius": "BackingCornerRadius", + "BackingInnerExtent": "BackingInnerExtent", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOutline": "BackingOutline", + "BackingOversweep": "BackingOversweep", + "BackingShape": "BackingShape", + "BackingStrokeThickness": "BackingStrokeThickness", + "CenterX": "CenterX", + "CenterY": "CenterY", + "DuplicateLabelOmissionStrategy": "DuplicateLabelOmissionStrategy", + "Font": "Font", + "FontBrush": "FontBrush", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatHighlightLabelRef": "FormatHighlightLabelRef", + "FormatLabelRef": "FormatLabelRef", + "FormatSubtitleRef": "FormatSubtitleRef", + "FormatTitleRef": "FormatTitleRef", + "Height": "Height", + "HighlightLabelAngle": "HighlightLabelAngle", + "HighlightLabelBrush": "HighlightLabelBrush", + "HighlightLabelDisplaysValue": "HighlightLabelDisplaysValue", + "HighlightLabelExtent": "HighlightLabelExtent", + "HighlightLabelFontFamily": "HighlightLabelFontFamily", + "HighlightLabelFontSize": "HighlightLabelFontSize", + "HighlightLabelFontStyle": "HighlightLabelFontStyle", + "HighlightLabelFontWeight": "HighlightLabelFontWeight", + "HighlightLabelFormat": "HighlightLabelFormat", + "HighlightLabelFormatSpecifiers": "HighlightLabelFormatSpecifiers", + "HighlightLabelSnapsToNeedlePivot": "HighlightLabelSnapsToNeedlePivot", + "HighlightLabelText": "HighlightLabelText", + "HighlightValue": "HighlightValue", + "HighlightValueChangedRef": "HighlightValueChangedRef", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueOpacity": "HighlightValueOpacity", + "Interval": "Interval", + "IsHighlightNeedleDraggingConstrained": "IsHighlightNeedleDraggingConstrained", + "IsHighlightNeedleDraggingEnabled": "IsHighlightNeedleDraggingEnabled", + "IsNeedleDraggingConstrained": "IsNeedleDraggingConstrained", + "IsNeedleDraggingEnabled": "IsNeedleDraggingEnabled", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInterval": "LabelInterval", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "MinorTickBrush": "MinorTickBrush", + "MinorTickCount": "MinorTickCount", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "NeedleBaseFeatureExtent": "NeedleBaseFeatureExtent", + "NeedleBaseFeatureWidthRatio": "NeedleBaseFeatureWidthRatio", + "NeedleBrush": "NeedleBrush", + "NeedleEndExtent": "NeedleEndExtent", + "NeedleEndWidthRatio": "NeedleEndWidthRatio", + "NeedleOutline": "NeedleOutline", + "NeedlePivotBrush": "NeedlePivotBrush", + "NeedlePivotInnerWidthRatio": "NeedlePivotInnerWidthRatio", + "NeedlePivotOutline": "NeedlePivotOutline", + "NeedlePivotShape": "NeedlePivotShape", + "NeedlePivotStrokeThickness": "NeedlePivotStrokeThickness", + "NeedlePivotWidthRatio": "NeedlePivotWidthRatio", + "NeedlePointFeatureExtent": "NeedlePointFeatureExtent", + "NeedlePointFeatureWidthRatio": "NeedlePointFeatureWidthRatio", + "NeedleShape": "NeedleShape", + "NeedleStartExtent": "NeedleStartExtent", + "NeedleStartWidthRatio": "NeedleStartWidthRatio", + "NeedleStrokeThickness": "NeedleStrokeThickness", + "OpticalScalingEnabled": "OpticalScalingEnabled", + "OpticalScalingRatio": "OpticalScalingRatio", + "OpticalScalingSize": "OpticalScalingSize", + "PixelScalingRatio": "PixelScalingRatio", + "RadiusMultiplier": "RadiusMultiplier", + "RangeBrushes": "RangeBrushes", + "RangeOutlines": "RangeOutlines", + "Ranges": "Ranges", + "ScaleBrush": "ScaleBrush", + "ScaleEndAngle": "ScaleEndAngle", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleOversweep": "ScaleOversweep", + "ScaleOversweepShape": "ScaleOversweepShape", + "ScaleStartAngle": "ScaleStartAngle", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleSweepDirection": "ScaleSweepDirection", + "SubtitleAngle": "SubtitleAngle", + "SubtitleBrush": "SubtitleBrush", + "SubtitleDisplaysValue": "SubtitleDisplaysValue", + "SubtitleExtent": "SubtitleExtent", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFormat": "SubtitleFormat", + "SubtitleFormatSpecifiers": "SubtitleFormatSpecifiers", + "SubtitleSnapsToNeedlePivot": "SubtitleSnapsToNeedlePivot", + "SubtitleText": "SubtitleText", + "TickBrush": "TickBrush", + "TickEndExtent": "TickEndExtent", + "TickStartExtent": "TickStartExtent", + "TickStrokeThickness": "TickStrokeThickness", + "TitleAngle": "TitleAngle", + "TitleBrush": "TitleBrush", + "TitleDisplaysValue": "TitleDisplaysValue", + "TitleExtent": "TitleExtent", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "TitleFormat": "TitleFormat", + "TitleFormatSpecifiers": "TitleFormatSpecifiers", + "TitleSnapsToNeedlePivot": "TitleSnapsToNeedlePivot", + "TitleText": "TitleText", + "TransitionDuration": "TransitionDuration", + "TransitionProgress": "TransitionProgress", + "Type": "Type", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef", + "Width": "Width" + } + } + ], + "RadialGaugeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialGaugeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDescriptionMetadata()": "RadialGaugeDescriptionMetadata()", + "RadialGaugeDescriptionMetadata": "RadialGaugeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialGaugeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDescriptionModule()": "RadialGaugeDescriptionModule()", + "RadialGaugeDescriptionModule": "RadialGaugeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDuplicateLabelOmissionStrategy": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/enums/RadialGaugeDuplicateLabelOmissionStrategy", + "k": "enum", + "s": "enums" + } + ], + "RadialGaugeNeedleShape": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/enums/RadialGaugeNeedleShape", + "k": "enum", + "s": "enums" + } + ], + "RadialGaugePivotShape": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/enums/RadialGaugePivotShape", + "k": "enum", + "s": "enums" + } + ], + "RadialGaugeRange": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/RadialGaugeRange", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRange()": "RadialGaugeRange()", + "RadialGaugeRange": "RadialGaugeRange()", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "EndInset": "EndInset", + "EndInsetProperty": "EndInsetProperty", + "EndValue": "EndValue", + "EndValueProperty": "EndValueProperty", + "InnerEndExtent": "InnerEndExtent", + "InnerEndExtentProperty": "InnerEndExtentProperty", + "InnerStartExtent": "InnerStartExtent", + "InnerStartExtentProperty": "InnerStartExtentProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OuterEndExtent": "OuterEndExtent", + "OuterEndExtentProperty": "OuterEndExtentProperty", + "OuterStartExtent": "OuterStartExtent", + "OuterStartExtentProperty": "OuterStartExtentProperty", + "Outline": "Outline", + "OutlineProperty": "OutlineProperty", + "StartInset": "StartInset", + "StartInsetProperty": "StartInsetProperty", + "StartValue": "StartValue", + "StartValueProperty": "StartValueProperty", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RadialGaugeRangeCollection": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/RadialGaugeRangeCollection", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRangeCollection()": "RadialGaugeRangeCollection()", + "RadialGaugeRangeCollection": "RadialGaugeRangeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RadialGaugeRangeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialGaugeRangeDescription", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRangeDescription()": "RadialGaugeRangeDescription()", + "RadialGaugeRangeDescription": "RadialGaugeRangeDescription()", + "Brush": "Brush", + "EndInset": "EndInset", + "EndValue": "EndValue", + "InnerEndExtent": "InnerEndExtent", + "InnerStartExtent": "InnerStartExtent", + "OuterEndExtent": "OuterEndExtent", + "OuterStartExtent": "OuterStartExtent", + "Outline": "Outline", + "StartInset": "StartInset", + "StartValue": "StartValue", + "StrokeThickness": "StrokeThickness", + "Type": "Type" + } + } + ], + "RadialGaugeRangeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialGaugeRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRangeDescriptionMetadata()": "RadialGaugeRangeDescriptionMetadata()", + "RadialGaugeRangeDescriptionMetadata": "RadialGaugeRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeRangeDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialGaugeRangeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRangeDescriptionModule()": "RadialGaugeRangeDescriptionModule()", + "RadialGaugeRangeDescriptionModule": "RadialGaugeRangeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeScaleOversweepShape": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/enums/RadialGaugeScaleOversweepShape", + "k": "enum", + "s": "enums" + } + ], + "RadialLabelMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/RadialLabelMode", + "k": "enum", + "s": "enums" + } + ], + "RadialLineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RadialLineSeries", + "k": "class", + "s": "classes", + "m": { + "RadialLineSeries()": "RadialLineSeries()", + "RadialLineSeries": "RadialLineSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "RadialLineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RadialLineSeriesDescription()": "RadialLineSeriesDescription()", + "RadialLineSeriesDescription": "RadialLineSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "RadialLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialLineSeriesDescriptionMetadata()": "RadialLineSeriesDescriptionMetadata()", + "RadialLineSeriesDescriptionMetadata": "RadialLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialLineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialLineSeriesDescriptionModule()": "RadialLineSeriesDescriptionModule()", + "RadialLineSeriesDescriptionModule": "RadialLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialPieSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RadialPieSeries", + "k": "class", + "s": "classes", + "m": { + "RadialPieSeries()": "RadialPieSeries()", + "RadialPieSeries": "RadialPieSeries()", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendEmptyValuesModeProperty": "LegendEmptyValuesModeProperty", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendLabelMemberPathProperty": "LegendLabelMemberPathProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty", + "UseInsetOutlines": "UseInsetOutlines", + "UseInsetOutlinesProperty": "UseInsetOutlinesProperty" + } + } + ], + "RadialPieSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialPieSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RadialPieSeriesDescription()": "RadialPieSeriesDescription()", + "RadialPieSeriesDescription": "RadialPieSeriesDescription()", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type", + "UseInsetOutlines": "UseInsetOutlines" + } + } + ], + "RadialPieSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialPieSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialPieSeriesDescriptionMetadata()": "RadialPieSeriesDescriptionMetadata()", + "RadialPieSeriesDescriptionMetadata": "RadialPieSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialPieSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RadialPieSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialPieSeriesDescriptionModule()": "RadialPieSeriesDescriptionModule()", + "RadialPieSeriesDescriptionModule": "RadialPieSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RangeAreaSeries", + "k": "class", + "s": "classes", + "m": { + "RangeAreaSeries()": "RangeAreaSeries()", + "RangeAreaSeries": "RangeAreaSeries()" + } + } + ], + "RangeAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RangeAreaSeriesDescription()": "RangeAreaSeriesDescription()", + "RangeAreaSeriesDescription": "RangeAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "RangeAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RangeAreaSeriesDescriptionMetadata()": "RangeAreaSeriesDescriptionMetadata()", + "RangeAreaSeriesDescriptionMetadata": "RangeAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RangeAreaSeriesDescriptionModule()": "RangeAreaSeriesDescriptionModule()", + "RangeAreaSeriesDescriptionModule": "RangeAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeBarSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RangeBarSeries", + "k": "class", + "s": "classes", + "m": { + "RangeBarSeries()": "RangeBarSeries()", + "RangeBarSeries": "RangeBarSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "RangeBarSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeBarSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RangeBarSeriesDescription()": "RangeBarSeriesDescription()", + "RangeBarSeriesDescription": "RangeBarSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "RangeBarSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeBarSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RangeBarSeriesDescriptionMetadata()": "RangeBarSeriesDescriptionMetadata()", + "RangeBarSeriesDescriptionMetadata": "RangeBarSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeBarSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeBarSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RangeBarSeriesDescriptionModule()": "RangeBarSeriesDescriptionModule()", + "RangeBarSeriesDescriptionModule": "RangeBarSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeCategorySeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RangeCategorySeries", + "k": "class", + "s": "classes", + "m": { + "HighMemberPath": "HighMemberPath", + "HighMemberPathProperty": "HighMemberPathProperty", + "HighlightedHighMemberPath": "HighlightedHighMemberPath", + "HighlightedHighMemberPathProperty": "HighlightedHighMemberPathProperty", + "HighlightedLowMemberPath": "HighlightedLowMemberPath", + "HighlightedLowMemberPathProperty": "HighlightedLowMemberPathProperty", + "LowMemberPath": "LowMemberPath", + "LowMemberPathProperty": "LowMemberPathProperty" + } + } + ], + "RangeCategorySeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RangeCategorySeriesDescription()": "RangeCategorySeriesDescription()", + "RangeCategorySeriesDescription": "RangeCategorySeriesDescription()", + "HighMemberPath": "HighMemberPath", + "HighlightedHighMemberPath": "HighlightedHighMemberPath", + "HighlightedLowMemberPath": "HighlightedLowMemberPath", + "LowMemberPath": "LowMemberPath", + "Type": "Type" + } + } + ], + "RangeCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RangeCategorySeriesDescriptionMetadata()": "RangeCategorySeriesDescriptionMetadata()", + "RangeCategorySeriesDescriptionMetadata": "RangeCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeColumnSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RangeColumnSeries", + "k": "class", + "s": "classes", + "m": { + "RangeColumnSeries()": "RangeColumnSeries()", + "RangeColumnSeries": "RangeColumnSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "RangeColumnSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RangeColumnSeriesDescription()": "RangeColumnSeriesDescription()", + "RangeColumnSeriesDescription": "RangeColumnSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "RangeColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RangeColumnSeriesDescriptionMetadata()": "RangeColumnSeriesDescriptionMetadata()", + "RangeColumnSeriesDescriptionMetadata": "RangeColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RangeColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RangeColumnSeriesDescriptionModule()": "RangeColumnSeriesDescriptionModule()", + "RangeColumnSeriesDescriptionModule": "RangeColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/RangeVisualData", + "k": "class", + "s": "classes", + "m": { + "RangeVisualData()": "RangeVisualData()", + "RangeVisualData": "RangeVisualData()", + "RangePath": "RangePath", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "RangeVisualDataList": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/RangeVisualDataList", + "k": "class", + "s": "classes", + "m": { + "RangeVisualDataList()": "RangeVisualDataList()", + "RangeVisualDataList": "RangeVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "RateOfChangeAndMomentumIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RateOfChangeAndMomentumIndicator", + "k": "class", + "s": "classes", + "m": { + "RateOfChangeAndMomentumIndicator()": "RateOfChangeAndMomentumIndicator()", + "RateOfChangeAndMomentumIndicator": "RateOfChangeAndMomentumIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "RateOfChangeAndMomentumIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RateOfChangeAndMomentumIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "RateOfChangeAndMomentumIndicatorDescription()": "RateOfChangeAndMomentumIndicatorDescription()", + "RateOfChangeAndMomentumIndicatorDescription": "RateOfChangeAndMomentumIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "RateOfChangeAndMomentumIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RateOfChangeAndMomentumIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RateOfChangeAndMomentumIndicatorDescriptionMetadata()": "RateOfChangeAndMomentumIndicatorDescriptionMetadata()", + "RateOfChangeAndMomentumIndicatorDescriptionMetadata": "RateOfChangeAndMomentumIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RateOfChangeAndMomentumIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RateOfChangeAndMomentumIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RateOfChangeAndMomentumIndicatorDescriptionModule()": "RateOfChangeAndMomentumIndicatorDescriptionModule()", + "RateOfChangeAndMomentumIndicatorDescriptionModule": "RateOfChangeAndMomentumIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ReadOnlyNotifyCollection": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/ReadOnlyNotifyCollection", + "k": "class", + "s": "classes", + "m": { + "ReadOnlyNotifyCollection(IList)": "ReadOnlyNotifyCollection(IList)", + "ReadOnlyNotifyCollection": "ReadOnlyNotifyCollection(IList)", + "Contains(T)": "Contains(T)", + "Contains": "Contains(T)", + "CopyTo(T[], int)": "CopyTo(T[], int)", + "CopyTo": "CopyTo(T[], int)", + "Count": "Count", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "IndexOf(T)": "IndexOf(T)", + "IndexOf": "IndexOf(T)", + "IsReadOnly": "IsReadOnly", + "this[int]": "this[int]", + "Source": "Source" + } + } + ], + "ReadOnlyObservableCollectionWrapper": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/ReadOnlyObservableCollectionWrapper", + "k": "class", + "s": "classes", + "m": { + "ReadOnlyObservableCollectionWrapper(IList)": "ReadOnlyObservableCollectionWrapper(IList)", + "ReadOnlyObservableCollectionWrapper": "ReadOnlyObservableCollectionWrapper(IList)" + } + } + ], + "ReadOnlyStreamAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/ReadOnlyStreamAttribute", + "k": "class", + "s": "classes", + "m": { + "ReadOnlyStreamAttribute()": "ReadOnlyStreamAttribute()", + "ReadOnlyStreamAttribute": "ReadOnlyStreamAttribute()" + } + } + ], + "RearrangedList": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RearrangedList", + "k": "class", + "s": "classes", + "m": { + "RearrangedList(IList, IList)": "RearrangedList(IList, IList)", + "RearrangedList": "RearrangedList(IList, IList)", + "Add(T)": "Add(T)", + "Add": "Add(T)", + "Clear()": "Clear()", + "Clear": "Clear()", + "Contains(T)": "Contains(T)", + "Contains": "Contains(T)", + "CopyTo(T[], int)": "CopyTo(T[], int)", + "CopyTo": "CopyTo(T[], int)", + "Count": "Count", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "IndexOf(T)": "IndexOf(T)", + "IndexOf": "IndexOf(T)", + "Insert(int, T)": "Insert(int, T)", + "Insert": "Insert(int, T)", + "IsReadOnly": "IsReadOnly", + "this[int]": "this[int]", + "Remove(T)": "Remove(T)", + "Remove": "Remove(T)", + "RemoveAt(int)": "RemoveAt(int)", + "RemoveAt": "RemoveAt(int)" + } + } + ], + "RectangleGeometryData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RectangleGeometryData", + "k": "class", + "s": "classes", + "m": { + "RectangleGeometryData()": "RectangleGeometryData()", + "RectangleGeometryData": "RectangleGeometryData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Height": "Height", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "Width": "Width", + "X": "X", + "Y": "Y" + } + } + ], + "RectangleVisualData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RectangleVisualData", + "k": "class", + "s": "classes", + "m": { + "RectangleVisualData()": "RectangleVisualData()", + "RectangleVisualData": "RectangleVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Height": "Height", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "Width": "Width" + } + } + ], + "RectChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RectChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "RectChangedEventArgs(Rect, Rect)": "RectChangedEventArgs(Rect, Rect)", + "RectChangedEventArgs": "RectChangedEventArgs(Rect, Rect)", + "NewRect": "NewRect", + "OldRect": "OldRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RectChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RectChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "RectChangedEventArgsDescription()": "RectChangedEventArgsDescription()", + "RectChangedEventArgsDescription": "RectChangedEventArgsDescription()", + "NewRect": "NewRect", + "OldRect": "OldRect", + "Type": "Type" + } + } + ], + "RectChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RectChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RectChangedEventArgsDescriptionMetadata()": "RectChangedEventArgsDescriptionMetadata()", + "RectChangedEventArgsDescriptionMetadata": "RectChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RectData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RectData", + "k": "class", + "s": "classes", + "m": { + "RectData(double, double, double, double)": "RectData(double, double, double, double)", + "RectData": "RectData(double, double, double, double)", + "Empty": "Empty", + "FromPixelUnits()": "FromPixelUnits()", + "FromPixelUnits": "FromPixelUnits()", + "Height": "Height", + "IsEmpty": "IsEmpty", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Width": "Width" + } + } + ], + "RectDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RectDescription", + "k": "class", + "s": "classes", + "m": { + "RectDescription()": "RectDescription()", + "RectDescription": "RectDescription()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Height": "Height", + "Left": "Left", + "Top": "Top", + "Width": "Width" + } + } + ], + "RefreshCompletedEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RefreshCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "RefreshCompletedEventArgs()": "RefreshCompletedEventArgs()", + "RefreshCompletedEventArgs": "RefreshCompletedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RefreshCompletedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RefreshCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "RefreshCompletedEventArgsDescription()": "RefreshCompletedEventArgsDescription()", + "RefreshCompletedEventArgsDescription": "RefreshCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "RefreshCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RefreshCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RefreshCompletedEventArgsDescriptionMetadata()": "RefreshCompletedEventArgsDescriptionMetadata()", + "RefreshCompletedEventArgsDescriptionMetadata": "RefreshCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RelativeStrengthIndexIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RelativeStrengthIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "RelativeStrengthIndexIndicator()": "RelativeStrengthIndexIndicator()", + "RelativeStrengthIndexIndicator": "RelativeStrengthIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "RelativeStrengthIndexIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RelativeStrengthIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "RelativeStrengthIndexIndicatorDescription()": "RelativeStrengthIndexIndicatorDescription()", + "RelativeStrengthIndexIndicatorDescription": "RelativeStrengthIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "RelativeStrengthIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RelativeStrengthIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RelativeStrengthIndexIndicatorDescriptionMetadata()": "RelativeStrengthIndexIndicatorDescriptionMetadata()", + "RelativeStrengthIndexIndicatorDescriptionMetadata": "RelativeStrengthIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RelativeStrengthIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RelativeStrengthIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RelativeStrengthIndexIndicatorDescriptionModule()": "RelativeStrengthIndexIndicatorDescriptionModule()", + "RelativeStrengthIndexIndicatorDescriptionModule": "RelativeStrengthIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RenderRequestedEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RenderRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "RenderRequestedEventArgs()": "RenderRequestedEventArgs()", + "RenderRequestedEventArgs": "RenderRequestedEventArgs()", + "Animate": "Animate", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RenderRequestedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RenderRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "RenderRequestedEventArgsDescription()": "RenderRequestedEventArgsDescription()", + "RenderRequestedEventArgsDescription": "RenderRequestedEventArgsDescription()", + "Animate": "Animate", + "Type": "Type" + } + } + ], + "RenderRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RenderRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RenderRequestedEventArgsDescriptionMetadata()": "RenderRequestedEventArgsDescriptionMetadata()", + "RenderRequestedEventArgsDescriptionMetadata": "RenderRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsivePhase": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ResponsivePhase", + "k": "class", + "s": "classes", + "m": { + "ResponsivePhase()": "ResponsivePhase()", + "ResponsivePhase": "ResponsivePhase()", + "AddColumnExchanger()": "AddColumnExchanger()", + "AddColumnExchanger": "AddColumnExchanger()", + "AddColumnExchanger(ColumnExchanger)": "AddColumnExchanger(ColumnExchanger)", + "AddColumnPropertySetter()": "AddColumnPropertySetter()", + "AddColumnPropertySetter": "AddColumnPropertySetter()", + "AddColumnPropertySetter(ColumnPropertySetter)": "AddColumnPropertySetter(ColumnPropertySetter)", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "DelayMilliseconds": "DelayMilliseconds", + "DelayMillisecondsProperty": "DelayMillisecondsProperty", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "IsStoreInitialized": "IsStoreInitialized", + "Name": "Name", + "NameProperty": "NameProperty", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "ToString()": "ToString()", + "ToString": "ToString()", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsivePhaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsivePhaseDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsivePhaseDescription()": "ResponsivePhaseDescription()", + "ResponsivePhaseDescription": "ResponsivePhaseDescription()", + "DelayMilliseconds": "DelayMilliseconds", + "Type": "Type" + } + } + ], + "ResponsivePhaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsivePhaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsivePhaseDescriptionMetadata()": "ResponsivePhaseDescriptionMetadata()", + "ResponsivePhaseDescriptionMetadata": "ResponsivePhaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsivePhasesCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ResponsivePhasesCollection", + "k": "class", + "s": "classes", + "m": { + "ResponsivePhasesCollection()": "ResponsivePhasesCollection()", + "ResponsivePhasesCollection": "ResponsivePhasesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveState": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ResponsiveState", + "k": "class", + "s": "classes", + "m": { + "ResponsiveState()": "ResponsiveState()", + "ResponsiveState": "ResponsiveState()", + "AddResponsivePhase()": "AddResponsivePhase()", + "AddResponsivePhase": "AddResponsivePhase()", + "AddResponsivePhase(ResponsivePhase)": "AddResponsivePhase(ResponsivePhase)", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "IsManualState": "IsManualState", + "IsManualStateProperty": "IsManualStateProperty", + "IsStoreInitialized": "IsStoreInitialized", + "MaximumWidth": "MaximumWidth", + "MaximumWidthProperty": "MaximumWidthProperty", + "MinimumWidth": "MinimumWidth", + "MinimumWidthProperty": "MinimumWidthProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnStateEntered(ResponsiveStateEnteredEventArgs)": "OnStateEntered(ResponsiveStateEnteredEventArgs)", + "OnStateEntered": "OnStateEntered(ResponsiveStateEnteredEventArgs)", + "OnStateEntering(ResponsiveStateEnteringEventArgs)": "OnStateEntering(ResponsiveStateEnteringEventArgs)", + "OnStateEntering": "OnStateEntering(ResponsiveStateEnteringEventArgs)", + "OnStateExited(ResponsiveStateExitedEventArgs)": "OnStateExited(ResponsiveStateExitedEventArgs)", + "OnStateExited": "OnStateExited(ResponsiveStateExitedEventArgs)", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "ResponsivePhases": "ResponsivePhases", + "ResponsivePhasesProperty": "ResponsivePhasesProperty", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "ToString()": "ToString()", + "ToString": "ToString()", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsiveStateDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateDescription()": "ResponsiveStateDescription()", + "ResponsiveStateDescription": "ResponsiveStateDescription()", + "IsManualState": "IsManualState", + "MaximumWidth": "MaximumWidth", + "MinimumWidth": "MinimumWidth", + "StateEnteredRef": "StateEnteredRef", + "StateEnteringRef": "StateEnteringRef", + "StateExitedRef": "StateExitedRef", + "Type": "Type" + } + } + ], + "ResponsiveStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsiveStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateDescriptionMetadata()": "ResponsiveStateDescriptionMetadata()", + "ResponsiveStateDescriptionMetadata": "ResponsiveStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsiveStateEnteredEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ResponsiveStateEnteredEventArgs", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteredEventArgs()": "ResponsiveStateEnteredEventArgs()", + "ResponsiveStateEnteredEventArgs": "ResponsiveStateEnteredEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveStateEnteredEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsiveStateEnteredEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteredEventArgsDescription()": "ResponsiveStateEnteredEventArgsDescription()", + "ResponsiveStateEnteredEventArgsDescription": "ResponsiveStateEnteredEventArgsDescription()", + "Type": "Type" + } + } + ], + "ResponsiveStateEnteredEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsiveStateEnteredEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteredEventArgsDescriptionMetadata()": "ResponsiveStateEnteredEventArgsDescriptionMetadata()", + "ResponsiveStateEnteredEventArgsDescriptionMetadata": "ResponsiveStateEnteredEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsiveStateEnteringEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ResponsiveStateEnteringEventArgs", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteringEventArgs()": "ResponsiveStateEnteringEventArgs()", + "ResponsiveStateEnteringEventArgs": "ResponsiveStateEnteringEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveStateEnteringEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsiveStateEnteringEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteringEventArgsDescription()": "ResponsiveStateEnteringEventArgsDescription()", + "ResponsiveStateEnteringEventArgsDescription": "ResponsiveStateEnteringEventArgsDescription()", + "Type": "Type" + } + } + ], + "ResponsiveStateEnteringEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsiveStateEnteringEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteringEventArgsDescriptionMetadata()": "ResponsiveStateEnteringEventArgsDescriptionMetadata()", + "ResponsiveStateEnteringEventArgsDescriptionMetadata": "ResponsiveStateEnteringEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsiveStateExitedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ResponsiveStateExitedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateExitedEventArgs()": "ResponsiveStateExitedEventArgs()", + "ResponsiveStateExitedEventArgs": "ResponsiveStateExitedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveStateExitedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsiveStateExitedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateExitedEventArgsDescription()": "ResponsiveStateExitedEventArgsDescription()", + "ResponsiveStateExitedEventArgsDescription": "ResponsiveStateExitedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ResponsiveStateExitedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ResponsiveStateExitedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateExitedEventArgsDescriptionMetadata()": "ResponsiveStateExitedEventArgsDescriptionMetadata()", + "ResponsiveStateExitedEventArgsDescriptionMetadata": "ResponsiveStateExitedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsiveStatesCollection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/ResponsiveStatesCollection", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStatesCollection()": "ResponsiveStatesCollection()", + "ResponsiveStatesCollection": "ResponsiveStatesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RingDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RingDescription", + "k": "class", + "s": "classes", + "m": { + "RingDescription()": "RingDescription()", + "RingDescription": "RingDescription()", + "Center": "Center", + "ControlSize": "ControlSize", + "Index": "Index", + "InnerExtend": "InnerExtend", + "RingBreadth": "RingBreadth", + "RingSeries": "RingSeries", + "Type": "Type" + } + } + ], + "RingDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RingDescriptionMetadata()": "RingDescriptionMetadata()", + "RingDescriptionMetadata": "RingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RingSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RingSeries", + "k": "class", + "s": "classes", + "m": { + "RingSeries()": "RingSeries()", + "RingSeries": "RingSeries()" + } + } + ], + "RingSeriesBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RingSeriesBase", + "k": "class", + "s": "classes", + "m": { + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "Chart": "Chart", + "ChartProperty": "ChartProperty", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontBrush": "FontBrush", + "FontBrushProperty": "FontBrushProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsSurfaceInteractionDisabledProperty": "IsSurfaceInteractionDisabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInnerColor": "LabelInnerColor", + "LabelInnerColorProperty": "LabelInnerColorProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LabelOuterColor": "LabelOuterColor", + "LabelOuterColorProperty": "LabelOuterColorProperty", + "LabelsPosition": "LabelsPosition", + "LabelsPositionProperty": "LabelsPositionProperty", + "LeaderLineFill": "LeaderLineFill", + "LeaderLineFillProperty": "LeaderLineFillProperty", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineMarginProperty": "LeaderLineMarginProperty", + "LeaderLineOpacity": "LeaderLineOpacity", + "LeaderLineOpacityProperty": "LeaderLineOpacityProperty", + "LeaderLineStroke": "LeaderLineStroke", + "LeaderLineStrokeProperty": "LeaderLineStrokeProperty", + "LeaderLineStrokeThickness": "LeaderLineStrokeThickness", + "LeaderLineStrokeThicknessProperty": "LeaderLineStrokeThicknessProperty", + "LeaderLineType": "LeaderLineType", + "LeaderLineTypeProperty": "LeaderLineTypeProperty", + "LeaderLineVisibility": "LeaderLineVisibility", + "LeaderLineVisibilityProperty": "LeaderLineVisibilityProperty", + "Legend": "Legend", + "LegendLabelFormat": "LegendLabelFormat", + "LegendLabelFormatProperty": "LegendLabelFormatProperty", + "LegendLabelFormatSpecifiers": "LegendLabelFormatSpecifiers", + "LegendLabelFormatSpecifiersProperty": "LegendLabelFormatSpecifiersProperty", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendLabelMemberPathProperty": "LegendLabelMemberPathProperty", + "LegendOthersLabelFormat": "LegendOthersLabelFormat", + "LegendOthersLabelFormatProperty": "LegendOthersLabelFormatProperty", + "LegendOthersLabelFormatSpecifiers": "LegendOthersLabelFormatSpecifiers", + "LegendOthersLabelFormatSpecifiersProperty": "LegendOthersLabelFormatSpecifiersProperty", + "LegendProperty": "LegendProperty", + "OnFormatLabel(PieChartFormatLabelEventArgs)": "OnFormatLabel(PieChartFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(PieChartFormatLabelEventArgs)", + "OnFormatLegendLabel(PieChartFormatLabelEventArgs)": "OnFormatLegendLabel(PieChartFormatLabelEventArgs)", + "OnFormatLegendLabel": "OnFormatLegendLabel(PieChartFormatLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OthersCategoryFill": "OthersCategoryFill", + "OthersCategoryFillProperty": "OthersCategoryFillProperty", + "OthersCategoryOpacity": "OthersCategoryOpacity", + "OthersCategoryOpacityProperty": "OthersCategoryOpacityProperty", + "OthersCategoryStroke": "OthersCategoryStroke", + "OthersCategoryStrokeProperty": "OthersCategoryStrokeProperty", + "OthersCategoryStrokeThickness": "OthersCategoryStrokeThickness", + "OthersCategoryStrokeThicknessProperty": "OthersCategoryStrokeThicknessProperty", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryTextProperty": "OthersCategoryTextProperty", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryThresholdProperty": "OthersCategoryThresholdProperty", + "OthersCategoryType": "OthersCategoryType", + "OthersCategoryTypeProperty": "OthersCategoryTypeProperty", + "OthersLabelFormat": "OthersLabelFormat", + "OthersLabelFormatProperty": "OthersLabelFormatProperty", + "OthersLabelFormatSpecifiers": "OthersLabelFormatSpecifiers", + "OthersLabelFormatSpecifiersProperty": "OthersLabelFormatSpecifiersProperty", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "RadiusFactor": "RadiusFactor", + "RadiusFactorProperty": "RadiusFactorProperty", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceFillProperty": "SelectedSliceFillProperty", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceOpacityProperty": "SelectedSliceOpacityProperty", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeProperty": "SelectedSliceStrokeProperty", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectedSliceStrokeThicknessProperty": "SelectedSliceStrokeThicknessProperty", + "StartAngle": "StartAngle", + "StartAngleProperty": "StartAngleProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RingSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RingSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "RingSeriesBaseDescription()": "RingSeriesBaseDescription()", + "RingSeriesBaseDescription": "RingSeriesBaseDescription()", + "Brushes": "Brushes", + "DataSourceRef": "DataSourceRef", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "FormatLegendLabelRef": "FormatLegendLabelRef", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInnerColor": "LabelInnerColor", + "LabelMemberPath": "LabelMemberPath", + "LabelOuterColor": "LabelOuterColor", + "LabelsPosition": "LabelsPosition", + "LeaderLineFill": "LeaderLineFill", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineOpacity": "LeaderLineOpacity", + "LeaderLineStroke": "LeaderLineStroke", + "LeaderLineStrokeThickness": "LeaderLineStrokeThickness", + "LeaderLineType": "LeaderLineType", + "LeaderLineVisibility": "LeaderLineVisibility", + "LegendLabelFormat": "LegendLabelFormat", + "LegendLabelFormatSpecifiers": "LegendLabelFormatSpecifiers", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendOthersLabelFormat": "LegendOthersLabelFormat", + "LegendOthersLabelFormatSpecifiers": "LegendOthersLabelFormatSpecifiers", + "LegendRef": "LegendRef", + "OthersCategoryFill": "OthersCategoryFill", + "OthersCategoryOpacity": "OthersCategoryOpacity", + "OthersCategoryStroke": "OthersCategoryStroke", + "OthersCategoryStrokeThickness": "OthersCategoryStrokeThickness", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryType": "OthersCategoryType", + "OthersLabelFormat": "OthersLabelFormat", + "OthersLabelFormatSpecifiers": "OthersLabelFormatSpecifiers", + "Outlines": "Outlines", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "RadiusFactor": "RadiusFactor", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "StartAngle": "StartAngle", + "TextStyle": "TextStyle", + "TooltipTemplateRef": "TooltipTemplateRef", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "RingSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RingSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RingSeriesBaseDescriptionMetadata()": "RingSeriesBaseDescriptionMetadata()", + "RingSeriesBaseDescriptionMetadata": "RingSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RingSeriesCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RingSeriesCollection", + "k": "class", + "s": "classes", + "m": { + "RingSeriesCollection()": "RingSeriesCollection()", + "RingSeriesCollection": "RingSeriesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RingSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RingSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RingSeriesDescription()": "RingSeriesDescription()", + "RingSeriesDescription": "RingSeriesDescription()", + "Ring": "Ring", + "Type": "Type" + } + } + ], + "RingSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RingSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RingSeriesDescriptionMetadata()": "RingSeriesDescriptionMetadata()", + "RingSeriesDescriptionMetadata": "RingSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RingSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RingSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RingSeriesDescriptionModule()": "RingSeriesDescriptionModule()", + "RingSeriesDescriptionModule": "RingSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RingSeriesVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RingSeriesVisualData", + "k": "class", + "s": "classes", + "m": { + "RingSeriesVisualData()": "RingSeriesVisualData()", + "RingSeriesVisualData": "RingSeriesVisualData()", + "LabelExtent": "LabelExtent", + "LabelsPosition": "LabelsPosition", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineType": "LeaderLineType", + "LeaderLineVisibility": "LeaderLineVisibility", + "Name": "Name", + "Rings": "Rings", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "RingSeriesVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RingSeriesVisualDataList", + "k": "class", + "s": "classes", + "m": { + "RingSeriesVisualDataList()": "RingSeriesVisualDataList()", + "RingSeriesVisualDataList": "RingSeriesVisualDataList()" + } + } + ], + "RingVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RingVisualData", + "k": "class", + "s": "classes", + "m": { + "RingVisualData()": "RingVisualData()", + "RingVisualData": "RingVisualData()", + "Arcs": "Arcs", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "RingVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/RingVisualDataList", + "k": "class", + "s": "classes", + "m": { + "RingVisualDataList()": "RingVisualDataList()", + "RingVisualDataList": "RingVisualDataList()" + } + } + ], + "RippleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RippleDescription", + "k": "class", + "s": "classes", + "m": { + "RippleDescription()": "RippleDescription()", + "RippleDescription": "RippleDescription()", + "ActualHoverColor": "ActualHoverColor", + "ActualRippleColor": "ActualRippleColor", + "EventSourceRef": "EventSourceRef", + "HoverColor": "HoverColor", + "IsCentered": "IsCentered", + "IsDisabled": "IsDisabled", + "IsHoverEnabled": "IsHoverEnabled", + "RippleColor": "RippleColor", + "RippleDuration": "RippleDuration", + "Type": "Type" + } + } + ], + "RippleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RippleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RippleDescriptionMetadata()": "RippleDescriptionMetadata()", + "RippleDescriptionMetadata": "RippleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RippleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RippleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RippleDescriptionModule()": "RippleDescriptionModule()", + "RippleDescriptionModule": "RippleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RippleVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/RippleVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "RippleVisualModelExport()": "RippleVisualModelExport()", + "RippleVisualModelExport": "RippleVisualModelExport()", + "ActualHoverColor": "ActualHoverColor", + "ActualRippleColor": "ActualRippleColor", + "IsCentered": "IsCentered", + "IsDisabled": "IsDisabled", + "IsHoverEnabled": "IsHoverEnabled", + "RippleDuration": "RippleDuration", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "RowHoverAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/RowHoverAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "RowSelectionAnimationMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/RowSelectionAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "RowSeparator": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/RowSeparator", + "k": "class", + "s": "classes", + "m": { + "RowSeparator()": "RowSeparator()", + "RowSeparator": "RowSeparator()" + } + } + ], + "RowSeparatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RowSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorDescription()": "RowSeparatorDescription()", + "RowSeparatorDescription": "RowSeparatorDescription()", + "Type": "Type" + } + } + ], + "RowSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RowSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorDescriptionMetadata()": "RowSeparatorDescriptionMetadata()", + "RowSeparatorDescriptionMetadata": "RowSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RowSeparatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RowSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorDescriptionModule()": "RowSeparatorDescriptionModule()", + "RowSeparatorDescriptionModule": "RowSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RowSeparatorInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/RowSeparatorInfo", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorInfo()": "RowSeparatorInfo()", + "RowSeparatorInfo": "RowSeparatorInfo()" + } + } + ], + "RowSeparatorInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RowSeparatorInfoDescription", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorInfoDescription()": "RowSeparatorInfoDescription()", + "RowSeparatorInfoDescription": "RowSeparatorInfoDescription()", + "Type": "Type" + } + } + ], + "RowSeparatorInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/RowSeparatorInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorInfoDescriptionMetadata()": "RowSeparatorInfoDescriptionMetadata()", + "RowSeparatorInfoDescriptionMetadata": "RowSeparatorInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RowSeparatorModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/RowSeparatorModelExport", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorModelExport()": "RowSeparatorModelExport()", + "RowSeparatorModelExport": "RowSeparatorModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "ScaleLabelVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/ScaleLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "ScaleLabelVisualData()": "ScaleLabelVisualData()", + "ScaleLabelVisualData": "ScaleLabelVisualData()", + "Appearance": "Appearance", + "LabelPosition": "LabelPosition", + "LabelSize": "LabelSize", + "LabelValue": "LabelValue", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "ScaleLabelVisualDataList": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/ScaleLabelVisualDataList", + "k": "class", + "s": "classes", + "m": { + "ScaleLabelVisualDataList()": "ScaleLabelVisualDataList()", + "ScaleLabelVisualDataList": "ScaleLabelVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "ScaleLegend": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScaleLegend", + "k": "class", + "s": "classes", + "m": { + "ScaleLegend()": "ScaleLegend()", + "ScaleLegend": "ScaleLegend()" + } + } + ], + "ScaleLegendDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScaleLegendDescription", + "k": "class", + "s": "classes", + "m": { + "ScaleLegendDescription()": "ScaleLegendDescription()", + "ScaleLegendDescription": "ScaleLegendDescription()", + "Type": "Type" + } + } + ], + "ScaleLegendDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScaleLegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScaleLegendDescriptionMetadata()": "ScaleLegendDescriptionMetadata()", + "ScaleLegendDescriptionMetadata": "ScaleLegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScaleLegendDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScaleLegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScaleLegendDescriptionModule()": "ScaleLegendDescriptionModule()", + "ScaleLegendDescriptionModule": "ScaleLegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScalerParams": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScalerParams", + "k": "class", + "s": "classes", + "m": { + "ScalerParams(Rect, Rect, bool)": "ScalerParams(Rect, Rect, bool)", + "ScalerParams": "ScalerParams(Rect, Rect, bool)", + "ScalerParams(Rect, Rect, bool, Rect)": "ScalerParams(Rect, Rect, bool, Rect)", + "EffectiveViewportRect": "EffectiveViewportRect", + "IsInverted": "IsInverted", + "ReferenceValue": "ReferenceValue", + "ViewportRect": "ViewportRect", + "WindowRect": "WindowRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ScalerParamsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScalerParamsDescription", + "k": "class", + "s": "classes", + "m": { + "ScalerParamsDescription()": "ScalerParamsDescription()", + "ScalerParamsDescription": "ScalerParamsDescription()", + "ReferenceValue": "ReferenceValue", + "Type": "Type" + } + } + ], + "ScalerParamsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScalerParamsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScalerParamsDescriptionMetadata()": "ScalerParamsDescriptionMetadata()", + "ScalerParamsDescriptionMetadata": "ScalerParamsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScaleTickmarkVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/ScaleTickmarkVisualData", + "k": "class", + "s": "classes", + "m": { + "ScaleTickmarkVisualData()": "ScaleTickmarkVisualData()", + "ScaleTickmarkVisualData": "ScaleTickmarkVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TickPath": "TickPath" + } + } + ], + "ScaleTickmarkVisualDataList": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/ScaleTickmarkVisualDataList", + "k": "class", + "s": "classes", + "m": { + "ScaleTickmarkVisualDataList()": "ScaleTickmarkVisualDataList()", + "ScaleTickmarkVisualDataList": "ScaleTickmarkVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "ScaleVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/ScaleVisualData", + "k": "class", + "s": "classes", + "m": { + "ScaleVisualData()": "ScaleVisualData()", + "ScaleVisualData": "ScaleVisualData()" + } + } + ], + "ScatterAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterAreaSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterAreaSeries()": "ScatterAreaSeries()", + "ScatterAreaSeries": "ScatterAreaSeries()", + "AttachImage(object)": "AttachImage(object)", + "AttachImage": "AttachImage(object)", + "ColorMemberAsLegendLabel": "ColorMemberAsLegendLabel", + "ColorMemberAsLegendLabelProperty": "ColorMemberAsLegendLabelProperty", + "ColorMemberAsLegendUnit": "ColorMemberAsLegendUnit", + "ColorMemberAsLegendUnitProperty": "ColorMemberAsLegendUnitProperty", + "ColorMemberPath": "ColorMemberPath", + "ColorMemberPathProperty": "ColorMemberPathProperty", + "ColorScale": "ColorScale", + "ColorScaleProperty": "ColorScaleProperty", + "UpdateActualColorScale()": "UpdateActualColorScale()", + "UpdateActualColorScale": "UpdateActualColorScale()" + } + } + ], + "ScatterAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterAreaSeriesDescription()": "ScatterAreaSeriesDescription()", + "ScatterAreaSeriesDescription": "ScatterAreaSeriesDescription()", + "ActualColorScale": "ActualColorScale", + "ColorMemberAsLegendLabel": "ColorMemberAsLegendLabel", + "ColorMemberAsLegendUnit": "ColorMemberAsLegendUnit", + "ColorMemberPath": "ColorMemberPath", + "ColorScale": "ColorScale", + "Type": "Type" + } + } + ], + "ScatterAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterAreaSeriesDescriptionMetadata()": "ScatterAreaSeriesDescriptionMetadata()", + "ScatterAreaSeriesDescriptionMetadata": "ScatterAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterAreaSeriesDescriptionModule()": "ScatterAreaSeriesDescriptionModule()", + "ScatterAreaSeriesDescriptionModule": "ScatterAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterBase", + "k": "class", + "s": "classes", + "m": { + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualItemSearchModeProperty": "ActualItemSearchModeProperty", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "GetScatterItems(int, int)": "GetScatterItems(int, int)", + "GetScatterItems": "GetScatterItems(int, int)", + "HighlightedXMemberPath": "HighlightedXMemberPath", + "HighlightedXMemberPathProperty": "HighlightedXMemberPathProperty", + "HighlightedYMemberPath": "HighlightedYMemberPath", + "HighlightedYMemberPathProperty": "HighlightedYMemberPathProperty", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterMarkerStyleAllowedProperty": "IsCustomScatterMarkerStyleAllowedProperty", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "IsCustomScatterStyleAllowedProperty": "IsCustomScatterStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "MaximumMarkers": "MaximumMarkers", + "MaximumMarkersProperty": "MaximumMarkersProperty", + "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterMarkerStyle": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "OnAssigningScatterStyle": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendLabelProperty": "XMemberAsLegendLabelProperty", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberAsLegendUnitProperty": "XMemberAsLegendUnitProperty", + "XMemberPath": "XMemberPath", + "XMemberPathProperty": "XMemberPathProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendLabelProperty": "YMemberAsLegendLabelProperty", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberAsLegendUnitProperty": "YMemberAsLegendUnitProperty", + "YMemberPath": "YMemberPath", + "YMemberPathProperty": "YMemberPathProperty" + } + } + ], + "ScatterBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterBaseDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterBaseDescription()": "ScatterBaseDescription()", + "ScatterBaseDescription": "ScatterBaseDescription()", + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "AssigningScatterMarkerStyleRef": "AssigningScatterMarkerStyleRef", + "AssigningScatterStyleRef": "AssigningScatterStyleRef", + "HighlightedXMemberPath": "HighlightedXMemberPath", + "HighlightedYMemberPath": "HighlightedYMemberPath", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchThreshold": "ItemSearchThreshold", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MaximumMarkers": "MaximumMarkers", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "TrendLineZIndex": "TrendLineZIndex", + "Type": "Type", + "XAxisRef": "XAxisRef", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberPath": "XMemberPath", + "YAxisRef": "YAxisRef", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberPath": "YMemberPath" + } + } + ], + "ScatterBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterBaseDescriptionMetadata()": "ScatterBaseDescriptionMetadata()", + "ScatterBaseDescriptionMetadata": "ScatterBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterContourSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterContourSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterContourSeries()": "ScatterContourSeries()", + "ScatterContourSeries": "ScatterContourSeries()", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendLabelProperty": "ValueMemberAsLegendLabelProperty", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberAsLegendUnitProperty": "ValueMemberAsLegendUnitProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "ValueResolver": "ValueResolver", + "ValueResolverProperty": "ValueResolverProperty" + } + } + ], + "ScatterContourSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterContourSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterContourSeriesDescription()": "ScatterContourSeriesDescription()", + "ScatterContourSeriesDescription": "ScatterContourSeriesDescription()", + "ActualFillScale": "ActualFillScale", + "FillScale": "FillScale", + "Type": "Type", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberPath": "ValueMemberPath", + "ValueResolver": "ValueResolver" + } + } + ], + "ScatterContourSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterContourSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterContourSeriesDescriptionMetadata()": "ScatterContourSeriesDescriptionMetadata()", + "ScatterContourSeriesDescriptionMetadata": "ScatterContourSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterContourSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterContourSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterContourSeriesDescriptionModule()": "ScatterContourSeriesDescriptionModule()", + "ScatterContourSeriesDescriptionModule": "ScatterContourSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterDataRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterDataRule", + "k": "class", + "s": "classes", + "m": { + "ScatterDataRule()": "ScatterDataRule()", + "ScatterDataRule": "ScatterDataRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GeographicPointCheckThreshold": "GeographicPointCheckThreshold", + "GeographicShapeCheckThreshold": "GeographicShapeCheckThreshold", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "HugeDataSourceThreshold": "HugeDataSourceThreshold", + "MonotonicCheckAmount": "MonotonicCheckAmount", + "SmallDataSourceThreshold": "SmallDataSourceThreshold", + "SupportGeographicSeries": "SupportGeographicSeries" + } + } + ], + "ScatterItemSearchMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ScatterItemSearchMode", + "k": "enum", + "s": "enums" + } + ], + "ScatterLineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterLineSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterLineSeries()": "ScatterLineSeries()", + "ScatterLineSeries": "ScatterLineSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "ScatterLineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterLineSeriesDescription()": "ScatterLineSeriesDescription()", + "ScatterLineSeriesDescription": "ScatterLineSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "ScatterLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterLineSeriesDescriptionMetadata()": "ScatterLineSeriesDescriptionMetadata()", + "ScatterLineSeriesDescriptionMetadata": "ScatterLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterLineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterLineSeriesDescriptionModule()": "ScatterLineSeriesDescriptionModule()", + "ScatterLineSeriesDescriptionModule": "ScatterLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterPolygonSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterPolygonSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterPolygonSeries()": "ScatterPolygonSeries()", + "ScatterPolygonSeries": "ScatterPolygonSeries()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerTemplate": "MarkerTemplate", + "MarkerTemplateProperty": "MarkerTemplateProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "ShapeStyle": "ShapeStyle", + "ShapeStyleProperty": "ShapeStyleProperty", + "ShapeStyleSelector": "ShapeStyleSelector", + "ShapeStyleSelectorProperty": "ShapeStyleSelectorProperty" + } + } + ], + "ScatterPolygonSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterPolygonSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterPolygonSeriesDescription()": "ScatterPolygonSeriesDescription()", + "ScatterPolygonSeriesDescription": "ScatterPolygonSeriesDescription()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "MarkerBrush": "MarkerBrush", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerFillMode": "MarkerFillMode", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "ShapeStyle": "ShapeStyle", + "Type": "Type" + } + } + ], + "ScatterPolygonSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterPolygonSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterPolygonSeriesDescriptionMetadata()": "ScatterPolygonSeriesDescriptionMetadata()", + "ScatterPolygonSeriesDescriptionMetadata": "ScatterPolygonSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterPolygonSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterPolygonSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterPolygonSeriesDescriptionModule()": "ScatterPolygonSeriesDescriptionModule()", + "ScatterPolygonSeriesDescriptionModule": "ScatterPolygonSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterPolylineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterPolylineSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterPolylineSeries()": "ScatterPolylineSeries()", + "ScatterPolylineSeries": "ScatterPolylineSeries()", + "ShapeStyle": "ShapeStyle", + "ShapeStyleProperty": "ShapeStyleProperty", + "ShapeStyleSelector": "ShapeStyleSelector", + "ShapeStyleSelectorProperty": "ShapeStyleSelectorProperty" + } + } + ], + "ScatterPolylineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterPolylineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterPolylineSeriesDescription()": "ScatterPolylineSeriesDescription()", + "ScatterPolylineSeriesDescription": "ScatterPolylineSeriesDescription()", + "ShapeStyle": "ShapeStyle", + "Type": "Type" + } + } + ], + "ScatterPolylineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterPolylineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterPolylineSeriesDescriptionMetadata()": "ScatterPolylineSeriesDescriptionMetadata()", + "ScatterPolylineSeriesDescriptionMetadata": "ScatterPolylineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterPolylineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterPolylineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterPolylineSeriesDescriptionModule()": "ScatterPolylineSeriesDescriptionModule()", + "ScatterPolylineSeriesDescriptionModule": "ScatterPolylineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterSeries()": "ScatterSeries()", + "ScatterSeries": "ScatterSeries()" + } + } + ], + "ScatterSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterSeriesDescription()": "ScatterSeriesDescription()", + "ScatterSeriesDescription": "ScatterSeriesDescription()", + "Type": "Type" + } + } + ], + "ScatterSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterSeriesDescriptionMetadata()": "ScatterSeriesDescriptionMetadata()", + "ScatterSeriesDescriptionMetadata": "ScatterSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterSeriesDescriptionModule()": "ScatterSeriesDescriptionModule()", + "ScatterSeriesDescriptionModule": "ScatterSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterSplineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterSplineSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterSplineSeries()": "ScatterSplineSeries()", + "ScatterSplineSeries": "ScatterSplineSeries()", + "Stiffness": "Stiffness", + "StiffnessProperty": "StiffnessProperty" + } + } + ], + "ScatterSplineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterSplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterSplineSeriesDescription()": "ScatterSplineSeriesDescription()", + "ScatterSplineSeriesDescription": "ScatterSplineSeriesDescription()", + "Stiffness": "Stiffness", + "Type": "Type" + } + } + ], + "ScatterSplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterSplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterSplineSeriesDescriptionMetadata()": "ScatterSplineSeriesDescriptionMetadata()", + "ScatterSplineSeriesDescriptionMetadata": "ScatterSplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterSplineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterSplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterSplineSeriesDescriptionModule()": "ScatterSplineSeriesDescriptionModule()", + "ScatterSplineSeriesDescriptionModule": "ScatterSplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterTriangulationSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ScatterTriangulationSeries", + "k": "class", + "s": "classes", + "m": { + "OnTriangulationStatusChanged(TriangulationStatusEventArgs)": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "OnTriangulationStatusChanged": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "TriangleVertexMemberPath1": "TriangleVertexMemberPath1", + "TriangleVertexMemberPath1Property": "TriangleVertexMemberPath1Property", + "TriangleVertexMemberPath2": "TriangleVertexMemberPath2", + "TriangleVertexMemberPath2Property": "TriangleVertexMemberPath2Property", + "TriangleVertexMemberPath3": "TriangleVertexMemberPath3", + "TriangleVertexMemberPath3Property": "TriangleVertexMemberPath3Property", + "TrianglesSource": "TrianglesSource", + "TrianglesSourceProperty": "TrianglesSourceProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendLabelProperty": "XMemberAsLegendLabelProperty", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberAsLegendUnitProperty": "XMemberAsLegendUnitProperty", + "XMemberPath": "XMemberPath", + "XMemberPathProperty": "XMemberPathProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendLabelProperty": "YMemberAsLegendLabelProperty", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberAsLegendUnitProperty": "YMemberAsLegendUnitProperty", + "YMemberPath": "YMemberPath", + "YMemberPathProperty": "YMemberPathProperty" + } + } + ], + "ScatterTriangulationSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterTriangulationSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterTriangulationSeriesDescription()": "ScatterTriangulationSeriesDescription()", + "ScatterTriangulationSeriesDescription": "ScatterTriangulationSeriesDescription()", + "TriangleVertexMemberPath1": "TriangleVertexMemberPath1", + "TriangleVertexMemberPath2": "TriangleVertexMemberPath2", + "TriangleVertexMemberPath3": "TriangleVertexMemberPath3", + "TrianglesSourceRef": "TrianglesSourceRef", + "TriangulationStatusChangedRef": "TriangulationStatusChangedRef", + "Type": "Type", + "XAxisRef": "XAxisRef", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberPath": "XMemberPath", + "YAxisRef": "YAxisRef", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberPath": "YMemberPath" + } + } + ], + "ScatterTriangulationSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScatterTriangulationSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterTriangulationSeriesDescriptionMetadata()": "ScatterTriangulationSeriesDescriptionMetadata()", + "ScatterTriangulationSeriesDescriptionMetadata": "ScatterTriangulationSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScreenRectChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ScreenRectChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ScreenRectChangedEventArgs(Rect, Rect)": "ScreenRectChangedEventArgs(Rect, Rect)", + "ScreenRectChangedEventArgs": "ScreenRectChangedEventArgs(Rect, Rect)", + "NewRect": "NewRect", + "OldRect": "OldRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ScrollbarStyle": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ScrollbarStyle", + "k": "enum", + "s": "enums" + } + ], + "SectionFooter": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SectionFooter", + "k": "class", + "s": "classes", + "m": { + "SectionFooter()": "SectionFooter()", + "SectionFooter": "SectionFooter()" + } + } + ], + "SectionFooterDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionFooterDescription", + "k": "class", + "s": "classes", + "m": { + "SectionFooterDescription()": "SectionFooterDescription()", + "SectionFooterDescription": "SectionFooterDescription()", + "Type": "Type" + } + } + ], + "SectionFooterDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionFooterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SectionFooterDescriptionMetadata()": "SectionFooterDescriptionMetadata()", + "SectionFooterDescriptionMetadata": "SectionFooterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionFooterDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionFooterDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SectionFooterDescriptionModule()": "SectionFooterDescriptionModule()", + "SectionFooterDescriptionModule": "SectionFooterDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionHeader": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SectionHeader", + "k": "class", + "s": "classes", + "m": { + "SectionHeader()": "SectionHeader()", + "SectionHeader": "SectionHeader()", + "ActualExpansionIndicatorIconColor": "ActualExpansionIndicatorIconColor", + "ActualExpansionIndicatorIconColorProperty": "ActualExpansionIndicatorIconColorProperty", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedBackgroundProperty": "ActualSelectedBackgroundProperty", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ActualSelectedTextColorProperty": "ActualSelectedTextColorProperty", + "ExpansionIndicatorIconColor": "ExpansionIndicatorIconColor", + "ExpansionIndicatorIconColorProperty": "ExpansionIndicatorIconColorProperty", + "IsCollapsable": "IsCollapsable", + "IsCollapsableProperty": "IsCollapsableProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundProperty": "SelectedBackgroundProperty", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorProperty": "SelectedTextColorProperty", + "SummaryDisplayMode": "SummaryDisplayMode", + "SummaryDisplayModeProperty": "SummaryDisplayModeProperty" + } + } + ], + "SectionHeaderCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SectionHeaderCellInfo", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderCellInfo()": "SectionHeaderCellInfo()", + "SectionHeaderCellInfo": "SectionHeaderCellInfo()", + "Groups": "Groups", + "GroupsPropertyName": "GroupsPropertyName", + "ResolvedSummaryText": "ResolvedSummaryText", + "ResolvedSummaryTextPropertyName": "ResolvedSummaryTextPropertyName", + "ResolvedText": "ResolvedText", + "ResolvedTextPropertyName": "ResolvedTextPropertyName", + "Summaries": "Summaries", + "SummariesPropertyName": "SummariesPropertyName", + "SummaryDisplayMode": "SummaryDisplayMode", + "SummaryDisplayModePropertyName": "SummaryDisplayModePropertyName" + } + } + ], + "SectionHeaderCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionHeaderCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderCellInfoDescription()": "SectionHeaderCellInfoDescription()", + "SectionHeaderCellInfoDescription": "SectionHeaderCellInfoDescription()", + "ResolvedSummaryText": "ResolvedSummaryText", + "ResolvedText": "ResolvedText", + "SummaryDisplayMode": "SummaryDisplayMode", + "Type": "Type" + } + } + ], + "SectionHeaderCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionHeaderCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderCellInfoDescriptionMetadata()": "SectionHeaderCellInfoDescriptionMetadata()", + "SectionHeaderCellInfoDescriptionMetadata": "SectionHeaderCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionHeaderCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SectionHeaderCellModelExport", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderCellModelExport()": "SectionHeaderCellModelExport()", + "SectionHeaderCellModelExport": "SectionHeaderCellModelExport()", + "FormattedText": "FormattedText", + "FullSummaryFormattedText": "FullSummaryFormattedText", + "GroupFormattedText": "GroupFormattedText", + "GroupNames": "GroupNames", + "GroupValues": "GroupValues", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "SummaryFormattedText": "SummaryFormattedText", + "SummaryNames": "SummaryNames", + "SummaryOperands": "SummaryOperands", + "SummaryValues": "SummaryValues", + "Type": "Type" + } + } + ], + "SectionHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderDescription()": "SectionHeaderDescription()", + "SectionHeaderDescription": "SectionHeaderDescription()", + "ActualExpansionIndicatorIconColor": "ActualExpansionIndicatorIconColor", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ExpansionIndicatorIconColor": "ExpansionIndicatorIconColor", + "IsCollapsable": "IsCollapsable", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "SelectedBackground": "SelectedBackground", + "SelectedTextColor": "SelectedTextColor", + "SummaryDisplayMode": "SummaryDisplayMode", + "Type": "Type" + } + } + ], + "SectionHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderDescriptionMetadata()": "SectionHeaderDescriptionMetadata()", + "SectionHeaderDescriptionMetadata": "SectionHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderDescriptionModule()": "SectionHeaderDescriptionModule()", + "SectionHeaderDescriptionModule": "SectionHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionInformationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionInformationDescription", + "k": "class", + "s": "classes", + "m": { + "SectionInformationDescription()": "SectionInformationDescription()", + "SectionInformationDescription": "SectionInformationDescription()", + "EndIndex": "EndIndex", + "GroupKeyProperties": "GroupKeyProperties", + "GroupKeyValuesRef": "GroupKeyValuesRef", + "StartIndex": "StartIndex", + "SummaryResults": "SummaryResults", + "Type": "Type" + } + } + ], + "SectionInformationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SectionInformationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SectionInformationDescriptionMetadata()": "SectionInformationDescriptionMetadata()", + "SectionInformationDescriptionMetadata": "SectionInformationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SegmentData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SegmentData", + "k": "class", + "s": "classes", + "m": { + "SegmentData()": "SegmentData()", + "SegmentData": "SegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "SelectAllCheckboxChangedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SelectAllCheckboxChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "SelectAllCheckboxChangedEventArgs()": "SelectAllCheckboxChangedEventArgs()", + "SelectAllCheckboxChangedEventArgs": "SelectAllCheckboxChangedEventArgs()", + "IsChecked": "IsChecked", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SelectAllCheckboxChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectAllCheckboxChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectAllCheckboxChangedEventArgsDescription()": "SelectAllCheckboxChangedEventArgsDescription()", + "SelectAllCheckboxChangedEventArgsDescription": "SelectAllCheckboxChangedEventArgsDescription()", + "IsChecked": "IsChecked", + "Type": "Type" + } + } + ], + "SelectAllCheckboxChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectAllCheckboxChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectAllCheckboxChangedEventArgsDescriptionMetadata()": "SelectAllCheckboxChangedEventArgsDescriptionMetadata()", + "SelectAllCheckboxChangedEventArgsDescriptionMetadata": "SelectAllCheckboxChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedItemChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedItemChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedItemChangedEventArgsDescription()": "SelectedItemChangedEventArgsDescription()", + "SelectedItemChangedEventArgsDescription": "SelectedItemChangedEventArgsDescription()", + "NewItem": "NewItem", + "OldItem": "OldItem", + "Type": "Type" + } + } + ], + "SelectedItemChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedItemChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedItemChangedEventArgsDescriptionMetadata()": "SelectedItemChangedEventArgsDescriptionMetadata()", + "SelectedItemChangedEventArgsDescriptionMetadata": "SelectedItemChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedItemChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedItemChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedItemChangingEventArgsDescription()": "SelectedItemChangingEventArgsDescription()", + "SelectedItemChangingEventArgsDescription": "SelectedItemChangingEventArgsDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "SelectedItemChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedItemChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedItemChangingEventArgsDescriptionMetadata()": "SelectedItemChangingEventArgsDescriptionMetadata()", + "SelectedItemChangingEventArgsDescriptionMetadata": "SelectedItemChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedItemsChangedEventArgsDescription()": "SelectedItemsChangedEventArgsDescription()", + "SelectedItemsChangedEventArgsDescription": "SelectedItemsChangedEventArgsDescription()", + "CurrentItems": "CurrentItems", + "NewItems": "NewItems", + "OldItems": "OldItems", + "Type": "Type" + } + } + ], + "SelectedItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedItemsChangedEventArgsDescriptionMetadata()": "SelectedItemsChangedEventArgsDescriptionMetadata()", + "SelectedItemsChangedEventArgsDescriptionMetadata": "SelectedItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedItemsChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedItemsChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedItemsChangingEventArgsDescription()": "SelectedItemsChangingEventArgsDescription()", + "SelectedItemsChangingEventArgsDescription": "SelectedItemsChangingEventArgsDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "SelectedItemsChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedItemsChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedItemsChangingEventArgsDescriptionMetadata()": "SelectedItemsChangingEventArgsDescriptionMetadata()", + "SelectedItemsChangingEventArgsDescriptionMetadata": "SelectedItemsChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedValueChangedEventArgsDescription()": "SelectedValueChangedEventArgsDescription()", + "SelectedValueChangedEventArgsDescription": "SelectedValueChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "SelectedValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SelectedValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedValueChangedEventArgsDescriptionMetadata()": "SelectedValueChangedEventArgsDescriptionMetadata()", + "SelectedValueChangedEventArgsDescriptionMetadata": "SelectedValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Series": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Series", + "k": "class", + "s": "classes", + "m": { + "ActualAreaFillOpacity": "ActualAreaFillOpacity", + "ActualAreaFillOpacityProperty": "ActualAreaFillOpacityProperty", + "ActualBrush": "ActualBrush", + "ActualBrushProperty": "ActualBrushProperty", + "ActualCloseLabel": "ActualCloseLabel", + "ActualCloseLabelProperty": "ActualCloseLabelProperty", + "ActualFocusBrush": "ActualFocusBrush", + "ActualFocusBrushProperty": "ActualFocusBrushProperty", + "ActualFocusMode": "ActualFocusMode", + "ActualFocusModeProperty": "ActualFocusModeProperty", + "ActualHighLabel": "ActualHighLabel", + "ActualHighLabelProperty": "ActualHighLabelProperty", + "ActualHighlightedValuesFadeOpacity": "ActualHighlightedValuesFadeOpacity", + "ActualHighlightedValuesFadeOpacityProperty": "ActualHighlightedValuesFadeOpacityProperty", + "ActualHighlightingFadeOpacity": "ActualHighlightingFadeOpacity", + "ActualHighlightingFadeOpacityProperty": "ActualHighlightingFadeOpacityProperty", + "ActualHighlightingMode": "ActualHighlightingMode", + "ActualHighlightingModeProperty": "ActualHighlightingModeProperty", + "ActualHitTestMode": "ActualHitTestMode", + "ActualHitTestModeProperty": "ActualHitTestModeProperty", + "ActualLayers": "ActualLayers", + "ActualLegend": "ActualLegend", + "ActualLegendItemBadgeBrush": "ActualLegendItemBadgeBrush", + "ActualLegendItemBadgeBrushProperty": "ActualLegendItemBadgeBrushProperty", + "ActualLegendItemBadgeOutline": "ActualLegendItemBadgeOutline", + "ActualLegendItemBadgeOutlineProperty": "ActualLegendItemBadgeOutlineProperty", + "ActualLegendProperty": "ActualLegendProperty", + "ActualLowLabel": "ActualLowLabel", + "ActualLowLabelProperty": "ActualLowLabelProperty", + "ActualMarkerFillOpacity": "ActualMarkerFillOpacity", + "ActualMarkerFillOpacityProperty": "ActualMarkerFillOpacityProperty", + "ActualOpenLabel": "ActualOpenLabel", + "ActualOpenLabelProperty": "ActualOpenLabelProperty", + "ActualOutline": "ActualOutline", + "ActualOutlineProperty": "ActualOutlineProperty", + "ActualRadiusLabel": "ActualRadiusLabel", + "ActualRadiusLabelProperty": "ActualRadiusLabelProperty", + "ActualResolution": "ActualResolution", + "ActualResolutionProperty": "ActualResolutionProperty", + "ActualSelectionBrush": "ActualSelectionBrush", + "ActualSelectionBrushProperty": "ActualSelectionBrushProperty", + "ActualSelectionMode": "ActualSelectionMode", + "ActualSelectionModeProperty": "ActualSelectionModeProperty", + "ActualThickness": "ActualThickness", + "ActualThicknessProperty": "ActualThicknessProperty", + "ActualValueLabel": "ActualValueLabel", + "ActualValueLabelProperty": "ActualValueLabelProperty", + "ActualVolumeLabel": "ActualVolumeLabel", + "ActualVolumeLabelProperty": "ActualVolumeLabelProperty", + "AreaFillOpacity": "AreaFillOpacity", + "AreaFillOpacityProperty": "AreaFillOpacityProperty", + "AutoCalloutLabelFormat": "AutoCalloutLabelFormat", + "AutoCalloutLabelFormatProperty": "AutoCalloutLabelFormatProperty", + "AutoCalloutLabelFormatSpecifiers": "AutoCalloutLabelFormatSpecifiers", + "AutoCalloutLabelFormatSpecifiersProperty": "AutoCalloutLabelFormatSpecifiersProperty", + "AutoCalloutValueLabelFormat": "AutoCalloutValueLabelFormat", + "AutoCalloutValueLabelFormatProperty": "AutoCalloutValueLabelFormatProperty", + "AutoCalloutValueLabelFormatSpecifiers": "AutoCalloutValueLabelFormatSpecifiers", + "AutoCalloutValueLabelFormatSpecifiersProperty": "AutoCalloutValueLabelFormatSpecifiersProperty", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "CMA(IEnumerable)": "CMA(IEnumerable)", + "CMA": "CMA(IEnumerable)", + "DashArray": "DashArray", + "DashArrayProperty": "DashArrayProperty", + "DataLegendGroup": "DataLegendGroup", + "DataLegendGroupProperty": "DataLegendGroupProperty", + "DataLegendKey": "DataLegendKey", + "DataLegendKeyProperty": "DataLegendKeyProperty", + "EMA(IEnumerable, int)": "EMA(IEnumerable, int)", + "EMA": "EMA(IEnumerable, int)", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FinalValue": "FinalValue", + "FinalValueProperty": "FinalValueProperty", + "FocusBrush": "FocusBrush", + "FocusBrushProperty": "FocusBrushProperty", + "FromWorldPosition(Point)": "FromWorldPosition(Point)", + "FromWorldPosition": "FromWorldPosition(Point)", + "GetActualMarkerBrush()": "GetActualMarkerBrush()", + "GetActualMarkerBrush": "GetActualMarkerBrush()", + "GetActualMarkerOutlineBrush()": "GetActualMarkerOutlineBrush()", + "GetActualMarkerOutlineBrush": "GetActualMarkerOutlineBrush()", + "GetActualMarkerShape()": "GetActualMarkerShape()", + "GetActualMarkerShape": "GetActualMarkerShape()", + "GetEffectiveViewport()": "GetEffectiveViewport()", + "GetEffectiveViewport": "GetEffectiveViewport()", + "GetExactItemIndex(Point)": "GetExactItemIndex(Point)", + "GetExactItemIndex": "GetExactItemIndex(Point)", + "GetExactItemIndexFromSeriesPixel(Point)": "GetExactItemIndexFromSeriesPixel(Point)", + "GetExactItemIndexFromSeriesPixel": "GetExactItemIndexFromSeriesPixel(Point)", + "GetHitDataContext(Point, bool)": "GetHitDataContext(Point, bool)", + "GetHitDataContext": "GetHitDataContext(Point, bool)", + "GetItem(Point)": "GetItem(Point)", + "GetItem": "GetItem(Point)", + "GetItemFromSeriesPixel(Point)": "GetItemFromSeriesPixel(Point)", + "GetItemFromSeriesPixel": "GetItemFromSeriesPixel(Point)", + "GetItemIndex(Point)": "GetItemIndex(Point)", + "GetItemIndex": "GetItemIndex(Point)", + "GetItemIndexFromSeriesPixel(Point)": "GetItemIndexFromSeriesPixel(Point)", + "GetItemIndexFromSeriesPixel": "GetItemIndexFromSeriesPixel(Point)", + "GetItemSpan()": "GetItemSpan()", + "GetItemSpan": "GetItemSpan()", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GetItemsForSelection(Rect, SeriesSelectionBehavior)": "GetItemsForSelection(Rect, SeriesSelectionBehavior)", + "GetItemsForSelection": "GetItemsForSelection(Rect, SeriesSelectionBehavior)", + "GetMainContentViewport()": "GetMainContentViewport()", + "GetMainContentViewport": "GetMainContentViewport()", + "GetMemberPathValue(string)": "GetMemberPathValue(string)", + "GetMemberPathValue": "GetMemberPathValue(string)", + "GetNextOrExactIndex(Point, bool)": "GetNextOrExactIndex(Point, bool)", + "GetNextOrExactIndex": "GetNextOrExactIndex(Point, bool)", + "GetPreviousOrExactIndex(Point, bool)": "GetPreviousOrExactIndex(Point, bool)", + "GetPreviousOrExactIndex": "GetPreviousOrExactIndex(Point, bool)", + "GetSeriesHighValue(Point, bool, bool)": "GetSeriesHighValue(Point, bool, bool)", + "GetSeriesHighValue": "GetSeriesHighValue(Point, bool, bool)", + "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)": "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValueFromSeriesPixel": "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValuePosition(Point, bool, bool)": "GetSeriesHighValuePosition(Point, bool, bool)", + "GetSeriesHighValuePosition": "GetSeriesHighValuePosition(Point, bool, bool)", + "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValuePositionFromSeriesPixel": "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValue(Point, bool, bool)": "GetSeriesLowValue(Point, bool, bool)", + "GetSeriesLowValue": "GetSeriesLowValue(Point, bool, bool)", + "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)": "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValueFromSeriesPixel": "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValuePosition(Point, bool, bool)": "GetSeriesLowValuePosition(Point, bool, bool)", + "GetSeriesLowValuePosition": "GetSeriesLowValuePosition(Point, bool, bool)", + "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValuePositionFromSeriesPixel": "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValue(Point, bool, bool)": "GetSeriesValue(Point, bool, bool)", + "GetSeriesValue": "GetSeriesValue(Point, bool, bool)", + "GetSeriesValueBoundingBox(Point)": "GetSeriesValueBoundingBox(Point)", + "GetSeriesValueBoundingBox": "GetSeriesValueBoundingBox(Point)", + "GetSeriesValueBoundingBoxFromSeriesPixel(Point)": "GetSeriesValueBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueBoundingBoxFromSeriesPixel": "GetSeriesValueBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueFineGrainedBoundingBoxes(Point)": "GetSeriesValueFineGrainedBoundingBoxes(Point)", + "GetSeriesValueFineGrainedBoundingBoxes": "GetSeriesValueFineGrainedBoundingBoxes(Point)", + "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)": "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)", + "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel": "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)", + "GetSeriesValueFromSeriesPixel(Point, bool, bool)": "GetSeriesValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueFromSeriesPixel": "GetSeriesValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueMarkerBoundingBox(Point)": "GetSeriesValueMarkerBoundingBox(Point)", + "GetSeriesValueMarkerBoundingBox": "GetSeriesValueMarkerBoundingBox(Point)", + "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)": "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueMarkerBoundingBoxFromSeriesPixel": "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValuePosition(Point, bool, bool)": "GetSeriesValuePosition(Point, bool, bool)", + "GetSeriesValuePosition": "GetSeriesValuePosition(Point, bool, bool)", + "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValuePositionFromSeriesPixel": "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueType(ValueLayerValueMode)": "GetSeriesValueType(ValueLayerValueMode)", + "GetSeriesValueType": "GetSeriesValueType(ValueLayerValueMode)", + "GetSeriesValueTypePosition(ValueLayerValueMode)": "GetSeriesValueTypePosition(ValueLayerValueMode)", + "GetSeriesValueTypePosition": "GetSeriesValueTypePosition(ValueLayerValueMode)", + "GetSeriesValueTypePositionFromValue(double[])": "GetSeriesValueTypePositionFromValue(double[])", + "GetSeriesValueTypePositionFromValue": "GetSeriesValueTypePositionFromValue(double[])", + "GetUnscaledPosition(Point)": "GetUnscaledPosition(Point)", + "GetUnscaledPosition": "GetUnscaledPosition(Point)", + "HasMarkers": "HasMarkers", + "HasMarkersProperty": "HasMarkersProperty", + "HasOnlyMarkers": "HasOnlyMarkers", + "HasOnlyMarkersProperty": "HasOnlyMarkersProperty", + "HasValueAxis": "HasValueAxis", + "HasValueAxisProperty": "HasValueAxisProperty", + "HasVisibleMarkers": "HasVisibleMarkers", + "HasVisibleMarkersProperty": "HasVisibleMarkersProperty", + "HideToolTips()": "HideToolTips()", + "HideToolTips": "HideToolTips()", + "HideToolTipsImmediate()": "HideToolTipsImmediate()", + "HideToolTipsImmediate": "HideToolTipsImmediate()", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedLegendItemVisibility": "HighlightedLegendItemVisibility", + "HighlightedLegendItemVisibilityProperty": "HighlightedLegendItemVisibilityProperty", + "HighlightedTitleSuffix": "HighlightedTitleSuffix", + "HighlightedTitleSuffixProperty": "HighlightedTitleSuffixProperty", + "HighlightedValuesDataLegendGroup": "HighlightedValuesDataLegendGroup", + "HighlightedValuesDataLegendGroupProperty": "HighlightedValuesDataLegendGroupProperty", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "HighlightedValuesExtraPropertyOverlays": "HighlightedValuesExtraPropertyOverlays", + "HighlightedValuesFadeOpacity": "HighlightedValuesFadeOpacity", + "HighlightedValuesFadeOpacityProperty": "HighlightedValuesFadeOpacityProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "HitTestMode": "HitTestMode", + "HitTestModeProperty": "HitTestModeProperty", + "Index": "Index", + "IndexProperty": "IndexProperty", + "IsActualLegendFinancial": "IsActualLegendFinancial", + "IsActualLegendFinancialProperty": "IsActualLegendFinancialProperty", + "IsAnnotationCalloutLayer": "IsAnnotationCalloutLayer", + "IsAnnotationCrosshairLayer": "IsAnnotationCrosshairLayer", + "IsAnnotationDataLayer": "IsAnnotationDataLayer", + "IsAnnotationFinalValue": "IsAnnotationFinalValue", + "IsAnnotationHoverLayer": "IsAnnotationHoverLayer", + "IsAnnotationLayer": "IsAnnotationLayer", + "IsAnnotationValueLayer": "IsAnnotationValueLayer", + "IsArea": "IsArea", + "IsAreaOrLine": "IsAreaOrLine", + "IsBar": "IsBar", + "IsCategory": "IsCategory", + "IsColoredItemwise": "IsColoredItemwise", + "IsColoredItemwiseProperty": "IsColoredItemwiseProperty", + "IsColumn": "IsColumn", + "IsComponentHighlightingModeIgnored": "IsComponentHighlightingModeIgnored", + "IsComponentHighlightingModeIgnoredProperty": "IsComponentHighlightingModeIgnoredProperty", + "IsDefaultCrosshairBehaviorDisabled": "IsDefaultCrosshairBehaviorDisabled", + "IsDefaultTooltipBehaviorDisabled": "IsDefaultTooltipBehaviorDisabled", + "IsDropShadowEnabled": "IsDropShadowEnabled", + "IsDropShadowEnabledProperty": "IsDropShadowEnabledProperty", + "IsFinancial": "IsFinancial", + "IsFinancialIndicator": "IsFinancialIndicator", + "IsFinancialOverlay": "IsFinancialOverlay", + "IsFinancialSeries": "IsFinancialSeries", + "IsFinancialWaterfall": "IsFinancialWaterfall", + "IsFragment": "IsFragment", + "IsHighlightOverlay": "IsHighlightOverlay", + "IsHighlightOverlayProperty": "IsHighlightOverlayProperty", + "IsHighlightingEnabled": "IsHighlightingEnabled", + "IsHighlightingEnabledProperty": "IsHighlightingEnabledProperty", + "IsIndexed": "IsIndexed", + "IsIndexedProperty": "IsIndexedProperty", + "IsLayer": "IsLayer", + "IsLayerProperty": "IsLayerProperty", + "IsLineContour": "IsLineContour", + "IsLineOnly": "IsLineOnly", + "IsMarkerlessDisplayPreferred": "IsMarkerlessDisplayPreferred", + "IsMarkerlessDisplayPreferredProperty": "IsMarkerlessDisplayPreferredProperty", + "IsNegativeColorSupported": "IsNegativeColorSupported", + "IsNegativeColorSupportedProperty": "IsNegativeColorSupportedProperty", + "IsPie": "IsPie", + "IsPixel": "IsPixel", + "IsPolar": "IsPolar", + "IsPolygon": "IsPolygon", + "IsPolyline": "IsPolyline", + "IsRadial": "IsRadial", + "IsRange": "IsRange", + "IsScatter": "IsScatter", + "IsShape": "IsShape", + "IsShapeControl": "IsShapeControl", + "IsSpline": "IsSpline", + "IsStacked": "IsStacked", + "IsStep": "IsStep", + "IsSummarizationSupported": "IsSummarizationSupported", + "IsSummarizationSupportedProperty": "IsSummarizationSupportedProperty", + "IsTile": "IsTile", + "IsToolTipLayer": "IsToolTipLayer", + "IsUsableInLegend": "IsUsableInLegend", + "IsUsableInLegendProperty": "IsUsableInLegendProperty", + "IsUserAnnotationLayer": "IsUserAnnotationLayer", + "IsUserAnnotationToolTipLayer": "IsUserAnnotationToolTipLayer", + "IsValueAxisInverted": "IsValueAxisInverted", + "IsValueOverlay": "IsValueOverlay", + "IsVertical": "IsVertical", + "IsWaterfall": "IsWaterfall", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Layers": "Layers", + "Legend": "Legend", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeModeProperty": "LegendItemBadgeModeProperty", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeShapeProperty": "LegendItemBadgeShapeProperty", + "LegendItemVisibility": "LegendItemVisibility", + "LegendItemVisibilityProperty": "LegendItemVisibilityProperty", + "LegendProperty": "LegendProperty", + "LineCap": "LineCap", + "LineCapProperty": "LineCapProperty", + "LineJoin": "LineJoin", + "LineJoinProperty": "LineJoinProperty", + "MMA(IEnumerable, int)": "MMA(IEnumerable, int)", + "MMA": "MMA(IEnumerable, int)", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerFillOpacityProperty": "MarkerFillOpacityProperty", + "MouseOverEnabled": "MouseOverEnabled", + "MouseOverEnabledProperty": "MouseOverEnabledProperty", + "MoveCursorPoint(Point)": "MoveCursorPoint(Point)", + "MoveCursorPoint": "MoveCursorPoint(Point)", + "MovingSum(IEnumerable, int)": "MovingSum(IEnumerable, int)", + "MovingSum": "MovingSum(IEnumerable, int)", + "NotifyIndexedPropertiesChanged()": "NotifyIndexedPropertiesChanged()", + "NotifyIndexedPropertiesChanged": "NotifyIndexedPropertiesChanged()", + "NotifyVisualPropertiesChanged()": "NotifyVisualPropertiesChanged()", + "NotifyVisualPropertiesChanged": "NotifyVisualPropertiesChanged()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnRenderRequested(RenderRequestedEventArgs)": "OnRenderRequested(RenderRequestedEventArgs)", + "OnRenderRequested": "OnRenderRequested(RenderRequestedEventArgs)", + "OnTransitionOutCompleted(TransitionOutCompletedEventArgs)": "OnTransitionOutCompleted(TransitionOutCompletedEventArgs)", + "OnTransitionOutCompleted": "OnTransitionOutCompleted(TransitionOutCompletedEventArgs)", + "Outline": "Outline", + "OutlineMode": "OutlineMode", + "OutlineModeProperty": "OutlineModeProperty", + "OutlineProperty": "OutlineProperty", + "PercentChange": "PercentChange", + "PercentChangeProperty": "PercentChangeProperty", + "PlayTransitionIn()": "PlayTransitionIn()", + "PlayTransitionIn": "PlayTransitionIn()", + "PlayTransitionOut()": "PlayTransitionOut()", + "PlayTransitionOut": "PlayTransitionOut()", + "PlayTransitionOutAndRemove()": "PlayTransitionOutAndRemove()", + "PlayTransitionOutAndRemove": "PlayTransitionOutAndRemove()", + "RemoveAxes()": "RemoveAxes()", + "RemoveAxes": "RemoveAxes()", + "RenderSeries(bool)": "RenderSeries(bool)", + "RenderSeries": "RenderSeries(bool)", + "ReplayTransitionIn()": "ReplayTransitionIn()", + "ReplayTransitionIn": "ReplayTransitionIn()", + "Resolution": "Resolution", + "ResolutionProperty": "ResolutionProperty", + "ResolveLegendIndex()": "ResolveLegendIndex()", + "ResolveLegendIndex": "ResolveLegendIndex()", + "SMA(IEnumerable, int)": "SMA(IEnumerable, int)", + "SMA": "SMA(IEnumerable, int)", + "STDEV(IEnumerable, int)": "STDEV(IEnumerable, int)", + "STDEV": "STDEV(IEnumerable, int)", + "SafeActualBrush": "SafeActualBrush", + "SafeActualBrushProperty": "SafeActualBrushProperty", + "ScrollIntoView(object)": "ScrollIntoView(object)", + "ScrollIntoView": "ScrollIntoView(object)", + "SelectionBrush": "SelectionBrush", + "SelectionBrushProperty": "SelectionBrushProperty", + "SelectionThickness": "SelectionThickness", + "SelectionThicknessProperty": "SelectionThicknessProperty", + "SeriesViewer": "SeriesViewer", + "SeriesViewerProperty": "SeriesViewerProperty", + "SetNegativeColors(Brush, Brush)": "SetNegativeColors(Brush, Brush)", + "SetNegativeColors": "SetNegativeColors(Brush, Brush)", + "ShadowBlur": "ShadowBlur", + "ShadowBlurProperty": "ShadowBlurProperty", + "ShadowColor": "ShadowColor", + "ShadowColorProperty": "ShadowColorProperty", + "ShadowOffsetX": "ShadowOffsetX", + "ShadowOffsetXProperty": "ShadowOffsetXProperty", + "ShadowOffsetY": "ShadowOffsetY", + "ShadowOffsetYProperty": "ShadowOffsetYProperty", + "ShouldAnimateOnDataSourceSwap": "ShouldAnimateOnDataSourceSwap", + "ShouldAnimateOnDataSourceSwapProperty": "ShouldAnimateOnDataSourceSwapProperty", + "ShouldHideAutoCallouts": "ShouldHideAutoCallouts", + "ShouldHideAutoCalloutsProperty": "ShouldHideAutoCalloutsProperty", + "ShouldRemoveHighlightedDataOnLayerHidden": "ShouldRemoveHighlightedDataOnLayerHidden", + "ShouldRemoveHighlightedDataOnLayerHiddenProperty": "ShouldRemoveHighlightedDataOnLayerHiddenProperty", + "ShouldShiftOpacityForSafeActualBrush": "ShouldShiftOpacityForSafeActualBrush", + "ShouldShiftOpacityForSafeActualBrushProperty": "ShouldShiftOpacityForSafeActualBrushProperty", + "ShowDefaultTooltip": "ShowDefaultTooltip", + "ShowDefaultTooltipProperty": "ShowDefaultTooltipProperty", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "TestHit(Point, bool)": "TestHit(Point, bool)", + "TestHit": "TestHit(Point, bool)", + "Thickness": "Thickness", + "ThicknessProperty": "ThicknessProperty", + "Title": "Title", + "TitleProperty": "TitleProperty", + "ToWorldPosition(Point)": "ToWorldPosition(Point)", + "ToWorldPosition": "ToWorldPosition(Point)", + "ToWorldRect(Rect)": "ToWorldRect(Rect)", + "ToWorldRect": "ToWorldRect(Rect)", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionEasingFunction": "TransitionEasingFunction", + "TransitionEasingFunctionProperty": "TransitionEasingFunctionProperty", + "TransitionInDuration": "TransitionInDuration", + "TransitionInDurationProperty": "TransitionInDurationProperty", + "TransitionInEasingFunction": "TransitionInEasingFunction", + "TransitionInEasingFunctionProperty": "TransitionInEasingFunctionProperty", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionInSpeedTypeProperty": "TransitionInSpeedTypeProperty", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutDurationProperty": "TransitionOutDurationProperty", + "TransitionOutEasingFunction": "TransitionOutEasingFunction", + "TransitionOutEasingFunctionProperty": "TransitionOutEasingFunctionProperty", + "TransitionOutSpeedType": "TransitionOutSpeedType", + "TransitionOutSpeedTypeProperty": "TransitionOutSpeedTypeProperty", + "UpdateShowDefaultTooltip()": "UpdateShowDefaultTooltip()", + "UpdateShowDefaultTooltip": "UpdateShowDefaultTooltip()", + "UseItemWiseColors": "UseItemWiseColors", + "UseItemWiseColorsProperty": "UseItemWiseColorsProperty", + "VisibleRangeMarginBottom": "VisibleRangeMarginBottom", + "VisibleRangeMarginBottomProperty": "VisibleRangeMarginBottomProperty", + "VisibleRangeMarginLeft": "VisibleRangeMarginLeft", + "VisibleRangeMarginLeftProperty": "VisibleRangeMarginLeftProperty", + "VisibleRangeMarginRight": "VisibleRangeMarginRight", + "VisibleRangeMarginRightProperty": "VisibleRangeMarginRightProperty", + "VisibleRangeMarginTop": "VisibleRangeMarginTop", + "VisibleRangeMarginTopProperty": "VisibleRangeMarginTopProperty", + "VisibleRangeMode": "VisibleRangeMode", + "VisibleRangeModeProperty": "VisibleRangeModeProperty", + "WMA(IEnumerable, int)": "WMA(IEnumerable, int)", + "WMA": "WMA(IEnumerable, int)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesCollection", + "k": "class", + "s": "classes", + "m": { + "SeriesCollection()": "SeriesCollection()", + "SeriesCollection": "SeriesCollection()", + "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)": "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionAfterChanged": "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)": "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionBeforeChanged": "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesDescription()": "SeriesDescription()", + "SeriesDescription": "SeriesDescription()", + "ActualAreaFillOpacity": "ActualAreaFillOpacity", + "ActualBrush": "ActualBrush", + "ActualFocusBrush": "ActualFocusBrush", + "ActualFocusMode": "ActualFocusMode", + "ActualHighlightedValuesFadeOpacity": "ActualHighlightedValuesFadeOpacity", + "ActualHighlightingFadeOpacity": "ActualHighlightingFadeOpacity", + "ActualHighlightingMode": "ActualHighlightingMode", + "ActualHitTestMode": "ActualHitTestMode", + "ActualLayers": "ActualLayers", + "ActualLegendItemBadgeBrush": "ActualLegendItemBadgeBrush", + "ActualLegendItemBadgeOutline": "ActualLegendItemBadgeOutline", + "ActualLegendItemBadgeTemplateRef": "ActualLegendItemBadgeTemplateRef", + "ActualMarkerFillOpacity": "ActualMarkerFillOpacity", + "ActualOutline": "ActualOutline", + "ActualResolution": "ActualResolution", + "ActualSelectionBrush": "ActualSelectionBrush", + "ActualSelectionMode": "ActualSelectionMode", + "ActualThickness": "ActualThickness", + "AreaFillOpacity": "AreaFillOpacity", + "AttachTooltipToRoot": "AttachTooltipToRoot", + "AutoCalloutLabelFormat": "AutoCalloutLabelFormat", + "AutoCalloutLabelFormatSpecifiers": "AutoCalloutLabelFormatSpecifiers", + "AutoCalloutValueLabelFormat": "AutoCalloutValueLabelFormat", + "AutoCalloutValueLabelFormatSpecifiers": "AutoCalloutValueLabelFormatSpecifiers", + "Brush": "Brush", + "CoercionMethodsRef": "CoercionMethodsRef", + "DashArray": "DashArray", + "DataLegendGroup": "DataLegendGroup", + "DataSourceRef": "DataSourceRef", + "DiscreteLegendItemTemplateRef": "DiscreteLegendItemTemplateRef", + "ExpectFunctions": "ExpectFunctions", + "FinalValue": "FinalValue", + "FocusBrush": "FocusBrush", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedLegendItemVisibility": "HighlightedLegendItemVisibility", + "HighlightedTitleSuffix": "HighlightedTitleSuffix", + "HighlightedValuesDataLegendGroup": "HighlightedValuesDataLegendGroup", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesExtraPropertyOverlays": "HighlightedValuesExtraPropertyOverlays", + "HighlightedValuesFadeOpacity": "HighlightedValuesFadeOpacity", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HitTestMode": "HitTestMode", + "Index": "Index", + "IsActualLegendFinancial": "IsActualLegendFinancial", + "IsComponentHighlightingModeIgnored": "IsComponentHighlightingModeIgnored", + "IsDefaultToolTipSelected": "IsDefaultToolTipSelected", + "IsDropShadowEnabled": "IsDropShadowEnabled", + "IsHighlightingEnabled": "IsHighlightingEnabled", + "Layers": "Layers", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "LegendItemTemplateRef": "LegendItemTemplateRef", + "LegendItemVisibility": "LegendItemVisibility", + "LegendRef": "LegendRef", + "LineCap": "LineCap", + "LineJoin": "LineJoin", + "MarkerFillOpacity": "MarkerFillOpacity", + "MouseOverEnabled": "MouseOverEnabled", + "Opacity": "Opacity", + "Outline": "Outline", + "OutlineMode": "OutlineMode", + "PercentChange": "PercentChange", + "RenderRequestedRef": "RenderRequestedRef", + "Resolution": "Resolution", + "SafeActualBrush": "SafeActualBrush", + "SelectionBrush": "SelectionBrush", + "SelectionThickness": "SelectionThickness", + "ShadowBlur": "ShadowBlur", + "ShadowColor": "ShadowColor", + "ShadowOffsetX": "ShadowOffsetX", + "ShadowOffsetY": "ShadowOffsetY", + "ShouldAnimateOnDataSourceSwap": "ShouldAnimateOnDataSourceSwap", + "ShouldHideAutoCallouts": "ShouldHideAutoCallouts", + "ShouldRemoveHighlightedDataOnLayerHidden": "ShouldRemoveHighlightedDataOnLayerHidden", + "ShouldShiftOpacityForSafeActualBrush": "ShouldShiftOpacityForSafeActualBrush", + "ShowDefaultTooltip": "ShowDefaultTooltip", + "Thickness": "Thickness", + "Title": "Title", + "TooltipTemplateRef": "TooltipTemplateRef", + "TransitionDuration": "TransitionDuration", + "TransitionEasingFunctionRef": "TransitionEasingFunctionRef", + "TransitionInDuration": "TransitionInDuration", + "TransitionInEasingFunctionRef": "TransitionInEasingFunctionRef", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionOutCompletedRef": "TransitionOutCompletedRef", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutEasingFunctionRef": "TransitionOutEasingFunctionRef", + "TransitionOutSpeedType": "TransitionOutSpeedType", + "Type": "Type", + "UseItemWiseColors": "UseItemWiseColors", + "UseSingleShadow": "UseSingleShadow", + "Visibility": "Visibility", + "VisibleRangeMarginBottom": "VisibleRangeMarginBottom", + "VisibleRangeMarginLeft": "VisibleRangeMarginLeft", + "VisibleRangeMarginRight": "VisibleRangeMarginRight", + "VisibleRangeMarginTop": "VisibleRangeMarginTop", + "VisibleRangeMode": "VisibleRangeMode" + } + } + ], + "SeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesDescriptionMetadata()": "SeriesDescriptionMetadata()", + "SeriesDescriptionMetadata": "SeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesHighlightedValuesDisplayMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/SeriesHighlightedValuesDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesHighlightingBehavior": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesHighlightingBehavior", + "k": "enum", + "s": "enums" + } + ], + "SeriesHighlightingMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesHighlightingMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesHitTestMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesHitTestMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesLayer", + "k": "class", + "s": "classes", + "m": { + "SeriesLayer()": "SeriesLayer()", + "SeriesLayer": "SeriesLayer()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PlayTransitionIn()": "PlayTransitionIn()", + "PlayTransitionIn": "PlayTransitionIn()", + "PlayTransitionOutAndRemove()": "PlayTransitionOutAndRemove()", + "PlayTransitionOutAndRemove": "PlayTransitionOutAndRemove()", + "PropertyOverlays": "PropertyOverlays", + "TransitionOutIsInProgress": "TransitionOutIsInProgress", + "ZIndex": "ZIndex", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesLayerCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesLayerCollection", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerCollection()": "SeriesLayerCollection()", + "SeriesLayerCollection": "SeriesLayerCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesLayerDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerDescription()": "SeriesLayerDescription()", + "SeriesLayerDescription": "SeriesLayerDescription()", + "PropertyOverlays": "PropertyOverlays", + "Type": "Type", + "ZIndex": "ZIndex" + } + } + ], + "SeriesLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerDescriptionMetadata()": "SeriesLayerDescriptionMetadata()", + "SeriesLayerDescriptionMetadata": "SeriesLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesLayerPropertyOverlay": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesLayerPropertyOverlay", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlay()": "SeriesLayerPropertyOverlay()", + "SeriesLayerPropertyOverlay": "SeriesLayerPropertyOverlay()", + "CurrentValuePropertyName": "CurrentValuePropertyName", + "InternalPropertyName": "InternalPropertyName", + "IsAlwaysApplied": "IsAlwaysApplied", + "IsSourceOverlay": "IsSourceOverlay", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnValueResolving(SeriesLayerPropertyOverlayValueResolvingEventArgs)": "OnValueResolving(SeriesLayerPropertyOverlayValueResolvingEventArgs)", + "OnValueResolving": "OnValueResolving(SeriesLayerPropertyOverlayValueResolvingEventArgs)", + "PropertyName": "PropertyName", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesLayerPropertyOverlayCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesLayerPropertyOverlayCollection", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayCollection()": "SeriesLayerPropertyOverlayCollection()", + "SeriesLayerPropertyOverlayCollection": "SeriesLayerPropertyOverlayCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesLayerPropertyOverlayDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesLayerPropertyOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayDescription()": "SeriesLayerPropertyOverlayDescription()", + "SeriesLayerPropertyOverlayDescription": "SeriesLayerPropertyOverlayDescription()", + "CurrentValuePropertyName": "CurrentValuePropertyName", + "IsAlwaysApplied": "IsAlwaysApplied", + "IsSourceOverlay": "IsSourceOverlay", + "PropertyName": "PropertyName", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type", + "ValueRef": "ValueRef", + "ValueResolvingRef": "ValueResolvingRef" + } + } + ], + "SeriesLayerPropertyOverlayDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesLayerPropertyOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayDescriptionMetadata()": "SeriesLayerPropertyOverlayDescriptionMetadata()", + "SeriesLayerPropertyOverlayDescriptionMetadata": "SeriesLayerPropertyOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesLayerPropertyOverlayValueResolvingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription()": "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription()", + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription": "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription()", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata()": "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata()", + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata": "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesMatcher": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesMatcher", + "k": "class", + "s": "classes", + "m": { + "SeriesMatcher()": "SeriesMatcher()", + "SeriesMatcher": "SeriesMatcher()", + "Index": "Index", + "MemberPath": "MemberPath", + "MemberPathType": "MemberPathType", + "Name": "Name", + "Title": "Title", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesMatcherDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesMatcherDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesMatcherDescription()": "SeriesMatcherDescription()", + "SeriesMatcherDescription": "SeriesMatcherDescription()", + "Index": "Index", + "MemberPath": "MemberPath", + "MemberPathType": "MemberPathType", + "Title": "Title", + "Type": "Type" + } + } + ], + "SeriesMatcherDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesMatcherDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesMatcherDescriptionMetadata()": "SeriesMatcherDescriptionMetadata()", + "SeriesMatcherDescriptionMetadata": "SeriesMatcherDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesMatcherDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesMatcherDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SeriesMatcherDescriptionModule()": "SeriesMatcherDescriptionModule()", + "SeriesMatcherDescriptionModule": "SeriesMatcherDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesOutlineMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesOutlineMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesPlotAreaMarginHorizontalMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesPlotAreaMarginHorizontalMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesPlotAreaMarginVerticalMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesPlotAreaMarginVerticalMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesSelectionBehavior": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesSelectionBehavior", + "k": "enum", + "s": "enums" + } + ], + "SeriesSelectionMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesViewer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesViewer", + "k": "class", + "s": "classes", + "m": { + "ActualContentHitTestMode": "ActualContentHitTestMode", + "ActualContentHitTestModeProperty": "ActualContentHitTestModeProperty", + "ActualInteractionPixelScalingRatio": "ActualInteractionPixelScalingRatio", + "ActualInteractionPixelScalingRatioProperty": "ActualInteractionPixelScalingRatioProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "ActualPlotAreaBorderBrush": "ActualPlotAreaBorderBrush", + "ActualPlotAreaBorderBrushProperty": "ActualPlotAreaBorderBrushProperty", + "ActualWindowPositionHorizontal": "ActualWindowPositionHorizontal", + "ActualWindowPositionHorizontalProperty": "ActualWindowPositionHorizontalProperty", + "ActualWindowPositionVertical": "ActualWindowPositionVertical", + "ActualWindowPositionVerticalProperty": "ActualWindowPositionVerticalProperty", + "ActualWindowRect": "ActualWindowRect", + "ActualWindowRectMinHeight": "ActualWindowRectMinHeight", + "ActualWindowRectMinHeightProperty": "ActualWindowRectMinHeightProperty", + "ActualWindowRectMinWidth": "ActualWindowRectMinWidth", + "ActualWindowRectMinWidthProperty": "ActualWindowRectMinWidthProperty", + "ActualWindowRectProperty": "ActualWindowRectProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AnimateSeriesWhenAxisRangeChanges": "AnimateSeriesWhenAxisRangeChanges", + "AnimateSeriesWhenAxisRangeChangesProperty": "AnimateSeriesWhenAxisRangeChangesProperty", + "AutoMarginHeight": "AutoMarginHeight", + "AutoMarginHeightProperty": "AutoMarginHeightProperty", + "AutoMarginWidth": "AutoMarginWidth", + "AutoMarginWidthProperty": "AutoMarginWidthProperty", + "BottomMargin": "BottomMargin", + "BottomMarginProperty": "BottomMarginProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "CancelAnnotationFlow(string)": "CancelAnnotationFlow(string)", + "CancelAnnotationFlow": "CancelAnnotationFlow(string)", + "CancelCreatingAnnotation()": "CancelCreatingAnnotation()", + "CancelCreatingAnnotation": "CancelCreatingAnnotation()", + "CancelDeletingAnnotation()": "CancelDeletingAnnotation()", + "CancelDeletingAnnotation": "CancelDeletingAnnotation()", + "CancelManipulation()": "CancelManipulation()", + "CancelManipulation": "CancelManipulation()", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "ContentHitTestMode": "ContentHitTestMode", + "ContentHitTestModeProperty": "ContentHitTestModeProperty", + "ContentViewport": "ContentViewport", + "ContentViewportProperty": "ContentViewportProperty", + "CrosshairPoint": "CrosshairPoint", + "CrosshairPointProperty": "CrosshairPointProperty", + "CrosshairVisibility": "CrosshairVisibility", + "CrosshairVisibilityProperty": "CrosshairVisibilityProperty", + "DefaultInteraction": "DefaultInteraction", + "DefaultInteractionProperty": "DefaultInteractionProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "DragCrosshairActivated": "DragCrosshairActivated", + "DragCrosshairActivatedProperty": "DragCrosshairActivatedProperty", + "EffectiveViewport": "EffectiveViewport", + "EffectiveViewportProperty": "EffectiveViewportProperty", + "FinishAnnotationFlow(UserAnnotationInformation)": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishAnnotationFlow": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishCreatingAnnotation()": "FinishCreatingAnnotation()", + "FinishCreatingAnnotation": "FinishCreatingAnnotation()", + "FinishDeletingAnnotation()": "FinishDeletingAnnotation()", + "FinishDeletingAnnotation": "FinishDeletingAnnotation()", + "FireMouseLeaveOnManipulationStart": "FireMouseLeaveOnManipulationStart", + "FireMouseLeaveOnManipulationStartProperty": "FireMouseLeaveOnManipulationStartProperty", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FocusBrush": "FocusBrush", + "FocusBrushProperty": "FocusBrushProperty", + "FocusDismissDelayMilliseconds": "FocusDismissDelayMilliseconds", + "FocusDismissDelayMillisecondsProperty": "FocusDismissDelayMillisecondsProperty", + "FocusMode": "FocusMode", + "FocusModeProperty": "FocusModeProperty", + "FocusTransitionDuration": "FocusTransitionDuration", + "FocusTransitionDurationProperty": "FocusTransitionDurationProperty", + "FocusedSeriesItems": "FocusedSeriesItems", + "FullSeries": "FullSeries", + "FullSeriesProperty": "FullSeriesProperty", + "GetActualWindowScaleHorizontal()": "GetActualWindowScaleHorizontal()", + "GetActualWindowScaleHorizontal": "GetActualWindowScaleHorizontal()", + "GetActualWindowScaleVertical()": "GetActualWindowScaleVertical()", + "GetActualWindowScaleVertical": "GetActualWindowScaleVertical()", + "GetAnimationIdleVersionNumber()": "GetAnimationIdleVersionNumber()", + "GetAnimationIdleVersionNumber": "GetAnimationIdleVersionNumber()", + "GetCurrentActualWindowRect()": "GetCurrentActualWindowRect()", + "GetCurrentActualWindowRect": "GetCurrentActualWindowRect()", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "HideToolTip()": "HideToolTip()", + "HideToolTip": "HideToolTip()", + "HideToolTipImmediate()": "HideToolTipImmediate()", + "HideToolTipImmediate": "HideToolTipImmediate()", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "HighlightingBehavior": "HighlightingBehavior", + "HighlightingBehaviorProperty": "HighlightingBehaviorProperty", + "HighlightingDismissDelayMilliseconds": "HighlightingDismissDelayMilliseconds", + "HighlightingDismissDelayMillisecondsProperty": "HighlightingDismissDelayMillisecondsProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "HighlightingMode": "HighlightingMode", + "HighlightingModeProperty": "HighlightingModeProperty", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HighlightingTransitionDurationProperty": "HighlightingTransitionDurationProperty", + "HorizontalCrosshairBrush": "HorizontalCrosshairBrush", + "HorizontalCrosshairBrushProperty": "HorizontalCrosshairBrushProperty", + "HorizontalViewScrollbarCornerRadius": "HorizontalViewScrollbarCornerRadius", + "HorizontalViewScrollbarCornerRadiusProperty": "HorizontalViewScrollbarCornerRadiusProperty", + "HorizontalViewScrollbarFill": "HorizontalViewScrollbarFill", + "HorizontalViewScrollbarFillProperty": "HorizontalViewScrollbarFillProperty", + "HorizontalViewScrollbarHeight": "HorizontalViewScrollbarHeight", + "HorizontalViewScrollbarHeightProperty": "HorizontalViewScrollbarHeightProperty", + "HorizontalViewScrollbarInset": "HorizontalViewScrollbarInset", + "HorizontalViewScrollbarInsetProperty": "HorizontalViewScrollbarInsetProperty", + "HorizontalViewScrollbarMaxOpacity": "HorizontalViewScrollbarMaxOpacity", + "HorizontalViewScrollbarMaxOpacityProperty": "HorizontalViewScrollbarMaxOpacityProperty", + "HorizontalViewScrollbarMode": "HorizontalViewScrollbarMode", + "HorizontalViewScrollbarModeProperty": "HorizontalViewScrollbarModeProperty", + "HorizontalViewScrollbarOutline": "HorizontalViewScrollbarOutline", + "HorizontalViewScrollbarOutlineProperty": "HorizontalViewScrollbarOutlineProperty", + "HorizontalViewScrollbarPosition": "HorizontalViewScrollbarPosition", + "HorizontalViewScrollbarPositionProperty": "HorizontalViewScrollbarPositionProperty", + "HorizontalViewScrollbarShouldAddAutoTrackInsets": "HorizontalViewScrollbarShouldAddAutoTrackInsets", + "HorizontalViewScrollbarShouldAddAutoTrackInsetsProperty": "HorizontalViewScrollbarShouldAddAutoTrackInsetsProperty", + "HorizontalViewScrollbarStrokeThickness": "HorizontalViewScrollbarStrokeThickness", + "HorizontalViewScrollbarStrokeThicknessProperty": "HorizontalViewScrollbarStrokeThicknessProperty", + "HorizontalViewScrollbarTrackEndInset": "HorizontalViewScrollbarTrackEndInset", + "HorizontalViewScrollbarTrackEndInsetProperty": "HorizontalViewScrollbarTrackEndInsetProperty", + "HorizontalViewScrollbarTrackStartInset": "HorizontalViewScrollbarTrackStartInset", + "HorizontalViewScrollbarTrackStartInsetProperty": "HorizontalViewScrollbarTrackStartInsetProperty", + "InteractionOverride": "InteractionOverride", + "InteractionOverrideProperty": "InteractionOverrideProperty", + "InteractionPixelScalingRatio": "InteractionPixelScalingRatio", + "InteractionPixelScalingRatioProperty": "InteractionPixelScalingRatioProperty", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsAnimationActive()": "IsAnimationActive()", + "IsAnimationActive": "IsAnimationActive()", + "IsAntiAliasingEnabledDuringInteraction": "IsAntiAliasingEnabledDuringInteraction", + "IsAntiAliasingEnabledDuringInteractionProperty": "IsAntiAliasingEnabledDuringInteractionProperty", + "IsDetached": "IsDetached", + "IsDetachedProperty": "IsDetachedProperty", + "IsInCreateAnnotationMode": "IsInCreateAnnotationMode", + "IsInCreateAnnotationModeProperty": "IsInCreateAnnotationModeProperty", + "IsInDeleteAnnotationMode": "IsInDeleteAnnotationMode", + "IsInDeleteAnnotationModeProperty": "IsInDeleteAnnotationModeProperty", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsSurfaceInteractionDisabledProperty": "IsSurfaceInteractionDisabledProperty", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsUserAnnotationsEnabledProperty": "IsUserAnnotationsEnabledProperty", + "IsWindowSyncedToVisibleRange": "IsWindowSyncedToVisibleRange", + "IsWindowSyncedToVisibleRangeProperty": "IsWindowSyncedToVisibleRangeProperty", + "IsZoomingEnabled()": "IsZoomingEnabled()", + "IsZoomingEnabled": "IsZoomingEnabled()", + "IsZoomingHorizontallyEnabled()": "IsZoomingHorizontallyEnabled()", + "IsZoomingHorizontallyEnabled": "IsZoomingHorizontallyEnabled()", + "IsZoomingVerticallyEnabled()": "IsZoomingVerticallyEnabled()", + "IsZoomingVerticallyEnabled": "IsZoomingVerticallyEnabled()", + "ItemsSourceChanged": "ItemsSourceChanged", + "ItemsSourceChangedProperty": "ItemsSourceChangedProperty", + "LeftMargin": "LeftMargin", + "LeftMarginProperty": "LeftMarginProperty", + "Legend": "Legend", + "LegendHighlightingMode": "LegendHighlightingMode", + "LegendHighlightingModeProperty": "LegendHighlightingModeProperty", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeModeProperty": "LegendItemBadgeModeProperty", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeShapeProperty": "LegendItemBadgeShapeProperty", + "LegendProperty": "LegendProperty", + "LoadAnnotationsFromJson(string)": "LoadAnnotationsFromJson(string)", + "LoadAnnotationsFromJson": "LoadAnnotationsFromJson(string)", + "MarkerAutomaticBehavior": "MarkerAutomaticBehavior", + "MarkerAutomaticBehaviorProperty": "MarkerAutomaticBehaviorProperty", + "MarkerBrushes": "MarkerBrushes", + "MarkerBrushesProperty": "MarkerBrushesProperty", + "MarkerOutlines": "MarkerOutlines", + "MarkerOutlinesProperty": "MarkerOutlinesProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySeriesDataChanged()": "NotifySeriesDataChanged()", + "NotifySeriesDataChanged": "NotifySeriesDataChanged()", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "OnActualWindowRectChanged(RectChangedEventArgs)": "OnActualWindowRectChanged(RectChangedEventArgs)", + "OnActualWindowRectChanged": "OnActualWindowRectChanged(RectChangedEventArgs)", + "OnAxisLabelMouseClick(AxisMouseEventArgs)": "OnAxisLabelMouseClick(AxisMouseEventArgs)", + "OnAxisLabelMouseClick": "OnAxisLabelMouseClick(AxisMouseEventArgs)", + "OnAxisLabelMouseDown(AxisMouseEventArgs)": "OnAxisLabelMouseDown(AxisMouseEventArgs)", + "OnAxisLabelMouseDown": "OnAxisLabelMouseDown(AxisMouseEventArgs)", + "OnAxisLabelMouseEnter(AxisMouseEventArgs)": "OnAxisLabelMouseEnter(AxisMouseEventArgs)", + "OnAxisLabelMouseEnter": "OnAxisLabelMouseEnter(AxisMouseEventArgs)", + "OnAxisLabelMouseLeave(AxisMouseEventArgs)": "OnAxisLabelMouseLeave(AxisMouseEventArgs)", + "OnAxisLabelMouseLeave": "OnAxisLabelMouseLeave(AxisMouseEventArgs)", + "OnAxisLabelMouseOver(AxisMouseEventArgs)": "OnAxisLabelMouseOver(AxisMouseEventArgs)", + "OnAxisLabelMouseOver": "OnAxisLabelMouseOver(AxisMouseEventArgs)", + "OnAxisLabelMouseUp(AxisMouseEventArgs)": "OnAxisLabelMouseUp(AxisMouseEventArgs)", + "OnAxisLabelMouseUp": "OnAxisLabelMouseUp(AxisMouseEventArgs)", + "OnAxisPanelMouseClick(AxisMouseEventArgs)": "OnAxisPanelMouseClick(AxisMouseEventArgs)", + "OnAxisPanelMouseClick": "OnAxisPanelMouseClick(AxisMouseEventArgs)", + "OnAxisPanelMouseDown(AxisMouseEventArgs)": "OnAxisPanelMouseDown(AxisMouseEventArgs)", + "OnAxisPanelMouseDown": "OnAxisPanelMouseDown(AxisMouseEventArgs)", + "OnAxisPanelMouseEnter(AxisMouseEventArgs)": "OnAxisPanelMouseEnter(AxisMouseEventArgs)", + "OnAxisPanelMouseEnter": "OnAxisPanelMouseEnter(AxisMouseEventArgs)", + "OnAxisPanelMouseLeave(AxisMouseEventArgs)": "OnAxisPanelMouseLeave(AxisMouseEventArgs)", + "OnAxisPanelMouseLeave": "OnAxisPanelMouseLeave(AxisMouseEventArgs)", + "OnAxisPanelMouseOver(AxisMouseEventArgs)": "OnAxisPanelMouseOver(AxisMouseEventArgs)", + "OnAxisPanelMouseOver": "OnAxisPanelMouseOver(AxisMouseEventArgs)", + "OnAxisPanelMouseUp(AxisMouseEventArgs)": "OnAxisPanelMouseUp(AxisMouseEventArgs)", + "OnAxisPanelMouseUp": "OnAxisPanelMouseUp(AxisMouseEventArgs)", + "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)": "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnFocusedSeriesItemsChanged": "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnGridAreaRectChanged(ScreenRectChangedEventArgs)": "OnGridAreaRectChanged(ScreenRectChangedEventArgs)", + "OnGridAreaRectChanged": "OnGridAreaRectChanged(ScreenRectChangedEventArgs)", + "OnPlotAreaClicked(PlotAreaPointerActionEventArgs)": "OnPlotAreaClicked(PlotAreaPointerActionEventArgs)", + "OnPlotAreaClicked": "OnPlotAreaClicked(PlotAreaPointerActionEventArgs)", + "OnPlotAreaPointerEnter(PlotAreaPointerEventArgs)": "OnPlotAreaPointerEnter(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerEnter": "OnPlotAreaPointerEnter(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerLeave(PlotAreaPointerEventArgs)": "OnPlotAreaPointerLeave(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerLeave": "OnPlotAreaPointerLeave(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerOver(PlotAreaPointerEventArgs)": "OnPlotAreaPointerOver(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerOver": "OnPlotAreaPointerOver(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerPressed(PlotAreaPointerActionEventArgs)": "OnPlotAreaPointerPressed(PlotAreaPointerActionEventArgs)", + "OnPlotAreaPointerPressed": "OnPlotAreaPointerPressed(PlotAreaPointerActionEventArgs)", + "OnPlotAreaPointerReleased(PlotAreaPointerActionEventArgs)": "OnPlotAreaPointerReleased(PlotAreaPointerActionEventArgs)", + "OnPlotAreaPointerReleased": "OnPlotAreaPointerReleased(PlotAreaPointerActionEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRefreshCompleted(EventArgs)": "OnRefreshCompleted(EventArgs)", + "OnRefreshCompleted": "OnRefreshCompleted(EventArgs)", + "OnResizeIdle(ChartResizeIdleEventArgs)": "OnResizeIdle(ChartResizeIdleEventArgs)", + "OnResizeIdle": "OnResizeIdle(ChartResizeIdleEventArgs)", + "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)": "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnSelectedSeriesItemsChanged": "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnSeriesClick(DataChartPointerEventArgs)": "OnSeriesClick(DataChartPointerEventArgs)", + "OnSeriesClick": "OnSeriesClick(DataChartPointerEventArgs)", + "OnSeriesCursorPointerMoved(ChartCursorEventArgs)": "OnSeriesCursorPointerMoved(ChartCursorEventArgs)", + "OnSeriesCursorPointerMoved": "OnSeriesCursorPointerMoved(ChartCursorEventArgs)", + "OnSeriesPointerEntered(DataChartPointerEventArgs)": "OnSeriesPointerEntered(DataChartPointerEventArgs)", + "OnSeriesPointerEntered": "OnSeriesPointerEntered(DataChartPointerEventArgs)", + "OnSeriesPointerExited(DataChartPointerEventArgs)": "OnSeriesPointerExited(DataChartPointerEventArgs)", + "OnSeriesPointerExited": "OnSeriesPointerExited(DataChartPointerEventArgs)", + "OnSeriesPointerMoved(DataChartPointerEventArgs)": "OnSeriesPointerMoved(DataChartPointerEventArgs)", + "OnSeriesPointerMoved": "OnSeriesPointerMoved(DataChartPointerEventArgs)", + "OnSeriesPointerPressed(DataChartPointerEventArgs)": "OnSeriesPointerPressed(DataChartPointerEventArgs)", + "OnSeriesPointerPressed": "OnSeriesPointerPressed(DataChartPointerEventArgs)", + "OnSeriesPointerReleased(DataChartPointerEventArgs)": "OnSeriesPointerReleased(DataChartPointerEventArgs)", + "OnSeriesPointerReleased": "OnSeriesPointerReleased(DataChartPointerEventArgs)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationInformationRequested": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnUserAnnotationToolTipContentUpdating": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnViewerManipulationEnding(SeriesViewerManipulationEventArgs)": "OnViewerManipulationEnding(SeriesViewerManipulationEventArgs)", + "OnViewerManipulationEnding": "OnViewerManipulationEnding(SeriesViewerManipulationEventArgs)", + "OnViewerManipulationStarting(SeriesViewerManipulationEventArgs)": "OnViewerManipulationStarting(SeriesViewerManipulationEventArgs)", + "OnViewerManipulationStarting": "OnViewerManipulationStarting(SeriesViewerManipulationEventArgs)", + "OnWindowRectChanged(RectChangedEventArgs)": "OnWindowRectChanged(RectChangedEventArgs)", + "OnWindowRectChanged": "OnWindowRectChanged(RectChangedEventArgs)", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "PlotAreaBackground": "PlotAreaBackground", + "PlotAreaBackgroundProperty": "PlotAreaBackgroundProperty", + "PreviewPathFill": "PreviewPathFill", + "PreviewPathFillProperty": "PreviewPathFillProperty", + "PreviewPathOpacity": "PreviewPathOpacity", + "PreviewPathOpacityProperty": "PreviewPathOpacityProperty", + "PreviewPathStroke": "PreviewPathStroke", + "PreviewPathStrokeProperty": "PreviewPathStrokeProperty", + "PreviewRect": "PreviewRect", + "PreviewRectProperty": "PreviewRectProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "QueueForAnimationIdle(Action, int)": "QueueForAnimationIdle(Action, int)", + "QueueForAnimationIdle": "QueueForAnimationIdle(Action, int)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "ResetAnnotations()": "ResetAnnotations()", + "ResetAnnotations": "ResetAnnotations()", + "ResetZoom()": "ResetZoom()", + "ResetZoom": "ResetZoom()", + "ResizeIdleMilliseconds": "ResizeIdleMilliseconds", + "ResizeIdleMillisecondsProperty": "ResizeIdleMillisecondsProperty", + "RightButtonDefaultInteraction": "RightButtonDefaultInteraction", + "RightButtonDefaultInteractionProperty": "RightButtonDefaultInteractionProperty", + "RightMargin": "RightMargin", + "RightMarginProperty": "RightMarginProperty", + "SaveAnnotationsToJson()": "SaveAnnotationsToJson()", + "SaveAnnotationsToJson": "SaveAnnotationsToJson()", + "ScrollbarsAnimationDuration": "ScrollbarsAnimationDuration", + "ScrollbarsAnimationDurationProperty": "ScrollbarsAnimationDurationProperty", + "SelectedSeriesItems": "SelectedSeriesItems", + "SelectionBehavior": "SelectionBehavior", + "SelectionBehaviorProperty": "SelectionBehaviorProperty", + "SelectionBrush": "SelectionBrush", + "SelectionBrushProperty": "SelectionBrushProperty", + "SelectionDismissDelayMilliseconds": "SelectionDismissDelayMilliseconds", + "SelectionDismissDelayMillisecondsProperty": "SelectionDismissDelayMillisecondsProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "SelectionTransitionDuration": "SelectionTransitionDuration", + "SelectionTransitionDurationProperty": "SelectionTransitionDurationProperty", + "Series": "Series", + "SeriesValueLayerUseLegend": "SeriesValueLayerUseLegend", + "SeriesValueLayerUseLegendProperty": "SeriesValueLayerUseLegendProperty", + "ShouldAddAutoMargins()": "ShouldAddAutoMargins()", + "ShouldAddAutoMargins": "ShouldAddAutoMargins()", + "ShouldMatchZOrderToSeriesOrder": "ShouldMatchZOrderToSeriesOrder", + "ShouldMatchZOrderToSeriesOrderProperty": "ShouldMatchZOrderToSeriesOrderProperty", + "ShouldPanOnMaximumZoom": "ShouldPanOnMaximumZoom", + "ShouldPanOnMaximumZoomProperty": "ShouldPanOnMaximumZoomProperty", + "ShouldSimulateHoverMoveCrosshairPoint": "ShouldSimulateHoverMoveCrosshairPoint", + "ShouldSimulateHoverMoveCrosshairPointProperty": "ShouldSimulateHoverMoveCrosshairPointProperty", + "SimulateClick(Point)": "SimulateClick(Point)", + "SimulateClick": "SimulateClick(Point)", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "SimulateMouseLeave()": "SimulateMouseLeave()", + "SimulateMouseLeave": "SimulateMouseLeave()", + "SimulatePlotPointerUp(Point)": "SimulatePlotPointerUp(Point)", + "SimulatePlotPointerUp": "SimulatePlotPointerUp(Point)", + "SimulatePressAndHold(Point)": "SimulatePressAndHold(Point)", + "SimulatePressAndHold": "SimulatePressAndHold(Point)", + "StartCreatingAnnotation()": "StartCreatingAnnotation()", + "StartCreatingAnnotation": "StartCreatingAnnotation()", + "StartDeletingAnnotation()": "StartDeletingAnnotation()", + "StartDeletingAnnotation": "StartDeletingAnnotation()", + "Subtitle": "Subtitle", + "SubtitleBottomMargin": "SubtitleBottomMargin", + "SubtitleBottomMarginProperty": "SubtitleBottomMarginProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleHorizontalAlignment": "SubtitleHorizontalAlignment", + "SubtitleHorizontalAlignmentProperty": "SubtitleHorizontalAlignmentProperty", + "SubtitleLeftMargin": "SubtitleLeftMargin", + "SubtitleLeftMarginProperty": "SubtitleLeftMarginProperty", + "SubtitleProperty": "SubtitleProperty", + "SubtitleRightMargin": "SubtitleRightMargin", + "SubtitleRightMarginProperty": "SubtitleRightMarginProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "SubtitleTopMargin": "SubtitleTopMargin", + "SubtitleTopMarginProperty": "SubtitleTopMarginProperty", + "SurfaceUsage": "SurfaceUsage", + "SurfaceUsageProperty": "SurfaceUsageProperty", + "SyncChannel": "SyncChannel", + "SyncChannelProperty": "SyncChannelProperty", + "SynchronizeHorizontally": "SynchronizeHorizontally", + "SynchronizeHorizontallyProperty": "SynchronizeHorizontallyProperty", + "SynchronizeVertically": "SynchronizeVertically", + "SynchronizeVerticallyProperty": "SynchronizeVerticallyProperty", + "Title": "Title", + "TitleBottomMargin": "TitleBottomMargin", + "TitleBottomMarginProperty": "TitleBottomMarginProperty", + "TitleFontFamily": "TitleFontFamily", + "TitleFontFamilyProperty": "TitleFontFamilyProperty", + "TitleFontSize": "TitleFontSize", + "TitleFontSizeProperty": "TitleFontSizeProperty", + "TitleFontStyle": "TitleFontStyle", + "TitleFontStyleProperty": "TitleFontStyleProperty", + "TitleFontWeight": "TitleFontWeight", + "TitleFontWeightProperty": "TitleFontWeightProperty", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleHorizontalAlignmentProperty": "TitleHorizontalAlignmentProperty", + "TitleLeftMargin": "TitleLeftMargin", + "TitleLeftMarginProperty": "TitleLeftMarginProperty", + "TitleProperty": "TitleProperty", + "TitleRightMargin": "TitleRightMargin", + "TitleRightMarginProperty": "TitleRightMarginProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTopMargin": "TitleTopMargin", + "TitleTopMarginProperty": "TitleTopMarginProperty", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipBorderColor": "ToolTipBorderColor", + "ToolTipBorderColorProperty": "ToolTipBorderColorProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "TopMargin": "TopMargin", + "TopMarginProperty": "TopMarginProperty", + "UseFixedAspectZoom()": "UseFixedAspectZoom()", + "UseFixedAspectZoom": "UseFixedAspectZoom()", + "VerticalCrosshairBrush": "VerticalCrosshairBrush", + "VerticalCrosshairBrushProperty": "VerticalCrosshairBrushProperty", + "VerticalViewScrollbarCornerRadius": "VerticalViewScrollbarCornerRadius", + "VerticalViewScrollbarCornerRadiusProperty": "VerticalViewScrollbarCornerRadiusProperty", + "VerticalViewScrollbarFill": "VerticalViewScrollbarFill", + "VerticalViewScrollbarFillProperty": "VerticalViewScrollbarFillProperty", + "VerticalViewScrollbarInset": "VerticalViewScrollbarInset", + "VerticalViewScrollbarInsetProperty": "VerticalViewScrollbarInsetProperty", + "VerticalViewScrollbarMaxOpacity": "VerticalViewScrollbarMaxOpacity", + "VerticalViewScrollbarMaxOpacityProperty": "VerticalViewScrollbarMaxOpacityProperty", + "VerticalViewScrollbarMode": "VerticalViewScrollbarMode", + "VerticalViewScrollbarModeProperty": "VerticalViewScrollbarModeProperty", + "VerticalViewScrollbarOutline": "VerticalViewScrollbarOutline", + "VerticalViewScrollbarOutlineProperty": "VerticalViewScrollbarOutlineProperty", + "VerticalViewScrollbarPosition": "VerticalViewScrollbarPosition", + "VerticalViewScrollbarPositionProperty": "VerticalViewScrollbarPositionProperty", + "VerticalViewScrollbarShouldAddAutoTrackInsets": "VerticalViewScrollbarShouldAddAutoTrackInsets", + "VerticalViewScrollbarShouldAddAutoTrackInsetsProperty": "VerticalViewScrollbarShouldAddAutoTrackInsetsProperty", + "VerticalViewScrollbarStrokeThickness": "VerticalViewScrollbarStrokeThickness", + "VerticalViewScrollbarStrokeThicknessProperty": "VerticalViewScrollbarStrokeThicknessProperty", + "VerticalViewScrollbarTrackEndInset": "VerticalViewScrollbarTrackEndInset", + "VerticalViewScrollbarTrackEndInsetProperty": "VerticalViewScrollbarTrackEndInsetProperty", + "VerticalViewScrollbarTrackStartInset": "VerticalViewScrollbarTrackStartInset", + "VerticalViewScrollbarTrackStartInsetProperty": "VerticalViewScrollbarTrackStartInsetProperty", + "VerticalViewScrollbarWidth": "VerticalViewScrollbarWidth", + "VerticalViewScrollbarWidthProperty": "VerticalViewScrollbarWidthProperty", + "ViewportRect": "ViewportRect", + "ViewportRectProperty": "ViewportRectProperty", + "WindowPositionHorizontal": "WindowPositionHorizontal", + "WindowPositionHorizontalProperty": "WindowPositionHorizontalProperty", + "WindowPositionVertical": "WindowPositionVertical", + "WindowPositionVerticalProperty": "WindowPositionVerticalProperty", + "WindowRect": "WindowRect", + "WindowRectMinHeight": "WindowRectMinHeight", + "WindowRectMinHeightProperty": "WindowRectMinHeightProperty", + "WindowRectMinWidth": "WindowRectMinWidth", + "WindowRectMinWidthProperty": "WindowRectMinWidthProperty", + "WindowRectProperty": "WindowRectProperty", + "WindowResponse": "WindowResponse", + "WindowResponseProperty": "WindowResponseProperty", + "WindowSizeMinHeight": "WindowSizeMinHeight", + "WindowSizeMinHeightProperty": "WindowSizeMinHeightProperty", + "WindowSizeMinWidth": "WindowSizeMinWidth", + "WindowSizeMinWidthProperty": "WindowSizeMinWidthProperty", + "ZoomCoercionMode": "ZoomCoercionMode", + "ZoomCoercionModeProperty": "ZoomCoercionModeProperty", + "ZoomIn(double)": "ZoomIn(double)", + "ZoomIn": "ZoomIn(double)", + "ZoomOut(double)": "ZoomOut(double)", + "ZoomOut": "ZoomOut(double)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesViewerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesViewerDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerDescription()": "SeriesViewerDescription()", + "SeriesViewerDescription": "SeriesViewerDescription()", + "ActualContentHitTestMode": "ActualContentHitTestMode", + "ActualInteractionPixelScalingRatio": "ActualInteractionPixelScalingRatio", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualWindowPositionHorizontal": "ActualWindowPositionHorizontal", + "ActualWindowPositionVertical": "ActualWindowPositionVertical", + "ActualWindowRect": "ActualWindowRect", + "ActualWindowRectChangedRef": "ActualWindowRectChangedRef", + "ActualWindowRectMinHeight": "ActualWindowRectMinHeight", + "ActualWindowRectMinWidth": "ActualWindowRectMinWidth", + "AnimateSeriesWhenAxisRangeChanges": "AnimateSeriesWhenAxisRangeChanges", + "AutoMarginHeight": "AutoMarginHeight", + "AutoMarginWidth": "AutoMarginWidth", + "AxisLabelMouseClickRef": "AxisLabelMouseClickRef", + "AxisLabelMouseDownRef": "AxisLabelMouseDownRef", + "AxisLabelMouseEnterRef": "AxisLabelMouseEnterRef", + "AxisLabelMouseLeaveRef": "AxisLabelMouseLeaveRef", + "AxisLabelMouseOverRef": "AxisLabelMouseOverRef", + "AxisLabelMouseUpRef": "AxisLabelMouseUpRef", + "AxisPanelMouseClickRef": "AxisPanelMouseClickRef", + "AxisPanelMouseDownRef": "AxisPanelMouseDownRef", + "AxisPanelMouseEnterRef": "AxisPanelMouseEnterRef", + "AxisPanelMouseLeaveRef": "AxisPanelMouseLeaveRef", + "AxisPanelMouseOverRef": "AxisPanelMouseOverRef", + "AxisPanelMouseUpRef": "AxisPanelMouseUpRef", + "Background": "Background", + "BottomMargin": "BottomMargin", + "Brushes": "Brushes", + "ChartTitle": "ChartTitle", + "ContentHitTestMode": "ContentHitTestMode", + "CrosshairPoint": "CrosshairPoint", + "CrosshairVisibility": "CrosshairVisibility", + "DefaultInteraction": "DefaultInteraction", + "DragModifier": "DragModifier", + "EffectiveViewport": "EffectiveViewport", + "FireMouseLeaveOnManipulationStart": "FireMouseLeaveOnManipulationStart", + "FocusBrush": "FocusBrush", + "FocusDismissDelayMilliseconds": "FocusDismissDelayMilliseconds", + "FocusMode": "FocusMode", + "FocusTransitionDuration": "FocusTransitionDuration", + "FocusedSeriesItems": "FocusedSeriesItems", + "FocusedSeriesItemsChangedRef": "FocusedSeriesItemsChangedRef", + "FullSeries": "FullSeries", + "GridAreaRectChangedRef": "GridAreaRectChangedRef", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightingBehavior": "HighlightingBehavior", + "HighlightingDismissDelayMilliseconds": "HighlightingDismissDelayMilliseconds", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingMode": "HighlightingMode", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HorizontalCrosshairBrush": "HorizontalCrosshairBrush", + "HorizontalViewScrollbarCornerRadius": "HorizontalViewScrollbarCornerRadius", + "HorizontalViewScrollbarFill": "HorizontalViewScrollbarFill", + "HorizontalViewScrollbarHeight": "HorizontalViewScrollbarHeight", + "HorizontalViewScrollbarInset": "HorizontalViewScrollbarInset", + "HorizontalViewScrollbarMaxOpacity": "HorizontalViewScrollbarMaxOpacity", + "HorizontalViewScrollbarMode": "HorizontalViewScrollbarMode", + "HorizontalViewScrollbarOutline": "HorizontalViewScrollbarOutline", + "HorizontalViewScrollbarPosition": "HorizontalViewScrollbarPosition", + "HorizontalViewScrollbarShouldAddAutoTrackInsets": "HorizontalViewScrollbarShouldAddAutoTrackInsets", + "HorizontalViewScrollbarStrokeThickness": "HorizontalViewScrollbarStrokeThickness", + "HorizontalViewScrollbarTrackEndInset": "HorizontalViewScrollbarTrackEndInset", + "HorizontalViewScrollbarTrackStartInset": "HorizontalViewScrollbarTrackStartInset", + "ImageCapturedRef": "ImageCapturedRef", + "InteractionOverride": "InteractionOverride", + "InteractionPixelScalingRatio": "InteractionPixelScalingRatio", + "IsAntiAliasingEnabledDuringInteraction": "IsAntiAliasingEnabledDuringInteraction", + "IsPagePanningAllowed": "IsPagePanningAllowed", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsWindowSyncedToVisibleRange": "IsWindowSyncedToVisibleRange", + "LeftMargin": "LeftMargin", + "LegendHighlightingMode": "LegendHighlightingMode", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendRef": "LegendRef", + "MarkerAutomaticBehavior": "MarkerAutomaticBehavior", + "MarkerBrushes": "MarkerBrushes", + "MarkerOutlines": "MarkerOutlines", + "Outlines": "Outlines", + "PanModifier": "PanModifier", + "PixelScalingRatio": "PixelScalingRatio", + "PlotAreaBackground": "PlotAreaBackground", + "PlotAreaClickedRef": "PlotAreaClickedRef", + "PlotAreaMouseEnterRef": "PlotAreaMouseEnterRef", + "PlotAreaMouseLeaveRef": "PlotAreaMouseLeaveRef", + "PlotAreaMouseLeftButtonDownRef": "PlotAreaMouseLeftButtonDownRef", + "PlotAreaMouseLeftButtonUpRef": "PlotAreaMouseLeftButtonUpRef", + "PlotAreaMouseOverRef": "PlotAreaMouseOverRef", + "PreferHigherResolutionTiles": "PreferHigherResolutionTiles", + "PreviewPathFill": "PreviewPathFill", + "PreviewPathOpacity": "PreviewPathOpacity", + "PreviewPathStroke": "PreviewPathStroke", + "PreviewRect": "PreviewRect", + "RefreshCompletedRef": "RefreshCompletedRef", + "ResizeIdleMilliseconds": "ResizeIdleMilliseconds", + "ResizeIdleRef": "ResizeIdleRef", + "RightButtonDefaultInteraction": "RightButtonDefaultInteraction", + "RightMargin": "RightMargin", + "ScrollbarsAnimationDuration": "ScrollbarsAnimationDuration", + "SelectedSeriesItems": "SelectedSeriesItems", + "SelectedSeriesItemsChangedRef": "SelectedSeriesItemsChangedRef", + "SelectionBehavior": "SelectionBehavior", + "SelectionBrush": "SelectionBrush", + "SelectionDismissDelayMilliseconds": "SelectionDismissDelayMilliseconds", + "SelectionMode": "SelectionMode", + "SelectionModifier": "SelectionModifier", + "SelectionTransitionDuration": "SelectionTransitionDuration", + "Series": "Series", + "SeriesClickRef": "SeriesClickRef", + "SeriesCursorMouseMoveRef": "SeriesCursorMouseMoveRef", + "SeriesMouseEnterRef": "SeriesMouseEnterRef", + "SeriesMouseLeaveRef": "SeriesMouseLeaveRef", + "SeriesMouseLeftButtonDownRef": "SeriesMouseLeftButtonDownRef", + "SeriesMouseLeftButtonUpRef": "SeriesMouseLeftButtonUpRef", + "SeriesMouseMoveRef": "SeriesMouseMoveRef", + "SeriesValueLayerUseLegend": "SeriesValueLayerUseLegend", + "ShouldMatchZOrderToSeriesOrder": "ShouldMatchZOrderToSeriesOrder", + "ShouldPanOnMaximumZoom": "ShouldPanOnMaximumZoom", + "ShouldSimulateHoverMoveCrosshairPoint": "ShouldSimulateHoverMoveCrosshairPoint", + "SizeChangedRef": "SizeChangedRef", + "Subtitle": "Subtitle", + "SubtitleBottomMargin": "SubtitleBottomMargin", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleHorizontalAlignment": "SubtitleHorizontalAlignment", + "SubtitleLeftMargin": "SubtitleLeftMargin", + "SubtitleRightMargin": "SubtitleRightMargin", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextStyle": "SubtitleTextStyle", + "SubtitleTopMargin": "SubtitleTopMargin", + "SyncChannel": "SyncChannel", + "SynchronizeHorizontally": "SynchronizeHorizontally", + "SynchronizeVertically": "SynchronizeVertically", + "TitleBottomMargin": "TitleBottomMargin", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleLeftMargin": "TitleLeftMargin", + "TitleRightMargin": "TitleRightMargin", + "TitleTextColor": "TitleTextColor", + "TitleTextStyle": "TitleTextStyle", + "TitleTopMargin": "TitleTopMargin", + "TopMargin": "TopMargin", + "Type": "Type", + "UseTiledZooming": "UseTiledZooming", + "UserAnnotationInformationRequestedRef": "UserAnnotationInformationRequestedRef", + "UserAnnotationToolTipContentUpdatingRef": "UserAnnotationToolTipContentUpdatingRef", + "VerticalCrosshairBrush": "VerticalCrosshairBrush", + "VerticalViewScrollbarCornerRadius": "VerticalViewScrollbarCornerRadius", + "VerticalViewScrollbarFill": "VerticalViewScrollbarFill", + "VerticalViewScrollbarInset": "VerticalViewScrollbarInset", + "VerticalViewScrollbarMaxOpacity": "VerticalViewScrollbarMaxOpacity", + "VerticalViewScrollbarMode": "VerticalViewScrollbarMode", + "VerticalViewScrollbarOutline": "VerticalViewScrollbarOutline", + "VerticalViewScrollbarPosition": "VerticalViewScrollbarPosition", + "VerticalViewScrollbarShouldAddAutoTrackInsets": "VerticalViewScrollbarShouldAddAutoTrackInsets", + "VerticalViewScrollbarStrokeThickness": "VerticalViewScrollbarStrokeThickness", + "VerticalViewScrollbarTrackEndInset": "VerticalViewScrollbarTrackEndInset", + "VerticalViewScrollbarTrackStartInset": "VerticalViewScrollbarTrackStartInset", + "VerticalViewScrollbarWidth": "VerticalViewScrollbarWidth", + "ViewerManipulationEndingRef": "ViewerManipulationEndingRef", + "ViewerManipulationStartingRef": "ViewerManipulationStartingRef", + "WindowPositionHorizontal": "WindowPositionHorizontal", + "WindowPositionVertical": "WindowPositionVertical", + "WindowRect": "WindowRect", + "WindowRectChangedRef": "WindowRectChangedRef", + "WindowRectMinHeight": "WindowRectMinHeight", + "WindowRectMinWidth": "WindowRectMinWidth", + "WindowResponse": "WindowResponse", + "WindowSizeMinHeight": "WindowSizeMinHeight", + "WindowSizeMinWidth": "WindowSizeMinWidth", + "ZoomCoercionMode": "ZoomCoercionMode", + "ZoomTileCacheSize": "ZoomTileCacheSize" + } + } + ], + "SeriesViewerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesViewerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerDescriptionMetadata()": "SeriesViewerDescriptionMetadata()", + "SeriesViewerDescriptionMetadata": "SeriesViewerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesViewerHorizontalScrollbarPosition": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesViewerHorizontalScrollbarPosition", + "k": "enum", + "s": "enums" + } + ], + "SeriesViewerManipulationEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesViewerManipulationEventArgs", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerManipulationEventArgs()": "SeriesViewerManipulationEventArgs()", + "SeriesViewerManipulationEventArgs": "SeriesViewerManipulationEventArgs()", + "DragSelectRectangle": "DragSelectRectangle", + "IsDragSelect": "IsDragSelect", + "IsDragSelectCancelled": "IsDragSelectCancelled", + "IsDragZoom": "IsDragZoom", + "IsZoomPan": "IsZoomPan", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesViewerManipulationEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesViewerManipulationEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerManipulationEventArgsDescription()": "SeriesViewerManipulationEventArgsDescription()", + "SeriesViewerManipulationEventArgsDescription": "SeriesViewerManipulationEventArgsDescription()", + "DragSelectRectangle": "DragSelectRectangle", + "IsDragSelect": "IsDragSelect", + "IsDragSelectCancelled": "IsDragSelectCancelled", + "IsDragZoom": "IsDragZoom", + "IsZoomPan": "IsZoomPan", + "Type": "Type" + } + } + ], + "SeriesViewerManipulationEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesViewerManipulationEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerManipulationEventArgsDescriptionMetadata()": "SeriesViewerManipulationEventArgsDescriptionMetadata()", + "SeriesViewerManipulationEventArgsDescriptionMetadata": "SeriesViewerManipulationEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesViewerScrollbarMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesViewerScrollbarMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesViewerSelectedSeriesItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription()": "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription()", + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription": "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription()", + "CurrentItems": "CurrentItems", + "NewItems": "NewItems", + "OldItems": "OldItems", + "Type": "Type" + } + } + ], + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata()": "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata()", + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata": "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesViewerSelectedSeriesItemsChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription()": "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription()", + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription": "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata()": "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata()", + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata": "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesViewerVerticalScrollbarPosition": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesViewerVerticalScrollbarPosition", + "k": "enum", + "s": "enums" + } + ], + "SeriesVisibleRangeMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SeriesVisibleRangeMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesVisualData", + "k": "class", + "s": "classes", + "m": { + "SeriesVisualData()": "SeriesVisualData()", + "SeriesVisualData": "SeriesVisualData()", + "CalloutShapes": "CalloutShapes", + "Layers": "Layers", + "MarkerShapes": "MarkerShapes", + "Name": "Name", + "Opacity": "Opacity", + "PixelHeight": "PixelHeight", + "PixelWidth": "PixelWidth", + "Pixels": "Pixels", + "PointerTooltips": "PointerTooltips", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Shapes": "Shapes", + "Type": "Type", + "Viewport": "Viewport" + } + } + ], + "SeriesVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SeriesVisualDataList", + "k": "class", + "s": "classes", + "m": { + "SeriesVisualDataList()": "SeriesVisualDataList()", + "SeriesVisualDataList": "SeriesVisualDataList()" + } + } + ], + "ShapeDataRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeDataRule", + "k": "class", + "s": "classes", + "m": { + "ShapeDataRule()": "ShapeDataRule()", + "ShapeDataRule": "ShapeDataRule()" + } + } + ], + "ShapeDataSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeDataSource", + "k": "class", + "s": "classes", + "m": { + "ShapeDataSource()": "ShapeDataSource()", + "ShapeDataSource": "ShapeDataSource()", + "Add(ShapefileRecord)": "Add(ShapefileRecord)", + "Add": "Add(ShapefileRecord)", + "Clear()": "Clear()", + "Clear": "Clear()", + "ComputedWorldRect": "ComputedWorldRect", + "Contains(ShapefileRecord)": "Contains(ShapefileRecord)", + "Contains": "Contains(ShapefileRecord)", + "CopyTo(ShapefileRecord[], int)": "CopyTo(ShapefileRecord[], int)", + "CopyTo": "CopyTo(ShapefileRecord[], int)", + "Count": "Count", + "DatabaseSource": "DatabaseSource", + "DeferImportCompleted": "DeferImportCompleted", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "GetLargestShapeBoundsForRecord(int)": "GetLargestShapeBoundsForRecord(int)", + "GetLargestShapeBoundsForRecord": "GetLargestShapeBoundsForRecord(int)", + "GetMaxLongitude(int, bool, double, double)": "GetMaxLongitude(int, bool, double, double)", + "GetMaxLongitude": "GetMaxLongitude(int, bool, double, double)", + "GetRecord(int)": "GetRecord(int)", + "GetRecord": "GetRecord(int)", + "GetRecordBounds(int)": "GetRecordBounds(int)", + "GetRecordBounds": "GetRecordBounds(int)", + "GetRecordFieldNames(int)": "GetRecordFieldNames(int)", + "GetRecordFieldNames": "GetRecordFieldNames(int)", + "GetRecordValue(int, string)": "GetRecordValue(int, string)", + "GetRecordValue": "GetRecordValue(int, string)", + "GetRecordValues(string)": "GetRecordValues(string)", + "GetRecordValues": "GetRecordValues(string)", + "GetRecordsCount()": "GetRecordsCount()", + "GetRecordsCount": "GetRecordsCount()", + "GetWorldBounds(bool)": "GetWorldBounds(bool)", + "GetWorldBounds": "GetWorldBounds(bool)", + "IndexOf(ShapefileRecord)": "IndexOf(ShapefileRecord)", + "IndexOf": "IndexOf(ShapefileRecord)", + "Insert(int, ShapefileRecord)": "Insert(int, ShapefileRecord)", + "Insert": "Insert(int, ShapefileRecord)", + "IsReadOnly": "IsReadOnly", + "IsValidGeoPoint(Point)": "IsValidGeoPoint(Point)", + "IsValidGeoPoint": "IsValidGeoPoint(Point)", + "this[int]": "this[int]", + "MaxLatitude": "MaxLatitude", + "MaxLongitude": "MaxLongitude", + "MinLatitude": "MinLatitude", + "MinLongitude": "MinLongitude", + "OnCollectionChanged(NotifyCollectionChangedEventArgs)": "OnCollectionChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionChanged": "OnCollectionChanged(NotifyCollectionChangedEventArgs)", + "OnFilter(ShapeFilterRecordEventArgs)": "OnFilter(ShapeFilterRecordEventArgs)", + "OnFilter": "OnFilter(ShapeFilterRecordEventArgs)", + "OnImportCompleted(AsyncCompletedEventArgs)": "OnImportCompleted(AsyncCompletedEventArgs)", + "OnImportCompleted": "OnImportCompleted(AsyncCompletedEventArgs)", + "OnImportPending(AsyncCompletedEventArgs)": "OnImportPending(AsyncCompletedEventArgs)", + "OnImportPending": "OnImportPending(AsyncCompletedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Remove(ShapefileRecord)": "Remove(ShapefileRecord)", + "Remove": "Remove(ShapefileRecord)", + "RemoveAt(int)": "RemoveAt(int)", + "RemoveAt": "RemoveAt(int)", + "RemoveRecord(int)": "RemoveRecord(int)", + "RemoveRecord": "RemoveRecord(int)", + "SendImportCompleted()": "SendImportCompleted()", + "SendImportCompleted": "SendImportCompleted()", + "SetRecordValue(int, string, object)": "SetRecordValue(int, string, object)", + "SetRecordValue": "SetRecordValue(int, string, object)", + "SetRecordValues(string, object[])": "SetRecordValues(string, object[])", + "SetRecordValues": "SetRecordValues(string, object[])", + "SetWorldBounds(bool, Rect)": "SetWorldBounds(bool, Rect)", + "SetWorldBounds": "SetWorldBounds(bool, Rect)", + "ShapeHeader": "ShapeHeader", + "ShapeType": "ShapeType", + "ShapefileSource": "ShapefileSource", + "ShiftAllShapes(double, double)": "ShiftAllShapes(double, double)", + "ShiftAllShapes": "ShiftAllShapes(double, double)", + "ShiftShapes(int, double, double)": "ShiftShapes(int, double, double)", + "ShiftShapes": "ShiftShapes(int, double, double)", + "WorldRect": "WorldRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ShapeDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "ShapeDataSourceDescription()": "ShapeDataSourceDescription()", + "ShapeDataSourceDescription": "ShapeDataSourceDescription()", + "ComputedWorldRect": "ComputedWorldRect", + "DatabaseSource": "DatabaseSource", + "DeferImportCompleted": "DeferImportCompleted", + "FilterRef": "FilterRef", + "ImportCompletedRef": "ImportCompletedRef", + "ImportPendingRef": "ImportPendingRef", + "ShapefileSource": "ShapefileSource", + "Type": "Type", + "WorldRect": "WorldRect" + } + } + ], + "ShapeDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ShapeDataSourceDescriptionMetadata()": "ShapeDataSourceDescriptionMetadata()", + "ShapeDataSourceDescriptionMetadata": "ShapeDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapeDataSourceDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeDataSourceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ShapeDataSourceDescriptionModule()": "ShapeDataSourceDescriptionModule()", + "ShapeDataSourceDescriptionModule": "ShapeDataSourceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapefileRecord": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapefileRecord", + "k": "class", + "s": "classes", + "m": { + "ShapefileRecord()": "ShapefileRecord()", + "ShapefileRecord": "ShapefileRecord()", + "Bounds": "Bounds", + "Fields": "Fields", + "FieldsNames": "FieldsNames", + "FieldsTypes": "FieldsTypes", + "GetFieldValue(string)": "GetFieldValue(string)", + "GetFieldValue": "GetFieldValue(string)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Points": "Points", + "SetFieldValue(string, object)": "SetFieldValue(string, object)", + "SetFieldValue": "SetFieldValue(string, object)", + "ShapeType": "ShapeType", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ShapefileRecordDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapefileRecordDescription", + "k": "class", + "s": "classes", + "m": { + "ShapefileRecordDescription()": "ShapefileRecordDescription()", + "ShapefileRecordDescription": "ShapefileRecordDescription()", + "Bounds": "Bounds", + "FieldValuesRef": "FieldValuesRef", + "Type": "Type" + } + } + ], + "ShapefileRecordDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapefileRecordDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ShapefileRecordDescriptionMetadata()": "ShapefileRecordDescriptionMetadata()", + "ShapefileRecordDescriptionMetadata": "ShapefileRecordDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapeFilterRecordEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeFilterRecordEventArgs", + "k": "class", + "s": "classes", + "m": { + "ShapeFilterRecordEventArgs()": "ShapeFilterRecordEventArgs()", + "ShapeFilterRecordEventArgs": "ShapeFilterRecordEventArgs()", + "Record": "Record", + "ShouldInclude": "ShouldInclude", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ShapeFilterRecordEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeFilterRecordEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ShapeFilterRecordEventArgsDescription()": "ShapeFilterRecordEventArgsDescription()", + "ShapeFilterRecordEventArgsDescription": "ShapeFilterRecordEventArgsDescription()", + "Record": "Record", + "ShouldInclude": "ShouldInclude", + "Type": "Type" + } + } + ], + "ShapeFilterRecordEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeFilterRecordEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ShapeFilterRecordEventArgsDescriptionMetadata()": "ShapeFilterRecordEventArgsDescriptionMetadata()", + "ShapeFilterRecordEventArgsDescriptionMetadata": "ShapeFilterRecordEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapeItemSearchMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ShapeItemSearchMode", + "k": "enum", + "s": "enums" + } + ], + "ShapeSeriesBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ShapeSeriesBase", + "k": "class", + "s": "classes", + "m": { + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualItemSearchModeProperty": "ActualItemSearchModeProperty", + "FillMemberPath": "FillMemberPath", + "FillMemberPathProperty": "FillMemberPathProperty", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "FillScaleUseGlobalValuesProperty": "FillScaleUseGlobalValuesProperty", + "GetShapeItems(int, int)": "GetShapeItems(int, int)", + "GetShapeItems": "GetShapeItems(int, int)", + "HighlightedShapeMemberPath": "HighlightedShapeMemberPath", + "HighlightedShapeMemberPathProperty": "HighlightedShapeMemberPathProperty", + "IsCustomShapeMarkerStyleAllowed": "IsCustomShapeMarkerStyleAllowed", + "IsCustomShapeMarkerStyleAllowedProperty": "IsCustomShapeMarkerStyleAllowedProperty", + "IsCustomShapeStyleAllowed": "IsCustomShapeStyleAllowed", + "IsCustomShapeStyleAllowedProperty": "IsCustomShapeStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchPointsThreshold": "ItemSearchPointsThreshold", + "ItemSearchPointsThresholdProperty": "ItemSearchPointsThresholdProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)": "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)", + "OnAssigningShapeMarkerStyle": "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)", + "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)": "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)", + "OnAssigningShapeStyle": "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)", + "ShapeFilterResolution": "ShapeFilterResolution", + "ShapeFilterResolutionProperty": "ShapeFilterResolutionProperty", + "ShapeFilterResolutionPropertyName": "ShapeFilterResolutionPropertyName", + "ShapeMemberPath": "ShapeMemberPath", + "ShapeMemberPathProperty": "ShapeMemberPathProperty", + "ShapeMemberPathPropertyName": "ShapeMemberPathPropertyName", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "ShapeSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "ShapeSeriesBaseDescription()": "ShapeSeriesBaseDescription()", + "ShapeSeriesBaseDescription": "ShapeSeriesBaseDescription()", + "ActualItemSearchMode": "ActualItemSearchMode", + "AssigningShapeMarkerStyleRef": "AssigningShapeMarkerStyleRef", + "AssigningShapeStyleRef": "AssigningShapeStyleRef", + "FillMemberPath": "FillMemberPath", + "FillScale": "FillScale", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "HighlightedShapeMemberPath": "HighlightedShapeMemberPath", + "IsCustomShapeMarkerStyleAllowed": "IsCustomShapeMarkerStyleAllowed", + "IsCustomShapeStyleAllowed": "IsCustomShapeStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchPointsThreshold": "ItemSearchPointsThreshold", + "ItemSearchThreshold": "ItemSearchThreshold", + "ShapeFilterResolution": "ShapeFilterResolution", + "ShapeMemberPath": "ShapeMemberPath", + "StyleShapeRef": "StyleShapeRef", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "ShapeSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ShapeSeriesBaseDescriptionMetadata()": "ShapeSeriesBaseDescriptionMetadata()", + "ShapeSeriesBaseDescriptionMetadata": "ShapeSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapeTags": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ShapeTags", + "k": "class", + "s": "classes", + "m": { + "ShapeTags()": "ShapeTags()", + "ShapeTags": "ShapeTags()" + } + } + ], + "ShapeType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ShapeType", + "k": "enum", + "s": "enums" + } + ], + "SimpleCategorySeriesRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SimpleCategorySeriesRule", + "k": "class", + "s": "classes", + "m": { + "SimpleCategorySeriesRule()": "SimpleCategorySeriesRule()", + "SimpleCategorySeriesRule": "SimpleCategorySeriesRule()", + "DistinctCheckThreshold": "DistinctCheckThreshold", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority", + "UseColumnThreshold": "UseColumnThreshold" + } + } + ], + "SimpleDefaultTooltipDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SimpleDefaultTooltipDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SimpleDefaultTooltipDescriptionMetadata()": "SimpleDefaultTooltipDescriptionMetadata()", + "SimpleDefaultTooltipDescriptionMetadata": "SimpleDefaultTooltipDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SimpleDefaultTooltipExtendedDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SimpleDefaultTooltipExtendedDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SimpleDefaultTooltipExtendedDescriptionMetadata()": "SimpleDefaultTooltipExtendedDescriptionMetadata()", + "SimpleDefaultTooltipExtendedDescriptionMetadata": "SimpleDefaultTooltipExtendedDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SimpleFinancialPriceSeriesRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SimpleFinancialPriceSeriesRule", + "k": "class", + "s": "classes", + "m": { + "SimpleFinancialPriceSeriesRule()": "SimpleFinancialPriceSeriesRule()", + "SimpleFinancialPriceSeriesRule": "SimpleFinancialPriceSeriesRule()", + "DistinctCheckThreshold": "DistinctCheckThreshold", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "SimpleGaugeRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SimpleGaugeRule", + "k": "class", + "s": "classes", + "m": { + "SimpleGaugeRule()": "SimpleGaugeRule()", + "SimpleGaugeRule": "SimpleGaugeRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "SimplePieSeriesRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SimplePieSeriesRule", + "k": "class", + "s": "classes", + "m": { + "SimplePieSeriesRule()": "SimplePieSeriesRule()", + "SimplePieSeriesRule": "SimplePieSeriesRule()", + "DistinctCheckThreshold": "DistinctCheckThreshold", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority", + "UseColumnThreshold": "UseColumnThreshold" + } + } + ], + "SimpleScatterSeriesRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SimpleScatterSeriesRule", + "k": "class", + "s": "classes", + "m": { + "SimpleScatterSeriesRule()": "SimpleScatterSeriesRule()", + "SimpleScatterSeriesRule": "SimpleScatterSeriesRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "MonotonicCheckAmount": "MonotonicCheckAmount", + "Priority": "Priority" + } + } + ], + "SizeData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SizeData", + "k": "class", + "s": "classes", + "m": { + "SizeData(double, double)": "SizeData(double, double)", + "SizeData": "SizeData(double, double)", + "Empty": "Empty", + "Height": "Height", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Width": "Width" + } + } + ], + "SizeDefinitionCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SizeDefinitionCollection", + "k": "class", + "s": "classes", + "m": { + "SizeDefinitionCollection()": "SizeDefinitionCollection()", + "SizeDefinitionCollection": "SizeDefinitionCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SizeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SizeDescription", + "k": "class", + "s": "classes", + "m": { + "SizeDescription()": "SizeDescription()", + "SizeDescription": "SizeDescription()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Height": "Height", + "Width": "Width" + } + } + ], + "SizeScale": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SizeScale", + "k": "class", + "s": "classes", + "m": { + "SizeScale()": "SizeScale()", + "SizeScale": "SizeScale()", + "GetCurrentGlobalMaximum()": "GetCurrentGlobalMaximum()", + "GetCurrentGlobalMaximum": "GetCurrentGlobalMaximum()", + "GetCurrentGlobalMinimum()": "GetCurrentGlobalMinimum()", + "GetCurrentGlobalMinimum": "GetCurrentGlobalMinimum()", + "GlobalMaximum": "GlobalMaximum", + "GlobalMaximumProperty": "GlobalMaximumProperty", + "GlobalMinimum": "GlobalMinimum", + "GlobalMinimumProperty": "GlobalMinimumProperty", + "IsLogarithmic": "IsLogarithmic", + "IsLogarithmicProperty": "IsLogarithmicProperty", + "LogarithmBase": "LogarithmBase", + "LogarithmBaseProperty": "LogarithmBaseProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SizeScaleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SizeScaleDescription", + "k": "class", + "s": "classes", + "m": { + "SizeScaleDescription()": "SizeScaleDescription()", + "SizeScaleDescription": "SizeScaleDescription()", + "GlobalMaximum": "GlobalMaximum", + "GlobalMinimum": "GlobalMinimum", + "IsLogarithmic": "IsLogarithmic", + "LogarithmBase": "LogarithmBase", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type" + } + } + ], + "SizeScaleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SizeScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SizeScaleDescriptionMetadata()": "SizeScaleDescriptionMetadata()", + "SizeScaleDescriptionMetadata": "SizeScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SizeScaleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SizeScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SizeScaleDescriptionModule()": "SizeScaleDescriptionModule()", + "SizeScaleDescriptionModule": "SizeScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SkipInitializeFieldAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/SkipInitializeFieldAttribute", + "k": "class", + "s": "classes", + "m": { + "SkipInitializeFieldAttribute()": "SkipInitializeFieldAttribute()", + "SkipInitializeFieldAttribute": "SkipInitializeFieldAttribute()" + } + } + ], + "SliceClickEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SliceClickEventArgs", + "k": "class", + "s": "classes", + "m": { + "Bounds": "Bounds", + "DataContext": "DataContext", + "EndAngle": "EndAngle", + "Fill": "Fill", + "Index": "Index", + "IsExploded": "IsExploded", + "IsOthersSlice": "IsOthersSlice", + "IsSelected": "IsSelected", + "Origin": "Origin", + "Outline": "Outline", + "Radius": "Radius", + "StartAngle": "StartAngle", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SliceClickEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SliceClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SliceClickEventArgsDescription()": "SliceClickEventArgsDescription()", + "SliceClickEventArgsDescription": "SliceClickEventArgsDescription()", + "IsExploded": "IsExploded", + "IsSelected": "IsSelected", + "OriginalEventRef": "OriginalEventRef", + "Type": "Type" + } + } + ], + "SliceClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SliceClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SliceClickEventArgsDescriptionMetadata()": "SliceClickEventArgsDescriptionMetadata()", + "SliceClickEventArgsDescriptionMetadata": "SliceClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SliceEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SliceEventArgs", + "k": "class", + "s": "classes", + "m": { + "Bounds": "Bounds", + "DataContext": "DataContext", + "EndAngle": "EndAngle", + "Fill": "Fill", + "Index": "Index", + "IsExploded": "IsExploded", + "IsOthersSlice": "IsOthersSlice", + "IsSelected": "IsSelected", + "Origin": "Origin", + "Outline": "Outline", + "Position": "Position", + "Radius": "Radius", + "StartAngle": "StartAngle", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SliceEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SliceEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SliceEventArgsDescription()": "SliceEventArgsDescription()", + "SliceEventArgsDescription": "SliceEventArgsDescription()", + "IsExploded": "IsExploded", + "IsSelected": "IsSelected", + "OriginalEventRef": "OriginalEventRef", + "Position": "Position", + "Type": "Type" + } + } + ], + "SliceEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SliceEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SliceEventArgsDescriptionMetadata()": "SliceEventArgsDescriptionMetadata()", + "SliceEventArgsDescriptionMetadata": "SliceEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SliceSelectionMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SliceSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "SliceVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SliceVisualData", + "k": "class", + "s": "classes", + "m": { + "SliceVisualData()": "SliceVisualData()", + "SliceVisualData": "SliceVisualData()", + "BackgroundPath": "BackgroundPath", + "EndAngle": "EndAngle", + "ExplodedOrigin": "ExplodedOrigin", + "Index": "Index", + "IsExploded": "IsExploded", + "IsSelected": "IsSelected", + "LabelVisualData": "LabelVisualData", + "Origin": "Origin", + "Outline": "Outline", + "PieSlice": "PieSlice", + "Radius": "Radius", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "StartAngle": "StartAngle", + "Visibility": "Visibility" + } + } + ], + "SliceVisualDataList": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SliceVisualDataList", + "k": "class", + "s": "classes", + "m": { + "SliceVisualDataList()": "SliceVisualDataList()", + "SliceVisualDataList": "SliceVisualDataList()" + } + } + ], + "SlowStochasticOscillatorIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SlowStochasticOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "SlowStochasticOscillatorIndicator()": "SlowStochasticOscillatorIndicator()", + "SlowStochasticOscillatorIndicator": "SlowStochasticOscillatorIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "SlowStochasticOscillatorIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SlowStochasticOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "SlowStochasticOscillatorIndicatorDescription()": "SlowStochasticOscillatorIndicatorDescription()", + "SlowStochasticOscillatorIndicatorDescription": "SlowStochasticOscillatorIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "SlowStochasticOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SlowStochasticOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SlowStochasticOscillatorIndicatorDescriptionMetadata()": "SlowStochasticOscillatorIndicatorDescriptionMetadata()", + "SlowStochasticOscillatorIndicatorDescriptionMetadata": "SlowStochasticOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SlowStochasticOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SlowStochasticOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SlowStochasticOscillatorIndicatorDescriptionModule()": "SlowStochasticOscillatorIndicatorDescriptionModule()", + "SlowStochasticOscillatorIndicatorDescriptionModule": "SlowStochasticOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SolidBrushAppearanceData": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SolidBrushAppearanceData", + "k": "class", + "s": "classes", + "m": { + "SolidBrushAppearanceData()": "SolidBrushAppearanceData()", + "SolidBrushAppearanceData": "SolidBrushAppearanceData()", + "ColorValue": "ColorValue", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "SolidColorBrush": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/SolidColorBrush", + "k": "class", + "s": "classes", + "m": { + "SolidColorBrush()": "SolidColorBrush()", + "SolidColorBrush": "SolidColorBrush()", + "SolidColorBrush(Color)": "SolidColorBrush(Color)", + "Color": "Color" + } + } + ], + "SortDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SortDescription", + "k": "class", + "s": "classes", + "m": { + "SortDescription()": "SortDescription()", + "SortDescription": "SortDescription()", + "Create(string, ListSortDirection, string)": "Create(string, ListSortDirection, string)", + "Create": "Create(string, ListSortDirection, string)", + "Direction": "Direction", + "DisplayName": "DisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "PropertyName": "PropertyName" + } + } + ], + "SortDescriptionCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "SortDescriptionCollection()": "SortDescriptionCollection()", + "SortDescriptionCollection": "SortDescriptionCollection()", + "OnSelfChanged(NotifyCollectionChangedEventArgs)": "OnSelfChanged(NotifyCollectionChangedEventArgs)", + "OnSelfChanged": "OnSelfChanged(NotifyCollectionChangedEventArgs)" + } + } + ], + "SortIndicatorRenderCompletedEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SortIndicatorRenderCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "SortIndicatorRenderCompletedEventArgs()": "SortIndicatorRenderCompletedEventArgs()", + "SortIndicatorRenderCompletedEventArgs": "SortIndicatorRenderCompletedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SortIndicatorRenderCompletedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SortIndicatorRenderCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SortIndicatorRenderCompletedEventArgsDescription()": "SortIndicatorRenderCompletedEventArgsDescription()", + "SortIndicatorRenderCompletedEventArgsDescription": "SortIndicatorRenderCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "SortIndicatorRenderCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SortIndicatorRenderCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SortIndicatorRenderCompletedEventArgsDescriptionMetadata()": "SortIndicatorRenderCompletedEventArgsDescriptionMetadata()", + "SortIndicatorRenderCompletedEventArgsDescriptionMetadata": "SortIndicatorRenderCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SortIndicatorStyle": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/SortIndicatorStyle", + "k": "enum", + "s": "enums" + } + ], + "SortMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/SortMode", + "k": "enum", + "s": "enums" + } + ], + "SparklineAxisVisualData": [ + { + "p": "Infragistics.Uno.Sparkline", + "u": "/api/uno-platform/Infragistics.Uno.Sparkline/latest/classes/SparklineAxisVisualData", + "k": "class", + "s": "classes", + "m": { + "SparklineAxisVisualData()": "SparklineAxisVisualData()", + "SparklineAxisVisualData": "SparklineAxisVisualData()", + "AxisLine": "AxisLine", + "MaxLabel": "MaxLabel", + "MinLabel": "MinLabel", + "Name": "Name", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "SparklineConnector": [ + { + "p": "Infragistics.Uno.Sparkline", + "u": "/api/uno-platform/Infragistics.Uno.Sparkline/latest/classes/SparklineConnector", + "k": "class", + "s": "classes" + } + ], + "SparklineCoreDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SparklineCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SparklineCoreDescriptionModule()": "SparklineCoreDescriptionModule()", + "SparklineCoreDescriptionModule": "SparklineCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SparklineDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SparklineDescription", + "k": "class", + "s": "classes", + "m": { + "SparklineDescription()": "SparklineDescription()", + "SparklineDescription": "SparklineDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "Background": "Background", + "Brush": "Brush", + "DataSourceRef": "DataSourceRef", + "DisplayNormalRangeInFront": "DisplayNormalRangeInFront", + "DisplayType": "DisplayType", + "FirstMarkerBrush": "FirstMarkerBrush", + "FirstMarkerSize": "FirstMarkerSize", + "FirstMarkerVisibility": "FirstMarkerVisibility", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "Height": "Height", + "HighMarkerBrush": "HighMarkerBrush", + "HighMarkerSize": "HighMarkerSize", + "HighMarkerVisibility": "HighMarkerVisibility", + "HorizontalAxisBrush": "HorizontalAxisBrush", + "HorizontalAxisLabelRef": "HorizontalAxisLabelRef", + "HorizontalAxisVisibility": "HorizontalAxisVisibility", + "HorizontalLabelFormat": "HorizontalLabelFormat", + "HorizontalLabelFormatSpecifiers": "HorizontalLabelFormatSpecifiers", + "LabelMemberPath": "LabelMemberPath", + "LastMarkerBrush": "LastMarkerBrush", + "LastMarkerSize": "LastMarkerSize", + "LastMarkerVisibility": "LastMarkerVisibility", + "LineThickness": "LineThickness", + "LowMarkerBrush": "LowMarkerBrush", + "LowMarkerSize": "LowMarkerSize", + "LowMarkerVisibility": "LowMarkerVisibility", + "MarkerBrush": "MarkerBrush", + "MarkerSize": "MarkerSize", + "MarkerVisibility": "MarkerVisibility", + "Maximum": "Maximum", + "Minimum": "Minimum", + "NegativeBrush": "NegativeBrush", + "NegativeMarkerBrush": "NegativeMarkerBrush", + "NegativeMarkerSize": "NegativeMarkerSize", + "NegativeMarkerVisibility": "NegativeMarkerVisibility", + "NormalRangeFill": "NormalRangeFill", + "NormalRangeMaximum": "NormalRangeMaximum", + "NormalRangeMinimum": "NormalRangeMinimum", + "NormalRangeVisibility": "NormalRangeVisibility", + "PixelScalingRatio": "PixelScalingRatio", + "TextColor": "TextColor", + "TrendLineBrush": "TrendLineBrush", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting", + "ValueMemberPath": "ValueMemberPath", + "VerticalAxisBrush": "VerticalAxisBrush", + "VerticalAxisLabelRef": "VerticalAxisLabelRef", + "VerticalAxisVisibility": "VerticalAxisVisibility", + "VerticalLabelFormat": "VerticalLabelFormat", + "VerticalLabelFormatSpecifiers": "VerticalLabelFormatSpecifiers", + "Width": "Width" + } + } + ], + "SparklineDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SparklineDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SparklineDescriptionMetadata()": "SparklineDescriptionMetadata()", + "SparklineDescriptionMetadata": "SparklineDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SparklineDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SparklineDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SparklineDescriptionModule()": "SparklineDescriptionModule()", + "SparklineDescriptionModule": "SparklineDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SparklineDisplayType": [ + { + "p": "Infragistics.Uno.Sparkline", + "u": "/api/uno-platform/Infragistics.Uno.Sparkline/latest/enums/SparklineDisplayType", + "k": "enum", + "s": "enums" + } + ], + "SparklineFormatLabelEventArgs": [ + { + "p": "Infragistics.Uno.Sparkline", + "u": "/api/uno-platform/Infragistics.Uno.Sparkline/latest/classes/SparklineFormatLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "SparklineFormatLabelEventArgs()": "SparklineFormatLabelEventArgs()", + "SparklineFormatLabelEventArgs": "SparklineFormatLabelEventArgs()", + "Label": "Label", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SparklineVisualData": [ + { + "p": "Infragistics.Uno.Sparkline", + "u": "/api/uno-platform/Infragistics.Uno.Sparkline/latest/classes/SparklineVisualData", + "k": "class", + "s": "classes", + "m": { + "SparklineVisualData()": "SparklineVisualData()", + "SparklineVisualData": "SparklineVisualData()", + "FirstMarkerPath": "FirstMarkerPath", + "HighMarkersPath": "HighMarkersPath", + "HorizontalAxis": "HorizontalAxis", + "LastMarkerPath": "LastMarkerPath", + "LowMarkersPath": "LowMarkersPath", + "MarginViewport": "MarginViewport", + "MarkersPath": "MarkersPath", + "Name": "Name", + "NegativeMarkersPath": "NegativeMarkersPath", + "NegativeSparkPath": "NegativeSparkPath", + "RangePath": "RangePath", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SparkPath": "SparkPath", + "TrendLinePath": "TrendLinePath", + "VerticalAxis": "VerticalAxis", + "Viewport": "Viewport" + } + } + ], + "SplineAreaFragmentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineAreaFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "SplineAreaFragmentDescription()": "SplineAreaFragmentDescription()", + "SplineAreaFragmentDescription": "SplineAreaFragmentDescription()", + "Type": "Type" + } + } + ], + "SplineAreaFragmentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineAreaFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineAreaFragmentDescriptionMetadata()": "SplineAreaFragmentDescriptionMetadata()", + "SplineAreaFragmentDescriptionMetadata": "SplineAreaFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineAreaFragmentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineAreaFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SplineAreaFragmentDescriptionModule()": "SplineAreaFragmentDescriptionModule()", + "SplineAreaFragmentDescriptionModule": "SplineAreaFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SplineAreaSeries", + "k": "class", + "s": "classes", + "m": { + "SplineAreaSeries()": "SplineAreaSeries()", + "SplineAreaSeries": "SplineAreaSeries()" + } + } + ], + "SplineAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "SplineAreaSeriesDescription()": "SplineAreaSeriesDescription()", + "SplineAreaSeriesDescription": "SplineAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "SplineAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineAreaSeriesDescriptionMetadata()": "SplineAreaSeriesDescriptionMetadata()", + "SplineAreaSeriesDescriptionMetadata": "SplineAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SplineAreaSeriesDescriptionModule()": "SplineAreaSeriesDescriptionModule()", + "SplineAreaSeriesDescriptionModule": "SplineAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineFragmentBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineFragmentBaseDescription", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentBaseDescription()": "SplineFragmentBaseDescription()", + "SplineFragmentBaseDescription": "SplineFragmentBaseDescription()", + "Type": "Type" + } + } + ], + "SplineFragmentBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineFragmentBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentBaseDescriptionMetadata()": "SplineFragmentBaseDescriptionMetadata()", + "SplineFragmentBaseDescriptionMetadata": "SplineFragmentBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineFragmentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentDescription()": "SplineFragmentDescription()", + "SplineFragmentDescription": "SplineFragmentDescription()", + "Type": "Type" + } + } + ], + "SplineFragmentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentDescriptionMetadata()": "SplineFragmentDescriptionMetadata()", + "SplineFragmentDescriptionMetadata": "SplineFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineFragmentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentDescriptionModule()": "SplineFragmentDescriptionModule()", + "SplineFragmentDescriptionModule": "SplineFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SplineSeries", + "k": "class", + "s": "classes", + "m": { + "SplineSeries()": "SplineSeries()", + "SplineSeries": "SplineSeries()" + } + } + ], + "SplineSeriesBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SplineSeriesBase", + "k": "class", + "s": "classes", + "m": { + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty", + "SplineType": "SplineType", + "SplineTypeProperty": "SplineTypeProperty" + } + } + ], + "SplineSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesBaseDescription()": "SplineSeriesBaseDescription()", + "SplineSeriesBaseDescription": "SplineSeriesBaseDescription()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "SplineType": "SplineType", + "Type": "Type" + } + } + ], + "SplineSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesBaseDescriptionMetadata()": "SplineSeriesBaseDescriptionMetadata()", + "SplineSeriesBaseDescriptionMetadata": "SplineSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesDescription()": "SplineSeriesDescription()", + "SplineSeriesDescription": "SplineSeriesDescription()", + "Type": "Type" + } + } + ], + "SplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesDescriptionMetadata()": "SplineSeriesDescriptionMetadata()", + "SplineSeriesDescriptionMetadata": "SplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesDescriptionModule()": "SplineSeriesDescriptionModule()", + "SplineSeriesDescriptionModule": "SplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/SplineType", + "k": "enum", + "s": "enums" + } + ], + "Stacked100AreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Stacked100AreaSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100AreaSeries()": "Stacked100AreaSeries()", + "Stacked100AreaSeries": "Stacked100AreaSeries()" + } + } + ], + "Stacked100AreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100AreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100AreaSeriesDescription()": "Stacked100AreaSeriesDescription()", + "Stacked100AreaSeriesDescription": "Stacked100AreaSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100AreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100AreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100AreaSeriesDescriptionMetadata()": "Stacked100AreaSeriesDescriptionMetadata()", + "Stacked100AreaSeriesDescriptionMetadata": "Stacked100AreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100AreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100AreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100AreaSeriesDescriptionModule()": "Stacked100AreaSeriesDescriptionModule()", + "Stacked100AreaSeriesDescriptionModule": "Stacked100AreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100BarSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Stacked100BarSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100BarSeries()": "Stacked100BarSeries()", + "Stacked100BarSeries": "Stacked100BarSeries()" + } + } + ], + "Stacked100BarSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100BarSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100BarSeriesDescription()": "Stacked100BarSeriesDescription()", + "Stacked100BarSeriesDescription": "Stacked100BarSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100BarSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100BarSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100BarSeriesDescriptionMetadata()": "Stacked100BarSeriesDescriptionMetadata()", + "Stacked100BarSeriesDescriptionMetadata": "Stacked100BarSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100BarSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100BarSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100BarSeriesDescriptionModule()": "Stacked100BarSeriesDescriptionModule()", + "Stacked100BarSeriesDescriptionModule": "Stacked100BarSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100ColumnSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Stacked100ColumnSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100ColumnSeries()": "Stacked100ColumnSeries()", + "Stacked100ColumnSeries": "Stacked100ColumnSeries()" + } + } + ], + "Stacked100ColumnSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100ColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100ColumnSeriesDescription()": "Stacked100ColumnSeriesDescription()", + "Stacked100ColumnSeriesDescription": "Stacked100ColumnSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100ColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100ColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100ColumnSeriesDescriptionMetadata()": "Stacked100ColumnSeriesDescriptionMetadata()", + "Stacked100ColumnSeriesDescriptionMetadata": "Stacked100ColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100ColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100ColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100ColumnSeriesDescriptionModule()": "Stacked100ColumnSeriesDescriptionModule()", + "Stacked100ColumnSeriesDescriptionModule": "Stacked100ColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100LineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Stacked100LineSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100LineSeries()": "Stacked100LineSeries()", + "Stacked100LineSeries": "Stacked100LineSeries()" + } + } + ], + "Stacked100LineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100LineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100LineSeriesDescription()": "Stacked100LineSeriesDescription()", + "Stacked100LineSeriesDescription": "Stacked100LineSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100LineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100LineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100LineSeriesDescriptionMetadata()": "Stacked100LineSeriesDescriptionMetadata()", + "Stacked100LineSeriesDescriptionMetadata": "Stacked100LineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100LineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100LineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100LineSeriesDescriptionModule()": "Stacked100LineSeriesDescriptionModule()", + "Stacked100LineSeriesDescriptionModule": "Stacked100LineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100SplineAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Stacked100SplineAreaSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineAreaSeries()": "Stacked100SplineAreaSeries()", + "Stacked100SplineAreaSeries": "Stacked100SplineAreaSeries()" + } + } + ], + "Stacked100SplineAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100SplineAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineAreaSeriesDescription()": "Stacked100SplineAreaSeriesDescription()", + "Stacked100SplineAreaSeriesDescription": "Stacked100SplineAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100SplineAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100SplineAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineAreaSeriesDescriptionMetadata()": "Stacked100SplineAreaSeriesDescriptionMetadata()", + "Stacked100SplineAreaSeriesDescriptionMetadata": "Stacked100SplineAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100SplineAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100SplineAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineAreaSeriesDescriptionModule()": "Stacked100SplineAreaSeriesDescriptionModule()", + "Stacked100SplineAreaSeriesDescriptionModule": "Stacked100SplineAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100SplineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/Stacked100SplineSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineSeries()": "Stacked100SplineSeries()", + "Stacked100SplineSeries": "Stacked100SplineSeries()" + } + } + ], + "Stacked100SplineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100SplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineSeriesDescription()": "Stacked100SplineSeriesDescription()", + "Stacked100SplineSeriesDescription": "Stacked100SplineSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100SplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100SplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineSeriesDescriptionMetadata()": "Stacked100SplineSeriesDescriptionMetadata()", + "Stacked100SplineSeriesDescriptionMetadata": "Stacked100SplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100SplineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Stacked100SplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineSeriesDescriptionModule()": "Stacked100SplineSeriesDescriptionModule()", + "Stacked100SplineSeriesDescriptionModule": "Stacked100SplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedAreaSeries", + "k": "class", + "s": "classes", + "m": { + "StackedAreaSeries()": "StackedAreaSeries()", + "StackedAreaSeries": "StackedAreaSeries()" + } + } + ], + "StackedAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedAreaSeriesDescription()": "StackedAreaSeriesDescription()", + "StackedAreaSeriesDescription": "StackedAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "StackedAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedAreaSeriesDescriptionMetadata()": "StackedAreaSeriesDescriptionMetadata()", + "StackedAreaSeriesDescriptionMetadata": "StackedAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedAreaSeriesDescriptionModule()": "StackedAreaSeriesDescriptionModule()", + "StackedAreaSeriesDescriptionModule": "StackedAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedBarSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedBarSeries", + "k": "class", + "s": "classes", + "m": { + "StackedBarSeries()": "StackedBarSeries()", + "StackedBarSeries": "StackedBarSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "StackedBarSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedBarSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedBarSeriesDescription()": "StackedBarSeriesDescription()", + "StackedBarSeriesDescription": "StackedBarSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "StackedBarSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedBarSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedBarSeriesDescriptionMetadata()": "StackedBarSeriesDescriptionMetadata()", + "StackedBarSeriesDescriptionMetadata": "StackedBarSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedBarSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedBarSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedBarSeriesDescriptionModule()": "StackedBarSeriesDescriptionModule()", + "StackedBarSeriesDescriptionModule": "StackedBarSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedColumnSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedColumnSeries", + "k": "class", + "s": "classes", + "m": { + "StackedColumnSeries()": "StackedColumnSeries()", + "StackedColumnSeries": "StackedColumnSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "StackedColumnSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedColumnSeriesDescription()": "StackedColumnSeriesDescription()", + "StackedColumnSeriesDescription": "StackedColumnSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "StackedColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedColumnSeriesDescriptionMetadata()": "StackedColumnSeriesDescriptionMetadata()", + "StackedColumnSeriesDescriptionMetadata": "StackedColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedColumnSeriesDescriptionModule()": "StackedColumnSeriesDescriptionModule()", + "StackedColumnSeriesDescriptionModule": "StackedColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedFragmentSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedFragmentSeries", + "k": "class", + "s": "classes", + "m": { + "StackedFragmentSeries()": "StackedFragmentSeries()", + "StackedFragmentSeries": "StackedFragmentSeries()", + "ActualAreaFillOpacity": "ActualAreaFillOpacity", + "ActualAreaFillOpacityProperty": "ActualAreaFillOpacityProperty", + "ActualBrush": "ActualBrush", + "ActualBrushProperty": "ActualBrushProperty", + "ActualDataLegendGroup": "ActualDataLegendGroup", + "ActualDataLegendGroupProperty": "ActualDataLegendGroupProperty", + "ActualHighlightedValuesDataLegendGroup": "ActualHighlightedValuesDataLegendGroup", + "ActualHighlightedValuesDataLegendGroupProperty": "ActualHighlightedValuesDataLegendGroupProperty", + "ActualHighlightedValuesDisplayMode": "ActualHighlightedValuesDisplayMode", + "ActualHighlightedValuesDisplayModeProperty": "ActualHighlightedValuesDisplayModeProperty", + "ActualHighlightingFadeOpacity": "ActualHighlightingFadeOpacity", + "ActualHighlightingFadeOpacityProperty": "ActualHighlightingFadeOpacityProperty", + "ActualIsSplineShapePartOfRange": "ActualIsSplineShapePartOfRange", + "ActualIsSplineShapePartOfRangeProperty": "ActualIsSplineShapePartOfRangeProperty", + "ActualIsTransitionInEnabled": "ActualIsTransitionInEnabled", + "ActualIsTransitionInEnabledProperty": "ActualIsTransitionInEnabledProperty", + "ActualLegendItemBadgeMode": "ActualLegendItemBadgeMode", + "ActualLegendItemBadgeModeProperty": "ActualLegendItemBadgeModeProperty", + "ActualLegendItemBadgeShape": "ActualLegendItemBadgeShape", + "ActualLegendItemBadgeShapeProperty": "ActualLegendItemBadgeShapeProperty", + "ActualLegendItemVisibility": "ActualLegendItemVisibility", + "ActualLegendItemVisibilityProperty": "ActualLegendItemVisibilityProperty", + "ActualLineCap": "ActualLineCap", + "ActualLineCapProperty": "ActualLineCapProperty", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerFillMode": "ActualMarkerFillMode", + "ActualMarkerFillModeProperty": "ActualMarkerFillModeProperty", + "ActualMarkerFillOpacity": "ActualMarkerFillOpacity", + "ActualMarkerFillOpacityProperty": "ActualMarkerFillOpacityProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineMode": "ActualMarkerOutlineMode", + "ActualMarkerOutlineModeProperty": "ActualMarkerOutlineModeProperty", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "ActualMarkerThickness": "ActualMarkerThickness", + "ActualMarkerThicknessProperty": "ActualMarkerThicknessProperty", + "ActualMarkerType": "ActualMarkerType", + "ActualMarkerTypeProperty": "ActualMarkerTypeProperty", + "ActualOpacity": "ActualOpacity", + "ActualOpacityProperty": "ActualOpacityProperty", + "ActualOutline": "ActualOutline", + "ActualOutlineMode": "ActualOutlineMode", + "ActualOutlineModeProperty": "ActualOutlineModeProperty", + "ActualOutlineProperty": "ActualOutlineProperty", + "ActualRadiusX": "ActualRadiusX", + "ActualRadiusXProperty": "ActualRadiusXProperty", + "ActualRadiusY": "ActualRadiusY", + "ActualRadiusYProperty": "ActualRadiusYProperty", + "ActualShowDefaultTooltip": "ActualShowDefaultTooltip", + "ActualShowDefaultTooltipProperty": "ActualShowDefaultTooltipProperty", + "ActualThickness": "ActualThickness", + "ActualThicknessProperty": "ActualThicknessProperty", + "ActualTransitionDuration": "ActualTransitionDuration", + "ActualTransitionDurationProperty": "ActualTransitionDurationProperty", + "ActualTransitionEasingFunction": "ActualTransitionEasingFunction", + "ActualTransitionEasingFunctionProperty": "ActualTransitionEasingFunctionProperty", + "ActualTransitionInDuration": "ActualTransitionInDuration", + "ActualTransitionInDurationProperty": "ActualTransitionInDurationProperty", + "ActualTransitionInEasingFunction": "ActualTransitionInEasingFunction", + "ActualTransitionInEasingFunctionProperty": "ActualTransitionInEasingFunctionProperty", + "ActualTransitionInMode": "ActualTransitionInMode", + "ActualTransitionInModeProperty": "ActualTransitionInModeProperty", + "ActualTransitionInSpeedType": "ActualTransitionInSpeedType", + "ActualTransitionInSpeedTypeProperty": "ActualTransitionInSpeedTypeProperty", + "ActualUseLightweightMarkers": "ActualUseLightweightMarkers", + "ActualUseLightweightMarkersProperty": "ActualUseLightweightMarkersProperty", + "ActualValueMemberAsLegendLabel": "ActualValueMemberAsLegendLabel", + "ActualValueMemberAsLegendLabelProperty": "ActualValueMemberAsLegendLabelProperty", + "ActualValueMemberAsLegendUnit": "ActualValueMemberAsLegendUnit", + "ActualValueMemberAsLegendUnitProperty": "ActualValueMemberAsLegendUnitProperty", + "ActualVisibility": "ActualVisibility", + "ActualVisibilityProperty": "ActualVisibilityProperty", + "AreaFillOpacity": "AreaFillOpacity", + "AreaFillOpacityProperty": "AreaFillOpacityProperty", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "DashArray": "DashArray", + "DashArrayProperty": "DashArrayProperty", + "DataLegendGroup": "DataLegendGroup", + "DataLegendGroupProperty": "DataLegendGroupProperty", + "FromWorldPosition(Point)": "FromWorldPosition(Point)", + "FromWorldPosition": "FromWorldPosition(Point)", + "GetEffectiveViewport()": "GetEffectiveViewport()", + "GetEffectiveViewport": "GetEffectiveViewport()", + "GetExactItemIndexFromSeriesPixel(Point)": "GetExactItemIndexFromSeriesPixel(Point)", + "GetExactItemIndexFromSeriesPixel": "GetExactItemIndexFromSeriesPixel(Point)", + "GetItem(Point)": "GetItem(Point)", + "GetItem": "GetItem(Point)", + "GetItemFromSeriesPixel(Point)": "GetItemFromSeriesPixel(Point)", + "GetItemFromSeriesPixel": "GetItemFromSeriesPixel(Point)", + "GetItemIndex(Point)": "GetItemIndex(Point)", + "GetItemIndex": "GetItemIndex(Point)", + "GetItemIndexFromSeriesPixel(Point)": "GetItemIndexFromSeriesPixel(Point)", + "GetItemIndexFromSeriesPixel": "GetItemIndexFromSeriesPixel(Point)", + "GetItemSpan()": "GetItemSpan()", + "GetItemSpan": "GetItemSpan()", + "GetNextOrExactIndex(Point, bool)": "GetNextOrExactIndex(Point, bool)", + "GetNextOrExactIndex": "GetNextOrExactIndex(Point, bool)", + "GetPreviousOrExactIndex(Point, bool)": "GetPreviousOrExactIndex(Point, bool)", + "GetPreviousOrExactIndex": "GetPreviousOrExactIndex(Point, bool)", + "GetSeriesHighValue(Point, bool, bool)": "GetSeriesHighValue(Point, bool, bool)", + "GetSeriesHighValue": "GetSeriesHighValue(Point, bool, bool)", + "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)": "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValueFromSeriesPixel": "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValuePosition(Point, bool, bool)": "GetSeriesHighValuePosition(Point, bool, bool)", + "GetSeriesHighValuePosition": "GetSeriesHighValuePosition(Point, bool, bool)", + "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValuePositionFromSeriesPixel": "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValue(Point, bool, bool)": "GetSeriesLowValue(Point, bool, bool)", + "GetSeriesLowValue": "GetSeriesLowValue(Point, bool, bool)", + "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)": "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValueFromSeriesPixel": "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValuePosition(Point, bool, bool)": "GetSeriesLowValuePosition(Point, bool, bool)", + "GetSeriesLowValuePosition": "GetSeriesLowValuePosition(Point, bool, bool)", + "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValuePositionFromSeriesPixel": "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValue(Point, bool, bool)": "GetSeriesValue(Point, bool, bool)", + "GetSeriesValue": "GetSeriesValue(Point, bool, bool)", + "GetSeriesValueBoundingBox(Point)": "GetSeriesValueBoundingBox(Point)", + "GetSeriesValueBoundingBox": "GetSeriesValueBoundingBox(Point)", + "GetSeriesValueBoundingBoxFromSeriesPixel(Point)": "GetSeriesValueBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueBoundingBoxFromSeriesPixel": "GetSeriesValueBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueFineGrainedBoundingBoxes(Point)": "GetSeriesValueFineGrainedBoundingBoxes(Point)", + "GetSeriesValueFineGrainedBoundingBoxes": "GetSeriesValueFineGrainedBoundingBoxes(Point)", + "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)": "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)", + "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel": "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)", + "GetSeriesValueFromSeriesPixel(Point, bool, bool)": "GetSeriesValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueFromSeriesPixel": "GetSeriesValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueMarkerBoundingBox(Point)": "GetSeriesValueMarkerBoundingBox(Point)", + "GetSeriesValueMarkerBoundingBox": "GetSeriesValueMarkerBoundingBox(Point)", + "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)": "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueMarkerBoundingBoxFromSeriesPixel": "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValuePosition(Point, bool, bool)": "GetSeriesValuePosition(Point, bool, bool)", + "GetSeriesValuePosition": "GetSeriesValuePosition(Point, bool, bool)", + "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValuePositionFromSeriesPixel": "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedValuesDataLegendGroup": "HighlightedValuesDataLegendGroup", + "HighlightedValuesDataLegendGroupProperty": "HighlightedValuesDataLegendGroupProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "IsCustomCategoryMarkerStyleAllowed": "IsCustomCategoryMarkerStyleAllowed", + "IsCustomCategoryMarkerStyleAllowedProperty": "IsCustomCategoryMarkerStyleAllowedProperty", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsCustomCategoryStyleAllowedProperty": "IsCustomCategoryStyleAllowedProperty", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeModeProperty": "LegendItemBadgeModeProperty", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeShapeProperty": "LegendItemBadgeShapeProperty", + "LegendItemVisibility": "LegendItemVisibility", + "LegendItemVisibilityProperty": "LegendItemVisibilityProperty", + "LineCap": "LineCap", + "LineCapProperty": "LineCapProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerFillOpacityProperty": "MarkerFillOpacityProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "MoveCursorPoint(Point)": "MoveCursorPoint(Point)", + "MoveCursorPoint": "MoveCursorPoint(Point)", + "Name": "Name", + "NameProperty": "NameProperty", + "NotifyVisualPropertiesChanged()": "NotifyVisualPropertiesChanged()", + "NotifyVisualPropertiesChanged": "NotifyVisualPropertiesChanged()", + "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)": "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)", + "OnAssigningCategoryMarkerStyle": "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)", + "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnAssigningCategoryStyle": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty", + "Outline": "Outline", + "OutlineMode": "OutlineMode", + "OutlineModeProperty": "OutlineModeProperty", + "OutlineProperty": "OutlineProperty", + "ParentOrLocalBrush": "ParentOrLocalBrush", + "ParentOrLocalBrushProperty": "ParentOrLocalBrushProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty", + "ReplayTransitionIn()": "ReplayTransitionIn()", + "ReplayTransitionIn": "ReplayTransitionIn()", + "ScrollIntoView(object)": "ScrollIntoView(object)", + "ScrollIntoView": "ScrollIntoView(object)", + "ShowDefaultTooltip": "ShowDefaultTooltip", + "ShowDefaultTooltipProperty": "ShowDefaultTooltipProperty", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "TestHit(Point, bool)": "TestHit(Point, bool)", + "TestHit": "TestHit(Point, bool)", + "Thickness": "Thickness", + "ThicknessProperty": "ThicknessProperty", + "Title": "Title", + "TitleProperty": "TitleProperty", + "ToWorldPosition(Point)": "ToWorldPosition(Point)", + "ToWorldPosition": "ToWorldPosition(Point)", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionEasingFunction": "TransitionEasingFunction", + "TransitionEasingFunctionProperty": "TransitionEasingFunctionProperty", + "TransitionInDuration": "TransitionInDuration", + "TransitionInDurationProperty": "TransitionInDurationProperty", + "TransitionInEasingFunction": "TransitionInEasingFunction", + "TransitionInEasingFunctionProperty": "TransitionInEasingFunctionProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionInSpeedTypeProperty": "TransitionInSpeedTypeProperty", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendLabelProperty": "ValueMemberAsLegendLabelProperty", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberAsLegendUnitProperty": "ValueMemberAsLegendUnitProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "StackedFragmentSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedFragmentSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedFragmentSeriesDescription()": "StackedFragmentSeriesDescription()", + "StackedFragmentSeriesDescription": "StackedFragmentSeriesDescription()", + "ActualAreaFillOpacity": "ActualAreaFillOpacity", + "ActualBrush": "ActualBrush", + "ActualDataLegendGroup": "ActualDataLegendGroup", + "ActualHighlightedValuesDataLegendGroup": "ActualHighlightedValuesDataLegendGroup", + "ActualHighlightedValuesDisplayMode": "ActualHighlightedValuesDisplayMode", + "ActualHighlightingFadeOpacity": "ActualHighlightingFadeOpacity", + "ActualIsDropShadowEnabled": "ActualIsDropShadowEnabled", + "ActualIsSplineShapePartOfRange": "ActualIsSplineShapePartOfRange", + "ActualIsTransitionInEnabled": "ActualIsTransitionInEnabled", + "ActualLegendItemBadgeMode": "ActualLegendItemBadgeMode", + "ActualLegendItemBadgeShape": "ActualLegendItemBadgeShape", + "ActualLegendItemBadgeTemplateRef": "ActualLegendItemBadgeTemplateRef", + "ActualLegendItemTemplateRef": "ActualLegendItemTemplateRef", + "ActualLegendItemVisibility": "ActualLegendItemVisibility", + "ActualLineCap": "ActualLineCap", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerFillMode": "ActualMarkerFillMode", + "ActualMarkerFillOpacity": "ActualMarkerFillOpacity", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineMode": "ActualMarkerOutlineMode", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "ActualMarkerThickness": "ActualMarkerThickness", + "ActualMarkerType": "ActualMarkerType", + "ActualOpacity": "ActualOpacity", + "ActualOutline": "ActualOutline", + "ActualOutlineMode": "ActualOutlineMode", + "ActualRadiusX": "ActualRadiusX", + "ActualRadiusY": "ActualRadiusY", + "ActualShadowBlur": "ActualShadowBlur", + "ActualShadowColor": "ActualShadowColor", + "ActualShadowOffsetX": "ActualShadowOffsetX", + "ActualShadowOffsetY": "ActualShadowOffsetY", + "ActualThickness": "ActualThickness", + "ActualTransitionDuration": "ActualTransitionDuration", + "ActualTransitionEasingFunctionRef": "ActualTransitionEasingFunctionRef", + "ActualTransitionInDuration": "ActualTransitionInDuration", + "ActualTransitionInEasingFunctionRef": "ActualTransitionInEasingFunctionRef", + "ActualTransitionInMode": "ActualTransitionInMode", + "ActualTransitionInSpeedType": "ActualTransitionInSpeedType", + "ActualUseSingleShadow": "ActualUseSingleShadow", + "ActualValueMemberAsLegendLabel": "ActualValueMemberAsLegendLabel", + "ActualValueMemberAsLegendUnit": "ActualValueMemberAsLegendUnit", + "ActualVisibility": "ActualVisibility", + "AreaFillOpacity": "AreaFillOpacity", + "AssigningCategoryMarkerStyleRef": "AssigningCategoryMarkerStyleRef", + "AssigningCategoryStyleRef": "AssigningCategoryStyleRef", + "Brush": "Brush", + "DashArray": "DashArray", + "DataLegendGroup": "DataLegendGroup", + "DataSourceRef": "DataSourceRef", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedValuesDataLegendGroup": "HighlightedValuesDataLegendGroup", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "IsCustomCategoryMarkerStyleAllowed": "IsCustomCategoryMarkerStyleAllowed", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsDropShadowEnabled": "IsDropShadowEnabled", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "LegendItemTemplateRef": "LegendItemTemplateRef", + "LegendItemVisibility": "LegendItemVisibility", + "LineCap": "LineCap", + "MarkerBrush": "MarkerBrush", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "Opacity": "Opacity", + "Outline": "Outline", + "OutlineMode": "OutlineMode", + "ParentOrLocalBrush": "ParentOrLocalBrush", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "ShadowBlur": "ShadowBlur", + "ShadowColor": "ShadowColor", + "ShadowOffsetX": "ShadowOffsetX", + "ShadowOffsetY": "ShadowOffsetY", + "Thickness": "Thickness", + "Title": "Title", + "TransitionDuration": "TransitionDuration", + "TransitionEasingFunctionRef": "TransitionEasingFunctionRef", + "TransitionInDuration": "TransitionInDuration", + "TransitionInEasingFunctionRef": "TransitionInEasingFunctionRef", + "TransitionInMode": "TransitionInMode", + "TransitionInSpeedType": "TransitionInSpeedType", + "Type": "Type", + "UseSingleShadow": "UseSingleShadow", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberPath": "ValueMemberPath", + "Visibility": "Visibility" + } + } + ], + "StackedFragmentSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedFragmentSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedFragmentSeriesDescriptionMetadata()": "StackedFragmentSeriesDescriptionMetadata()", + "StackedFragmentSeriesDescriptionMetadata": "StackedFragmentSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedFragmentSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedFragmentSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedFragmentSeriesDescriptionModule()": "StackedFragmentSeriesDescriptionModule()", + "StackedFragmentSeriesDescriptionModule": "StackedFragmentSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedLineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedLineSeries", + "k": "class", + "s": "classes", + "m": { + "StackedLineSeries()": "StackedLineSeries()", + "StackedLineSeries": "StackedLineSeries()" + } + } + ], + "StackedLineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedLineSeriesDescription()": "StackedLineSeriesDescription()", + "StackedLineSeriesDescription": "StackedLineSeriesDescription()", + "Type": "Type" + } + } + ], + "StackedLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedLineSeriesDescriptionMetadata()": "StackedLineSeriesDescriptionMetadata()", + "StackedLineSeriesDescriptionMetadata": "StackedLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedLineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedLineSeriesDescriptionModule()": "StackedLineSeriesDescriptionModule()", + "StackedLineSeriesDescriptionModule": "StackedLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSeriesBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedSeriesBase", + "k": "class", + "s": "classes", + "m": { + "AutoGenerateSeries": "AutoGenerateSeries", + "AutoGenerateSeriesProperty": "AutoGenerateSeriesProperty", + "IsPercentBased": "IsPercentBased", + "IsPercentBasedProperty": "IsPercentBasedProperty", + "OnSeriesCreated(StackedSeriesCreatedEventArgs)": "OnSeriesCreated(StackedSeriesCreatedEventArgs)", + "OnSeriesCreated": "OnSeriesCreated(StackedSeriesCreatedEventArgs)", + "ReverseLegendOrder": "ReverseLegendOrder", + "ReverseLegendOrderProperty": "ReverseLegendOrderProperty", + "Series": "Series" + } + } + ], + "StackedSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesBaseDescription()": "StackedSeriesBaseDescription()", + "StackedSeriesBaseDescription": "StackedSeriesBaseDescription()", + "AutoGenerateSeries": "AutoGenerateSeries", + "ReverseLegendOrder": "ReverseLegendOrder", + "Series": "Series", + "SeriesCreatedRef": "SeriesCreatedRef", + "Type": "Type" + } + } + ], + "StackedSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesBaseDescriptionMetadata()": "StackedSeriesBaseDescriptionMetadata()", + "StackedSeriesBaseDescriptionMetadata": "StackedSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSeriesCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedSeriesCollection", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesCollection()": "StackedSeriesCollection()", + "StackedSeriesCollection": "StackedSeriesCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "StackedSeriesCreatedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSeriesCreatedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesCreatedEventArgsDescription()": "StackedSeriesCreatedEventArgsDescription()", + "StackedSeriesCreatedEventArgsDescription": "StackedSeriesCreatedEventArgsDescription()", + "Brush": "Brush", + "DashArray": "DashArray", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "LegendItemTemplateRef": "LegendItemTemplateRef", + "LegendItemVisibility": "LegendItemVisibility", + "LineCap": "LineCap", + "MarkerBrush": "MarkerBrush", + "MarkerOutline": "MarkerOutline", + "MarkerStyle": "MarkerStyle", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "Outline": "Outline", + "Thickness": "Thickness", + "TitleRef": "TitleRef", + "TransitionDuration": "TransitionDuration", + "TransitionEasingFunctionRef": "TransitionEasingFunctionRef", + "Type": "Type" + } + } + ], + "StackedSeriesCreatedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSeriesCreatedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesCreatedEventArgsDescriptionMetadata()": "StackedSeriesCreatedEventArgsDescriptionMetadata()", + "StackedSeriesCreatedEventArgsDescriptionMetadata": "StackedSeriesCreatedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSeriesVisualData": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedSeriesVisualData", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesVisualData()": "StackedSeriesVisualData()", + "StackedSeriesVisualData": "StackedSeriesVisualData()", + "FragmentSeries": "FragmentSeries", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "StackedSplineAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedSplineAreaSeries", + "k": "class", + "s": "classes", + "m": { + "StackedSplineAreaSeries()": "StackedSplineAreaSeries()", + "StackedSplineAreaSeries": "StackedSplineAreaSeries()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty" + } + } + ], + "StackedSplineAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSplineAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedSplineAreaSeriesDescription()": "StackedSplineAreaSeriesDescription()", + "StackedSplineAreaSeriesDescription": "StackedSplineAreaSeriesDescription()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "Type": "Type" + } + } + ], + "StackedSplineAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSplineAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedSplineAreaSeriesDescriptionMetadata()": "StackedSplineAreaSeriesDescriptionMetadata()", + "StackedSplineAreaSeriesDescriptionMetadata": "StackedSplineAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSplineAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSplineAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedSplineAreaSeriesDescriptionModule()": "StackedSplineAreaSeriesDescriptionModule()", + "StackedSplineAreaSeriesDescriptionModule": "StackedSplineAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSplineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StackedSplineSeries", + "k": "class", + "s": "classes", + "m": { + "StackedSplineSeries()": "StackedSplineSeries()", + "StackedSplineSeries": "StackedSplineSeries()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty" + } + } + ], + "StackedSplineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedSplineSeriesDescription()": "StackedSplineSeriesDescription()", + "StackedSplineSeriesDescription": "StackedSplineSeriesDescription()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "Type": "Type" + } + } + ], + "StackedSplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedSplineSeriesDescriptionMetadata()": "StackedSplineSeriesDescriptionMetadata()", + "StackedSplineSeriesDescriptionMetadata": "StackedSplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSplineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StackedSplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedSplineSeriesDescriptionModule()": "StackedSplineSeriesDescriptionModule()", + "StackedSplineSeriesDescriptionModule": "StackedSplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StandardDeviationIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StandardDeviationIndicator", + "k": "class", + "s": "classes", + "m": { + "StandardDeviationIndicator()": "StandardDeviationIndicator()", + "StandardDeviationIndicator": "StandardDeviationIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "StandardDeviationIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StandardDeviationIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "StandardDeviationIndicatorDescription()": "StandardDeviationIndicatorDescription()", + "StandardDeviationIndicatorDescription": "StandardDeviationIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "StandardDeviationIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StandardDeviationIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StandardDeviationIndicatorDescriptionMetadata()": "StandardDeviationIndicatorDescriptionMetadata()", + "StandardDeviationIndicatorDescriptionMetadata": "StandardDeviationIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StandardDeviationIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StandardDeviationIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StandardDeviationIndicatorDescriptionModule()": "StandardDeviationIndicatorDescriptionModule()", + "StandardDeviationIndicatorDescriptionModule": "StandardDeviationIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StepAreaSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StepAreaSeries", + "k": "class", + "s": "classes", + "m": { + "StepAreaSeries()": "StepAreaSeries()", + "StepAreaSeries": "StepAreaSeries()" + } + } + ], + "StepAreaSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StepAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StepAreaSeriesDescription()": "StepAreaSeriesDescription()", + "StepAreaSeriesDescription": "StepAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "StepAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StepAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StepAreaSeriesDescriptionMetadata()": "StepAreaSeriesDescriptionMetadata()", + "StepAreaSeriesDescriptionMetadata": "StepAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StepAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StepAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StepAreaSeriesDescriptionModule()": "StepAreaSeriesDescriptionModule()", + "StepAreaSeriesDescriptionModule": "StepAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StepLineSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StepLineSeries", + "k": "class", + "s": "classes", + "m": { + "StepLineSeries()": "StepLineSeries()", + "StepLineSeries": "StepLineSeries()" + } + } + ], + "StepLineSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StepLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StepLineSeriesDescription()": "StepLineSeriesDescription()", + "StepLineSeriesDescription": "StepLineSeriesDescription()", + "Type": "Type" + } + } + ], + "StepLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StepLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StepLineSeriesDescriptionMetadata()": "StepLineSeriesDescriptionMetadata()", + "StepLineSeriesDescriptionMetadata": "StepLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StepLineSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StepLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StepLineSeriesDescriptionModule()": "StepLineSeriesDescriptionModule()", + "StepLineSeriesDescriptionModule": "StepLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StochRSIIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StochRSIIndicator", + "k": "class", + "s": "classes", + "m": { + "StochRSIIndicator()": "StochRSIIndicator()", + "StochRSIIndicator": "StochRSIIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "StochRSIIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StochRSIIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "StochRSIIndicatorDescription()": "StochRSIIndicatorDescription()", + "StochRSIIndicatorDescription": "StochRSIIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "StochRSIIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StochRSIIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StochRSIIndicatorDescriptionMetadata()": "StochRSIIndicatorDescriptionMetadata()", + "StochRSIIndicatorDescriptionMetadata": "StochRSIIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StochRSIIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StochRSIIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StochRSIIndicatorDescriptionModule()": "StochRSIIndicatorDescriptionModule()", + "StochRSIIndicatorDescriptionModule": "StochRSIIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StockChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StockChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "StockChangedEventArgsDescription()": "StockChangedEventArgsDescription()", + "StockChangedEventArgsDescription": "StockChangedEventArgsDescription()", + "AddedSymbols": "AddedSymbols", + "RemovedSymbols": "RemovedSymbols", + "Type": "Type" + } + } + ], + "StockChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StockChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StockChangedEventArgsDescriptionMetadata()": "StockChangedEventArgsDescriptionMetadata()", + "StockChangedEventArgsDescriptionMetadata": "StockChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StraightNumericAxisBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StraightNumericAxisBase", + "k": "class", + "s": "classes", + "m": { + "ScaleMode": "ScaleMode", + "ScaleModeProperty": "ScaleModeProperty" + } + } + ], + "StraightNumericAxisBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StraightNumericAxisBaseDescription", + "k": "class", + "s": "classes", + "m": { + "StraightNumericAxisBaseDescription()": "StraightNumericAxisBaseDescription()", + "StraightNumericAxisBaseDescription": "StraightNumericAxisBaseDescription()", + "ScaleMode": "ScaleMode", + "Type": "Type" + } + } + ], + "StraightNumericAxisBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StraightNumericAxisBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StraightNumericAxisBaseDescriptionMetadata()": "StraightNumericAxisBaseDescriptionMetadata()", + "StraightNumericAxisBaseDescriptionMetadata": "StraightNumericAxisBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StrategyBasedIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StrategyBasedIndicator", + "k": "class", + "s": "classes" + } + ], + "StrategyBasedIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StrategyBasedIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "StrategyBasedIndicatorDescription()": "StrategyBasedIndicatorDescription()", + "StrategyBasedIndicatorDescription": "StrategyBasedIndicatorDescription()", + "Type": "Type" + } + } + ], + "StrategyBasedIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StrategyBasedIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StrategyBasedIndicatorDescriptionMetadata()": "StrategyBasedIndicatorDescriptionMetadata()", + "StrategyBasedIndicatorDescriptionMetadata": "StrategyBasedIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StringArrayConverter": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StringArrayConverter", + "k": "class", + "s": "classes", + "m": { + "StringArrayConverter()": "StringArrayConverter()", + "StringArrayConverter": "StringArrayConverter()", + "CanConvertFrom(ITypeDescriptorContext, Type)": "CanConvertFrom(ITypeDescriptorContext, Type)", + "CanConvertFrom": "CanConvertFrom(ITypeDescriptorContext, Type)", + "ConvertFrom(ITypeDescriptorContext, CultureInfo, object)": "ConvertFrom(ITypeDescriptorContext, CultureInfo, object)", + "ConvertFrom": "ConvertFrom(ITypeDescriptorContext, CultureInfo, object)" + } + } + ], + "StringColumn": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StringColumn", + "k": "class", + "s": "classes", + "m": { + "StringColumn()": "StringColumn()", + "StringColumn": "StringColumn()", + "SetValues(object)": "SetValues(object)", + "SetValues": "SetValues(object)", + "Values": "Values" + } + } + ], + "StringDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StringDescription", + "k": "class", + "s": "classes", + "m": { + "StringDescription()": "StringDescription()", + "StringDescription": "StringDescription()", + "Value": "Value" + } + } + ], + "Style": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/Style", + "k": "class", + "s": "classes", + "m": { + "Style()": "Style()", + "Style": "Style()", + "Fill": "Fill", + "Opacity": "Opacity", + "Stroke": "Stroke", + "StrokeThickness": "StrokeThickness" + } + } + ], + "StyleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StyleDescription", + "k": "class", + "s": "classes", + "m": { + "StyleDescription()": "StyleDescription()", + "StyleDescription": "StyleDescription()", + "Type": "Type" + } + } + ], + "StyleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StyleDescriptionMetadata()": "StyleDescriptionMetadata()", + "StyleDescriptionMetadata": "StyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StyleSelector": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/StyleSelector", + "k": "class", + "s": "classes", + "m": { + "StyleSelector()": "StyleSelector()", + "StyleSelector": "StyleSelector()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "StyleSelectorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StyleSelectorDescription", + "k": "class", + "s": "classes", + "m": { + "StyleSelectorDescription()": "StyleSelectorDescription()", + "StyleSelectorDescription": "StyleSelectorDescription()", + "Type": "Type" + } + } + ], + "StyleSelectorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StyleSelectorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StyleSelectorDescriptionMetadata()": "StyleSelectorDescriptionMetadata()", + "StyleSelectorDescriptionMetadata": "StyleSelectorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StyleShapeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StyleShapeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "StyleShapeEventArgsDescription()": "StyleShapeEventArgsDescription()", + "StyleShapeEventArgsDescription": "StyleShapeEventArgsDescription()", + "ItemRef": "ItemRef", + "ShapeFill": "ShapeFill", + "ShapeOpacity": "ShapeOpacity", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "Type": "Type" + } + } + ], + "StyleShapeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/StyleShapeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StyleShapeEventArgsDescriptionMetadata()": "StyleShapeEventArgsDescriptionMetadata()", + "StyleShapeEventArgsDescriptionMetadata": "StyleShapeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SubCollectionsRule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SubCollectionsRule", + "k": "class", + "s": "classes", + "m": { + "SubCollectionsRule()": "SubCollectionsRule()", + "SubCollectionsRule": "SubCollectionsRule()", + "CollectionTransformationThreshold": "CollectionTransformationThreshold", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "SubstituteTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/SubstituteTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "SubstituteTypeAttribute(Type)": "SubstituteTypeAttribute(Type)", + "SubstituteTypeAttribute": "SubstituteTypeAttribute(Type)", + "Type": "Type" + } + } + ], + "SubstituteValueAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/SubstituteValueAttribute", + "k": "class", + "s": "classes", + "m": { + "SubstituteValueAttribute(object)": "SubstituteValueAttribute(object)", + "SubstituteValueAttribute": "SubstituteValueAttribute(object)", + "AllowCaseLabels": "AllowCaseLabels", + "Value": "Value" + } + } + ], + "SuffixDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SuffixDescription", + "k": "class", + "s": "classes", + "m": { + "SuffixDescription()": "SuffixDescription()", + "SuffixDescription": "SuffixDescription()", + "AriaLabel": "AriaLabel", + "Disabled": "Disabled", + "Id": "Id", + "IsHover": "IsHover", + "Type": "Type" + } + } + ], + "SuffixDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SuffixDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SuffixDescriptionMetadata()": "SuffixDescriptionMetadata()", + "SuffixDescriptionMetadata": "SuffixDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SuffixShiftType": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/enums/SuffixShiftType", + "k": "enum", + "s": "enums" + } + ], + "SuffixVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/SuffixVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "SuffixVisualModelExport()": "SuffixVisualModelExport()", + "SuffixVisualModelExport": "SuffixVisualModelExport()", + "IsDisabled": "IsDisabled", + "IsHover": "IsHover", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "SummaryCalculator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "SummaryCalculator()": "SummaryCalculator()", + "SummaryCalculator": "SummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DataSource": "DataSource", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "GetExpectedTypeFromDouble(double)": "GetExpectedTypeFromDouble(double)", + "GetExpectedTypeFromDouble": "GetExpectedTypeFromDouble(double)", + "GetItemAsDouble(object)": "GetItemAsDouble(object)", + "GetItemAsDouble": "GetItemAsDouble(object)", + "GetResults()": "GetResults()", + "GetResults": "GetResults()", + "GetValueAsDouble(object)": "GetValueAsDouble(object)", + "GetValueAsDouble": "GetValueAsDouble(object)", + "IsSummaryDirty": "IsSummaryDirty", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand", + "PropertyName": "PropertyName", + "PropertyType": "PropertyType", + "ShouldDisplay": "ShouldDisplay" + } + } + ], + "SummaryCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SummaryCellInfo", + "k": "class", + "s": "classes", + "m": { + "SummaryCellInfo()": "SummaryCellInfo()", + "SummaryCellInfo": "SummaryCellInfo()", + "ResolvedSummaryLabel": "ResolvedSummaryLabel", + "ResolvedSummaryLabelPropertyName": "ResolvedSummaryLabelPropertyName", + "ResolvedSummaryValue": "ResolvedSummaryValue", + "ResolvedSummaryValuePropertyName": "ResolvedSummaryValuePropertyName", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontInfoPropertyName": "SummaryLabelFontInfoPropertyName", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextColorPropertyName": "SummaryLabelTextColorPropertyName" + } + } + ], + "SummaryCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryCellInfoDescription()": "SummaryCellInfoDescription()", + "SummaryCellInfoDescription": "SummaryCellInfoDescription()", + "ResolvedSummaryLabel": "ResolvedSummaryLabel", + "ResolvedSummaryValue": "ResolvedSummaryValue", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "Type": "Type" + } + } + ], + "SummaryCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryCellInfoDescriptionMetadata()": "SummaryCellInfoDescriptionMetadata()", + "SummaryCellInfoDescriptionMetadata": "SummaryCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SummaryCellModelExport", + "k": "class", + "s": "classes", + "m": { + "SummaryCellModelExport()": "SummaryCellModelExport()", + "SummaryCellModelExport": "SummaryCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "SummaryLabel": "SummaryLabel", + "SummaryLabelColor": "SummaryLabelColor", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontStretch": "SummaryLabelFontStretch", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontVariant": "SummaryLabelFontVariant", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryValue": "SummaryValue", + "SummaryValueColor": "SummaryValueColor", + "SummaryValueFontFamily": "SummaryValueFontFamily", + "SummaryValueFontSize": "SummaryValueFontSize", + "SummaryValueFontStretch": "SummaryValueFontStretch", + "SummaryValueFontStyle": "SummaryValueFontStyle", + "SummaryValueFontVariant": "SummaryValueFontVariant", + "SummaryValueFontWeight": "SummaryValueFontWeight", + "Type": "Type" + } + } + ], + "SummaryChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryChangedEventArgsDescription()": "SummaryChangedEventArgsDescription()", + "SummaryChangedEventArgsDescription": "SummaryChangedEventArgsDescription()", + "ID": "ID", + "IsEnabled": "IsEnabled", + "Type": "Type" + } + } + ], + "SummaryChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryChangedEventArgsDescriptionMetadata()": "SummaryChangedEventArgsDescriptionMetadata()", + "SummaryChangedEventArgsDescriptionMetadata": "SummaryChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryChooserDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryChooserDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SummaryChooserDescriptionModule()": "SummaryChooserDescriptionModule()", + "SummaryChooserDescriptionModule": "SummaryChooserDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryData": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SummaryData", + "k": "class", + "s": "classes", + "m": { + "SummaryData()": "SummaryData()", + "SummaryData": "SummaryData()", + "FormattedText": "FormattedText", + "FormattedValue": "FormattedValue", + "SummaryName": "SummaryName", + "SummaryOperand": "SummaryOperand", + "SummaryValue": "SummaryValue" + } + } + ], + "SummaryDataDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryDataDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryDataDescription()": "SummaryDataDescription()", + "SummaryDataDescription": "SummaryDataDescription()", + "FormattedText": "FormattedText", + "FormattedValue": "FormattedValue", + "SummaryName": "SummaryName", + "SummaryOperand": "SummaryOperand", + "SummaryValueRef": "SummaryValueRef", + "Type": "Type" + } + } + ], + "SummaryDataDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryDataDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryDataDescriptionMetadata()": "SummaryDataDescriptionMetadata()", + "SummaryDataDescriptionMetadata": "SummaryDataDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryDescription()": "SummaryDescription()", + "SummaryDescription": "SummaryDescription()", + "SummaryDescription(string)": "SummaryDescription(string)", + "SummaryDescription(string, DataSourceSummaryOperand)": "SummaryDescription(string, DataSourceSummaryOperand)", + "Alias": "Alias", + "Calculator": "Calculator", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Operand": "Operand", + "PropertyName": "PropertyName", + "ShouldDisplay": "ShouldDisplay" + } + } + ], + "SummaryDescriptionCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "SummaryDescriptionCollection()": "SummaryDescriptionCollection()", + "SummaryDescriptionCollection": "SummaryDescriptionCollection()", + "OnSelfChanged(NotifyCollectionChangedEventArgs)": "OnSelfChanged(NotifyCollectionChangedEventArgs)", + "OnSelfChanged": "OnSelfChanged(NotifyCollectionChangedEventArgs)" + } + } + ], + "SummaryRow": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SummaryRow", + "k": "class", + "s": "classes", + "m": { + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedBackgroundProperty": "ActualSelectedBackgroundProperty", + "ActualSummaryLabelTextColor": "ActualSummaryLabelTextColor", + "ActualSummaryLabelTextColorProperty": "ActualSummaryLabelTextColorProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundProperty": "SelectedBackgroundProperty", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontFamilyProperty": "SummaryLabelFontFamilyProperty", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontSizeProperty": "SummaryLabelFontSizeProperty", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontStyleProperty": "SummaryLabelFontStyleProperty", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryLabelFontWeightProperty": "SummaryLabelFontWeightProperty", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextColorProperty": "SummaryLabelTextColorProperty" + } + } + ], + "SummaryRowDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryRowDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryRowDescription()": "SummaryRowDescription()", + "SummaryRowDescription": "SummaryRowDescription()", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSummaryLabelTextColor": "ActualSummaryLabelTextColor", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "SelectedBackground": "SelectedBackground", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "Type": "Type" + } + } + ], + "SummaryRowDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryRowDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryRowDescriptionMetadata()": "SummaryRowDescriptionMetadata()", + "SummaryRowDescriptionMetadata": "SummaryRowDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryRowRoot": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SummaryRowRoot", + "k": "class", + "s": "classes", + "m": { + "SummaryRowRoot()": "SummaryRowRoot()", + "SummaryRowRoot": "SummaryRowRoot()" + } + } + ], + "SummaryRowRootDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryRowRootDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryRowRootDescription()": "SummaryRowRootDescription()", + "SummaryRowRootDescription": "SummaryRowRootDescription()", + "Type": "Type" + } + } + ], + "SummaryRowRootDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryRowRootDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryRowRootDescriptionMetadata()": "SummaryRowRootDescriptionMetadata()", + "SummaryRowRootDescriptionMetadata": "SummaryRowRootDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryRowRootDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryRowRootDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SummaryRowRootDescriptionModule()": "SummaryRowRootDescriptionModule()", + "SummaryRowRootDescriptionModule": "SummaryRowRootDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryRowSection": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/SummaryRowSection", + "k": "class", + "s": "classes", + "m": { + "SummaryRowSection()": "SummaryRowSection()", + "SummaryRowSection": "SummaryRowSection()" + } + } + ], + "SummaryRowSectionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryRowSectionDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryRowSectionDescription()": "SummaryRowSectionDescription()", + "SummaryRowSectionDescription": "SummaryRowSectionDescription()", + "Type": "Type" + } + } + ], + "SummaryRowSectionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryRowSectionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryRowSectionDescriptionMetadata()": "SummaryRowSectionDescriptionMetadata()", + "SummaryRowSectionDescriptionMetadata": "SummaryRowSectionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryRowSectionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SummaryRowSectionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SummaryRowSectionDescriptionModule()": "SummaryRowSectionDescriptionModule()", + "SummaryRowSectionDescriptionModule": "SummaryRowSectionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryScope": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/SummaryScope", + "k": "enum", + "s": "enums" + } + ], + "SumSummaryCalculator": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SumSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "SumSummaryCalculator()": "SumSummaryCalculator()", + "SumSummaryCalculator": "SumSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "SupportingCalculation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/SupportingCalculation", + "k": "class", + "s": "classes", + "m": { + "SupportingCalculation(TCalculationStrategy)": "SupportingCalculation(TCalculationStrategy)", + "SupportingCalculation": "SupportingCalculation(TCalculationStrategy)", + "SupportingCalculation(TCalculationStrategy, IList)": "SupportingCalculation(TCalculationStrategy, IList)", + "BasedOn": "BasedOn", + "Strategy": "Strategy" + } + } + ], + "SvgIconRegistry": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SvgIconRegistry", + "k": "class", + "s": "classes", + "m": { + "SvgIconRegistry()": "SvgIconRegistry()", + "SvgIconRegistry": "SvgIconRegistry()", + "AddDataURLString(string, string, string)": "AddDataURLString(string, string, string)", + "AddDataURLString": "AddDataURLString(string, string, string)", + "AddIconSource(string, string, object)": "AddIconSource(string, string, object)", + "AddIconSource": "AddIconSource(string, string, object)", + "AddSvgPathString(string, string, string)": "AddSvgPathString(string, string, string)", + "AddSvgPathString": "AddSvgPathString(string, string, string)", + "AddSvgPathsString(string, string, string[])": "AddSvgPathsString(string, string, string[])", + "AddSvgPathsString": "AddSvgPathsString(string, string, string[])", + "GetDataURLString(string, string)": "GetDataURLString(string, string)", + "GetDataURLString": "GetDataURLString(string, string)", + "GetIconSource(string, string)": "GetIconSource(string, string)", + "GetIconSource": "GetIconSource(string, string)", + "GetSvgPathString(string, string)": "GetSvgPathString(string, string)", + "GetSvgPathString": "GetSvgPathString(string, string)", + "GetSvgPathsString(string, string)": "GetSvgPathsString(string, string)", + "GetSvgPathsString": "GetSvgPathsString(string, string)", + "Instance": "Instance" + } + } + ], + "SweepDirection": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/enums/SweepDirection", + "k": "enum", + "s": "enums" + } + ], + "SwiftLiteralUnwrapAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/SwiftLiteralUnwrapAttribute", + "k": "class", + "s": "classes", + "m": { + "SwiftLiteralUnwrapAttribute()": "SwiftLiteralUnwrapAttribute()", + "SwiftLiteralUnwrapAttribute": "SwiftLiteralUnwrapAttribute()" + } + } + ], + "SyncableObservableCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SyncableObservableCollection", + "k": "class", + "s": "classes", + "m": { + "SyncableObservableCollection()": "SyncableObservableCollection()", + "SyncableObservableCollection": "SyncableObservableCollection()" + } + } + ], + "SyncableObservableCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/SyncableObservableCollection", + "k": "class", + "s": "classes", + "m": { + "SyncableObservableCollection()": "SyncableObservableCollection()", + "SyncableObservableCollection": "SyncableObservableCollection()", + "AddOneWayTarget(SyncableObservableCollection)": "AddOneWayTarget(SyncableObservableCollection)", + "AddOneWayTarget": "AddOneWayTarget(SyncableObservableCollection)", + "ClearItems()": "ClearItems()", + "ClearItems": "ClearItems()", + "Compare": "Compare", + "CreateFrom": "CreateFrom", + "CreateTo": "CreateTo", + "OnSelfChanged(NotifyCollectionChangedEventArgs)": "OnSelfChanged(NotifyCollectionChangedEventArgs)", + "OnSelfChanged": "OnSelfChanged(NotifyCollectionChangedEventArgs)", + "RemoveOneWayTarget(SyncableObservableCollection)": "RemoveOneWayTarget(SyncableObservableCollection)", + "RemoveOneWayTarget": "RemoveOneWayTarget(SyncableObservableCollection)", + "ShouldDetachOnTargetChange": "ShouldDetachOnTargetChange", + "SyncTarget": "SyncTarget" + } + } + ], + "TemplateCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateCellInfo", + "k": "class", + "s": "classes", + "m": { + "TemplateCellInfo()": "TemplateCellInfo()", + "TemplateCellInfo": "TemplateCellInfo()", + "Value": "Value", + "ValuePropertyName": "ValuePropertyName" + } + } + ], + "TemplateCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateCellInfoDescription()": "TemplateCellInfoDescription()", + "TemplateCellInfoDescription": "TemplateCellInfoDescription()", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "TemplateCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateCellInfoDescriptionMetadata()": "TemplateCellInfoDescriptionMetadata()", + "TemplateCellInfoDescriptionMetadata": "TemplateCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TemplateCellModelExport()": "TemplateCellModelExport()", + "TemplateCellModelExport": "TemplateCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type", + "Value": "Value" + } + } + ], + "TemplateCellUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateCellUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TemplateCellUpdatingEventArgs()": "TemplateCellUpdatingEventArgs()", + "TemplateCellUpdatingEventArgs": "TemplateCellUpdatingEventArgs()", + "CellInfo": "CellInfo", + "Content": "Content", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TemplateCellUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateCellUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateCellUpdatingEventArgsDescription()": "TemplateCellUpdatingEventArgsDescription()", + "TemplateCellUpdatingEventArgsDescription": "TemplateCellUpdatingEventArgsDescription()", + "Type": "Type" + } + } + ], + "TemplateCellUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateCellUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateCellUpdatingEventArgsDescriptionMetadata()": "TemplateCellUpdatingEventArgsDescriptionMetadata()", + "TemplateCellUpdatingEventArgsDescriptionMetadata": "TemplateCellUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateColumn": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateColumn", + "k": "class", + "s": "classes", + "m": { + "TemplateColumn()": "TemplateColumn()", + "TemplateColumn": "TemplateColumn()", + "OnCellUpdating(TemplateCellUpdatingEventArgs)": "OnCellUpdating(TemplateCellUpdatingEventArgs)", + "OnCellUpdating": "OnCellUpdating(TemplateCellUpdatingEventArgs)" + } + } + ], + "TemplateColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateColumnDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateColumnDescription()": "TemplateColumnDescription()", + "TemplateColumnDescription": "TemplateColumnDescription()", + "CellUpdatingRef": "CellUpdatingRef", + "TemplateRef": "TemplateRef", + "Type": "Type" + } + } + ], + "TemplateColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateColumnDescriptionMetadata()": "TemplateColumnDescriptionMetadata()", + "TemplateColumnDescriptionMetadata": "TemplateColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateColumnDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateColumnDescriptionModule()": "TemplateColumnDescriptionModule()", + "TemplateColumnDescriptionModule": "TemplateColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateContainerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateContainerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateContainerDescriptionModule()": "TemplateContainerDescriptionModule()", + "TemplateContainerDescriptionModule": "TemplateContainerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateContentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateContentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateContentDescriptionModule()": "TemplateContentDescriptionModule()", + "TemplateContentDescriptionModule": "TemplateContentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateContentExtendedDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateContentExtendedDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateContentExtendedDescriptionModule()": "TemplateContentExtendedDescriptionModule()", + "TemplateContentExtendedDescriptionModule": "TemplateContentExtendedDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateHeader": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateHeader", + "k": "class", + "s": "classes", + "m": { + "TemplateHeader()": "TemplateHeader()", + "TemplateHeader": "TemplateHeader()", + "OnCellUpdating(TemplateHeaderCellUpdatingEventArgs)": "OnCellUpdating(TemplateHeaderCellUpdatingEventArgs)", + "OnCellUpdating": "OnCellUpdating(TemplateHeaderCellUpdatingEventArgs)" + } + } + ], + "TemplateHeaderCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateHeaderCellInfo", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellInfo()": "TemplateHeaderCellInfo()", + "TemplateHeaderCellInfo": "TemplateHeaderCellInfo()", + "IsFilterUIVisible": "IsFilterUIVisible", + "IsFilterUIVisiblePropertyName": "IsFilterUIVisiblePropertyName" + } + } + ], + "TemplateHeaderCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateHeaderCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellInfoDescription()": "TemplateHeaderCellInfoDescription()", + "TemplateHeaderCellInfoDescription": "TemplateHeaderCellInfoDescription()", + "IsFilterUIVisible": "IsFilterUIVisible", + "Type": "Type" + } + } + ], + "TemplateHeaderCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateHeaderCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellInfoDescriptionMetadata()": "TemplateHeaderCellInfoDescriptionMetadata()", + "TemplateHeaderCellInfoDescriptionMetadata": "TemplateHeaderCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateHeaderCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateHeaderCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellModelExport()": "TemplateHeaderCellModelExport()", + "TemplateHeaderCellModelExport": "TemplateHeaderCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type", + "Value": "Value" + } + } + ], + "TemplateHeaderCellUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateHeaderCellUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellUpdatingEventArgs()": "TemplateHeaderCellUpdatingEventArgs()", + "TemplateHeaderCellUpdatingEventArgs": "TemplateHeaderCellUpdatingEventArgs()", + "CellInfo": "CellInfo", + "Content": "Content", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TemplateHeaderCellUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateHeaderCellUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellUpdatingEventArgsDescription()": "TemplateHeaderCellUpdatingEventArgsDescription()", + "TemplateHeaderCellUpdatingEventArgsDescription": "TemplateHeaderCellUpdatingEventArgsDescription()", + "Type": "Type" + } + } + ], + "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateHeaderCellUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata()": "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata()", + "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata": "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderDescription()": "TemplateHeaderDescription()", + "TemplateHeaderDescription": "TemplateHeaderDescription()", + "CellUpdatingRef": "CellUpdatingRef", + "Type": "Type" + } + } + ], + "TemplateHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderDescriptionMetadata()": "TemplateHeaderDescriptionMetadata()", + "TemplateHeaderDescriptionMetadata": "TemplateHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderDescriptionModule()": "TemplateHeaderDescriptionModule()", + "TemplateHeaderDescriptionModule": "TemplateHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateSectionHeader": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateSectionHeader", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeader()": "TemplateSectionHeader()", + "TemplateSectionHeader": "TemplateSectionHeader()", + "OnCellUpdating(TemplateSectionHeaderCellUpdatingEventArgs)": "OnCellUpdating(TemplateSectionHeaderCellUpdatingEventArgs)", + "OnCellUpdating": "OnCellUpdating(TemplateSectionHeaderCellUpdatingEventArgs)" + } + } + ], + "TemplateSectionHeaderCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateSectionHeaderCellInfo", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellInfo()": "TemplateSectionHeaderCellInfo()", + "TemplateSectionHeaderCellInfo": "TemplateSectionHeaderCellInfo()" + } + } + ], + "TemplateSectionHeaderCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateSectionHeaderCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellInfoDescription()": "TemplateSectionHeaderCellInfoDescription()", + "TemplateSectionHeaderCellInfoDescription": "TemplateSectionHeaderCellInfoDescription()", + "Type": "Type" + } + } + ], + "TemplateSectionHeaderCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateSectionHeaderCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellInfoDescriptionMetadata()": "TemplateSectionHeaderCellInfoDescriptionMetadata()", + "TemplateSectionHeaderCellInfoDescriptionMetadata": "TemplateSectionHeaderCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateSectionHeaderCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateSectionHeaderCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellModelExport()": "TemplateSectionHeaderCellModelExport()", + "TemplateSectionHeaderCellModelExport": "TemplateSectionHeaderCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "TemplateSectionHeaderCellUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TemplateSectionHeaderCellUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellUpdatingEventArgs()": "TemplateSectionHeaderCellUpdatingEventArgs()", + "TemplateSectionHeaderCellUpdatingEventArgs": "TemplateSectionHeaderCellUpdatingEventArgs()", + "CellInfo": "CellInfo", + "Content": "Content", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TemplateSectionHeaderCellUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateSectionHeaderCellUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellUpdatingEventArgsDescription()": "TemplateSectionHeaderCellUpdatingEventArgsDescription()", + "TemplateSectionHeaderCellUpdatingEventArgsDescription": "TemplateSectionHeaderCellUpdatingEventArgsDescription()", + "Type": "Type" + } + } + ], + "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata()": "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata()", + "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata": "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateSectionHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateSectionHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderDescription()": "TemplateSectionHeaderDescription()", + "TemplateSectionHeaderDescription": "TemplateSectionHeaderDescription()", + "CellUpdatingRef": "CellUpdatingRef", + "Type": "Type" + } + } + ], + "TemplateSectionHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateSectionHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderDescriptionMetadata()": "TemplateSectionHeaderDescriptionMetadata()", + "TemplateSectionHeaderDescriptionMetadata": "TemplateSectionHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateSectionHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TemplateSectionHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderDescriptionModule()": "TemplateSectionHeaderDescriptionModule()", + "TemplateSectionHeaderDescriptionModule": "TemplateSectionHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TestRandomness": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TestRandomness", + "k": "class", + "s": "classes", + "m": { + "Instance": "Instance", + "TestRandomnessSource": "TestRandomnessSource" + } + } + ], + "TextBlockVisualModelExport": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/TextBlockVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "TextBlockVisualModelExport()": "TextBlockVisualModelExport()", + "TextBlockVisualModelExport": "TextBlockVisualModelExport()", + "ActualTextColor": "ActualTextColor", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Width": "Width" + } + } + ], + "TextCellDecoration": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/TextCellDecoration", + "k": "enum", + "s": "enums" + } + ], + "TextCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TextCellInfo", + "k": "class", + "s": "classes", + "m": { + "TextCellInfo()": "TextCellInfo()", + "TextCellInfo": "TextCellInfo()", + "FormatString": "FormatString", + "FormatStringPropertyName": "FormatStringPropertyName", + "TextValue": "TextValue", + "TextValuePropertyName": "TextValuePropertyName" + } + } + ], + "TextCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TextCellInfoDescription()": "TextCellInfoDescription()", + "TextCellInfoDescription": "TextCellInfoDescription()", + "TextValue": "TextValue", + "Type": "Type" + } + } + ], + "TextCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextCellInfoDescriptionMetadata()": "TextCellInfoDescriptionMetadata()", + "TextCellInfoDescriptionMetadata": "TextCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextCellLineBreakMode": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/TextCellLineBreakMode", + "k": "enum", + "s": "enums" + } + ], + "TextCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TextCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TextCellModelExport()": "TextCellModelExport()", + "TextCellModelExport": "TextCellModelExport()", + "FormatString": "FormatString", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "TextValue": "TextValue", + "Type": "Type" + } + } + ], + "TextColumn": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TextColumn", + "k": "class", + "s": "classes", + "m": { + "TextColumn()": "TextColumn()", + "TextColumn": "TextColumn()", + "EditorItemsSource": "EditorItemsSource", + "EditorItemsSourceProperty": "EditorItemsSourceProperty", + "EditorTextField": "EditorTextField", + "EditorTextFieldProperty": "EditorTextFieldProperty", + "EditorType": "EditorType", + "EditorTypeProperty": "EditorTypeProperty", + "EditorValueField": "EditorValueField", + "EditorValueFieldProperty": "EditorValueFieldProperty", + "FormatString": "FormatString", + "FormatStringProperty": "FormatStringProperty" + } + } + ], + "TextColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextColumnDescription", + "k": "class", + "s": "classes", + "m": { + "TextColumnDescription()": "TextColumnDescription()", + "TextColumnDescription": "TextColumnDescription()", + "DataSource": "DataSource", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "GenericDataSource": "GenericDataSource", + "Type": "Type" + } + } + ], + "TextColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextColumnDescriptionMetadata()": "TextColumnDescriptionMetadata()", + "TextColumnDescriptionMetadata": "TextColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextColumnDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TextColumnDescriptionModule()": "TextColumnDescriptionModule()", + "TextColumnDescriptionModule": "TextColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextFontMetrics": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/TextFontMetrics", + "k": "class", + "s": "classes", + "m": { + "TextFontMetrics()": "TextFontMetrics()", + "TextFontMetrics": "TextFontMetrics()", + "ActualAscent": "ActualAscent", + "Height": "Height", + "Width": "Width" + } + } + ], + "TextHeader": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TextHeader", + "k": "class", + "s": "classes", + "m": { + "TextHeader()": "TextHeader()", + "TextHeader": "TextHeader()" + } + } + ], + "TextHeaderCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TextHeaderCellInfo", + "k": "class", + "s": "classes", + "m": { + "TextHeaderCellInfo()": "TextHeaderCellInfo()", + "TextHeaderCellInfo": "TextHeaderCellInfo()", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconAlignmentPropertyName": "ColumnOptionsIconAlignmentPropertyName", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconBehaviorPropertyName": "ColumnOptionsIconBehaviorPropertyName", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsIconColorPropertyName": "ColumnOptionsIconColorPropertyName", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTheme": "ColumnOptionsTheme", + "ColumnOptionsThemePropertyName": "ColumnOptionsThemePropertyName", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "GroupDirection": "GroupDirection", + "GroupDirectionPropertyName": "GroupDirectionPropertyName", + "GroupPosition": "GroupPosition", + "GroupPositionPropertyName": "GroupPositionPropertyName", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsEnabledPropertyName": "IsColumnOptionsEnabledPropertyName", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortIndicatorStylePropertyName": "SortIndicatorStylePropertyName", + "SortOrderText": "SortOrderText", + "SortOrderTextPropertyName": "SortOrderTextPropertyName", + "SortPosition": "SortPosition", + "SortPositionPropertyName": "SortPositionPropertyName" + } + } + ], + "TextHeaderCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextHeaderCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TextHeaderCellInfoDescription()": "TextHeaderCellInfoDescription()", + "TextHeaderCellInfoDescription": "TextHeaderCellInfoDescription()", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTheme": "ColumnOptionsTheme", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "GroupDirection": "GroupDirection", + "GroupPosition": "GroupPosition", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortOrderText": "SortOrderText", + "SortPosition": "SortPosition", + "Type": "Type" + } + } + ], + "TextHeaderCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextHeaderCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextHeaderCellInfoDescriptionMetadata()": "TextHeaderCellInfoDescriptionMetadata()", + "TextHeaderCellInfoDescriptionMetadata": "TextHeaderCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextHeaderCellModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TextHeaderCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TextHeaderCellModelExport()": "TextHeaderCellModelExport()", + "TextHeaderCellModelExport": "TextHeaderCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "TextHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "TextHeaderDescription()": "TextHeaderDescription()", + "TextHeaderDescription": "TextHeaderDescription()", + "Type": "Type" + } + } + ], + "TextHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextHeaderDescriptionMetadata()": "TextHeaderDescriptionMetadata()", + "TextHeaderDescriptionMetadata": "TextHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TextHeaderDescriptionModule()": "TextHeaderDescriptionModule()", + "TextHeaderDescriptionModule": "TextHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextIconSetBuiltInTypes": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/enums/TextIconSetBuiltInTypes", + "k": "enum", + "s": "enums" + } + ], + "TextIconSetConditionalStyle": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/TextIconSetConditionalStyle", + "k": "class", + "s": "classes", + "m": { + "TextIconSetConditionalStyle()": "TextIconSetConditionalStyle()", + "TextIconSetConditionalStyle": "TextIconSetConditionalStyle()", + "IconType": "IconType" + } + } + ], + "TextIconSetConditionalStyleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextIconSetConditionalStyleDescription", + "k": "class", + "s": "classes", + "m": { + "TextIconSetConditionalStyleDescription()": "TextIconSetConditionalStyleDescription()", + "TextIconSetConditionalStyleDescription": "TextIconSetConditionalStyleDescription()", + "IconType": "IconType", + "Type": "Type" + } + } + ], + "TextIconSetConditionalStyleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextIconSetConditionalStyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextIconSetConditionalStyleDescriptionMetadata()": "TextIconSetConditionalStyleDescriptionMetadata()", + "TextIconSetConditionalStyleDescriptionMetadata": "TextIconSetConditionalStyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextIconSetConditionalStyleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TextIconSetConditionalStyleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TextIconSetConditionalStyleDescriptionModule()": "TextIconSetConditionalStyleDescriptionModule()", + "TextIconSetConditionalStyleDescriptionModule": "TextIconSetConditionalStyleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextMetricsUtilities": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/TextMetricsUtilities", + "k": "class", + "s": "classes", + "m": { + "ExecuteWithDispatcher(Action)": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher(Action, object)": "ExecuteWithDispatcher(Action, object)", + "FloorOfLog10(double)": "FloorOfLog10(double)", + "FloorOfLog10": "FloorOfLog10(double)", + "MeasureText(string, string, float, bool, bool, bool, ref Rect)": "MeasureText(string, string, float, bool, bool, bool, ref Rect)", + "MeasureText": "MeasureText(string, string, float, bool, bool, bool, ref Rect)", + "MidpointRoundingAwayFromZero(double)": "MidpointRoundingAwayFromZero(double)", + "MidpointRoundingAwayFromZero": "MidpointRoundingAwayFromZero(double)", + "MidpointRoundingAwayFromZero(double, int)": "MidpointRoundingAwayFromZero(double, int)", + "MidpointRoundingAwayFromZero(float)": "MidpointRoundingAwayFromZero(float)", + "RoundToExcelDisplayValue(double)": "RoundToExcelDisplayValue(double)", + "RoundToExcelDisplayValue": "RoundToExcelDisplayValue(double)" + } + } + ], + "ThisMonthExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisMonthExpression", + "k": "class", + "s": "classes", + "m": { + "ThisMonthExpression(FilterExpression)": "ThisMonthExpression(FilterExpression)", + "ThisMonthExpression": "ThisMonthExpression(FilterExpression)", + "ThisMonthExpression(string)": "ThisMonthExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "ThisMonthExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisMonthExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "ThisMonthExpressionDescription()": "ThisMonthExpressionDescription()", + "ThisMonthExpressionDescription": "ThisMonthExpressionDescription()", + "Type": "Type" + } + } + ], + "ThisMonthExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisMonthExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ThisMonthExpressionDescriptionMetadata()": "ThisMonthExpressionDescriptionMetadata()", + "ThisMonthExpressionDescriptionMetadata": "ThisMonthExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ThisQuarterExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisQuarterExpression", + "k": "class", + "s": "classes", + "m": { + "ThisQuarterExpression(FilterExpression)": "ThisQuarterExpression(FilterExpression)", + "ThisQuarterExpression": "ThisQuarterExpression(FilterExpression)", + "ThisQuarterExpression(string)": "ThisQuarterExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "ThisQuarterExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisQuarterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "ThisQuarterExpressionDescription()": "ThisQuarterExpressionDescription()", + "ThisQuarterExpressionDescription": "ThisQuarterExpressionDescription()", + "Type": "Type" + } + } + ], + "ThisQuarterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisQuarterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ThisQuarterExpressionDescriptionMetadata()": "ThisQuarterExpressionDescriptionMetadata()", + "ThisQuarterExpressionDescriptionMetadata": "ThisQuarterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ThisWeekExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisWeekExpression", + "k": "class", + "s": "classes", + "m": { + "ThisWeekExpression(FilterExpression)": "ThisWeekExpression(FilterExpression)", + "ThisWeekExpression": "ThisWeekExpression(FilterExpression)", + "ThisWeekExpression(string)": "ThisWeekExpression(string)", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "ThisWeekExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisWeekExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "ThisWeekExpressionDescription()": "ThisWeekExpressionDescription()", + "ThisWeekExpressionDescription": "ThisWeekExpressionDescription()", + "Type": "Type" + } + } + ], + "ThisWeekExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisWeekExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ThisWeekExpressionDescriptionMetadata()": "ThisWeekExpressionDescriptionMetadata()", + "ThisWeekExpressionDescriptionMetadata": "ThisWeekExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ThisYearExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisYearExpression", + "k": "class", + "s": "classes", + "m": { + "ThisYearExpression(FilterExpression)": "ThisYearExpression(FilterExpression)", + "ThisYearExpression": "ThisYearExpression(FilterExpression)", + "ThisYearExpression(string)": "ThisYearExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "ThisYearExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisYearExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "ThisYearExpressionDescription()": "ThisYearExpressionDescription()", + "ThisYearExpressionDescription": "ThisYearExpressionDescription()", + "Type": "Type" + } + } + ], + "ThisYearExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ThisYearExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ThisYearExpressionDescriptionMetadata()": "ThisYearExpressionDescriptionMetadata()", + "ThisYearExpressionDescriptionMetadata": "ThisYearExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileGeneratorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileGeneratorDescription", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorDescription()": "TileGeneratorDescription()", + "TileGeneratorDescription": "TileGeneratorDescription()", + "Type": "Type" + } + } + ], + "TileGeneratorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileGeneratorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorDescriptionMetadata()": "TileGeneratorDescriptionMetadata()", + "TileGeneratorDescriptionMetadata": "TileGeneratorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileGeneratorMapImagery": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/TileGeneratorMapImagery", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorMapImagery()": "TileGeneratorMapImagery()", + "TileGeneratorMapImagery": "TileGeneratorMapImagery()", + "TileGenerator": "TileGenerator" + } + } + ], + "TileGeneratorMapImageryDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileGeneratorMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorMapImageryDescription()": "TileGeneratorMapImageryDescription()", + "TileGeneratorMapImageryDescription": "TileGeneratorMapImageryDescription()", + "TileGenerator": "TileGenerator", + "Type": "Type" + } + } + ], + "TileGeneratorMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileGeneratorMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorMapImageryDescriptionMetadata()": "TileGeneratorMapImageryDescriptionMetadata()", + "TileGeneratorMapImageryDescriptionMetadata": "TileGeneratorMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileGeneratorMapImageryDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileGeneratorMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorMapImageryDescriptionModule()": "TileGeneratorMapImageryDescriptionModule()", + "TileGeneratorMapImageryDescriptionModule": "TileGeneratorMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileGeneratorTileSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileGeneratorTileSource", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorTileSource()": "TileGeneratorTileSource()", + "TileGeneratorTileSource": "TileGeneratorTileSource()" + } + } + ], + "TileImageCreatedEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileImageCreatedEventArgs", + "k": "class", + "s": "classes", + "m": { + "TileImageCreatedEventArgs()": "TileImageCreatedEventArgs()", + "TileImageCreatedEventArgs": "TileImageCreatedEventArgs()", + "ImageData": "ImageData", + "Url": "Url", + "X": "X", + "Y": "Y", + "Z": "Z" + } + } + ], + "TileImageZoomChangingEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileImageZoomChangingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TileImageZoomChangingEventArgs()": "TileImageZoomChangingEventArgs()", + "TileImageZoomChangingEventArgs": "TileImageZoomChangingEventArgs()", + "X": "X", + "Y": "Y", + "Z": "Z" + } + } + ], + "TileInfoResponseModel": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/TileInfoResponseModel", + "k": "class", + "s": "classes", + "m": { + "TileInfoResponseModel()": "TileInfoResponseModel()", + "TileInfoResponseModel": "TileInfoResponseModel()", + "LevelOfDetails": "LevelOfDetails" + } + } + ], + "TileSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "TileSeriesDescription()": "TileSeriesDescription()", + "TileSeriesDescription": "TileSeriesDescription()", + "TileImagery": "TileImagery", + "Type": "Type" + } + } + ], + "TileSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TileSeriesDescriptionMetadata()": "TileSeriesDescriptionMetadata()", + "TileSeriesDescriptionMetadata": "TileSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TileSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TileSeriesDescriptionModule()": "TileSeriesDescriptionModule()", + "TileSeriesDescriptionModule": "TileSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TimeAxisBase", + "k": "class", + "s": "classes", + "m": { + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "DateTimeMemberPath": "DateTimeMemberPath", + "DateTimeMemberPathProperty": "DateTimeMemberPathProperty", + "GetIndexClosestToUnscaledValue(double)": "GetIndexClosestToUnscaledValue(double)", + "GetIndexClosestToUnscaledValue": "GetIndexClosestToUnscaledValue(double)", + "IsDataPreSorted": "IsDataPreSorted", + "IsDataPreSortedProperty": "IsDataPreSortedProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "NotifyDataChanged()": "NotifyDataChanged()", + "NotifyDataChanged": "NotifyDataChanged()" + } + } + ], + "TimeAxisBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisBaseDescription", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBaseDescription()": "TimeAxisBaseDescription()", + "TimeAxisBaseDescription": "TimeAxisBaseDescription()", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "DateTimeMemberPath": "DateTimeMemberPath", + "IsDataPreSorted": "IsDataPreSorted", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Type": "Type" + } + } + ], + "TimeAxisBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBaseDescriptionMetadata()": "TimeAxisBaseDescriptionMetadata()", + "TimeAxisBaseDescriptionMetadata": "TimeAxisBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisBreak": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TimeAxisBreak", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreak()": "TimeAxisBreak()", + "TimeAxisBreak": "TimeAxisBreak()", + "End": "End", + "Interval": "Interval", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Start": "Start", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisBreakCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TimeAxisBreakCollection", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreakCollection()": "TimeAxisBreakCollection()", + "TimeAxisBreakCollection": "TimeAxisBreakCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisBreakDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisBreakDescription", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreakDescription()": "TimeAxisBreakDescription()", + "TimeAxisBreakDescription": "TimeAxisBreakDescription()", + "End": "End", + "Interval": "Interval", + "Start": "Start", + "Type": "Type" + } + } + ], + "TimeAxisBreakDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisBreakDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreakDescriptionMetadata()": "TimeAxisBreakDescriptionMetadata()", + "TimeAxisBreakDescriptionMetadata": "TimeAxisBreakDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisBreakDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisBreakDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreakDescriptionModule()": "TimeAxisBreakDescriptionModule()", + "TimeAxisBreakDescriptionModule": "TimeAxisBreakDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisDisplayType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/TimeAxisDisplayType", + "k": "enum", + "s": "enums" + } + ], + "TimeAxisInterval": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TimeAxisInterval", + "k": "class", + "s": "classes", + "m": { + "TimeAxisInterval()": "TimeAxisInterval()", + "TimeAxisInterval": "TimeAxisInterval()", + "Interval": "Interval", + "IntervalType": "IntervalType", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Range": "Range", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisIntervalCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TimeAxisIntervalCollection", + "k": "class", + "s": "classes", + "m": { + "TimeAxisIntervalCollection()": "TimeAxisIntervalCollection()", + "TimeAxisIntervalCollection": "TimeAxisIntervalCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisIntervalDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisIntervalDescription", + "k": "class", + "s": "classes", + "m": { + "TimeAxisIntervalDescription()": "TimeAxisIntervalDescription()", + "TimeAxisIntervalDescription": "TimeAxisIntervalDescription()", + "Interval": "Interval", + "IntervalType": "IntervalType", + "Range": "Range", + "Type": "Type" + } + } + ], + "TimeAxisIntervalDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisIntervalDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeAxisIntervalDescriptionMetadata()": "TimeAxisIntervalDescriptionMetadata()", + "TimeAxisIntervalDescriptionMetadata": "TimeAxisIntervalDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisIntervalDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisIntervalDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TimeAxisIntervalDescriptionModule()": "TimeAxisIntervalDescriptionModule()", + "TimeAxisIntervalDescriptionModule": "TimeAxisIntervalDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisIntervalType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/TimeAxisIntervalType", + "k": "enum", + "s": "enums" + } + ], + "TimeAxisLabelFormat": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TimeAxisLabelFormat", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormat()": "TimeAxisLabelFormat()", + "TimeAxisLabelFormat": "TimeAxisLabelFormat()", + "Format": "Format", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "OnLabelFormatOverride(LabelFormatOverrideEventArgs)": "OnLabelFormatOverride(LabelFormatOverrideEventArgs)", + "OnLabelFormatOverride": "OnLabelFormatOverride(LabelFormatOverrideEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Range": "Range", + "RepeatedDayFormat": "RepeatedDayFormat", + "RepeatedDayLabelFormat": "RepeatedDayLabelFormat", + "RepeatedDayLabelFormatSpecifiers": "RepeatedDayLabelFormatSpecifiers", + "RepeatedMonthFormat": "RepeatedMonthFormat", + "RepeatedMonthLabelFormat": "RepeatedMonthLabelFormat", + "RepeatedMonthLabelFormatSpecifiers": "RepeatedMonthLabelFormatSpecifiers", + "RepeatedYearFormat": "RepeatedYearFormat", + "RepeatedYearLabelFormat": "RepeatedYearLabelFormat", + "RepeatedYearLabelFormatSpecifiers": "RepeatedYearLabelFormatSpecifiers", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisLabelFormatCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TimeAxisLabelFormatCollection", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormatCollection()": "TimeAxisLabelFormatCollection()", + "TimeAxisLabelFormatCollection": "TimeAxisLabelFormatCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisLabelFormatDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisLabelFormatDescription", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormatDescription()": "TimeAxisLabelFormatDescription()", + "TimeAxisLabelFormatDescription": "TimeAxisLabelFormatDescription()", + "Format": "Format", + "LabelFormat": "LabelFormat", + "LabelFormatOverrideRef": "LabelFormatOverrideRef", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "Range": "Range", + "RepeatedDayFormat": "RepeatedDayFormat", + "RepeatedDayLabelFormat": "RepeatedDayLabelFormat", + "RepeatedDayLabelFormatSpecifiers": "RepeatedDayLabelFormatSpecifiers", + "RepeatedMonthFormat": "RepeatedMonthFormat", + "RepeatedMonthLabelFormat": "RepeatedMonthLabelFormat", + "RepeatedMonthLabelFormatSpecifiers": "RepeatedMonthLabelFormatSpecifiers", + "RepeatedYearFormat": "RepeatedYearFormat", + "RepeatedYearLabelFormat": "RepeatedYearLabelFormat", + "RepeatedYearLabelFormatSpecifiers": "RepeatedYearLabelFormatSpecifiers", + "Type": "Type" + } + } + ], + "TimeAxisLabelFormatDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisLabelFormatDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormatDescriptionMetadata()": "TimeAxisLabelFormatDescriptionMetadata()", + "TimeAxisLabelFormatDescriptionMetadata": "TimeAxisLabelFormatDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisLabelFormatDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeAxisLabelFormatDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormatDescriptionModule()": "TimeAxisLabelFormatDescriptionModule()", + "TimeAxisLabelFormatDescriptionModule": "TimeAxisLabelFormatDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisLabellingMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/TimeAxisLabellingMode", + "k": "enum", + "s": "enums" + } + ], + "TimeXAxis": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TimeXAxis", + "k": "class", + "s": "classes", + "m": { + "TimeXAxis()": "TimeXAxis()", + "TimeXAxis": "TimeXAxis()", + "Breaks": "Breaks", + "Intervals": "Intervals", + "LabelFormats": "LabelFormats", + "LabellingMode": "LabellingMode", + "LabellingModeProperty": "LabellingModeProperty", + "OnVisibleRangeChanged(EventArgs)": "OnVisibleRangeChanged(EventArgs)", + "OnVisibleRangeChanged": "OnVisibleRangeChanged(EventArgs)" + } + } + ], + "TimeXAxisDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "TimeXAxisDescription()": "TimeXAxisDescription()", + "TimeXAxisDescription": "TimeXAxisDescription()", + "Breaks": "Breaks", + "Intervals": "Intervals", + "LabelFormats": "LabelFormats", + "LabellingMode": "LabellingMode", + "Type": "Type" + } + } + ], + "TimeXAxisDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeXAxisDescriptionMetadata()": "TimeXAxisDescriptionMetadata()", + "TimeXAxisDescriptionMetadata": "TimeXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeXAxisDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TimeXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TimeXAxisDescriptionModule()": "TimeXAxisDescriptionModule()", + "TimeXAxisDescriptionModule": "TimeXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TitlesPosition": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/enums/TitlesPosition", + "k": "enum", + "s": "enums" + } + ], + "TodayExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TodayExpression", + "k": "class", + "s": "classes", + "m": { + "TodayExpression(FilterExpression)": "TodayExpression(FilterExpression)", + "TodayExpression": "TodayExpression(FilterExpression)", + "TodayExpression(string)": "TodayExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "TodayExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TodayExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "TodayExpressionDescription()": "TodayExpressionDescription()", + "TodayExpressionDescription": "TodayExpressionDescription()", + "Type": "Type" + } + } + ], + "TodayExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TodayExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TodayExpressionDescriptionMetadata()": "TodayExpressionDescriptionMetadata()", + "TodayExpressionDescriptionMetadata": "TodayExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TokenResponseModel": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/TokenResponseModel", + "k": "class", + "s": "classes", + "m": { + "TokenResponseModel()": "TokenResponseModel()", + "TokenResponseModel": "TokenResponseModel()", + "Expires": "Expires", + "Ssl": "Ssl", + "Token": "Token" + } + } + ], + "TomorrowExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TomorrowExpression", + "k": "class", + "s": "classes", + "m": { + "TomorrowExpression(FilterExpression)": "TomorrowExpression(FilterExpression)", + "TomorrowExpression": "TomorrowExpression(FilterExpression)", + "TomorrowExpression(string)": "TomorrowExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "TomorrowExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TomorrowExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "TomorrowExpressionDescription()": "TomorrowExpressionDescription()", + "TomorrowExpressionDescription": "TomorrowExpressionDescription()", + "Type": "Type" + } + } + ], + "TomorrowExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TomorrowExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TomorrowExpressionDescriptionMetadata()": "TomorrowExpressionDescriptionMetadata()", + "TomorrowExpressionDescriptionMetadata": "TomorrowExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolAction": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolAction", + "k": "class", + "s": "classes", + "m": { + "AccentColor": "AccentColor", + "AccentColorProperty": "AccentColorProperty", + "ActionId": "ActionId", + "ActionIdProperty": "ActionIdProperty", + "Actions": "Actions", + "ActualAccentColor": "ActualAccentColor", + "ActualAccentColorProperty": "ActualAccentColorProperty", + "ActualBackground": "ActualBackground", + "ActualBackgroundProperty": "ActualBackgroundProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualDisabledTextColorProperty": "ActualDisabledTextColorProperty", + "ActualHighlightColor": "ActualHighlightColor", + "ActualHighlightColorProperty": "ActualHighlightColorProperty", + "ActualHighlightRadius": "ActualHighlightRadius", + "ActualHighlightRadiusProperty": "ActualHighlightRadiusProperty", + "ActualHighlightWidth": "ActualHighlightWidth", + "ActualHighlightWidthProperty": "ActualHighlightWidthProperty", + "ActualHoverBackground": "ActualHoverBackground", + "ActualHoverBackgroundProperty": "ActualHoverBackgroundProperty", + "ActualIconFill": "ActualIconFill", + "ActualIconFillProperty": "ActualIconFillProperty", + "ActualIconHeight": "ActualIconHeight", + "ActualIconHeightProperty": "ActualIconHeightProperty", + "ActualIconStroke": "ActualIconStroke", + "ActualIconStrokeProperty": "ActualIconStrokeProperty", + "ActualIconWidth": "ActualIconWidth", + "ActualIconWidthProperty": "ActualIconWidthProperty", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingBottomProperty": "ActualPaddingBottomProperty", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingLeftProperty": "ActualPaddingLeftProperty", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingRightProperty": "ActualPaddingRightProperty", + "ActualPaddingTop": "ActualPaddingTop", + "ActualPaddingTopProperty": "ActualPaddingTopProperty", + "ActualSubPanelRowHeight": "ActualSubPanelRowHeight", + "ActualSubPanelRowHeightProperty": "ActualSubPanelRowHeightProperty", + "ActualSubtitleTextColor": "ActualSubtitleTextColor", + "ActualSubtitleTextColorProperty": "ActualSubtitleTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "AfterId": "AfterId", + "AfterIdProperty": "AfterIdProperty", + "Background": "Background", + "BackgroundProperty": "BackgroundProperty", + "BeforeId": "BeforeId", + "BeforeIdProperty": "BeforeIdProperty", + "ClearValue(DependencyProperty)": "ClearValue(DependencyProperty)", + "ClearValue": "ClearValue(DependencyProperty)", + "CloseOnExecute": "CloseOnExecute", + "CloseOnExecuteProperty": "CloseOnExecuteProperty", + "CloseSubmenu()": "CloseSubmenu()", + "CloseSubmenu": "CloseSubmenu()", + "CommandArgument": "CommandArgument", + "CommandArgumentProperty": "CommandArgumentProperty", + "CommandArgumentValue": "CommandArgumentValue", + "CommandArgumentValueProperty": "CommandArgumentValueProperty", + "CommandId": "CommandId", + "CommandIdProperty": "CommandIdProperty", + "ContextBindings": "ContextBindings", + "CreateFromInfo(ToolActionInfo)": "CreateFromInfo(ToolActionInfo)", + "CreateFromInfo": "CreateFromInfo(ToolActionInfo)", + "DataContext": "DataContext", + "DataContextProperty": "DataContextProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisabledTextColor": "DisabledTextColor", + "DisabledTextColorProperty": "DisabledTextColorProperty", + "Dispatcher": "Dispatcher", + "DispatcherQueue": "DispatcherQueue", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetAnimationBaseValue(DependencyProperty)": "GetAnimationBaseValue(DependencyProperty)", + "GetAnimationBaseValue": "GetAnimationBaseValue(DependencyProperty)", + "GetBindingExpression(DependencyProperty)": "GetBindingExpression(DependencyProperty)", + "GetBindingExpression": "GetBindingExpression(DependencyProperty)", + "GetValue(DependencyProperty)": "GetValue(DependencyProperty)", + "GetValue": "GetValue(DependencyProperty)", + "Height": "Height", + "HeightProperty": "HeightProperty", + "HighlightColor": "HighlightColor", + "HighlightColorProperty": "HighlightColorProperty", + "HighlightRadius": "HighlightRadius", + "HighlightRadiusProperty": "HighlightRadiusProperty", + "HighlightWidth": "HighlightWidth", + "HighlightWidthProperty": "HighlightWidthProperty", + "HoverBackground": "HoverBackground", + "HoverBackgroundProperty": "HoverBackgroundProperty", + "IconCollectionName": "IconCollectionName", + "IconCollectionNameProperty": "IconCollectionNameProperty", + "IconFill": "IconFill", + "IconFillColors": "IconFillColors", + "IconFillColorsProperty": "IconFillColorsProperty", + "IconFillProperty": "IconFillProperty", + "IconHeight": "IconHeight", + "IconHeightProperty": "IconHeightProperty", + "IconName": "IconName", + "IconNameProperty": "IconNameProperty", + "IconStroke": "IconStroke", + "IconStrokeColors": "IconStrokeColors", + "IconStrokeColorsProperty": "IconStrokeColorsProperty", + "IconStrokeProperty": "IconStrokeProperty", + "IconStrokeWidth": "IconStrokeWidth", + "IconStrokeWidthProperty": "IconStrokeWidthProperty", + "IconViewBoxHeight": "IconViewBoxHeight", + "IconViewBoxHeightProperty": "IconViewBoxHeightProperty", + "IconViewBoxLeft": "IconViewBoxLeft", + "IconViewBoxLeftProperty": "IconViewBoxLeftProperty", + "IconViewBoxTop": "IconViewBoxTop", + "IconViewBoxTopProperty": "IconViewBoxTopProperty", + "IconViewBoxWidth": "IconViewBoxWidth", + "IconViewBoxWidthProperty": "IconViewBoxWidthProperty", + "IconWidth": "IconWidth", + "IconWidthProperty": "IconWidthProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHighlighted": "IsHighlighted", + "IsHighlightedProperty": "IsHighlightedProperty", + "IsOpen": "IsOpen", + "IsOpenProperty": "IsOpenProperty", + "IsStoreInitialized": "IsStoreInitialized", + "Name": "Name", + "NameProperty": "NameProperty", + "OnDataContextChanged(DependencyPropertyChangedEventArgs)": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnDataContextChanged": "OnDataContextChanged(DependencyPropertyChangedEventArgs)", + "OnOnCommand(ToolCommandEventArgs)": "OnOnCommand(ToolCommandEventArgs)", + "OnOnCommand": "OnOnCommand(ToolCommandEventArgs)", + "OnPerformed(ToolActionPerformedEventArgs)": "OnPerformed(ToolActionPerformedEventArgs)", + "OnPerformed": "OnPerformed(ToolActionPerformedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OpenSubMenu()": "OpenSubMenu()", + "OpenSubMenu": "OpenSubMenu()", + "OverlayId": "OverlayId", + "OverlayIdProperty": "OverlayIdProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "ParentId": "ParentId", + "ParentIdProperty": "ParentIdProperty", + "ReadLocalValue(DependencyProperty)": "ReadLocalValue(DependencyProperty)", + "ReadLocalValue": "ReadLocalValue(DependencyProperty)", + "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "RegisterPropertyChangedCallback": "RegisterPropertyChangedCallback(DependencyProperty, DependencyPropertyChangedCallback)", + "ResumeBindings()": "ResumeBindings()", + "ResumeBindings": "ResumeBindings()", + "SetBinding(DependencyProperty, BindingBase)": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding": "SetBinding(DependencyProperty, BindingBase)", + "SetBinding(object, string, BindingBase)": "SetBinding(object, string, BindingBase)", + "SetBinding(string, BindingBase)": "SetBinding(string, BindingBase)", + "SetBindingValue(object, string)": "SetBindingValue(object, string)", + "SetBindingValue": "SetBindingValue(object, string)", + "SetValue(DependencyProperty, object)": "SetValue(DependencyProperty, object)", + "SetValue": "SetValue(DependencyProperty, object)", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubPanelRowHeightProperty": "SubPanelRowHeightProperty", + "Subtitle": "Subtitle", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleProperty": "SubtitleProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "SuspendBindings()": "SuspendBindings()", + "SuspendBindings": "SuspendBindings()", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "Title": "Title", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleHorizontalAlignmentProperty": "TitleHorizontalAlignmentProperty", + "TitleProperty": "TitleProperty", + "ToString()": "ToString()", + "ToString": "ToString()", + "UnregisterPropertyChangedCallback(DependencyProperty, long)": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "UnregisterPropertyChangedCallback": "UnregisterPropertyChangedCallback(DependencyProperty, long)", + "Visibility": "Visibility", + "VisibilityProperty": "VisibilityProperty", + "Width": "Width", + "WidthProperty": "WidthProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionButton": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionButton", + "k": "class", + "s": "classes", + "m": { + "ToolActionButton()": "ToolActionButton()", + "ToolActionButton": "ToolActionButton()", + "CornerRadius": "CornerRadius", + "CornerRadiusProperty": "CornerRadiusProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty" + } + } + ], + "ToolActionButtonDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonDescription()": "ToolActionButtonDescription()", + "ToolActionButtonDescription": "ToolActionButtonDescription()", + "CornerRadius": "CornerRadius", + "DisplayType": "DisplayType", + "Type": "Type" + } + } + ], + "ToolActionButtonDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonDescriptionMetadata()": "ToolActionButtonDescriptionMetadata()", + "ToolActionButtonDescriptionMetadata": "ToolActionButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonDescriptionModule()": "ToolActionButtonDescriptionModule()", + "ToolActionButtonDescriptionModule": "ToolActionButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonDisplayType": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ToolActionButtonDisplayType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionButtonGroupDisplayType": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ToolActionButtonGroupDisplayType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionButtonInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonInfo()": "ToolActionButtonInfo()", + "ToolActionButtonInfo": "ToolActionButtonInfo()", + "DisplayType": "DisplayType" + } + } + ], + "ToolActionButtonInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonInfoDescription()": "ToolActionButtonInfoDescription()", + "ToolActionButtonInfoDescription": "ToolActionButtonInfoDescription()", + "DisplayType": "DisplayType", + "Type": "Type" + } + } + ], + "ToolActionButtonInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonInfoDescriptionMetadata()": "ToolActionButtonInfoDescriptionMetadata()", + "ToolActionButtonInfoDescriptionMetadata": "ToolActionButtonInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonInfoDisplayType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ToolActionButtonInfoDisplayType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionButtonPair": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionButtonPair", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPair()": "ToolActionButtonPair()", + "ToolActionButtonPair": "ToolActionButtonPair()", + "ActualLeftIconFill": "ActualLeftIconFill", + "ActualLeftIconFillProperty": "ActualLeftIconFillProperty", + "ActualLeftIconStroke": "ActualLeftIconStroke", + "ActualLeftIconStrokeProperty": "ActualLeftIconStrokeProperty", + "ActualRightIconFill": "ActualRightIconFill", + "ActualRightIconFillProperty": "ActualRightIconFillProperty", + "ActualRightIconStroke": "ActualRightIconStroke", + "ActualRightIconStrokeProperty": "ActualRightIconStrokeProperty", + "CornerRadius": "CornerRadius", + "CornerRadiusProperty": "CornerRadiusProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "IsToggleDisabled": "IsToggleDisabled", + "IsToggleDisabledProperty": "IsToggleDisabledProperty", + "LeftCommandArgument": "LeftCommandArgument", + "LeftCommandArgumentProperty": "LeftCommandArgumentProperty", + "LeftIconCollectionName": "LeftIconCollectionName", + "LeftIconCollectionNameProperty": "LeftIconCollectionNameProperty", + "LeftIconFill": "LeftIconFill", + "LeftIconFillColors": "LeftIconFillColors", + "LeftIconFillColorsProperty": "LeftIconFillColorsProperty", + "LeftIconFillProperty": "LeftIconFillProperty", + "LeftIconName": "LeftIconName", + "LeftIconNameProperty": "LeftIconNameProperty", + "LeftIconStroke": "LeftIconStroke", + "LeftIconStrokeColors": "LeftIconStrokeColors", + "LeftIconStrokeColorsProperty": "LeftIconStrokeColorsProperty", + "LeftIconStrokeProperty": "LeftIconStrokeProperty", + "LeftIconStrokeWidth": "LeftIconStrokeWidth", + "LeftIconStrokeWidthProperty": "LeftIconStrokeWidthProperty", + "LeftIconViewBoxHeight": "LeftIconViewBoxHeight", + "LeftIconViewBoxHeightProperty": "LeftIconViewBoxHeightProperty", + "LeftIconViewBoxLeft": "LeftIconViewBoxLeft", + "LeftIconViewBoxLeftProperty": "LeftIconViewBoxLeftProperty", + "LeftIconViewBoxTop": "LeftIconViewBoxTop", + "LeftIconViewBoxTopProperty": "LeftIconViewBoxTopProperty", + "LeftIconViewBoxWidth": "LeftIconViewBoxWidth", + "LeftIconViewBoxWidthProperty": "LeftIconViewBoxWidthProperty", + "LeftIsDisabled": "LeftIsDisabled", + "LeftIsDisabledProperty": "LeftIsDisabledProperty", + "LeftIsSelected": "LeftIsSelected", + "LeftIsSelectedProperty": "LeftIsSelectedProperty", + "LeftTitle": "LeftTitle", + "LeftTitleProperty": "LeftTitleProperty", + "RightCommandArgument": "RightCommandArgument", + "RightCommandArgumentProperty": "RightCommandArgumentProperty", + "RightIconCollectionName": "RightIconCollectionName", + "RightIconCollectionNameProperty": "RightIconCollectionNameProperty", + "RightIconFill": "RightIconFill", + "RightIconFillColors": "RightIconFillColors", + "RightIconFillColorsProperty": "RightIconFillColorsProperty", + "RightIconFillProperty": "RightIconFillProperty", + "RightIconName": "RightIconName", + "RightIconNameProperty": "RightIconNameProperty", + "RightIconStroke": "RightIconStroke", + "RightIconStrokeColors": "RightIconStrokeColors", + "RightIconStrokeColorsProperty": "RightIconStrokeColorsProperty", + "RightIconStrokeProperty": "RightIconStrokeProperty", + "RightIconStrokeWidth": "RightIconStrokeWidth", + "RightIconStrokeWidthProperty": "RightIconStrokeWidthProperty", + "RightIconViewBoxHeight": "RightIconViewBoxHeight", + "RightIconViewBoxHeightProperty": "RightIconViewBoxHeightProperty", + "RightIconViewBoxLeft": "RightIconViewBoxLeft", + "RightIconViewBoxLeftProperty": "RightIconViewBoxLeftProperty", + "RightIconViewBoxTop": "RightIconViewBoxTop", + "RightIconViewBoxTopProperty": "RightIconViewBoxTopProperty", + "RightIconViewBoxWidth": "RightIconViewBoxWidth", + "RightIconViewBoxWidthProperty": "RightIconViewBoxWidthProperty", + "RightIsDisabled": "RightIsDisabled", + "RightIsDisabledProperty": "RightIsDisabledProperty", + "RightIsSelected": "RightIsSelected", + "RightIsSelectedProperty": "RightIsSelectedProperty", + "RightTitle": "RightTitle", + "RightTitleProperty": "RightTitleProperty" + } + } + ], + "ToolActionButtonPairDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonPairDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairDescription()": "ToolActionButtonPairDescription()", + "ToolActionButtonPairDescription": "ToolActionButtonPairDescription()", + "ActualLeftIconFill": "ActualLeftIconFill", + "ActualLeftIconStroke": "ActualLeftIconStroke", + "ActualRightIconFill": "ActualRightIconFill", + "ActualRightIconStroke": "ActualRightIconStroke", + "CornerRadius": "CornerRadius", + "DisplayType": "DisplayType", + "IsToggleDisabled": "IsToggleDisabled", + "LeftCommandArgument": "LeftCommandArgument", + "LeftIconCollectionName": "LeftIconCollectionName", + "LeftIconFill": "LeftIconFill", + "LeftIconFillColors": "LeftIconFillColors", + "LeftIconName": "LeftIconName", + "LeftIconStroke": "LeftIconStroke", + "LeftIconStrokeColors": "LeftIconStrokeColors", + "LeftIconStrokeWidth": "LeftIconStrokeWidth", + "LeftIconViewBoxHeight": "LeftIconViewBoxHeight", + "LeftIconViewBoxLeft": "LeftIconViewBoxLeft", + "LeftIconViewBoxTop": "LeftIconViewBoxTop", + "LeftIconViewBoxWidth": "LeftIconViewBoxWidth", + "LeftIsDisabled": "LeftIsDisabled", + "LeftIsSelected": "LeftIsSelected", + "LeftTitle": "LeftTitle", + "RightCommandArgument": "RightCommandArgument", + "RightIconCollectionName": "RightIconCollectionName", + "RightIconFill": "RightIconFill", + "RightIconFillColors": "RightIconFillColors", + "RightIconName": "RightIconName", + "RightIconStroke": "RightIconStroke", + "RightIconStrokeColors": "RightIconStrokeColors", + "RightIconStrokeWidth": "RightIconStrokeWidth", + "RightIconViewBoxHeight": "RightIconViewBoxHeight", + "RightIconViewBoxLeft": "RightIconViewBoxLeft", + "RightIconViewBoxTop": "RightIconViewBoxTop", + "RightIconViewBoxWidth": "RightIconViewBoxWidth", + "RightIsDisabled": "RightIsDisabled", + "RightIsSelected": "RightIsSelected", + "RightTitle": "RightTitle", + "Type": "Type" + } + } + ], + "ToolActionButtonPairDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonPairDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairDescriptionMetadata()": "ToolActionButtonPairDescriptionMetadata()", + "ToolActionButtonPairDescriptionMetadata": "ToolActionButtonPairDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonPairDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonPairDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairDescriptionModule()": "ToolActionButtonPairDescriptionModule()", + "ToolActionButtonPairDescriptionModule": "ToolActionButtonPairDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonPairInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonPairInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairInfo()": "ToolActionButtonPairInfo()", + "ToolActionButtonPairInfo": "ToolActionButtonPairInfo()", + "IsToggleDisabled": "IsToggleDisabled", + "LeftCommandArgument": "LeftCommandArgument", + "LeftIconCollectionName": "LeftIconCollectionName", + "LeftIconFill": "LeftIconFill", + "LeftIconName": "LeftIconName", + "LeftIconStroke": "LeftIconStroke", + "LeftIconStrokeWidth": "LeftIconStrokeWidth", + "LeftIconViewBoxHeight": "LeftIconViewBoxHeight", + "LeftIconViewBoxLeft": "LeftIconViewBoxLeft", + "LeftIconViewBoxTop": "LeftIconViewBoxTop", + "LeftIconViewBoxWidth": "LeftIconViewBoxWidth", + "LeftTitle": "LeftTitle", + "RightCommandArgument": "RightCommandArgument", + "RightIconCollectionName": "RightIconCollectionName", + "RightIconFill": "RightIconFill", + "RightIconName": "RightIconName", + "RightIconStroke": "RightIconStroke", + "RightIconStrokeWidth": "RightIconStrokeWidth", + "RightIconViewBoxHeight": "RightIconViewBoxHeight", + "RightIconViewBoxLeft": "RightIconViewBoxLeft", + "RightIconViewBoxTop": "RightIconViewBoxTop", + "RightIconViewBoxWidth": "RightIconViewBoxWidth", + "RightTitle": "RightTitle" + } + } + ], + "ToolActionButtonPairInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonPairInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairInfoDescription()": "ToolActionButtonPairInfoDescription()", + "ToolActionButtonPairInfoDescription": "ToolActionButtonPairInfoDescription()", + "IsToggleDisabled": "IsToggleDisabled", + "LeftCommandArgument": "LeftCommandArgument", + "LeftIconCollectionName": "LeftIconCollectionName", + "LeftIconFill": "LeftIconFill", + "LeftIconName": "LeftIconName", + "LeftIconStroke": "LeftIconStroke", + "LeftIconStrokeWidth": "LeftIconStrokeWidth", + "LeftIconViewBoxHeight": "LeftIconViewBoxHeight", + "LeftIconViewBoxLeft": "LeftIconViewBoxLeft", + "LeftIconViewBoxTop": "LeftIconViewBoxTop", + "LeftIconViewBoxWidth": "LeftIconViewBoxWidth", + "LeftTitle": "LeftTitle", + "RightCommandArgument": "RightCommandArgument", + "RightIconCollectionName": "RightIconCollectionName", + "RightIconFill": "RightIconFill", + "RightIconName": "RightIconName", + "RightIconStroke": "RightIconStroke", + "RightIconStrokeWidth": "RightIconStrokeWidth", + "RightIconViewBoxHeight": "RightIconViewBoxHeight", + "RightIconViewBoxLeft": "RightIconViewBoxLeft", + "RightIconViewBoxTop": "RightIconViewBoxTop", + "RightIconViewBoxWidth": "RightIconViewBoxWidth", + "RightTitle": "RightTitle", + "Type": "Type" + } + } + ], + "ToolActionButtonPairInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionButtonPairInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairInfoDescriptionMetadata()": "ToolActionButtonPairInfoDescriptionMetadata()", + "ToolActionButtonPairInfoDescriptionMetadata": "ToolActionButtonPairInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonPairVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionButtonPairVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairVisualData()": "ToolActionButtonPairVisualData()", + "ToolActionButtonPairVisualData": "ToolActionButtonPairVisualData()", + "ButtonGroup": "ButtonGroup", + "LeftButton": "LeftButton", + "LeftIcon": "LeftIcon", + "LeftLabel": "LeftLabel", + "RightButton": "RightButton", + "RightIcon": "RightIcon", + "RightLabel": "RightLabel", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionButtonVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionButtonVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonVisualData()": "ToolActionButtonVisualData()", + "ToolActionButtonVisualData": "ToolActionButtonVisualData()", + "InnerButton": "InnerButton", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCheckbox": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionCheckbox", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckbox()": "ToolActionCheckbox()", + "ToolActionCheckbox": "ToolActionCheckbox()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "IsChecked": "IsChecked", + "IsCheckedProperty": "IsCheckedProperty", + "ShorthandTitle": "ShorthandTitle", + "ShorthandTitleProperty": "ShorthandTitleProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty" + } + } + ], + "ToolActionCheckboxDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxDescription()": "ToolActionCheckboxDescription()", + "ToolActionCheckboxDescription": "ToolActionCheckboxDescription()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "IsChecked": "IsChecked", + "ShorthandTitle": "ShorthandTitle", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor" + } + } + ], + "ToolActionCheckboxDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxDescriptionMetadata()": "ToolActionCheckboxDescriptionMetadata()", + "ToolActionCheckboxDescriptionMetadata": "ToolActionCheckboxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxDescriptionModule()": "ToolActionCheckboxDescriptionModule()", + "ToolActionCheckboxDescriptionModule": "ToolActionCheckboxDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxGroup": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionCheckboxGroup", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroup()": "ToolActionCheckboxGroup()", + "ToolActionCheckboxGroup": "ToolActionCheckboxGroup()", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ActualSelectedTextColorProperty": "ActualSelectedTextColorProperty", + "SelectedFontFamily": "SelectedFontFamily", + "SelectedFontFamilyProperty": "SelectedFontFamilyProperty", + "SelectedFontSize": "SelectedFontSize", + "SelectedFontSizeProperty": "SelectedFontSizeProperty", + "SelectedFontStyle": "SelectedFontStyle", + "SelectedFontStyleProperty": "SelectedFontStyleProperty", + "SelectedFontWeight": "SelectedFontWeight", + "SelectedFontWeightProperty": "SelectedFontWeightProperty", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorProperty": "SelectedTextColorProperty" + } + } + ], + "ToolActionCheckboxGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupDescription()": "ToolActionCheckboxGroupDescription()", + "ToolActionCheckboxGroupDescription": "ToolActionCheckboxGroupDescription()", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "SelectedFontFamily": "SelectedFontFamily", + "SelectedFontSize": "SelectedFontSize", + "SelectedFontStyle": "SelectedFontStyle", + "SelectedFontWeight": "SelectedFontWeight", + "SelectedTextColor": "SelectedTextColor", + "Type": "Type" + } + } + ], + "ToolActionCheckboxGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupDescriptionMetadata()": "ToolActionCheckboxGroupDescriptionMetadata()", + "ToolActionCheckboxGroupDescriptionMetadata": "ToolActionCheckboxGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupDescriptionModule()": "ToolActionCheckboxGroupDescriptionModule()", + "ToolActionCheckboxGroupDescriptionModule": "ToolActionCheckboxGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxGroupInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxGroupInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupInfo()": "ToolActionCheckboxGroupInfo()", + "ToolActionCheckboxGroupInfo": "ToolActionCheckboxGroupInfo()", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextStyle": "SelectedTextStyle" + } + } + ], + "ToolActionCheckboxGroupInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxGroupInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupInfoDescription()": "ToolActionCheckboxGroupInfoDescription()", + "ToolActionCheckboxGroupInfoDescription": "ToolActionCheckboxGroupInfoDescription()", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextStyle": "SelectedTextStyle", + "Type": "Type" + } + } + ], + "ToolActionCheckboxGroupInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxGroupInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupInfoDescriptionMetadata()": "ToolActionCheckboxGroupInfoDescriptionMetadata()", + "ToolActionCheckboxGroupInfoDescriptionMetadata": "ToolActionCheckboxGroupInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxGroupVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionCheckboxGroupVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupVisualData()": "ToolActionCheckboxGroupVisualData()", + "ToolActionCheckboxGroupVisualData": "ToolActionCheckboxGroupVisualData()", + "DropdownIcon": "DropdownIcon", + "SelectedTextLabel": "SelectedTextLabel", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCheckboxInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxInfo()": "ToolActionCheckboxInfo()", + "ToolActionCheckboxInfo": "ToolActionCheckboxInfo()", + "IsChecked": "IsChecked", + "ShorthandTitle": "ShorthandTitle" + } + } + ], + "ToolActionCheckboxInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxInfoDescription()": "ToolActionCheckboxInfoDescription()", + "ToolActionCheckboxInfoDescription": "ToolActionCheckboxInfoDescription()", + "IsChecked": "IsChecked", + "ShorthandTitle": "ShorthandTitle", + "Type": "Type" + } + } + ], + "ToolActionCheckboxInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxInfoDescriptionMetadata()": "ToolActionCheckboxInfoDescriptionMetadata()", + "ToolActionCheckboxInfoDescriptionMetadata": "ToolActionCheckboxInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxList": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionCheckboxList", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxList()": "ToolActionCheckboxList()", + "ToolActionCheckboxList": "ToolActionCheckboxList()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "DataMemberPath": "DataMemberPath", + "DataMemberPathProperty": "DataMemberPathProperty", + "IndexType": "IndexType", + "IndexTypeProperty": "IndexTypeProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "PrimaryKey": "PrimaryKey", + "PrimaryKeyProperty": "PrimaryKeyProperty", + "SelectedKeys": "SelectedKeys", + "SelectedKeysProperty": "SelectedKeysProperty", + "SelectedMemberPath": "SelectedMemberPath", + "SelectedMemberPathProperty": "SelectedMemberPathProperty", + "ShowSelectAll": "ShowSelectAll", + "ShowSelectAllProperty": "ShowSelectAllProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty" + } + } + ], + "ToolActionCheckboxListDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxListDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListDescription()": "ToolActionCheckboxListDescription()", + "ToolActionCheckboxListDescription": "ToolActionCheckboxListDescription()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "DataMemberPath": "DataMemberPath", + "DataSourceRef": "DataSourceRef", + "IndexType": "IndexType", + "PrimaryKey": "PrimaryKey", + "SelectedKeys": "SelectedKeys", + "SelectedMemberPath": "SelectedMemberPath", + "ShowSelectAll": "ShowSelectAll", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor" + } + } + ], + "ToolActionCheckboxListDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxListDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListDescriptionMetadata()": "ToolActionCheckboxListDescriptionMetadata()", + "ToolActionCheckboxListDescriptionMetadata": "ToolActionCheckboxListDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxListDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxListDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListDescriptionModule()": "ToolActionCheckboxListDescriptionModule()", + "ToolActionCheckboxListDescriptionModule": "ToolActionCheckboxListDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxListIndexType": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ToolActionCheckboxListIndexType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionCheckboxListInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxListInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListInfo()": "ToolActionCheckboxListInfo()", + "ToolActionCheckboxListInfo": "ToolActionCheckboxListInfo()", + "DataMemberPath": "DataMemberPath", + "ItemsSource": "ItemsSource", + "PrimaryKey": "PrimaryKey", + "SelectedMemberPath": "SelectedMemberPath", + "ShowSelectAll": "ShowSelectAll" + } + } + ], + "ToolActionCheckboxListInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxListInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListInfoDescription()": "ToolActionCheckboxListInfoDescription()", + "ToolActionCheckboxListInfoDescription": "ToolActionCheckboxListInfoDescription()", + "DataMemberPath": "DataMemberPath", + "DataSourceRef": "DataSourceRef", + "PrimaryKey": "PrimaryKey", + "SelectedMemberPath": "SelectedMemberPath", + "ShowSelectAll": "ShowSelectAll", + "Type": "Type" + } + } + ], + "ToolActionCheckboxListInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionCheckboxListInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListInfoDescriptionMetadata()": "ToolActionCheckboxListInfoDescriptionMetadata()", + "ToolActionCheckboxListInfoDescriptionMetadata": "ToolActionCheckboxListInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxListVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionCheckboxListVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListVisualData()": "ToolActionCheckboxListVisualData()", + "ToolActionCheckboxListVisualData": "ToolActionCheckboxListVisualData()", + "CheckboxList": "CheckboxList", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCheckboxVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionCheckboxVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxVisualData()": "ToolActionCheckboxVisualData()", + "ToolActionCheckboxVisualData": "ToolActionCheckboxVisualData()", + "Checkbox": "Checkbox", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionCollection", + "k": "class", + "s": "classes", + "m": { + "ToolActionCollection()": "ToolActionCollection()", + "ToolActionCollection": "ToolActionCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionColorEditor": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionColorEditor", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditor()": "ToolActionColorEditor()", + "ToolActionColorEditor": "ToolActionColorEditor()", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "ToolActionColorEditorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionColorEditorDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorDescription()": "ToolActionColorEditorDescription()", + "ToolActionColorEditorDescription": "ToolActionColorEditorDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionColorEditorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionColorEditorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorDescriptionMetadata()": "ToolActionColorEditorDescriptionMetadata()", + "ToolActionColorEditorDescriptionMetadata": "ToolActionColorEditorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionColorEditorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionColorEditorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorDescriptionModule()": "ToolActionColorEditorDescriptionModule()", + "ToolActionColorEditorDescriptionModule": "ToolActionColorEditorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionColorEditorInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionColorEditorInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorInfo()": "ToolActionColorEditorInfo()", + "ToolActionColorEditorInfo": "ToolActionColorEditorInfo()", + "Value": "Value" + } + } + ], + "ToolActionColorEditorInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionColorEditorInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorInfoDescription()": "ToolActionColorEditorInfoDescription()", + "ToolActionColorEditorInfoDescription": "ToolActionColorEditorInfoDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionColorEditorInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionColorEditorInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorInfoDescriptionMetadata()": "ToolActionColorEditorInfoDescriptionMetadata()", + "ToolActionColorEditorInfoDescriptionMetadata": "ToolActionColorEditorInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionColorEditorVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionColorEditorVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorVisualData()": "ToolActionColorEditorVisualData()", + "ToolActionColorEditorVisualData": "ToolActionColorEditorVisualData()", + "ColorEditor": "ColorEditor", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCombo": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionCombo", + "k": "class", + "s": "classes", + "m": { + "ToolActionCombo()": "ToolActionCombo()", + "ToolActionCombo": "ToolActionCombo()", + "DisplayMemberPath": "DisplayMemberPath", + "DisplayMemberPathProperty": "DisplayMemberPathProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "SelectedValues": "SelectedValues", + "SelectedValuesProperty": "SelectedValuesProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty" + } + } + ], + "ToolActionComboDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionComboDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboDescription()": "ToolActionComboDescription()", + "ToolActionComboDescription": "ToolActionComboDescription()", + "DataSourceRef": "DataSourceRef", + "DisplayMemberPath": "DisplayMemberPath", + "SelectedValues": "SelectedValues", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "ToolActionComboDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionComboDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboDescriptionMetadata()": "ToolActionComboDescriptionMetadata()", + "ToolActionComboDescriptionMetadata": "ToolActionComboDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionComboDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionComboDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboDescriptionModule()": "ToolActionComboDescriptionModule()", + "ToolActionComboDescriptionModule": "ToolActionComboDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionComboInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionComboInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboInfo()": "ToolActionComboInfo()", + "ToolActionComboInfo": "ToolActionComboInfo()", + "DisplayMemberPath": "DisplayMemberPath", + "ItemsSource": "ItemsSource", + "SelectedValues": "SelectedValues", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "ToolActionComboInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionComboInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboInfoDescription()": "ToolActionComboInfoDescription()", + "ToolActionComboInfoDescription": "ToolActionComboInfoDescription()", + "DataSourceRef": "DataSourceRef", + "DisplayMemberPath": "DisplayMemberPath", + "SelectedValuesRef": "SelectedValuesRef", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "ToolActionComboInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionComboInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboInfoDescriptionMetadata()": "ToolActionComboInfoDescriptionMetadata()", + "ToolActionComboInfoDescriptionMetadata": "ToolActionComboInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionComboVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionComboVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboVisualData()": "ToolActionComboVisualData()", + "ToolActionComboVisualData": "ToolActionComboVisualData()", + "Combo": "Combo", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionDescription()": "ToolActionDescription()", + "ToolActionDescription": "ToolActionDescription()", + "AccentColor": "AccentColor", + "Actions": "Actions", + "ActualAccentColor": "ActualAccentColor", + "ActualBackground": "ActualBackground", + "ActualDensity": "ActualDensity", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualHighlightColor": "ActualHighlightColor", + "ActualHighlightRadius": "ActualHighlightRadius", + "ActualHighlightWidth": "ActualHighlightWidth", + "ActualHoverBackground": "ActualHoverBackground", + "ActualIconFill": "ActualIconFill", + "ActualIconHeight": "ActualIconHeight", + "ActualIconStroke": "ActualIconStroke", + "ActualIconWidth": "ActualIconWidth", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingTop": "ActualPaddingTop", + "ActualSubPanelRowHeight": "ActualSubPanelRowHeight", + "ActualSubtitleTextColor": "ActualSubtitleTextColor", + "ActualTextColor": "ActualTextColor", + "AfterId": "AfterId", + "Background": "Background", + "BeforeId": "BeforeId", + "CloseOnExecute": "CloseOnExecute", + "CommandArgument": "CommandArgument", + "CommandArgumentValue": "CommandArgumentValue", + "CommandId": "CommandId", + "ContextBindings": "ContextBindings", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "Height": "Height", + "HighlightColor": "HighlightColor", + "HighlightRadius": "HighlightRadius", + "HighlightWidth": "HighlightWidth", + "HoverBackground": "HoverBackground", + "IconCollectionName": "IconCollectionName", + "IconFill": "IconFill", + "IconFillColors": "IconFillColors", + "IconHeight": "IconHeight", + "IconName": "IconName", + "IconStroke": "IconStroke", + "IconStrokeColors": "IconStrokeColors", + "IconStrokeWidth": "IconStrokeWidth", + "IconViewBoxHeight": "IconViewBoxHeight", + "IconViewBoxLeft": "IconViewBoxLeft", + "IconViewBoxTop": "IconViewBoxTop", + "IconViewBoxWidth": "IconViewBoxWidth", + "IconWidth": "IconWidth", + "IsDisabled": "IsDisabled", + "IsHighlighted": "IsHighlighted", + "OnCommandRef": "OnCommandRef", + "OverlayId": "OverlayId", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "ParentId": "ParentId", + "PerformedRef": "PerformedRef", + "SubPanelRowHeight": "SubPanelRowHeight", + "Subtitle": "Subtitle", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleTextColor": "SubtitleTextColor", + "TextColor": "TextColor", + "Title": "Title", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "Type": "Type", + "Visibility": "Visibility", + "Width": "Width" + } + } + ], + "ToolActionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionDescriptionMetadata()": "ToolActionDescriptionMetadata()", + "ToolActionDescriptionMetadata": "ToolActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionEventDetail": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionEventDetail", + "k": "class", + "s": "classes", + "m": { + "ToolActionEventDetail()": "ToolActionEventDetail()", + "ToolActionEventDetail": "ToolActionEventDetail()", + "ActionId": "ActionId", + "ActionType": "ActionType", + "BoolValue": "BoolValue", + "DateTimeValue": "DateTimeValue", + "IsModified": "IsModified", + "NumberValue": "NumberValue", + "StringValue": "StringValue", + "UntypedValue": "UntypedValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionEventDetailCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionEventDetailCollection", + "k": "class", + "s": "classes", + "m": { + "ToolActionEventDetailCollection()": "ToolActionEventDetailCollection()", + "ToolActionEventDetailCollection": "ToolActionEventDetailCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionEventDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionEventDetailDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionEventDetailDescription()": "ToolActionEventDetailDescription()", + "ToolActionEventDetailDescription": "ToolActionEventDetailDescription()", + "ActionId": "ActionId", + "ActionType": "ActionType", + "BoolValue": "BoolValue", + "DateTimeValue": "DateTimeValue", + "IsModified": "IsModified", + "NumberValue": "NumberValue", + "StringValue": "StringValue", + "Type": "Type", + "UntypedValueRef": "UntypedValueRef" + } + } + ], + "ToolActionEventDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionEventDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionEventDetailDescriptionMetadata()": "ToolActionEventDetailDescriptionMetadata()", + "ToolActionEventDetailDescriptionMetadata": "ToolActionEventDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelector": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionFieldSelector", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelector()": "ToolActionFieldSelector()", + "ToolActionFieldSelector": "ToolActionFieldSelector()", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingBottomProperty": "ActualPaddingBottomProperty", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingLeftProperty": "ActualPaddingLeftProperty", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingRightProperty": "ActualPaddingRightProperty", + "ActualPaddingTop": "ActualPaddingTop", + "ActualPaddingTopProperty": "ActualPaddingTopProperty", + "Aggregations": "Aggregations", + "AggregationsProperty": "AggregationsProperty", + "DataSource": "DataSource", + "DataSourceProperty": "DataSourceProperty", + "FieldType": "FieldType", + "FieldTypeProperty": "FieldTypeProperty", + "LegendTarget": "LegendTarget", + "LegendTargetProperty": "LegendTargetProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "SelectedAggregations": "SelectedAggregations", + "SelectedAggregationsProperty": "SelectedAggregationsProperty", + "SingleSelection": "SingleSelection", + "SingleSelectionProperty": "SingleSelectionProperty", + "UpdateDataSource": "UpdateDataSource", + "UpdateDataSourceProperty": "UpdateDataSourceProperty" + } + } + ], + "ToolActionFieldSelectorAggregation": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionFieldSelectorAggregation", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregation()": "ToolActionFieldSelectorAggregation()", + "ToolActionFieldSelectorAggregation": "ToolActionFieldSelectorAggregation()", + "Label": "Label", + "Name": "Name", + "Operand": "Operand", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionFieldSelectorAggregationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorAggregationDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregationDescription()": "ToolActionFieldSelectorAggregationDescription()", + "ToolActionFieldSelectorAggregationDescription": "ToolActionFieldSelectorAggregationDescription()", + "Label": "Label", + "Operand": "Operand", + "Type": "Type" + } + } + ], + "ToolActionFieldSelectorAggregationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorAggregationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregationDescriptionMetadata()": "ToolActionFieldSelectorAggregationDescriptionMetadata()", + "ToolActionFieldSelectorAggregationDescriptionMetadata": "ToolActionFieldSelectorAggregationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorAggregationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorAggregationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregationDescriptionModule()": "ToolActionFieldSelectorAggregationDescriptionModule()", + "ToolActionFieldSelectorAggregationDescriptionModule": "ToolActionFieldSelectorAggregationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorAggregationsCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionFieldSelectorAggregationsCollection", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregationsCollection()": "ToolActionFieldSelectorAggregationsCollection()", + "ToolActionFieldSelectorAggregationsCollection": "ToolActionFieldSelectorAggregationsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionFieldSelectorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorDescription()": "ToolActionFieldSelectorDescription()", + "ToolActionFieldSelectorDescription": "ToolActionFieldSelectorDescription()", + "Aggregations": "Aggregations", + "DataSourceRef": "DataSourceRef", + "FieldType": "FieldType", + "LegendTargetRef": "LegendTargetRef", + "SelectedAggregations": "SelectedAggregations", + "SingleSelection": "SingleSelection", + "Type": "Type", + "UpdateDataSource": "UpdateDataSource" + } + } + ], + "ToolActionFieldSelectorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorDescriptionMetadata()": "ToolActionFieldSelectorDescriptionMetadata()", + "ToolActionFieldSelectorDescriptionMetadata": "ToolActionFieldSelectorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorDescriptionModule()": "ToolActionFieldSelectorDescriptionModule()", + "ToolActionFieldSelectorDescriptionModule": "ToolActionFieldSelectorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorEventType": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ToolActionFieldSelectorEventType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionFieldSelectorInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorInfo()": "ToolActionFieldSelectorInfo()", + "ToolActionFieldSelectorInfo": "ToolActionFieldSelectorInfo()", + "Aggregations": "Aggregations", + "DataSource": "DataSource", + "FieldType": "FieldType", + "Rules": "Rules", + "SelectedAggregations": "SelectedAggregations", + "SingleSelection": "SingleSelection", + "UpdateDataSource": "UpdateDataSource" + } + } + ], + "ToolActionFieldSelectorInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorInfoDescription()": "ToolActionFieldSelectorInfoDescription()", + "ToolActionFieldSelectorInfoDescription": "ToolActionFieldSelectorInfoDescription()", + "AggregationsRef": "AggregationsRef", + "DataSourceRef": "DataSourceRef", + "FieldType": "FieldType", + "RulesRef": "RulesRef", + "SelectedAggregationsRef": "SelectedAggregationsRef", + "SingleSelection": "SingleSelection", + "Type": "Type", + "UpdateDataSource": "UpdateDataSource" + } + } + ], + "ToolActionFieldSelectorInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorInfoDescriptionMetadata()": "ToolActionFieldSelectorInfoDescriptionMetadata()", + "ToolActionFieldSelectorInfoDescriptionMetadata": "ToolActionFieldSelectorInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorInfoType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ToolActionFieldSelectorInfoType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionFieldSelectorSelectedAggregation": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionFieldSelectorSelectedAggregation", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregation()": "ToolActionFieldSelectorSelectedAggregation()", + "ToolActionFieldSelectorSelectedAggregation": "ToolActionFieldSelectorSelectedAggregation()", + "AggregationName": "AggregationName", + "AggregationOperand": "AggregationOperand", + "Field": "Field", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionFieldSelectorSelectedAggregationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorSelectedAggregationDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregationDescription()": "ToolActionFieldSelectorSelectedAggregationDescription()", + "ToolActionFieldSelectorSelectedAggregationDescription": "ToolActionFieldSelectorSelectedAggregationDescription()", + "AggregationName": "AggregationName", + "AggregationOperand": "AggregationOperand", + "Field": "Field", + "Type": "Type" + } + } + ], + "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorSelectedAggregationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata()": "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata()", + "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata": "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorSelectedAggregationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionFieldSelectorSelectedAggregationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregationDescriptionModule()": "ToolActionFieldSelectorSelectedAggregationDescriptionModule()", + "ToolActionFieldSelectorSelectedAggregationDescriptionModule": "ToolActionFieldSelectorSelectedAggregationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorSelectedAggregationsCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionFieldSelectorSelectedAggregationsCollection", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregationsCollection()": "ToolActionFieldSelectorSelectedAggregationsCollection()", + "ToolActionFieldSelectorSelectedAggregationsCollection": "ToolActionFieldSelectorSelectedAggregationsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionFieldSelectorType": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ToolActionFieldSelectorType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionGroupHeader": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionGroupHeader", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeader()": "ToolActionGroupHeader()", + "ToolActionGroupHeader": "ToolActionGroupHeader()", + "ActualBackIconColor": "ActualBackIconColor", + "ActualBackIconColorProperty": "ActualBackIconColorProperty", + "BackIconColor": "BackIconColor", + "BackIconColorProperty": "BackIconColorProperty" + } + } + ], + "ToolActionGroupHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionGroupHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderDescription()": "ToolActionGroupHeaderDescription()", + "ToolActionGroupHeaderDescription": "ToolActionGroupHeaderDescription()", + "ActualBackIconColor": "ActualBackIconColor", + "BackIconColor": "BackIconColor", + "Type": "Type" + } + } + ], + "ToolActionGroupHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionGroupHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderDescriptionMetadata()": "ToolActionGroupHeaderDescriptionMetadata()", + "ToolActionGroupHeaderDescriptionMetadata": "ToolActionGroupHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionGroupHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionGroupHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderDescriptionModule()": "ToolActionGroupHeaderDescriptionModule()", + "ToolActionGroupHeaderDescriptionModule": "ToolActionGroupHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionGroupHeaderInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionGroupHeaderInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderInfo()": "ToolActionGroupHeaderInfo()", + "ToolActionGroupHeaderInfo": "ToolActionGroupHeaderInfo()" + } + } + ], + "ToolActionGroupHeaderInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionGroupHeaderInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderInfoDescription()": "ToolActionGroupHeaderInfoDescription()", + "ToolActionGroupHeaderInfoDescription": "ToolActionGroupHeaderInfoDescription()", + "Type": "Type" + } + } + ], + "ToolActionGroupHeaderInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionGroupHeaderInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderInfoDescriptionMetadata()": "ToolActionGroupHeaderInfoDescriptionMetadata()", + "ToolActionGroupHeaderInfoDescriptionMetadata": "ToolActionGroupHeaderInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionGroupHeaderVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionGroupHeaderVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderVisualData()": "ToolActionGroupHeaderVisualData()", + "ToolActionGroupHeaderVisualData": "ToolActionGroupHeaderVisualData()", + "BackButton": "BackButton", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionIconButton": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionIconButton", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButton()": "ToolActionIconButton()", + "ToolActionIconButton": "ToolActionIconButton()", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingBottomProperty": "ActualContentPaddingBottomProperty", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingLeftProperty": "ActualContentPaddingLeftProperty", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingRightProperty": "ActualContentPaddingRightProperty", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualContentPaddingTopProperty": "ActualContentPaddingTopProperty", + "ActualTooltipDelay": "ActualTooltipDelay", + "ActualTooltipDelayProperty": "ActualTooltipDelayProperty", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "OnPopupOpening(ToolActionPopupOpeningEventArgs)": "OnPopupOpening(ToolActionPopupOpeningEventArgs)", + "OnPopupOpening": "OnPopupOpening(ToolActionPopupOpeningEventArgs)", + "TooltipDelay": "TooltipDelay", + "TooltipDelayProperty": "TooltipDelayProperty" + } + } + ], + "ToolActionIconButtonDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconButtonDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonDescription()": "ToolActionIconButtonDescription()", + "ToolActionIconButtonDescription": "ToolActionIconButtonDescription()", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualTooltipDelay": "ActualTooltipDelay", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "PopupOpeningRef": "PopupOpeningRef", + "TooltipDelay": "TooltipDelay", + "Type": "Type" + } + } + ], + "ToolActionIconButtonDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonDescriptionMetadata()": "ToolActionIconButtonDescriptionMetadata()", + "ToolActionIconButtonDescriptionMetadata": "ToolActionIconButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconButtonDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonDescriptionModule()": "ToolActionIconButtonDescriptionModule()", + "ToolActionIconButtonDescriptionModule": "ToolActionIconButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconButtonInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconButtonInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonInfo()": "ToolActionIconButtonInfo()", + "ToolActionIconButtonInfo": "ToolActionIconButtonInfo()", + "IsMenuOpenOnStart": "IsMenuOpenOnStart", + "TooltipDelay": "TooltipDelay" + } + } + ], + "ToolActionIconButtonInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconButtonInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonInfoDescription()": "ToolActionIconButtonInfoDescription()", + "ToolActionIconButtonInfoDescription": "ToolActionIconButtonInfoDescription()", + "IsMenuOpenOnStart": "IsMenuOpenOnStart", + "TooltipDelay": "TooltipDelay", + "Type": "Type" + } + } + ], + "ToolActionIconButtonInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconButtonInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonInfoDescriptionMetadata()": "ToolActionIconButtonInfoDescriptionMetadata()", + "ToolActionIconButtonInfoDescriptionMetadata": "ToolActionIconButtonInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconMenu": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionIconMenu", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenu()": "ToolActionIconMenu()", + "ToolActionIconMenu": "ToolActionIconMenu()", + "ActualArrowStroke": "ActualArrowStroke", + "ActualArrowStrokeProperty": "ActualArrowStrokeProperty", + "ArrowStroke": "ArrowStroke", + "ArrowStrokeProperty": "ArrowStrokeProperty", + "ShowArrowIcon": "ShowArrowIcon", + "ShowArrowIconProperty": "ShowArrowIconProperty" + } + } + ], + "ToolActionIconMenuDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconMenuDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuDescription()": "ToolActionIconMenuDescription()", + "ToolActionIconMenuDescription": "ToolActionIconMenuDescription()", + "ActualArrowStroke": "ActualArrowStroke", + "ArrowStroke": "ArrowStroke", + "ShowArrowIcon": "ShowArrowIcon", + "Type": "Type" + } + } + ], + "ToolActionIconMenuDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconMenuDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuDescriptionMetadata()": "ToolActionIconMenuDescriptionMetadata()", + "ToolActionIconMenuDescriptionMetadata": "ToolActionIconMenuDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconMenuDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconMenuDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuDescriptionModule()": "ToolActionIconMenuDescriptionModule()", + "ToolActionIconMenuDescriptionModule": "ToolActionIconMenuDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconMenuInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconMenuInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuInfo()": "ToolActionIconMenuInfo()", + "ToolActionIconMenuInfo": "ToolActionIconMenuInfo()", + "ShowArrowIcon": "ShowArrowIcon" + } + } + ], + "ToolActionIconMenuInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconMenuInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuInfoDescription()": "ToolActionIconMenuInfoDescription()", + "ToolActionIconMenuInfoDescription": "ToolActionIconMenuInfoDescription()", + "ShowArrowIcon": "ShowArrowIcon", + "Type": "Type" + } + } + ], + "ToolActionIconMenuInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionIconMenuInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuInfoDescriptionMetadata()": "ToolActionIconMenuInfoDescriptionMetadata()", + "ToolActionIconMenuInfoDescriptionMetadata": "ToolActionIconMenuInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconMenuVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionIconMenuVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuVisualData()": "ToolActionIconMenuVisualData()", + "ToolActionIconMenuVisualData": "ToolActionIconMenuVisualData()", + "ArrowIcon": "ArrowIcon", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionInfo()": "ToolActionInfo()", + "ToolActionInfo": "ToolActionInfo()", + "Actions": "Actions", + "CloseOnExecute": "CloseOnExecute", + "CommandArgument": "CommandArgument", + "CommandArgumentValue": "CommandArgumentValue", + "CommandId": "CommandId", + "ContextBindings": "ContextBindings", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "Height": "Height", + "IconCollectionName": "IconCollectionName", + "IconFill": "IconFill", + "IconHeight": "IconHeight", + "IconName": "IconName", + "IconStroke": "IconStroke", + "IconStrokeWidth": "IconStrokeWidth", + "IconViewBoxHeight": "IconViewBoxHeight", + "IconViewBoxLeft": "IconViewBoxLeft", + "IconViewBoxTop": "IconViewBoxTop", + "IconViewBoxWidth": "IconViewBoxWidth", + "IconWidth": "IconWidth", + "IsDisabled": "IsDisabled", + "IsHighlighted": "IsHighlighted", + "Name": "Name", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "ParentId": "ParentId", + "SubPanelRowHeight": "SubPanelRowHeight", + "Subtitle": "Subtitle", + "TextColor": "TextColor", + "Title": "Title" + } + } + ], + "ToolActionInfoDensity": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ToolActionInfoDensity", + "k": "enum", + "s": "enums" + } + ], + "ToolActionInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionInfoDescription()": "ToolActionInfoDescription()", + "ToolActionInfoDescription": "ToolActionInfoDescription()", + "Actions": "Actions", + "CloseOnExecute": "CloseOnExecute", + "CommandArgument": "CommandArgument", + "CommandArgumentValueRef": "CommandArgumentValueRef", + "CommandId": "CommandId", + "ContextBindings": "ContextBindings", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "Height": "Height", + "IconCollectionName": "IconCollectionName", + "IconFill": "IconFill", + "IconHeight": "IconHeight", + "IconName": "IconName", + "IconStroke": "IconStroke", + "IconStrokeWidth": "IconStrokeWidth", + "IconViewBoxHeight": "IconViewBoxHeight", + "IconViewBoxLeft": "IconViewBoxLeft", + "IconViewBoxTop": "IconViewBoxTop", + "IconViewBoxWidth": "IconViewBoxWidth", + "IconWidth": "IconWidth", + "IsDisabled": "IsDisabled", + "IsHighlighted": "IsHighlighted", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "ParentId": "ParentId", + "SubPanelRowHeight": "SubPanelRowHeight", + "Subtitle": "Subtitle", + "TextColor": "TextColor", + "Title": "Title", + "Type": "Type" + } + } + ], + "ToolActionInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionInfoDescriptionMetadata()": "ToolActionInfoDescriptionMetadata()", + "ToolActionInfoDescriptionMetadata": "ToolActionInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionLabel": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionLabel", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabel()": "ToolActionLabel()", + "ToolActionLabel": "ToolActionLabel()" + } + } + ], + "ToolActionLabelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionLabelDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelDescription()": "ToolActionLabelDescription()", + "ToolActionLabelDescription": "ToolActionLabelDescription()", + "Type": "Type" + } + } + ], + "ToolActionLabelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionLabelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelDescriptionMetadata()": "ToolActionLabelDescriptionMetadata()", + "ToolActionLabelDescriptionMetadata": "ToolActionLabelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionLabelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionLabelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelDescriptionModule()": "ToolActionLabelDescriptionModule()", + "ToolActionLabelDescriptionModule": "ToolActionLabelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionLabelInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionLabelInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelInfo()": "ToolActionLabelInfo()", + "ToolActionLabelInfo": "ToolActionLabelInfo()" + } + } + ], + "ToolActionLabelInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionLabelInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelInfoDescription()": "ToolActionLabelInfoDescription()", + "ToolActionLabelInfoDescription": "ToolActionLabelInfoDescription()", + "Type": "Type" + } + } + ], + "ToolActionLabelInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionLabelInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelInfoDescriptionMetadata()": "ToolActionLabelInfoDescriptionMetadata()", + "ToolActionLabelInfoDescriptionMetadata": "ToolActionLabelInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionLabelVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelVisualData()": "ToolActionLabelVisualData()", + "ToolActionLabelVisualData": "ToolActionLabelVisualData()", + "DrilldownIcon": "DrilldownIcon", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionNumberInput": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionNumberInput", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInput()": "ToolActionNumberInput()", + "ToolActionNumberInput": "ToolActionNumberInput()", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "ToolActionNumberInputDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionNumberInputDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputDescription()": "ToolActionNumberInputDescription()", + "ToolActionNumberInputDescription": "ToolActionNumberInputDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionNumberInputDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionNumberInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputDescriptionMetadata()": "ToolActionNumberInputDescriptionMetadata()", + "ToolActionNumberInputDescriptionMetadata": "ToolActionNumberInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionNumberInputDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionNumberInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputDescriptionModule()": "ToolActionNumberInputDescriptionModule()", + "ToolActionNumberInputDescriptionModule": "ToolActionNumberInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionNumberInputInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionNumberInputInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputInfo()": "ToolActionNumberInputInfo()", + "ToolActionNumberInputInfo": "ToolActionNumberInputInfo()", + "Value": "Value" + } + } + ], + "ToolActionNumberInputInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionNumberInputInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputInfoDescription()": "ToolActionNumberInputInfoDescription()", + "ToolActionNumberInputInfoDescription": "ToolActionNumberInputInfoDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionNumberInputInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionNumberInputInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputInfoDescriptionMetadata()": "ToolActionNumberInputInfoDescriptionMetadata()", + "ToolActionNumberInputInfoDescriptionMetadata": "ToolActionNumberInputInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionNumberInputVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionNumberInputVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputVisualData()": "ToolActionNumberInputVisualData()", + "ToolActionNumberInputVisualData": "ToolActionNumberInputVisualData()", + "Input": "Input", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionPerformedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionPerformedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolActionPerformedEventArgs()": "ToolActionPerformedEventArgs()", + "ToolActionPerformedEventArgs": "ToolActionPerformedEventArgs()", + "Detail": "Detail", + "DetailCollection": "DetailCollection", + "IsAggregate": "IsAggregate", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionPerformedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionPerformedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionPerformedEventArgsDescription()": "ToolActionPerformedEventArgsDescription()", + "ToolActionPerformedEventArgsDescription": "ToolActionPerformedEventArgsDescription()", + "Detail": "Detail", + "DetailCollection": "DetailCollection", + "IsAggregate": "IsAggregate", + "Type": "Type" + } + } + ], + "ToolActionPerformedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionPerformedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionPerformedEventArgsDescriptionMetadata()": "ToolActionPerformedEventArgsDescriptionMetadata()", + "ToolActionPerformedEventArgsDescriptionMetadata": "ToolActionPerformedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionPopupOpeningEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionPopupOpeningEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolActionPopupOpeningEventArgs()": "ToolActionPopupOpeningEventArgs()", + "ToolActionPopupOpeningEventArgs": "ToolActionPopupOpeningEventArgs()", + "Cancel": "Cancel", + "SourceAction": "SourceAction", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionPopupOpeningEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionPopupOpeningEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionPopupOpeningEventArgsDescription()": "ToolActionPopupOpeningEventArgsDescription()", + "ToolActionPopupOpeningEventArgsDescription": "ToolActionPopupOpeningEventArgsDescription()", + "Cancel": "Cancel", + "SourceAction": "SourceAction", + "Type": "Type" + } + } + ], + "ToolActionPopupOpeningEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionPopupOpeningEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionPopupOpeningEventArgsDescriptionMetadata()": "ToolActionPopupOpeningEventArgsDescriptionMetadata()", + "ToolActionPopupOpeningEventArgsDescriptionMetadata": "ToolActionPopupOpeningEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadio": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionRadio", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadio()": "ToolActionRadio()", + "ToolActionRadio": "ToolActionRadio()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "Channel": "Channel", + "ChannelProperty": "ChannelProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "IsChecked": "IsChecked", + "IsCheckedProperty": "IsCheckedProperty", + "IsManual": "IsManual", + "IsManualProperty": "IsManualProperty", + "IsToggleable": "IsToggleable", + "IsToggleableProperty": "IsToggleableProperty", + "ShorthandTitle": "ShorthandTitle", + "ShorthandTitleProperty": "ShorthandTitleProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty" + } + } + ], + "ToolActionRadioDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioDescription()": "ToolActionRadioDescription()", + "ToolActionRadioDescription": "ToolActionRadioDescription()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "Channel": "Channel", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "IsChecked": "IsChecked", + "IsManual": "IsManual", + "IsToggleable": "IsToggleable", + "ShorthandTitle": "ShorthandTitle", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor" + } + } + ], + "ToolActionRadioDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioDescriptionMetadata()": "ToolActionRadioDescriptionMetadata()", + "ToolActionRadioDescriptionMetadata": "ToolActionRadioDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioDescriptionModule()": "ToolActionRadioDescriptionModule()", + "ToolActionRadioDescriptionModule": "ToolActionRadioDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioGroup": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionRadioGroup", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroup()": "ToolActionRadioGroup()", + "ToolActionRadioGroup": "ToolActionRadioGroup()", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ActualSelectedTextColorProperty": "ActualSelectedTextColorProperty", + "SelectedFontFamily": "SelectedFontFamily", + "SelectedFontFamilyProperty": "SelectedFontFamilyProperty", + "SelectedFontSize": "SelectedFontSize", + "SelectedFontSizeProperty": "SelectedFontSizeProperty", + "SelectedFontStyle": "SelectedFontStyle", + "SelectedFontStyleProperty": "SelectedFontStyleProperty", + "SelectedFontWeight": "SelectedFontWeight", + "SelectedFontWeightProperty": "SelectedFontWeightProperty", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorProperty": "SelectedTextColorProperty" + } + } + ], + "ToolActionRadioGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupDescription()": "ToolActionRadioGroupDescription()", + "ToolActionRadioGroupDescription": "ToolActionRadioGroupDescription()", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "SelectedFontFamily": "SelectedFontFamily", + "SelectedFontSize": "SelectedFontSize", + "SelectedFontStyle": "SelectedFontStyle", + "SelectedFontWeight": "SelectedFontWeight", + "SelectedTextColor": "SelectedTextColor", + "Type": "Type" + } + } + ], + "ToolActionRadioGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupDescriptionMetadata()": "ToolActionRadioGroupDescriptionMetadata()", + "ToolActionRadioGroupDescriptionMetadata": "ToolActionRadioGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupDescriptionModule()": "ToolActionRadioGroupDescriptionModule()", + "ToolActionRadioGroupDescriptionModule": "ToolActionRadioGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioGroupInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioGroupInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupInfo()": "ToolActionRadioGroupInfo()", + "ToolActionRadioGroupInfo": "ToolActionRadioGroupInfo()", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextStyle": "SelectedTextStyle" + } + } + ], + "ToolActionRadioGroupInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioGroupInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupInfoDescription()": "ToolActionRadioGroupInfoDescription()", + "ToolActionRadioGroupInfoDescription": "ToolActionRadioGroupInfoDescription()", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextStyle": "SelectedTextStyle", + "Type": "Type" + } + } + ], + "ToolActionRadioGroupInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioGroupInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupInfoDescriptionMetadata()": "ToolActionRadioGroupInfoDescriptionMetadata()", + "ToolActionRadioGroupInfoDescriptionMetadata": "ToolActionRadioGroupInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioGroupVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionRadioGroupVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupVisualData()": "ToolActionRadioGroupVisualData()", + "ToolActionRadioGroupVisualData": "ToolActionRadioGroupVisualData()", + "DropdownIcon": "DropdownIcon", + "SelectedTextLabel": "SelectedTextLabel", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionRadioInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioInfo()": "ToolActionRadioInfo()", + "ToolActionRadioInfo": "ToolActionRadioInfo()", + "Channel": "Channel", + "IsChecked": "IsChecked", + "IsToggleable": "IsToggleable", + "ShorthandTitle": "ShorthandTitle" + } + } + ], + "ToolActionRadioInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioInfoDescription()": "ToolActionRadioInfoDescription()", + "ToolActionRadioInfoDescription": "ToolActionRadioInfoDescription()", + "Channel": "Channel", + "IsChecked": "IsChecked", + "IsToggleable": "IsToggleable", + "ShorthandTitle": "ShorthandTitle", + "Type": "Type" + } + } + ], + "ToolActionRadioInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionRadioInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioInfoDescriptionMetadata()": "ToolActionRadioInfoDescriptionMetadata()", + "ToolActionRadioInfoDescriptionMetadata": "ToolActionRadioInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionRadioVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioVisualData()": "ToolActionRadioVisualData()", + "ToolActionRadioVisualData": "ToolActionRadioVisualData()", + "Checkbox": "Checkbox", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionSeparator": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionSeparator", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparator()": "ToolActionSeparator()", + "ToolActionSeparator": "ToolActionSeparator()", + "IsGroupHeaderSeparator": "IsGroupHeaderSeparator", + "IsGroupHeaderSeparatorProperty": "IsGroupHeaderSeparatorProperty", + "Size": "Size", + "SizeProperty": "SizeProperty" + } + } + ], + "ToolActionSeparatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorDescription()": "ToolActionSeparatorDescription()", + "ToolActionSeparatorDescription": "ToolActionSeparatorDescription()", + "IsGroupHeaderSeparator": "IsGroupHeaderSeparator", + "Size": "Size", + "Type": "Type" + } + } + ], + "ToolActionSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorDescriptionMetadata()": "ToolActionSeparatorDescriptionMetadata()", + "ToolActionSeparatorDescriptionMetadata": "ToolActionSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSeparatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorDescriptionModule()": "ToolActionSeparatorDescriptionModule()", + "ToolActionSeparatorDescriptionModule": "ToolActionSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSeparatorInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSeparatorInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorInfo()": "ToolActionSeparatorInfo()", + "ToolActionSeparatorInfo": "ToolActionSeparatorInfo()", + "IsGroupHeaderSeparator": "IsGroupHeaderSeparator", + "Size": "Size" + } + } + ], + "ToolActionSeparatorInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSeparatorInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorInfoDescription()": "ToolActionSeparatorInfoDescription()", + "ToolActionSeparatorInfoDescription": "ToolActionSeparatorInfoDescription()", + "IsGroupHeaderSeparator": "IsGroupHeaderSeparator", + "Size": "Size", + "Type": "Type" + } + } + ], + "ToolActionSeparatorInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSeparatorInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorInfoDescriptionMetadata()": "ToolActionSeparatorInfoDescriptionMetadata()", + "ToolActionSeparatorInfoDescriptionMetadata": "ToolActionSeparatorInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSeparatorVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionSeparatorVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorVisualData()": "ToolActionSeparatorVisualData()", + "ToolActionSeparatorVisualData": "ToolActionSeparatorVisualData()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionSubPanel": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionSubPanel", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanel()": "ToolActionSubPanel()", + "ToolActionSubPanel": "ToolActionSubPanel()", + "ItemSpacing": "ItemSpacing", + "ItemSpacingProperty": "ItemSpacingProperty" + } + } + ], + "ToolActionSubPanelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSubPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelDescription()": "ToolActionSubPanelDescription()", + "ToolActionSubPanelDescription": "ToolActionSubPanelDescription()", + "ItemSpacing": "ItemSpacing", + "Type": "Type" + } + } + ], + "ToolActionSubPanelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSubPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelDescriptionMetadata()": "ToolActionSubPanelDescriptionMetadata()", + "ToolActionSubPanelDescriptionMetadata": "ToolActionSubPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSubPanelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSubPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelDescriptionModule()": "ToolActionSubPanelDescriptionModule()", + "ToolActionSubPanelDescriptionModule": "ToolActionSubPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSubPanelInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSubPanelInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelInfo()": "ToolActionSubPanelInfo()", + "ToolActionSubPanelInfo": "ToolActionSubPanelInfo()", + "ItemSpacing": "ItemSpacing" + } + } + ], + "ToolActionSubPanelInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSubPanelInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelInfoDescription()": "ToolActionSubPanelInfoDescription()", + "ToolActionSubPanelInfoDescription": "ToolActionSubPanelInfoDescription()", + "ItemSpacing": "ItemSpacing", + "Type": "Type" + } + } + ], + "ToolActionSubPanelInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionSubPanelInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelInfoDescriptionMetadata()": "ToolActionSubPanelInfoDescriptionMetadata()", + "ToolActionSubPanelInfoDescriptionMetadata": "ToolActionSubPanelInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSubPanelVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionSubPanelVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelVisualData()": "ToolActionSubPanelVisualData()", + "ToolActionSubPanelVisualData": "ToolActionSubPanelVisualData()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "ToolPanel": "ToolPanel" + } + } + ], + "ToolActionTextInput": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionTextInput", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInput()": "ToolActionTextInput()", + "ToolActionTextInput": "ToolActionTextInput()", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "ToolActionTextInputDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionTextInputDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputDescription()": "ToolActionTextInputDescription()", + "ToolActionTextInputDescription": "ToolActionTextInputDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionTextInputDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionTextInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputDescriptionMetadata()": "ToolActionTextInputDescriptionMetadata()", + "ToolActionTextInputDescriptionMetadata": "ToolActionTextInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionTextInputDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionTextInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputDescriptionModule()": "ToolActionTextInputDescriptionModule()", + "ToolActionTextInputDescriptionModule": "ToolActionTextInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionTextInputInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionTextInputInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputInfo()": "ToolActionTextInputInfo()", + "ToolActionTextInputInfo": "ToolActionTextInputInfo()", + "Value": "Value" + } + } + ], + "ToolActionTextInputInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionTextInputInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputInfoDescription()": "ToolActionTextInputInfoDescription()", + "ToolActionTextInputInfoDescription": "ToolActionTextInputInfoDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionTextInputInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolActionTextInputInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputInfoDescriptionMetadata()": "ToolActionTextInputInfoDescriptionMetadata()", + "ToolActionTextInputInfoDescriptionMetadata": "ToolActionTextInputInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionTextInputVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionTextInputVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputVisualData()": "ToolActionTextInputVisualData()", + "ToolActionTextInputVisualData": "ToolActionTextInputVisualData()", + "Input": "Input", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ToolActionType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolActionVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionVisualData()": "ToolActionVisualData()", + "ToolActionVisualData": "ToolActionVisualData()", + "ActualBackgroundColor": "ActualBackgroundColor", + "Button": "Button", + "Container": "Container", + "Icon": "Icon", + "Id": "Id", + "Label": "Label", + "ListItem": "ListItem", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "SubTitle": "SubTitle", + "Type": "Type" + } + } + ], + "ToolbarDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolbarDescription", + "k": "class", + "s": "classes", + "m": { + "ToolbarDescription()": "ToolbarDescription()", + "ToolbarDescription": "ToolbarDescription()", + "AccentColor": "AccentColor", + "Actions": "Actions", + "ActualActions": "ActualActions", + "AutoGeneratedActions": "AutoGeneratedActions", + "Background": "Background", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "CheckboxListScrollbarActiveBackground": "CheckboxListScrollbarActiveBackground", + "CheckboxListScrollbarBackground": "CheckboxListScrollbarBackground", + "CheckboxListScrollbarHoverBackground": "CheckboxListScrollbarHoverBackground", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "DropdownClickBuffer": "DropdownClickBuffer", + "DropdownDelay": "DropdownDelay", + "GroupHeaderBackgroundColor": "GroupHeaderBackgroundColor", + "GroupHeaderFontFamily": "GroupHeaderFontFamily", + "GroupHeaderFontSize": "GroupHeaderFontSize", + "GroupHeaderFontStyle": "GroupHeaderFontStyle", + "GroupHeaderFontWeight": "GroupHeaderFontWeight", + "GroupHeaderSubtitleTextColor": "GroupHeaderSubtitleTextColor", + "GroupHeaderTextColor": "GroupHeaderTextColor", + "Height": "Height", + "HighlightColor": "HighlightColor", + "HighlightRadius": "HighlightRadius", + "HighlightWidth": "HighlightWidth", + "HoverBackgroundColor": "HoverBackgroundColor", + "IconFill": "IconFill", + "IconStroke": "IconStroke", + "MenuArrowStroke": "MenuArrowStroke", + "OnCommandRef": "OnCommandRef", + "Orientation": "Orientation", + "RowHeight": "RowHeight", + "ScrollbarStyle": "ScrollbarStyle", + "SeparatorBackgroundColor": "SeparatorBackgroundColor", + "SeparatorHorizontalPaddingBottom": "SeparatorHorizontalPaddingBottom", + "SeparatorHorizontalPaddingLeft": "SeparatorHorizontalPaddingLeft", + "SeparatorHorizontalPaddingRight": "SeparatorHorizontalPaddingRight", + "SeparatorHorizontalPaddingTop": "SeparatorHorizontalPaddingTop", + "SeparatorVerticalPaddingBottom": "SeparatorVerticalPaddingBottom", + "SeparatorVerticalPaddingLeft": "SeparatorVerticalPaddingLeft", + "SeparatorVerticalPaddingRight": "SeparatorVerticalPaddingRight", + "SeparatorVerticalPaddingTop": "SeparatorVerticalPaddingTop", + "ShowOnHover": "ShowOnHover", + "ShowTooltipOnHover": "ShowTooltipOnHover", + "StopPropagation": "StopPropagation", + "SubMenuClosingRef": "SubMenuClosingRef", + "SubMenuOpeningRef": "SubMenuOpeningRef", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubmenuBackgroundColor": "SubmenuBackgroundColor", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleTextColor": "SubtitleTextColor", + "TargetRef": "TargetRef", + "TextColor": "TextColor", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipCornerRadius": "ToolTipCornerRadius", + "ToolTipElevation": "ToolTipElevation", + "ToolTipTextColor": "ToolTipTextColor", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor", + "Width": "Width" + } + } + ], + "ToolbarDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolbarDescriptionMetadata()": "ToolbarDescriptionMetadata()", + "ToolbarDescriptionMetadata": "ToolbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolbarDescriptionModule()": "ToolbarDescriptionModule()", + "ToolbarDescriptionModule": "ToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolbarOrientation": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ToolbarOrientation", + "k": "enum", + "s": "enums" + } + ], + "ToolbarSubMenuClosingEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolbarSubMenuClosingEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuClosingEventArgs()": "ToolbarSubMenuClosingEventArgs()", + "ToolbarSubMenuClosingEventArgs": "ToolbarSubMenuClosingEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolbarSubMenuClosingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolbarSubMenuClosingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuClosingEventArgsDescription()": "ToolbarSubMenuClosingEventArgsDescription()", + "ToolbarSubMenuClosingEventArgsDescription": "ToolbarSubMenuClosingEventArgsDescription()", + "Type": "Type" + } + } + ], + "ToolbarSubMenuClosingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolbarSubMenuClosingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuClosingEventArgsDescriptionMetadata()": "ToolbarSubMenuClosingEventArgsDescriptionMetadata()", + "ToolbarSubMenuClosingEventArgsDescriptionMetadata": "ToolbarSubMenuClosingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolbarSubMenuOpeningEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolbarSubMenuOpeningEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuOpeningEventArgs()": "ToolbarSubMenuOpeningEventArgs()", + "ToolbarSubMenuOpeningEventArgs": "ToolbarSubMenuOpeningEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolbarSubMenuOpeningEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolbarSubMenuOpeningEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuOpeningEventArgsDescription()": "ToolbarSubMenuOpeningEventArgsDescription()", + "ToolbarSubMenuOpeningEventArgsDescription": "ToolbarSubMenuOpeningEventArgsDescription()", + "Type": "Type" + } + } + ], + "ToolbarSubMenuOpeningEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolbarSubMenuOpeningEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuOpeningEventArgsDescriptionMetadata()": "ToolbarSubMenuOpeningEventArgsDescriptionMetadata()", + "ToolbarSubMenuOpeningEventArgsDescriptionMetadata": "ToolbarSubMenuOpeningEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolCommand": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommand", + "k": "class", + "s": "classes", + "m": { + "ToolCommand()": "ToolCommand()", + "ToolCommand": "ToolCommand()", + "ArgumentsList": "ArgumentsList", + "CommandId": "CommandId" + } + } + ], + "ToolCommandArgument": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommandArgument", + "k": "class", + "s": "classes", + "m": { + "ToolCommandArgument()": "ToolCommandArgument()", + "ToolCommandArgument": "ToolCommandArgument()", + "ArgumentName": "ArgumentName", + "Value": "Value" + } + } + ], + "ToolCommandArgumentCollection": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommandArgumentCollection", + "k": "class", + "s": "classes", + "m": { + "ToolCommandArgumentCollection()": "ToolCommandArgumentCollection()", + "ToolCommandArgumentCollection": "ToolCommandArgumentCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolCommandArgumentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommandArgumentDescription", + "k": "class", + "s": "classes", + "m": { + "ToolCommandArgumentDescription()": "ToolCommandArgumentDescription()", + "ToolCommandArgumentDescription": "ToolCommandArgumentDescription()", + "ArgumentName": "ArgumentName", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolCommandArgumentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommandArgumentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolCommandArgumentDescriptionMetadata()": "ToolCommandArgumentDescriptionMetadata()", + "ToolCommandArgumentDescriptionMetadata": "ToolCommandArgumentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolCommandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommandDescription", + "k": "class", + "s": "classes", + "m": { + "ToolCommandDescription()": "ToolCommandDescription()", + "ToolCommandDescription": "ToolCommandDescription()", + "ArgumentsList": "ArgumentsList", + "CommandId": "CommandId", + "Type": "Type" + } + } + ], + "ToolCommandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolCommandDescriptionMetadata()": "ToolCommandDescriptionMetadata()", + "ToolCommandDescriptionMetadata": "ToolCommandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolCommandEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolCommandEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolCommandEventArgs()": "ToolCommandEventArgs()", + "ToolCommandEventArgs": "ToolCommandEventArgs()", + "CloseOnExecute": "CloseOnExecute", + "Command": "Command", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolCommandEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommandEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolCommandEventArgsDescription()": "ToolCommandEventArgsDescription()", + "ToolCommandEventArgsDescription": "ToolCommandEventArgsDescription()", + "CloseOnExecute": "CloseOnExecute", + "Command": "Command", + "Type": "Type" + } + } + ], + "ToolCommandEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolCommandEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolCommandEventArgsDescriptionMetadata()": "ToolCommandEventArgsDescriptionMetadata()", + "ToolCommandEventArgsDescriptionMetadata": "ToolCommandEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolCommandExecutionState": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ToolCommandExecutionState", + "k": "enum", + "s": "enums" + } + ], + "ToolCommandStateType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ToolCommandStateType", + "k": "enum", + "s": "enums" + } + ], + "ToolContextBinding": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolContextBinding", + "k": "class", + "s": "classes", + "m": { + "ToolContextBinding()": "ToolContextBinding()", + "ToolContextBinding": "ToolContextBinding()", + "BindingMode": "BindingMode", + "ContextKey": "ContextKey", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "PropertyName": "PropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolContextBindingCollection": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolContextBindingCollection", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingCollection()": "ToolContextBindingCollection()", + "ToolContextBindingCollection": "ToolContextBindingCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolContextBindingDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolContextBindingDescription", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingDescription()": "ToolContextBindingDescription()", + "ToolContextBindingDescription": "ToolContextBindingDescription()", + "BindingMode": "BindingMode", + "ContextKey": "ContextKey", + "PropertyName": "PropertyName", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type" + } + } + ], + "ToolContextBindingDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolContextBindingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingDescriptionMetadata()": "ToolContextBindingDescriptionMetadata()", + "ToolContextBindingDescriptionMetadata": "ToolContextBindingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolContextBindingInfo": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolContextBindingInfo", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingInfo()": "ToolContextBindingInfo()", + "ToolContextBindingInfo": "ToolContextBindingInfo()", + "BindingMode": "BindingMode", + "ContextKey": "ContextKey", + "PropertyName": "PropertyName" + } + } + ], + "ToolContextBindingInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolContextBindingInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingInfoDescription()": "ToolContextBindingInfoDescription()", + "ToolContextBindingInfoDescription": "ToolContextBindingInfoDescription()", + "BindingMode": "BindingMode", + "ContextKey": "ContextKey", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "ToolContextBindingInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolContextBindingInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingInfoDescriptionMetadata()": "ToolContextBindingInfoDescriptionMetadata()", + "ToolContextBindingInfoDescriptionMetadata": "ToolContextBindingInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolContextBindingMode": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ToolContextBindingMode", + "k": "enum", + "s": "enums" + } + ], + "ToolContextValueType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/ToolContextValueType", + "k": "enum", + "s": "enums" + } + ], + "ToolPanelContentRefreshedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolPanelContentRefreshedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContentRefreshedEventArgs()": "ToolPanelContentRefreshedEventArgs()", + "ToolPanelContentRefreshedEventArgs": "ToolPanelContentRefreshedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolPanelContentRefreshedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelContentRefreshedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContentRefreshedEventArgsDescription()": "ToolPanelContentRefreshedEventArgsDescription()", + "ToolPanelContentRefreshedEventArgsDescription": "ToolPanelContentRefreshedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ToolPanelContentRefreshedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelContentRefreshedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContentRefreshedEventArgsDescriptionMetadata()": "ToolPanelContentRefreshedEventArgsDescriptionMetadata()", + "ToolPanelContentRefreshedEventArgsDescriptionMetadata": "ToolPanelContentRefreshedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelContextChangedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolPanelContextChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextChangedEventArgs()": "ToolPanelContextChangedEventArgs()", + "ToolPanelContextChangedEventArgs": "ToolPanelContextChangedEventArgs()", + "ContextKey": "ContextKey", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolPanelContextChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelContextChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextChangedEventArgsDescription()": "ToolPanelContextChangedEventArgsDescription()", + "ToolPanelContextChangedEventArgsDescription": "ToolPanelContextChangedEventArgsDescription()", + "ContextKey": "ContextKey", + "NewValueRef": "NewValueRef", + "OldValueRef": "OldValueRef", + "Type": "Type" + } + } + ], + "ToolPanelContextChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelContextChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextChangedEventArgsDescriptionMetadata()": "ToolPanelContextChangedEventArgsDescriptionMetadata()", + "ToolPanelContextChangedEventArgsDescriptionMetadata": "ToolPanelContextChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelContextSwappedEventArgs": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolPanelContextSwappedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextSwappedEventArgs()": "ToolPanelContextSwappedEventArgs()", + "ToolPanelContextSwappedEventArgs": "ToolPanelContextSwappedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolPanelContextSwappedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelContextSwappedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextSwappedEventArgsDescription()": "ToolPanelContextSwappedEventArgsDescription()", + "ToolPanelContextSwappedEventArgsDescription": "ToolPanelContextSwappedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ToolPanelContextSwappedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelContextSwappedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextSwappedEventArgsDescriptionMetadata()": "ToolPanelContextSwappedEventArgsDescriptionMetadata()", + "ToolPanelContextSwappedEventArgsDescriptionMetadata": "ToolPanelContextSwappedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ToolPanelDescription()": "ToolPanelDescription()", + "ToolPanelDescription": "ToolPanelDescription()", + "AccentColor": "AccentColor", + "Actions": "Actions", + "ActualAccentColor": "ActualAccentColor", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualDensity": "ActualDensity", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualDropdownDelay": "ActualDropdownDelay", + "ActualGroupHeaderBackgroundColor": "ActualGroupHeaderBackgroundColor", + "ActualGroupHeaderSeparatorBackgroundColor": "ActualGroupHeaderSeparatorBackgroundColor", + "ActualGroupHeaderSubtitleTextColor": "ActualGroupHeaderSubtitleTextColor", + "ActualGroupHeaderTextColor": "ActualGroupHeaderTextColor", + "ActualHighlightColor": "ActualHighlightColor", + "ActualHighlightRadius": "ActualHighlightRadius", + "ActualHighlightWidth": "ActualHighlightWidth", + "ActualHoverBackgroundColor": "ActualHoverBackgroundColor", + "ActualIconFill": "ActualIconFill", + "ActualIconStroke": "ActualIconStroke", + "ActualMenuArrowStroke": "ActualMenuArrowStroke", + "ActualSeparatorBackgroundColor": "ActualSeparatorBackgroundColor", + "ActualSeparatorHorizontalPaddingBottom": "ActualSeparatorHorizontalPaddingBottom", + "ActualSeparatorHorizontalPaddingLeft": "ActualSeparatorHorizontalPaddingLeft", + "ActualSeparatorHorizontalPaddingRight": "ActualSeparatorHorizontalPaddingRight", + "ActualSeparatorHorizontalPaddingTop": "ActualSeparatorHorizontalPaddingTop", + "ActualSeparatorVerticalPaddingBottom": "ActualSeparatorVerticalPaddingBottom", + "ActualSeparatorVerticalPaddingLeft": "ActualSeparatorVerticalPaddingLeft", + "ActualSeparatorVerticalPaddingRight": "ActualSeparatorVerticalPaddingRight", + "ActualSeparatorVerticalPaddingTop": "ActualSeparatorVerticalPaddingTop", + "ActualSubmenuBackgroundColor": "ActualSubmenuBackgroundColor", + "ActualSubtitleTextColor": "ActualSubtitleTextColor", + "ActualTextColor": "ActualTextColor", + "ActualToolTipBackgroundColor": "ActualToolTipBackgroundColor", + "ActualToolTipCornerRadius": "ActualToolTipCornerRadius", + "ActualToolTipElevation": "ActualToolTipElevation", + "ActualToolTipTextColor": "ActualToolTipTextColor", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "CheckboxListScrollbarActiveBackground": "CheckboxListScrollbarActiveBackground", + "CheckboxListScrollbarBackground": "CheckboxListScrollbarBackground", + "CheckboxListScrollbarHoverBackground": "CheckboxListScrollbarHoverBackground", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "ContentRefreshedRef": "ContentRefreshedRef", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "DropdownClickBuffer": "DropdownClickBuffer", + "DropdownDelay": "DropdownDelay", + "GroupHeaderBackgroundColor": "GroupHeaderBackgroundColor", + "GroupHeaderFontFamily": "GroupHeaderFontFamily", + "GroupHeaderFontSize": "GroupHeaderFontSize", + "GroupHeaderFontStyle": "GroupHeaderFontStyle", + "GroupHeaderFontWeight": "GroupHeaderFontWeight", + "GroupHeaderSeparatorBackgroundColor": "GroupHeaderSeparatorBackgroundColor", + "GroupHeaderSubtitleTextColor": "GroupHeaderSubtitleTextColor", + "GroupHeaderTextColor": "GroupHeaderTextColor", + "HighlightColor": "HighlightColor", + "HighlightRadius": "HighlightRadius", + "HighlightWidth": "HighlightWidth", + "HoverBackgroundColor": "HoverBackgroundColor", + "IconFill": "IconFill", + "IconStroke": "IconStroke", + "ItemSpacing": "ItemSpacing", + "MenuArrowStroke": "MenuArrowStroke", + "NestedActionMode": "NestedActionMode", + "OnCommandRef": "OnCommandRef", + "Orientation": "Orientation", + "RowHeight": "RowHeight", + "ScrollbarStyle": "ScrollbarStyle", + "SeparatorBackgroundColor": "SeparatorBackgroundColor", + "SeparatorHorizontalPaddingBottom": "SeparatorHorizontalPaddingBottom", + "SeparatorHorizontalPaddingLeft": "SeparatorHorizontalPaddingLeft", + "SeparatorHorizontalPaddingRight": "SeparatorHorizontalPaddingRight", + "SeparatorHorizontalPaddingTop": "SeparatorHorizontalPaddingTop", + "SeparatorVerticalPaddingBottom": "SeparatorVerticalPaddingBottom", + "SeparatorVerticalPaddingLeft": "SeparatorVerticalPaddingLeft", + "SeparatorVerticalPaddingRight": "SeparatorVerticalPaddingRight", + "SeparatorVerticalPaddingTop": "SeparatorVerticalPaddingTop", + "ShowOnHover": "ShowOnHover", + "ShowTooltipOnHover": "ShowTooltipOnHover", + "StopPropagation": "StopPropagation", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubmenuBackgroundColor": "SubmenuBackgroundColor", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleTextColor": "SubtitleTextColor", + "TextColor": "TextColor", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipCornerRadius": "ToolTipCornerRadius", + "ToolTipElevation": "ToolTipElevation", + "ToolTipTextColor": "ToolTipTextColor", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor" + } + } + ], + "ToolPanelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolPanelDescriptionMetadata()": "ToolPanelDescriptionMetadata()", + "ToolPanelDescriptionMetadata": "ToolPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ToolPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolPanelDescriptionModule()": "ToolPanelDescriptionModule()", + "ToolPanelDescriptionModule": "ToolPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelDropdownMenuVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolPanelDropdownMenuVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolPanelDropdownMenuVisualData()": "ToolPanelDropdownMenuVisualData()", + "ToolPanelDropdownMenuVisualData": "ToolPanelDropdownMenuVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "ToolPanelVisualData": "ToolPanelVisualData" + } + } + ], + "ToolPanelOrientation": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/enums/ToolPanelOrientation", + "k": "enum", + "s": "enums" + } + ], + "ToolPanelVisualData": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/ToolPanelVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolPanelVisualData()": "ToolPanelVisualData()", + "ToolPanelVisualData": "ToolPanelVisualData()", + "Actions": "Actions", + "DropdownMenus": "DropdownMenus", + "ListPanel": "ListPanel", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "TooltipContainerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TooltipContainerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TooltipContainerDescriptionModule()": "TooltipContainerDescriptionModule()", + "TooltipContainerDescriptionModule": "TooltipContainerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TooltipContainerExtendedDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TooltipContainerExtendedDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TooltipContainerExtendedDescriptionModule()": "TooltipContainerExtendedDescriptionModule()", + "TooltipContainerExtendedDescriptionModule": "TooltipContainerExtendedDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolTipItemVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/ToolTipItemVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolTipItemVisualData()": "ToolTipItemVisualData()", + "ToolTipItemVisualData": "ToolTipItemVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type" + } + } + ], + "ToolTipType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ToolTipType", + "k": "enum", + "s": "enums" + } + ], + "TrailingTwelveMonthsExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TrailingTwelveMonthsExpression", + "k": "class", + "s": "classes", + "m": { + "TrailingTwelveMonthsExpression(FilterExpression)": "TrailingTwelveMonthsExpression(FilterExpression)", + "TrailingTwelveMonthsExpression": "TrailingTwelveMonthsExpression(FilterExpression)", + "TrailingTwelveMonthsExpression(string)": "TrailingTwelveMonthsExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "TrailingTwelveMonthsExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TrailingTwelveMonthsExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "TrailingTwelveMonthsExpressionDescription()": "TrailingTwelveMonthsExpressionDescription()", + "TrailingTwelveMonthsExpressionDescription": "TrailingTwelveMonthsExpressionDescription()", + "Type": "Type" + } + } + ], + "TrailingTwelveMonthsExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TrailingTwelveMonthsExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TrailingTwelveMonthsExpressionDescriptionMetadata()": "TrailingTwelveMonthsExpressionDescriptionMetadata()", + "TrailingTwelveMonthsExpressionDescriptionMetadata": "TrailingTwelveMonthsExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Transaction": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Transaction", + "k": "class", + "s": "classes", + "m": { + "Transaction()": "Transaction()", + "Transaction": "Transaction()", + "Error": "Error", + "ID": "ID", + "TransactionID": "TransactionID", + "Type": "Type", + "Value": "Value" + } + } + ], + "TransactionCommit": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TransactionCommit", + "k": "class", + "s": "classes", + "m": { + "TransactionCommit()": "TransactionCommit()", + "TransactionCommit": "TransactionCommit()", + "Changes": "Changes", + "ID": "ID" + } + } + ], + "TransactionEvent": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/TransactionEvent", + "k": "enum", + "s": "enums" + } + ], + "TransactionHistory": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TransactionHistory", + "k": "class", + "s": "classes", + "m": { + "TransactionHistory()": "TransactionHistory()", + "TransactionHistory": "TransactionHistory()", + "Transactions": "Transactions" + } + } + ], + "TransactionPendingState": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/TransactionPendingState", + "k": "enum", + "s": "enums" + } + ], + "TransactionService": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TransactionService", + "k": "class", + "s": "classes", + "m": { + "TransactionService(Action, Func, IEqualityComparer)": "TransactionService(Action, Func, IEqualityComparer)", + "TransactionService": "TransactionService(Action, Func, IEqualityComparer)", + "AcceptCommit(int)": "AcceptCommit(int)", + "AcceptCommit": "AcceptCommit(int)", + "Add(Transaction, bool)": "Add(Transaction, bool)", + "Add": "Add(Transaction, bool)", + "CanRedo": "CanRedo", + "CanUndo": "CanUndo", + "Clear(bool, object)": "Clear(bool, object)", + "Clear": "Clear(bool, object)", + "Commit(bool, bool)": "Commit(bool, bool)", + "Commit": "Commit(bool, bool)", + "EndPending(bool)": "EndPending(bool)", + "EndPending": "EndPending(bool)", + "GetAggregatedChanges(int)": "GetAggregatedChanges(int)", + "GetAggregatedChanges": "GetAggregatedChanges(int)", + "GetLatestStateFromPendingCommits(object)": "GetLatestStateFromPendingCommits(object)", + "GetLatestStateFromPendingCommits": "GetLatestStateFromPendingCommits(object)", + "GetPendingCommit(int)": "GetPendingCommit(int)", + "GetPendingCommit": "GetPendingCommit(int)", + "GetPendingState(object)": "GetPendingState(object)", + "GetPendingState": "GetPendingState(object)", + "GetPendingTransactions(object)": "GetPendingTransactions(object)", + "GetPendingTransactions": "GetPendingTransactions(object)", + "GetState(object)": "GetState(object)", + "GetState": "GetState(object)", + "IsEnabled": "IsEnabled", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "Redo()": "Redo()", + "Redo": "Redo()", + "RejectCommit(int)": "RejectCommit(int)", + "RejectCommit": "RejectCommit(int)", + "SavePendingTransaction(int)": "SavePendingTransaction(int)", + "SavePendingTransaction": "SavePendingTransaction(int)", + "Undo()": "Undo()", + "Undo": "Undo()", + "UpdateState(Dictionary, Transaction)": "UpdateState(Dictionary, Transaction)", + "UpdateState": "UpdateState(Dictionary, Transaction)", + "VerifyAddedTransaction(Dictionary, Transaction)": "VerifyAddedTransaction(Dictionary, Transaction)", + "VerifyAddedTransaction": "VerifyAddedTransaction(Dictionary, Transaction)" + } + } + ], + "TransactionState": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TransactionState", + "k": "class", + "s": "classes", + "m": { + "TransactionState(object, TransactionType, object)": "TransactionState(object, TransactionType, object)", + "TransactionState": "TransactionState(object, TransactionType, object)", + "ID": "ID", + "TransactionType": "TransactionType", + "Value": "Value", + "Version": "Version" + } + } + ], + "TransactionStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TransactionStateDescription", + "k": "class", + "s": "classes", + "m": { + "TransactionStateDescription()": "TransactionStateDescription()", + "TransactionStateDescription": "TransactionStateDescription()", + "IdRef": "IdRef", + "TransactionType": "TransactionType", + "Type": "Type", + "ValueRef": "ValueRef", + "VersionRef": "VersionRef" + } + } + ], + "TransactionStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TransactionStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TransactionStateDescriptionMetadata()": "TransactionStateDescriptionMetadata()", + "TransactionStateDescriptionMetadata": "TransactionStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TransactionType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/TransactionType", + "k": "enum", + "s": "enums" + } + ], + "TransitionInSpeedType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/TransitionInSpeedType", + "k": "enum", + "s": "enums" + } + ], + "TransitionOutCompletedEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TransitionOutCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "TransitionOutCompletedEventArgs()": "TransitionOutCompletedEventArgs()", + "TransitionOutCompletedEventArgs": "TransitionOutCompletedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TransitionOutCompletedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TransitionOutCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TransitionOutCompletedEventArgsDescription()": "TransitionOutCompletedEventArgsDescription()", + "TransitionOutCompletedEventArgsDescription": "TransitionOutCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "TransitionOutCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TransitionOutCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TransitionOutCompletedEventArgsDescriptionMetadata()": "TransitionOutCompletedEventArgsDescriptionMetadata()", + "TransitionOutCompletedEventArgsDescriptionMetadata": "TransitionOutCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TransitionOutSpeedType": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/TransitionOutSpeedType", + "k": "enum", + "s": "enums" + } + ], + "TreemapDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapDescription()": "TreemapDescription()", + "TreemapDescription": "TreemapDescription()", + "ActualHighlightingMode": "ActualHighlightingMode", + "ActualInteractionPixelScalingRatio": "ActualInteractionPixelScalingRatio", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "Background": "Background", + "BreadcrumbSequence": "BreadcrumbSequence", + "CustomValueMemberPath": "CustomValueMemberPath", + "DarkTextColor": "DarkTextColor", + "DataSourceRef": "DataSourceRef", + "FillBrushes": "FillBrushes", + "FillScaleLogarithmBase": "FillScaleLogarithmBase", + "FillScaleMaximumValue": "FillScaleMaximumValue", + "FillScaleMinimumValue": "FillScaleMinimumValue", + "FillScaleMode": "FillScaleMode", + "FocusItemRef": "FocusItemRef", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HeaderBackground": "HeaderBackground", + "HeaderDarkTextColor": "HeaderDarkTextColor", + "HeaderDisplayMode": "HeaderDisplayMode", + "HeaderFontFamily": "HeaderFontFamily", + "HeaderFontSize": "HeaderFontSize", + "HeaderFontStyle": "HeaderFontStyle", + "HeaderFontWeight": "HeaderFontWeight", + "HeaderHeight": "HeaderHeight", + "HeaderHoverBackground": "HeaderHoverBackground", + "HeaderHoverDarkTextColor": "HeaderHoverDarkTextColor", + "HeaderHoverTextColor": "HeaderHoverTextColor", + "HeaderLabelBottomMargin": "HeaderLabelBottomMargin", + "HeaderLabelLeftMargin": "HeaderLabelLeftMargin", + "HeaderLabelRightMargin": "HeaderLabelRightMargin", + "HeaderLabelTopMargin": "HeaderLabelTopMargin", + "HeaderTextColor": "HeaderTextColor", + "Height": "Height", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "HighlightedValueOpacity": "HighlightedValueOpacity", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingMode": "HighlightingMode", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "IdMemberPath": "IdMemberPath", + "InteractionPixelScalingRatio": "InteractionPixelScalingRatio", + "IsFillScaleLogarithmic": "IsFillScaleLogarithmic", + "LabelBottomMargin": "LabelBottomMargin", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelHorizontalFitMode": "LabelHorizontalFitMode", + "LabelLeftMargin": "LabelLeftMargin", + "LabelMemberPath": "LabelMemberPath", + "LabelRightMargin": "LabelRightMargin", + "LabelTopMargin": "LabelTopMargin", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVerticalFitMode": "LabelVerticalFitMode", + "LayoutOrientation": "LayoutOrientation", + "LayoutType": "LayoutType", + "MinimumDisplaySize": "MinimumDisplaySize", + "NodeOpacity": "NodeOpacity", + "NodePointerEnterRef": "NodePointerEnterRef", + "NodePointerLeaveRef": "NodePointerLeaveRef", + "NodePointerOverRef": "NodePointerOverRef", + "NodePointerPressedRef": "NodePointerPressedRef", + "NodePointerReleasedRef": "NodePointerReleasedRef", + "NodeRenderStylingRef": "NodeRenderStylingRef", + "NodeStylingRef": "NodeStylingRef", + "Outline": "Outline", + "OverlayHeaderBackground": "OverlayHeaderBackground", + "OverlayHeaderHoverBackground": "OverlayHeaderHoverBackground", + "OverlayHeaderLabelBottomMargin": "OverlayHeaderLabelBottomMargin", + "OverlayHeaderLabelLeftMargin": "OverlayHeaderLabelLeftMargin", + "OverlayHeaderLabelRightMargin": "OverlayHeaderLabelRightMargin", + "OverlayHeaderLabelTopMargin": "OverlayHeaderLabelTopMargin", + "ParentIdMemberPath": "ParentIdMemberPath", + "ParentNodeBottomMargin": "ParentNodeBottomMargin", + "ParentNodeBottomPadding": "ParentNodeBottomPadding", + "ParentNodeLeftMargin": "ParentNodeLeftMargin", + "ParentNodeLeftPadding": "ParentNodeLeftPadding", + "ParentNodeRightMargin": "ParentNodeRightMargin", + "ParentNodeRightPadding": "ParentNodeRightPadding", + "ParentNodeTopMargin": "ParentNodeTopMargin", + "ParentNodeTopPadding": "ParentNodeTopPadding", + "PixelScalingRatio": "PixelScalingRatio", + "RootTitle": "RootTitle", + "StrokeThickness": "StrokeThickness", + "StyleMappings": "StyleMappings", + "TextColor": "TextColor", + "TransitionDuration": "TransitionDuration", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath", + "Width": "Width" + } + } + ], + "TreemapDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapDescriptionMetadata()": "TreemapDescriptionMetadata()", + "TreemapDescriptionMetadata": "TreemapDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TreemapDescriptionModule()": "TreemapDescriptionModule()", + "TreemapDescriptionModule": "TreemapDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapFillScaleMode": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapFillScaleMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapHeaderDisplayMode": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapHeaderDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapHighlightedValueDisplayMode": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapHighlightedValueDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapHighlightingMode": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapHighlightingMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapLabelHorizontalFitMode": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapLabelHorizontalFitMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapLabelVerticalFitMode": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapLabelVerticalFitMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapLabelVisualData": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "TreemapLabelVisualData()": "TreemapLabelVisualData()", + "TreemapLabelVisualData": "TreemapLabelVisualData()", + "Appearance": "Appearance", + "LabelPosition": "LabelPosition", + "LabelSize": "LabelSize", + "LabelValue": "LabelValue", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "TreemapLayoutType": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapLayoutType", + "k": "enum", + "s": "enums" + } + ], + "TreemapNodePointerEventArgs": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapNodePointerEventArgs", + "k": "class", + "s": "classes", + "m": { + "TreemapNodePointerEventArgs()": "TreemapNodePointerEventArgs()", + "TreemapNodePointerEventArgs": "TreemapNodePointerEventArgs()", + "CustomValue": "CustomValue", + "IsHandled": "IsHandled", + "IsOverHeader": "IsOverHeader", + "IsRightButton": "IsRightButton", + "Item": "Item", + "Label": "Label", + "ParentItem": "ParentItem", + "ParentLabel": "ParentLabel", + "ParentSum": "ParentSum", + "ParentValue": "ParentValue", + "Position": "Position", + "Sum": "Sum", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TreemapNodePointerEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodePointerEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapNodePointerEventArgsDescription()": "TreemapNodePointerEventArgsDescription()", + "TreemapNodePointerEventArgsDescription": "TreemapNodePointerEventArgsDescription()", + "CustomValueRef": "CustomValueRef", + "IsHandled": "IsHandled", + "IsOverHeader": "IsOverHeader", + "IsRightButton": "IsRightButton", + "ItemRef": "ItemRef", + "Label": "Label", + "ParentItemRef": "ParentItemRef", + "ParentLabel": "ParentLabel", + "ParentSum": "ParentSum", + "ParentValue": "ParentValue", + "Position": "Position", + "Sum": "Sum", + "Type": "Type", + "Value": "Value" + } + } + ], + "TreemapNodePointerEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodePointerEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapNodePointerEventArgsDescriptionMetadata()": "TreemapNodePointerEventArgsDescriptionMetadata()", + "TreemapNodePointerEventArgsDescriptionMetadata": "TreemapNodePointerEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyle": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapNodeStyle", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyle()": "TreemapNodeStyle()", + "TreemapNodeStyle": "TreemapNodeStyle()", + "FadeOpacity": "FadeOpacity", + "FadeOpacityProperty": "FadeOpacityProperty", + "Fill": "Fill", + "FillProperty": "FillProperty", + "HeaderBackground": "HeaderBackground", + "HeaderBackgroundProperty": "HeaderBackgroundProperty", + "HeaderHeight": "HeaderHeight", + "HeaderHeightProperty": "HeaderHeightProperty", + "HeaderHoverBackground": "HeaderHoverBackground", + "HeaderHoverBackgroundProperty": "HeaderHoverBackgroundProperty", + "HeaderHoverTextColor": "HeaderHoverTextColor", + "HeaderHoverTextColorProperty": "HeaderHoverTextColorProperty", + "HeaderLabelBottomMargin": "HeaderLabelBottomMargin", + "HeaderLabelBottomMarginProperty": "HeaderLabelBottomMarginProperty", + "HeaderLabelLeftMargin": "HeaderLabelLeftMargin", + "HeaderLabelLeftMarginProperty": "HeaderLabelLeftMarginProperty", + "HeaderLabelRightMargin": "HeaderLabelRightMargin", + "HeaderLabelRightMarginProperty": "HeaderLabelRightMarginProperty", + "HeaderLabelTopMargin": "HeaderLabelTopMargin", + "HeaderLabelTopMarginProperty": "HeaderLabelTopMarginProperty", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HighlightingHandled": "HighlightingHandled", + "HighlightingHandledProperty": "HighlightingHandledProperty", + "Label": "Label", + "LabelBottomMargin": "LabelBottomMargin", + "LabelBottomMarginProperty": "LabelBottomMarginProperty", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelHorizontalAlignmentProperty": "LabelHorizontalAlignmentProperty", + "LabelLeftMargin": "LabelLeftMargin", + "LabelLeftMarginProperty": "LabelLeftMarginProperty", + "LabelProperty": "LabelProperty", + "LabelRightMargin": "LabelRightMargin", + "LabelRightMarginProperty": "LabelRightMarginProperty", + "LabelTopMargin": "LabelTopMargin", + "LabelTopMarginProperty": "LabelTopMarginProperty", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVerticalAlignmentProperty": "LabelVerticalAlignmentProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty", + "Outline": "Outline", + "OutlineProperty": "OutlineProperty", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TreemapNodeStyleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodeStyleDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleDescription()": "TreemapNodeStyleDescription()", + "TreemapNodeStyleDescription": "TreemapNodeStyleDescription()", + "FadeOpacity": "FadeOpacity", + "Fill": "Fill", + "HeaderBackground": "HeaderBackground", + "HeaderHeight": "HeaderHeight", + "HeaderHoverBackground": "HeaderHoverBackground", + "HeaderHoverTextColor": "HeaderHoverTextColor", + "HeaderLabelBottomMargin": "HeaderLabelBottomMargin", + "HeaderLabelLeftMargin": "HeaderLabelLeftMargin", + "HeaderLabelRightMargin": "HeaderLabelRightMargin", + "HeaderLabelTopMargin": "HeaderLabelTopMargin", + "HeaderTextColor": "HeaderTextColor", + "HighlightingHandled": "HighlightingHandled", + "Label": "Label", + "LabelBottomMargin": "LabelBottomMargin", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelLeftMargin": "LabelLeftMargin", + "LabelRightMargin": "LabelRightMargin", + "LabelTopMargin": "LabelTopMargin", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "Opacity": "Opacity", + "Outline": "Outline", + "StrokeThickness": "StrokeThickness", + "TextColor": "TextColor", + "Type": "Type" + } + } + ], + "TreemapNodeStyleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodeStyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleDescriptionMetadata()": "TreemapNodeStyleDescriptionMetadata()", + "TreemapNodeStyleDescriptionMetadata": "TreemapNodeStyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodeStyleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleDescriptionModule()": "TreemapNodeStyleDescriptionModule()", + "TreemapNodeStyleDescriptionModule": "TreemapNodeStyleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyleMapping": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapNodeStyleMapping", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMapping()": "TreemapNodeStyleMapping()", + "TreemapNodeStyleMapping": "TreemapNodeStyleMapping()", + "MappingMode": "MappingMode", + "MappingModeProperty": "MappingModeProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "TargetType": "TargetType", + "TargetTypeProperty": "TargetTypeProperty", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "TreemapNodeStyleMappingCollection": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapNodeStyleMappingCollection", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMappingCollection()": "TreemapNodeStyleMappingCollection()", + "TreemapNodeStyleMappingCollection": "TreemapNodeStyleMappingCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TreemapNodeStyleMappingDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodeStyleMappingDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMappingDescription()": "TreemapNodeStyleMappingDescription()", + "TreemapNodeStyleMappingDescription": "TreemapNodeStyleMappingDescription()", + "MappingMode": "MappingMode", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "TargetType": "TargetType", + "Type": "Type", + "Value": "Value" + } + } + ], + "TreemapNodeStyleMappingDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodeStyleMappingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMappingDescriptionMetadata()": "TreemapNodeStyleMappingDescriptionMetadata()", + "TreemapNodeStyleMappingDescriptionMetadata": "TreemapNodeStyleMappingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyleMappingDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodeStyleMappingDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMappingDescriptionModule()": "TreemapNodeStyleMappingDescriptionModule()", + "TreemapNodeStyleMappingDescriptionModule": "TreemapNodeStyleMappingDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyleMappingTargetType": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapNodeStyleMappingTargetType", + "k": "enum", + "s": "enums" + } + ], + "TreemapNodeStylingEventArgs": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapNodeStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStylingEventArgs()": "TreemapNodeStylingEventArgs()", + "TreemapNodeStylingEventArgs": "TreemapNodeStylingEventArgs()", + "CustomValue": "CustomValue", + "HighlightingHandled": "HighlightingHandled", + "HighlightingInfo": "HighlightingInfo", + "IsHighlightInProgress": "IsHighlightInProgress", + "IsParent": "IsParent", + "Item": "Item", + "Label": "Label", + "ParentItem": "ParentItem", + "ParentLabel": "ParentLabel", + "ParentSum": "ParentSum", + "ParentValue": "ParentValue", + "Style": "Style", + "Sum": "Sum", + "TotalHighlightProgress": "TotalHighlightProgress", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TreemapNodeStylingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodeStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStylingEventArgsDescription()": "TreemapNodeStylingEventArgsDescription()", + "TreemapNodeStylingEventArgsDescription": "TreemapNodeStylingEventArgsDescription()", + "CustomValueRef": "CustomValueRef", + "HighlightingHandled": "HighlightingHandled", + "HighlightingInfo": "HighlightingInfo", + "IsHighlightInProgress": "IsHighlightInProgress", + "IsParent": "IsParent", + "ItemRef": "ItemRef", + "Label": "Label", + "ParentItemRef": "ParentItemRef", + "ParentLabel": "ParentLabel", + "ParentSum": "ParentSum", + "ParentValue": "ParentValue", + "Style": "Style", + "Sum": "Sum", + "TotalHighlightProgress": "TotalHighlightProgress", + "Type": "Type", + "Value": "Value" + } + } + ], + "TreemapNodeStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TreemapNodeStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStylingEventArgsDescriptionMetadata()": "TreemapNodeStylingEventArgsDescriptionMetadata()", + "TreemapNodeStylingEventArgsDescriptionMetadata": "TreemapNodeStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeVisualData": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapNodeVisualData", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeVisualData()": "TreemapNodeVisualData()", + "TreemapNodeVisualData": "TreemapNodeVisualData()", + "HeaderRect": "HeaderRect", + "HighlightRect": "HighlightRect", + "Label": "Label", + "NodeRect": "NodeRect", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "TreemapNodeVisualDataList": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapNodeVisualDataList", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeVisualDataList()": "TreemapNodeVisualDataList()", + "TreemapNodeVisualDataList": "TreemapNodeVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "TreemapOrientation": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapOrientation", + "k": "enum", + "s": "enums" + } + ], + "TreemapValueMappingMode": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/enums/TreemapValueMappingMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapVisualData": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/TreemapVisualData", + "k": "class", + "s": "classes", + "m": { + "TreemapVisualData()": "TreemapVisualData()", + "TreemapVisualData": "TreemapVisualData()", + "Name": "Name", + "Nodes": "Nodes", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Viewport": "Viewport" + } + } + ], + "TrendLineLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TrendLineLayer", + "k": "class", + "s": "classes", + "m": { + "TrendLineLayer()": "TrendLineLayer()", + "TrendLineLayer": "TrendLineLayer()", + "ActualTargetSeries": "ActualTargetSeries", + "ActualTargetSeriesProperty": "ActualTargetSeriesProperty", + "GetManagerIdentifier()": "GetManagerIdentifier()", + "GetManagerIdentifier": "GetManagerIdentifier()", + "TargetSeries": "TargetSeries", + "TargetSeriesProperty": "TargetSeriesProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty" + } + } + ], + "TrendLineLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TrendLineLayerDescription", + "k": "class", + "s": "classes", + "m": { + "TrendLineLayerDescription()": "TrendLineLayerDescription()", + "TrendLineLayerDescription": "TrendLineLayerDescription()", + "ActualTargetSeriesRef": "ActualTargetSeriesRef", + "TargetSeriesRef": "TargetSeriesRef", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineType": "TrendLineType", + "Type": "Type" + } + } + ], + "TrendLineLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TrendLineLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TrendLineLayerDescriptionMetadata()": "TrendLineLayerDescriptionMetadata()", + "TrendLineLayerDescriptionMetadata": "TrendLineLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TrendLineLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TrendLineLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TrendLineLayerDescriptionModule()": "TrendLineLayerDescriptionModule()", + "TrendLineLayerDescriptionModule": "TrendLineLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TrendLineType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/TrendLineType", + "k": "enum", + "s": "enums" + } + ], + "TrendLineTypeCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TrendLineTypeCollection", + "k": "class", + "s": "classes", + "m": { + "TrendLineTypeCollection()": "TrendLineTypeCollection()", + "TrendLineTypeCollection": "TrendLineTypeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "Triangle": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/Triangle", + "k": "class", + "s": "classes", + "m": { + "Triangle()": "Triangle()", + "Triangle": "Triangle()", + "V1": "V1", + "V2": "V2", + "V3": "V3" + } + } + ], + "TriangulationDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TriangulationDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "TriangulationDataSourceDescription()": "TriangulationDataSourceDescription()", + "TriangulationDataSourceDescription": "TriangulationDataSourceDescription()", + "ImportCompletedRef": "ImportCompletedRef", + "Type": "Type" + } + } + ], + "TriangulationDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TriangulationDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TriangulationDataSourceDescriptionMetadata()": "TriangulationDataSourceDescriptionMetadata()", + "TriangulationDataSourceDescriptionMetadata": "TriangulationDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TriangulationSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TriangulationSource", + "k": "class", + "s": "classes", + "m": { + "TriangulationSource()": "TriangulationSource()", + "TriangulationSource": "TriangulationSource()", + "LoadItf(BinaryReader)": "LoadItf(BinaryReader)", + "LoadItf": "LoadItf(BinaryReader)", + "Points": "Points", + "SaveItf(Stream)": "SaveItf(Stream)", + "SaveItf": "SaveItf(Stream)", + "Triangles": "Triangles", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TriangulationSourcePointRecord": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TriangulationSourcePointRecord", + "k": "class", + "s": "classes", + "m": { + "TriangulationSourcePointRecord()": "TriangulationSourcePointRecord()", + "TriangulationSourcePointRecord": "TriangulationSourcePointRecord()", + "Point": "Point", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TriangulationStatusEventArgs": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TriangulationStatusEventArgs", + "k": "class", + "s": "classes", + "m": { + "TriangulationStatusEventArgs(int)": "TriangulationStatusEventArgs(int)", + "TriangulationStatusEventArgs": "TriangulationStatusEventArgs(int)", + "CurrentStatus": "CurrentStatus" + } + } + ], + "TriangulationStatusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TriangulationStatusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TriangulationStatusEventArgsDescription()": "TriangulationStatusEventArgsDescription()", + "TriangulationStatusEventArgsDescription": "TriangulationStatusEventArgsDescription()", + "CurrentStatus": "CurrentStatus", + "Type": "Type" + } + } + ], + "TriangulationStatusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TriangulationStatusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TriangulationStatusEventArgsDescriptionMetadata()": "TriangulationStatusEventArgsDescriptionMetadata()", + "TriangulationStatusEventArgsDescriptionMetadata": "TriangulationStatusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TRIXIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TRIXIndicator", + "k": "class", + "s": "classes", + "m": { + "TRIXIndicator()": "TRIXIndicator()", + "TRIXIndicator": "TRIXIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "TRIXIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TRIXIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "TRIXIndicatorDescription()": "TRIXIndicatorDescription()", + "TRIXIndicatorDescription": "TRIXIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "TRIXIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TRIXIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TRIXIndicatorDescriptionMetadata()": "TRIXIndicatorDescriptionMetadata()", + "TRIXIndicatorDescriptionMetadata": "TRIXIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TRIXIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TRIXIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TRIXIndicatorDescriptionModule()": "TRIXIndicatorDescriptionModule()", + "TRIXIndicatorDescriptionModule": "TRIXIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TSGlobalMemberAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/TSGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "TSGlobalMemberAttribute()": "TSGlobalMemberAttribute()", + "TSGlobalMemberAttribute": "TSGlobalMemberAttribute()" + } + } + ], + "TSNativeMethodAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/TSNativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "TSNativeMethodAttribute(string)": "TSNativeMethodAttribute(string)", + "TSNativeMethodAttribute": "TSNativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "TSNativePropertyAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/TSNativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "TSNativePropertyAttribute()": "TSNativePropertyAttribute()", + "TSNativePropertyAttribute": "TSNativePropertyAttribute()" + } + } + ], + "TSWidgetIncludeDependsAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/TSWidgetIncludeDependsAttribute", + "k": "class", + "s": "classes", + "m": { + "TSWidgetIncludeDependsAttribute(string)": "TSWidgetIncludeDependsAttribute(string)", + "TSWidgetIncludeDependsAttribute": "TSWidgetIncludeDependsAttribute(string)", + "Name": "Name" + } + } + ], + "TypedEnumerable": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/TypedEnumerable", + "k": "class", + "s": "classes", + "m": { + "TypedEnumerable(IEnumerable)": "TypedEnumerable(IEnumerable)", + "TypedEnumerable": "TypedEnumerable(IEnumerable)" + } + } + ], + "TypeDescriptionContext": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TypeDescriptionContext", + "k": "class", + "s": "classes", + "m": { + "GetAllProperties(string)": "GetAllProperties(string)", + "GetAllProperties": "GetAllProperties(string)", + "GetDescriptionObjectType(string)": "GetDescriptionObjectType(string)", + "GetDescriptionObjectType": "GetDescriptionObjectType(string)", + "GetMetadata(string, string)": "GetMetadata(string, string)", + "GetMetadata": "GetMetadata(string, string)" + } + } + ], + "TypeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TypeDescriptionMetadata()": "TypeDescriptionMetadata()", + "TypeDescriptionMetadata": "TypeDescriptionMetadata()", + "Camelize(string)": "Camelize(string)", + "Camelize": "Camelize(string)", + "CollectionElementType": "CollectionElementType", + "IsCustomEvent": "IsCustomEvent", + "KnownType": "KnownType", + "MustBeFirst": "MustBeFirst", + "OwningType": "OwningType", + "PropertyName": "PropertyName", + "ShouldCamelize(TypeDescriptionPlatform)": "ShouldCamelize(TypeDescriptionPlatform)", + "ShouldCamelize": "ShouldCamelize(TypeDescriptionPlatform)", + "SkipWCEventPrefix": "SkipWCEventPrefix", + "SpecificExternalType": "SpecificExternalType", + "SpecificType": "SpecificType", + "ToPascal(string)": "ToPascal(string)", + "ToPascal": "ToPascal(string)" + } + } + ], + "TypeDescriptionPlatform": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/TypeDescriptionPlatform", + "k": "enum", + "s": "enums" + } + ], + "TypeDescriptionWellKnownType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/TypeDescriptionWellKnownType", + "k": "enum", + "s": "enums" + } + ], + "TypefaceManager": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TypefaceManager", + "k": "class", + "s": "classes", + "m": { + "TypefaceManager()": "TypefaceManager()", + "TypefaceManager": "TypefaceManager()", + "FromFamily(string, SKFontStyle)": "FromFamily(string, SKFontStyle)", + "FromFamily": "FromFamily(string, SKFontStyle)", + "Instance": "Instance", + "OverrideDefaultTypeface(SKFontStyle, SKTypeface)": "OverrideDefaultTypeface(SKFontStyle, SKTypeface)", + "OverrideDefaultTypeface": "OverrideDefaultTypeface(SKFontStyle, SKTypeface)", + "OverrideDefaultTypeface(SKTypeface)": "OverrideDefaultTypeface(SKTypeface)", + "RegisterTypeface(string, SKFontStyle, SKTypeface)": "RegisterTypeface(string, SKFontStyle, SKTypeface)", + "RegisterTypeface": "RegisterTypeface(string, SKFontStyle, SKTypeface)", + "RegisterTypeface(string, SKTypeface)": "RegisterTypeface(string, SKTypeface)" + } + } + ], + "TypicalPriceIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/TypicalPriceIndicator", + "k": "class", + "s": "classes", + "m": { + "TypicalPriceIndicator()": "TypicalPriceIndicator()", + "TypicalPriceIndicator": "TypicalPriceIndicator()" + } + } + ], + "TypicalPriceIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TypicalPriceIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "TypicalPriceIndicatorDescription()": "TypicalPriceIndicatorDescription()", + "TypicalPriceIndicatorDescription": "TypicalPriceIndicatorDescription()", + "Type": "Type" + } + } + ], + "TypicalPriceIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TypicalPriceIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TypicalPriceIndicatorDescriptionMetadata()": "TypicalPriceIndicatorDescriptionMetadata()", + "TypicalPriceIndicatorDescriptionMetadata": "TypicalPriceIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TypicalPriceIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/TypicalPriceIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TypicalPriceIndicatorDescriptionModule()": "TypicalPriceIndicatorDescriptionModule()", + "TypicalPriceIndicatorDescriptionModule": "TypicalPriceIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UltimateOscillatorIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UltimateOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "UltimateOscillatorIndicator()": "UltimateOscillatorIndicator()", + "UltimateOscillatorIndicator": "UltimateOscillatorIndicator()" + } + } + ], + "UltimateOscillatorIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UltimateOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "UltimateOscillatorIndicatorDescription()": "UltimateOscillatorIndicatorDescription()", + "UltimateOscillatorIndicatorDescription": "UltimateOscillatorIndicatorDescription()", + "Type": "Type" + } + } + ], + "UltimateOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UltimateOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UltimateOscillatorIndicatorDescriptionMetadata()": "UltimateOscillatorIndicatorDescriptionMetadata()", + "UltimateOscillatorIndicatorDescriptionMetadata": "UltimateOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UltimateOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UltimateOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UltimateOscillatorIndicatorDescriptionModule()": "UltimateOscillatorIndicatorDescriptionModule()", + "UltimateOscillatorIndicatorDescriptionModule": "UltimateOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UnknownValuePlotting": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/UnknownValuePlotting", + "k": "enum", + "s": "enums" + } + ], + "UnoBitmapUtilities": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/UnoBitmapUtilities", + "k": "class", + "s": "classes", + "m": { + "UnoBitmapUtilities()": "UnoBitmapUtilities()", + "UnoBitmapUtilities": "UnoBitmapUtilities()", + "GetPixelAt(object, int, int)": "GetPixelAt(object, int, int)", + "GetPixelAt": "GetPixelAt(object, int, int)" + } + } + ], + "UnoPixelScaler": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/UnoPixelScaler", + "k": "class", + "s": "classes", + "m": { + "UnoPixelScaler()": "UnoPixelScaler()", + "UnoPixelScaler": "UnoPixelScaler()", + "ClampPixelScalingRatio(double)": "ClampPixelScalingRatio(double)", + "ClampPixelScalingRatio": "ClampPixelScalingRatio(double)", + "ToFontPixelUnits(double)": "ToFontPixelUnits(double)", + "ToFontPixelUnits": "ToFontPixelUnits(double)", + "ToNativePixelUnits(double)": "ToNativePixelUnits(double)", + "ToNativePixelUnits": "ToNativePixelUnits(double)", + "ToPixelUnits(double)": "ToPixelUnits(double)", + "ToPixelUnits": "ToPixelUnits(double)" + } + } + ], + "UnoPlatformRegistration": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/UnoPlatformRegistration", + "k": "class", + "s": "classes", + "m": { + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "UnoPlatformUtilities": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/UnoPlatformUtilities", + "k": "class", + "s": "classes", + "m": { + "UnoPlatformUtilities()": "UnoPlatformUtilities()", + "UnoPlatformUtilities": "UnoPlatformUtilities()", + "CreateCultureFromID(int, string)": "CreateCultureFromID(int, string)", + "CreateCultureFromID": "CreateCultureFromID(int, string)", + "GetAppWindow(object)": "GetAppWindow(object)", + "GetAppWindow": "GetAppWindow(object)", + "GetCurrentDispatchContext()": "GetCurrentDispatchContext()", + "GetCurrentDispatchContext": "GetCurrentDispatchContext()", + "InvokeOnMainThread(object, Action)": "InvokeOnMainThread(object, Action)", + "InvokeOnMainThread": "InvokeOnMainThread(object, Action)", + "InvokeOnMainThreadAfter(object, Action, long)": "InvokeOnMainThreadAfter(object, Action, long)", + "InvokeOnMainThreadAfter": "InvokeOnMainThreadAfter(object, Action, long)" + } + } + ], + "UnoTextMetrics": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/UnoTextMetrics", + "k": "class", + "s": "classes", + "m": { + "UnoTextMetrics()": "UnoTextMetrics()", + "UnoTextMetrics": "UnoTextMetrics()", + "ExecuteWithDispatcher(Action)": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher(Action, object)": "ExecuteWithDispatcher(Action, object)", + "MeasureText(string, string, float, bool, bool, bool, ref Rect)": "MeasureText(string, string, float, bool, bool, bool, ref Rect)", + "MeasureText": "MeasureText(string, string, float, bool, bool, bool, ref Rect)" + } + } + ], + "UnownedAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/UnownedAttribute", + "k": "class", + "s": "classes", + "m": { + "UnownedAttribute()": "UnownedAttribute()", + "UnownedAttribute": "UnownedAttribute()" + } + } + ], + "UploadDataCompletedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UploadDataCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UploadDataCompletedEventArgsDescription()": "UploadDataCompletedEventArgsDescription()", + "UploadDataCompletedEventArgsDescription": "UploadDataCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "UploadDataCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UploadDataCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UploadDataCompletedEventArgsDescriptionMetadata()": "UploadDataCompletedEventArgsDescriptionMetadata()", + "UploadDataCompletedEventArgsDescriptionMetadata": "UploadDataCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UploadStringCompletedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UploadStringCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UploadStringCompletedEventArgsDescription()": "UploadStringCompletedEventArgsDescription()", + "UploadStringCompletedEventArgsDescription": "UploadStringCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "UploadStringCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UploadStringCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UploadStringCompletedEventArgsDescriptionMetadata()": "UploadStringCompletedEventArgsDescriptionMetadata()", + "UploadStringCompletedEventArgsDescriptionMetadata": "UploadStringCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationAxisDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationAxisDataContext", + "k": "class", + "s": "classes", + "m": { + "Value": "Value" + } + } + ], + "UserAnnotationCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationCollection", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationCollection()": "UserAnnotationCollection()", + "UserAnnotationCollection": "UserAnnotationCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "RemoveAll(UserAnnotationTarget)": "RemoveAll(UserAnnotationTarget)", + "RemoveAll": "RemoveAll(UserAnnotationTarget)", + "RemoveFirst(UserAnnotationTarget)": "RemoveFirst(UserAnnotationTarget)", + "RemoveFirst": "RemoveFirst(UserAnnotationTarget)", + "RemoveLast(UserAnnotationTarget)": "RemoveLast(UserAnnotationTarget)", + "RemoveLast": "RemoveLast(UserAnnotationTarget)", + "ReplaceFirst(UserAnnotationTarget, UserBaseAnnotation)": "ReplaceFirst(UserAnnotationTarget, UserBaseAnnotation)", + "ReplaceFirst": "ReplaceFirst(UserAnnotationTarget, UserBaseAnnotation)", + "ReplaceLast(UserAnnotationTarget, UserBaseAnnotation)": "ReplaceLast(UserAnnotationTarget, UserBaseAnnotation)", + "ReplaceLast": "ReplaceLast(UserAnnotationTarget, UserBaseAnnotation)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAnnotationContentUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationContentUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationContentUpdatingEventArgsDescription()": "UserAnnotationContentUpdatingEventArgsDescription()", + "UserAnnotationContentUpdatingEventArgsDescription": "UserAnnotationContentUpdatingEventArgsDescription()", + "Type": "Type" + } + } + ], + "UserAnnotationContentUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationContentUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationContentUpdatingEventArgsDescriptionMetadata()": "UserAnnotationContentUpdatingEventArgsDescriptionMetadata()", + "UserAnnotationContentUpdatingEventArgsDescriptionMetadata": "UserAnnotationContentUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationDataContext", + "k": "class", + "s": "classes", + "m": { + "Label": "Label" + } + } + ], + "UserAnnotationInformation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationInformation", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformation()": "UserAnnotationInformation()", + "UserAnnotationInformation": "UserAnnotationInformation()", + "AnnotationData": "AnnotationData", + "AnnotationId": "AnnotationId", + "BadgeColor": "BadgeColor", + "BadgeImageUri": "BadgeImageUri", + "DialogSuggestedXLocation": "DialogSuggestedXLocation", + "DialogSuggestedYLocation": "DialogSuggestedYLocation", + "Label": "Label", + "MainColor": "MainColor", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAnnotationInformationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationInformationDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationDescription()": "UserAnnotationInformationDescription()", + "UserAnnotationInformationDescription": "UserAnnotationInformationDescription()", + "AnnotationData": "AnnotationData", + "AnnotationId": "AnnotationId", + "BadgeColor": "BadgeColor", + "BadgeImageUri": "BadgeImageUri", + "DialogSuggestedXLocation": "DialogSuggestedXLocation", + "DialogSuggestedYLocation": "DialogSuggestedYLocation", + "Label": "Label", + "MainColor": "MainColor", + "Type": "Type" + } + } + ], + "UserAnnotationInformationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationInformationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationDescriptionMetadata()": "UserAnnotationInformationDescriptionMetadata()", + "UserAnnotationInformationDescriptionMetadata": "UserAnnotationInformationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationInformationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationInformationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationDescriptionModule()": "UserAnnotationInformationDescriptionModule()", + "UserAnnotationInformationDescriptionModule": "UserAnnotationInformationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationInformationEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationInformationEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationEventArgs()": "UserAnnotationInformationEventArgs()", + "UserAnnotationInformationEventArgs": "UserAnnotationInformationEventArgs()", + "AnnotationInfo": "AnnotationInfo", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAnnotationInformationEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationInformationEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationEventArgsDescription()": "UserAnnotationInformationEventArgsDescription()", + "UserAnnotationInformationEventArgsDescription": "UserAnnotationInformationEventArgsDescription()", + "AnnotationInfo": "AnnotationInfo", + "Type": "Type" + } + } + ], + "UserAnnotationInformationEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationInformationEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationEventArgsDescriptionMetadata()": "UserAnnotationInformationEventArgsDescriptionMetadata()", + "UserAnnotationInformationEventArgsDescriptionMetadata": "UserAnnotationInformationEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationLayer", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationLayer()": "UserAnnotationLayer()", + "UserAnnotationLayer": "UserAnnotationLayer()", + "Annotations": "Annotations", + "CancelAnnotationFlow(string)": "CancelAnnotationFlow(string)", + "CancelAnnotationFlow": "CancelAnnotationFlow(string)", + "FinishAnnotationFlow(UserAnnotationInformation)": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishAnnotationFlow": "FinishAnnotationFlow(UserAnnotationInformation)", + "LoadAnnotationsFromJson(string)": "LoadAnnotationsFromJson(string)", + "LoadAnnotationsFromJson": "LoadAnnotationsFromJson(string)", + "OnStylingAxisAnnotation(UserAxisAnnotationStylingEventArgs)": "OnStylingAxisAnnotation(UserAxisAnnotationStylingEventArgs)", + "OnStylingAxisAnnotation": "OnStylingAxisAnnotation(UserAxisAnnotationStylingEventArgs)", + "OnStylingPointAnnotation(UserPointAnnotationStylingEventArgs)": "OnStylingPointAnnotation(UserPointAnnotationStylingEventArgs)", + "OnStylingPointAnnotation": "OnStylingPointAnnotation(UserPointAnnotationStylingEventArgs)", + "OnStylingSliceAnnotation(UserSliceAnnotationStylingEventArgs)": "OnStylingSliceAnnotation(UserSliceAnnotationStylingEventArgs)", + "OnStylingSliceAnnotation": "OnStylingSliceAnnotation(UserSliceAnnotationStylingEventArgs)", + "OnStylingStripAnnotation(UserStripAnnotationStylingEventArgs)": "OnStylingStripAnnotation(UserStripAnnotationStylingEventArgs)", + "OnStylingStripAnnotation": "OnStylingStripAnnotation(UserStripAnnotationStylingEventArgs)", + "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationInformationRequested": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "SaveAnnotationsToJson()": "SaveAnnotationsToJson()", + "SaveAnnotationsToJson": "SaveAnnotationsToJson()" + } + } + ], + "UserAnnotationLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationLayerDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationLayerDescription()": "UserAnnotationLayerDescription()", + "UserAnnotationLayerDescription": "UserAnnotationLayerDescription()", + "Annotations": "Annotations", + "StylingAxisAnnotationRef": "StylingAxisAnnotationRef", + "StylingPointAnnotationRef": "StylingPointAnnotationRef", + "StylingSliceAnnotationRef": "StylingSliceAnnotationRef", + "StylingStripAnnotationRef": "StylingStripAnnotationRef", + "Type": "Type", + "UserAnnotationInformationRequestedRef": "UserAnnotationInformationRequestedRef" + } + } + ], + "UserAnnotationLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationLayerDescriptionMetadata()": "UserAnnotationLayerDescriptionMetadata()", + "UserAnnotationLayerDescriptionMetadata": "UserAnnotationLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationLayerDescriptionModule()": "UserAnnotationLayerDescriptionModule()", + "UserAnnotationLayerDescriptionModule": "UserAnnotationLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationPointDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationPointDataContext", + "k": "class", + "s": "classes", + "m": { + "XValue": "XValue", + "YValue": "YValue" + } + } + ], + "UserAnnotationShapeDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationShapeDataContext", + "k": "class", + "s": "classes", + "m": { + "OverlayText": "OverlayText" + } + } + ], + "UserAnnotationSliceDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationSliceDataContext", + "k": "class", + "s": "classes" + } + ], + "UserAnnotationStripDataContext": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationStripDataContext", + "k": "class", + "s": "classes", + "m": { + "EndLabel": "EndLabel", + "EndValue": "EndValue", + "StartLabel": "StartLabel", + "StartValue": "StartValue" + } + } + ], + "UserAnnotationTarget": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/UserAnnotationTarget", + "k": "enum", + "s": "enums" + } + ], + "UserAnnotationToolTipContentUpdatingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationToolTipContentUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipContentUpdatingEventArgs()": "UserAnnotationToolTipContentUpdatingEventArgs()", + "UserAnnotationToolTipContentUpdatingEventArgs": "UserAnnotationToolTipContentUpdatingEventArgs()", + "AnnotationInfo": "AnnotationInfo", + "Content": "Content", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAnnotationToolTipContentUpdatingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationToolTipContentUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipContentUpdatingEventArgsDescription()": "UserAnnotationToolTipContentUpdatingEventArgsDescription()", + "UserAnnotationToolTipContentUpdatingEventArgsDescription": "UserAnnotationToolTipContentUpdatingEventArgsDescription()", + "AnnotationInfo": "AnnotationInfo", + "ContentRef": "ContentRef", + "Type": "Type" + } + } + ], + "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata()": "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata()", + "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata": "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationToolTipLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAnnotationToolTipLayer", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipLayer()": "UserAnnotationToolTipLayer()", + "UserAnnotationToolTipLayer": "UserAnnotationToolTipLayer()", + "OnContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)": "OnContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnContentUpdating": "OnContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty" + } + } + ], + "UserAnnotationToolTipLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationToolTipLayerDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipLayerDescription()": "UserAnnotationToolTipLayerDescription()", + "UserAnnotationToolTipLayerDescription": "UserAnnotationToolTipLayerDescription()", + "ContentUpdatingRef": "ContentUpdatingRef", + "SkipUnknownValues": "SkipUnknownValues", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type" + } + } + ], + "UserAnnotationToolTipLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationToolTipLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipLayerDescriptionMetadata()": "UserAnnotationToolTipLayerDescriptionMetadata()", + "UserAnnotationToolTipLayerDescriptionMetadata": "UserAnnotationToolTipLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationToolTipLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAnnotationToolTipLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipLayerDescriptionModule()": "UserAnnotationToolTipLayerDescriptionModule()", + "UserAnnotationToolTipLayerDescriptionModule": "UserAnnotationToolTipLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAxisAnnotation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAxisAnnotation", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotation()": "UserAxisAnnotation()", + "UserAxisAnnotation": "UserAxisAnnotation()", + "TargetAxis": "TargetAxis", + "TargetAxisMatcher": "TargetAxisMatcher", + "Value": "Value" + } + } + ], + "UserAxisAnnotationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAxisAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationDescription()": "UserAxisAnnotationDescription()", + "UserAxisAnnotationDescription": "UserAxisAnnotationDescription()", + "TargetAxisMatcher": "TargetAxisMatcher", + "TargetAxisRef": "TargetAxisRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "UserAxisAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAxisAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationDescriptionMetadata()": "UserAxisAnnotationDescriptionMetadata()", + "UserAxisAnnotationDescriptionMetadata": "UserAxisAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAxisAnnotationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAxisAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationDescriptionModule()": "UserAxisAnnotationDescriptionModule()", + "UserAxisAnnotationDescriptionModule": "UserAxisAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAxisAnnotationStylingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserAxisAnnotationStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationStylingEventArgs()": "UserAxisAnnotationStylingEventArgs()", + "UserAxisAnnotationStylingEventArgs": "UserAxisAnnotationStylingEventArgs()", + "Annotation": "Annotation", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAxisAnnotationStylingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAxisAnnotationStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationStylingEventArgsDescription()": "UserAxisAnnotationStylingEventArgsDescription()", + "UserAxisAnnotationStylingEventArgsDescription": "UserAxisAnnotationStylingEventArgsDescription()", + "Annotation": "Annotation", + "Type": "Type" + } + } + ], + "UserAxisAnnotationStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserAxisAnnotationStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationStylingEventArgsDescriptionMetadata()": "UserAxisAnnotationStylingEventArgsDescriptionMetadata()", + "UserAxisAnnotationStylingEventArgsDescriptionMetadata": "UserAxisAnnotationStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserBaseAnnotation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserBaseAnnotation", + "k": "class", + "s": "classes", + "m": { + "AnnotationData": "AnnotationData", + "BadgeBackground": "BadgeBackground", + "BadgeCornerRadius": "BadgeCornerRadius", + "BadgeImagePath": "BadgeImagePath", + "BadgeMargin": "BadgeMargin", + "BadgeOutline": "BadgeOutline", + "BadgeSize": "BadgeSize", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "Identifier": "Identifier", + "IsPillShaped": "IsPillShaped", + "IsVisible": "IsVisible", + "Label": "Label", + "LabelBackground": "LabelBackground", + "LabelBorderColor": "LabelBorderColor", + "LabelBorderRadius": "LabelBorderRadius", + "LabelBorderThickness": "LabelBorderThickness", + "LabelColor": "LabelColor", + "LabelPadding": "LabelPadding", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserBaseAnnotationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserBaseAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserBaseAnnotationDescription()": "UserBaseAnnotationDescription()", + "UserBaseAnnotationDescription": "UserBaseAnnotationDescription()", + "AnnotationData": "AnnotationData", + "BadgeBackground": "BadgeBackground", + "BadgeCornerRadius": "BadgeCornerRadius", + "BadgeImagePath": "BadgeImagePath", + "BadgeMargin": "BadgeMargin", + "BadgeOutline": "BadgeOutline", + "BadgeSize": "BadgeSize", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "Identifier": "Identifier", + "IsPillShaped": "IsPillShaped", + "IsVisible": "IsVisible", + "Label": "Label", + "LabelBackground": "LabelBackground", + "LabelBorderColor": "LabelBorderColor", + "LabelBorderRadius": "LabelBorderRadius", + "LabelBorderThickness": "LabelBorderThickness", + "LabelColor": "LabelColor", + "LabelPadding": "LabelPadding", + "Type": "Type" + } + } + ], + "UserBaseAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserBaseAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserBaseAnnotationDescriptionMetadata()": "UserBaseAnnotationDescriptionMetadata()", + "UserBaseAnnotationDescriptionMetadata": "UserBaseAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserPointAnnotation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserPointAnnotation", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotation()": "UserPointAnnotation()", + "UserPointAnnotation": "UserPointAnnotation()", + "TargetSeries": "TargetSeries", + "TargetSeriesMatcher": "TargetSeriesMatcher", + "XValue": "XValue", + "YValue": "YValue" + } + } + ], + "UserPointAnnotationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserPointAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationDescription()": "UserPointAnnotationDescription()", + "UserPointAnnotationDescription": "UserPointAnnotationDescription()", + "TargetSeriesMatcher": "TargetSeriesMatcher", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type", + "XValue": "XValue", + "YValue": "YValue" + } + } + ], + "UserPointAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserPointAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationDescriptionMetadata()": "UserPointAnnotationDescriptionMetadata()", + "UserPointAnnotationDescriptionMetadata": "UserPointAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserPointAnnotationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserPointAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationDescriptionModule()": "UserPointAnnotationDescriptionModule()", + "UserPointAnnotationDescriptionModule": "UserPointAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserPointAnnotationStylingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserPointAnnotationStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationStylingEventArgs()": "UserPointAnnotationStylingEventArgs()", + "UserPointAnnotationStylingEventArgs": "UserPointAnnotationStylingEventArgs()", + "Annotation": "Annotation", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserPointAnnotationStylingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserPointAnnotationStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationStylingEventArgsDescription()": "UserPointAnnotationStylingEventArgsDescription()", + "UserPointAnnotationStylingEventArgsDescription": "UserPointAnnotationStylingEventArgsDescription()", + "Annotation": "Annotation", + "Type": "Type" + } + } + ], + "UserPointAnnotationStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserPointAnnotationStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationStylingEventArgsDescriptionMetadata()": "UserPointAnnotationStylingEventArgsDescriptionMetadata()", + "UserPointAnnotationStylingEventArgsDescriptionMetadata": "UserPointAnnotationStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserShapeAnnotation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserShapeAnnotation", + "k": "class", + "s": "classes", + "m": { + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "ShapeBackground": "ShapeBackground", + "ShapeOutline": "ShapeOutline", + "ShapeThickness": "ShapeThickness", + "ValueDisplayMode": "ValueDisplayMode" + } + } + ], + "UserShapeAnnotationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserShapeAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserShapeAnnotationDescription()": "UserShapeAnnotationDescription()", + "UserShapeAnnotationDescription": "UserShapeAnnotationDescription()", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "ShapeBackground": "ShapeBackground", + "ShapeOutline": "ShapeOutline", + "ShapeThickness": "ShapeThickness", + "Type": "Type", + "ValueDisplayMode": "ValueDisplayMode" + } + } + ], + "UserShapeAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserShapeAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserShapeAnnotationDescriptionMetadata()": "UserShapeAnnotationDescriptionMetadata()", + "UserShapeAnnotationDescriptionMetadata": "UserShapeAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserSliceAnnotation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserSliceAnnotation", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotation()": "UserSliceAnnotation()", + "UserSliceAnnotation": "UserSliceAnnotation()" + } + } + ], + "UserSliceAnnotationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserSliceAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationDescription()": "UserSliceAnnotationDescription()", + "UserSliceAnnotationDescription": "UserSliceAnnotationDescription()", + "Type": "Type" + } + } + ], + "UserSliceAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserSliceAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationDescriptionMetadata()": "UserSliceAnnotationDescriptionMetadata()", + "UserSliceAnnotationDescriptionMetadata": "UserSliceAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserSliceAnnotationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserSliceAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationDescriptionModule()": "UserSliceAnnotationDescriptionModule()", + "UserSliceAnnotationDescriptionModule": "UserSliceAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserSliceAnnotationStylingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserSliceAnnotationStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationStylingEventArgs()": "UserSliceAnnotationStylingEventArgs()", + "UserSliceAnnotationStylingEventArgs": "UserSliceAnnotationStylingEventArgs()", + "Annotation": "Annotation", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserSliceAnnotationStylingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserSliceAnnotationStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationStylingEventArgsDescription()": "UserSliceAnnotationStylingEventArgsDescription()", + "UserSliceAnnotationStylingEventArgsDescription": "UserSliceAnnotationStylingEventArgsDescription()", + "Annotation": "Annotation", + "Type": "Type" + } + } + ], + "UserSliceAnnotationStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserSliceAnnotationStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationStylingEventArgsDescriptionMetadata()": "UserSliceAnnotationStylingEventArgsDescriptionMetadata()", + "UserSliceAnnotationStylingEventArgsDescriptionMetadata": "UserSliceAnnotationStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserStripAnnotation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserStripAnnotation", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotation()": "UserStripAnnotation()", + "UserStripAnnotation": "UserStripAnnotation()", + "EndLabel": "EndLabel", + "EndLabelBackground": "EndLabelBackground", + "EndLabelBorderColor": "EndLabelBorderColor", + "EndLabelColor": "EndLabelColor", + "EndValue": "EndValue", + "EndValueDisplayMode": "EndValueDisplayMode", + "StartLabel": "StartLabel", + "StartLabelBackground": "StartLabelBackground", + "StartLabelBorderColor": "StartLabelBorderColor", + "StartLabelColor": "StartLabelColor", + "StartValue": "StartValue", + "StartValueDisplayMode": "StartValueDisplayMode" + } + } + ], + "UserStripAnnotationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserStripAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationDescription()": "UserStripAnnotationDescription()", + "UserStripAnnotationDescription": "UserStripAnnotationDescription()", + "EndLabel": "EndLabel", + "EndLabelBackground": "EndLabelBackground", + "EndLabelBorderColor": "EndLabelBorderColor", + "EndLabelColor": "EndLabelColor", + "EndValue": "EndValue", + "EndValueDisplayMode": "EndValueDisplayMode", + "StartLabel": "StartLabel", + "StartLabelBackground": "StartLabelBackground", + "StartLabelBorderColor": "StartLabelBorderColor", + "StartLabelColor": "StartLabelColor", + "StartValue": "StartValue", + "StartValueDisplayMode": "StartValueDisplayMode", + "Type": "Type" + } + } + ], + "UserStripAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserStripAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationDescriptionMetadata()": "UserStripAnnotationDescriptionMetadata()", + "UserStripAnnotationDescriptionMetadata": "UserStripAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserStripAnnotationDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserStripAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationDescriptionModule()": "UserStripAnnotationDescriptionModule()", + "UserStripAnnotationDescriptionModule": "UserStripAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserStripAnnotationStylingEventArgs": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/UserStripAnnotationStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationStylingEventArgs()": "UserStripAnnotationStylingEventArgs()", + "UserStripAnnotationStylingEventArgs": "UserStripAnnotationStylingEventArgs()", + "Annotation": "Annotation", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserStripAnnotationStylingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserStripAnnotationStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationStylingEventArgsDescription()": "UserStripAnnotationStylingEventArgsDescription()", + "UserStripAnnotationStylingEventArgsDescription": "UserStripAnnotationStylingEventArgsDescription()", + "Annotation": "Annotation", + "Type": "Type" + } + } + ], + "UserStripAnnotationStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/UserStripAnnotationStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationStylingEventArgsDescriptionMetadata()": "UserStripAnnotationStylingEventArgsDescriptionMetadata()", + "UserStripAnnotationStylingEventArgsDescriptionMetadata": "UserStripAnnotationStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueAxisLabelLocation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ValueAxisLabelLocation", + "k": "enum", + "s": "enums" + } + ], + "ValueBrushScale": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ValueBrushScale", + "k": "class", + "s": "classes", + "m": { + "ValueBrushScale()": "ValueBrushScale()", + "ValueBrushScale": "ValueBrushScale()", + "GetBrushByIndex(int, IFastItemColumn)": "GetBrushByIndex(int, IFastItemColumn)", + "GetBrushByIndex": "GetBrushByIndex(int, IFastItemColumn)", + "GetBrushByRange(double, double, double)": "GetBrushByRange(double, double, double)", + "GetBrushByRange": "GetBrushByRange(double, double, double)", + "GetBrushByValue(double, IFastItemColumn)": "GetBrushByValue(double, IFastItemColumn)", + "GetBrushByValue": "GetBrushByValue(double, IFastItemColumn)", + "IsLogarithmic": "IsLogarithmic", + "IsLogarithmicProperty": "IsLogarithmicProperty", + "LogarithmBase": "LogarithmBase", + "LogarithmBaseProperty": "LogarithmBaseProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty" + } + } + ], + "ValueBrushScaleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueBrushScaleDescription", + "k": "class", + "s": "classes", + "m": { + "ValueBrushScaleDescription()": "ValueBrushScaleDescription()", + "ValueBrushScaleDescription": "ValueBrushScaleDescription()", + "IsLogarithmic": "IsLogarithmic", + "LogarithmBase": "LogarithmBase", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Type": "Type" + } + } + ], + "ValueBrushScaleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueBrushScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ValueBrushScaleDescriptionMetadata()": "ValueBrushScaleDescriptionMetadata()", + "ValueBrushScaleDescriptionMetadata": "ValueBrushScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueBrushScaleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueBrushScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ValueBrushScaleDescriptionModule()": "ValueBrushScaleDescriptionModule()", + "ValueBrushScaleDescriptionModule": "ValueBrushScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueCollisionMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ValueCollisionMode", + "k": "enum", + "s": "enums" + } + ], + "ValueGetterResult": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/ValueGetterResult", + "k": "class", + "s": "classes", + "m": { + "ValueGetterResult(object, bool)": "ValueGetterResult(object, bool)", + "ValueGetterResult": "ValueGetterResult(object, bool)", + "NullIsValue": "NullIsValue", + "Value": "Value" + } + } + ], + "ValueLayer": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ValueLayer", + "k": "class", + "s": "classes", + "m": { + "ValueLayer()": "ValueLayer()", + "ValueLayer": "ValueLayer()", + "ActualValueLayerBrush": "ActualValueLayerBrush", + "ActualValueLayerBrushProperty": "ActualValueLayerBrushProperty", + "HorizontalLineStroke": "HorizontalLineStroke", + "HorizontalLineStrokeProperty": "HorizontalLineStrokeProperty", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "IsAxisAnnotationEnabledProperty": "IsAxisAnnotationEnabledProperty", + "OnStylingOverlayText(OverlayTextUpdatingEventArgs)": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnStylingOverlayText": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnXAxisAnnotationFormatLabel": "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisAnnotationFormatLabel": "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextAngleProperty": "OverlayTextAngleProperty", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMatchLayerProperty": "OverlayTextBackgroundMatchLayerProperty", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundModeProperty": "OverlayTextBackgroundModeProperty", + "OverlayTextBackgroundProperty": "OverlayTextBackgroundProperty", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBackgroundShiftProperty": "OverlayTextBackgroundShiftProperty", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderColorProperty": "OverlayTextBorderColorProperty", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMatchLayerProperty": "OverlayTextBorderMatchLayerProperty", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderModeProperty": "OverlayTextBorderModeProperty", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderRadiusProperty": "OverlayTextBorderRadiusProperty", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderShiftProperty": "OverlayTextBorderShiftProperty", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextBorderThicknessProperty": "OverlayTextBorderThicknessProperty", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMatchLayerProperty": "OverlayTextColorMatchLayerProperty", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorModeProperty": "OverlayTextColorModeProperty", + "OverlayTextColorProperty": "OverlayTextColorProperty", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextColorShiftProperty": "OverlayTextColorShiftProperty", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontFamilyProperty": "OverlayTextFontFamilyProperty", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontSizeProperty": "OverlayTextFontSizeProperty", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontStyleProperty": "OverlayTextFontStyleProperty", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextFontWeightProperty": "OverlayTextFontWeightProperty", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalMarginProperty": "OverlayTextHorizontalMarginProperty", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextHorizontalPaddingProperty": "OverlayTextHorizontalPaddingProperty", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextLocationProperty": "OverlayTextLocationProperty", + "OverlayTextProperty": "OverlayTextProperty", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalMarginProperty": "OverlayTextVerticalMarginProperty", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVerticalPaddingProperty": "OverlayTextVerticalPaddingProperty", + "OverlayTextVisible": "OverlayTextVisible", + "OverlayTextVisibleProperty": "OverlayTextVisibleProperty", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesProperty": "TargetSeriesProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty", + "ValueMode": "ValueMode", + "ValueModeProperty": "ValueModeProperty", + "VerticalLineStroke": "VerticalLineStroke", + "VerticalLineStrokeProperty": "VerticalLineStrokeProperty", + "XAxisAnnotationBackground": "XAxisAnnotationBackground", + "XAxisAnnotationBackgroundCornerRadius": "XAxisAnnotationBackgroundCornerRadius", + "XAxisAnnotationBackgroundCornerRadiusProperty": "XAxisAnnotationBackgroundCornerRadiusProperty", + "XAxisAnnotationBackgroundProperty": "XAxisAnnotationBackgroundProperty", + "XAxisAnnotationInterpolatedValuePrecision": "XAxisAnnotationInterpolatedValuePrecision", + "XAxisAnnotationInterpolatedValuePrecisionProperty": "XAxisAnnotationInterpolatedValuePrecisionProperty", + "XAxisAnnotationOutline": "XAxisAnnotationOutline", + "XAxisAnnotationOutlineProperty": "XAxisAnnotationOutlineProperty", + "XAxisAnnotationPaddingBottom": "XAxisAnnotationPaddingBottom", + "XAxisAnnotationPaddingBottomProperty": "XAxisAnnotationPaddingBottomProperty", + "XAxisAnnotationPaddingLeft": "XAxisAnnotationPaddingLeft", + "XAxisAnnotationPaddingLeftProperty": "XAxisAnnotationPaddingLeftProperty", + "XAxisAnnotationPaddingRight": "XAxisAnnotationPaddingRight", + "XAxisAnnotationPaddingRightProperty": "XAxisAnnotationPaddingRightProperty", + "XAxisAnnotationPaddingTop": "XAxisAnnotationPaddingTop", + "XAxisAnnotationPaddingTopProperty": "XAxisAnnotationPaddingTopProperty", + "XAxisAnnotationStrokeThickness": "XAxisAnnotationStrokeThickness", + "XAxisAnnotationStrokeThicknessProperty": "XAxisAnnotationStrokeThicknessProperty", + "XAxisAnnotationTextColor": "XAxisAnnotationTextColor", + "XAxisAnnotationTextColorProperty": "XAxisAnnotationTextColorProperty", + "YAxisAnnotationBackground": "YAxisAnnotationBackground", + "YAxisAnnotationBackgroundCornerRadius": "YAxisAnnotationBackgroundCornerRadius", + "YAxisAnnotationBackgroundCornerRadiusProperty": "YAxisAnnotationBackgroundCornerRadiusProperty", + "YAxisAnnotationBackgroundProperty": "YAxisAnnotationBackgroundProperty", + "YAxisAnnotationInterpolatedValuePrecision": "YAxisAnnotationInterpolatedValuePrecision", + "YAxisAnnotationInterpolatedValuePrecisionProperty": "YAxisAnnotationInterpolatedValuePrecisionProperty", + "YAxisAnnotationOutline": "YAxisAnnotationOutline", + "YAxisAnnotationOutlineProperty": "YAxisAnnotationOutlineProperty", + "YAxisAnnotationPaddingBottom": "YAxisAnnotationPaddingBottom", + "YAxisAnnotationPaddingBottomProperty": "YAxisAnnotationPaddingBottomProperty", + "YAxisAnnotationPaddingLeft": "YAxisAnnotationPaddingLeft", + "YAxisAnnotationPaddingLeftProperty": "YAxisAnnotationPaddingLeftProperty", + "YAxisAnnotationPaddingRight": "YAxisAnnotationPaddingRight", + "YAxisAnnotationPaddingRightProperty": "YAxisAnnotationPaddingRightProperty", + "YAxisAnnotationPaddingTop": "YAxisAnnotationPaddingTop", + "YAxisAnnotationPaddingTopProperty": "YAxisAnnotationPaddingTopProperty", + "YAxisAnnotationStrokeThickness": "YAxisAnnotationStrokeThickness", + "YAxisAnnotationStrokeThicknessProperty": "YAxisAnnotationStrokeThicknessProperty", + "YAxisAnnotationTextColor": "YAxisAnnotationTextColor", + "YAxisAnnotationTextColorProperty": "YAxisAnnotationTextColorProperty" + } + } + ], + "ValueLayerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueLayerDescription", + "k": "class", + "s": "classes", + "m": { + "ValueLayerDescription()": "ValueLayerDescription()", + "ValueLayerDescription": "ValueLayerDescription()", + "ActualValueLayerBrush": "ActualValueLayerBrush", + "HorizontalLineStroke": "HorizontalLineStroke", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "SkipUnknownValues": "SkipUnknownValues", + "StylingOverlayTextRef": "StylingOverlayTextRef", + "TargetAxisRef": "TargetAxisRef", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type", + "UseInterpolation": "UseInterpolation", + "ValueMode": "ValueMode", + "VerticalLineStroke": "VerticalLineStroke", + "XAxisAnnotationBackground": "XAxisAnnotationBackground", + "XAxisAnnotationBackgroundCornerRadius": "XAxisAnnotationBackgroundCornerRadius", + "XAxisAnnotationFormatLabelRef": "XAxisAnnotationFormatLabelRef", + "XAxisAnnotationInterpolatedValuePrecision": "XAxisAnnotationInterpolatedValuePrecision", + "XAxisAnnotationOutline": "XAxisAnnotationOutline", + "XAxisAnnotationPaddingBottom": "XAxisAnnotationPaddingBottom", + "XAxisAnnotationPaddingLeft": "XAxisAnnotationPaddingLeft", + "XAxisAnnotationPaddingRight": "XAxisAnnotationPaddingRight", + "XAxisAnnotationPaddingTop": "XAxisAnnotationPaddingTop", + "XAxisAnnotationStrokeThickness": "XAxisAnnotationStrokeThickness", + "XAxisAnnotationTextColor": "XAxisAnnotationTextColor", + "YAxisAnnotationBackground": "YAxisAnnotationBackground", + "YAxisAnnotationBackgroundCornerRadius": "YAxisAnnotationBackgroundCornerRadius", + "YAxisAnnotationFormatLabelRef": "YAxisAnnotationFormatLabelRef", + "YAxisAnnotationInterpolatedValuePrecision": "YAxisAnnotationInterpolatedValuePrecision", + "YAxisAnnotationOutline": "YAxisAnnotationOutline", + "YAxisAnnotationPaddingBottom": "YAxisAnnotationPaddingBottom", + "YAxisAnnotationPaddingLeft": "YAxisAnnotationPaddingLeft", + "YAxisAnnotationPaddingRight": "YAxisAnnotationPaddingRight", + "YAxisAnnotationPaddingTop": "YAxisAnnotationPaddingTop", + "YAxisAnnotationStrokeThickness": "YAxisAnnotationStrokeThickness", + "YAxisAnnotationTextColor": "YAxisAnnotationTextColor" + } + } + ], + "ValueLayerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ValueLayerDescriptionMetadata()": "ValueLayerDescriptionMetadata()", + "ValueLayerDescriptionMetadata": "ValueLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueLayerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ValueLayerDescriptionModule()": "ValueLayerDescriptionModule()", + "ValueLayerDescriptionModule": "ValueLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueLayerValueMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ValueLayerValueMode", + "k": "enum", + "s": "enums" + } + ], + "ValueModeCollection": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ValueModeCollection", + "k": "class", + "s": "classes", + "m": { + "ValueModeCollection()": "ValueModeCollection()", + "ValueModeCollection": "ValueModeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ValueModeCollectionHelper": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ValueModeCollectionHelper", + "k": "class", + "s": "classes", + "m": { + "ValueModeCollectionHelper()": "ValueModeCollectionHelper()", + "ValueModeCollectionHelper": "ValueModeCollectionHelper()", + "CreateFromString(string)": "CreateFromString(string)", + "CreateFromString": "CreateFromString(string)" + } + } + ], + "ValueOverlay": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/ValueOverlay", + "k": "class", + "s": "classes", + "m": { + "ValueOverlay()": "ValueOverlay()", + "ValueOverlay": "ValueOverlay()", + "Axis": "Axis", + "AxisAnnotationBackground": "AxisAnnotationBackground", + "AxisAnnotationBackgroundCornerRadius": "AxisAnnotationBackgroundCornerRadius", + "AxisAnnotationBackgroundCornerRadiusProperty": "AxisAnnotationBackgroundCornerRadiusProperty", + "AxisAnnotationBackgroundProperty": "AxisAnnotationBackgroundProperty", + "AxisAnnotationInterpolatedValuePrecision": "AxisAnnotationInterpolatedValuePrecision", + "AxisAnnotationInterpolatedValuePrecisionProperty": "AxisAnnotationInterpolatedValuePrecisionProperty", + "AxisAnnotationOutline": "AxisAnnotationOutline", + "AxisAnnotationOutlineProperty": "AxisAnnotationOutlineProperty", + "AxisAnnotationPaddingBottom": "AxisAnnotationPaddingBottom", + "AxisAnnotationPaddingBottomProperty": "AxisAnnotationPaddingBottomProperty", + "AxisAnnotationPaddingLeft": "AxisAnnotationPaddingLeft", + "AxisAnnotationPaddingLeftProperty": "AxisAnnotationPaddingLeftProperty", + "AxisAnnotationPaddingRight": "AxisAnnotationPaddingRight", + "AxisAnnotationPaddingRightProperty": "AxisAnnotationPaddingRightProperty", + "AxisAnnotationPaddingTop": "AxisAnnotationPaddingTop", + "AxisAnnotationPaddingTopProperty": "AxisAnnotationPaddingTopProperty", + "AxisAnnotationStrokeThickness": "AxisAnnotationStrokeThickness", + "AxisAnnotationStrokeThicknessProperty": "AxisAnnotationStrokeThicknessProperty", + "AxisAnnotationTextColor": "AxisAnnotationTextColor", + "AxisAnnotationTextColorProperty": "AxisAnnotationTextColorProperty", + "AxisProperty": "AxisProperty", + "DateValue": "DateValue", + "DateValueProperty": "DateValueProperty", + "GetLabel(double)": "GetLabel(double)", + "GetLabel": "GetLabel(double)", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "IsAxisAnnotationEnabledProperty": "IsAxisAnnotationEnabledProperty", + "LabelResolved": "LabelResolved", + "LabelResolvedProperty": "LabelResolvedProperty", + "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnAxisAnnotationFormatLabel": "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnStylingOverlayText(OverlayTextUpdatingEventArgs)": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnStylingOverlayText": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextAngleProperty": "OverlayTextAngleProperty", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMatchLayerProperty": "OverlayTextBackgroundMatchLayerProperty", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundModeProperty": "OverlayTextBackgroundModeProperty", + "OverlayTextBackgroundProperty": "OverlayTextBackgroundProperty", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBackgroundShiftProperty": "OverlayTextBackgroundShiftProperty", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderColorProperty": "OverlayTextBorderColorProperty", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMatchLayerProperty": "OverlayTextBorderMatchLayerProperty", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderModeProperty": "OverlayTextBorderModeProperty", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderRadiusProperty": "OverlayTextBorderRadiusProperty", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderShiftProperty": "OverlayTextBorderShiftProperty", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextBorderThicknessProperty": "OverlayTextBorderThicknessProperty", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMatchLayerProperty": "OverlayTextColorMatchLayerProperty", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorModeProperty": "OverlayTextColorModeProperty", + "OverlayTextColorProperty": "OverlayTextColorProperty", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextColorShiftProperty": "OverlayTextColorShiftProperty", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontFamilyProperty": "OverlayTextFontFamilyProperty", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontSizeProperty": "OverlayTextFontSizeProperty", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontStyleProperty": "OverlayTextFontStyleProperty", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextFontWeightProperty": "OverlayTextFontWeightProperty", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalMarginProperty": "OverlayTextHorizontalMarginProperty", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextHorizontalPaddingProperty": "OverlayTextHorizontalPaddingProperty", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextLocationProperty": "OverlayTextLocationProperty", + "OverlayTextProperty": "OverlayTextProperty", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalMarginProperty": "OverlayTextVerticalMarginProperty", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVerticalPaddingProperty": "OverlayTextVerticalPaddingProperty", + "OverlayTextVisible": "OverlayTextVisible", + "OverlayTextVisibleProperty": "OverlayTextVisibleProperty", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "ValueOverlayDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "ValueOverlayDescription()": "ValueOverlayDescription()", + "ValueOverlayDescription": "ValueOverlayDescription()", + "AxisAnnotationBackground": "AxisAnnotationBackground", + "AxisAnnotationBackgroundCornerRadius": "AxisAnnotationBackgroundCornerRadius", + "AxisAnnotationFormatLabelRef": "AxisAnnotationFormatLabelRef", + "AxisAnnotationInterpolatedValuePrecision": "AxisAnnotationInterpolatedValuePrecision", + "AxisAnnotationOutline": "AxisAnnotationOutline", + "AxisAnnotationPaddingBottom": "AxisAnnotationPaddingBottom", + "AxisAnnotationPaddingLeft": "AxisAnnotationPaddingLeft", + "AxisAnnotationPaddingRight": "AxisAnnotationPaddingRight", + "AxisAnnotationPaddingTop": "AxisAnnotationPaddingTop", + "AxisAnnotationStrokeThickness": "AxisAnnotationStrokeThickness", + "AxisAnnotationTextColor": "AxisAnnotationTextColor", + "AxisRef": "AxisRef", + "DateValue": "DateValue", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "StylingOverlayTextRef": "StylingOverlayTextRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "ValueOverlayDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ValueOverlayDescriptionMetadata()": "ValueOverlayDescriptionMetadata()", + "ValueOverlayDescriptionMetadata": "ValueOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueOverlayDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ValueOverlayDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ValueOverlayDescriptionModule()": "ValueOverlayDescriptionModule()", + "ValueOverlayDescriptionModule": "ValueOverlayDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueVisualData": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/ValueVisualData", + "k": "class", + "s": "classes", + "m": { + "ValueVisualData()": "ValueVisualData()", + "ValueVisualData": "ValueVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type", + "Value": "Value" + } + } + ], + "VerticalAlignment": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/enums/VerticalAlignment", + "k": "enum", + "s": "enums" + } + ], + "VerticalAnchoredCategorySeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/VerticalAnchoredCategorySeries", + "k": "class", + "s": "classes", + "m": { + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "VerticalAnchoredCategorySeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalAnchoredCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "VerticalAnchoredCategorySeriesDescription()": "VerticalAnchoredCategorySeriesDescription()", + "VerticalAnchoredCategorySeriesDescription": "VerticalAnchoredCategorySeriesDescription()", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "VerticalAnchoredCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalAnchoredCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VerticalAnchoredCategorySeriesDescriptionMetadata()": "VerticalAnchoredCategorySeriesDescriptionMetadata()", + "VerticalAnchoredCategorySeriesDescriptionMetadata": "VerticalAnchoredCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "VerticalRangeCategorySeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/VerticalRangeCategorySeries", + "k": "class", + "s": "classes", + "m": { + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendLabelProperty": "HighMemberAsLegendLabelProperty", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "HighMemberAsLegendUnitProperty": "HighMemberAsLegendUnitProperty", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendLabelProperty": "LowMemberAsLegendLabelProperty", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "LowMemberAsLegendUnitProperty": "LowMemberAsLegendUnitProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "VerticalRangeCategorySeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalRangeCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "VerticalRangeCategorySeriesDescription()": "VerticalRangeCategorySeriesDescription()", + "VerticalRangeCategorySeriesDescription": "VerticalRangeCategorySeriesDescription()", + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "VerticalRangeCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalRangeCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VerticalRangeCategorySeriesDescriptionMetadata()": "VerticalRangeCategorySeriesDescriptionMetadata()", + "VerticalRangeCategorySeriesDescriptionMetadata": "VerticalRangeCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "VerticalRangeCategorySeriesProxyDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalRangeCategorySeriesProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "VerticalRangeCategorySeriesProxyDescriptionModule()": "VerticalRangeCategorySeriesProxyDescriptionModule()", + "VerticalRangeCategorySeriesProxyDescriptionModule": "VerticalRangeCategorySeriesProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "VerticalSeparatorCellInfo": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/VerticalSeparatorCellInfo", + "k": "class", + "s": "classes", + "m": { + "VerticalSeparatorCellInfo()": "VerticalSeparatorCellInfo()", + "VerticalSeparatorCellInfo": "VerticalSeparatorCellInfo()" + } + } + ], + "VerticalSeparatorCellInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalSeparatorCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "VerticalSeparatorCellInfoDescription()": "VerticalSeparatorCellInfoDescription()", + "VerticalSeparatorCellInfoDescription": "VerticalSeparatorCellInfoDescription()", + "Type": "Type" + } + } + ], + "VerticalSeparatorCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalSeparatorCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VerticalSeparatorCellInfoDescriptionMetadata()": "VerticalSeparatorCellInfoDescriptionMetadata()", + "VerticalSeparatorCellInfoDescriptionMetadata": "VerticalSeparatorCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "VerticalStackedSeriesBase": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/VerticalStackedSeriesBase", + "k": "class", + "s": "classes", + "m": { + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "VerticalStackedSeriesBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalStackedSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "VerticalStackedSeriesBaseDescription()": "VerticalStackedSeriesBaseDescription()", + "VerticalStackedSeriesBaseDescription": "VerticalStackedSeriesBaseDescription()", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "VerticalStackedSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VerticalStackedSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VerticalStackedSeriesBaseDescriptionMetadata()": "VerticalStackedSeriesBaseDescriptionMetadata()", + "VerticalStackedSeriesBaseDescriptionMetadata": "VerticalStackedSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ViewerSurfaceUsage": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ViewerSurfaceUsage", + "k": "enum", + "s": "enums" + } + ], + "VirtualDataSource": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VirtualDataSource", + "k": "class", + "s": "classes", + "m": { + "VirtualDataSource()": "VirtualDataSource()", + "VirtualDataSource": "VirtualDataSource()", + "ActualDataProvider": "ActualDataProvider", + "ActualPageSize": "ActualPageSize", + "DataProvider": "DataProvider", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "GetUnrealizedCount()": "GetUnrealizedCount()", + "GetUnrealizedCount": "GetUnrealizedCount()", + "MaxCachedPages": "MaxCachedPages", + "PageSizeRequested": "PageSizeRequested", + "ResetCache()": "ResetCache()", + "ResetCache": "ResetCache()", + "ResetCacheOverride()": "ResetCacheOverride()", + "ResetCacheOverride": "ResetCacheOverride()", + "ResolveDataProvider()": "ResolveDataProvider()", + "ResolveDataProvider": "ResolveDataProvider()", + "ResolveDataProviderOverride()": "ResolveDataProviderOverride()", + "ResolveDataProviderOverride": "ResolveDataProviderOverride()" + } + } + ], + "VirtualDataSourceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VirtualDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "VirtualDataSourceDescription()": "VirtualDataSourceDescription()", + "VirtualDataSourceDescription": "VirtualDataSourceDescription()", + "ActualPageSize": "ActualPageSize", + "ConcurrencyTag": "ConcurrencyTag", + "MaxCachedPages": "MaxCachedPages", + "PageSizeRequested": "PageSizeRequested", + "Type": "Type" + } + } + ], + "VirtualDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VirtualDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VirtualDataSourceDescriptionMetadata()": "VirtualDataSourceDescriptionMetadata()", + "VirtualDataSourceDescriptionMetadata": "VirtualDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Visibility": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/enums/Visibility", + "k": "enum", + "s": "enums" + } + ], + "VisualDataPixelScalingOptions": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VisualDataPixelScalingOptions", + "k": "class", + "s": "classes", + "m": { + "VisualDataPixelScalingOptions()": "VisualDataPixelScalingOptions()", + "VisualDataPixelScalingOptions": "VisualDataPixelScalingOptions()" + } + } + ], + "VisualModelExport": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/VisualModelExport", + "k": "class", + "s": "classes", + "m": { + "VisualModelExport()": "VisualModelExport()", + "VisualModelExport": "VisualModelExport()", + "AbsoluteHeight": "AbsoluteHeight", + "AbsoluteWidth": "AbsoluteWidth", + "ActualVisibleRegion": "ActualVisibleRegion", + "ColumnSpacing": "ColumnSpacing", + "ContentLayer": "ContentLayer", + "DecoratorLayer": "DecoratorLayer", + "DipScalingRatio": "DipScalingRatio", + "FixedColumnWidthLeft": "FixedColumnWidthLeft", + "FixedColumnWidthRight": "FixedColumnWidthRight", + "FixedContentLayer": "FixedContentLayer", + "FixedHeaderDecoratorLayer": "FixedHeaderDecoratorLayer", + "FixedHeaderLayer": "FixedHeaderLayer", + "FixedMergedCellsLayer": "FixedMergedCellsLayer", + "FixedPinnedRowsLayer": "FixedPinnedRowsLayer", + "FixedRowHeight": "FixedRowHeight", + "FixedSeparatorLayer": "FixedSeparatorLayer", + "FixedSubContentLayer": "FixedSubContentLayer", + "FixedSubHeaderDecoratorLayer": "FixedSubHeaderDecoratorLayer", + "FixedSubHeaderLayer": "FixedSubHeaderLayer", + "FixedSuperContentLayer": "FixedSuperContentLayer", + "FixedSuperHeaderDecoratorLayer": "FixedSuperHeaderDecoratorLayer", + "FixedSuperHeaderLayer": "FixedSuperHeaderLayer", + "FullHeaderHeight": "FullHeaderHeight", + "GridLayers": "GridLayers", + "HeaderDecoratorLayer": "HeaderDecoratorLayer", + "HeaderHeight": "HeaderHeight", + "HeaderLayer": "HeaderLayer", + "Height": "Height", + "HiddenLayer": "HiddenLayer", + "Left": "Left", + "Pager": "Pager", + "PinnedRowsLayer": "PinnedRowsLayer", + "PinnedRowsMergedCellsLayer": "PinnedRowsMergedCellsLayer", + "PinnedRowsSubLayer": "PinnedRowsSubLayer", + "PinnedRowsSuperLayer": "PinnedRowsSuperLayer", + "PinnedSectionLayer": "PinnedSectionLayer", + "PinnedSectionSubLayer": "PinnedSectionSubLayer", + "PinnedSectionSuperLayer": "PinnedSectionSuperLayer", + "Reset()": "Reset()", + "Reset": "Reset()", + "RowSeparatorContentLayer": "RowSeparatorContentLayer", + "RowSeparatorFixedPinnedRowsLayer": "RowSeparatorFixedPinnedRowsLayer", + "RowSeparatorPinnedSectionLayer": "RowSeparatorPinnedSectionLayer", + "RowSeparatorPinnedSectionSuperLayer": "RowSeparatorPinnedSectionSuperLayer", + "RowSeparatorSectionLayer": "RowSeparatorSectionLayer", + "SectionLayer": "SectionLayer", + "SeparatorLeft": "SeparatorLeft", + "SeparatorRight": "SeparatorRight", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SubContentLayer": "SubContentLayer", + "SubHeaderDecoratorLayer": "SubHeaderDecoratorLayer", + "SubHeaderLayer": "SubHeaderLayer", + "SuperContentLayer": "SuperContentLayer", + "SuperHeaderDecoratorLayer": "SuperHeaderDecoratorLayer", + "SuperHeaderLayer": "SuperHeaderLayer", + "Toolbar": "Toolbar", + "Top": "Top", + "VerticalSeparatorLayer": "VerticalSeparatorLayer", + "Width": "Width" + } + } + ], + "VoidEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VoidEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "VoidEventArgsDescription()": "VoidEventArgsDescription()", + "VoidEventArgsDescription": "VoidEventArgsDescription()", + "Type": "Type" + } + } + ], + "VoidEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/VoidEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VoidEventArgsDescriptionMetadata()": "VoidEventArgsDescriptionMetadata()", + "VoidEventArgsDescriptionMetadata": "VoidEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WaterfallSeries": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/WaterfallSeries", + "k": "class", + "s": "classes", + "m": { + "WaterfallSeries()": "WaterfallSeries()", + "WaterfallSeries": "WaterfallSeries()", + "NegativeBrush": "NegativeBrush", + "NegativeBrushProperty": "NegativeBrushProperty", + "NegativeOutline": "NegativeOutline", + "NegativeOutlineProperty": "NegativeOutlineProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "WaterfallSeriesDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WaterfallSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "WaterfallSeriesDescription()": "WaterfallSeriesDescription()", + "WaterfallSeriesDescription": "WaterfallSeriesDescription()", + "NegativeBrush": "NegativeBrush", + "NegativeOutline": "NegativeOutline", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "WaterfallSeriesDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WaterfallSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WaterfallSeriesDescriptionMetadata()": "WaterfallSeriesDescriptionMetadata()", + "WaterfallSeriesDescriptionMetadata": "WaterfallSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WaterfallSeriesDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WaterfallSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WaterfallSeriesDescriptionModule()": "WaterfallSeriesDescriptionModule()", + "WaterfallSeriesDescriptionModule": "WaterfallSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebAccordionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebAccordionDescription", + "k": "class", + "s": "classes", + "m": { + "WebAccordionDescription()": "WebAccordionDescription()", + "WebAccordionDescription": "WebAccordionDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "SingleExpand": "SingleExpand", + "Type": "Type" + } + } + ], + "WebAccordionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebAccordionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebAccordionDescriptionMetadata()": "WebAccordionDescriptionMetadata()", + "WebAccordionDescriptionMetadata": "WebAccordionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebAccordionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebAccordionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebAccordionDescriptionModule()": "WebAccordionDescriptionModule()", + "WebAccordionDescriptionModule": "WebAccordionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActionStripDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActionStripDescription", + "k": "class", + "s": "classes", + "m": { + "WebActionStripDescription()": "WebActionStripDescription()", + "WebActionStripDescription": "WebActionStripDescription()", + "ActionButtons": "ActionButtons", + "Hidden": "Hidden", + "ResourceStrings": "ResourceStrings", + "Type": "Type" + } + } + ], + "WebActionStripDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActionStripDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActionStripDescriptionMetadata()": "WebActionStripDescriptionMetadata()", + "WebActionStripDescriptionMetadata": "WebActionStripDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActionStripDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActionStripDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebActionStripDescriptionModule()": "WebActionStripDescriptionModule()", + "WebActionStripDescriptionModule": "WebActionStripDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActionStripResourceStringsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActionStripResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActionStripResourceStringsDescription()": "WebActionStripResourceStringsDescription()", + "WebActionStripResourceStringsDescription": "WebActionStripResourceStringsDescription()", + "Igx_action_strip_button_more_title": "Igx_action_strip_button_more_title", + "Type": "Type" + } + } + ], + "WebActionStripResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActionStripResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActionStripResourceStringsDescriptionMetadata()": "WebActionStripResourceStringsDescriptionMetadata()", + "WebActionStripResourceStringsDescriptionMetadata": "WebActionStripResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveNodeChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveNodeChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveNodeChangeEventArgsDescription()": "WebActiveNodeChangeEventArgsDescription()", + "WebActiveNodeChangeEventArgsDescription": "WebActiveNodeChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebActiveNodeChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveNodeChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveNodeChangeEventArgsDescriptionMetadata()": "WebActiveNodeChangeEventArgsDescriptionMetadata()", + "WebActiveNodeChangeEventArgsDescriptionMetadata": "WebActiveNodeChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveNodeChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveNodeChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveNodeChangeEventArgsDetailDescription()": "WebActiveNodeChangeEventArgsDetailDescription()", + "WebActiveNodeChangeEventArgsDetailDescription": "WebActiveNodeChangeEventArgsDetailDescription()", + "Column": "Column", + "Level": "Level", + "Row": "Row", + "Tag": "Tag", + "Type": "Type" + } + } + ], + "WebActiveNodeChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveNodeChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveNodeChangeEventArgsDetailDescriptionMetadata()": "WebActiveNodeChangeEventArgsDetailDescriptionMetadata()", + "WebActiveNodeChangeEventArgsDetailDescriptionMetadata": "WebActiveNodeChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActivePaneEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActivePaneEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActivePaneEventArgsDescription()": "WebActivePaneEventArgsDescription()", + "WebActivePaneEventArgsDescription": "WebActivePaneEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebActivePaneEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActivePaneEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActivePaneEventArgsDescriptionMetadata()": "WebActivePaneEventArgsDescriptionMetadata()", + "WebActivePaneEventArgsDescriptionMetadata": "WebActivePaneEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActivePaneEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActivePaneEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebActivePaneEventArgsDetailDescription()": "WebActivePaneEventArgsDetailDescription()", + "WebActivePaneEventArgsDetailDescription": "WebActivePaneEventArgsDetailDescription()", + "NewPane": "NewPane", + "OldPane": "OldPane", + "Type": "Type" + } + } + ], + "WebActivePaneEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActivePaneEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActivePaneEventArgsDetailDescriptionMetadata()": "WebActivePaneEventArgsDetailDescriptionMetadata()", + "WebActivePaneEventArgsDetailDescriptionMetadata": "WebActivePaneEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveStepChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveStepChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangedEventArgsDescription()": "WebActiveStepChangedEventArgsDescription()", + "WebActiveStepChangedEventArgsDescription": "WebActiveStepChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebActiveStepChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveStepChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangedEventArgsDescriptionMetadata()": "WebActiveStepChangedEventArgsDescriptionMetadata()", + "WebActiveStepChangedEventArgsDescriptionMetadata": "WebActiveStepChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveStepChangedEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveStepChangedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangedEventArgsDetailDescription()": "WebActiveStepChangedEventArgsDetailDescription()", + "WebActiveStepChangedEventArgsDetailDescription": "WebActiveStepChangedEventArgsDetailDescription()", + "Index": "Index", + "Type": "Type" + } + } + ], + "WebActiveStepChangedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveStepChangedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangedEventArgsDetailDescriptionMetadata()": "WebActiveStepChangedEventArgsDetailDescriptionMetadata()", + "WebActiveStepChangedEventArgsDetailDescriptionMetadata": "WebActiveStepChangedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveStepChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveStepChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangingEventArgsDescription()": "WebActiveStepChangingEventArgsDescription()", + "WebActiveStepChangingEventArgsDescription": "WebActiveStepChangingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebActiveStepChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveStepChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangingEventArgsDescriptionMetadata()": "WebActiveStepChangingEventArgsDescriptionMetadata()", + "WebActiveStepChangingEventArgsDescriptionMetadata": "WebActiveStepChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveStepChangingEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveStepChangingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangingEventArgsDetailDescription()": "WebActiveStepChangingEventArgsDetailDescription()", + "WebActiveStepChangingEventArgsDetailDescription": "WebActiveStepChangingEventArgsDetailDescription()", + "NewIndex": "NewIndex", + "OldIndex": "OldIndex", + "Type": "Type" + } + } + ], + "WebActiveStepChangingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebActiveStepChangingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangingEventArgsDetailDescriptionMetadata()": "WebActiveStepChangingEventArgsDetailDescriptionMetadata()", + "WebActiveStepChangingEventArgsDetailDescriptionMetadata": "WebActiveStepChangingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebAvatarDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebAvatarDescription", + "k": "class", + "s": "classes", + "m": { + "WebAvatarDescription()": "WebAvatarDescription()", + "WebAvatarDescription": "WebAvatarDescription()", + "Alt": "Alt", + "Initials": "Initials", + "Shape": "Shape", + "Src": "Src", + "Type": "Type" + } + } + ], + "WebAvatarDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebAvatarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebAvatarDescriptionMetadata()": "WebAvatarDescriptionMetadata()", + "WebAvatarDescriptionMetadata": "WebAvatarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebAvatarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebAvatarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebAvatarDescriptionModule()": "WebAvatarDescriptionModule()", + "WebAvatarDescriptionModule": "WebAvatarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBadgeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBadgeDescription", + "k": "class", + "s": "classes", + "m": { + "WebBadgeDescription()": "WebBadgeDescription()", + "WebBadgeDescription": "WebBadgeDescription()", + "Dot": "Dot", + "Outlined": "Outlined", + "Shape": "Shape", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebBadgeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBadgeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBadgeDescriptionMetadata()": "WebBadgeDescriptionMetadata()", + "WebBadgeDescriptionMetadata": "WebBadgeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBadgeDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBadgeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebBadgeDescriptionModule()": "WebBadgeDescriptionModule()", + "WebBadgeDescriptionModule": "WebBadgeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBannerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBannerDescription", + "k": "class", + "s": "classes", + "m": { + "WebBannerDescription()": "WebBannerDescription()", + "WebBannerDescription": "WebBannerDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "Open": "Open", + "Type": "Type" + } + } + ], + "WebBannerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBannerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBannerDescriptionMetadata()": "WebBannerDescriptionMetadata()", + "WebBannerDescriptionMetadata": "WebBannerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBannerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBannerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebBannerDescriptionModule()": "WebBannerDescriptionModule()", + "WebBannerDescriptionModule": "WebBannerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseAlertLikeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseAlertLikeDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseAlertLikeDescription()": "WebBaseAlertLikeDescription()", + "WebBaseAlertLikeDescription": "WebBaseAlertLikeDescription()", + "DisplayTime": "DisplayTime", + "KeepOpen": "KeepOpen", + "Open": "Open", + "Position": "Position", + "Positioning": "Positioning", + "Type": "Type" + } + } + ], + "WebBaseAlertLikeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseAlertLikeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseAlertLikeDescriptionMetadata()": "WebBaseAlertLikeDescriptionMetadata()", + "WebBaseAlertLikeDescriptionMetadata": "WebBaseAlertLikeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseComboBoxDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseComboBoxDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseComboBoxDescription()": "WebBaseComboBoxDescription()", + "WebBaseComboBoxDescription": "WebBaseComboBoxDescription()", + "Open": "Open", + "Type": "Type" + } + } + ], + "WebBaseComboBoxDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseComboBoxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseComboBoxDescriptionMetadata()": "WebBaseComboBoxDescriptionMetadata()", + "WebBaseComboBoxDescriptionMetadata": "WebBaseComboBoxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseDateTimeFilteringOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseDateTimeFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseDateTimeFilteringOperandDescription()": "WebBaseDateTimeFilteringOperandDescription()", + "WebBaseDateTimeFilteringOperandDescription": "WebBaseDateTimeFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebBaseDateTimeFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseDateTimeFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseDateTimeFilteringOperandDescriptionMetadata()": "WebBaseDateTimeFilteringOperandDescriptionMetadata()", + "WebBaseDateTimeFilteringOperandDescriptionMetadata": "WebBaseDateTimeFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseEventArgsDescription()": "WebBaseEventArgsDescription()", + "WebBaseEventArgsDescription": "WebBaseEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebBaseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseEventArgsDescriptionMetadata()": "WebBaseEventArgsDescriptionMetadata()", + "WebBaseEventArgsDescriptionMetadata": "WebBaseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseEventArgsDetailDescription()": "WebBaseEventArgsDetailDescription()", + "WebBaseEventArgsDetailDescription": "WebBaseEventArgsDetailDescription()", + "Owner": "Owner", + "Type": "Type" + } + } + ], + "WebBaseEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseEventArgsDetailDescriptionMetadata()": "WebBaseEventArgsDetailDescriptionMetadata()", + "WebBaseEventArgsDetailDescriptionMetadata": "WebBaseEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseExporterDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseExporterDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseExporterDescription()": "WebBaseExporterDescription()", + "WebBaseExporterDescription": "WebBaseExporterDescription()", + "ColumnExportingRef": "ColumnExportingRef", + "ExportEndedRef": "ExportEndedRef", + "RowExportingRef": "RowExportingRef", + "Type": "Type" + } + } + ], + "WebBaseExporterDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseExporterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseExporterDescriptionMetadata()": "WebBaseExporterDescriptionMetadata()", + "WebBaseExporterDescriptionMetadata": "WebBaseExporterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseOptionLikeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseOptionLikeDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseOptionLikeDescription()": "WebBaseOptionLikeDescription()", + "WebBaseOptionLikeDescription": "WebBaseOptionLikeDescription()", + "Active": "Active", + "Disabled": "Disabled", + "Selected": "Selected", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebBaseOptionLikeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseOptionLikeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseOptionLikeDescriptionMetadata()": "WebBaseOptionLikeDescriptionMetadata()", + "WebBaseOptionLikeDescriptionMetadata": "WebBaseOptionLikeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseSearchInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseSearchInfoDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseSearchInfoDescription()": "WebBaseSearchInfoDescription()", + "WebBaseSearchInfoDescription": "WebBaseSearchInfoDescription()", + "CaseSensitive": "CaseSensitive", + "Content": "Content", + "ExactMatch": "ExactMatch", + "MatchCount": "MatchCount", + "SearchText": "SearchText", + "Type": "Type" + } + } + ], + "WebBaseSearchInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseSearchInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseSearchInfoDescriptionMetadata()": "WebBaseSearchInfoDescriptionMetadata()", + "WebBaseSearchInfoDescriptionMetadata": "WebBaseSearchInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseToolbarColumnActionsDirectiveDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseToolbarColumnActionsDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarColumnActionsDirectiveDescription()": "WebBaseToolbarColumnActionsDirectiveDescription()", + "WebBaseToolbarColumnActionsDirectiveDescription": "WebBaseToolbarColumnActionsDirectiveDescription()", + "Type": "Type" + } + } + ], + "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseToolbarColumnActionsDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata()": "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata()", + "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata": "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseToolbarColumnActionsDirectiveDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseToolbarColumnActionsDirectiveDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarColumnActionsDirectiveDescriptionModule()": "WebBaseToolbarColumnActionsDirectiveDescriptionModule()", + "WebBaseToolbarColumnActionsDirectiveDescriptionModule": "WebBaseToolbarColumnActionsDirectiveDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseToolbarDirectiveDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseToolbarDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarDirectiveDescription()": "WebBaseToolbarDirectiveDescription()", + "WebBaseToolbarDirectiveDescription": "WebBaseToolbarDirectiveDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "ColumnListHeight": "ColumnListHeight", + "ColumnToggleRef": "ColumnToggleRef", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "OverlaySettings": "OverlaySettings", + "Prompt": "Prompt", + "Title": "Title", + "Type": "Type" + } + } + ], + "WebBaseToolbarDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBaseToolbarDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarDirectiveDescriptionMetadata()": "WebBaseToolbarDirectiveDescriptionMetadata()", + "WebBaseToolbarDirectiveDescriptionMetadata": "WebBaseToolbarDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBooleanFilteringOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBooleanFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebBooleanFilteringOperandDescription()": "WebBooleanFilteringOperandDescription()", + "WebBooleanFilteringOperandDescription": "WebBooleanFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebBooleanFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebBooleanFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBooleanFilteringOperandDescriptionMetadata()": "WebBooleanFilteringOperandDescriptionMetadata()", + "WebBooleanFilteringOperandDescriptionMetadata": "WebBooleanFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebButtonBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebButtonBaseDescription()": "WebButtonBaseDescription()", + "WebButtonBaseDescription": "WebButtonBaseDescription()", + "BlurRef": "BlurRef", + "ClickedRef": "ClickedRef", + "Command": "Command", + "Commandfor": "Commandfor", + "Disabled": "Disabled", + "DisplayType": "DisplayType", + "Download": "Download", + "FocusRef": "FocusRef", + "Href": "Href", + "Rel": "Rel", + "Target": "Target", + "Type": "Type" + } + } + ], + "WebButtonBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebButtonBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebButtonBaseDescriptionMetadata()": "WebButtonBaseDescriptionMetadata()", + "WebButtonBaseDescriptionMetadata": "WebButtonBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebButtonDescription", + "k": "class", + "s": "classes", + "m": { + "WebButtonDescription()": "WebButtonDescription()", + "WebButtonDescription": "WebButtonDescription()", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebButtonDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebButtonDescriptionMetadata()": "WebButtonDescriptionMetadata()", + "WebButtonDescriptionMetadata": "WebButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebButtonDescriptionModule()": "WebButtonDescriptionModule()", + "WebButtonDescriptionModule": "WebButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebButtonGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebButtonGroupDescription()": "WebButtonGroupDescription()", + "WebButtonGroupDescription": "WebButtonGroupDescription()", + "Alignment": "Alignment", + "DeselectRef": "DeselectRef", + "Disabled": "Disabled", + "SelectRef": "SelectRef", + "SelectedItems": "SelectedItems", + "Selection": "Selection", + "Type": "Type" + } + } + ], + "WebButtonGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebButtonGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebButtonGroupDescriptionMetadata()": "WebButtonGroupDescriptionMetadata()", + "WebButtonGroupDescriptionMetadata": "WebButtonGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebButtonGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebButtonGroupDescriptionModule()": "WebButtonGroupDescriptionModule()", + "WebButtonGroupDescriptionModule": "WebButtonGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebCalendarBaseDescription()": "WebCalendarBaseDescription()", + "WebCalendarBaseDescription": "WebCalendarBaseDescription()", + "DisabledDates": "DisabledDates", + "Locale": "Locale", + "ResourceStrings": "ResourceStrings", + "Selection": "Selection", + "ShowWeekNumbers": "ShowWeekNumbers", + "SpecialDates": "SpecialDates", + "Type": "Type", + "WeekStart": "WeekStart" + } + } + ], + "WebCalendarBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCalendarBaseDescriptionMetadata()": "WebCalendarBaseDescriptionMetadata()", + "WebCalendarBaseDescriptionMetadata": "WebCalendarBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarBaseDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarBaseDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCalendarBaseDescriptionModule()": "WebCalendarBaseDescriptionModule()", + "WebCalendarBaseDescriptionModule": "WebCalendarBaseDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarDateEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarDateEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDateEventArgsDescription()": "WebCalendarDateEventArgsDescription()", + "WebCalendarDateEventArgsDescription": "WebCalendarDateEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebCalendarDateEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarDateEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDateEventArgsDescriptionMetadata()": "WebCalendarDateEventArgsDescriptionMetadata()", + "WebCalendarDateEventArgsDescriptionMetadata": "WebCalendarDateEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarDescription", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDescription()": "WebCalendarDescription()", + "WebCalendarDescription": "WebCalendarDescription()", + "ActiveDate": "ActiveDate", + "ActiveView": "ActiveView", + "ChangeRef": "ChangeRef", + "FormatOptions": "FormatOptions", + "HeaderOrientation": "HeaderOrientation", + "HideHeader": "HideHeader", + "HideOutsideDays": "HideOutsideDays", + "Orientation": "Orientation", + "Type": "Type", + "Value": "Value", + "Values": "Values", + "VisibleMonths": "VisibleMonths" + } + } + ], + "WebCalendarDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDescriptionMetadata()": "WebCalendarDescriptionMetadata()", + "WebCalendarDescriptionMetadata": "WebCalendarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDescriptionModule()": "WebCalendarDescriptionModule()", + "WebCalendarDescriptionModule": "WebCalendarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarResourceStringsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCalendarResourceStringsDescription()": "WebCalendarResourceStringsDescription()", + "WebCalendarResourceStringsDescription": "WebCalendarResourceStringsDescription()", + "EndDate": "EndDate", + "NextMonth": "NextMonth", + "NextYear": "NextYear", + "NextYears": "NextYears", + "PreviousMonth": "PreviousMonth", + "PreviousYear": "PreviousYear", + "PreviousYears": "PreviousYears", + "SelectDate": "SelectDate", + "SelectMonth": "SelectMonth", + "SelectRange": "SelectRange", + "SelectYear": "SelectYear", + "SelectedDate": "SelectedDate", + "StartDate": "StartDate", + "Type": "Type", + "WeekLabel": "WeekLabel" + } + } + ], + "WebCalendarResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCalendarResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCalendarResourceStringsDescriptionMetadata()": "WebCalendarResourceStringsDescriptionMetadata()", + "WebCalendarResourceStringsDescriptionMetadata": "WebCalendarResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCancelableBrowserEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCancelableBrowserEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCancelableBrowserEventArgsDescription()": "WebCancelableBrowserEventArgsDescription()", + "WebCancelableBrowserEventArgsDescription": "WebCancelableBrowserEventArgsDescription()", + "Type": "Type" + } + } + ], + "WebCancelableBrowserEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCancelableBrowserEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCancelableBrowserEventArgsDescriptionMetadata()": "WebCancelableBrowserEventArgsDescriptionMetadata()", + "WebCancelableBrowserEventArgsDescriptionMetadata": "WebCancelableBrowserEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCancelableBrowserEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCancelableBrowserEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebCancelableBrowserEventArgsDetailDescription()": "WebCancelableBrowserEventArgsDetailDescription()", + "WebCancelableBrowserEventArgsDetailDescription": "WebCancelableBrowserEventArgsDetailDescription()", + "Type": "Type" + } + } + ], + "WebCancelableBrowserEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCancelableBrowserEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCancelableBrowserEventArgsDetailDescriptionMetadata()": "WebCancelableBrowserEventArgsDetailDescriptionMetadata()", + "WebCancelableBrowserEventArgsDetailDescriptionMetadata": "WebCancelableBrowserEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCancelableEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCancelableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCancelableEventArgsDescription()": "WebCancelableEventArgsDescription()", + "WebCancelableEventArgsDescription": "WebCancelableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebCancelableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCancelableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCancelableEventArgsDescriptionMetadata()": "WebCancelableEventArgsDescriptionMetadata()", + "WebCancelableEventArgsDescriptionMetadata": "WebCancelableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCancelableEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCancelableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebCancelableEventArgsDetailDescription()": "WebCancelableEventArgsDetailDescription()", + "WebCancelableEventArgsDetailDescription": "WebCancelableEventArgsDetailDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "WebCancelableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCancelableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCancelableEventArgsDetailDescriptionMetadata()": "WebCancelableEventArgsDetailDescriptionMetadata()", + "WebCancelableEventArgsDetailDescriptionMetadata": "WebCancelableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardActionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardActionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardActionsDescription()": "WebCardActionsDescription()", + "WebCardActionsDescription": "WebCardActionsDescription()", + "Orientation": "Orientation", + "Type": "Type" + } + } + ], + "WebCardActionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardActionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardActionsDescriptionMetadata()": "WebCardActionsDescriptionMetadata()", + "WebCardActionsDescriptionMetadata": "WebCardActionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardActionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardActionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardActionsDescriptionModule()": "WebCardActionsDescriptionModule()", + "WebCardActionsDescriptionModule": "WebCardActionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardContentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardContentDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardContentDescription()": "WebCardContentDescription()", + "WebCardContentDescription": "WebCardContentDescription()", + "Type": "Type" + } + } + ], + "WebCardContentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardContentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardContentDescriptionMetadata()": "WebCardContentDescriptionMetadata()", + "WebCardContentDescriptionMetadata": "WebCardContentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardContentDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardContentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardContentDescriptionModule()": "WebCardContentDescriptionModule()", + "WebCardContentDescriptionModule": "WebCardContentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardDescription()": "WebCardDescription()", + "WebCardDescription": "WebCardDescription()", + "Elevated": "Elevated", + "Type": "Type" + } + } + ], + "WebCardDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardDescriptionMetadata()": "WebCardDescriptionMetadata()", + "WebCardDescriptionMetadata": "WebCardDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardDescriptionModule()": "WebCardDescriptionModule()", + "WebCardDescriptionModule": "WebCardDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardHeaderDescription()": "WebCardHeaderDescription()", + "WebCardHeaderDescription": "WebCardHeaderDescription()", + "Type": "Type" + } + } + ], + "WebCardHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardHeaderDescriptionMetadata()": "WebCardHeaderDescriptionMetadata()", + "WebCardHeaderDescriptionMetadata": "WebCardHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardHeaderDescriptionModule()": "WebCardHeaderDescriptionModule()", + "WebCardHeaderDescriptionModule": "WebCardHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardMediaDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardMediaDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardMediaDescription()": "WebCardMediaDescription()", + "WebCardMediaDescription": "WebCardMediaDescription()", + "Type": "Type" + } + } + ], + "WebCardMediaDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardMediaDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardMediaDescriptionMetadata()": "WebCardMediaDescriptionMetadata()", + "WebCardMediaDescriptionMetadata": "WebCardMediaDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardMediaDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCardMediaDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardMediaDescriptionModule()": "WebCardMediaDescriptionModule()", + "WebCardMediaDescriptionModule": "WebCardMediaDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselDescription", + "k": "class", + "s": "classes", + "m": { + "WebCarouselDescription()": "WebCarouselDescription()", + "WebCarouselDescription": "WebCarouselDescription()", + "AnimationType": "AnimationType", + "DisableLoop": "DisableLoop", + "DisablePauseOnInteraction": "DisablePauseOnInteraction", + "HideIndicators": "HideIndicators", + "HideNavigation": "HideNavigation", + "IndicatorsLabelFormat": "IndicatorsLabelFormat", + "IndicatorsOrientation": "IndicatorsOrientation", + "Interval": "Interval", + "MaximumIndicatorsCount": "MaximumIndicatorsCount", + "PausedRef": "PausedRef", + "PlayingRef": "PlayingRef", + "SlideChangedRef": "SlideChangedRef", + "SlidesLabelFormat": "SlidesLabelFormat", + "Type": "Type", + "Vertical": "Vertical" + } + } + ], + "WebCarouselDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCarouselDescriptionMetadata()": "WebCarouselDescriptionMetadata()", + "WebCarouselDescriptionMetadata": "WebCarouselDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCarouselDescriptionModule()": "WebCarouselDescriptionModule()", + "WebCarouselDescriptionModule": "WebCarouselDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "WebCarouselIndicatorDescription()": "WebCarouselIndicatorDescription()", + "WebCarouselIndicatorDescription": "WebCarouselIndicatorDescription()", + "Type": "Type" + } + } + ], + "WebCarouselIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCarouselIndicatorDescriptionMetadata()": "WebCarouselIndicatorDescriptionMetadata()", + "WebCarouselIndicatorDescriptionMetadata": "WebCarouselIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCarouselIndicatorDescriptionModule()": "WebCarouselIndicatorDescriptionModule()", + "WebCarouselIndicatorDescriptionModule": "WebCarouselIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselSlideDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselSlideDescription", + "k": "class", + "s": "classes", + "m": { + "WebCarouselSlideDescription()": "WebCarouselSlideDescription()", + "WebCarouselSlideDescription": "WebCarouselSlideDescription()", + "Active": "Active", + "Type": "Type" + } + } + ], + "WebCarouselSlideDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselSlideDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCarouselSlideDescriptionMetadata()": "WebCarouselSlideDescriptionMetadata()", + "WebCarouselSlideDescriptionMetadata": "WebCarouselSlideDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselSlideDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCarouselSlideDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCarouselSlideDescriptionModule()": "WebCarouselSlideDescriptionModule()", + "WebCarouselSlideDescriptionModule": "WebCarouselSlideDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCellPositionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCellPositionDescription", + "k": "class", + "s": "classes", + "m": { + "WebCellPositionDescription()": "WebCellPositionDescription()", + "WebCellPositionDescription": "WebCellPositionDescription()", + "RowIndex": "RowIndex", + "Type": "Type", + "VisibleColumnIndex": "VisibleColumnIndex" + } + } + ], + "WebCellPositionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCellPositionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCellPositionDescriptionMetadata()": "WebCellPositionDescriptionMetadata()", + "WebCellPositionDescriptionMetadata": "WebCellPositionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCellTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCellTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebCellTemplateContextDescription()": "WebCellTemplateContextDescription()", + "WebCellTemplateContextDescription": "WebCellTemplateContextDescription()", + "AdditionalTemplateContext": "AdditionalTemplateContext", + "Cell": "Cell", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebCellTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCellTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCellTemplateContextDescriptionMetadata()": "WebCellTemplateContextDescriptionMetadata()", + "WebCellTemplateContextDescriptionMetadata": "WebCellTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCellTypeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCellTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebCellTypeDescription()": "WebCellTypeDescription()", + "WebCellTypeDescription": "WebCellTypeDescription()", + "Active": "Active", + "CellID": "CellID", + "Column": "Column", + "EditMode": "EditMode", + "EditValue": "EditValue", + "Editable": "Editable", + "Grid": "Grid", + "Id": "Id", + "Readonly": "Readonly", + "Row": "Row", + "Selected": "Selected", + "Title": "Title", + "Type": "Type", + "Validation": "Validation", + "Value": "Value", + "VisibleColumnIndex": "VisibleColumnIndex", + "Width": "Width" + } + } + ], + "WebCellTypeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCellTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCellTypeDescriptionMetadata()": "WebCellTypeDescriptionMetadata()", + "WebCellTypeDescriptionMetadata": "WebCellTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatAttachmentRenderContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatAttachmentRenderContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatAttachmentRenderContextDescription()": "WebChatAttachmentRenderContextDescription()", + "WebChatAttachmentRenderContextDescription": "WebChatAttachmentRenderContextDescription()", + "Attachment": "Attachment", + "Type": "Type" + } + } + ], + "WebChatAttachmentRenderContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatAttachmentRenderContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatAttachmentRenderContextDescriptionMetadata()": "WebChatAttachmentRenderContextDescriptionMetadata()", + "WebChatAttachmentRenderContextDescriptionMetadata": "WebChatAttachmentRenderContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatDescription()": "WebChatDescription()", + "WebChatDescription": "WebChatDescription()", + "AttachmentClickRef": "AttachmentClickRef", + "DraftMessage": "DraftMessage", + "InputBlurRef": "InputBlurRef", + "InputChangeRef": "InputChangeRef", + "InputFocusRef": "InputFocusRef", + "MessageCreatedRef": "MessageCreatedRef", + "MessageReactRef": "MessageReactRef", + "Messages": "Messages", + "Options": "Options", + "Type": "Type", + "TypingChangeRef": "TypingChangeRef" + } + } + ], + "WebChatDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatDescriptionMetadata()": "WebChatDescriptionMetadata()", + "WebChatDescriptionMetadata": "WebChatDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebChatDescriptionModule()": "WebChatDescriptionModule()", + "WebChatDescriptionModule": "WebChatDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatDraftMessageDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatDraftMessageDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatDraftMessageDescription()": "WebChatDraftMessageDescription()", + "WebChatDraftMessageDescription": "WebChatDraftMessageDescription()", + "Attachments": "Attachments", + "Text": "Text", + "Type": "Type" + } + } + ], + "WebChatDraftMessageDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatDraftMessageDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatDraftMessageDescriptionMetadata()": "WebChatDraftMessageDescriptionMetadata()", + "WebChatDraftMessageDescriptionMetadata": "WebChatDraftMessageDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatInputRenderContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatInputRenderContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatInputRenderContextDescription()": "WebChatInputRenderContextDescription()", + "WebChatInputRenderContextDescription": "WebChatInputRenderContextDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebChatInputRenderContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatInputRenderContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatInputRenderContextDescriptionMetadata()": "WebChatInputRenderContextDescriptionMetadata()", + "WebChatInputRenderContextDescriptionMetadata": "WebChatInputRenderContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageAttachmentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageAttachmentDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageAttachmentDescription()": "WebChatMessageAttachmentDescription()", + "WebChatMessageAttachmentDescription": "WebChatMessageAttachmentDescription()", + "AttachmentType": "AttachmentType", + "Id": "Id", + "Thumbnail": "Thumbnail", + "Type": "Type", + "Url": "Url" + } + } + ], + "WebChatMessageAttachmentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageAttachmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageAttachmentDescriptionMetadata()": "WebChatMessageAttachmentDescriptionMetadata()", + "WebChatMessageAttachmentDescriptionMetadata": "WebChatMessageAttachmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageAttachmentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageAttachmentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageAttachmentEventArgsDescription()": "WebChatMessageAttachmentEventArgsDescription()", + "WebChatMessageAttachmentEventArgsDescription": "WebChatMessageAttachmentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebChatMessageAttachmentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageAttachmentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageAttachmentEventArgsDescriptionMetadata()": "WebChatMessageAttachmentEventArgsDescriptionMetadata()", + "WebChatMessageAttachmentEventArgsDescriptionMetadata": "WebChatMessageAttachmentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageDescription()": "WebChatMessageDescription()", + "WebChatMessageDescription": "WebChatMessageDescription()", + "Attachments": "Attachments", + "Id": "Id", + "Reactions": "Reactions", + "Sender": "Sender", + "Text": "Text", + "Timestamp": "Timestamp", + "Type": "Type" + } + } + ], + "WebChatMessageDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageDescriptionMetadata()": "WebChatMessageDescriptionMetadata()", + "WebChatMessageDescriptionMetadata": "WebChatMessageDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageEventArgsDescription()": "WebChatMessageEventArgsDescription()", + "WebChatMessageEventArgsDescription": "WebChatMessageEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebChatMessageEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageEventArgsDescriptionMetadata()": "WebChatMessageEventArgsDescriptionMetadata()", + "WebChatMessageEventArgsDescriptionMetadata": "WebChatMessageEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageReactionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageReactionDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageReactionDescription()": "WebChatMessageReactionDescription()", + "WebChatMessageReactionDescription": "WebChatMessageReactionDescription()", + "Message": "Message", + "Reaction": "Reaction", + "Type": "Type" + } + } + ], + "WebChatMessageReactionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageReactionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageReactionDescriptionMetadata()": "WebChatMessageReactionDescriptionMetadata()", + "WebChatMessageReactionDescriptionMetadata": "WebChatMessageReactionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageReactionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageReactionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageReactionEventArgsDescription()": "WebChatMessageReactionEventArgsDescription()", + "WebChatMessageReactionEventArgsDescription": "WebChatMessageReactionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebChatMessageReactionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageReactionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageReactionEventArgsDescriptionMetadata()": "WebChatMessageReactionEventArgsDescriptionMetadata()", + "WebChatMessageReactionEventArgsDescriptionMetadata": "WebChatMessageReactionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageRenderContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageRenderContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageRenderContextDescription()": "WebChatMessageRenderContextDescription()", + "WebChatMessageRenderContextDescription": "WebChatMessageRenderContextDescription()", + "Message": "Message", + "Type": "Type" + } + } + ], + "WebChatMessageRenderContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatMessageRenderContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageRenderContextDescriptionMetadata()": "WebChatMessageRenderContextDescriptionMetadata()", + "WebChatMessageRenderContextDescriptionMetadata": "WebChatMessageRenderContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatOptionsDescription()": "WebChatOptionsDescription()", + "WebChatOptionsDescription": "WebChatOptionsDescription()", + "AdoptRootStyles": "AdoptRootStyles", + "CurrentUserId": "CurrentUserId", + "DisableAutoScroll": "DisableAutoScroll", + "DisableInputAttachments": "DisableInputAttachments", + "HeaderText": "HeaderText", + "InputPlaceholder": "InputPlaceholder", + "IsTyping": "IsTyping", + "Renderers": "Renderers", + "StopTypingDelay": "StopTypingDelay", + "Suggestions": "Suggestions", + "SuggestionsPosition": "SuggestionsPosition", + "Type": "Type" + } + } + ], + "WebChatOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatOptionsDescriptionMetadata()": "WebChatOptionsDescriptionMetadata()", + "WebChatOptionsDescriptionMetadata": "WebChatOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatRenderContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatRenderContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatRenderContextDescription()": "WebChatRenderContextDescription()", + "WebChatRenderContextDescription": "WebChatRenderContextDescription()", + "Instance": "Instance", + "Type": "Type" + } + } + ], + "WebChatRenderContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatRenderContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatRenderContextDescriptionMetadata()": "WebChatRenderContextDescriptionMetadata()", + "WebChatRenderContextDescriptionMetadata": "WebChatRenderContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatRenderersDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatRenderersDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatRenderersDescription()": "WebChatRenderersDescription()", + "WebChatRenderersDescription": "WebChatRenderersDescription()", + "AttachmentContentRef": "AttachmentContentRef", + "AttachmentHeaderRef": "AttachmentHeaderRef", + "AttachmentRef": "AttachmentRef", + "InputActionsEndRef": "InputActionsEndRef", + "InputActionsRef": "InputActionsRef", + "InputActionsStartRef": "InputActionsStartRef", + "InputRef": "InputRef", + "MessageActionsRef": "MessageActionsRef", + "MessageAttachmentsRef": "MessageAttachmentsRef", + "MessageContentRef": "MessageContentRef", + "MessageHeaderRef": "MessageHeaderRef", + "MessageRef": "MessageRef", + "SendButtonRef": "SendButtonRef", + "SuggestionPrefixRef": "SuggestionPrefixRef", + "Type": "Type" + } + } + ], + "WebChatRenderersDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChatRenderersDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatRenderersDescriptionMetadata()": "WebChatRenderersDescriptionMetadata()", + "WebChatRenderersDescriptionMetadata": "WebChatRenderersDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxBaseDescription()": "WebCheckboxBaseDescription()", + "WebCheckboxBaseDescription": "WebCheckboxBaseDescription()", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "Checked": "Checked", + "DefaultChecked": "DefaultChecked", + "Disabled": "Disabled", + "FocusRef": "FocusRef", + "Invalid": "Invalid", + "LabelPosition": "LabelPosition", + "Required": "Required", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebCheckboxBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxBaseDescriptionMetadata()": "WebCheckboxBaseDescriptionMetadata()", + "WebCheckboxBaseDescriptionMetadata": "WebCheckboxBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxBaseDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxBaseDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxBaseDescriptionModule()": "WebCheckboxBaseDescriptionModule()", + "WebCheckboxBaseDescriptionModule": "WebCheckboxBaseDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxChangeEventArgsDescription()": "WebCheckboxChangeEventArgsDescription()", + "WebCheckboxChangeEventArgsDescription": "WebCheckboxChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebCheckboxChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxChangeEventArgsDescriptionMetadata()": "WebCheckboxChangeEventArgsDescriptionMetadata()", + "WebCheckboxChangeEventArgsDescriptionMetadata": "WebCheckboxChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxChangeEventArgsDetailDescription()": "WebCheckboxChangeEventArgsDetailDescription()", + "WebCheckboxChangeEventArgsDetailDescription": "WebCheckboxChangeEventArgsDetailDescription()", + "Checked": "Checked", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebCheckboxChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxChangeEventArgsDetailDescriptionMetadata()": "WebCheckboxChangeEventArgsDetailDescriptionMetadata()", + "WebCheckboxChangeEventArgsDetailDescriptionMetadata": "WebCheckboxChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxDescription", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxDescription()": "WebCheckboxDescription()", + "WebCheckboxDescription": "WebCheckboxDescription()", + "Indeterminate": "Indeterminate", + "Type": "Type" + } + } + ], + "WebCheckboxDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxDescriptionMetadata()": "WebCheckboxDescriptionMetadata()", + "WebCheckboxDescriptionMetadata": "WebCheckboxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCheckboxDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxDescriptionModule()": "WebCheckboxDescriptionModule()", + "WebCheckboxDescriptionModule": "WebCheckboxDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChipDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChipDescription", + "k": "class", + "s": "classes", + "m": { + "WebChipDescription()": "WebChipDescription()", + "WebChipDescription": "WebChipDescription()", + "Disabled": "Disabled", + "Removable": "Removable", + "RemoveRef": "RemoveRef", + "SelectRef": "SelectRef", + "Selectable": "Selectable", + "Selected": "Selected", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebChipDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChipDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChipDescriptionMetadata()": "WebChipDescriptionMetadata()", + "WebChipDescriptionMetadata": "WebChipDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChipDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebChipDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebChipDescriptionModule()": "WebChipDescriptionModule()", + "WebChipDescriptionModule": "WebChipDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCircularGradientDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCircularGradientDescription", + "k": "class", + "s": "classes", + "m": { + "WebCircularGradientDescription()": "WebCircularGradientDescription()", + "WebCircularGradientDescription": "WebCircularGradientDescription()", + "Color": "Color", + "Offset": "Offset", + "Opacity": "Opacity", + "Type": "Type" + } + } + ], + "WebCircularGradientDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCircularGradientDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCircularGradientDescriptionMetadata()": "WebCircularGradientDescriptionMetadata()", + "WebCircularGradientDescriptionMetadata": "WebCircularGradientDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCircularGradientDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCircularGradientDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCircularGradientDescriptionModule()": "WebCircularGradientDescriptionModule()", + "WebCircularGradientDescriptionModule": "WebCircularGradientDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCircularProgressDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCircularProgressDescription", + "k": "class", + "s": "classes", + "m": { + "WebCircularProgressDescription()": "WebCircularProgressDescription()", + "WebCircularProgressDescription": "WebCircularProgressDescription()", + "Type": "Type" + } + } + ], + "WebCircularProgressDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCircularProgressDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCircularProgressDescriptionMetadata()": "WebCircularProgressDescriptionMetadata()", + "WebCircularProgressDescriptionMetadata": "WebCircularProgressDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCircularProgressDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCircularProgressDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCircularProgressDescriptionModule()": "WebCircularProgressDescriptionModule()", + "WebCircularProgressDescriptionModule": "WebCircularProgressDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebClipboardOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebClipboardOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebClipboardOptionsDescription()": "WebClipboardOptionsDescription()", + "WebClipboardOptionsDescription": "WebClipboardOptionsDescription()", + "CopyFormatters": "CopyFormatters", + "CopyHeaders": "CopyHeaders", + "Enabled": "Enabled", + "Separator": "Separator", + "Type": "Type" + } + } + ], + "WebClipboardOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebClipboardOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebClipboardOptionsDescriptionMetadata()": "WebClipboardOptionsDescriptionMetadata()", + "WebClipboardOptionsDescriptionMetadata": "WebClipboardOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnComponentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnComponentEventArgsDescription()": "WebColumnComponentEventArgsDescription()", + "WebColumnComponentEventArgsDescription": "WebColumnComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnComponentEventArgsDescriptionMetadata()": "WebColumnComponentEventArgsDescriptionMetadata()", + "WebColumnComponentEventArgsDescriptionMetadata": "WebColumnComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnDescription()": "WebColumnDescription()", + "WebColumnDescription": "WebColumnDescription()", + "AdditionalTemplateContext": "AdditionalTemplateContext", + "AutosizeHeader": "AutosizeHeader", + "BodyTemplateRef": "BodyTemplateRef", + "CellClassesRef": "CellClassesRef", + "CellStylesRef": "CellStylesRef", + "ColEnd": "ColEnd", + "ColStart": "ColStart", + "DataType": "DataType", + "DisableHiding": "DisableHiding", + "DisablePinning": "DisablePinning", + "DisabledSummaries": "DisabledSummaries", + "Editable": "Editable", + "EditorOptions": "EditorOptions", + "ErrorTemplateRef": "ErrorTemplateRef", + "ExpandedChangeRef": "ExpandedChangeRef", + "Field": "Field", + "FilterCellTemplateRef": "FilterCellTemplateRef", + "Filterable": "Filterable", + "FilteringIgnoreCase": "FilteringIgnoreCase", + "Filters": "Filters", + "FormatterRef": "FormatterRef", + "Groupable": "Groupable", + "HasSummary": "HasSummary", + "Header": "Header", + "HeaderClasses": "HeaderClasses", + "HeaderGroupClasses": "HeaderGroupClasses", + "HeaderGroupStyles": "HeaderGroupStyles", + "HeaderStyles": "HeaderStyles", + "HeaderTemplateRef": "HeaderTemplateRef", + "Hidden": "Hidden", + "HiddenChangeRef": "HiddenChangeRef", + "InlineEditorTemplateRef": "InlineEditorTemplateRef", + "MaxWidth": "MaxWidth", + "Merge": "Merge", + "MinWidth": "MinWidth", + "ParentColumn": "ParentColumn", + "Pinned": "Pinned", + "PinnedChangeRef": "PinnedChangeRef", + "PinningPosition": "PinningPosition", + "PipeArgs": "PipeArgs", + "Resizable": "Resizable", + "RowEnd": "RowEnd", + "RowStart": "RowStart", + "Searchable": "Searchable", + "Selectable": "Selectable", + "Selected": "Selected", + "SortStrategy": "SortStrategy", + "Sortable": "Sortable", + "SortingIgnoreCase": "SortingIgnoreCase", + "SummariesRef": "SummariesRef", + "SummaryFormatterRef": "SummaryFormatterRef", + "SummaryTemplateRef": "SummaryTemplateRef", + "Title": "Title", + "Type": "Type", + "VisibleWhenCollapsed": "VisibleWhenCollapsed", + "Width": "Width", + "WidthChangeRef": "WidthChangeRef" + } + } + ], + "WebColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnDescriptionMetadata()": "WebColumnDescriptionMetadata()", + "WebColumnDescriptionMetadata": "WebColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebColumnDescriptionModule()": "WebColumnDescriptionModule()", + "WebColumnDescriptionModule": "WebColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnEditorOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnEditorOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnEditorOptionsDescription()": "WebColumnEditorOptionsDescription()", + "WebColumnEditorOptionsDescription": "WebColumnEditorOptionsDescription()", + "Type": "Type" + } + } + ], + "WebColumnEditorOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnEditorOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnEditorOptionsDescriptionMetadata()": "WebColumnEditorOptionsDescriptionMetadata()", + "WebColumnEditorOptionsDescriptionMetadata": "WebColumnEditorOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnExportingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnExportingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnExportingEventArgsDescription()": "WebColumnExportingEventArgsDescription()", + "WebColumnExportingEventArgsDescription": "WebColumnExportingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnExportingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnExportingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnExportingEventArgsDescriptionMetadata()": "WebColumnExportingEventArgsDescriptionMetadata()", + "WebColumnExportingEventArgsDescriptionMetadata": "WebColumnExportingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnExportingEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnExportingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnExportingEventArgsDetailDescription()": "WebColumnExportingEventArgsDetailDescription()", + "WebColumnExportingEventArgsDetailDescription": "WebColumnExportingEventArgsDetailDescription()", + "Cancel": "Cancel", + "ColumnIndex": "ColumnIndex", + "Field": "Field", + "Grid": "Grid", + "Header": "Header", + "SkipFormatter": "SkipFormatter", + "Type": "Type" + } + } + ], + "WebColumnExportingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnExportingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnExportingEventArgsDetailDescriptionMetadata()": "WebColumnExportingEventArgsDetailDescriptionMetadata()", + "WebColumnExportingEventArgsDetailDescriptionMetadata": "WebColumnExportingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnGroupDescription()": "WebColumnGroupDescription()", + "WebColumnGroupDescription": "WebColumnGroupDescription()", + "Children": "Children", + "Collapsible": "Collapsible", + "CollapsibleIndicatorTemplateRef": "CollapsibleIndicatorTemplateRef", + "Expanded": "Expanded", + "Type": "Type" + } + } + ], + "WebColumnGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnGroupDescriptionMetadata()": "WebColumnGroupDescriptionMetadata()", + "WebColumnGroupDescriptionMetadata": "WebColumnGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebColumnGroupDescriptionModule()": "WebColumnGroupDescriptionModule()", + "WebColumnGroupDescriptionModule": "WebColumnGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnLayoutDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnLayoutDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnLayoutDescription()": "WebColumnLayoutDescription()", + "WebColumnLayoutDescription": "WebColumnLayoutDescription()", + "Type": "Type" + } + } + ], + "WebColumnLayoutDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnLayoutDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnLayoutDescriptionMetadata()": "WebColumnLayoutDescriptionMetadata()", + "WebColumnLayoutDescriptionMetadata": "WebColumnLayoutDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnLayoutDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnLayoutDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebColumnLayoutDescriptionModule()": "WebColumnLayoutDescriptionModule()", + "WebColumnLayoutDescriptionModule": "WebColumnLayoutDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingEndEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingEndEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEndEventArgsDescription()": "WebColumnMovingEndEventArgsDescription()", + "WebColumnMovingEndEventArgsDescription": "WebColumnMovingEndEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnMovingEndEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingEndEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEndEventArgsDescriptionMetadata()": "WebColumnMovingEndEventArgsDescriptionMetadata()", + "WebColumnMovingEndEventArgsDescriptionMetadata": "WebColumnMovingEndEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingEndEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingEndEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEndEventArgsDetailDescription()": "WebColumnMovingEndEventArgsDetailDescription()", + "WebColumnMovingEndEventArgsDetailDescription": "WebColumnMovingEndEventArgsDetailDescription()", + "Cancel": "Cancel", + "Source": "Source", + "Target": "Target", + "Type": "Type" + } + } + ], + "WebColumnMovingEndEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingEndEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEndEventArgsDetailDescriptionMetadata()": "WebColumnMovingEndEventArgsDetailDescriptionMetadata()", + "WebColumnMovingEndEventArgsDetailDescriptionMetadata": "WebColumnMovingEndEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEventArgsDescription()": "WebColumnMovingEventArgsDescription()", + "WebColumnMovingEventArgsDescription": "WebColumnMovingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnMovingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEventArgsDescriptionMetadata()": "WebColumnMovingEventArgsDescriptionMetadata()", + "WebColumnMovingEventArgsDescriptionMetadata": "WebColumnMovingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEventArgsDetailDescription()": "WebColumnMovingEventArgsDetailDescription()", + "WebColumnMovingEventArgsDetailDescription": "WebColumnMovingEventArgsDetailDescription()", + "Cancel": "Cancel", + "Source": "Source", + "Type": "Type" + } + } + ], + "WebColumnMovingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEventArgsDetailDescriptionMetadata()": "WebColumnMovingEventArgsDetailDescriptionMetadata()", + "WebColumnMovingEventArgsDetailDescriptionMetadata": "WebColumnMovingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingStartEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingStartEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingStartEventArgsDescription()": "WebColumnMovingStartEventArgsDescription()", + "WebColumnMovingStartEventArgsDescription": "WebColumnMovingStartEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnMovingStartEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingStartEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingStartEventArgsDescriptionMetadata()": "WebColumnMovingStartEventArgsDescriptionMetadata()", + "WebColumnMovingStartEventArgsDescriptionMetadata": "WebColumnMovingStartEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingStartEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingStartEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingStartEventArgsDetailDescription()": "WebColumnMovingStartEventArgsDetailDescription()", + "WebColumnMovingStartEventArgsDetailDescription": "WebColumnMovingStartEventArgsDetailDescription()", + "Source": "Source", + "Type": "Type" + } + } + ], + "WebColumnMovingStartEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnMovingStartEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingStartEventArgsDetailDescriptionMetadata()": "WebColumnMovingStartEventArgsDetailDescriptionMetadata()", + "WebColumnMovingStartEventArgsDetailDescriptionMetadata": "WebColumnMovingStartEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnPipeArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnPipeArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnPipeArgsDescription()": "WebColumnPipeArgsDescription()", + "WebColumnPipeArgsDescription": "WebColumnPipeArgsDescription()", + "Type": "Type" + } + } + ], + "WebColumnPipeArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnPipeArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnPipeArgsDescriptionMetadata()": "WebColumnPipeArgsDescriptionMetadata()", + "WebColumnPipeArgsDescriptionMetadata": "WebColumnPipeArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnResizeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnResizeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnResizeEventArgsDescription()": "WebColumnResizeEventArgsDescription()", + "WebColumnResizeEventArgsDescription": "WebColumnResizeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnResizeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnResizeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnResizeEventArgsDescriptionMetadata()": "WebColumnResizeEventArgsDescriptionMetadata()", + "WebColumnResizeEventArgsDescriptionMetadata": "WebColumnResizeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnResizeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnResizeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnResizeEventArgsDetailDescription()": "WebColumnResizeEventArgsDetailDescription()", + "WebColumnResizeEventArgsDetailDescription": "WebColumnResizeEventArgsDetailDescription()", + "Column": "Column", + "NewWidth": "NewWidth", + "PrevWidth": "PrevWidth", + "Type": "Type" + } + } + ], + "WebColumnResizeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnResizeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnResizeEventArgsDetailDescriptionMetadata()": "WebColumnResizeEventArgsDetailDescriptionMetadata()", + "WebColumnResizeEventArgsDetailDescriptionMetadata": "WebColumnResizeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnsAutoGeneratedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnsAutoGeneratedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnsAutoGeneratedEventArgsDescription()": "WebColumnsAutoGeneratedEventArgsDescription()", + "WebColumnsAutoGeneratedEventArgsDescription": "WebColumnsAutoGeneratedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnsAutoGeneratedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnsAutoGeneratedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnsAutoGeneratedEventArgsDescriptionMetadata()": "WebColumnsAutoGeneratedEventArgsDescriptionMetadata()", + "WebColumnsAutoGeneratedEventArgsDescriptionMetadata": "WebColumnsAutoGeneratedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnsAutoGeneratedEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnsAutoGeneratedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnsAutoGeneratedEventArgsDetailDescription()": "WebColumnsAutoGeneratedEventArgsDetailDescription()", + "WebColumnsAutoGeneratedEventArgsDetailDescription": "WebColumnsAutoGeneratedEventArgsDetailDescription()", + "Columns": "Columns", + "Type": "Type" + } + } + ], + "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata()": "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata()", + "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata": "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnSelectionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnSelectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnSelectionEventArgsDescription()": "WebColumnSelectionEventArgsDescription()", + "WebColumnSelectionEventArgsDescription": "WebColumnSelectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnSelectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnSelectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnSelectionEventArgsDescriptionMetadata()": "WebColumnSelectionEventArgsDescriptionMetadata()", + "WebColumnSelectionEventArgsDescriptionMetadata": "WebColumnSelectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnSelectionEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnSelectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnSelectionEventArgsDetailDescription()": "WebColumnSelectionEventArgsDetailDescription()", + "WebColumnSelectionEventArgsDetailDescription": "WebColumnSelectionEventArgsDetailDescription()", + "Added": "Added", + "NewSelection": "NewSelection", + "OldSelection": "OldSelection", + "Owner": "Owner", + "Removed": "Removed", + "Type": "Type" + } + } + ], + "WebColumnSelectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnSelectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnSelectionEventArgsDetailDescriptionMetadata()": "WebColumnSelectionEventArgsDetailDescriptionMetadata()", + "WebColumnSelectionEventArgsDetailDescriptionMetadata": "WebColumnSelectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnStateDescription()": "WebColumnStateDescription()", + "WebColumnStateDescription": "WebColumnStateDescription()", + "ColEnd": "ColEnd", + "ColStart": "ColStart", + "Collapsible": "Collapsible", + "ColumnGroup": "ColumnGroup", + "ColumnLayout": "ColumnLayout", + "DataType": "DataType", + "DisableHiding": "DisableHiding", + "DisablePinning": "DisablePinning", + "Editable": "Editable", + "Expanded": "Expanded", + "Field": "Field", + "Filterable": "Filterable", + "FilteringIgnoreCase": "FilteringIgnoreCase", + "Groupable": "Groupable", + "HasSummary": "HasSummary", + "Header": "Header", + "HeaderClasses": "HeaderClasses", + "HeaderGroupClasses": "HeaderGroupClasses", + "Hidden": "Hidden", + "Key": "Key", + "MaxWidth": "MaxWidth", + "Parent": "Parent", + "ParentKey": "ParentKey", + "Pinned": "Pinned", + "Resizable": "Resizable", + "RowEnd": "RowEnd", + "RowStart": "RowStart", + "Searchable": "Searchable", + "Sortable": "Sortable", + "SortingIgnoreCase": "SortingIgnoreCase", + "Type": "Type", + "VisibleWhenCollapsed": "VisibleWhenCollapsed", + "Width": "Width" + } + } + ], + "WebColumnStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnStateDescriptionMetadata()": "WebColumnStateDescriptionMetadata()", + "WebColumnStateDescriptionMetadata": "WebColumnStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnTemplateContextDescription()": "WebColumnTemplateContextDescription()", + "WebColumnTemplateContextDescription": "WebColumnTemplateContextDescription()", + "Column": "Column", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebColumnTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnTemplateContextDescriptionMetadata()": "WebColumnTemplateContextDescriptionMetadata()", + "WebColumnTemplateContextDescriptionMetadata": "WebColumnTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnToggledEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnToggledEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnToggledEventArgsDescription()": "WebColumnToggledEventArgsDescription()", + "WebColumnToggledEventArgsDescription": "WebColumnToggledEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnToggledEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnToggledEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnToggledEventArgsDescriptionMetadata()": "WebColumnToggledEventArgsDescriptionMetadata()", + "WebColumnToggledEventArgsDescriptionMetadata": "WebColumnToggledEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnToggledEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnToggledEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnToggledEventArgsDetailDescription()": "WebColumnToggledEventArgsDetailDescription()", + "WebColumnToggledEventArgsDetailDescription": "WebColumnToggledEventArgsDetailDescription()", + "Checked": "Checked", + "Column": "Column", + "Type": "Type" + } + } + ], + "WebColumnToggledEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnToggledEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnToggledEventArgsDetailDescriptionMetadata()": "WebColumnToggledEventArgsDetailDescriptionMetadata()", + "WebColumnToggledEventArgsDetailDescriptionMetadata": "WebColumnToggledEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnVisibilityChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnVisibilityChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangedEventArgsDescription()": "WebColumnVisibilityChangedEventArgsDescription()", + "WebColumnVisibilityChangedEventArgsDescription": "WebColumnVisibilityChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnVisibilityChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnVisibilityChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangedEventArgsDescriptionMetadata()": "WebColumnVisibilityChangedEventArgsDescriptionMetadata()", + "WebColumnVisibilityChangedEventArgsDescriptionMetadata": "WebColumnVisibilityChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnVisibilityChangedEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnVisibilityChangedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangedEventArgsDetailDescription()": "WebColumnVisibilityChangedEventArgsDetailDescription()", + "WebColumnVisibilityChangedEventArgsDetailDescription": "WebColumnVisibilityChangedEventArgsDetailDescription()", + "Column": "Column", + "NewValue": "NewValue", + "Type": "Type" + } + } + ], + "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata()": "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata()", + "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata": "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnVisibilityChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnVisibilityChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangingEventArgsDescription()": "WebColumnVisibilityChangingEventArgsDescription()", + "WebColumnVisibilityChangingEventArgsDescription": "WebColumnVisibilityChangingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnVisibilityChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnVisibilityChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangingEventArgsDescriptionMetadata()": "WebColumnVisibilityChangingEventArgsDescriptionMetadata()", + "WebColumnVisibilityChangingEventArgsDescriptionMetadata": "WebColumnVisibilityChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnVisibilityChangingEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnVisibilityChangingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangingEventArgsDetailDescription()": "WebColumnVisibilityChangingEventArgsDetailDescription()", + "WebColumnVisibilityChangingEventArgsDetailDescription": "WebColumnVisibilityChangingEventArgsDetailDescription()", + "Column": "Column", + "NewValue": "NewValue", + "Type": "Type" + } + } + ], + "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata()": "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata()", + "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata": "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboBoxBaseLikeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboBoxBaseLikeDescription", + "k": "class", + "s": "classes", + "m": { + "WebComboBoxBaseLikeDescription()": "WebComboBoxBaseLikeDescription()", + "WebComboBoxBaseLikeDescription": "WebComboBoxBaseLikeDescription()", + "KeepOpenOnOutsideClick": "KeepOpenOnOutsideClick", + "KeepOpenOnSelect": "KeepOpenOnSelect", + "Type": "Type" + } + } + ], + "WebComboBoxBaseLikeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboBoxBaseLikeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComboBoxBaseLikeDescriptionMetadata()": "WebComboBoxBaseLikeDescriptionMetadata()", + "WebComboBoxBaseLikeDescriptionMetadata": "WebComboBoxBaseLikeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComboChangeEventArgsDescription()": "WebComboChangeEventArgsDescription()", + "WebComboChangeEventArgsDescription": "WebComboChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComboChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComboChangeEventArgsDescriptionMetadata()": "WebComboChangeEventArgsDescriptionMetadata()", + "WebComboChangeEventArgsDescriptionMetadata": "WebComboChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebComboChangeEventArgsDetailDescription()": "WebComboChangeEventArgsDetailDescription()", + "WebComboChangeEventArgsDetailDescription": "WebComboChangeEventArgsDetailDescription()", + "ChangeType": "ChangeType", + "ItemsRef": "ItemsRef", + "NewValueRef": "NewValueRef", + "Type": "Type" + } + } + ], + "WebComboChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComboChangeEventArgsDetailDescriptionMetadata()": "WebComboChangeEventArgsDetailDescriptionMetadata()", + "WebComboChangeEventArgsDetailDescriptionMetadata": "WebComboChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboDescription", + "k": "class", + "s": "classes", + "m": { + "WebComboDescription()": "WebComboDescription()", + "WebComboDescription": "WebComboDescription()", + "Autofocus": "Autofocus", + "AutofocusList": "AutofocusList", + "BlurRef": "BlurRef", + "CaseSensitiveIcon": "CaseSensitiveIcon", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "DataRef": "DataRef", + "DefaultValue": "DefaultValue", + "DisableClear": "DisableClear", + "DisableFiltering": "DisableFiltering", + "Disabled": "Disabled", + "DisplayKey": "DisplayKey", + "FilteringOptions": "FilteringOptions", + "FocusRef": "FocusRef", + "GroupHeaderTemplateRef": "GroupHeaderTemplateRef", + "GroupKey": "GroupKey", + "GroupSorting": "GroupSorting", + "Invalid": "Invalid", + "ItemTemplateRef": "ItemTemplateRef", + "Label": "Label", + "Locale": "Locale", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "PlaceholderSearch": "PlaceholderSearch", + "Required": "Required", + "SingleSelect": "SingleSelect", + "Type": "Type", + "Value": "Value", + "ValueKey": "ValueKey" + } + } + ], + "WebComboDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComboDescriptionMetadata()": "WebComboDescriptionMetadata()", + "WebComboDescriptionMetadata": "WebComboDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComboDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebComboDescriptionModule()": "WebComboDescriptionModule()", + "WebComboDescriptionModule": "WebComboDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentArrayDataValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentArrayDataValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentArrayDataValueChangedEventArgsDescription()": "WebComponentArrayDataValueChangedEventArgsDescription()", + "WebComponentArrayDataValueChangedEventArgsDescription": "WebComponentArrayDataValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentArrayDataValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata()": "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata()", + "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata": "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentBoolValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentBoolValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentBoolValueChangedEventArgsDescription()": "WebComponentBoolValueChangedEventArgsDescription()", + "WebComponentBoolValueChangedEventArgsDescription": "WebComponentBoolValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentBoolValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentBoolValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentBoolValueChangedEventArgsDescriptionMetadata()": "WebComponentBoolValueChangedEventArgsDescriptionMetadata()", + "WebComponentBoolValueChangedEventArgsDescriptionMetadata": "WebComponentBoolValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentDataValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentDataValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentDataValueChangedEventArgsDescription()": "WebComponentDataValueChangedEventArgsDescription()", + "WebComponentDataValueChangedEventArgsDescription": "WebComponentDataValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentDataValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentDataValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentDataValueChangedEventArgsDescriptionMetadata()": "WebComponentDataValueChangedEventArgsDescriptionMetadata()", + "WebComponentDataValueChangedEventArgsDescriptionMetadata": "WebComponentDataValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentDateValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentDateValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentDateValueChangedEventArgsDescription()": "WebComponentDateValueChangedEventArgsDescription()", + "WebComponentDateValueChangedEventArgsDescription": "WebComponentDateValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentDateValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentDateValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentDateValueChangedEventArgsDescriptionMetadata()": "WebComponentDateValueChangedEventArgsDescriptionMetadata()", + "WebComponentDateValueChangedEventArgsDescriptionMetadata": "WebComponentDateValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentValueChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentValueChangedEventArgsDescription()": "WebComponentValueChangedEventArgsDescription()", + "WebComponentValueChangedEventArgsDescription": "WebComponentValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebComponentValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentValueChangedEventArgsDescriptionMetadata()": "WebComponentValueChangedEventArgsDescriptionMetadata()", + "WebComponentValueChangedEventArgsDescriptionMetadata": "WebComponentValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebContentPaneDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebContentPaneDescription", + "k": "class", + "s": "classes", + "m": { + "WebContentPaneDescription()": "WebContentPaneDescription()", + "WebContentPaneDescription": "WebContentPaneDescription()", + "AcceptsInnerDock": "AcceptsInnerDock", + "AllowClose": "AllowClose", + "AllowDocking": "AllowDocking", + "AllowFloating": "AllowFloating", + "AllowMaximize": "AllowMaximize", + "AllowPinning": "AllowPinning", + "ContentId": "ContentId", + "Disabled": "Disabled", + "DocumentOnly": "DocumentOnly", + "FloatingHeaderId": "FloatingHeaderId", + "Header": "Header", + "HeaderId": "HeaderId", + "Hidden": "Hidden", + "Id": "Id", + "IsMaximized": "IsMaximized", + "IsPinned": "IsPinned", + "MinResizeHeight": "MinResizeHeight", + "MinResizeWidth": "MinResizeWidth", + "PaneType": "PaneType", + "Size": "Size", + "TabHeaderId": "TabHeaderId", + "Type": "Type", + "UnpinnedHeaderId": "UnpinnedHeaderId", + "UnpinnedLocation": "UnpinnedLocation", + "UnpinnedSize": "UnpinnedSize" + } + } + ], + "WebContentPaneDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebContentPaneDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebContentPaneDescriptionMetadata()": "WebContentPaneDescriptionMetadata()", + "WebContentPaneDescriptionMetadata": "WebContentPaneDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebContentPaneDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebContentPaneDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebContentPaneDescriptionModule()": "WebContentPaneDescriptionModule()", + "WebContentPaneDescriptionModule": "WebContentPaneDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCustomDateRangeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCustomDateRangeDescription", + "k": "class", + "s": "classes", + "m": { + "WebCustomDateRangeDescription()": "WebCustomDateRangeDescription()", + "WebCustomDateRangeDescription": "WebCustomDateRangeDescription()", + "DateRange": "DateRange", + "Label": "Label", + "Type": "Type" + } + } + ], + "WebCustomDateRangeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebCustomDateRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCustomDateRangeDescriptionMetadata()": "WebCustomDateRangeDescriptionMetadata()", + "WebCustomDateRangeDescriptionMetadata": "WebCustomDateRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDataCloneStrategyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDataCloneStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebDataCloneStrategyDescription()": "WebDataCloneStrategyDescription()", + "WebDataCloneStrategyDescription": "WebDataCloneStrategyDescription()", + "Type": "Type" + } + } + ], + "WebDataCloneStrategyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDataCloneStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDataCloneStrategyDescriptionMetadata()": "WebDataCloneStrategyDescriptionMetadata()", + "WebDataCloneStrategyDescriptionMetadata": "WebDataCloneStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateFilteringOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateFilteringOperandDescription()": "WebDateFilteringOperandDescription()", + "WebDateFilteringOperandDescription": "WebDateFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebDateFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateFilteringOperandDescriptionMetadata()": "WebDateFilteringOperandDescriptionMetadata()", + "WebDateFilteringOperandDescriptionMetadata": "WebDateFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDatePickerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDatePickerDescription", + "k": "class", + "s": "classes", + "m": { + "WebDatePickerDescription()": "WebDatePickerDescription()", + "WebDatePickerDescription": "WebDatePickerDescription()", + "ActiveDate": "ActiveDate", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "DisabledDates": "DisabledDates", + "DisplayFormat": "DisplayFormat", + "HeaderOrientation": "HeaderOrientation", + "HideHeader": "HideHeader", + "HideOutsideDays": "HideOutsideDays", + "InputFormat": "InputFormat", + "InputRef": "InputRef", + "Invalid": "Invalid", + "Label": "Label", + "Locale": "Locale", + "Max": "Max", + "Min": "Min", + "Mode": "Mode", + "NonEditable": "NonEditable", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Orientation": "Orientation", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "Prompt": "Prompt", + "ReadOnly": "ReadOnly", + "Required": "Required", + "ResourceStrings": "ResourceStrings", + "ShowWeekNumbers": "ShowWeekNumbers", + "SpecialDates": "SpecialDates", + "Type": "Type", + "Value": "Value", + "VisibleMonths": "VisibleMonths", + "WeekStart": "WeekStart" + } + } + ], + "WebDatePickerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDatePickerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDatePickerDescriptionMetadata()": "WebDatePickerDescriptionMetadata()", + "WebDatePickerDescriptionMetadata": "WebDatePickerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDatePickerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDatePickerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDatePickerDescriptionModule()": "WebDatePickerDescriptionModule()", + "WebDatePickerDescriptionModule": "WebDatePickerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangePickerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangePickerDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerDescription()": "WebDateRangePickerDescription()", + "WebDateRangePickerDescription": "WebDateRangePickerDescription()", + "ActiveDate": "ActiveDate", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "CustomRanges": "CustomRanges", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "DisabledDates": "DisabledDates", + "DisplayFormat": "DisplayFormat", + "HeaderOrientation": "HeaderOrientation", + "HideHeader": "HideHeader", + "HideOutsideDays": "HideOutsideDays", + "InputFormat": "InputFormat", + "InputRef": "InputRef", + "Invalid": "Invalid", + "Label": "Label", + "LabelEnd": "LabelEnd", + "LabelStart": "LabelStart", + "Locale": "Locale", + "Max": "Max", + "Min": "Min", + "Mode": "Mode", + "NonEditable": "NonEditable", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Orientation": "Orientation", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "PlaceholderEnd": "PlaceholderEnd", + "PlaceholderStart": "PlaceholderStart", + "Prompt": "Prompt", + "ReadOnly": "ReadOnly", + "Required": "Required", + "ResourceStrings": "ResourceStrings", + "ShowWeekNumbers": "ShowWeekNumbers", + "SpecialDates": "SpecialDates", + "Type": "Type", + "UsePredefinedRanges": "UsePredefinedRanges", + "UseTwoInputs": "UseTwoInputs", + "Value": "Value", + "VisibleMonths": "VisibleMonths", + "WeekStart": "WeekStart" + } + } + ], + "WebDateRangePickerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangePickerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerDescriptionMetadata()": "WebDateRangePickerDescriptionMetadata()", + "WebDateRangePickerDescriptionMetadata": "WebDateRangePickerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangePickerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangePickerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerDescriptionModule()": "WebDateRangePickerDescriptionModule()", + "WebDateRangePickerDescriptionModule": "WebDateRangePickerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangePickerResourceStringsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangePickerResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerResourceStringsDescription()": "WebDateRangePickerResourceStringsDescription()", + "WebDateRangePickerResourceStringsDescription": "WebDateRangePickerResourceStringsDescription()", + "Type": "Type" + } + } + ], + "WebDateRangePickerResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangePickerResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerResourceStringsDescriptionMetadata()": "WebDateRangePickerResourceStringsDescriptionMetadata()", + "WebDateRangePickerResourceStringsDescriptionMetadata": "WebDateRangePickerResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangeValueDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangeValueDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueDescription()": "WebDateRangeValueDescription()", + "WebDateRangeValueDescription": "WebDateRangeValueDescription()", + "End": "End", + "Start": "Start", + "Type": "Type" + } + } + ], + "WebDateRangeValueDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangeValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueDescriptionMetadata()": "WebDateRangeValueDescriptionMetadata()", + "WebDateRangeValueDescriptionMetadata": "WebDateRangeValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangeValueDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangeValueDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueDetailDescription()": "WebDateRangeValueDetailDescription()", + "WebDateRangeValueDetailDescription": "WebDateRangeValueDetailDescription()", + "End": "End", + "Start": "Start", + "Type": "Type" + } + } + ], + "WebDateRangeValueDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangeValueDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueDetailDescriptionMetadata()": "WebDateRangeValueDetailDescriptionMetadata()", + "WebDateRangeValueDetailDescriptionMetadata": "WebDateRangeValueDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangeValueEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangeValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueEventArgsDescription()": "WebDateRangeValueEventArgsDescription()", + "WebDateRangeValueEventArgsDescription": "WebDateRangeValueEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebDateRangeValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateRangeValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueEventArgsDescriptionMetadata()": "WebDateRangeValueEventArgsDescriptionMetadata()", + "WebDateRangeValueEventArgsDescriptionMetadata": "WebDateRangeValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateSummaryOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateSummaryOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateSummaryOperandDescription()": "WebDateSummaryOperandDescription()", + "WebDateSummaryOperandDescription": "WebDateSummaryOperandDescription()", + "Type": "Type" + } + } + ], + "WebDateSummaryOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateSummaryOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateSummaryOperandDescriptionMetadata()": "WebDateSummaryOperandDescriptionMetadata()", + "WebDateSummaryOperandDescriptionMetadata": "WebDateSummaryOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateTimeFilteringOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateTimeFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeFilteringOperandDescription()": "WebDateTimeFilteringOperandDescription()", + "WebDateTimeFilteringOperandDescription": "WebDateTimeFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebDateTimeFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateTimeFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeFilteringOperandDescriptionMetadata()": "WebDateTimeFilteringOperandDescriptionMetadata()", + "WebDateTimeFilteringOperandDescriptionMetadata": "WebDateTimeFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateTimeInputBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateTimeInputBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputBaseDescription()": "WebDateTimeInputBaseDescription()", + "WebDateTimeInputBaseDescription": "WebDateTimeInputBaseDescription()", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "DisplayFormat": "DisplayFormat", + "InputFormat": "InputFormat", + "Invalid": "Invalid", + "Label": "Label", + "Locale": "Locale", + "Mask": "Mask", + "Max": "Max", + "Min": "Min", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "Prompt": "Prompt", + "ReadOnly": "ReadOnly", + "Required": "Required", + "SpinDelta": "SpinDelta", + "SpinLoop": "SpinLoop", + "Type": "Type" + } + } + ], + "WebDateTimeInputBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateTimeInputBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputBaseDescriptionMetadata()": "WebDateTimeInputBaseDescriptionMetadata()", + "WebDateTimeInputBaseDescriptionMetadata": "WebDateTimeInputBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateTimeInputDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateTimeInputDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputDescription()": "WebDateTimeInputDescription()", + "WebDateTimeInputDescription": "WebDateTimeInputDescription()", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "FocusRef": "FocusRef", + "InputOcurredRef": "InputOcurredRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebDateTimeInputDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateTimeInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputDescriptionMetadata()": "WebDateTimeInputDescriptionMetadata()", + "WebDateTimeInputDescriptionMetadata": "WebDateTimeInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateTimeInputDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDateTimeInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputDescriptionModule()": "WebDateTimeInputDescriptionModule()", + "WebDateTimeInputDescriptionModule": "WebDateTimeInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDialogDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDialogDescription", + "k": "class", + "s": "classes", + "m": { + "WebDialogDescription()": "WebDialogDescription()", + "WebDialogDescription": "WebDialogDescription()", + "CloseOnOutsideClick": "CloseOnOutsideClick", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "HideDefaultAction": "HideDefaultAction", + "KeepOpenOnEscape": "KeepOpenOnEscape", + "Open": "Open", + "ReturnValue": "ReturnValue", + "Title": "Title", + "Type": "Type" + } + } + ], + "WebDialogDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDialogDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDialogDescriptionMetadata()": "WebDialogDescriptionMetadata()", + "WebDialogDescriptionMetadata": "WebDialogDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDialogDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDialogDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDialogDescriptionModule()": "WebDialogDescriptionModule()", + "WebDialogDescriptionModule": "WebDialogDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDimensionsChangeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDimensionsChangeDescription", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeDescription()": "WebDimensionsChangeDescription()", + "WebDimensionsChangeDescription": "WebDimensionsChangeDescription()", + "DimensionCollectionType": "DimensionCollectionType", + "Dimensions": "Dimensions", + "Type": "Type" + } + } + ], + "WebDimensionsChangeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDimensionsChangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeDescriptionMetadata()": "WebDimensionsChangeDescriptionMetadata()", + "WebDimensionsChangeDescriptionMetadata": "WebDimensionsChangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDimensionsChangeDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDimensionsChangeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeDetailDescription()": "WebDimensionsChangeDetailDescription()", + "WebDimensionsChangeDetailDescription": "WebDimensionsChangeDetailDescription()", + "DimensionCollectionType": "DimensionCollectionType", + "Dimensions": "Dimensions", + "Type": "Type" + } + } + ], + "WebDimensionsChangeDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDimensionsChangeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeDetailDescriptionMetadata()": "WebDimensionsChangeDetailDescriptionMetadata()", + "WebDimensionsChangeDetailDescriptionMetadata": "WebDimensionsChangeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDimensionsChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDimensionsChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeEventArgsDescription()": "WebDimensionsChangeEventArgsDescription()", + "WebDimensionsChangeEventArgsDescription": "WebDimensionsChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebDimensionsChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDimensionsChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeEventArgsDescriptionMetadata()": "WebDimensionsChangeEventArgsDescriptionMetadata()", + "WebDimensionsChangeEventArgsDescriptionMetadata": "WebDimensionsChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDividerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDividerDescription", + "k": "class", + "s": "classes", + "m": { + "WebDividerDescription()": "WebDividerDescription()", + "WebDividerDescription": "WebDividerDescription()", + "LineType": "LineType", + "Middle": "Middle", + "Type": "Type", + "Vertical": "Vertical" + } + } + ], + "WebDividerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDividerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDividerDescriptionMetadata()": "WebDividerDescriptionMetadata()", + "WebDividerDescriptionMetadata": "WebDividerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDividerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDividerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDividerDescriptionModule()": "WebDividerDescriptionModule()", + "WebDividerDescriptionModule": "WebDividerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockingIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockingIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockingIndicatorDescription()": "WebDockingIndicatorDescription()", + "WebDockingIndicatorDescription": "WebDockingIndicatorDescription()", + "Direction": "Direction", + "IsRoot": "IsRoot", + "Position": "Position", + "Type": "Type" + } + } + ], + "WebDockingIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockingIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockingIndicatorDescriptionMetadata()": "WebDockingIndicatorDescriptionMetadata()", + "WebDockingIndicatorDescriptionMetadata": "WebDockingIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerDescription()": "WebDockManagerDescription()", + "WebDockManagerDescription": "WebDockManagerDescription()", + "ActivePane": "ActivePane", + "ActivePaneChangedRef": "ActivePaneChangedRef", + "AllowFloatingPanesResize": "AllowFloatingPanesResize", + "AllowInnerDock": "AllowInnerDock", + "AllowMaximize": "AllowMaximize", + "AllowRootDock": "AllowRootDock", + "AllowSplitterDock": "AllowSplitterDock", + "AutoScrollConfig": "AutoScrollConfig", + "CloseBehavior": "CloseBehavior", + "ContainedInBoundaries": "ContainedInBoundaries", + "ContextMenuPosition": "ContextMenuPosition", + "DisableKeyboardNavigation": "DisableKeyboardNavigation", + "DraggedPane": "DraggedPane", + "DropPosition": "DropPosition", + "EnableDragCursor": "EnableDragCursor", + "FloatingPaneResizeEndRef": "FloatingPaneResizeEndRef", + "FloatingPaneResizeMoveRef": "FloatingPaneResizeMoveRef", + "FloatingPaneResizeStartRef": "FloatingPaneResizeStartRef", + "IsValidDrop": "IsValidDrop", + "Layout": "Layout", + "LayoutChangeRef": "LayoutChangeRef", + "MaximizedPane": "MaximizedPane", + "NavigationPaneMeta": "NavigationPaneMeta", + "PaneCloseRef": "PaneCloseRef", + "PaneDragEndRef": "PaneDragEndRef", + "PaneDragOverRef": "PaneDragOverRef", + "PaneDragStartRef": "PaneDragStartRef", + "PaneFlyoutToggleRef": "PaneFlyoutToggleRef", + "PaneHeaderConnectedRef": "PaneHeaderConnectedRef", + "PaneHeaderDisconnectedRef": "PaneHeaderDisconnectedRef", + "PanePinnedToggleRef": "PanePinnedToggleRef", + "PaneScrollRef": "PaneScrollRef", + "ProximityDock": "ProximityDock", + "ResourceStrings": "ResourceStrings", + "ShowHeaderIconOnHover": "ShowHeaderIconOnHover", + "ShowPaneHeaders": "ShowPaneHeaders", + "TabHeaderConnectedRef": "TabHeaderConnectedRef", + "TabHeaderDisconnectedRef": "TabHeaderDisconnectedRef", + "Type": "Type", + "UnpinBehavior": "UnpinBehavior", + "UseFixedSizeOnDock": "UseFixedSizeOnDock" + } + } + ], + "WebDockManagerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerDescriptionMetadata()": "WebDockManagerDescriptionMetadata()", + "WebDockManagerDescriptionMetadata": "WebDockManagerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerDescriptionModule()": "WebDockManagerDescriptionModule()", + "WebDockManagerDescriptionModule": "WebDockManagerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerLayoutDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerLayoutDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerLayoutDescription()": "WebDockManagerLayoutDescription()", + "WebDockManagerLayoutDescription": "WebDockManagerLayoutDescription()", + "FloatingPanes": "FloatingPanes", + "RootPane": "RootPane", + "Type": "Type" + } + } + ], + "WebDockManagerLayoutDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerLayoutDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerLayoutDescriptionMetadata()": "WebDockManagerLayoutDescriptionMetadata()", + "WebDockManagerLayoutDescriptionMetadata": "WebDockManagerLayoutDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerLayoutDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerLayoutDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerLayoutDescriptionModule()": "WebDockManagerLayoutDescriptionModule()", + "WebDockManagerLayoutDescriptionModule": "WebDockManagerLayoutDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerPaneDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerPaneDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPaneDescription()": "WebDockManagerPaneDescription()", + "WebDockManagerPaneDescription": "WebDockManagerPaneDescription()", + "Type": "Type" + } + } + ], + "WebDockManagerPaneDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerPaneDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPaneDescriptionMetadata()": "WebDockManagerPaneDescriptionMetadata()", + "WebDockManagerPaneDescriptionMetadata": "WebDockManagerPaneDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerPointDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerPointDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPointDescription()": "WebDockManagerPointDescription()", + "WebDockManagerPointDescription": "WebDockManagerPointDescription()", + "Type": "Type", + "X": "X", + "Y": "Y" + } + } + ], + "WebDockManagerPointDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerPointDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPointDescriptionMetadata()": "WebDockManagerPointDescriptionMetadata()", + "WebDockManagerPointDescriptionMetadata": "WebDockManagerPointDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerPointDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerPointDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPointDescriptionModule()": "WebDockManagerPointDescriptionModule()", + "WebDockManagerPointDescriptionModule": "WebDockManagerPointDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerResourceStringsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerResourceStringsDescription()": "WebDockManagerResourceStringsDescription()", + "WebDockManagerResourceStringsDescription": "WebDockManagerResourceStringsDescription()", + "Close": "Close", + "Documents": "Documents", + "Maximize": "Maximize", + "Minimize": "Minimize", + "MoreOptions": "MoreOptions", + "MoreTabs": "MoreTabs", + "Panes": "Panes", + "Pin": "Pin", + "Type": "Type", + "Unpin": "Unpin" + } + } + ], + "WebDockManagerResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockManagerResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerResourceStringsDescriptionMetadata()": "WebDockManagerResourceStringsDescriptionMetadata()", + "WebDockManagerResourceStringsDescriptionMetadata": "WebDockManagerResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockPaneActionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockPaneActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockPaneActionDescription()": "WebDockPaneActionDescription()", + "WebDockPaneActionDescription": "WebDockPaneActionDescription()", + "ActionType": "ActionType", + "DockingIndicator": "DockingIndicator", + "TargetPane": "TargetPane", + "Type": "Type" + } + } + ], + "WebDockPaneActionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDockPaneActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockPaneActionDescriptionMetadata()": "WebDockPaneActionDescriptionMetadata()", + "WebDockPaneActionDescriptionMetadata": "WebDockPaneActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDocumentHostDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDocumentHostDescription", + "k": "class", + "s": "classes", + "m": { + "WebDocumentHostDescription()": "WebDocumentHostDescription()", + "WebDocumentHostDescription": "WebDocumentHostDescription()", + "Id": "Id", + "PaneType": "PaneType", + "RootPane": "RootPane", + "Size": "Size", + "Type": "Type" + } + } + ], + "WebDocumentHostDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDocumentHostDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDocumentHostDescriptionMetadata()": "WebDocumentHostDescriptionMetadata()", + "WebDocumentHostDescriptionMetadata": "WebDocumentHostDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDocumentHostDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDocumentHostDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDocumentHostDescriptionModule()": "WebDocumentHostDescriptionModule()", + "WebDocumentHostDescriptionModule": "WebDocumentHostDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDragServiceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDragServiceDescription", + "k": "class", + "s": "classes", + "m": { + "WebDragServiceDescription()": "WebDragServiceDescription()", + "WebDragServiceDescription": "WebDragServiceDescription()", + "Type": "Type" + } + } + ], + "WebDragServiceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDragServiceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDragServiceDescriptionMetadata()": "WebDragServiceDescriptionMetadata()", + "WebDragServiceDescriptionMetadata": "WebDragServiceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDragServiceDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDragServiceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDragServiceDescriptionModule()": "WebDragServiceDescriptionModule()", + "WebDragServiceDescriptionModule": "WebDragServiceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownDescription()": "WebDropdownDescription()", + "WebDropdownDescription": "WebDropdownDescription()", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "Distance": "Distance", + "Flip": "Flip", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Placement": "Placement", + "SameWidth": "SameWidth", + "ScrollStrategy": "ScrollStrategy", + "Type": "Type" + } + } + ], + "WebDropdownDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownDescriptionMetadata()": "WebDropdownDescriptionMetadata()", + "WebDropdownDescriptionMetadata": "WebDropdownDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDropdownDescriptionModule()": "WebDropdownDescriptionModule()", + "WebDropdownDescriptionModule": "WebDropdownDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownGroupDescription()": "WebDropdownGroupDescription()", + "WebDropdownGroupDescription": "WebDropdownGroupDescription()", + "Type": "Type" + } + } + ], + "WebDropdownGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownGroupDescriptionMetadata()": "WebDropdownGroupDescriptionMetadata()", + "WebDropdownGroupDescriptionMetadata": "WebDropdownGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDropdownGroupDescriptionModule()": "WebDropdownGroupDescriptionModule()", + "WebDropdownGroupDescriptionModule": "WebDropdownGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownHeaderDescription()": "WebDropdownHeaderDescription()", + "WebDropdownHeaderDescription": "WebDropdownHeaderDescription()", + "Type": "Type" + } + } + ], + "WebDropdownHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownHeaderDescriptionMetadata()": "WebDropdownHeaderDescriptionMetadata()", + "WebDropdownHeaderDescriptionMetadata": "WebDropdownHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDropdownHeaderDescriptionModule()": "WebDropdownHeaderDescriptionModule()", + "WebDropdownHeaderDescriptionModule": "WebDropdownHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownItemComponentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownItemComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemComponentEventArgsDescription()": "WebDropdownItemComponentEventArgsDescription()", + "WebDropdownItemComponentEventArgsDescription": "WebDropdownItemComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebDropdownItemComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownItemComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemComponentEventArgsDescriptionMetadata()": "WebDropdownItemComponentEventArgsDescriptionMetadata()", + "WebDropdownItemComponentEventArgsDescriptionMetadata": "WebDropdownItemComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownItemDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemDescription()": "WebDropdownItemDescription()", + "WebDropdownItemDescription": "WebDropdownItemDescription()", + "Type": "Type" + } + } + ], + "WebDropdownItemDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemDescriptionMetadata()": "WebDropdownItemDescriptionMetadata()", + "WebDropdownItemDescriptionMetadata": "WebDropdownItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownItemDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebDropdownItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemDescriptionModule()": "WebDropdownItemDescriptionModule()", + "WebDropdownItemDescriptionModule": "WebDropdownItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebEntityTypeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebEntityTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebEntityTypeDescription()": "WebEntityTypeDescription()", + "WebEntityTypeDescription": "WebEntityTypeDescription()", + "ChildEntities": "ChildEntities", + "Fields": "Fields", + "Type": "Type" + } + } + ], + "WebEntityTypeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebEntityTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebEntityTypeDescriptionMetadata()": "WebEntityTypeDescriptionMetadata()", + "WebEntityTypeDescriptionMetadata": "WebEntityTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpansionPanelComponentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpansionPanelComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelComponentEventArgsDescription()": "WebExpansionPanelComponentEventArgsDescription()", + "WebExpansionPanelComponentEventArgsDescription": "WebExpansionPanelComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebExpansionPanelComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpansionPanelComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelComponentEventArgsDescriptionMetadata()": "WebExpansionPanelComponentEventArgsDescriptionMetadata()", + "WebExpansionPanelComponentEventArgsDescriptionMetadata": "WebExpansionPanelComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpansionPanelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpansionPanelDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelDescription()": "WebExpansionPanelDescription()", + "WebExpansionPanelDescription": "WebExpansionPanelDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "Disabled": "Disabled", + "IndicatorPosition": "IndicatorPosition", + "Open": "Open", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Type": "Type" + } + } + ], + "WebExpansionPanelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpansionPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelDescriptionMetadata()": "WebExpansionPanelDescriptionMetadata()", + "WebExpansionPanelDescriptionMetadata": "WebExpansionPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpansionPanelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpansionPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelDescriptionModule()": "WebExpansionPanelDescriptionModule()", + "WebExpansionPanelDescriptionModule": "WebExpansionPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExporterEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExporterEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebExporterEventArgsDescription()": "WebExporterEventArgsDescription()", + "WebExporterEventArgsDescription": "WebExporterEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebExporterEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExporterEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExporterEventArgsDescriptionMetadata()": "WebExporterEventArgsDescriptionMetadata()", + "WebExporterEventArgsDescriptionMetadata": "WebExporterEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExporterEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExporterEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebExporterEventArgsDetailDescription()": "WebExporterEventArgsDetailDescription()", + "WebExporterEventArgsDetailDescription": "WebExporterEventArgsDetailDescription()", + "Cancel": "Cancel", + "Exporter": "Exporter", + "Grid": "Grid", + "Options": "Options", + "Type": "Type" + } + } + ], + "WebExporterEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExporterEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExporterEventArgsDetailDescriptionMetadata()": "WebExporterEventArgsDetailDescriptionMetadata()", + "WebExporterEventArgsDetailDescriptionMetadata": "WebExporterEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExporterOptionsBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExporterOptionsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebExporterOptionsBaseDescription()": "WebExporterOptionsBaseDescription()", + "WebExporterOptionsBaseDescription": "WebExporterOptionsBaseDescription()", + "AlwaysExportHeaders": "AlwaysExportHeaders", + "ExportSummaries": "ExportSummaries", + "FileName": "FileName", + "FreezeHeaders": "FreezeHeaders", + "IgnoreColumnsOrder": "IgnoreColumnsOrder", + "IgnoreColumnsVisibility": "IgnoreColumnsVisibility", + "IgnoreFiltering": "IgnoreFiltering", + "IgnoreGrouping": "IgnoreGrouping", + "IgnoreMultiColumnHeaders": "IgnoreMultiColumnHeaders", + "IgnoreSorting": "IgnoreSorting", + "Type": "Type" + } + } + ], + "WebExporterOptionsBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExporterOptionsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExporterOptionsBaseDescriptionMetadata()": "WebExporterOptionsBaseDescriptionMetadata()", + "WebExporterOptionsBaseDescriptionMetadata": "WebExporterOptionsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpressionTreeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpressionTreeDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeDescription()": "WebExpressionTreeDescription()", + "WebExpressionTreeDescription": "WebExpressionTreeDescription()", + "Entity": "Entity", + "FieldName": "FieldName", + "FilteringOperands": "FilteringOperands", + "Operator": "Operator", + "ReturnFields": "ReturnFields", + "Type": "Type" + } + } + ], + "WebExpressionTreeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpressionTreeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeDescriptionMetadata()": "WebExpressionTreeDescriptionMetadata()", + "WebExpressionTreeDescriptionMetadata": "WebExpressionTreeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpressionTreeDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpressionTreeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeDetailDescription()": "WebExpressionTreeDetailDescription()", + "WebExpressionTreeDetailDescription": "WebExpressionTreeDetailDescription()", + "Entity": "Entity", + "FieldName": "FieldName", + "FilteringOperands": "FilteringOperands", + "Operator": "Operator", + "ReturnFields": "ReturnFields", + "Type": "Type" + } + } + ], + "WebExpressionTreeDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpressionTreeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeDetailDescriptionMetadata()": "WebExpressionTreeDetailDescriptionMetadata()", + "WebExpressionTreeDetailDescriptionMetadata": "WebExpressionTreeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpressionTreeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpressionTreeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeEventArgsDescription()": "WebExpressionTreeEventArgsDescription()", + "WebExpressionTreeEventArgsDescription": "WebExpressionTreeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebExpressionTreeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpressionTreeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeEventArgsDescriptionMetadata()": "WebExpressionTreeEventArgsDescriptionMetadata()", + "WebExpressionTreeEventArgsDescriptionMetadata": "WebExpressionTreeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpressionTreeOrFilteringExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpressionTreeOrFilteringExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeOrFilteringExpressionDescription()": "WebExpressionTreeOrFilteringExpressionDescription()", + "WebExpressionTreeOrFilteringExpressionDescription": "WebExpressionTreeOrFilteringExpressionDescription()", + "Type": "Type" + } + } + ], + "WebExpressionTreeOrFilteringExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebExpressionTreeOrFilteringExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeOrFilteringExpressionDescriptionMetadata()": "WebExpressionTreeOrFilteringExpressionDescriptionMetadata()", + "WebExpressionTreeOrFilteringExpressionDescriptionMetadata": "WebExpressionTreeOrFilteringExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFieldEditorOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFieldEditorOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFieldEditorOptionsDescription()": "WebFieldEditorOptionsDescription()", + "WebFieldEditorOptionsDescription": "WebFieldEditorOptionsDescription()", + "DateTimeFormat": "DateTimeFormat", + "Type": "Type" + } + } + ], + "WebFieldEditorOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFieldEditorOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFieldEditorOptionsDescriptionMetadata()": "WebFieldEditorOptionsDescriptionMetadata()", + "WebFieldEditorOptionsDescriptionMetadata": "WebFieldEditorOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFieldPipeArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFieldPipeArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFieldPipeArgsDescription()": "WebFieldPipeArgsDescription()", + "WebFieldPipeArgsDescription": "WebFieldPipeArgsDescription()", + "CurrencyCode": "CurrencyCode", + "DigitsInfo": "DigitsInfo", + "Display": "Display", + "Format": "Format", + "Timezone": "Timezone", + "Type": "Type", + "WeekStart": "WeekStart" + } + } + ], + "WebFieldPipeArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFieldPipeArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFieldPipeArgsDescriptionMetadata()": "WebFieldPipeArgsDescriptionMetadata()", + "WebFieldPipeArgsDescriptionMetadata": "WebFieldPipeArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFieldTypeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFieldTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebFieldTypeDescription()": "WebFieldTypeDescription()", + "WebFieldTypeDescription": "WebFieldTypeDescription()", + "DataType": "DataType", + "DefaultDateTimeFormat": "DefaultDateTimeFormat", + "DefaultTimeFormat": "DefaultTimeFormat", + "EditorOptions": "EditorOptions", + "Field": "Field", + "Filters": "Filters", + "Header": "Header", + "Label": "Label", + "PipeArgs": "PipeArgs", + "Type": "Type" + } + } + ], + "WebFieldTypeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFieldTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFieldTypeDescriptionMetadata()": "WebFieldTypeDescriptionMetadata()", + "WebFieldTypeDescriptionMetadata": "WebFieldTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringEventArgsDescription()": "WebFilteringEventArgsDescription()", + "WebFilteringEventArgsDescription": "WebFilteringEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebFilteringEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringEventArgsDescriptionMetadata()": "WebFilteringEventArgsDescriptionMetadata()", + "WebFilteringEventArgsDescriptionMetadata": "WebFilteringEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringEventArgsDetailDescription()": "WebFilteringEventArgsDetailDescription()", + "WebFilteringEventArgsDetailDescription": "WebFilteringEventArgsDetailDescription()", + "FilteringExpressions": "FilteringExpressions", + "Owner": "Owner", + "Type": "Type" + } + } + ], + "WebFilteringEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringEventArgsDetailDescriptionMetadata()": "WebFilteringEventArgsDetailDescriptionMetadata()", + "WebFilteringEventArgsDetailDescriptionMetadata": "WebFilteringEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionDescription()": "WebFilteringExpressionDescription()", + "WebFilteringExpressionDescription": "WebFilteringExpressionDescription()", + "Condition": "Condition", + "ConditionName": "ConditionName", + "FieldName": "FieldName", + "IgnoreCase": "IgnoreCase", + "SearchTree": "SearchTree", + "SearchVal": "SearchVal", + "Type": "Type" + } + } + ], + "WebFilteringExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionDescriptionMetadata()": "WebFilteringExpressionDescriptionMetadata()", + "WebFilteringExpressionDescriptionMetadata": "WebFilteringExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeDescription()": "WebFilteringExpressionsTreeDescription()", + "WebFilteringExpressionsTreeDescription": "WebFilteringExpressionsTreeDescription()", + "Owner": "Owner", + "TreeType": "TreeType", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeDescriptionMetadata()": "WebFilteringExpressionsTreeDescriptionMetadata()", + "WebFilteringExpressionsTreeDescriptionMetadata": "WebFilteringExpressionsTreeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeDetailDescription()": "WebFilteringExpressionsTreeDetailDescription()", + "WebFilteringExpressionsTreeDetailDescription": "WebFilteringExpressionsTreeDetailDescription()", + "Entity": "Entity", + "FieldName": "FieldName", + "FilteringOperands": "FilteringOperands", + "Operator": "Operator", + "Owner": "Owner", + "ReturnFields": "ReturnFields", + "TreeType": "TreeType", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeDetailDescriptionMetadata()": "WebFilteringExpressionsTreeDetailDescriptionMetadata()", + "WebFilteringExpressionsTreeDetailDescriptionMetadata": "WebFilteringExpressionsTreeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeEventArgsDescription()": "WebFilteringExpressionsTreeEventArgsDescription()", + "WebFilteringExpressionsTreeEventArgsDescription": "WebFilteringExpressionsTreeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeEventArgsDescriptionMetadata()": "WebFilteringExpressionsTreeEventArgsDescriptionMetadata()", + "WebFilteringExpressionsTreeEventArgsDescriptionMetadata": "WebFilteringExpressionsTreeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeOrFilteringExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeOrFilteringExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeOrFilteringExpressionDescription()": "WebFilteringExpressionsTreeOrFilteringExpressionDescription()", + "WebFilteringExpressionsTreeOrFilteringExpressionDescription": "WebFilteringExpressionsTreeOrFilteringExpressionDescription()", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata()": "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata()", + "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata": "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeOrFilteringOperationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeOrFilteringOperationDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeOrFilteringOperationDescription()": "WebFilteringExpressionsTreeOrFilteringOperationDescription()", + "WebFilteringExpressionsTreeOrFilteringOperationDescription": "WebFilteringExpressionsTreeOrFilteringOperationDescription()", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata()": "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata()", + "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata": "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOperandDescription()": "WebFilteringOperandDescription()", + "WebFilteringOperandDescription": "WebFilteringOperandDescription()", + "Operations": "Operations", + "Type": "Type" + } + } + ], + "WebFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOperandDescriptionMetadata()": "WebFilteringOperandDescriptionMetadata()", + "WebFilteringOperandDescriptionMetadata": "WebFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringOperationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringOperationDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOperationDescription()": "WebFilteringOperationDescription()", + "WebFilteringOperationDescription": "WebFilteringOperationDescription()", + "Hidden": "Hidden", + "IconName": "IconName", + "IsNestedQuery": "IsNestedQuery", + "IsUnary": "IsUnary", + "LogicRef": "LogicRef", + "Type": "Type" + } + } + ], + "WebFilteringOperationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringOperationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOperationDescriptionMetadata()": "WebFilteringOperationDescriptionMetadata()", + "WebFilteringOperationDescriptionMetadata": "WebFilteringOperationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOptionsDescription()": "WebFilteringOptionsDescription()", + "WebFilteringOptionsDescription": "WebFilteringOptionsDescription()", + "CaseSensitive": "CaseSensitive", + "FilterKey": "FilterKey", + "MatchDiacritics": "MatchDiacritics", + "Type": "Type" + } + } + ], + "WebFilteringOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOptionsDescriptionMetadata()": "WebFilteringOptionsDescriptionMetadata()", + "WebFilteringOptionsDescriptionMetadata": "WebFilteringOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringStrategyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringStrategyDescription()": "WebFilteringStrategyDescription()", + "WebFilteringStrategyDescription": "WebFilteringStrategyDescription()", + "Type": "Type" + } + } + ], + "WebFilteringStrategyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFilteringStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringStrategyDescriptionMetadata()": "WebFilteringStrategyDescriptionMetadata()", + "WebFilteringStrategyDescriptionMetadata": "WebFilteringStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatingPaneResizeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatingPaneResizeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeEventArgsDescription()": "WebFloatingPaneResizeEventArgsDescription()", + "WebFloatingPaneResizeEventArgsDescription": "WebFloatingPaneResizeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebFloatingPaneResizeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatingPaneResizeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeEventArgsDescriptionMetadata()": "WebFloatingPaneResizeEventArgsDescriptionMetadata()", + "WebFloatingPaneResizeEventArgsDescriptionMetadata": "WebFloatingPaneResizeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatingPaneResizeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatingPaneResizeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeEventArgsDetailDescription()": "WebFloatingPaneResizeEventArgsDetailDescription()", + "WebFloatingPaneResizeEventArgsDetailDescription": "WebFloatingPaneResizeEventArgsDetailDescription()", + "ResizerLocation": "ResizerLocation", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatingPaneResizeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata()": "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata()", + "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata": "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatingPaneResizeMoveEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatingPaneResizeMoveEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeMoveEventArgsDescription()": "WebFloatingPaneResizeMoveEventArgsDescription()", + "WebFloatingPaneResizeMoveEventArgsDescription": "WebFloatingPaneResizeMoveEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatingPaneResizeMoveEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata()": "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata()", + "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata": "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatingPaneResizeMoveEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatingPaneResizeMoveEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeMoveEventArgsDetailDescription()": "WebFloatingPaneResizeMoveEventArgsDetailDescription()", + "WebFloatingPaneResizeMoveEventArgsDetailDescription": "WebFloatingPaneResizeMoveEventArgsDetailDescription()", + "NewHeight": "NewHeight", + "NewLocation": "NewLocation", + "NewWidth": "NewWidth", + "OldHeight": "OldHeight", + "OldLocation": "OldLocation", + "OldWidth": "OldWidth", + "Type": "Type" + } + } + ], + "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata()": "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata()", + "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata": "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatPaneActionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatPaneActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatPaneActionDescription()": "WebFloatPaneActionDescription()", + "WebFloatPaneActionDescription": "WebFloatPaneActionDescription()", + "ActionType": "ActionType", + "Height": "Height", + "Location": "Location", + "Type": "Type", + "Width": "Width" + } + } + ], + "WebFloatPaneActionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebFloatPaneActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatPaneActionDescriptionMetadata()": "WebFloatPaneActionDescriptionMetadata()", + "WebFloatPaneActionDescriptionMetadata": "WebFloatPaneActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfDataChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfDataChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangeEventArgsDescription()": "WebForOfDataChangeEventArgsDescription()", + "WebForOfDataChangeEventArgsDescription": "WebForOfDataChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebForOfDataChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfDataChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangeEventArgsDescriptionMetadata()": "WebForOfDataChangeEventArgsDescriptionMetadata()", + "WebForOfDataChangeEventArgsDescriptionMetadata": "WebForOfDataChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfDataChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfDataChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangeEventArgsDetailDescription()": "WebForOfDataChangeEventArgsDetailDescription()", + "WebForOfDataChangeEventArgsDetailDescription": "WebForOfDataChangeEventArgsDetailDescription()", + "Type": "Type" + } + } + ], + "WebForOfDataChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfDataChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangeEventArgsDetailDescriptionMetadata()": "WebForOfDataChangeEventArgsDetailDescriptionMetadata()", + "WebForOfDataChangeEventArgsDetailDescriptionMetadata": "WebForOfDataChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfDataChangingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfDataChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangingEventArgsDescription()": "WebForOfDataChangingEventArgsDescription()", + "WebForOfDataChangingEventArgsDescription": "WebForOfDataChangingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebForOfDataChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfDataChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangingEventArgsDescriptionMetadata()": "WebForOfDataChangingEventArgsDescriptionMetadata()", + "WebForOfDataChangingEventArgsDescriptionMetadata": "WebForOfDataChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfDataChangingEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfDataChangingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangingEventArgsDetailDescription()": "WebForOfDataChangingEventArgsDetailDescription()", + "WebForOfDataChangingEventArgsDetailDescription": "WebForOfDataChangingEventArgsDetailDescription()", + "ContainerSize": "ContainerSize", + "State": "State", + "Type": "Type" + } + } + ], + "WebForOfDataChangingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfDataChangingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangingEventArgsDetailDescriptionMetadata()": "WebForOfDataChangingEventArgsDetailDescriptionMetadata()", + "WebForOfDataChangingEventArgsDetailDescriptionMetadata": "WebForOfDataChangingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateDescription()": "WebForOfStateDescription()", + "WebForOfStateDescription": "WebForOfStateDescription()", + "ChunkSize": "ChunkSize", + "StartIndex": "StartIndex", + "Type": "Type" + } + } + ], + "WebForOfStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateDescriptionMetadata()": "WebForOfStateDescriptionMetadata()", + "WebForOfStateDescriptionMetadata": "WebForOfStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfStateDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfStateDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateDetailDescription()": "WebForOfStateDetailDescription()", + "WebForOfStateDetailDescription": "WebForOfStateDetailDescription()", + "ChunkSize": "ChunkSize", + "StartIndex": "StartIndex", + "Type": "Type" + } + } + ], + "WebForOfStateDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfStateDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateDetailDescriptionMetadata()": "WebForOfStateDetailDescriptionMetadata()", + "WebForOfStateDetailDescriptionMetadata": "WebForOfStateDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfStateEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfStateEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateEventArgsDescription()": "WebForOfStateEventArgsDescription()", + "WebForOfStateEventArgsDescription": "WebForOfStateEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebForOfStateEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebForOfStateEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateEventArgsDescriptionMetadata()": "WebForOfStateEventArgsDescriptionMetadata()", + "WebForOfStateEventArgsDescriptionMetadata": "WebForOfStateEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridActionsBaseDirectiveDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridActionsBaseDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridActionsBaseDirectiveDescription()": "WebGridActionsBaseDirectiveDescription()", + "WebGridActionsBaseDirectiveDescription": "WebGridActionsBaseDirectiveDescription()", + "AsMenuItems": "AsMenuItems", + "Type": "Type" + } + } + ], + "WebGridActionsBaseDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridActionsBaseDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridActionsBaseDirectiveDescriptionMetadata()": "WebGridActionsBaseDirectiveDescriptionMetadata()", + "WebGridActionsBaseDirectiveDescriptionMetadata": "WebGridActionsBaseDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridActionsBaseDirectiveDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridActionsBaseDirectiveDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridActionsBaseDirectiveDescriptionModule()": "WebGridActionsBaseDirectiveDescriptionModule()", + "WebGridActionsBaseDirectiveDescriptionModule": "WebGridActionsBaseDirectiveDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridBaseDescription()": "WebGridBaseDescription()", + "WebGridBaseDescription": "WebGridBaseDescription()", + "DataPreLoadRef": "DataPreLoadRef", + "DataRef": "DataRef", + "DetailTemplateRef": "DetailTemplateRef", + "DropAreaMessage": "DropAreaMessage", + "DropAreaTemplateRef": "DropAreaTemplateRef", + "GroupByRowSelectorTemplateRef": "GroupByRowSelectorTemplateRef", + "GroupRowTemplateRef": "GroupRowTemplateRef", + "GroupStrategy": "GroupStrategy", + "GroupingDoneRef": "GroupingDoneRef", + "GroupingExpansionState": "GroupingExpansionState", + "GroupingExpansionStateChangeRef": "GroupingExpansionStateChangeRef", + "GroupingExpressions": "GroupingExpressions", + "GroupingExpressionsChangeRef": "GroupingExpressionsChangeRef", + "GroupsExpanded": "GroupsExpanded", + "HideGroupedColumns": "HideGroupedColumns", + "Id": "Id", + "ShowGroupArea": "ShowGroupArea", + "TotalItemCount": "TotalItemCount", + "Type": "Type" + } + } + ], + "WebGridBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridBaseDescriptionMetadata()": "WebGridBaseDescriptionMetadata()", + "WebGridBaseDescriptionMetadata": "WebGridBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridBaseDirectiveDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridBaseDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridBaseDirectiveDescription()": "WebGridBaseDirectiveDescription()", + "WebGridBaseDirectiveDescription": "WebGridBaseDirectiveDescription()", + "ActiveNodeChangeRef": "ActiveNodeChangeRef", + "ActualColumnList": "ActualColumnList", + "AddRowEmptyTemplateRef": "AddRowEmptyTemplateRef", + "AdvancedFilteringExpressionsTree": "AdvancedFilteringExpressionsTree", + "AdvancedFilteringExpressionsTreeChangeRef": "AdvancedFilteringExpressionsTreeChangeRef", + "AllowAdvancedFiltering": "AllowAdvancedFiltering", + "AllowFiltering": "AllowFiltering", + "AutoGenerate": "AutoGenerate", + "AutoGenerateExclude": "AutoGenerateExclude", + "BatchEditing": "BatchEditing", + "CellClickRef": "CellClickRef", + "CellEditDoneRef": "CellEditDoneRef", + "CellEditEnterRef": "CellEditEnterRef", + "CellEditExitRef": "CellEditExitRef", + "CellEditRef": "CellEditRef", + "CellMergeMode": "CellMergeMode", + "CellSelection": "CellSelection", + "ClipboardOptions": "ClipboardOptions", + "ColumnInitRef": "ColumnInitRef", + "ColumnList": "ColumnList", + "ColumnMovingEndRef": "ColumnMovingEndRef", + "ColumnMovingRef": "ColumnMovingRef", + "ColumnMovingStartRef": "ColumnMovingStartRef", + "ColumnPinRef": "ColumnPinRef", + "ColumnPinnedRef": "ColumnPinnedRef", + "ColumnResizedRef": "ColumnResizedRef", + "ColumnSelection": "ColumnSelection", + "ColumnSelectionChangingRef": "ColumnSelectionChangingRef", + "ColumnVisibilityChangedRef": "ColumnVisibilityChangedRef", + "ColumnVisibilityChangingRef": "ColumnVisibilityChangingRef", + "ColumnWidth": "ColumnWidth", + "ContextMenuRef": "ContextMenuRef", + "DataChangedRef": "DataChangedRef", + "DataChangingRef": "DataChangingRef", + "DataCloneStrategy": "DataCloneStrategy", + "DoubleClickRef": "DoubleClickRef", + "DragGhostCustomTemplateRef": "DragGhostCustomTemplateRef", + "DragIndicatorIconTemplateRef": "DragIndicatorIconTemplateRef", + "EmptyFilteredGridMessage": "EmptyFilteredGridMessage", + "EmptyGridMessage": "EmptyGridMessage", + "EmptyGridTemplateRef": "EmptyGridTemplateRef", + "ExcelStyleHeaderIconTemplateRef": "ExcelStyleHeaderIconTemplateRef", + "ExpansionStates": "ExpansionStates", + "ExpansionStatesChangeRef": "ExpansionStatesChangeRef", + "FilterMode": "FilterMode", + "FilterStrategy": "FilterStrategy", + "FilteringDoneRef": "FilteringDoneRef", + "FilteringExpressionsTree": "FilteringExpressionsTree", + "FilteringExpressionsTreeChangeRef": "FilteringExpressionsTreeChangeRef", + "FilteringLogic": "FilteringLogic", + "FilteringRef": "FilteringRef", + "FormGroupCreatedRef": "FormGroupCreatedRef", + "GridCopyRef": "GridCopyRef", + "GridKeydownRef": "GridKeydownRef", + "GridScrollRef": "GridScrollRef", + "HeadSelectorTemplateRef": "HeadSelectorTemplateRef", + "HeaderCollapsedIndicatorTemplateRef": "HeaderCollapsedIndicatorTemplateRef", + "HeaderExpandedIndicatorTemplateRef": "HeaderExpandedIndicatorTemplateRef", + "Height": "Height", + "HideRowSelectors": "HideRowSelectors", + "IsLoading": "IsLoading", + "LoadingGridTemplateRef": "LoadingGridTemplateRef", + "Locale": "Locale", + "Moving": "Moving", + "Outlet": "Outlet", + "PaginationComponents": "PaginationComponents", + "PagingMode": "PagingMode", + "Pinning": "Pinning", + "PrimaryKey": "PrimaryKey", + "RangeSelectedRef": "RangeSelectedRef", + "RenderedRef": "RenderedRef", + "ResourceStringsRef": "ResourceStringsRef", + "RowAddRef": "RowAddRef", + "RowAddTextTemplateRef": "RowAddTextTemplateRef", + "RowAddedRef": "RowAddedRef", + "RowClassesRef": "RowClassesRef", + "RowClickRef": "RowClickRef", + "RowCollapsedIndicatorTemplateRef": "RowCollapsedIndicatorTemplateRef", + "RowDeleteRef": "RowDeleteRef", + "RowDeletedRef": "RowDeletedRef", + "RowDragEndRef": "RowDragEndRef", + "RowDragStartRef": "RowDragStartRef", + "RowDraggable": "RowDraggable", + "RowEditActionsTemplateRef": "RowEditActionsTemplateRef", + "RowEditDoneRef": "RowEditDoneRef", + "RowEditEnterRef": "RowEditEnterRef", + "RowEditExitRef": "RowEditExitRef", + "RowEditRef": "RowEditRef", + "RowEditTextTemplateRef": "RowEditTextTemplateRef", + "RowEditable": "RowEditable", + "RowExpandedIndicatorTemplateRef": "RowExpandedIndicatorTemplateRef", + "RowHeight": "RowHeight", + "RowPinnedRef": "RowPinnedRef", + "RowPinningRef": "RowPinningRef", + "RowSelection": "RowSelection", + "RowSelectionChangingRef": "RowSelectionChangingRef", + "RowSelectorTemplateRef": "RowSelectorTemplateRef", + "RowStylesRef": "RowStylesRef", + "RowToggleRef": "RowToggleRef", + "SelectRowOnClick": "SelectRowOnClick", + "SelectedRef": "SelectedRef", + "SelectedRows": "SelectedRows", + "SelectedRowsChangeRef": "SelectedRowsChangeRef", + "ShouldGenerate": "ShouldGenerate", + "ShowSummaryOnCollapse": "ShowSummaryOnCollapse", + "SnackbarDisplayTime": "SnackbarDisplayTime", + "SortAscendingHeaderIconTemplateRef": "SortAscendingHeaderIconTemplateRef", + "SortDescendingHeaderIconTemplateRef": "SortDescendingHeaderIconTemplateRef", + "SortHeaderIconTemplateRef": "SortHeaderIconTemplateRef", + "SortStrategy": "SortStrategy", + "SortingDoneRef": "SortingDoneRef", + "SortingExpressions": "SortingExpressions", + "SortingExpressionsChangeRef": "SortingExpressionsChangeRef", + "SortingOptions": "SortingOptions", + "SortingRef": "SortingRef", + "StateComponents": "StateComponents", + "SummaryCalculationMode": "SummaryCalculationMode", + "SummaryPosition": "SummaryPosition", + "SummaryRowHeight": "SummaryRowHeight", + "Toolbar": "Toolbar", + "ToolbarExportingRef": "ToolbarExportingRef", + "TotalRecords": "TotalRecords", + "Type": "Type", + "ValidationStatusChangeRef": "ValidationStatusChangeRef", + "ValidationTrigger": "ValidationTrigger", + "Width": "Width" + } + } + ], + "WebGridBaseDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridBaseDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridBaseDirectiveDescriptionMetadata()": "WebGridBaseDirectiveDescriptionMetadata()", + "WebGridBaseDirectiveDescriptionMetadata": "WebGridBaseDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCellEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCellEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCellEventArgsDescription()": "WebGridCellEventArgsDescription()", + "WebGridCellEventArgsDescription": "WebGridCellEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridCellEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCellEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCellEventArgsDescriptionMetadata()": "WebGridCellEventArgsDescriptionMetadata()", + "WebGridCellEventArgsDescriptionMetadata": "WebGridCellEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCellEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCellEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCellEventArgsDetailDescription()": "WebGridCellEventArgsDetailDescription()", + "WebGridCellEventArgsDetailDescription": "WebGridCellEventArgsDetailDescription()", + "Cell": "Cell", + "Event": "Event", + "Type": "Type" + } + } + ], + "WebGridCellEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCellEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCellEventArgsDetailDescriptionMetadata()": "WebGridCellEventArgsDetailDescriptionMetadata()", + "WebGridCellEventArgsDetailDescriptionMetadata": "WebGridCellEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCellIdentifierDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCellIdentifierDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCellIdentifierDescription()": "WebGridCellIdentifierDescription()", + "WebGridCellIdentifierDescription": "WebGridCellIdentifierDescription()", + "ColumnID": "ColumnID", + "RowID": "RowID", + "RowIndex": "RowIndex", + "Type": "Type" + } + } + ], + "WebGridCellIdentifierDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCellIdentifierDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCellIdentifierDescriptionMetadata()": "WebGridCellIdentifierDescriptionMetadata()", + "WebGridCellIdentifierDescriptionMetadata": "WebGridCellIdentifierDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridClipboardEventDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridClipboardEventDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventDescription()": "WebGridClipboardEventDescription()", + "WebGridClipboardEventDescription": "WebGridClipboardEventDescription()", + "Cancel": "Cancel", + "DataRef": "DataRef", + "Type": "Type" + } + } + ], + "WebGridClipboardEventDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridClipboardEventDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventDescriptionMetadata()": "WebGridClipboardEventDescriptionMetadata()", + "WebGridClipboardEventDescriptionMetadata": "WebGridClipboardEventDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridClipboardEventDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridClipboardEventDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventDetailDescription()": "WebGridClipboardEventDetailDescription()", + "WebGridClipboardEventDetailDescription": "WebGridClipboardEventDetailDescription()", + "Cancel": "Cancel", + "DataRef": "DataRef", + "Type": "Type" + } + } + ], + "WebGridClipboardEventDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridClipboardEventDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventDetailDescriptionMetadata()": "WebGridClipboardEventDetailDescriptionMetadata()", + "WebGridClipboardEventDetailDescriptionMetadata": "WebGridClipboardEventDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridClipboardEventEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridClipboardEventEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventEventArgsDescription()": "WebGridClipboardEventEventArgsDescription()", + "WebGridClipboardEventEventArgsDescription": "WebGridClipboardEventEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridClipboardEventEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridClipboardEventEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventEventArgsDescriptionMetadata()": "WebGridClipboardEventEventArgsDescriptionMetadata()", + "WebGridClipboardEventEventArgsDescriptionMetadata": "WebGridClipboardEventEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridContextMenuEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridContextMenuEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridContextMenuEventArgsDescription()": "WebGridContextMenuEventArgsDescription()", + "WebGridContextMenuEventArgsDescription": "WebGridContextMenuEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridContextMenuEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridContextMenuEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridContextMenuEventArgsDescriptionMetadata()": "WebGridContextMenuEventArgsDescriptionMetadata()", + "WebGridContextMenuEventArgsDescriptionMetadata": "WebGridContextMenuEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridContextMenuEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridContextMenuEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridContextMenuEventArgsDetailDescription()": "WebGridContextMenuEventArgsDetailDescription()", + "WebGridContextMenuEventArgsDetailDescription": "WebGridContextMenuEventArgsDetailDescription()", + "Cell": "Cell", + "Event": "Event", + "Row": "Row", + "Type": "Type" + } + } + ], + "WebGridContextMenuEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridContextMenuEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridContextMenuEventArgsDetailDescriptionMetadata()": "WebGridContextMenuEventArgsDetailDescriptionMetadata()", + "WebGridContextMenuEventArgsDetailDescriptionMetadata": "WebGridContextMenuEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCreatedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCreatedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCreatedEventArgsDescription()": "WebGridCreatedEventArgsDescription()", + "WebGridCreatedEventArgsDescription": "WebGridCreatedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridCreatedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCreatedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCreatedEventArgsDescriptionMetadata()": "WebGridCreatedEventArgsDescriptionMetadata()", + "WebGridCreatedEventArgsDescriptionMetadata": "WebGridCreatedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCreatedEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCreatedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCreatedEventArgsDetailDescription()": "WebGridCreatedEventArgsDetailDescription()", + "WebGridCreatedEventArgsDetailDescription": "WebGridCreatedEventArgsDetailDescription()", + "Grid": "Grid", + "ParentID": "ParentID", + "ParentRowData": "ParentRowData", + "Type": "Type" + } + } + ], + "WebGridCreatedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridCreatedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCreatedEventArgsDetailDescriptionMetadata()": "WebGridCreatedEventArgsDetailDescriptionMetadata()", + "WebGridCreatedEventArgsDetailDescriptionMetadata": "WebGridCreatedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridDescription()": "WebGridDescription()", + "WebGridDescription": "WebGridDescription()", + "ActionStripComponents": "ActionStripComponents", + "ChildrenResolvedRef": "ChildrenResolvedRef", + "ColumnsAutogeneratedRef": "ColumnsAutogeneratedRef", + "Type": "Type" + } + } + ], + "WebGridDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridDescriptionMetadata()": "WebGridDescriptionMetadata()", + "WebGridDescriptionMetadata": "WebGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridDescriptionModule()": "WebGridDescriptionModule()", + "WebGridDescriptionModule": "WebGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditDoneEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditDoneEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditDoneEventArgsDescription()": "WebGridEditDoneEventArgsDescription()", + "WebGridEditDoneEventArgsDescription": "WebGridEditDoneEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridEditDoneEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditDoneEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditDoneEventArgsDescriptionMetadata()": "WebGridEditDoneEventArgsDescriptionMetadata()", + "WebGridEditDoneEventArgsDescriptionMetadata": "WebGridEditDoneEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditDoneEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditDoneEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditDoneEventArgsDetailDescription()": "WebGridEditDoneEventArgsDetailDescription()", + "WebGridEditDoneEventArgsDetailDescription": "WebGridEditDoneEventArgsDetailDescription()", + "CellID": "CellID", + "Column": "Column", + "IsAddRow": "IsAddRow", + "NewValue": "NewValue", + "OldValue": "OldValue", + "PrimaryKey": "PrimaryKey", + "RowData": "RowData", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type", + "Valid": "Valid" + } + } + ], + "WebGridEditDoneEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditDoneEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditDoneEventArgsDetailDescriptionMetadata()": "WebGridEditDoneEventArgsDetailDescriptionMetadata()", + "WebGridEditDoneEventArgsDetailDescriptionMetadata": "WebGridEditDoneEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditEventArgsDescription()": "WebGridEditEventArgsDescription()", + "WebGridEditEventArgsDescription": "WebGridEditEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridEditEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditEventArgsDescriptionMetadata()": "WebGridEditEventArgsDescriptionMetadata()", + "WebGridEditEventArgsDescriptionMetadata": "WebGridEditEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditEventArgsDetailDescription()": "WebGridEditEventArgsDetailDescription()", + "WebGridEditEventArgsDetailDescription": "WebGridEditEventArgsDetailDescription()", + "CellID": "CellID", + "Column": "Column", + "IsAddRow": "IsAddRow", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Owner": "Owner", + "PrimaryKey": "PrimaryKey", + "RowData": "RowData", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type", + "Valid": "Valid" + } + } + ], + "WebGridEditEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditEventArgsDetailDescriptionMetadata()": "WebGridEditEventArgsDetailDescriptionMetadata()", + "WebGridEditEventArgsDetailDescriptionMetadata": "WebGridEditEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditingActionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditingActionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditingActionsDescription()": "WebGridEditingActionsDescription()", + "WebGridEditingActionsDescription": "WebGridEditingActionsDescription()", + "AddChild": "AddChild", + "AddRow": "AddRow", + "DeleteRow": "DeleteRow", + "EditRow": "EditRow", + "Type": "Type" + } + } + ], + "WebGridEditingActionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditingActionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditingActionsDescriptionMetadata()": "WebGridEditingActionsDescriptionMetadata()", + "WebGridEditingActionsDescriptionMetadata": "WebGridEditingActionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditingActionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEditingActionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridEditingActionsDescriptionModule()": "WebGridEditingActionsDescriptionModule()", + "WebGridEditingActionsDescriptionModule": "WebGridEditingActionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEmptyTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEmptyTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEmptyTemplateContextDescription()": "WebGridEmptyTemplateContextDescription()", + "WebGridEmptyTemplateContextDescription": "WebGridEmptyTemplateContextDescription()", + "Type": "Type" + } + } + ], + "WebGridEmptyTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridEmptyTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEmptyTemplateContextDescriptionMetadata()": "WebGridEmptyTemplateContextDescriptionMetadata()", + "WebGridEmptyTemplateContextDescriptionMetadata": "WebGridEmptyTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridFormGroupCreatedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridFormGroupCreatedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridFormGroupCreatedEventArgsDescription()": "WebGridFormGroupCreatedEventArgsDescription()", + "WebGridFormGroupCreatedEventArgsDescription": "WebGridFormGroupCreatedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridFormGroupCreatedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridFormGroupCreatedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridFormGroupCreatedEventArgsDescriptionMetadata()": "WebGridFormGroupCreatedEventArgsDescriptionMetadata()", + "WebGridFormGroupCreatedEventArgsDescriptionMetadata": "WebGridFormGroupCreatedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridFormGroupCreatedEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridFormGroupCreatedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridFormGroupCreatedEventArgsDetailDescription()": "WebGridFormGroupCreatedEventArgsDetailDescription()", + "WebGridFormGroupCreatedEventArgsDetailDescription": "WebGridFormGroupCreatedEventArgsDetailDescription()", + "Owner": "Owner", + "Type": "Type" + } + } + ], + "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata()": "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata()", + "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata": "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridGroupingStrategyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridGroupingStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridGroupingStrategyDescription()": "WebGridGroupingStrategyDescription()", + "WebGridGroupingStrategyDescription": "WebGridGroupingStrategyDescription()", + "Type": "Type" + } + } + ], + "WebGridGroupingStrategyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridGroupingStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridGroupingStrategyDescriptionMetadata()": "WebGridGroupingStrategyDescriptionMetadata()", + "WebGridGroupingStrategyDescriptionMetadata": "WebGridGroupingStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridHeaderTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridHeaderTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridHeaderTemplateContextDescription()": "WebGridHeaderTemplateContextDescription()", + "WebGridHeaderTemplateContextDescription": "WebGridHeaderTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridHeaderTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridHeaderTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridHeaderTemplateContextDescriptionMetadata()": "WebGridHeaderTemplateContextDescriptionMetadata()", + "WebGridHeaderTemplateContextDescriptionMetadata": "WebGridHeaderTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridKeydownEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridKeydownEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridKeydownEventArgsDescription()": "WebGridKeydownEventArgsDescription()", + "WebGridKeydownEventArgsDescription": "WebGridKeydownEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridKeydownEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridKeydownEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridKeydownEventArgsDescriptionMetadata()": "WebGridKeydownEventArgsDescriptionMetadata()", + "WebGridKeydownEventArgsDescriptionMetadata": "WebGridKeydownEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridKeydownEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridKeydownEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridKeydownEventArgsDetailDescription()": "WebGridKeydownEventArgsDetailDescription()", + "WebGridKeydownEventArgsDetailDescription": "WebGridKeydownEventArgsDetailDescription()", + "Cancel": "Cancel", + "Event": "Event", + "Target": "Target", + "TargetType": "TargetType", + "Type": "Type" + } + } + ], + "WebGridKeydownEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridKeydownEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridKeydownEventArgsDetailDescriptionMetadata()": "WebGridKeydownEventArgsDetailDescriptionMetadata()", + "WebGridKeydownEventArgsDetailDescriptionMetadata": "WebGridKeydownEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridMasterDetailContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridMasterDetailContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridMasterDetailContextDescription()": "WebGridMasterDetailContextDescription()", + "WebGridMasterDetailContextDescription": "WebGridMasterDetailContextDescription()", + "Implicit": "Implicit", + "Index": "Index", + "Type": "Type" + } + } + ], + "WebGridMasterDetailContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridMasterDetailContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridMasterDetailContextDescriptionMetadata()": "WebGridMasterDetailContextDescriptionMetadata()", + "WebGridMasterDetailContextDescriptionMetadata": "WebGridMasterDetailContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridPaginatorTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridPaginatorTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridPaginatorTemplateContextDescription()": "WebGridPaginatorTemplateContextDescription()", + "WebGridPaginatorTemplateContextDescription": "WebGridPaginatorTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridPaginatorTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridPaginatorTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridPaginatorTemplateContextDescriptionMetadata()": "WebGridPaginatorTemplateContextDescriptionMetadata()", + "WebGridPaginatorTemplateContextDescriptionMetadata": "WebGridPaginatorTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridPinningActionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridPinningActionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridPinningActionsDescription()": "WebGridPinningActionsDescription()", + "WebGridPinningActionsDescription": "WebGridPinningActionsDescription()", + "Type": "Type" + } + } + ], + "WebGridPinningActionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridPinningActionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridPinningActionsDescriptionMetadata()": "WebGridPinningActionsDescriptionMetadata()", + "WebGridPinningActionsDescriptionMetadata": "WebGridPinningActionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridPinningActionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridPinningActionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridPinningActionsDescriptionModule()": "WebGridPinningActionsDescriptionModule()", + "WebGridPinningActionsDescriptionModule": "WebGridPinningActionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridResourceStringsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridResourceStringsDescription()": "WebGridResourceStringsDescription()", + "WebGridResourceStringsDescription": "WebGridResourceStringsDescription()", + "Igx_grid_actions_add_child_label": "Igx_grid_actions_add_child_label", + "Igx_grid_actions_add_label": "Igx_grid_actions_add_label", + "Igx_grid_actions_delete_label": "Igx_grid_actions_delete_label", + "Igx_grid_actions_edit_label": "Igx_grid_actions_edit_label", + "Igx_grid_actions_jumpDown_label": "Igx_grid_actions_jumpDown_label", + "Igx_grid_actions_jumpUp_label": "Igx_grid_actions_jumpUp_label", + "Igx_grid_actions_pin_label": "Igx_grid_actions_pin_label", + "Igx_grid_actions_unpin_label": "Igx_grid_actions_unpin_label", + "Igx_grid_add_row_label": "Igx_grid_add_row_label", + "Igx_grid_advanced_filter_add_condition": "Igx_grid_advanced_filter_add_condition", + "Igx_grid_advanced_filter_add_condition_root": "Igx_grid_advanced_filter_add_condition_root", + "Igx_grid_advanced_filter_add_group": "Igx_grid_advanced_filter_add_group", + "Igx_grid_advanced_filter_add_group_root": "Igx_grid_advanced_filter_add_group_root", + "Igx_grid_advanced_filter_and_group": "Igx_grid_advanced_filter_and_group", + "Igx_grid_advanced_filter_and_label": "Igx_grid_advanced_filter_and_label", + "Igx_grid_advanced_filter_column_placeholder": "Igx_grid_advanced_filter_column_placeholder", + "Igx_grid_advanced_filter_create_and_group": "Igx_grid_advanced_filter_create_and_group", + "Igx_grid_advanced_filter_create_or_group": "Igx_grid_advanced_filter_create_or_group", + "Igx_grid_advanced_filter_delete": "Igx_grid_advanced_filter_delete", + "Igx_grid_advanced_filter_delete_filters": "Igx_grid_advanced_filter_delete_filters", + "Igx_grid_advanced_filter_dialog_checkbox_text": "Igx_grid_advanced_filter_dialog_checkbox_text", + "Igx_grid_advanced_filter_dialog_message": "Igx_grid_advanced_filter_dialog_message", + "Igx_grid_advanced_filter_dialog_title": "Igx_grid_advanced_filter_dialog_title", + "Igx_grid_advanced_filter_drop_ghost_text": "Igx_grid_advanced_filter_drop_ghost_text", + "Igx_grid_advanced_filter_end_group": "Igx_grid_advanced_filter_end_group", + "Igx_grid_advanced_filter_from_label": "Igx_grid_advanced_filter_from_label", + "Igx_grid_advanced_filter_initial_text": "Igx_grid_advanced_filter_initial_text", + "Igx_grid_advanced_filter_or_group": "Igx_grid_advanced_filter_or_group", + "Igx_grid_advanced_filter_or_label": "Igx_grid_advanced_filter_or_label", + "Igx_grid_advanced_filter_query_value_placeholder": "Igx_grid_advanced_filter_query_value_placeholder", + "Igx_grid_advanced_filter_select_entity": "Igx_grid_advanced_filter_select_entity", + "Igx_grid_advanced_filter_select_return_field_single": "Igx_grid_advanced_filter_select_return_field_single", + "Igx_grid_advanced_filter_switch_group": "Igx_grid_advanced_filter_switch_group", + "Igx_grid_advanced_filter_title": "Igx_grid_advanced_filter_title", + "Igx_grid_advanced_filter_ungroup": "Igx_grid_advanced_filter_ungroup", + "Igx_grid_advanced_filter_value_placeholder": "Igx_grid_advanced_filter_value_placeholder", + "Igx_grid_complex_filter": "Igx_grid_complex_filter", + "Igx_grid_email_validation_error": "Igx_grid_email_validation_error", + "Igx_grid_emptyFilteredGrid_message": "Igx_grid_emptyFilteredGrid_message", + "Igx_grid_emptyGrid_message": "Igx_grid_emptyGrid_message", + "Igx_grid_excel_add_to_filter": "Igx_grid_excel_add_to_filter", + "Igx_grid_excel_apply": "Igx_grid_excel_apply", + "Igx_grid_excel_blanks": "Igx_grid_excel_blanks", + "Igx_grid_excel_boolean_filter": "Igx_grid_excel_boolean_filter", + "Igx_grid_excel_cancel": "Igx_grid_excel_cancel", + "Igx_grid_excel_currency_filter": "Igx_grid_excel_currency_filter", + "Igx_grid_excel_custom_dialog_add": "Igx_grid_excel_custom_dialog_add", + "Igx_grid_excel_custom_dialog_clear": "Igx_grid_excel_custom_dialog_clear", + "Igx_grid_excel_custom_dialog_header": "Igx_grid_excel_custom_dialog_header", + "Igx_grid_excel_custom_filter": "Igx_grid_excel_custom_filter", + "Igx_grid_excel_date_filter": "Igx_grid_excel_date_filter", + "Igx_grid_excel_deselect": "Igx_grid_excel_deselect", + "Igx_grid_excel_filter_clear": "Igx_grid_excel_filter_clear", + "Igx_grid_excel_filter_moving_header": "Igx_grid_excel_filter_moving_header", + "Igx_grid_excel_filter_moving_left": "Igx_grid_excel_filter_moving_left", + "Igx_grid_excel_filter_moving_left_short": "Igx_grid_excel_filter_moving_left_short", + "Igx_grid_excel_filter_moving_right": "Igx_grid_excel_filter_moving_right", + "Igx_grid_excel_filter_moving_right_short": "Igx_grid_excel_filter_moving_right_short", + "Igx_grid_excel_filter_sorting_asc": "Igx_grid_excel_filter_sorting_asc", + "Igx_grid_excel_filter_sorting_asc_short": "Igx_grid_excel_filter_sorting_asc_short", + "Igx_grid_excel_filter_sorting_desc": "Igx_grid_excel_filter_sorting_desc", + "Igx_grid_excel_filter_sorting_desc_short": "Igx_grid_excel_filter_sorting_desc_short", + "Igx_grid_excel_filter_sorting_header": "Igx_grid_excel_filter_sorting_header", + "Igx_grid_excel_hide": "Igx_grid_excel_hide", + "Igx_grid_excel_matches_count": "Igx_grid_excel_matches_count", + "Igx_grid_excel_no_matches": "Igx_grid_excel_no_matches", + "Igx_grid_excel_number_filter": "Igx_grid_excel_number_filter", + "Igx_grid_excel_pin": "Igx_grid_excel_pin", + "Igx_grid_excel_search_placeholder": "Igx_grid_excel_search_placeholder", + "Igx_grid_excel_select": "Igx_grid_excel_select", + "Igx_grid_excel_select_all": "Igx_grid_excel_select_all", + "Igx_grid_excel_select_all_search_results": "Igx_grid_excel_select_all_search_results", + "Igx_grid_excel_show": "Igx_grid_excel_show", + "Igx_grid_excel_text_filter": "Igx_grid_excel_text_filter", + "Igx_grid_excel_unpin": "Igx_grid_excel_unpin", + "Igx_grid_filter": "Igx_grid_filter", + "Igx_grid_filter_after": "Igx_grid_filter_after", + "Igx_grid_filter_all": "Igx_grid_filter_all", + "Igx_grid_filter_at": "Igx_grid_filter_at", + "Igx_grid_filter_at_after": "Igx_grid_filter_at_after", + "Igx_grid_filter_at_before": "Igx_grid_filter_at_before", + "Igx_grid_filter_before": "Igx_grid_filter_before", + "Igx_grid_filter_condition_placeholder": "Igx_grid_filter_condition_placeholder", + "Igx_grid_filter_contains": "Igx_grid_filter_contains", + "Igx_grid_filter_doesNotContain": "Igx_grid_filter_doesNotContain", + "Igx_grid_filter_doesNotEqual": "Igx_grid_filter_doesNotEqual", + "Igx_grid_filter_empty": "Igx_grid_filter_empty", + "Igx_grid_filter_endsWith": "Igx_grid_filter_endsWith", + "Igx_grid_filter_equals": "Igx_grid_filter_equals", + "Igx_grid_filter_false": "Igx_grid_filter_false", + "Igx_grid_filter_greaterThan": "Igx_grid_filter_greaterThan", + "Igx_grid_filter_greaterThanOrEqualTo": "Igx_grid_filter_greaterThanOrEqualTo", + "Igx_grid_filter_in": "Igx_grid_filter_in", + "Igx_grid_filter_lastMonth": "Igx_grid_filter_lastMonth", + "Igx_grid_filter_lastYear": "Igx_grid_filter_lastYear", + "Igx_grid_filter_lessThan": "Igx_grid_filter_lessThan", + "Igx_grid_filter_lessThanOrEqualTo": "Igx_grid_filter_lessThanOrEqualTo", + "Igx_grid_filter_nextMonth": "Igx_grid_filter_nextMonth", + "Igx_grid_filter_nextYear": "Igx_grid_filter_nextYear", + "Igx_grid_filter_notEmpty": "Igx_grid_filter_notEmpty", + "Igx_grid_filter_notIn": "Igx_grid_filter_notIn", + "Igx_grid_filter_notNull": "Igx_grid_filter_notNull", + "Igx_grid_filter_not_at": "Igx_grid_filter_not_at", + "Igx_grid_filter_null": "Igx_grid_filter_null", + "Igx_grid_filter_operator_and": "Igx_grid_filter_operator_and", + "Igx_grid_filter_operator_or": "Igx_grid_filter_operator_or", + "Igx_grid_filter_row_boolean_placeholder": "Igx_grid_filter_row_boolean_placeholder", + "Igx_grid_filter_row_close": "Igx_grid_filter_row_close", + "Igx_grid_filter_row_date_placeholder": "Igx_grid_filter_row_date_placeholder", + "Igx_grid_filter_row_placeholder": "Igx_grid_filter_row_placeholder", + "Igx_grid_filter_row_reset": "Igx_grid_filter_row_reset", + "Igx_grid_filter_row_time_placeholder": "Igx_grid_filter_row_time_placeholder", + "Igx_grid_filter_startsWith": "Igx_grid_filter_startsWith", + "Igx_grid_filter_thisMonth": "Igx_grid_filter_thisMonth", + "Igx_grid_filter_thisYear": "Igx_grid_filter_thisYear", + "Igx_grid_filter_today": "Igx_grid_filter_today", + "Igx_grid_filter_true": "Igx_grid_filter_true", + "Igx_grid_filter_yesterday": "Igx_grid_filter_yesterday", + "Igx_grid_groupByArea_deselect_message": "Igx_grid_groupByArea_deselect_message", + "Igx_grid_groupByArea_message": "Igx_grid_groupByArea_message", + "Igx_grid_groupByArea_select_message": "Igx_grid_groupByArea_select_message", + "Igx_grid_hiding_check_all_label": "Igx_grid_hiding_check_all_label", + "Igx_grid_hiding_uncheck_all_label": "Igx_grid_hiding_uncheck_all_label", + "Igx_grid_max_length_validation_error": "Igx_grid_max_length_validation_error", + "Igx_grid_max_validation_error": "Igx_grid_max_validation_error", + "Igx_grid_min_length_validation_error": "Igx_grid_min_length_validation_error", + "Igx_grid_min_validation_error": "Igx_grid_min_validation_error", + "Igx_grid_pattern_validation_error": "Igx_grid_pattern_validation_error", + "Igx_grid_pinned_row_indicator": "Igx_grid_pinned_row_indicator", + "Igx_grid_pinning_check_all_label": "Igx_grid_pinning_check_all_label", + "Igx_grid_pinning_uncheck_all_label": "Igx_grid_pinning_uncheck_all_label", + "Igx_grid_pivot_aggregate_avg": "Igx_grid_pivot_aggregate_avg", + "Igx_grid_pivot_aggregate_count": "Igx_grid_pivot_aggregate_count", + "Igx_grid_pivot_aggregate_date_earliest": "Igx_grid_pivot_aggregate_date_earliest", + "Igx_grid_pivot_aggregate_date_latest": "Igx_grid_pivot_aggregate_date_latest", + "Igx_grid_pivot_aggregate_max": "Igx_grid_pivot_aggregate_max", + "Igx_grid_pivot_aggregate_min": "Igx_grid_pivot_aggregate_min", + "Igx_grid_pivot_aggregate_sum": "Igx_grid_pivot_aggregate_sum", + "Igx_grid_pivot_aggregate_time_earliest": "Igx_grid_pivot_aggregate_time_earliest", + "Igx_grid_pivot_aggregate_time_latest": "Igx_grid_pivot_aggregate_time_latest", + "Igx_grid_pivot_column_drop_chip": "Igx_grid_pivot_column_drop_chip", + "Igx_grid_pivot_date_dimension_total": "Igx_grid_pivot_date_dimension_total", + "Igx_grid_pivot_empty_column_drop_area": "Igx_grid_pivot_empty_column_drop_area", + "Igx_grid_pivot_empty_filter_drop_area": "Igx_grid_pivot_empty_filter_drop_area", + "Igx_grid_pivot_empty_message": "Igx_grid_pivot_empty_message", + "Igx_grid_pivot_empty_row_drop_area": "Igx_grid_pivot_empty_row_drop_area", + "Igx_grid_pivot_empty_value_drop_area": "Igx_grid_pivot_empty_value_drop_area", + "Igx_grid_pivot_filter_drop_chip": "Igx_grid_pivot_filter_drop_chip", + "Igx_grid_pivot_row_drop_chip": "Igx_grid_pivot_row_drop_chip", + "Igx_grid_pivot_selector_columns": "Igx_grid_pivot_selector_columns", + "Igx_grid_pivot_selector_filters": "Igx_grid_pivot_selector_filters", + "Igx_grid_pivot_selector_panel_empty": "Igx_grid_pivot_selector_panel_empty", + "Igx_grid_pivot_selector_rows": "Igx_grid_pivot_selector_rows", + "Igx_grid_pivot_selector_values": "Igx_grid_pivot_selector_values", + "Igx_grid_pivot_value_drop_chip": "Igx_grid_pivot_value_drop_chip", + "Igx_grid_required_validation_error": "Igx_grid_required_validation_error", + "Igx_grid_row_edit_btn_cancel": "Igx_grid_row_edit_btn_cancel", + "Igx_grid_row_edit_btn_done": "Igx_grid_row_edit_btn_done", + "Igx_grid_row_edit_text": "Igx_grid_row_edit_text", + "Igx_grid_snackbar_addrow_actiontext": "Igx_grid_snackbar_addrow_actiontext", + "Igx_grid_snackbar_addrow_label": "Igx_grid_snackbar_addrow_label", + "Igx_grid_summary_average": "Igx_grid_summary_average", + "Igx_grid_summary_count": "Igx_grid_summary_count", + "Igx_grid_summary_earliest": "Igx_grid_summary_earliest", + "Igx_grid_summary_latest": "Igx_grid_summary_latest", + "Igx_grid_summary_max": "Igx_grid_summary_max", + "Igx_grid_summary_min": "Igx_grid_summary_min", + "Igx_grid_summary_sum": "Igx_grid_summary_sum", + "Igx_grid_toolbar_actions_filter_prompt": "Igx_grid_toolbar_actions_filter_prompt", + "Igx_grid_toolbar_advanced_filtering_button_label": "Igx_grid_toolbar_advanced_filtering_button_label", + "Igx_grid_toolbar_advanced_filtering_button_tooltip": "Igx_grid_toolbar_advanced_filtering_button_tooltip", + "Igx_grid_toolbar_exporter_button_label": "Igx_grid_toolbar_exporter_button_label", + "Igx_grid_toolbar_exporter_button_tooltip": "Igx_grid_toolbar_exporter_button_tooltip", + "Igx_grid_toolbar_exporter_csv_entry_text": "Igx_grid_toolbar_exporter_csv_entry_text", + "Igx_grid_toolbar_exporter_excel_entry_text": "Igx_grid_toolbar_exporter_excel_entry_text", + "Igx_grid_toolbar_hiding_button_tooltip": "Igx_grid_toolbar_hiding_button_tooltip", + "Igx_grid_toolbar_hiding_title": "Igx_grid_toolbar_hiding_title", + "Igx_grid_toolbar_pinning_button_tooltip": "Igx_grid_toolbar_pinning_button_tooltip", + "Igx_grid_toolbar_pinning_title": "Igx_grid_toolbar_pinning_title", + "Type": "Type" + } + } + ], + "WebGridResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridResourceStringsDescriptionMetadata()": "WebGridResourceStringsDescriptionMetadata()", + "WebGridResourceStringsDescriptionMetadata": "WebGridResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowDescription()": "WebGridRowDescription()", + "WebGridRowDescription": "WebGridRowDescription()", + "Type": "Type" + } + } + ], + "WebGridRowDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowDescriptionMetadata()": "WebGridRowDescriptionMetadata()", + "WebGridRowDescriptionMetadata": "WebGridRowDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowDragGhostContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowDragGhostContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowDragGhostContextDescription()": "WebGridRowDragGhostContextDescription()", + "WebGridRowDragGhostContextDescription": "WebGridRowDragGhostContextDescription()", + "Data": "Data", + "Grid": "Grid", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridRowDragGhostContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowDragGhostContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowDragGhostContextDescriptionMetadata()": "WebGridRowDragGhostContextDescriptionMetadata()", + "WebGridRowDragGhostContextDescriptionMetadata": "WebGridRowDragGhostContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowEditActionsTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowEditActionsTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEditActionsTemplateContextDescription()": "WebGridRowEditActionsTemplateContextDescription()", + "WebGridRowEditActionsTemplateContextDescription": "WebGridRowEditActionsTemplateContextDescription()", + "ImplicitRef": "ImplicitRef", + "Type": "Type" + } + } + ], + "WebGridRowEditActionsTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowEditActionsTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEditActionsTemplateContextDescriptionMetadata()": "WebGridRowEditActionsTemplateContextDescriptionMetadata()", + "WebGridRowEditActionsTemplateContextDescriptionMetadata": "WebGridRowEditActionsTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowEditTextTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowEditTextTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEditTextTemplateContextDescription()": "WebGridRowEditTextTemplateContextDescription()", + "WebGridRowEditTextTemplateContextDescription": "WebGridRowEditTextTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridRowEditTextTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowEditTextTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEditTextTemplateContextDescriptionMetadata()": "WebGridRowEditTextTemplateContextDescriptionMetadata()", + "WebGridRowEditTextTemplateContextDescriptionMetadata": "WebGridRowEditTextTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEventArgsDescription()": "WebGridRowEventArgsDescription()", + "WebGridRowEventArgsDescription": "WebGridRowEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridRowEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEventArgsDescriptionMetadata()": "WebGridRowEventArgsDescriptionMetadata()", + "WebGridRowEventArgsDescriptionMetadata": "WebGridRowEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEventArgsDetailDescription()": "WebGridRowEventArgsDetailDescription()", + "WebGridRowEventArgsDetailDescription": "WebGridRowEventArgsDetailDescription()", + "Event": "Event", + "Row": "Row", + "Type": "Type" + } + } + ], + "WebGridRowEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEventArgsDetailDescriptionMetadata()": "WebGridRowEventArgsDetailDescriptionMetadata()", + "WebGridRowEventArgsDetailDescriptionMetadata": "WebGridRowEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowTemplateContextDescription()": "WebGridRowTemplateContextDescription()", + "WebGridRowTemplateContextDescription": "WebGridRowTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridRowTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridRowTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowTemplateContextDescriptionMetadata()": "WebGridRowTemplateContextDescriptionMetadata()", + "WebGridRowTemplateContextDescriptionMetadata": "WebGridRowTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridScrollEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridScrollEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridScrollEventArgsDescription()": "WebGridScrollEventArgsDescription()", + "WebGridScrollEventArgsDescription": "WebGridScrollEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridScrollEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridScrollEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridScrollEventArgsDescriptionMetadata()": "WebGridScrollEventArgsDescriptionMetadata()", + "WebGridScrollEventArgsDescriptionMetadata": "WebGridScrollEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridScrollEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridScrollEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridScrollEventArgsDetailDescription()": "WebGridScrollEventArgsDetailDescription()", + "WebGridScrollEventArgsDetailDescription": "WebGridScrollEventArgsDetailDescription()", + "Direction": "Direction", + "Event": "Event", + "ScrollPosition": "ScrollPosition", + "Type": "Type" + } + } + ], + "WebGridScrollEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridScrollEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridScrollEventArgsDetailDescriptionMetadata()": "WebGridScrollEventArgsDetailDescriptionMetadata()", + "WebGridScrollEventArgsDetailDescriptionMetadata": "WebGridScrollEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridSelectionRangeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridSelectionRangeDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeDescription()": "WebGridSelectionRangeDescription()", + "WebGridSelectionRangeDescription": "WebGridSelectionRangeDescription()", + "ColumnEnd": "ColumnEnd", + "ColumnStart": "ColumnStart", + "RowEnd": "RowEnd", + "RowStart": "RowStart", + "Type": "Type" + } + } + ], + "WebGridSelectionRangeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridSelectionRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeDescriptionMetadata()": "WebGridSelectionRangeDescriptionMetadata()", + "WebGridSelectionRangeDescriptionMetadata": "WebGridSelectionRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridSelectionRangeDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridSelectionRangeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeDetailDescription()": "WebGridSelectionRangeDetailDescription()", + "WebGridSelectionRangeDetailDescription": "WebGridSelectionRangeDetailDescription()", + "ColumnEnd": "ColumnEnd", + "ColumnStart": "ColumnStart", + "RowEnd": "RowEnd", + "RowStart": "RowStart", + "Type": "Type" + } + } + ], + "WebGridSelectionRangeDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridSelectionRangeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeDetailDescriptionMetadata()": "WebGridSelectionRangeDetailDescriptionMetadata()", + "WebGridSelectionRangeDetailDescriptionMetadata": "WebGridSelectionRangeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridSelectionRangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridSelectionRangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeEventArgsDescription()": "WebGridSelectionRangeEventArgsDescription()", + "WebGridSelectionRangeEventArgsDescription": "WebGridSelectionRangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridSelectionRangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridSelectionRangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeEventArgsDescriptionMetadata()": "WebGridSelectionRangeEventArgsDescriptionMetadata()", + "WebGridSelectionRangeEventArgsDescriptionMetadata": "WebGridSelectionRangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridSortingStrategyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridSortingStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridSortingStrategyDescription()": "WebGridSortingStrategyDescription()", + "WebGridSortingStrategyDescription": "WebGridSortingStrategyDescription()", + "Type": "Type" + } + } + ], + "WebGridSortingStrategyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridSortingStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridSortingStrategyDescriptionMetadata()": "WebGridSortingStrategyDescriptionMetadata()", + "WebGridSortingStrategyDescriptionMetadata": "WebGridSortingStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateBaseDirectiveDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateBaseDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateBaseDirectiveDescription()": "WebGridStateBaseDirectiveDescription()", + "WebGridStateBaseDirectiveDescription": "WebGridStateBaseDirectiveDescription()", + "Options": "Options", + "Type": "Type" + } + } + ], + "WebGridStateBaseDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateBaseDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateBaseDirectiveDescriptionMetadata()": "WebGridStateBaseDirectiveDescriptionMetadata()", + "WebGridStateBaseDirectiveDescriptionMetadata": "WebGridStateBaseDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateBaseDirectiveDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateBaseDirectiveDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridStateBaseDirectiveDescriptionModule()": "WebGridStateBaseDirectiveDescriptionModule()", + "WebGridStateBaseDirectiveDescriptionModule": "WebGridStateBaseDirectiveDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateCollectionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateCollectionDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateCollectionDescription()": "WebGridStateCollectionDescription()", + "WebGridStateCollectionDescription": "WebGridStateCollectionDescription()", + "Id": "Id", + "ParentRowID": "ParentRowID", + "State": "State", + "Type": "Type" + } + } + ], + "WebGridStateCollectionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateCollectionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateCollectionDescriptionMetadata()": "WebGridStateCollectionDescriptionMetadata()", + "WebGridStateCollectionDescriptionMetadata": "WebGridStateCollectionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateDescription()": "WebGridStateDescription()", + "WebGridStateDescription": "WebGridStateDescription()", + "StateParsedRef": "StateParsedRef", + "Type": "Type" + } + } + ], + "WebGridStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateDescriptionMetadata()": "WebGridStateDescriptionMetadata()", + "WebGridStateDescriptionMetadata": "WebGridStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridStateDescriptionModule()": "WebGridStateDescriptionModule()", + "WebGridStateDescriptionModule": "WebGridStateDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateInfoDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoDescription()": "WebGridStateInfoDescription()", + "WebGridStateInfoDescription": "WebGridStateInfoDescription()", + "AdvancedFiltering": "AdvancedFiltering", + "CellSelection": "CellSelection", + "ColumnSelection": "ColumnSelection", + "Columns": "Columns", + "Expansion": "Expansion", + "Filtering": "Filtering", + "GroupBy": "GroupBy", + "Id": "Id", + "Moving": "Moving", + "Paging": "Paging", + "PinningConfig": "PinningConfig", + "PivotConfiguration": "PivotConfiguration", + "RowIslands": "RowIslands", + "RowPinning": "RowPinning", + "RowSelection": "RowSelection", + "Sorting": "Sorting", + "Type": "Type" + } + } + ], + "WebGridStateInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoDescriptionMetadata()": "WebGridStateInfoDescriptionMetadata()", + "WebGridStateInfoDescriptionMetadata": "WebGridStateInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateInfoDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateInfoDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoDetailDescription()": "WebGridStateInfoDetailDescription()", + "WebGridStateInfoDetailDescription": "WebGridStateInfoDetailDescription()", + "AdvancedFiltering": "AdvancedFiltering", + "CellSelection": "CellSelection", + "ColumnSelection": "ColumnSelection", + "Columns": "Columns", + "Expansion": "Expansion", + "Filtering": "Filtering", + "GroupBy": "GroupBy", + "Id": "Id", + "Moving": "Moving", + "Paging": "Paging", + "PinningConfig": "PinningConfig", + "PivotConfiguration": "PivotConfiguration", + "RowIslands": "RowIslands", + "RowPinning": "RowPinning", + "RowSelection": "RowSelection", + "Sorting": "Sorting", + "Type": "Type" + } + } + ], + "WebGridStateInfoDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateInfoDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoDetailDescriptionMetadata()": "WebGridStateInfoDetailDescriptionMetadata()", + "WebGridStateInfoDetailDescriptionMetadata": "WebGridStateInfoDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateInfoEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateInfoEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoEventArgsDescription()": "WebGridStateInfoEventArgsDescription()", + "WebGridStateInfoEventArgsDescription": "WebGridStateInfoEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridStateInfoEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateInfoEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoEventArgsDescriptionMetadata()": "WebGridStateInfoEventArgsDescriptionMetadata()", + "WebGridStateInfoEventArgsDescriptionMetadata": "WebGridStateInfoEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateOptionsDescription()": "WebGridStateOptionsDescription()", + "WebGridStateOptionsDescription": "WebGridStateOptionsDescription()", + "AdvancedFiltering": "AdvancedFiltering", + "CellSelection": "CellSelection", + "ColumnSelection": "ColumnSelection", + "Columns": "Columns", + "Expansion": "Expansion", + "Filtering": "Filtering", + "GroupBy": "GroupBy", + "Moving": "Moving", + "Paging": "Paging", + "PinningConfig": "PinningConfig", + "PivotConfiguration": "PivotConfiguration", + "RowIslands": "RowIslands", + "RowPinning": "RowPinning", + "RowSelection": "RowSelection", + "Sorting": "Sorting", + "Type": "Type" + } + } + ], + "WebGridStateOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridStateOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateOptionsDescriptionMetadata()": "WebGridStateOptionsDescriptionMetadata()", + "WebGridStateOptionsDescriptionMetadata": "WebGridStateOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridTemplateContextDescription()": "WebGridTemplateContextDescription()", + "WebGridTemplateContextDescription": "WebGridTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridTemplateContextDescriptionMetadata()": "WebGridTemplateContextDescriptionMetadata()", + "WebGridTemplateContextDescriptionMetadata": "WebGridTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarActionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarActionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarActionsDescription()": "WebGridToolbarActionsDescription()", + "WebGridToolbarActionsDescription": "WebGridToolbarActionsDescription()", + "Actions": "Actions", + "Type": "Type" + } + } + ], + "WebGridToolbarActionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarActionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarActionsDescriptionMetadata()": "WebGridToolbarActionsDescriptionMetadata()", + "WebGridToolbarActionsDescriptionMetadata": "WebGridToolbarActionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarActionsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarActionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarActionsDescriptionModule()": "WebGridToolbarActionsDescriptionModule()", + "WebGridToolbarActionsDescriptionModule": "WebGridToolbarActionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarAdvancedFilteringDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarAdvancedFilteringDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarAdvancedFilteringDescription()": "WebGridToolbarAdvancedFilteringDescription()", + "WebGridToolbarAdvancedFilteringDescription": "WebGridToolbarAdvancedFilteringDescription()", + "OverlaySettings": "OverlaySettings", + "Type": "Type" + } + } + ], + "WebGridToolbarAdvancedFilteringDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarAdvancedFilteringDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarAdvancedFilteringDescriptionMetadata()": "WebGridToolbarAdvancedFilteringDescriptionMetadata()", + "WebGridToolbarAdvancedFilteringDescriptionMetadata": "WebGridToolbarAdvancedFilteringDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarAdvancedFilteringDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarAdvancedFilteringDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarAdvancedFilteringDescriptionModule()": "WebGridToolbarAdvancedFilteringDescriptionModule()", + "WebGridToolbarAdvancedFilteringDescriptionModule": "WebGridToolbarAdvancedFilteringDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarBaseActionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarBaseActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarBaseActionDescription()": "WebGridToolbarBaseActionDescription()", + "WebGridToolbarBaseActionDescription": "WebGridToolbarBaseActionDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarBaseActionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarBaseActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarBaseActionDescriptionMetadata()": "WebGridToolbarBaseActionDescriptionMetadata()", + "WebGridToolbarBaseActionDescriptionMetadata": "WebGridToolbarBaseActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarContentDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarContentDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarContentDescription()": "WebGridToolbarContentDescription()", + "WebGridToolbarContentDescription": "WebGridToolbarContentDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarContentDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarContentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarContentDescriptionMetadata()": "WebGridToolbarContentDescriptionMetadata()", + "WebGridToolbarContentDescriptionMetadata": "WebGridToolbarContentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarDescription()": "WebGridToolbarDescription()", + "WebGridToolbarDescription": "WebGridToolbarDescription()", + "Grid": "Grid", + "ShowProgress": "ShowProgress", + "Tools": "Tools", + "Type": "Type" + } + } + ], + "WebGridToolbarDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarDescriptionMetadata()": "WebGridToolbarDescriptionMetadata()", + "WebGridToolbarDescriptionMetadata": "WebGridToolbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarDescriptionModule()": "WebGridToolbarDescriptionModule()", + "WebGridToolbarDescriptionModule": "WebGridToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarExporterDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarExporterDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExporterDescription()": "WebGridToolbarExporterDescription()", + "WebGridToolbarExporterDescription": "WebGridToolbarExporterDescription()", + "ExportCSV": "ExportCSV", + "ExportEndedRef": "ExportEndedRef", + "ExportExcel": "ExportExcel", + "ExportPDF": "ExportPDF", + "ExportStartedRef": "ExportStartedRef", + "Filename": "Filename", + "Type": "Type" + } + } + ], + "WebGridToolbarExporterDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarExporterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExporterDescriptionMetadata()": "WebGridToolbarExporterDescriptionMetadata()", + "WebGridToolbarExporterDescriptionMetadata": "WebGridToolbarExporterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarExporterDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarExporterDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExporterDescriptionModule()": "WebGridToolbarExporterDescriptionModule()", + "WebGridToolbarExporterDescriptionModule": "WebGridToolbarExporterDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarExportEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarExportEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExportEventArgsDescription()": "WebGridToolbarExportEventArgsDescription()", + "WebGridToolbarExportEventArgsDescription": "WebGridToolbarExportEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridToolbarExportEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarExportEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExportEventArgsDescriptionMetadata()": "WebGridToolbarExportEventArgsDescriptionMetadata()", + "WebGridToolbarExportEventArgsDescriptionMetadata": "WebGridToolbarExportEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarExportEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarExportEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExportEventArgsDetailDescription()": "WebGridToolbarExportEventArgsDetailDescription()", + "WebGridToolbarExportEventArgsDetailDescription": "WebGridToolbarExportEventArgsDetailDescription()", + "Cancel": "Cancel", + "Exporter": "Exporter", + "Grid": "Grid", + "Options": "Options", + "Type": "Type" + } + } + ], + "WebGridToolbarExportEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarExportEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExportEventArgsDetailDescriptionMetadata()": "WebGridToolbarExportEventArgsDetailDescriptionMetadata()", + "WebGridToolbarExportEventArgsDetailDescriptionMetadata": "WebGridToolbarExportEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarHidingDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarHidingDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarHidingDescription()": "WebGridToolbarHidingDescription()", + "WebGridToolbarHidingDescription": "WebGridToolbarHidingDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarHidingDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarHidingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarHidingDescriptionMetadata()": "WebGridToolbarHidingDescriptionMetadata()", + "WebGridToolbarHidingDescriptionMetadata": "WebGridToolbarHidingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarHidingDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarHidingDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarHidingDescriptionModule()": "WebGridToolbarHidingDescriptionModule()", + "WebGridToolbarHidingDescriptionModule": "WebGridToolbarHidingDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarPinningDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarPinningDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarPinningDescription()": "WebGridToolbarPinningDescription()", + "WebGridToolbarPinningDescription": "WebGridToolbarPinningDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarPinningDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarPinningDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarPinningDescriptionMetadata()": "WebGridToolbarPinningDescriptionMetadata()", + "WebGridToolbarPinningDescriptionMetadata": "WebGridToolbarPinningDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarPinningDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarPinningDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarPinningDescriptionModule()": "WebGridToolbarPinningDescriptionModule()", + "WebGridToolbarPinningDescriptionModule": "WebGridToolbarPinningDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTemplateContextDescription()": "WebGridToolbarTemplateContextDescription()", + "WebGridToolbarTemplateContextDescription": "WebGridToolbarTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridToolbarTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTemplateContextDescriptionMetadata()": "WebGridToolbarTemplateContextDescriptionMetadata()", + "WebGridToolbarTemplateContextDescriptionMetadata": "WebGridToolbarTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarTitleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarTitleDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTitleDescription()": "WebGridToolbarTitleDescription()", + "WebGridToolbarTitleDescription": "WebGridToolbarTitleDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarTitleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarTitleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTitleDescriptionMetadata()": "WebGridToolbarTitleDescriptionMetadata()", + "WebGridToolbarTitleDescriptionMetadata": "WebGridToolbarTitleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarTitleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridToolbarTitleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTitleDescriptionModule()": "WebGridToolbarTitleDescriptionModule()", + "WebGridToolbarTitleDescriptionModule": "WebGridToolbarTitleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridValidationStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridValidationStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStateDescription()": "WebGridValidationStateDescription()", + "WebGridValidationStateDescription": "WebGridValidationStateDescription()", + "Errors": "Errors", + "Status": "Status", + "Type": "Type" + } + } + ], + "WebGridValidationStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridValidationStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStateDescriptionMetadata()": "WebGridValidationStateDescriptionMetadata()", + "WebGridValidationStateDescriptionMetadata": "WebGridValidationStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridValidationStatusEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridValidationStatusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStatusEventArgsDescription()": "WebGridValidationStatusEventArgsDescription()", + "WebGridValidationStatusEventArgsDescription": "WebGridValidationStatusEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridValidationStatusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridValidationStatusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStatusEventArgsDescriptionMetadata()": "WebGridValidationStatusEventArgsDescriptionMetadata()", + "WebGridValidationStatusEventArgsDescriptionMetadata": "WebGridValidationStatusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridValidationStatusEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridValidationStatusEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStatusEventArgsDetailDescription()": "WebGridValidationStatusEventArgsDetailDescription()", + "WebGridValidationStatusEventArgsDetailDescription": "WebGridValidationStatusEventArgsDetailDescription()", + "Owner": "Owner", + "Status": "Status", + "Type": "Type" + } + } + ], + "WebGridValidationStatusEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGridValidationStatusEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStatusEventArgsDetailDescriptionMetadata()": "WebGridValidationStatusEventArgsDetailDescriptionMetadata()", + "WebGridValidationStatusEventArgsDetailDescriptionMetadata": "WebGridValidationStatusEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByExpandStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByExpandStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByExpandStateDescription()": "WebGroupByExpandStateDescription()", + "WebGroupByExpandStateDescription": "WebGroupByExpandStateDescription()", + "Expanded": "Expanded", + "Hierarchy": "Hierarchy", + "Type": "Type" + } + } + ], + "WebGroupByExpandStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByExpandStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByExpandStateDescriptionMetadata()": "WebGroupByExpandStateDescriptionMetadata()", + "WebGroupByExpandStateDescriptionMetadata": "WebGroupByExpandStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByExpandStateEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByExpandStateEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByExpandStateEventArgsDescription()": "WebGroupByExpandStateEventArgsDescription()", + "WebGroupByExpandStateEventArgsDescription": "WebGroupByExpandStateEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGroupByExpandStateEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByExpandStateEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByExpandStateEventArgsDescriptionMetadata()": "WebGroupByExpandStateEventArgsDescriptionMetadata()", + "WebGroupByExpandStateEventArgsDescriptionMetadata": "WebGroupByExpandStateEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByKeyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByKeyDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByKeyDescription()": "WebGroupByKeyDescription()", + "WebGroupByKeyDescription": "WebGroupByKeyDescription()", + "FieldName": "FieldName", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebGroupByKeyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByKeyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByKeyDescriptionMetadata()": "WebGroupByKeyDescriptionMetadata()", + "WebGroupByKeyDescriptionMetadata": "WebGroupByKeyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByRecordDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByRecordDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRecordDescription()": "WebGroupByRecordDescription()", + "WebGroupByRecordDescription": "WebGroupByRecordDescription()", + "Column": "Column", + "Expression": "Expression", + "GroupParent": "GroupParent", + "Groups": "Groups", + "Height": "Height", + "Level": "Level", + "RecordsRef": "RecordsRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebGroupByRecordDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByRecordDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRecordDescriptionMetadata()": "WebGroupByRecordDescriptionMetadata()", + "WebGroupByRecordDescriptionMetadata": "WebGroupByRecordDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByResultDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByResultDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByResultDescription()": "WebGroupByResultDescription()", + "WebGroupByResultDescription": "WebGroupByResultDescription()", + "DataRef": "DataRef", + "Metadata": "Metadata", + "Type": "Type" + } + } + ], + "WebGroupByResultDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByResultDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByResultDescriptionMetadata()": "WebGroupByResultDescriptionMetadata()", + "WebGroupByResultDescriptionMetadata": "WebGroupByResultDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByRowSelectorTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByRowSelectorTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowSelectorTemplateContextDescription()": "WebGroupByRowSelectorTemplateContextDescription()", + "WebGroupByRowSelectorTemplateContextDescription": "WebGroupByRowSelectorTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGroupByRowSelectorTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByRowSelectorTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowSelectorTemplateContextDescriptionMetadata()": "WebGroupByRowSelectorTemplateContextDescriptionMetadata()", + "WebGroupByRowSelectorTemplateContextDescriptionMetadata": "WebGroupByRowSelectorTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByRowSelectorTemplateDetailsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByRowSelectorTemplateDetailsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowSelectorTemplateDetailsDescription()": "WebGroupByRowSelectorTemplateDetailsDescription()", + "WebGroupByRowSelectorTemplateDetailsDescription": "WebGroupByRowSelectorTemplateDetailsDescription()", + "GroupRow": "GroupRow", + "SelectedCount": "SelectedCount", + "TotalCount": "TotalCount", + "Type": "Type" + } + } + ], + "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByRowSelectorTemplateDetailsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata()": "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata()", + "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata": "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByRowTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByRowTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowTemplateContextDescription()": "WebGroupByRowTemplateContextDescription()", + "WebGroupByRowTemplateContextDescription": "WebGroupByRowTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGroupByRowTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupByRowTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowTemplateContextDescriptionMetadata()": "WebGroupByRowTemplateContextDescriptionMetadata()", + "WebGroupByRowTemplateContextDescriptionMetadata": "WebGroupByRowTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingDoneEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingDoneEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingDoneEventArgsDescription()": "WebGroupingDoneEventArgsDescription()", + "WebGroupingDoneEventArgsDescription": "WebGroupingDoneEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGroupingDoneEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingDoneEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingDoneEventArgsDescriptionMetadata()": "WebGroupingDoneEventArgsDescriptionMetadata()", + "WebGroupingDoneEventArgsDescriptionMetadata": "WebGroupingDoneEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingDoneEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingDoneEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingDoneEventArgsDetailDescription()": "WebGroupingDoneEventArgsDetailDescription()", + "WebGroupingDoneEventArgsDetailDescription": "WebGroupingDoneEventArgsDetailDescription()", + "Expressions": "Expressions", + "GroupedColumns": "GroupedColumns", + "Type": "Type", + "UngroupedColumns": "UngroupedColumns" + } + } + ], + "WebGroupingDoneEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingDoneEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingDoneEventArgsDetailDescriptionMetadata()": "WebGroupingDoneEventArgsDetailDescriptionMetadata()", + "WebGroupingDoneEventArgsDetailDescriptionMetadata": "WebGroupingDoneEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingExpressionDescription()": "WebGroupingExpressionDescription()", + "WebGroupingExpressionDescription": "WebGroupingExpressionDescription()", + "Type": "Type" + } + } + ], + "WebGroupingExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingExpressionDescriptionMetadata()": "WebGroupingExpressionDescriptionMetadata()", + "WebGroupingExpressionDescriptionMetadata": "WebGroupingExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingExpressionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingExpressionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingExpressionEventArgsDescription()": "WebGroupingExpressionEventArgsDescription()", + "WebGroupingExpressionEventArgsDescription": "WebGroupingExpressionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGroupingExpressionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingExpressionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingExpressionEventArgsDescriptionMetadata()": "WebGroupingExpressionEventArgsDescriptionMetadata()", + "WebGroupingExpressionEventArgsDescriptionMetadata": "WebGroupingExpressionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingStateDescription()": "WebGroupingStateDescription()", + "WebGroupingStateDescription": "WebGroupingStateDescription()", + "DefaultExpanded": "DefaultExpanded", + "Expansion": "Expansion", + "Expressions": "Expressions", + "Type": "Type" + } + } + ], + "WebGroupingStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebGroupingStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingStateDescriptionMetadata()": "WebGroupingStateDescriptionMetadata()", + "WebGroupingStateDescriptionMetadata": "WebGroupingStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHeaderTypeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHeaderTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebHeaderTypeDescription()": "WebHeaderTypeDescription()", + "WebHeaderTypeDescription": "WebHeaderTypeDescription()", + "Column": "Column", + "Selectable": "Selectable", + "Selected": "Selected", + "SortDirection": "SortDirection", + "Sorted": "Sorted", + "Title": "Title", + "Type": "Type" + } + } + ], + "WebHeaderTypeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHeaderTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHeaderTypeDescriptionMetadata()": "WebHeaderTypeDescriptionMetadata()", + "WebHeaderTypeDescriptionMetadata": "WebHeaderTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHeadSelectorTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHeadSelectorTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebHeadSelectorTemplateContextDescription()": "WebHeadSelectorTemplateContextDescription()", + "WebHeadSelectorTemplateContextDescription": "WebHeadSelectorTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebHeadSelectorTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHeadSelectorTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHeadSelectorTemplateContextDescriptionMetadata()": "WebHeadSelectorTemplateContextDescriptionMetadata()", + "WebHeadSelectorTemplateContextDescriptionMetadata": "WebHeadSelectorTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHeadSelectorTemplateDetailsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHeadSelectorTemplateDetailsDescription", + "k": "class", + "s": "classes", + "m": { + "WebHeadSelectorTemplateDetailsDescription()": "WebHeadSelectorTemplateDetailsDescription()", + "WebHeadSelectorTemplateDetailsDescription": "WebHeadSelectorTemplateDetailsDescription()", + "SelectedCount": "SelectedCount", + "TotalCount": "TotalCount", + "Type": "Type" + } + } + ], + "WebHeadSelectorTemplateDetailsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHeadSelectorTemplateDetailsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHeadSelectorTemplateDetailsDescriptionMetadata()": "WebHeadSelectorTemplateDetailsDescriptionMetadata()", + "WebHeadSelectorTemplateDetailsDescriptionMetadata": "WebHeadSelectorTemplateDetailsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHierarchicalGridBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHierarchicalGridBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridBaseDescription()": "WebHierarchicalGridBaseDescription()", + "WebHierarchicalGridBaseDescription": "WebHierarchicalGridBaseDescription()", + "DataRef": "DataRef", + "ExpandChildren": "ExpandChildren", + "Id": "Id", + "TotalItemCount": "TotalItemCount", + "Type": "Type" + } + } + ], + "WebHierarchicalGridBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHierarchicalGridBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridBaseDescriptionMetadata()": "WebHierarchicalGridBaseDescriptionMetadata()", + "WebHierarchicalGridBaseDescriptionMetadata": "WebHierarchicalGridBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHierarchicalGridBaseDirectiveDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHierarchicalGridBaseDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridBaseDirectiveDescription()": "WebHierarchicalGridBaseDirectiveDescription()", + "WebHierarchicalGridBaseDirectiveDescription": "WebHierarchicalGridBaseDirectiveDescription()", + "DataPreLoadRef": "DataPreLoadRef", + "HasChildrenKey": "HasChildrenKey", + "RootGrid": "RootGrid", + "ShowExpandAll": "ShowExpandAll", + "Type": "Type" + } + } + ], + "WebHierarchicalGridBaseDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHierarchicalGridBaseDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridBaseDirectiveDescriptionMetadata()": "WebHierarchicalGridBaseDirectiveDescriptionMetadata()", + "WebHierarchicalGridBaseDirectiveDescriptionMetadata": "WebHierarchicalGridBaseDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHierarchicalGridDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHierarchicalGridDescription", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridDescription()": "WebHierarchicalGridDescription()", + "WebHierarchicalGridDescription": "WebHierarchicalGridDescription()", + "ActionStripComponents": "ActionStripComponents", + "ChildLayoutList": "ChildLayoutList", + "ChildrenResolvedRef": "ChildrenResolvedRef", + "ColumnsAutogeneratedRef": "ColumnsAutogeneratedRef", + "Type": "Type" + } + } + ], + "WebHierarchicalGridDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHierarchicalGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridDescriptionMetadata()": "WebHierarchicalGridDescriptionMetadata()", + "WebHierarchicalGridDescriptionMetadata": "WebHierarchicalGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHierarchicalGridDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHierarchicalGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridDescriptionModule()": "WebHierarchicalGridDescriptionModule()", + "WebHierarchicalGridDescriptionModule": "WebHierarchicalGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHighlightDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHighlightDescription", + "k": "class", + "s": "classes", + "m": { + "WebHighlightDescription()": "WebHighlightDescription()", + "WebHighlightDescription": "WebHighlightDescription()", + "CaseSensitive": "CaseSensitive", + "SearchText": "SearchText", + "Type": "Type" + } + } + ], + "WebHighlightDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHighlightDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHighlightDescriptionMetadata()": "WebHighlightDescriptionMetadata()", + "WebHighlightDescriptionMetadata": "WebHighlightDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHighlightDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHighlightDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebHighlightDescriptionModule()": "WebHighlightDescriptionModule()", + "WebHighlightDescriptionModule": "WebHighlightDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHighlightNavigationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHighlightNavigationDescription", + "k": "class", + "s": "classes", + "m": { + "WebHighlightNavigationDescription()": "WebHighlightNavigationDescription()", + "WebHighlightNavigationDescription": "WebHighlightNavigationDescription()", + "PreventScroll": "PreventScroll", + "Type": "Type" + } + } + ], + "WebHighlightNavigationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebHighlightNavigationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHighlightNavigationDescriptionMetadata()": "WebHighlightNavigationDescriptionMetadata()", + "WebHighlightNavigationDescriptionMetadata": "WebHighlightNavigationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconButtonDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebIconButtonDescription", + "k": "class", + "s": "classes", + "m": { + "WebIconButtonDescription()": "WebIconButtonDescription()", + "WebIconButtonDescription": "WebIconButtonDescription()", + "Collection": "Collection", + "IconName": "IconName", + "Mirrored": "Mirrored", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebIconButtonDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebIconButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebIconButtonDescriptionMetadata()": "WebIconButtonDescriptionMetadata()", + "WebIconButtonDescriptionMetadata": "WebIconButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconButtonDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebIconButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebIconButtonDescriptionModule()": "WebIconButtonDescriptionModule()", + "WebIconButtonDescriptionModule": "WebIconButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebIconDescription", + "k": "class", + "s": "classes", + "m": { + "WebIconDescription()": "WebIconDescription()", + "WebIconDescription": "WebIconDescription()", + "Collection": "Collection", + "IconName": "IconName", + "Mirrored": "Mirrored", + "Type": "Type" + } + } + ], + "WebIconDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebIconDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebIconDescriptionMetadata()": "WebIconDescriptionMetadata()", + "WebIconDescriptionMetadata": "WebIconDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebIconDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebIconDescriptionModule()": "WebIconDescriptionModule()", + "WebIconDescriptionModule": "WebIconDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconMetaDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebIconMetaDescription", + "k": "class", + "s": "classes", + "m": { + "WebIconMetaDescription()": "WebIconMetaDescription()", + "WebIconMetaDescription": "WebIconMetaDescription()", + "Collection": "Collection", + "Type": "Type" + } + } + ], + "WebIconMetaDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebIconMetaDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebIconMetaDescriptionMetadata()": "WebIconMetaDescriptionMetadata()", + "WebIconMetaDescriptionMetadata": "WebIconMetaDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebInputBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebInputBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebInputBaseDescription()": "WebInputBaseDescription()", + "WebInputBaseDescription": "WebInputBaseDescription()", + "BlurRef": "BlurRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "FocusRef": "FocusRef", + "InputOcurredRef": "InputOcurredRef", + "Invalid": "Invalid", + "Label": "Label", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "Required": "Required", + "Type": "Type" + } + } + ], + "WebInputBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebInputBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebInputBaseDescriptionMetadata()": "WebInputBaseDescriptionMetadata()", + "WebInputBaseDescriptionMetadata": "WebInputBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebInputDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebInputDescription", + "k": "class", + "s": "classes", + "m": { + "WebInputDescription()": "WebInputDescription()", + "WebInputDescription": "WebInputDescription()", + "Autocomplete": "Autocomplete", + "Autofocus": "Autofocus", + "ChangeRef": "ChangeRef", + "DisplayType": "DisplayType", + "InputMode": "InputMode", + "Max": "Max", + "MaxLength": "MaxLength", + "Min": "Min", + "MinLength": "MinLength", + "Pattern": "Pattern", + "ReadOnly": "ReadOnly", + "Step": "Step", + "Type": "Type", + "ValidateOnly": "ValidateOnly", + "Value": "Value" + } + } + ], + "WebInputDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebInputDescriptionMetadata()": "WebInputDescriptionMetadata()", + "WebInputDescriptionMetadata": "WebInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebInputDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebInputDescriptionModule()": "WebInputDescriptionModule()", + "WebInputDescriptionModule": "WebInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebLayoutChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebLayoutChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebLayoutChangeEventArgsDescription()": "WebLayoutChangeEventArgsDescription()", + "WebLayoutChangeEventArgsDescription": "WebLayoutChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebLayoutChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebLayoutChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebLayoutChangeEventArgsDescriptionMetadata()": "WebLayoutChangeEventArgsDescriptionMetadata()", + "WebLayoutChangeEventArgsDescriptionMetadata": "WebLayoutChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebLayoutChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebLayoutChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebLayoutChangeEventArgsDetailDescription()": "WebLayoutChangeEventArgsDetailDescription()", + "WebLayoutChangeEventArgsDetailDescription": "WebLayoutChangeEventArgsDetailDescription()", + "Layout": "Layout", + "Type": "Type" + } + } + ], + "WebLayoutChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebLayoutChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebLayoutChangeEventArgsDetailDescriptionMetadata()": "WebLayoutChangeEventArgsDetailDescriptionMetadata()", + "WebLayoutChangeEventArgsDetailDescriptionMetadata": "WebLayoutChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebLinearProgressDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebLinearProgressDescription", + "k": "class", + "s": "classes", + "m": { + "WebLinearProgressDescription()": "WebLinearProgressDescription()", + "WebLinearProgressDescription": "WebLinearProgressDescription()", + "LabelAlign": "LabelAlign", + "Striped": "Striped", + "Type": "Type" + } + } + ], + "WebLinearProgressDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebLinearProgressDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebLinearProgressDescriptionMetadata()": "WebLinearProgressDescriptionMetadata()", + "WebLinearProgressDescriptionMetadata": "WebLinearProgressDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebLinearProgressDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebLinearProgressDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebLinearProgressDescriptionModule()": "WebLinearProgressDescriptionModule()", + "WebLinearProgressDescriptionModule": "WebLinearProgressDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListDescription", + "k": "class", + "s": "classes", + "m": { + "WebListDescription()": "WebListDescription()", + "WebListDescription": "WebListDescription()", + "Type": "Type" + } + } + ], + "WebListDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebListDescriptionMetadata()": "WebListDescriptionMetadata()", + "WebListDescriptionMetadata": "WebListDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebListDescriptionModule()": "WebListDescriptionModule()", + "WebListDescriptionModule": "WebListDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebListHeaderDescription()": "WebListHeaderDescription()", + "WebListHeaderDescription": "WebListHeaderDescription()", + "Type": "Type" + } + } + ], + "WebListHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebListHeaderDescriptionMetadata()": "WebListHeaderDescriptionMetadata()", + "WebListHeaderDescriptionMetadata": "WebListHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebListHeaderDescriptionModule()": "WebListHeaderDescriptionModule()", + "WebListHeaderDescriptionModule": "WebListHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListItemDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebListItemDescription()": "WebListItemDescription()", + "WebListItemDescription": "WebListItemDescription()", + "Selected": "Selected", + "Type": "Type" + } + } + ], + "WebListItemDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebListItemDescriptionMetadata()": "WebListItemDescriptionMetadata()", + "WebListItemDescriptionMetadata": "WebListItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListItemDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebListItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebListItemDescriptionModule()": "WebListItemDescriptionModule()", + "WebListItemDescriptionModule": "WebListItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebMaskInputDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebMaskInputDescription", + "k": "class", + "s": "classes", + "m": { + "WebMaskInputDescription()": "WebMaskInputDescription()", + "WebMaskInputDescription": "WebMaskInputDescription()", + "ChangeRef": "ChangeRef", + "Mask": "Mask", + "Prompt": "Prompt", + "ReadOnly": "ReadOnly", + "Type": "Type", + "Value": "Value", + "ValueMode": "ValueMode" + } + } + ], + "WebMaskInputDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebMaskInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebMaskInputDescriptionMetadata()": "WebMaskInputDescriptionMetadata()", + "WebMaskInputDescriptionMetadata": "WebMaskInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebMaskInputDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebMaskInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebMaskInputDescriptionModule()": "WebMaskInputDescriptionModule()", + "WebMaskInputDescriptionModule": "WebMaskInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebMoveFloatingPaneActionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebMoveFloatingPaneActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebMoveFloatingPaneActionDescription()": "WebMoveFloatingPaneActionDescription()", + "WebMoveFloatingPaneActionDescription": "WebMoveFloatingPaneActionDescription()", + "ActionType": "ActionType", + "NewLocation": "NewLocation", + "OldLocation": "OldLocation", + "Type": "Type" + } + } + ], + "WebMoveFloatingPaneActionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebMoveFloatingPaneActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebMoveFloatingPaneActionDescriptionMetadata()": "WebMoveFloatingPaneActionDescriptionMetadata()", + "WebMoveFloatingPaneActionDescriptionMetadata": "WebMoveFloatingPaneActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebMoveTabActionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebMoveTabActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebMoveTabActionDescription()": "WebMoveTabActionDescription()", + "WebMoveTabActionDescription": "WebMoveTabActionDescription()", + "ActionType": "ActionType", + "NewIndex": "NewIndex", + "OldIndex": "OldIndex", + "Type": "Type" + } + } + ], + "WebMoveTabActionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebMoveTabActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebMoveTabActionDescriptionMetadata()": "WebMoveTabActionDescriptionMetadata()", + "WebMoveTabActionDescriptionMetadata": "WebMoveTabActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavbarDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavbarDescription", + "k": "class", + "s": "classes", + "m": { + "WebNavbarDescription()": "WebNavbarDescription()", + "WebNavbarDescription": "WebNavbarDescription()", + "Type": "Type" + } + } + ], + "WebNavbarDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNavbarDescriptionMetadata()": "WebNavbarDescriptionMetadata()", + "WebNavbarDescriptionMetadata": "WebNavbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebNavbarDescriptionModule()": "WebNavbarDescriptionModule()", + "WebNavbarDescriptionModule": "WebNavbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerDescription", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerDescription()": "WebNavDrawerDescription()", + "WebNavDrawerDescription": "WebNavDrawerDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "KeepOpenOnEscape": "KeepOpenOnEscape", + "Label": "Label", + "Open": "Open", + "Position": "Position", + "Type": "Type" + } + } + ], + "WebNavDrawerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerDescriptionMetadata()": "WebNavDrawerDescriptionMetadata()", + "WebNavDrawerDescriptionMetadata": "WebNavDrawerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerDescriptionModule()": "WebNavDrawerDescriptionModule()", + "WebNavDrawerDescriptionModule": "WebNavDrawerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerHeaderItemDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerHeaderItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerHeaderItemDescription()": "WebNavDrawerHeaderItemDescription()", + "WebNavDrawerHeaderItemDescription": "WebNavDrawerHeaderItemDescription()", + "Type": "Type" + } + } + ], + "WebNavDrawerHeaderItemDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerHeaderItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerHeaderItemDescriptionMetadata()": "WebNavDrawerHeaderItemDescriptionMetadata()", + "WebNavDrawerHeaderItemDescriptionMetadata": "WebNavDrawerHeaderItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerHeaderItemDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerHeaderItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerHeaderItemDescriptionModule()": "WebNavDrawerHeaderItemDescriptionModule()", + "WebNavDrawerHeaderItemDescriptionModule": "WebNavDrawerHeaderItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerItemDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerItemDescription()": "WebNavDrawerItemDescription()", + "WebNavDrawerItemDescription": "WebNavDrawerItemDescription()", + "Active": "Active", + "Disabled": "Disabled", + "Type": "Type" + } + } + ], + "WebNavDrawerItemDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerItemDescriptionMetadata()": "WebNavDrawerItemDescriptionMetadata()", + "WebNavDrawerItemDescriptionMetadata": "WebNavDrawerItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerItemDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNavDrawerItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerItemDescriptionModule()": "WebNavDrawerItemDescriptionModule()", + "WebNavDrawerItemDescriptionModule": "WebNavDrawerItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNumberEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNumberEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebNumberEventArgsDescription()": "WebNumberEventArgsDescription()", + "WebNumberEventArgsDescription": "WebNumberEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebNumberEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNumberEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNumberEventArgsDescriptionMetadata()": "WebNumberEventArgsDescriptionMetadata()", + "WebNumberEventArgsDescriptionMetadata": "WebNumberEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNumberFilteringOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNumberFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebNumberFilteringOperandDescription()": "WebNumberFilteringOperandDescription()", + "WebNumberFilteringOperandDescription": "WebNumberFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebNumberFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNumberFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNumberFilteringOperandDescriptionMetadata()": "WebNumberFilteringOperandDescriptionMetadata()", + "WebNumberFilteringOperandDescriptionMetadata": "WebNumberFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNumberSummaryOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNumberSummaryOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebNumberSummaryOperandDescription()": "WebNumberSummaryOperandDescription()", + "WebNumberSummaryOperandDescription": "WebNumberSummaryOperandDescription()", + "Type": "Type" + } + } + ], + "WebNumberSummaryOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebNumberSummaryOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNumberSummaryOperandDescriptionMetadata()": "WebNumberSummaryOperandDescriptionMetadata()", + "WebNumberSummaryOperandDescriptionMetadata": "WebNumberSummaryOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebOverlayOutletDirectiveDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebOverlayOutletDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebOverlayOutletDirectiveDescription()": "WebOverlayOutletDirectiveDescription()", + "WebOverlayOutletDirectiveDescription": "WebOverlayOutletDirectiveDescription()", + "Type": "Type" + } + } + ], + "WebOverlayOutletDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebOverlayOutletDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebOverlayOutletDirectiveDescriptionMetadata()": "WebOverlayOutletDirectiveDescriptionMetadata()", + "WebOverlayOutletDirectiveDescriptionMetadata": "WebOverlayOutletDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebOverlaySettingsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebOverlaySettingsDescription", + "k": "class", + "s": "classes", + "m": { + "WebOverlaySettingsDescription()": "WebOverlaySettingsDescription()", + "WebOverlaySettingsDescription": "WebOverlaySettingsDescription()", + "CloseOnEscape": "CloseOnEscape", + "CloseOnOutsideClick": "CloseOnOutsideClick", + "Modal": "Modal", + "PositionStrategy": "PositionStrategy", + "ScrollStrategy": "ScrollStrategy", + "Target": "Target", + "Type": "Type" + } + } + ], + "WebOverlaySettingsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebOverlaySettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebOverlaySettingsDescriptionMetadata()": "WebOverlaySettingsDescriptionMetadata()", + "WebOverlaySettingsDescriptionMetadata": "WebOverlaySettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPageCancellableEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPageCancellableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPageCancellableEventArgsDescription()": "WebPageCancellableEventArgsDescription()", + "WebPageCancellableEventArgsDescription": "WebPageCancellableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPageCancellableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPageCancellableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPageCancellableEventArgsDescriptionMetadata()": "WebPageCancellableEventArgsDescriptionMetadata()", + "WebPageCancellableEventArgsDescriptionMetadata": "WebPageCancellableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPageCancellableEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPageCancellableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPageCancellableEventArgsDetailDescription()": "WebPageCancellableEventArgsDetailDescription()", + "WebPageCancellableEventArgsDetailDescription": "WebPageCancellableEventArgsDetailDescription()", + "Current": "Current", + "Next": "Next", + "Type": "Type" + } + } + ], + "WebPageCancellableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPageCancellableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPageCancellableEventArgsDetailDescriptionMetadata()": "WebPageCancellableEventArgsDetailDescriptionMetadata()", + "WebPageCancellableEventArgsDetailDescriptionMetadata": "WebPageCancellableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPageEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPageEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPageEventArgsDescription()": "WebPageEventArgsDescription()", + "WebPageEventArgsDescription": "WebPageEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPageEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPageEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPageEventArgsDescriptionMetadata()": "WebPageEventArgsDescriptionMetadata()", + "WebPageEventArgsDescriptionMetadata": "WebPageEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPageEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPageEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPageEventArgsDetailDescription()": "WebPageEventArgsDetailDescription()", + "WebPageEventArgsDetailDescription": "WebPageEventArgsDetailDescription()", + "Current": "Current", + "Previous": "Previous", + "Type": "Type" + } + } + ], + "WebPageEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPageEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPageEventArgsDetailDescriptionMetadata()": "WebPageEventArgsDetailDescriptionMetadata()", + "WebPageEventArgsDetailDescriptionMetadata": "WebPageEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaginatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaginatorDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorDescription()": "WebPaginatorDescription()", + "WebPaginatorDescription": "WebPaginatorDescription()", + "OverlaySettings": "OverlaySettings", + "Page": "Page", + "PageChangeRef": "PageChangeRef", + "PagingDoneRef": "PagingDoneRef", + "PagingRef": "PagingRef", + "PerPage": "PerPage", + "PerPageChangeRef": "PerPageChangeRef", + "ResourceStrings": "ResourceStrings", + "SelectOptions": "SelectOptions", + "TotalPages": "TotalPages", + "TotalRecords": "TotalRecords", + "Type": "Type" + } + } + ], + "WebPaginatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaginatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorDescriptionMetadata()": "WebPaginatorDescriptionMetadata()", + "WebPaginatorDescriptionMetadata": "WebPaginatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaginatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaginatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorDescriptionModule()": "WebPaginatorDescriptionModule()", + "WebPaginatorDescriptionModule": "WebPaginatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaginatorResourceStringsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaginatorResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorResourceStringsDescription()": "WebPaginatorResourceStringsDescription()", + "WebPaginatorResourceStringsDescription": "WebPaginatorResourceStringsDescription()", + "Igx_paginator_first_page_button_text": "Igx_paginator_first_page_button_text", + "Igx_paginator_label": "Igx_paginator_label", + "Igx_paginator_last_page_button_text": "Igx_paginator_last_page_button_text", + "Igx_paginator_next_page_button_text": "Igx_paginator_next_page_button_text", + "Igx_paginator_pager_text": "Igx_paginator_pager_text", + "Igx_paginator_previous_page_button_text": "Igx_paginator_previous_page_button_text", + "Type": "Type" + } + } + ], + "WebPaginatorResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaginatorResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorResourceStringsDescriptionMetadata()": "WebPaginatorResourceStringsDescriptionMetadata()", + "WebPaginatorResourceStringsDescriptionMetadata": "WebPaginatorResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPagingStateDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPagingStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebPagingStateDescription()": "WebPagingStateDescription()", + "WebPagingStateDescription": "WebPagingStateDescription()", + "Index": "Index", + "RecordsPerPage": "RecordsPerPage", + "Type": "Type" + } + } + ], + "WebPagingStateDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPagingStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPagingStateDescriptionMetadata()": "WebPagingStateDescriptionMetadata()", + "WebPagingStateDescriptionMetadata": "WebPagingStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneCloseEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneCloseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneCloseEventArgsDescription()": "WebPaneCloseEventArgsDescription()", + "WebPaneCloseEventArgsDescription": "WebPaneCloseEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneCloseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneCloseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneCloseEventArgsDescriptionMetadata()": "WebPaneCloseEventArgsDescriptionMetadata()", + "WebPaneCloseEventArgsDescriptionMetadata": "WebPaneCloseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneCloseEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneCloseEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneCloseEventArgsDetailDescription()": "WebPaneCloseEventArgsDetailDescription()", + "WebPaneCloseEventArgsDetailDescription": "WebPaneCloseEventArgsDetailDescription()", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPaneCloseEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneCloseEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneCloseEventArgsDetailDescriptionMetadata()": "WebPaneCloseEventArgsDetailDescriptionMetadata()", + "WebPaneCloseEventArgsDetailDescriptionMetadata": "WebPaneCloseEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragActionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragActionDescription()": "WebPaneDragActionDescription()", + "WebPaneDragActionDescription": "WebPaneDragActionDescription()", + "Type": "Type" + } + } + ], + "WebPaneDragActionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragActionDescriptionMetadata()": "WebPaneDragActionDescriptionMetadata()", + "WebPaneDragActionDescriptionMetadata": "WebPaneDragActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragEndEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragEndEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragEndEventArgsDescription()": "WebPaneDragEndEventArgsDescription()", + "WebPaneDragEndEventArgsDescription": "WebPaneDragEndEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneDragEndEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragEndEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragEndEventArgsDescriptionMetadata()": "WebPaneDragEndEventArgsDescriptionMetadata()", + "WebPaneDragEndEventArgsDescriptionMetadata": "WebPaneDragEndEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragEndEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragEndEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragEndEventArgsDetailDescription()": "WebPaneDragEndEventArgsDetailDescription()", + "WebPaneDragEndEventArgsDetailDescription": "WebPaneDragEndEventArgsDetailDescription()", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPaneDragEndEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragEndEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragEndEventArgsDetailDescriptionMetadata()": "WebPaneDragEndEventArgsDetailDescriptionMetadata()", + "WebPaneDragEndEventArgsDetailDescriptionMetadata": "WebPaneDragEndEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragOverEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragOverEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragOverEventArgsDescription()": "WebPaneDragOverEventArgsDescription()", + "WebPaneDragOverEventArgsDescription": "WebPaneDragOverEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneDragOverEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragOverEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragOverEventArgsDescriptionMetadata()": "WebPaneDragOverEventArgsDescriptionMetadata()", + "WebPaneDragOverEventArgsDescriptionMetadata": "WebPaneDragOverEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragOverEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragOverEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragOverEventArgsDetailDescription()": "WebPaneDragOverEventArgsDetailDescription()", + "WebPaneDragOverEventArgsDetailDescription": "WebPaneDragOverEventArgsDetailDescription()", + "Action": "Action", + "IsValid": "IsValid", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPaneDragOverEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragOverEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragOverEventArgsDetailDescriptionMetadata()": "WebPaneDragOverEventArgsDetailDescriptionMetadata()", + "WebPaneDragOverEventArgsDetailDescriptionMetadata": "WebPaneDragOverEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragStartEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragStartEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragStartEventArgsDescription()": "WebPaneDragStartEventArgsDescription()", + "WebPaneDragStartEventArgsDescription": "WebPaneDragStartEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneDragStartEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragStartEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragStartEventArgsDescriptionMetadata()": "WebPaneDragStartEventArgsDescriptionMetadata()", + "WebPaneDragStartEventArgsDescriptionMetadata": "WebPaneDragStartEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragStartEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragStartEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragStartEventArgsDetailDescription()": "WebPaneDragStartEventArgsDetailDescription()", + "WebPaneDragStartEventArgsDetailDescription": "WebPaneDragStartEventArgsDetailDescription()", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPaneDragStartEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneDragStartEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragStartEventArgsDetailDescriptionMetadata()": "WebPaneDragStartEventArgsDetailDescriptionMetadata()", + "WebPaneDragStartEventArgsDetailDescriptionMetadata": "WebPaneDragStartEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneFlyoutEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneFlyoutEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneFlyoutEventArgsDescription()": "WebPaneFlyoutEventArgsDescription()", + "WebPaneFlyoutEventArgsDescription": "WebPaneFlyoutEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneFlyoutEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneFlyoutEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneFlyoutEventArgsDescriptionMetadata()": "WebPaneFlyoutEventArgsDescriptionMetadata()", + "WebPaneFlyoutEventArgsDescriptionMetadata": "WebPaneFlyoutEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneFlyoutEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneFlyoutEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneFlyoutEventArgsDetailDescription()": "WebPaneFlyoutEventArgsDetailDescription()", + "WebPaneFlyoutEventArgsDetailDescription": "WebPaneFlyoutEventArgsDetailDescription()", + "IsOpen": "IsOpen", + "Pane": "Pane", + "Type": "Type" + } + } + ], + "WebPaneFlyoutEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneFlyoutEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneFlyoutEventArgsDetailDescriptionMetadata()": "WebPaneFlyoutEventArgsDetailDescriptionMetadata()", + "WebPaneFlyoutEventArgsDetailDescriptionMetadata": "WebPaneFlyoutEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneHeaderConnectionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneHeaderConnectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderConnectionEventArgsDescription()": "WebPaneHeaderConnectionEventArgsDescription()", + "WebPaneHeaderConnectionEventArgsDescription": "WebPaneHeaderConnectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneHeaderConnectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneHeaderConnectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderConnectionEventArgsDescriptionMetadata()": "WebPaneHeaderConnectionEventArgsDescriptionMetadata()", + "WebPaneHeaderConnectionEventArgsDescriptionMetadata": "WebPaneHeaderConnectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneHeaderConnectionEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneHeaderConnectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderConnectionEventArgsDetailDescription()": "WebPaneHeaderConnectionEventArgsDetailDescription()", + "WebPaneHeaderConnectionEventArgsDetailDescription": "WebPaneHeaderConnectionEventArgsDetailDescription()", + "Element": "Element", + "Pane": "Pane", + "Type": "Type" + } + } + ], + "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata()": "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata()", + "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata": "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneHeaderElementDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneHeaderElementDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderElementDescription()": "WebPaneHeaderElementDescription()", + "WebPaneHeaderElementDescription": "WebPaneHeaderElementDescription()", + "DragService": "DragService", + "Type": "Type" + } + } + ], + "WebPaneHeaderElementDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneHeaderElementDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderElementDescriptionMetadata()": "WebPaneHeaderElementDescriptionMetadata()", + "WebPaneHeaderElementDescriptionMetadata": "WebPaneHeaderElementDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneHeaderElementDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneHeaderElementDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderElementDescriptionModule()": "WebPaneHeaderElementDescriptionModule()", + "WebPaneHeaderElementDescriptionModule": "WebPaneHeaderElementDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneNavigatorMetadataDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneNavigatorMetadataDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneNavigatorMetadataDescription()": "WebPaneNavigatorMetadataDescription()", + "WebPaneNavigatorMetadataDescription": "WebPaneNavigatorMetadataDescription()", + "ActiveDocuments": "ActiveDocuments", + "ActivePanes": "ActivePanes", + "InitialIndex": "InitialIndex", + "PreviousActivePaneIndex": "PreviousActivePaneIndex", + "Type": "Type" + } + } + ], + "WebPaneNavigatorMetadataDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneNavigatorMetadataDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneNavigatorMetadataDescriptionMetadata()": "WebPaneNavigatorMetadataDescriptionMetadata()", + "WebPaneNavigatorMetadataDescriptionMetadata": "WebPaneNavigatorMetadataDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPanePinnedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPanePinnedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPanePinnedEventArgsDescription()": "WebPanePinnedEventArgsDescription()", + "WebPanePinnedEventArgsDescription": "WebPanePinnedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPanePinnedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPanePinnedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPanePinnedEventArgsDescriptionMetadata()": "WebPanePinnedEventArgsDescriptionMetadata()", + "WebPanePinnedEventArgsDescriptionMetadata": "WebPanePinnedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPanePinnedEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPanePinnedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPanePinnedEventArgsDetailDescription()": "WebPanePinnedEventArgsDetailDescription()", + "WebPanePinnedEventArgsDetailDescription": "WebPanePinnedEventArgsDetailDescription()", + "Location": "Location", + "NewValue": "NewValue", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPanePinnedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPanePinnedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPanePinnedEventArgsDetailDescriptionMetadata()": "WebPanePinnedEventArgsDetailDescriptionMetadata()", + "WebPanePinnedEventArgsDetailDescriptionMetadata": "WebPanePinnedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneScrollEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneScrollEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneScrollEventArgsDescription()": "WebPaneScrollEventArgsDescription()", + "WebPaneScrollEventArgsDescription": "WebPaneScrollEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneScrollEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneScrollEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneScrollEventArgsDescriptionMetadata()": "WebPaneScrollEventArgsDescriptionMetadata()", + "WebPaneScrollEventArgsDescriptionMetadata": "WebPaneScrollEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneScrollEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneScrollEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneScrollEventArgsDetailDescription()": "WebPaneScrollEventArgsDetailDescription()", + "WebPaneScrollEventArgsDetailDescription": "WebPaneScrollEventArgsDetailDescription()", + "Pane": "Pane", + "Type": "Type" + } + } + ], + "WebPaneScrollEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPaneScrollEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneScrollEventArgsDetailDescriptionMetadata()": "WebPaneScrollEventArgsDetailDescriptionMetadata()", + "WebPaneScrollEventArgsDetailDescriptionMetadata": "WebPaneScrollEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinColumnCancellableEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinColumnCancellableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnCancellableEventArgsDescription()": "WebPinColumnCancellableEventArgsDescription()", + "WebPinColumnCancellableEventArgsDescription": "WebPinColumnCancellableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPinColumnCancellableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinColumnCancellableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnCancellableEventArgsDescriptionMetadata()": "WebPinColumnCancellableEventArgsDescriptionMetadata()", + "WebPinColumnCancellableEventArgsDescriptionMetadata": "WebPinColumnCancellableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinColumnCancellableEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinColumnCancellableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnCancellableEventArgsDetailDescription()": "WebPinColumnCancellableEventArgsDetailDescription()", + "WebPinColumnCancellableEventArgsDetailDescription": "WebPinColumnCancellableEventArgsDetailDescription()", + "Column": "Column", + "InsertAtIndex": "InsertAtIndex", + "IsPinned": "IsPinned", + "Type": "Type" + } + } + ], + "WebPinColumnCancellableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinColumnCancellableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnCancellableEventArgsDetailDescriptionMetadata()": "WebPinColumnCancellableEventArgsDetailDescriptionMetadata()", + "WebPinColumnCancellableEventArgsDetailDescriptionMetadata": "WebPinColumnCancellableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinColumnEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinColumnEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnEventArgsDescription()": "WebPinColumnEventArgsDescription()", + "WebPinColumnEventArgsDescription": "WebPinColumnEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPinColumnEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinColumnEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnEventArgsDescriptionMetadata()": "WebPinColumnEventArgsDescriptionMetadata()", + "WebPinColumnEventArgsDescriptionMetadata": "WebPinColumnEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinColumnEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinColumnEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnEventArgsDetailDescription()": "WebPinColumnEventArgsDetailDescription()", + "WebPinColumnEventArgsDetailDescription": "WebPinColumnEventArgsDetailDescription()", + "Column": "Column", + "InsertAtIndex": "InsertAtIndex", + "IsPinned": "IsPinned", + "Type": "Type" + } + } + ], + "WebPinColumnEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinColumnEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnEventArgsDetailDescriptionMetadata()": "WebPinColumnEventArgsDetailDescriptionMetadata()", + "WebPinColumnEventArgsDetailDescriptionMetadata": "WebPinColumnEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinningConfigDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinningConfigDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinningConfigDescription()": "WebPinningConfigDescription()", + "WebPinningConfigDescription": "WebPinningConfigDescription()", + "Columns": "Columns", + "Rows": "Rows", + "Type": "Type" + } + } + ], + "WebPinningConfigDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinningConfigDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinningConfigDescriptionMetadata()": "WebPinningConfigDescriptionMetadata()", + "WebPinningConfigDescriptionMetadata": "WebPinningConfigDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinRowEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinRowEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinRowEventArgsDescription()": "WebPinRowEventArgsDescription()", + "WebPinRowEventArgsDescription": "WebPinRowEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPinRowEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinRowEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinRowEventArgsDescriptionMetadata()": "WebPinRowEventArgsDescriptionMetadata()", + "WebPinRowEventArgsDescriptionMetadata": "WebPinRowEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinRowEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinRowEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinRowEventArgsDetailDescription()": "WebPinRowEventArgsDetailDescription()", + "WebPinRowEventArgsDetailDescription": "WebPinRowEventArgsDetailDescription()", + "Cancel": "Cancel", + "InsertAtIndex": "InsertAtIndex", + "IsPinned": "IsPinned", + "Owner": "Owner", + "Row": "Row", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type" + } + } + ], + "WebPinRowEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPinRowEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinRowEventArgsDetailDescriptionMetadata()": "WebPinRowEventArgsDetailDescriptionMetadata()", + "WebPinRowEventArgsDetailDescriptionMetadata": "WebPinRowEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotAggregatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotAggregatorDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotAggregatorDescription()": "WebPivotAggregatorDescription()", + "WebPivotAggregatorDescription": "WebPivotAggregatorDescription()", + "AggregatorName": "AggregatorName", + "AggregatorRef": "AggregatorRef", + "Key": "Key", + "Label": "Label", + "Type": "Type" + } + } + ], + "WebPivotAggregatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotAggregatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotAggregatorDescriptionMetadata()": "WebPivotAggregatorDescriptionMetadata()", + "WebPivotAggregatorDescriptionMetadata": "WebPivotAggregatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotConfigurationChangedEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotConfigurationChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationChangedEventArgsDescription()": "WebPivotConfigurationChangedEventArgsDescription()", + "WebPivotConfigurationChangedEventArgsDescription": "WebPivotConfigurationChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPivotConfigurationChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotConfigurationChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationChangedEventArgsDescriptionMetadata()": "WebPivotConfigurationChangedEventArgsDescriptionMetadata()", + "WebPivotConfigurationChangedEventArgsDescriptionMetadata": "WebPivotConfigurationChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotConfigurationChangedEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotConfigurationChangedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationChangedEventArgsDetailDescription()": "WebPivotConfigurationChangedEventArgsDetailDescription()", + "WebPivotConfigurationChangedEventArgsDetailDescription": "WebPivotConfigurationChangedEventArgsDetailDescription()", + "PivotConfiguration": "PivotConfiguration", + "Type": "Type" + } + } + ], + "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata()": "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata()", + "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata": "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotConfigurationDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotConfigurationDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationDescription()": "WebPivotConfigurationDescription()", + "WebPivotConfigurationDescription": "WebPivotConfigurationDescription()", + "ColumnStrategy": "ColumnStrategy", + "Columns": "Columns", + "Filters": "Filters", + "PivotKeys": "PivotKeys", + "RowStrategy": "RowStrategy", + "Rows": "Rows", + "Type": "Type", + "Values": "Values" + } + } + ], + "WebPivotConfigurationDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotConfigurationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationDescriptionMetadata()": "WebPivotConfigurationDescriptionMetadata()", + "WebPivotConfigurationDescriptionMetadata": "WebPivotConfigurationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDataSelectorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDataSelectorDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDataSelectorDescription()": "WebPivotDataSelectorDescription()", + "WebPivotDataSelectorDescription": "WebPivotDataSelectorDescription()", + "ColumnsExpanded": "ColumnsExpanded", + "ColumnsExpandedChangeRef": "ColumnsExpandedChangeRef", + "FiltersExpanded": "FiltersExpanded", + "FiltersExpandedChangeRef": "FiltersExpandedChangeRef", + "GridRef": "GridRef", + "RowsExpanded": "RowsExpanded", + "RowsExpandedChangeRef": "RowsExpandedChangeRef", + "Type": "Type", + "ValuesExpanded": "ValuesExpanded", + "ValuesExpandedChangeRef": "ValuesExpandedChangeRef" + } + } + ], + "WebPivotDataSelectorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDataSelectorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDataSelectorDescriptionMetadata()": "WebPivotDataSelectorDescriptionMetadata()", + "WebPivotDataSelectorDescriptionMetadata": "WebPivotDataSelectorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDataSelectorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDataSelectorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPivotDataSelectorDescriptionModule()": "WebPivotDataSelectorDescriptionModule()", + "WebPivotDataSelectorDescriptionModule": "WebPivotDataSelectorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDateDimensionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDateDimensionDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionDescription()": "WebPivotDateDimensionDescription()", + "WebPivotDateDimensionDescription": "WebPivotDateDimensionDescription()", + "BaseDimension": "BaseDimension", + "Options": "Options", + "ResourceStringsRef": "ResourceStringsRef", + "Type": "Type" + } + } + ], + "WebPivotDateDimensionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDateDimensionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionDescriptionMetadata()": "WebPivotDateDimensionDescriptionMetadata()", + "WebPivotDateDimensionDescriptionMetadata": "WebPivotDateDimensionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDateDimensionDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDateDimensionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionDescriptionModule()": "WebPivotDateDimensionDescriptionModule()", + "WebPivotDateDimensionDescriptionModule": "WebPivotDateDimensionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDateDimensionOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDateDimensionOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionOptionsDescription()": "WebPivotDateDimensionOptionsDescription()", + "WebPivotDateDimensionOptionsDescription": "WebPivotDateDimensionOptionsDescription()", + "FullDate": "FullDate", + "Months": "Months", + "Quarters": "Quarters", + "Total": "Total", + "Type": "Type", + "Years": "Years" + } + } + ], + "WebPivotDateDimensionOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDateDimensionOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionOptionsDescriptionMetadata()": "WebPivotDateDimensionOptionsDescriptionMetadata()", + "WebPivotDateDimensionOptionsDescriptionMetadata": "WebPivotDateDimensionOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDimensionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDimensionDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionDescription()": "WebPivotDimensionDescription()", + "WebPivotDimensionDescription": "WebPivotDimensionDescription()", + "ChildLevel": "ChildLevel", + "DataType": "DataType", + "DisplayName": "DisplayName", + "Enabled": "Enabled", + "Filter": "Filter", + "HorizontalSummary": "HorizontalSummary", + "Level": "Level", + "MemberFunctionRef": "MemberFunctionRef", + "MemberName": "MemberName", + "SortDirection": "SortDirection", + "Sortable": "Sortable", + "Type": "Type", + "Width": "Width" + } + } + ], + "WebPivotDimensionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDimensionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionDescriptionMetadata()": "WebPivotDimensionDescriptionMetadata()", + "WebPivotDimensionDescriptionMetadata": "WebPivotDimensionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDimensionDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDimensionDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionDetailDescription()": "WebPivotDimensionDetailDescription()", + "WebPivotDimensionDetailDescription": "WebPivotDimensionDetailDescription()", + "ChildLevel": "ChildLevel", + "DataType": "DataType", + "DisplayName": "DisplayName", + "Enabled": "Enabled", + "Filter": "Filter", + "HorizontalSummary": "HorizontalSummary", + "Level": "Level", + "MemberFunctionRef": "MemberFunctionRef", + "MemberName": "MemberName", + "SortDirection": "SortDirection", + "Sortable": "Sortable", + "Type": "Type", + "Width": "Width" + } + } + ], + "WebPivotDimensionDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDimensionDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionDetailDescriptionMetadata()": "WebPivotDimensionDetailDescriptionMetadata()", + "WebPivotDimensionDetailDescriptionMetadata": "WebPivotDimensionDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDimensionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDimensionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionEventArgsDescription()": "WebPivotDimensionEventArgsDescription()", + "WebPivotDimensionEventArgsDescription": "WebPivotDimensionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPivotDimensionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDimensionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionEventArgsDescriptionMetadata()": "WebPivotDimensionEventArgsDescriptionMetadata()", + "WebPivotDimensionEventArgsDescriptionMetadata": "WebPivotDimensionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDimensionStrategyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDimensionStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionStrategyDescription()": "WebPivotDimensionStrategyDescription()", + "WebPivotDimensionStrategyDescription": "WebPivotDimensionStrategyDescription()", + "Type": "Type" + } + } + ], + "WebPivotDimensionStrategyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotDimensionStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionStrategyDescriptionMetadata()": "WebPivotDimensionStrategyDescriptionMetadata()", + "WebPivotDimensionStrategyDescriptionMetadata": "WebPivotDimensionStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridColumnDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridColumnDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridColumnDescription()": "WebPivotGridColumnDescription()", + "WebPivotGridColumnDescription": "WebPivotGridColumnDescription()", + "Dimensions": "Dimensions", + "Field": "Field", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebPivotGridColumnDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridColumnDescriptionMetadata()": "WebPivotGridColumnDescriptionMetadata()", + "WebPivotGridColumnDescriptionMetadata": "WebPivotGridColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridDescription()": "WebPivotGridDescription()", + "WebPivotGridDescription": "WebPivotGridDescription()", + "AutoGenerateConfig": "AutoGenerateConfig", + "DataRef": "DataRef", + "DefaultExpandState": "DefaultExpandState", + "DimensionInitRef": "DimensionInitRef", + "DimensionsChangeRef": "DimensionsChangeRef", + "DimensionsSortingExpressionsChangeRef": "DimensionsSortingExpressionsChangeRef", + "EmptyPivotGridTemplateRef": "EmptyPivotGridTemplateRef", + "PivotConfiguration": "PivotConfiguration", + "PivotConfigurationChangeRef": "PivotConfigurationChangeRef", + "PivotUI": "PivotUI", + "RowDimensionHeaderTemplateRef": "RowDimensionHeaderTemplateRef", + "SuperCompactMode": "SuperCompactMode", + "Type": "Type", + "ValueChipTemplateRef": "ValueChipTemplateRef", + "ValueInitRef": "ValueInitRef", + "ValuesChangeRef": "ValuesChangeRef" + } + } + ], + "WebPivotGridDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridDescriptionMetadata()": "WebPivotGridDescriptionMetadata()", + "WebPivotGridDescriptionMetadata": "WebPivotGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridDescriptionModule()": "WebPivotGridDescriptionModule()", + "WebPivotGridDescriptionModule": "WebPivotGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridRecordDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridRecordDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridRecordDescription()": "WebPivotGridRecordDescription()", + "WebPivotGridRecordDescription": "WebPivotGridRecordDescription()", + "DataIndex": "DataIndex", + "Dimensions": "Dimensions", + "Level": "Level", + "RecordsRef": "RecordsRef", + "TotalRecordDimensionName": "TotalRecordDimensionName", + "Type": "Type" + } + } + ], + "WebPivotGridRecordDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridRecordDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridRecordDescriptionMetadata()": "WebPivotGridRecordDescriptionMetadata()", + "WebPivotGridRecordDescriptionMetadata": "WebPivotGridRecordDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridValueTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridValueTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridValueTemplateContextDescription()": "WebPivotGridValueTemplateContextDescription()", + "WebPivotGridValueTemplateContextDescription": "WebPivotGridValueTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebPivotGridValueTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotGridValueTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridValueTemplateContextDescriptionMetadata()": "WebPivotGridValueTemplateContextDescriptionMetadata()", + "WebPivotGridValueTemplateContextDescriptionMetadata": "WebPivotGridValueTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotKeysDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotKeysDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotKeysDescription()": "WebPivotKeysDescription()", + "WebPivotKeysDescription": "WebPivotKeysDescription()", + "Aggregations": "Aggregations", + "Children": "Children", + "ColumnDimensionSeparator": "ColumnDimensionSeparator", + "Level": "Level", + "Records": "Records", + "RowDimensionSeparator": "RowDimensionSeparator", + "Type": "Type" + } + } + ], + "WebPivotKeysDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotKeysDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotKeysDescriptionMetadata()": "WebPivotKeysDescriptionMetadata()", + "WebPivotKeysDescriptionMetadata": "WebPivotKeysDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotUISettingsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotUISettingsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotUISettingsDescription()": "WebPivotUISettingsDescription()", + "WebPivotUISettingsDescription": "WebPivotUISettingsDescription()", + "HorizontalSummariesPosition": "HorizontalSummariesPosition", + "RowLayout": "RowLayout", + "ShowConfiguration": "ShowConfiguration", + "ShowRowHeaders": "ShowRowHeaders", + "Type": "Type" + } + } + ], + "WebPivotUISettingsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotUISettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotUISettingsDescriptionMetadata()": "WebPivotUISettingsDescriptionMetadata()", + "WebPivotUISettingsDescriptionMetadata": "WebPivotUISettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotValueDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotValueDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueDescription()": "WebPivotValueDescription()", + "WebPivotValueDescription": "WebPivotValueDescription()", + "Aggregate": "Aggregate", + "AggregateList": "AggregateList", + "DataType": "DataType", + "DisplayName": "DisplayName", + "Enabled": "Enabled", + "FormatterRef": "FormatterRef", + "Member": "Member", + "Styles": "Styles", + "Type": "Type" + } + } + ], + "WebPivotValueDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueDescriptionMetadata()": "WebPivotValueDescriptionMetadata()", + "WebPivotValueDescriptionMetadata": "WebPivotValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotValueDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotValueDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueDetailDescription()": "WebPivotValueDetailDescription()", + "WebPivotValueDetailDescription": "WebPivotValueDetailDescription()", + "Aggregate": "Aggregate", + "AggregateList": "AggregateList", + "DataType": "DataType", + "DisplayName": "DisplayName", + "Enabled": "Enabled", + "FormatterRef": "FormatterRef", + "Member": "Member", + "Styles": "Styles", + "Type": "Type" + } + } + ], + "WebPivotValueDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotValueDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueDetailDescriptionMetadata()": "WebPivotValueDetailDescriptionMetadata()", + "WebPivotValueDetailDescriptionMetadata": "WebPivotValueDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotValueEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueEventArgsDescription()": "WebPivotValueEventArgsDescription()", + "WebPivotValueEventArgsDescription": "WebPivotValueEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPivotValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPivotValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueEventArgsDescriptionMetadata()": "WebPivotValueEventArgsDescriptionMetadata()", + "WebPivotValueEventArgsDescriptionMetadata": "WebPivotValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPositionSettingsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPositionSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPositionSettingsDescription()": "WebPositionSettingsDescription()", + "WebPositionSettingsDescription": "WebPositionSettingsDescription()", + "HorizontalDirection": "HorizontalDirection", + "HorizontalStartPoint": "HorizontalStartPoint", + "MinSize": "MinSize", + "Offset": "Offset", + "Type": "Type", + "VerticalDirection": "VerticalDirection", + "VerticalStartPoint": "VerticalStartPoint" + } + } + ], + "WebPositionSettingsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPositionSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPositionSettingsDescriptionMetadata()": "WebPositionSettingsDescriptionMetadata()", + "WebPositionSettingsDescriptionMetadata": "WebPositionSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPositionStrategyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPositionStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebPositionStrategyDescription()": "WebPositionStrategyDescription()", + "WebPositionStrategyDescription": "WebPositionStrategyDescription()", + "Settings": "Settings", + "Type": "Type" + } + } + ], + "WebPositionStrategyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebPositionStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPositionStrategyDescriptionMetadata()": "WebPositionStrategyDescriptionMetadata()", + "WebPositionStrategyDescriptionMetadata": "WebPositionStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebProgressBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebProgressBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebProgressBaseDescription()": "WebProgressBaseDescription()", + "WebProgressBaseDescription": "WebProgressBaseDescription()", + "AnimationDuration": "AnimationDuration", + "HideLabel": "HideLabel", + "Indeterminate": "Indeterminate", + "LabelFormat": "LabelFormat", + "Max": "Max", + "Type": "Type", + "Value": "Value", + "Variant": "Variant" + } + } + ], + "WebProgressBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebProgressBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebProgressBaseDescriptionMetadata()": "WebProgressBaseDescriptionMetadata()", + "WebProgressBaseDescriptionMetadata": "WebProgressBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebQueryBuilderDescription", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderDescription()": "WebQueryBuilderDescription()", + "WebQueryBuilderDescription": "WebQueryBuilderDescription()", + "DisableEntityChange": "DisableEntityChange", + "DisableReturnFieldsChange": "DisableReturnFieldsChange", + "Entities": "Entities", + "ExpressionTree": "ExpressionTree", + "ExpressionTreeChangeRef": "ExpressionTreeChangeRef", + "Locale": "Locale", + "QueryBuilderHeaderCollection": "QueryBuilderHeaderCollection", + "SearchValueTemplateRef": "SearchValueTemplateRef", + "ShowEntityChangeDialog": "ShowEntityChangeDialog", + "Type": "Type" + } + } + ], + "WebQueryBuilderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebQueryBuilderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderDescriptionMetadata()": "WebQueryBuilderDescriptionMetadata()", + "WebQueryBuilderDescriptionMetadata": "WebQueryBuilderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebQueryBuilderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderDescriptionModule()": "WebQueryBuilderDescriptionModule()", + "WebQueryBuilderDescriptionModule": "WebQueryBuilderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebQueryBuilderHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderHeaderDescription()": "WebQueryBuilderHeaderDescription()", + "WebQueryBuilderHeaderDescription": "WebQueryBuilderHeaderDescription()", + "ShowLegend": "ShowLegend", + "Title": "Title", + "Type": "Type" + } + } + ], + "WebQueryBuilderHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebQueryBuilderHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderHeaderDescriptionMetadata()": "WebQueryBuilderHeaderDescriptionMetadata()", + "WebQueryBuilderHeaderDescriptionMetadata": "WebQueryBuilderHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebQueryBuilderHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderHeaderDescriptionModule()": "WebQueryBuilderHeaderDescriptionModule()", + "WebQueryBuilderHeaderDescriptionModule": "WebQueryBuilderHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderSearchValueContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebQueryBuilderSearchValueContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderSearchValueContextDescription()": "WebQueryBuilderSearchValueContextDescription()", + "WebQueryBuilderSearchValueContextDescription": "WebQueryBuilderSearchValueContextDescription()", + "Implicit": "Implicit", + "SelectedCondition": "SelectedCondition", + "SelectedField": "SelectedField", + "Type": "Type" + } + } + ], + "WebQueryBuilderSearchValueContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebQueryBuilderSearchValueContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderSearchValueContextDescriptionMetadata()": "WebQueryBuilderSearchValueContextDescriptionMetadata()", + "WebQueryBuilderSearchValueContextDescriptionMetadata": "WebQueryBuilderSearchValueContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRadioChangeEventArgsDescription()": "WebRadioChangeEventArgsDescription()", + "WebRadioChangeEventArgsDescription": "WebRadioChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRadioChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRadioChangeEventArgsDescriptionMetadata()": "WebRadioChangeEventArgsDescriptionMetadata()", + "WebRadioChangeEventArgsDescriptionMetadata": "WebRadioChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRadioChangeEventArgsDetailDescription()": "WebRadioChangeEventArgsDetailDescription()", + "WebRadioChangeEventArgsDetailDescription": "WebRadioChangeEventArgsDetailDescription()", + "Checked": "Checked", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebRadioChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRadioChangeEventArgsDetailDescriptionMetadata()": "WebRadioChangeEventArgsDetailDescriptionMetadata()", + "WebRadioChangeEventArgsDetailDescriptionMetadata": "WebRadioChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioDescription", + "k": "class", + "s": "classes", + "m": { + "WebRadioDescription()": "WebRadioDescription()", + "WebRadioDescription": "WebRadioDescription()", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "Checked": "Checked", + "DefaultChecked": "DefaultChecked", + "Disabled": "Disabled", + "FocusRef": "FocusRef", + "Invalid": "Invalid", + "LabelPosition": "LabelPosition", + "Required": "Required", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebRadioDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRadioDescriptionMetadata()": "WebRadioDescriptionMetadata()", + "WebRadioDescriptionMetadata": "WebRadioDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRadioDescriptionModule()": "WebRadioDescriptionModule()", + "WebRadioDescriptionModule": "WebRadioDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebRadioGroupDescription()": "WebRadioGroupDescription()", + "WebRadioGroupDescription": "WebRadioGroupDescription()", + "Alignment": "Alignment", + "ChangeRef": "ChangeRef", + "DefaultValue": "DefaultValue", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebRadioGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRadioGroupDescriptionMetadata()": "WebRadioGroupDescriptionMetadata()", + "WebRadioGroupDescriptionMetadata": "WebRadioGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRadioGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRadioGroupDescriptionModule()": "WebRadioGroupDescriptionModule()", + "WebRadioGroupDescriptionModule": "WebRadioGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRangeSliderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRangeSliderDescription", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderDescription()": "WebRangeSliderDescription()", + "WebRangeSliderDescription": "WebRangeSliderDescription()", + "ChangeRef": "ChangeRef", + "InputRef": "InputRef", + "Lower": "Lower", + "ThumbLabelLower": "ThumbLabelLower", + "ThumbLabelUpper": "ThumbLabelUpper", + "Type": "Type", + "Upper": "Upper" + } + } + ], + "WebRangeSliderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRangeSliderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderDescriptionMetadata()": "WebRangeSliderDescriptionMetadata()", + "WebRangeSliderDescriptionMetadata": "WebRangeSliderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRangeSliderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRangeSliderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderDescriptionModule()": "WebRangeSliderDescriptionModule()", + "WebRangeSliderDescriptionModule": "WebRangeSliderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRangeSliderValueDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRangeSliderValueDescription", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderValueDescription()": "WebRangeSliderValueDescription()", + "WebRangeSliderValueDescription": "WebRangeSliderValueDescription()", + "Lower": "Lower", + "Type": "Type", + "Upper": "Upper" + } + } + ], + "WebRangeSliderValueDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRangeSliderValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderValueDescriptionMetadata()": "WebRangeSliderValueDescriptionMetadata()", + "WebRangeSliderValueDescriptionMetadata": "WebRangeSliderValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRangeSliderValueEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRangeSliderValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderValueEventArgsDescription()": "WebRangeSliderValueEventArgsDescription()", + "WebRangeSliderValueEventArgsDescription": "WebRangeSliderValueEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRangeSliderValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRangeSliderValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderValueEventArgsDescriptionMetadata()": "WebRangeSliderValueEventArgsDescriptionMetadata()", + "WebRangeSliderValueEventArgsDescriptionMetadata": "WebRangeSliderValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRatingDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRatingDescription", + "k": "class", + "s": "classes", + "m": { + "WebRatingDescription()": "WebRatingDescription()", + "WebRatingDescription": "WebRatingDescription()", + "AllowReset": "AllowReset", + "ChangeRef": "ChangeRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "HoverPreview": "HoverPreview", + "HoverRef": "HoverRef", + "Invalid": "Invalid", + "Label": "Label", + "Max": "Max", + "ReadOnly": "ReadOnly", + "Single": "Single", + "Step": "Step", + "Type": "Type", + "Value": "Value", + "ValueFormat": "ValueFormat" + } + } + ], + "WebRatingDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRatingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRatingDescriptionMetadata()": "WebRatingDescriptionMetadata()", + "WebRatingDescriptionMetadata": "WebRatingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRatingDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRatingDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRatingDescriptionModule()": "WebRatingDescriptionModule()", + "WebRatingDescriptionModule": "WebRatingDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRatingSymbolDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRatingSymbolDescription", + "k": "class", + "s": "classes", + "m": { + "WebRatingSymbolDescription()": "WebRatingSymbolDescription()", + "WebRatingSymbolDescription": "WebRatingSymbolDescription()", + "Type": "Type" + } + } + ], + "WebRatingSymbolDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRatingSymbolDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRatingSymbolDescriptionMetadata()": "WebRatingSymbolDescriptionMetadata()", + "WebRatingSymbolDescriptionMetadata": "WebRatingSymbolDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRatingSymbolDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRatingSymbolDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRatingSymbolDescriptionModule()": "WebRatingSymbolDescriptionModule()", + "WebRatingSymbolDescriptionModule": "WebRatingSymbolDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRippleDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRippleDescription", + "k": "class", + "s": "classes", + "m": { + "WebRippleDescription()": "WebRippleDescription()", + "WebRippleDescription": "WebRippleDescription()", + "Type": "Type" + } + } + ], + "WebRippleDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRippleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRippleDescriptionMetadata()": "WebRippleDescriptionMetadata()", + "WebRippleDescriptionMetadata": "WebRippleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRippleDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRippleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRippleDescriptionModule()": "WebRippleDescriptionModule()", + "WebRippleDescriptionModule": "WebRippleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDataCancelableEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDataCancelableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDataCancelableEventArgsDescription()": "WebRowDataCancelableEventArgsDescription()", + "WebRowDataCancelableEventArgsDescription": "WebRowDataCancelableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowDataCancelableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDataCancelableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDataCancelableEventArgsDescriptionMetadata()": "WebRowDataCancelableEventArgsDescriptionMetadata()", + "WebRowDataCancelableEventArgsDescriptionMetadata": "WebRowDataCancelableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDataCancelableEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDataCancelableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDataCancelableEventArgsDetailDescription()": "WebRowDataCancelableEventArgsDetailDescription()", + "WebRowDataCancelableEventArgsDetailDescription": "WebRowDataCancelableEventArgsDetailDescription()", + "CellID": "CellID", + "Column": "Column", + "Data": "Data", + "IsAddRow": "IsAddRow", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Owner": "Owner", + "PrimaryKey": "PrimaryKey", + "RowData": "RowData", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type", + "Valid": "Valid" + } + } + ], + "WebRowDataCancelableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDataCancelableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDataCancelableEventArgsDetailDescriptionMetadata()": "WebRowDataCancelableEventArgsDetailDescriptionMetadata()", + "WebRowDataCancelableEventArgsDetailDescriptionMetadata": "WebRowDataCancelableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDataEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDataEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDataEventArgsDescription()": "WebRowDataEventArgsDescription()", + "WebRowDataEventArgsDescription": "WebRowDataEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowDataEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDataEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDataEventArgsDescriptionMetadata()": "WebRowDataEventArgsDescriptionMetadata()", + "WebRowDataEventArgsDescriptionMetadata": "WebRowDataEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDataEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDataEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDataEventArgsDetailDescription()": "WebRowDataEventArgsDetailDescription()", + "WebRowDataEventArgsDetailDescription": "WebRowDataEventArgsDetailDescription()", + "Data": "Data", + "PrimaryKey": "PrimaryKey", + "RowData": "RowData", + "RowKey": "RowKey", + "Type": "Type" + } + } + ], + "WebRowDataEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDataEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDataEventArgsDetailDescriptionMetadata()": "WebRowDataEventArgsDetailDescriptionMetadata()", + "WebRowDataEventArgsDetailDescriptionMetadata": "WebRowDataEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDirectiveDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDirectiveDescription()": "WebRowDirectiveDescription()", + "WebRowDirectiveDescription": "WebRowDirectiveDescription()", + "Data": "Data", + "Disabled": "Disabled", + "Expanded": "Expanded", + "Index": "Index", + "Pinned": "Pinned", + "Type": "Type" + } + } + ], + "WebRowDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDirectiveDescriptionMetadata()": "WebRowDirectiveDescriptionMetadata()", + "WebRowDirectiveDescriptionMetadata": "WebRowDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDragEndEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDragEndEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDragEndEventArgsDescription()": "WebRowDragEndEventArgsDescription()", + "WebRowDragEndEventArgsDescription": "WebRowDragEndEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowDragEndEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDragEndEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDragEndEventArgsDescriptionMetadata()": "WebRowDragEndEventArgsDescriptionMetadata()", + "WebRowDragEndEventArgsDescriptionMetadata": "WebRowDragEndEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDragEndEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDragEndEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDragEndEventArgsDetailDescription()": "WebRowDragEndEventArgsDetailDescription()", + "WebRowDragEndEventArgsDetailDescription": "WebRowDragEndEventArgsDetailDescription()", + "Animation": "Animation", + "DragData": "DragData", + "DragDirective": "DragDirective", + "Type": "Type" + } + } + ], + "WebRowDragEndEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDragEndEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDragEndEventArgsDetailDescriptionMetadata()": "WebRowDragEndEventArgsDetailDescriptionMetadata()", + "WebRowDragEndEventArgsDetailDescriptionMetadata": "WebRowDragEndEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDragStartEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDragStartEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDragStartEventArgsDescription()": "WebRowDragStartEventArgsDescription()", + "WebRowDragStartEventArgsDescription": "WebRowDragStartEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowDragStartEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDragStartEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDragStartEventArgsDescriptionMetadata()": "WebRowDragStartEventArgsDescriptionMetadata()", + "WebRowDragStartEventArgsDescriptionMetadata": "WebRowDragStartEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDragStartEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDragStartEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDragStartEventArgsDetailDescription()": "WebRowDragStartEventArgsDetailDescription()", + "WebRowDragStartEventArgsDetailDescription": "WebRowDragStartEventArgsDetailDescription()", + "DragData": "DragData", + "DragDirective": "DragDirective", + "Owner": "Owner", + "Type": "Type" + } + } + ], + "WebRowDragStartEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowDragStartEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDragStartEventArgsDetailDescriptionMetadata()": "WebRowDragStartEventArgsDetailDescriptionMetadata()", + "WebRowDragStartEventArgsDetailDescriptionMetadata": "WebRowDragStartEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowExportingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowExportingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowExportingEventArgsDescription()": "WebRowExportingEventArgsDescription()", + "WebRowExportingEventArgsDescription": "WebRowExportingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowExportingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowExportingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowExportingEventArgsDescriptionMetadata()": "WebRowExportingEventArgsDescriptionMetadata()", + "WebRowExportingEventArgsDescriptionMetadata": "WebRowExportingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowExportingEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowExportingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowExportingEventArgsDetailDescription()": "WebRowExportingEventArgsDetailDescription()", + "WebRowExportingEventArgsDetailDescription": "WebRowExportingEventArgsDetailDescription()", + "Cancel": "Cancel", + "RowData": "RowData", + "RowIndex": "RowIndex", + "Type": "Type" + } + } + ], + "WebRowExportingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowExportingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowExportingEventArgsDetailDescriptionMetadata()": "WebRowExportingEventArgsDetailDescriptionMetadata()", + "WebRowExportingEventArgsDetailDescriptionMetadata": "WebRowExportingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowIslandBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowIslandBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandBaseDescription()": "WebRowIslandBaseDescription()", + "WebRowIslandBaseDescription": "WebRowIslandBaseDescription()", + "ExpandChildren": "ExpandChildren", + "GridCreatedRef": "GridCreatedRef", + "GridInitializedRef": "GridInitializedRef", + "Type": "Type" + } + } + ], + "WebRowIslandBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowIslandBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandBaseDescriptionMetadata()": "WebRowIslandBaseDescriptionMetadata()", + "WebRowIslandBaseDescriptionMetadata": "WebRowIslandBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowIslandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowIslandDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandDescription()": "WebRowIslandDescription()", + "WebRowIslandDescription": "WebRowIslandDescription()", + "ActionStripComponents": "ActionStripComponents", + "ActiveNodeChangeRef": "ActiveNodeChangeRef", + "AddRowEmptyTemplateRef": "AddRowEmptyTemplateRef", + "AdvancedFilteringExpressionsTree": "AdvancedFilteringExpressionsTree", + "AdvancedFilteringExpressionsTreeChangeRef": "AdvancedFilteringExpressionsTreeChangeRef", + "AllowAdvancedFiltering": "AllowAdvancedFiltering", + "AllowFiltering": "AllowFiltering", + "AutoGenerate": "AutoGenerate", + "AutoGenerateExclude": "AutoGenerateExclude", + "BatchEditing": "BatchEditing", + "CellClickRef": "CellClickRef", + "CellEditDoneRef": "CellEditDoneRef", + "CellEditEnterRef": "CellEditEnterRef", + "CellEditExitRef": "CellEditExitRef", + "CellEditRef": "CellEditRef", + "CellMergeMode": "CellMergeMode", + "CellSelection": "CellSelection", + "ChildDataKey": "ChildDataKey", + "ChildLayoutList": "ChildLayoutList", + "ChildrenResolvedRef": "ChildrenResolvedRef", + "ClipboardOptions": "ClipboardOptions", + "ColumnInitRef": "ColumnInitRef", + "ColumnList": "ColumnList", + "ColumnMovingEndRef": "ColumnMovingEndRef", + "ColumnMovingRef": "ColumnMovingRef", + "ColumnMovingStartRef": "ColumnMovingStartRef", + "ColumnPinRef": "ColumnPinRef", + "ColumnPinnedRef": "ColumnPinnedRef", + "ColumnResizedRef": "ColumnResizedRef", + "ColumnSelection": "ColumnSelection", + "ColumnSelectionChangingRef": "ColumnSelectionChangingRef", + "ColumnVisibilityChangedRef": "ColumnVisibilityChangedRef", + "ColumnVisibilityChangingRef": "ColumnVisibilityChangingRef", + "ColumnWidth": "ColumnWidth", + "ColumnsAutogeneratedRef": "ColumnsAutogeneratedRef", + "ContextMenuRef": "ContextMenuRef", + "DataChangedRef": "DataChangedRef", + "DataChangingRef": "DataChangingRef", + "DataCloneStrategy": "DataCloneStrategy", + "DataPreLoadRef": "DataPreLoadRef", + "DoubleClickRef": "DoubleClickRef", + "DragGhostCustomTemplateRef": "DragGhostCustomTemplateRef", + "DragIndicatorIconTemplateRef": "DragIndicatorIconTemplateRef", + "EmptyFilteredGridMessage": "EmptyFilteredGridMessage", + "EmptyGridMessage": "EmptyGridMessage", + "EmptyGridTemplateRef": "EmptyGridTemplateRef", + "ExcelStyleHeaderIconTemplateRef": "ExcelStyleHeaderIconTemplateRef", + "ExpandChildren": "ExpandChildren", + "ExpansionStates": "ExpansionStates", + "ExpansionStatesChangeRef": "ExpansionStatesChangeRef", + "FilterMode": "FilterMode", + "FilterStrategy": "FilterStrategy", + "FilteringDoneRef": "FilteringDoneRef", + "FilteringExpressionsTree": "FilteringExpressionsTree", + "FilteringExpressionsTreeChangeRef": "FilteringExpressionsTreeChangeRef", + "FilteringLogic": "FilteringLogic", + "FilteringRef": "FilteringRef", + "FormGroupCreatedRef": "FormGroupCreatedRef", + "GridCopyRef": "GridCopyRef", + "GridCreatedRef": "GridCreatedRef", + "GridInitializedRef": "GridInitializedRef", + "GridKeydownRef": "GridKeydownRef", + "GridScrollRef": "GridScrollRef", + "HasChildrenKey": "HasChildrenKey", + "HeadSelectorTemplateRef": "HeadSelectorTemplateRef", + "HeaderCollapsedIndicatorTemplateRef": "HeaderCollapsedIndicatorTemplateRef", + "HeaderExpandedIndicatorTemplateRef": "HeaderExpandedIndicatorTemplateRef", + "Height": "Height", + "HideRowSelectors": "HideRowSelectors", + "IsLoading": "IsLoading", + "LoadingGridTemplateRef": "LoadingGridTemplateRef", + "Locale": "Locale", + "Moving": "Moving", + "PaginationComponents": "PaginationComponents", + "PagingMode": "PagingMode", + "Pinning": "Pinning", + "PrimaryKey": "PrimaryKey", + "RangeSelectedRef": "RangeSelectedRef", + "RenderedRef": "RenderedRef", + "ResourceStringsRef": "ResourceStringsRef", + "RowAddRef": "RowAddRef", + "RowAddTextTemplateRef": "RowAddTextTemplateRef", + "RowAddedRef": "RowAddedRef", + "RowClassesRef": "RowClassesRef", + "RowClickRef": "RowClickRef", + "RowCollapsedIndicatorTemplateRef": "RowCollapsedIndicatorTemplateRef", + "RowDeleteRef": "RowDeleteRef", + "RowDeletedRef": "RowDeletedRef", + "RowDragEndRef": "RowDragEndRef", + "RowDragStartRef": "RowDragStartRef", + "RowDraggable": "RowDraggable", + "RowEditActionsTemplateRef": "RowEditActionsTemplateRef", + "RowEditDoneRef": "RowEditDoneRef", + "RowEditEnterRef": "RowEditEnterRef", + "RowEditExitRef": "RowEditExitRef", + "RowEditRef": "RowEditRef", + "RowEditTextTemplateRef": "RowEditTextTemplateRef", + "RowEditable": "RowEditable", + "RowExpandedIndicatorTemplateRef": "RowExpandedIndicatorTemplateRef", + "RowHeight": "RowHeight", + "RowPinnedRef": "RowPinnedRef", + "RowPinningRef": "RowPinningRef", + "RowSelection": "RowSelection", + "RowSelectionChangingRef": "RowSelectionChangingRef", + "RowSelectorTemplateRef": "RowSelectorTemplateRef", + "RowStylesRef": "RowStylesRef", + "RowToggleRef": "RowToggleRef", + "SelectRowOnClick": "SelectRowOnClick", + "SelectedRef": "SelectedRef", + "SelectedRows": "SelectedRows", + "SelectedRowsChangeRef": "SelectedRowsChangeRef", + "ShouldGenerate": "ShouldGenerate", + "ShowExpandAll": "ShowExpandAll", + "ShowSummaryOnCollapse": "ShowSummaryOnCollapse", + "SnackbarDisplayTime": "SnackbarDisplayTime", + "SortAscendingHeaderIconTemplateRef": "SortAscendingHeaderIconTemplateRef", + "SortDescendingHeaderIconTemplateRef": "SortDescendingHeaderIconTemplateRef", + "SortHeaderIconTemplateRef": "SortHeaderIconTemplateRef", + "SortStrategy": "SortStrategy", + "SortingDoneRef": "SortingDoneRef", + "SortingExpressions": "SortingExpressions", + "SortingExpressionsChangeRef": "SortingExpressionsChangeRef", + "SortingOptions": "SortingOptions", + "SortingRef": "SortingRef", + "SummaryCalculationMode": "SummaryCalculationMode", + "SummaryPosition": "SummaryPosition", + "SummaryRowHeight": "SummaryRowHeight", + "Toolbar": "Toolbar", + "ToolbarExportingRef": "ToolbarExportingRef", + "TotalRecords": "TotalRecords", + "Type": "Type", + "ValidationStatusChangeRef": "ValidationStatusChangeRef", + "ValidationTrigger": "ValidationTrigger", + "Width": "Width" + } + } + ], + "WebRowIslandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowIslandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandDescriptionMetadata()": "WebRowIslandDescriptionMetadata()", + "WebRowIslandDescriptionMetadata": "WebRowIslandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowIslandDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowIslandDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandDescriptionModule()": "WebRowIslandDescriptionModule()", + "WebRowIslandDescriptionModule": "WebRowIslandDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowSelectionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowSelectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectionEventArgsDescription()": "WebRowSelectionEventArgsDescription()", + "WebRowSelectionEventArgsDescription": "WebRowSelectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowSelectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowSelectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectionEventArgsDescriptionMetadata()": "WebRowSelectionEventArgsDescriptionMetadata()", + "WebRowSelectionEventArgsDescriptionMetadata": "WebRowSelectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowSelectionEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowSelectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectionEventArgsDetailDescription()": "WebRowSelectionEventArgsDetailDescription()", + "WebRowSelectionEventArgsDetailDescription": "WebRowSelectionEventArgsDetailDescription()", + "AddedRef": "AddedRef", + "AllRowsSelected": "AllRowsSelected", + "NewSelectionRef": "NewSelectionRef", + "OldSelectionRef": "OldSelectionRef", + "Owner": "Owner", + "RemovedRef": "RemovedRef", + "Type": "Type" + } + } + ], + "WebRowSelectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowSelectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectionEventArgsDetailDescriptionMetadata()": "WebRowSelectionEventArgsDetailDescriptionMetadata()", + "WebRowSelectionEventArgsDetailDescriptionMetadata": "WebRowSelectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowSelectorTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowSelectorTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectorTemplateContextDescription()": "WebRowSelectorTemplateContextDescription()", + "WebRowSelectorTemplateContextDescription": "WebRowSelectorTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebRowSelectorTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowSelectorTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectorTemplateContextDescriptionMetadata()": "WebRowSelectorTemplateContextDescriptionMetadata()", + "WebRowSelectorTemplateContextDescriptionMetadata": "WebRowSelectorTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowSelectorTemplateDetailsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowSelectorTemplateDetailsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectorTemplateDetailsDescription()": "WebRowSelectorTemplateDetailsDescription()", + "WebRowSelectorTemplateDetailsDescription": "WebRowSelectorTemplateDetailsDescription()", + "Index": "Index", + "Key": "Key", + "RowID": "RowID", + "Selected": "Selected", + "Type": "Type" + } + } + ], + "WebRowSelectorTemplateDetailsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowSelectorTemplateDetailsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectorTemplateDetailsDescriptionMetadata()": "WebRowSelectorTemplateDetailsDescriptionMetadata()", + "WebRowSelectorTemplateDetailsDescriptionMetadata": "WebRowSelectorTemplateDetailsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowToggleEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowToggleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowToggleEventArgsDescription()": "WebRowToggleEventArgsDescription()", + "WebRowToggleEventArgsDescription": "WebRowToggleEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowToggleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowToggleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowToggleEventArgsDescriptionMetadata()": "WebRowToggleEventArgsDescriptionMetadata()", + "WebRowToggleEventArgsDescriptionMetadata": "WebRowToggleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowToggleEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowToggleEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowToggleEventArgsDetailDescription()": "WebRowToggleEventArgsDetailDescription()", + "WebRowToggleEventArgsDetailDescription": "WebRowToggleEventArgsDetailDescription()", + "Cancel": "Cancel", + "Expanded": "Expanded", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type" + } + } + ], + "WebRowToggleEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowToggleEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowToggleEventArgsDetailDescriptionMetadata()": "WebRowToggleEventArgsDetailDescriptionMetadata()", + "WebRowToggleEventArgsDetailDescriptionMetadata": "WebRowToggleEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowTypeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowTypeDescription()": "WebRowTypeDescription()", + "WebRowTypeDescription": "WebRowTypeDescription()", + "AddRowUI": "AddRowUI", + "Cells": "Cells", + "Children": "Children", + "Data": "Data", + "Deleted": "Deleted", + "Disabled": "Disabled", + "EphemeralKey": "EphemeralKey", + "Expanded": "Expanded", + "Focused": "Focused", + "Grid": "Grid", + "GroupRow": "GroupRow", + "HasChildren": "HasChildren", + "InEditMode": "InEditMode", + "Index": "Index", + "IsGroupByRow": "IsGroupByRow", + "IsSummaryRow": "IsSummaryRow", + "Key": "Key", + "Pinned": "Pinned", + "RowParent": "RowParent", + "Selected": "Selected", + "TreeRow": "TreeRow", + "Type": "Type", + "Validation": "Validation", + "ViewIndex": "ViewIndex" + } + } + ], + "WebRowTypeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebRowTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowTypeDescriptionMetadata()": "WebRowTypeDescriptionMetadata()", + "WebRowTypeDescriptionMetadata": "WebRowTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebScrollConfigDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebScrollConfigDescription", + "k": "class", + "s": "classes", + "m": { + "WebScrollConfigDescription()": "WebScrollConfigDescription()", + "WebScrollConfigDescription": "WebScrollConfigDescription()", + "EdgeThreshold": "EdgeThreshold", + "ScrollSpeed": "ScrollSpeed", + "Type": "Type" + } + } + ], + "WebScrollConfigDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebScrollConfigDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebScrollConfigDescriptionMetadata()": "WebScrollConfigDescriptionMetadata()", + "WebScrollConfigDescriptionMetadata": "WebScrollConfigDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebScrollStrategyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebScrollStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebScrollStrategyDescription()": "WebScrollStrategyDescription()", + "WebScrollStrategyDescription": "WebScrollStrategyDescription()", + "Type": "Type" + } + } + ], + "WebScrollStrategyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebScrollStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebScrollStrategyDescriptionMetadata()": "WebScrollStrategyDescriptionMetadata()", + "WebScrollStrategyDescriptionMetadata": "WebScrollStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSearchInfoDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSearchInfoDescription", + "k": "class", + "s": "classes", + "m": { + "WebSearchInfoDescription()": "WebSearchInfoDescription()", + "WebSearchInfoDescription": "WebSearchInfoDescription()", + "ActiveMatchIndex": "ActiveMatchIndex", + "MatchInfoCacheRef": "MatchInfoCacheRef", + "Type": "Type" + } + } + ], + "WebSearchInfoDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSearchInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSearchInfoDescriptionMetadata()": "WebSearchInfoDescriptionMetadata()", + "WebSearchInfoDescriptionMetadata": "WebSearchInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectDescription()": "WebSelectDescription()", + "WebSelectDescription": "WebSelectDescription()", + "Autofocus": "Autofocus", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "Distance": "Distance", + "FocusRef": "FocusRef", + "Invalid": "Invalid", + "Label": "Label", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "Placement": "Placement", + "Required": "Required", + "ScrollStrategy": "ScrollStrategy", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebSelectDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectDescriptionMetadata()": "WebSelectDescriptionMetadata()", + "WebSelectDescriptionMetadata": "WebSelectDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSelectDescriptionModule()": "WebSelectDescriptionModule()", + "WebSelectDescriptionModule": "WebSelectDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectGroupDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectGroupDescription()": "WebSelectGroupDescription()", + "WebSelectGroupDescription": "WebSelectGroupDescription()", + "Disabled": "Disabled", + "Items": "Items", + "Type": "Type" + } + } + ], + "WebSelectGroupDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectGroupDescriptionMetadata()": "WebSelectGroupDescriptionMetadata()", + "WebSelectGroupDescriptionMetadata": "WebSelectGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectGroupDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSelectGroupDescriptionModule()": "WebSelectGroupDescriptionModule()", + "WebSelectGroupDescriptionModule": "WebSelectGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectHeaderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectHeaderDescription()": "WebSelectHeaderDescription()", + "WebSelectHeaderDescription": "WebSelectHeaderDescription()", + "Type": "Type" + } + } + ], + "WebSelectHeaderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectHeaderDescriptionMetadata()": "WebSelectHeaderDescriptionMetadata()", + "WebSelectHeaderDescriptionMetadata": "WebSelectHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectHeaderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSelectHeaderDescriptionModule()": "WebSelectHeaderDescriptionModule()", + "WebSelectHeaderDescriptionModule": "WebSelectHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectItemComponentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectItemComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemComponentEventArgsDescription()": "WebSelectItemComponentEventArgsDescription()", + "WebSelectItemComponentEventArgsDescription": "WebSelectItemComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebSelectItemComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectItemComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemComponentEventArgsDescriptionMetadata()": "WebSelectItemComponentEventArgsDescriptionMetadata()", + "WebSelectItemComponentEventArgsDescriptionMetadata": "WebSelectItemComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectItemDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemDescription()": "WebSelectItemDescription()", + "WebSelectItemDescription": "WebSelectItemDescription()", + "Type": "Type" + } + } + ], + "WebSelectItemDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemDescriptionMetadata()": "WebSelectItemDescriptionMetadata()", + "WebSelectItemDescriptionMetadata": "WebSelectItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectItemDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSelectItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemDescriptionModule()": "WebSelectItemDescriptionModule()", + "WebSelectItemDescriptionModule": "WebSelectItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSizeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSizeDescription", + "k": "class", + "s": "classes", + "m": { + "WebSizeDescription()": "WebSizeDescription()", + "WebSizeDescription": "WebSizeDescription()", + "Height": "Height", + "Type": "Type", + "Width": "Width" + } + } + ], + "WebSizeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSizeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSizeDescriptionMetadata()": "WebSizeDescriptionMetadata()", + "WebSizeDescriptionMetadata": "WebSizeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebSliderBaseDescription()": "WebSliderBaseDescription()", + "WebSliderBaseDescription": "WebSliderBaseDescription()", + "Disabled": "Disabled", + "DiscreteTrack": "DiscreteTrack", + "HidePrimaryLabels": "HidePrimaryLabels", + "HideSecondaryLabels": "HideSecondaryLabels", + "HideTooltip": "HideTooltip", + "Locale": "Locale", + "LowerBound": "LowerBound", + "Max": "Max", + "Min": "Min", + "PrimaryTicks": "PrimaryTicks", + "SecondaryTicks": "SecondaryTicks", + "Step": "Step", + "TickLabelRotation": "TickLabelRotation", + "TickOrientation": "TickOrientation", + "Type": "Type", + "UpperBound": "UpperBound", + "ValueFormat": "ValueFormat", + "ValueFormatOptions": "ValueFormatOptions" + } + } + ], + "WebSliderBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSliderBaseDescriptionMetadata()": "WebSliderBaseDescriptionMetadata()", + "WebSliderBaseDescriptionMetadata": "WebSliderBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderBaseDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderBaseDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSliderBaseDescriptionModule()": "WebSliderBaseDescriptionModule()", + "WebSliderBaseDescriptionModule": "WebSliderBaseDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderDescription", + "k": "class", + "s": "classes", + "m": { + "WebSliderDescription()": "WebSliderDescription()", + "WebSliderDescription": "WebSliderDescription()", + "ChangeRef": "ChangeRef", + "DefaultValue": "DefaultValue", + "InputRef": "InputRef", + "Invalid": "Invalid", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebSliderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSliderDescriptionMetadata()": "WebSliderDescriptionMetadata()", + "WebSliderDescriptionMetadata": "WebSliderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSliderDescriptionModule()": "WebSliderDescriptionModule()", + "WebSliderDescriptionModule": "WebSliderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderLabelDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderLabelDescription", + "k": "class", + "s": "classes", + "m": { + "WebSliderLabelDescription()": "WebSliderLabelDescription()", + "WebSliderLabelDescription": "WebSliderLabelDescription()", + "Type": "Type" + } + } + ], + "WebSliderLabelDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderLabelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSliderLabelDescriptionMetadata()": "WebSliderLabelDescriptionMetadata()", + "WebSliderLabelDescriptionMetadata": "WebSliderLabelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderLabelDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSliderLabelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSliderLabelDescriptionModule()": "WebSliderLabelDescriptionModule()", + "WebSliderLabelDescriptionModule": "WebSliderLabelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSnackbarDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSnackbarDescription", + "k": "class", + "s": "classes", + "m": { + "WebSnackbarDescription()": "WebSnackbarDescription()", + "WebSnackbarDescription": "WebSnackbarDescription()", + "ActionRef": "ActionRef", + "ActionText": "ActionText", + "Type": "Type" + } + } + ], + "WebSnackbarDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSnackbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSnackbarDescriptionMetadata()": "WebSnackbarDescriptionMetadata()", + "WebSnackbarDescriptionMetadata": "WebSnackbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSnackbarDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSnackbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSnackbarDescriptionModule()": "WebSnackbarDescriptionModule()", + "WebSnackbarDescriptionModule": "WebSnackbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingEventArgsDescription()": "WebSortingEventArgsDescription()", + "WebSortingEventArgsDescription": "WebSortingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebSortingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingEventArgsDescriptionMetadata()": "WebSortingEventArgsDescriptionMetadata()", + "WebSortingEventArgsDescriptionMetadata": "WebSortingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingEventArgsDetailDescription()": "WebSortingEventArgsDetailDescription()", + "WebSortingEventArgsDetailDescription": "WebSortingEventArgsDetailDescription()", + "GroupingExpressions": "GroupingExpressions", + "Owner": "Owner", + "SortingExpressions": "SortingExpressions", + "Type": "Type" + } + } + ], + "WebSortingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingEventArgsDetailDescriptionMetadata()": "WebSortingEventArgsDetailDescriptionMetadata()", + "WebSortingEventArgsDetailDescriptionMetadata": "WebSortingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingExpressionDescription()": "WebSortingExpressionDescription()", + "WebSortingExpressionDescription": "WebSortingExpressionDescription()", + "Dir": "Dir", + "FieldName": "FieldName", + "IgnoreCase": "IgnoreCase", + "Strategy": "Strategy", + "Type": "Type" + } + } + ], + "WebSortingExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingExpressionDescriptionMetadata()": "WebSortingExpressionDescriptionMetadata()", + "WebSortingExpressionDescriptionMetadata": "WebSortingExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingExpressionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingExpressionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingExpressionEventArgsDescription()": "WebSortingExpressionEventArgsDescription()", + "WebSortingExpressionEventArgsDescription": "WebSortingExpressionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebSortingExpressionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingExpressionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingExpressionEventArgsDescriptionMetadata()": "WebSortingExpressionEventArgsDescriptionMetadata()", + "WebSortingExpressionEventArgsDescriptionMetadata": "WebSortingExpressionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingOptionsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingOptionsDescription()": "WebSortingOptionsDescription()", + "WebSortingOptionsDescription": "WebSortingOptionsDescription()", + "Mode": "Mode", + "Type": "Type" + } + } + ], + "WebSortingOptionsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingOptionsDescriptionMetadata()": "WebSortingOptionsDescriptionMetadata()", + "WebSortingOptionsDescriptionMetadata": "WebSortingOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingStrategyDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingStrategyDescription()": "WebSortingStrategyDescription()", + "WebSortingStrategyDescription": "WebSortingStrategyDescription()", + "Type": "Type" + } + } + ], + "WebSortingStrategyDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSortingStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingStrategyDescriptionMetadata()": "WebSortingStrategyDescriptionMetadata()", + "WebSortingStrategyDescriptionMetadata": "WebSortingStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitPaneDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitPaneDescription", + "k": "class", + "s": "classes", + "m": { + "WebSplitPaneDescription()": "WebSplitPaneDescription()", + "WebSplitPaneDescription": "WebSplitPaneDescription()", + "AllowEmpty": "AllowEmpty", + "FloatingHeight": "FloatingHeight", + "FloatingLocation": "FloatingLocation", + "FloatingResizable": "FloatingResizable", + "FloatingWidth": "FloatingWidth", + "Id": "Id", + "IsMaximized": "IsMaximized", + "MinResizeHeight": "MinResizeHeight", + "MinResizeWidth": "MinResizeWidth", + "Orientation": "Orientation", + "PaneType": "PaneType", + "Panes": "Panes", + "Size": "Size", + "Type": "Type", + "UseFixedSize": "UseFixedSize" + } + } + ], + "WebSplitPaneDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitPaneDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSplitPaneDescriptionMetadata()": "WebSplitPaneDescriptionMetadata()", + "WebSplitPaneDescriptionMetadata": "WebSplitPaneDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitPaneDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitPaneDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSplitPaneDescriptionModule()": "WebSplitPaneDescriptionModule()", + "WebSplitPaneDescriptionModule": "WebSplitPaneDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitterDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitterDescription", + "k": "class", + "s": "classes", + "m": { + "WebSplitterDescription()": "WebSplitterDescription()", + "WebSplitterDescription": "WebSplitterDescription()", + "DisableCollapse": "DisableCollapse", + "DisableResize": "DisableResize", + "EndMaxSize": "EndMaxSize", + "EndMinSize": "EndMinSize", + "EndSize": "EndSize", + "HideCollapseButtons": "HideCollapseButtons", + "HideDragHandle": "HideDragHandle", + "Orientation": "Orientation", + "ResizeEndRef": "ResizeEndRef", + "ResizeStartRef": "ResizeStartRef", + "ResizingRef": "ResizingRef", + "StartMaxSize": "StartMaxSize", + "StartMinSize": "StartMinSize", + "StartSize": "StartSize", + "Type": "Type" + } + } + ], + "WebSplitterDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSplitterDescriptionMetadata()": "WebSplitterDescriptionMetadata()", + "WebSplitterDescriptionMetadata": "WebSplitterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitterDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitterDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSplitterDescriptionModule()": "WebSplitterDescriptionModule()", + "WebSplitterDescriptionModule": "WebSplitterDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitterResizeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitterResizeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSplitterResizeEventArgsDescription()": "WebSplitterResizeEventArgsDescription()", + "WebSplitterResizeEventArgsDescription": "WebSplitterResizeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebSplitterResizeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitterResizeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSplitterResizeEventArgsDescriptionMetadata()": "WebSplitterResizeEventArgsDescriptionMetadata()", + "WebSplitterResizeEventArgsDescriptionMetadata": "WebSplitterResizeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitterResizeEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitterResizeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebSplitterResizeEventArgsDetailDescription()": "WebSplitterResizeEventArgsDetailDescription()", + "WebSplitterResizeEventArgsDetailDescription": "WebSplitterResizeEventArgsDetailDescription()", + "Delta": "Delta", + "EndPanelSize": "EndPanelSize", + "StartPanelSize": "StartPanelSize", + "Type": "Type" + } + } + ], + "WebSplitterResizeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSplitterResizeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSplitterResizeEventArgsDetailDescriptionMetadata()": "WebSplitterResizeEventArgsDetailDescriptionMetadata()", + "WebSplitterResizeEventArgsDetailDescriptionMetadata": "WebSplitterResizeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStepDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebStepDescription", + "k": "class", + "s": "classes", + "m": { + "WebStepDescription()": "WebStepDescription()", + "WebStepDescription": "WebStepDescription()", + "Active": "Active", + "Complete": "Complete", + "Disabled": "Disabled", + "Invalid": "Invalid", + "Optional": "Optional", + "Type": "Type" + } + } + ], + "WebStepDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebStepDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebStepDescriptionMetadata()": "WebStepDescriptionMetadata()", + "WebStepDescriptionMetadata": "WebStepDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStepDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebStepDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebStepDescriptionModule()": "WebStepDescriptionModule()", + "WebStepDescriptionModule": "WebStepDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStepperDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebStepperDescription", + "k": "class", + "s": "classes", + "m": { + "WebStepperDescription()": "WebStepperDescription()", + "WebStepperDescription": "WebStepperDescription()", + "ActiveStepChangedRef": "ActiveStepChangedRef", + "ActiveStepChangingRef": "ActiveStepChangingRef", + "AnimationDuration": "AnimationDuration", + "ContentTop": "ContentTop", + "HorizontalAnimation": "HorizontalAnimation", + "Linear": "Linear", + "Orientation": "Orientation", + "StepType": "StepType", + "TitlePosition": "TitlePosition", + "Type": "Type", + "VerticalAnimation": "VerticalAnimation" + } + } + ], + "WebStepperDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebStepperDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebStepperDescriptionMetadata()": "WebStepperDescriptionMetadata()", + "WebStepperDescriptionMetadata": "WebStepperDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStepperDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebStepperDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebStepperDescriptionModule()": "WebStepperDescriptionModule()", + "WebStepperDescriptionModule": "WebStepperDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStringFilteringOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebStringFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebStringFilteringOperandDescription()": "WebStringFilteringOperandDescription()", + "WebStringFilteringOperandDescription": "WebStringFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebStringFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebStringFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebStringFilteringOperandDescriptionMetadata()": "WebStringFilteringOperandDescriptionMetadata()", + "WebStringFilteringOperandDescriptionMetadata": "WebStringFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSummaryExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSummaryExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebSummaryExpressionDescription()": "WebSummaryExpressionDescription()", + "WebSummaryExpressionDescription": "WebSummaryExpressionDescription()", + "CustomSummary": "CustomSummary", + "FieldName": "FieldName", + "Type": "Type" + } + } + ], + "WebSummaryExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSummaryExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSummaryExpressionDescriptionMetadata()": "WebSummaryExpressionDescriptionMetadata()", + "WebSummaryExpressionDescriptionMetadata": "WebSummaryExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSummaryOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSummaryOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebSummaryOperandDescription()": "WebSummaryOperandDescription()", + "WebSummaryOperandDescription": "WebSummaryOperandDescription()", + "Type": "Type" + } + } + ], + "WebSummaryOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSummaryOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSummaryOperandDescriptionMetadata()": "WebSummaryOperandDescriptionMetadata()", + "WebSummaryOperandDescriptionMetadata": "WebSummaryOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSummaryResultDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSummaryResultDescription", + "k": "class", + "s": "classes", + "m": { + "WebSummaryResultDescription()": "WebSummaryResultDescription()", + "WebSummaryResultDescription": "WebSummaryResultDescription()", + "DefaultFormatting": "DefaultFormatting", + "Key": "Key", + "Label": "Label", + "Result": "Result", + "Type": "Type" + } + } + ], + "WebSummaryResultDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSummaryResultDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSummaryResultDescriptionMetadata()": "WebSummaryResultDescriptionMetadata()", + "WebSummaryResultDescriptionMetadata": "WebSummaryResultDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSummaryTemplateContextDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSummaryTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebSummaryTemplateContextDescription()": "WebSummaryTemplateContextDescription()", + "WebSummaryTemplateContextDescription": "WebSummaryTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebSummaryTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSummaryTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSummaryTemplateContextDescriptionMetadata()": "WebSummaryTemplateContextDescriptionMetadata()", + "WebSummaryTemplateContextDescriptionMetadata": "WebSummaryTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSwitchDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSwitchDescription", + "k": "class", + "s": "classes", + "m": { + "WebSwitchDescription()": "WebSwitchDescription()", + "WebSwitchDescription": "WebSwitchDescription()", + "Type": "Type" + } + } + ], + "WebSwitchDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSwitchDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSwitchDescriptionMetadata()": "WebSwitchDescriptionMetadata()", + "WebSwitchDescriptionMetadata": "WebSwitchDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSwitchDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebSwitchDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSwitchDescriptionModule()": "WebSwitchDescriptionModule()", + "WebSwitchDescriptionModule": "WebSwitchDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabComponentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabComponentEventArgsDescription()": "WebTabComponentEventArgsDescription()", + "WebTabComponentEventArgsDescription": "WebTabComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTabComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabComponentEventArgsDescriptionMetadata()": "WebTabComponentEventArgsDescriptionMetadata()", + "WebTabComponentEventArgsDescriptionMetadata": "WebTabComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabDescription()": "WebTabDescription()", + "WebTabDescription": "WebTabDescription()", + "Disabled": "Disabled", + "Label": "Label", + "Selected": "Selected", + "Type": "Type" + } + } + ], + "WebTabDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabDescriptionMetadata()": "WebTabDescriptionMetadata()", + "WebTabDescriptionMetadata": "WebTabDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTabDescriptionModule()": "WebTabDescriptionModule()", + "WebTabDescriptionModule": "WebTabDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabGroupPaneDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabGroupPaneDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabGroupPaneDescription()": "WebTabGroupPaneDescription()", + "WebTabGroupPaneDescription": "WebTabGroupPaneDescription()", + "AllowEmpty": "AllowEmpty", + "Id": "Id", + "IsMaximized": "IsMaximized", + "MinResizeHeight": "MinResizeHeight", + "MinResizeWidth": "MinResizeWidth", + "PaneType": "PaneType", + "Panes": "Panes", + "SelectedIndex": "SelectedIndex", + "Size": "Size", + "Type": "Type" + } + } + ], + "WebTabGroupPaneDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabGroupPaneDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabGroupPaneDescriptionMetadata()": "WebTabGroupPaneDescriptionMetadata()", + "WebTabGroupPaneDescriptionMetadata": "WebTabGroupPaneDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabGroupPaneDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabGroupPaneDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTabGroupPaneDescriptionModule()": "WebTabGroupPaneDescriptionModule()", + "WebTabGroupPaneDescriptionModule": "WebTabGroupPaneDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabHeaderConnectionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabHeaderConnectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderConnectionEventArgsDescription()": "WebTabHeaderConnectionEventArgsDescription()", + "WebTabHeaderConnectionEventArgsDescription": "WebTabHeaderConnectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTabHeaderConnectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabHeaderConnectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderConnectionEventArgsDescriptionMetadata()": "WebTabHeaderConnectionEventArgsDescriptionMetadata()", + "WebTabHeaderConnectionEventArgsDescriptionMetadata": "WebTabHeaderConnectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabHeaderConnectionEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabHeaderConnectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderConnectionEventArgsDetailDescription()": "WebTabHeaderConnectionEventArgsDetailDescription()", + "WebTabHeaderConnectionEventArgsDetailDescription": "WebTabHeaderConnectionEventArgsDetailDescription()", + "Element": "Element", + "Pane": "Pane", + "Type": "Type" + } + } + ], + "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabHeaderConnectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata()": "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata()", + "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata": "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabHeaderElementDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabHeaderElementDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderElementDescription()": "WebTabHeaderElementDescription()", + "WebTabHeaderElementDescription": "WebTabHeaderElementDescription()", + "DragService": "DragService", + "Type": "Type" + } + } + ], + "WebTabHeaderElementDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabHeaderElementDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderElementDescriptionMetadata()": "WebTabHeaderElementDescriptionMetadata()", + "WebTabHeaderElementDescriptionMetadata": "WebTabHeaderElementDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabHeaderElementDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabHeaderElementDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderElementDescriptionModule()": "WebTabHeaderElementDescriptionModule()", + "WebTabHeaderElementDescriptionModule": "WebTabHeaderElementDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabsDescription()": "WebTabsDescription()", + "WebTabsDescription": "WebTabsDescription()", + "Activation": "Activation", + "Alignment": "Alignment", + "ChangeRef": "ChangeRef", + "TabsCollection": "TabsCollection", + "Type": "Type" + } + } + ], + "WebTabsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabsDescriptionMetadata()": "WebTabsDescriptionMetadata()", + "WebTabsDescriptionMetadata": "WebTabsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabsDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTabsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTabsDescriptionModule()": "WebTabsDescriptionModule()", + "WebTabsDescriptionModule": "WebTabsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTextareaDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTextareaDescription", + "k": "class", + "s": "classes", + "m": { + "WebTextareaDescription()": "WebTextareaDescription()", + "WebTextareaDescription": "WebTextareaDescription()", + "Autocapitalize": "Autocapitalize", + "Autocomplete": "Autocomplete", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "FocusRef": "FocusRef", + "InputMode": "InputMode", + "InputRef": "InputRef", + "Invalid": "Invalid", + "Label": "Label", + "MaxLength": "MaxLength", + "MinLength": "MinLength", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "ReadOnly": "ReadOnly", + "Required": "Required", + "Resize": "Resize", + "Rows": "Rows", + "Spellcheck": "Spellcheck", + "Type": "Type", + "ValidateOnly": "ValidateOnly", + "Value": "Value", + "Wrap": "Wrap" + } + } + ], + "WebTextareaDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTextareaDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTextareaDescriptionMetadata()": "WebTextareaDescriptionMetadata()", + "WebTextareaDescriptionMetadata": "WebTextareaDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTextareaDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTextareaDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTextareaDescriptionModule()": "WebTextareaDescriptionModule()", + "WebTextareaDescriptionModule": "WebTextareaDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebThemeProviderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebThemeProviderDescription", + "k": "class", + "s": "classes", + "m": { + "WebThemeProviderDescription()": "WebThemeProviderDescription()", + "WebThemeProviderDescription": "WebThemeProviderDescription()", + "Theme": "Theme", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebThemeProviderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebThemeProviderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebThemeProviderDescriptionMetadata()": "WebThemeProviderDescriptionMetadata()", + "WebThemeProviderDescriptionMetadata": "WebThemeProviderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebThemeProviderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebThemeProviderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebThemeProviderDescriptionModule()": "WebThemeProviderDescriptionModule()", + "WebThemeProviderDescriptionModule": "WebThemeProviderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileChangeStateEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileChangeStateEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileChangeStateEventArgsDescription()": "WebTileChangeStateEventArgsDescription()", + "WebTileChangeStateEventArgsDescription": "WebTileChangeStateEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTileChangeStateEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileChangeStateEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileChangeStateEventArgsDescriptionMetadata()": "WebTileChangeStateEventArgsDescriptionMetadata()", + "WebTileChangeStateEventArgsDescriptionMetadata": "WebTileChangeStateEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileChangeStateEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileChangeStateEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileChangeStateEventArgsDetailDescription()": "WebTileChangeStateEventArgsDetailDescription()", + "WebTileChangeStateEventArgsDetailDescription": "WebTileChangeStateEventArgsDetailDescription()", + "State": "State", + "Tile": "Tile", + "Type": "Type" + } + } + ], + "WebTileChangeStateEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileChangeStateEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileChangeStateEventArgsDetailDescriptionMetadata()": "WebTileChangeStateEventArgsDetailDescriptionMetadata()", + "WebTileChangeStateEventArgsDetailDescriptionMetadata": "WebTileChangeStateEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileComponentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileComponentEventArgsDescription()": "WebTileComponentEventArgsDescription()", + "WebTileComponentEventArgsDescription": "WebTileComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTileComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileComponentEventArgsDescriptionMetadata()": "WebTileComponentEventArgsDescriptionMetadata()", + "WebTileComponentEventArgsDescriptionMetadata": "WebTileComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileDescription()": "WebTileDescription()", + "WebTileDescription": "WebTileDescription()", + "ColSpan": "ColSpan", + "ColStart": "ColStart", + "DisableFullscreen": "DisableFullscreen", + "DisableMaximize": "DisableMaximize", + "DisableResize": "DisableResize", + "Maximized": "Maximized", + "Position": "Position", + "RowSpan": "RowSpan", + "RowStart": "RowStart", + "TileDragCancelRef": "TileDragCancelRef", + "TileDragEndRef": "TileDragEndRef", + "TileDragStartRef": "TileDragStartRef", + "TileFullscreenRef": "TileFullscreenRef", + "TileMaximizeRef": "TileMaximizeRef", + "TileResizeCancelRef": "TileResizeCancelRef", + "TileResizeEndRef": "TileResizeEndRef", + "TileResizeStartRef": "TileResizeStartRef", + "Type": "Type" + } + } + ], + "WebTileDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileDescriptionMetadata()": "WebTileDescriptionMetadata()", + "WebTileDescriptionMetadata": "WebTileDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTileDescriptionModule()": "WebTileDescriptionModule()", + "WebTileDescriptionModule": "WebTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileManagerDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileManagerDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileManagerDescription()": "WebTileManagerDescription()", + "WebTileManagerDescription": "WebTileManagerDescription()", + "ColumnCount": "ColumnCount", + "DragMode": "DragMode", + "Gap": "Gap", + "MinColumnWidth": "MinColumnWidth", + "MinRowHeight": "MinRowHeight", + "ResizeMode": "ResizeMode", + "TileDragCancelRef": "TileDragCancelRef", + "TileDragEndRef": "TileDragEndRef", + "TileDragStartRef": "TileDragStartRef", + "TileFullscreenRef": "TileFullscreenRef", + "TileMaximizeRef": "TileMaximizeRef", + "TileResizeCancelRef": "TileResizeCancelRef", + "TileResizeEndRef": "TileResizeEndRef", + "TileResizeStartRef": "TileResizeStartRef", + "Type": "Type" + } + } + ], + "WebTileManagerDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileManagerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileManagerDescriptionMetadata()": "WebTileManagerDescriptionMetadata()", + "WebTileManagerDescriptionMetadata": "WebTileManagerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileManagerDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTileManagerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTileManagerDescriptionModule()": "WebTileManagerDescriptionModule()", + "WebTileManagerDescriptionModule": "WebTileManagerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTimeFilteringOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTimeFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebTimeFilteringOperandDescription()": "WebTimeFilteringOperandDescription()", + "WebTimeFilteringOperandDescription": "WebTimeFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebTimeFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTimeFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTimeFilteringOperandDescriptionMetadata()": "WebTimeFilteringOperandDescriptionMetadata()", + "WebTimeFilteringOperandDescriptionMetadata": "WebTimeFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTimeSummaryOperandDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTimeSummaryOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebTimeSummaryOperandDescription()": "WebTimeSummaryOperandDescription()", + "WebTimeSummaryOperandDescription": "WebTimeSummaryOperandDescription()", + "Type": "Type" + } + } + ], + "WebTimeSummaryOperandDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTimeSummaryOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTimeSummaryOperandDescriptionMetadata()": "WebTimeSummaryOperandDescriptionMetadata()", + "WebTimeSummaryOperandDescriptionMetadata": "WebTimeSummaryOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToastDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToastDescription", + "k": "class", + "s": "classes", + "m": { + "WebToastDescription()": "WebToastDescription()", + "WebToastDescription": "WebToastDescription()", + "Type": "Type" + } + } + ], + "WebToastDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToastDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToastDescriptionMetadata()": "WebToastDescriptionMetadata()", + "WebToastDescriptionMetadata": "WebToastDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToastDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToastDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebToastDescriptionModule()": "WebToastDescriptionModule()", + "WebToastDescriptionModule": "WebToastDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleButtonDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleButtonDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleButtonDescription()": "WebToggleButtonDescription()", + "WebToggleButtonDescription": "WebToggleButtonDescription()", + "Disabled": "Disabled", + "Selected": "Selected", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebToggleButtonDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleButtonDescriptionMetadata()": "WebToggleButtonDescriptionMetadata()", + "WebToggleButtonDescriptionMetadata": "WebToggleButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleButtonDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebToggleButtonDescriptionModule()": "WebToggleButtonDescriptionModule()", + "WebToggleButtonDescriptionModule": "WebToggleButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleViewCancelableEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleViewCancelableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewCancelableEventArgsDescription()": "WebToggleViewCancelableEventArgsDescription()", + "WebToggleViewCancelableEventArgsDescription": "WebToggleViewCancelableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebToggleViewCancelableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleViewCancelableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewCancelableEventArgsDescriptionMetadata()": "WebToggleViewCancelableEventArgsDescriptionMetadata()", + "WebToggleViewCancelableEventArgsDescriptionMetadata": "WebToggleViewCancelableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleViewCancelableEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleViewCancelableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewCancelableEventArgsDetailDescription()": "WebToggleViewCancelableEventArgsDetailDescription()", + "WebToggleViewCancelableEventArgsDetailDescription": "WebToggleViewCancelableEventArgsDetailDescription()", + "Id": "Id", + "Type": "Type" + } + } + ], + "WebToggleViewCancelableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleViewCancelableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewCancelableEventArgsDetailDescriptionMetadata()": "WebToggleViewCancelableEventArgsDetailDescriptionMetadata()", + "WebToggleViewCancelableEventArgsDetailDescriptionMetadata": "WebToggleViewCancelableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleViewEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleViewEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewEventArgsDescription()": "WebToggleViewEventArgsDescription()", + "WebToggleViewEventArgsDescription": "WebToggleViewEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebToggleViewEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleViewEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewEventArgsDescriptionMetadata()": "WebToggleViewEventArgsDescriptionMetadata()", + "WebToggleViewEventArgsDescriptionMetadata": "WebToggleViewEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleViewEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleViewEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewEventArgsDetailDescription()": "WebToggleViewEventArgsDetailDescription()", + "WebToggleViewEventArgsDetailDescription": "WebToggleViewEventArgsDetailDescription()", + "Id": "Id", + "Type": "Type" + } + } + ], + "WebToggleViewEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebToggleViewEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewEventArgsDetailDescriptionMetadata()": "WebToggleViewEventArgsDetailDescriptionMetadata()", + "WebToggleViewEventArgsDetailDescriptionMetadata": "WebToggleViewEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTooltipDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTooltipDescription", + "k": "class", + "s": "classes", + "m": { + "WebTooltipDescription()": "WebTooltipDescription()", + "WebTooltipDescription": "WebTooltipDescription()", + "Anchor": "Anchor", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "HideDelay": "HideDelay", + "HideTriggers": "HideTriggers", + "Message": "Message", + "Offset": "Offset", + "Open": "Open", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Placement": "Placement", + "ShowDelay": "ShowDelay", + "ShowTriggers": "ShowTriggers", + "Sticky": "Sticky", + "Type": "Type", + "WithArrow": "WithArrow" + } + } + ], + "WebTooltipDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTooltipDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTooltipDescriptionMetadata()": "WebTooltipDescriptionMetadata()", + "WebTooltipDescriptionMetadata": "WebTooltipDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTooltipDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTooltipDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTooltipDescriptionModule()": "WebTooltipDescriptionModule()", + "WebTooltipDescriptionModule": "WebTooltipDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTransactionServiceDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTransactionServiceDescription", + "k": "class", + "s": "classes", + "m": { + "WebTransactionServiceDescription()": "WebTransactionServiceDescription()", + "WebTransactionServiceDescription": "WebTransactionServiceDescription()", + "Type": "Type" + } + } + ], + "WebTransactionServiceDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTransactionServiceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTransactionServiceDescriptionMetadata()": "WebTransactionServiceDescriptionMetadata()", + "WebTransactionServiceDescriptionMetadata": "WebTransactionServiceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeDescription()": "WebTreeDescription()", + "WebTreeDescription": "WebTreeDescription()", + "ActiveItemRef": "ActiveItemRef", + "ItemCollapsedRef": "ItemCollapsedRef", + "ItemCollapsingRef": "ItemCollapsingRef", + "ItemExpandedRef": "ItemExpandedRef", + "ItemExpandingRef": "ItemExpandingRef", + "Selection": "Selection", + "SelectionChangedRef": "SelectionChangedRef", + "SingleBranchExpand": "SingleBranchExpand", + "ToggleNodeOnClick": "ToggleNodeOnClick", + "Type": "Type" + } + } + ], + "WebTreeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeDescriptionMetadata()": "WebTreeDescriptionMetadata()", + "WebTreeDescriptionMetadata": "WebTreeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTreeDescriptionModule()": "WebTreeDescriptionModule()", + "WebTreeDescriptionModule": "WebTreeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeGridBaseDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeGridBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridBaseDescription()": "WebTreeGridBaseDescription()", + "WebTreeGridBaseDescription": "WebTreeGridBaseDescription()", + "CascadeOnDelete": "CascadeOnDelete", + "ChildDataKey": "ChildDataKey", + "DataRef": "DataRef", + "ExpansionDepth": "ExpansionDepth", + "ForeignKey": "ForeignKey", + "HasChildrenKey": "HasChildrenKey", + "Id": "Id", + "ProcessedRootRecords": "ProcessedRootRecords", + "RootRecords": "RootRecords", + "RowLoadingIndicatorTemplateRef": "RowLoadingIndicatorTemplateRef", + "Type": "Type" + } + } + ], + "WebTreeGridBaseDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeGridBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridBaseDescriptionMetadata()": "WebTreeGridBaseDescriptionMetadata()", + "WebTreeGridBaseDescriptionMetadata": "WebTreeGridBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeGridDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeGridDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridDescription()": "WebTreeGridDescription()", + "WebTreeGridDescription": "WebTreeGridDescription()", + "ActionStripComponents": "ActionStripComponents", + "ChildrenResolvedRef": "ChildrenResolvedRef", + "ColumnsAutogeneratedRef": "ColumnsAutogeneratedRef", + "Type": "Type" + } + } + ], + "WebTreeGridDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridDescriptionMetadata()": "WebTreeGridDescriptionMetadata()", + "WebTreeGridDescriptionMetadata": "WebTreeGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeGridDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridDescriptionModule()": "WebTreeGridDescriptionModule()", + "WebTreeGridDescriptionModule": "WebTreeGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeGridRecordDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeGridRecordDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridRecordDescription()": "WebTreeGridRecordDescription()", + "WebTreeGridRecordDescription": "WebTreeGridRecordDescription()", + "Children": "Children", + "Data": "Data", + "Expanded": "Expanded", + "IsFilteredOutParent": "IsFilteredOutParent", + "Key": "Key", + "Level": "Level", + "RecordParent": "RecordParent", + "Type": "Type" + } + } + ], + "WebTreeGridRecordDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeGridRecordDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridRecordDescriptionMetadata()": "WebTreeGridRecordDescriptionMetadata()", + "WebTreeGridRecordDescriptionMetadata": "WebTreeGridRecordDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeItemComponentEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeItemComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemComponentEventArgsDescription()": "WebTreeItemComponentEventArgsDescription()", + "WebTreeItemComponentEventArgsDescription": "WebTreeItemComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTreeItemComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeItemComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemComponentEventArgsDescriptionMetadata()": "WebTreeItemComponentEventArgsDescriptionMetadata()", + "WebTreeItemComponentEventArgsDescriptionMetadata": "WebTreeItemComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeItemDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemDescription()": "WebTreeItemDescription()", + "WebTreeItemDescription": "WebTreeItemDescription()", + "Active": "Active", + "Disabled": "Disabled", + "Expanded": "Expanded", + "Label": "Label", + "Level": "Level", + "Loading": "Loading", + "Parent": "Parent", + "Selected": "Selected", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebTreeItemDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemDescriptionMetadata()": "WebTreeItemDescriptionMetadata()", + "WebTreeItemDescriptionMetadata": "WebTreeItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeItemDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemDescriptionModule()": "WebTreeItemDescriptionModule()", + "WebTreeItemDescriptionModule": "WebTreeItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeSelectionEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeSelectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeSelectionEventArgsDescription()": "WebTreeSelectionEventArgsDescription()", + "WebTreeSelectionEventArgsDescription": "WebTreeSelectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTreeSelectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeSelectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeSelectionEventArgsDescriptionMetadata()": "WebTreeSelectionEventArgsDescriptionMetadata()", + "WebTreeSelectionEventArgsDescriptionMetadata": "WebTreeSelectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeSelectionEventArgsDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeSelectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeSelectionEventArgsDetailDescription()": "WebTreeSelectionEventArgsDetailDescription()", + "WebTreeSelectionEventArgsDetailDescription": "WebTreeSelectionEventArgsDetailDescription()", + "NewSelection": "NewSelection", + "Type": "Type" + } + } + ], + "WebTreeSelectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebTreeSelectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeSelectionEventArgsDetailDescriptionMetadata()": "WebTreeSelectionEventArgsDetailDescriptionMetadata()", + "WebTreeSelectionEventArgsDetailDescriptionMetadata": "WebTreeSelectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebValidationErrorsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebValidationErrorsDescription", + "k": "class", + "s": "classes", + "m": { + "WebValidationErrorsDescription()": "WebValidationErrorsDescription()", + "WebValidationErrorsDescription": "WebValidationErrorsDescription()", + "Type": "Type" + } + } + ], + "WebValidationErrorsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebValidationErrorsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebValidationErrorsDescriptionMetadata()": "WebValidationErrorsDescriptionMetadata()", + "WebValidationErrorsDescriptionMetadata": "WebValidationErrorsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebValuesChangeDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebValuesChangeDescription", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeDescription()": "WebValuesChangeDescription()", + "WebValuesChangeDescription": "WebValuesChangeDescription()", + "Type": "Type", + "Values": "Values" + } + } + ], + "WebValuesChangeDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebValuesChangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeDescriptionMetadata()": "WebValuesChangeDescriptionMetadata()", + "WebValuesChangeDescriptionMetadata": "WebValuesChangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebValuesChangeDetailDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebValuesChangeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeDetailDescription()": "WebValuesChangeDetailDescription()", + "WebValuesChangeDetailDescription": "WebValuesChangeDetailDescription()", + "Type": "Type", + "Values": "Values" + } + } + ], + "WebValuesChangeDetailDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebValuesChangeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeDetailDescriptionMetadata()": "WebValuesChangeDetailDescriptionMetadata()", + "WebValuesChangeDetailDescriptionMetadata": "WebValuesChangeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebValuesChangeEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebValuesChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeEventArgsDescription()": "WebValuesChangeEventArgsDescription()", + "WebValuesChangeEventArgsDescription": "WebValuesChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebValuesChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WebValuesChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeEventArgsDescriptionMetadata()": "WebValuesChangeEventArgsDescriptionMetadata()", + "WebValuesChangeEventArgsDescriptionMetadata": "WebValuesChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WeightedCloseIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/WeightedCloseIndicator", + "k": "class", + "s": "classes", + "m": { + "WeightedCloseIndicator()": "WeightedCloseIndicator()", + "WeightedCloseIndicator": "WeightedCloseIndicator()" + } + } + ], + "WeightedCloseIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WeightedCloseIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "WeightedCloseIndicatorDescription()": "WeightedCloseIndicatorDescription()", + "WeightedCloseIndicatorDescription": "WeightedCloseIndicatorDescription()", + "Type": "Type" + } + } + ], + "WeightedCloseIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WeightedCloseIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WeightedCloseIndicatorDescriptionMetadata()": "WeightedCloseIndicatorDescriptionMetadata()", + "WeightedCloseIndicatorDescriptionMetadata": "WeightedCloseIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WeightedCloseIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WeightedCloseIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WeightedCloseIndicatorDescriptionModule()": "WeightedCloseIndicatorDescriptionModule()", + "WeightedCloseIndicatorDescriptionModule": "WeightedCloseIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WidgetIncludeDependsAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/WidgetIncludeDependsAttribute", + "k": "class", + "s": "classes", + "m": { + "WidgetIncludeDependsAttribute(string)": "WidgetIncludeDependsAttribute(string)", + "WidgetIncludeDependsAttribute": "WidgetIncludeDependsAttribute(string)", + "Name": "Name" + } + } + ], + "WidgetModuleExclusionParentAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/WidgetModuleExclusionParentAttribute", + "k": "class", + "s": "classes", + "m": { + "WidgetModuleExclusionParentAttribute(string)": "WidgetModuleExclusionParentAttribute(string)", + "WidgetModuleExclusionParentAttribute": "WidgetModuleExclusionParentAttribute(string)", + "Name": "Name" + } + } + ], + "WilliamsPercentRIndicator": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/WilliamsPercentRIndicator", + "k": "class", + "s": "classes", + "m": { + "WilliamsPercentRIndicator()": "WilliamsPercentRIndicator()", + "WilliamsPercentRIndicator": "WilliamsPercentRIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "WilliamsPercentRIndicatorDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WilliamsPercentRIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "WilliamsPercentRIndicatorDescription()": "WilliamsPercentRIndicatorDescription()", + "WilliamsPercentRIndicatorDescription": "WilliamsPercentRIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "WilliamsPercentRIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WilliamsPercentRIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WilliamsPercentRIndicatorDescriptionMetadata()": "WilliamsPercentRIndicatorDescriptionMetadata()", + "WilliamsPercentRIndicatorDescriptionMetadata": "WilliamsPercentRIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WilliamsPercentRIndicatorDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WilliamsPercentRIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WilliamsPercentRIndicatorDescriptionModule()": "WilliamsPercentRIndicatorDescriptionModule()", + "WilliamsPercentRIndicatorDescriptionModule": "WilliamsPercentRIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WindowResponse": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/WindowResponse", + "k": "enum", + "s": "enums" + } + ], + "WinMDPropertyToObjectTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/WinMDPropertyToObjectTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "WinMDPropertyToObjectTypeAttribute()": "WinMDPropertyToObjectTypeAttribute()", + "WinMDPropertyToObjectTypeAttribute": "WinMDPropertyToObjectTypeAttribute()" + } + } + ], + "WinMDTypeAttribute": [ + { + "p": "Infragistics.Uno.Core", + "u": "/api/uno-platform/Infragistics.Uno.Core/latest/classes/WinMDTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "WinMDTypeAttribute()": "WinMDTypeAttribute()", + "WinMDTypeAttribute": "WinMDTypeAttribute()" + } + } + ], + "WinUIDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/WinUIDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIDashboardTileFeature()": "WinUIDashboardTileFeature()", + "WinUIDashboardTileFeature": "WinUIDashboardTileFeature()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WinUIDataChartDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/WinUIDataChartDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIDataChartDashboardTileFeature()": "WinUIDataChartDashboardTileFeature()", + "WinUIDataChartDashboardTileFeature": "WinUIDataChartDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUIDispatcher": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WinUIDispatcher", + "k": "class", + "s": "classes", + "m": { + "WinUIDispatcher()": "WinUIDispatcher()", + "WinUIDispatcher": "WinUIDispatcher()", + "BeginInvoke(Action)": "BeginInvoke(Action)", + "BeginInvoke": "BeginInvoke(Action)" + } + } + ], + "WinUIGeographicMapDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/WinUIGeographicMapDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIGeographicMapDashboardTileFeature()": "WinUIGeographicMapDashboardTileFeature()", + "WinUIGeographicMapDashboardTileFeature": "WinUIGeographicMapDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUILinearGaugeDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/WinUILinearGaugeDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUILinearGaugeDashboardTileFeature()": "WinUILinearGaugeDashboardTileFeature()", + "WinUILinearGaugeDashboardTileFeature": "WinUILinearGaugeDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUIPieChartDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/WinUIPieChartDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIPieChartDashboardTileFeature()": "WinUIPieChartDashboardTileFeature()", + "WinUIPieChartDashboardTileFeature": "WinUIPieChartDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUIRadialGaugeDashboardTileFeature": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/WinUIRadialGaugeDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIRadialGaugeDashboardTileFeature()": "WinUIRadialGaugeDashboardTileFeature()", + "WinUIRadialGaugeDashboardTileFeature": "WinUIRadialGaugeDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUITemplateHelper": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WinUITemplateHelper", + "k": "class", + "s": "classes", + "m": { + "ApplyContentTemplate(Control)": "ApplyContentTemplate(Control)", + "ApplyContentTemplate": "ApplyContentTemplate(Control)", + "PartContentName": "PartContentName" + } + } + ], + "WrapperExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WrapperExpression", + "k": "class", + "s": "classes", + "m": { + "WrapperExpression(FilterExpression)": "WrapperExpression(FilterExpression)", + "WrapperExpression": "WrapperExpression(FilterExpression)", + "WrapperExpression(string)": "WrapperExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "EnsureInnerExpression()": "EnsureInnerExpression()", + "EnsureInnerExpression": "EnsureInnerExpression()", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "Expression": "Expression", + "Factory": "Factory", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()", + "InnerExpression": "InnerExpression", + "IsWrapper": "IsWrapper", + "Precedence": "Precedence", + "PropertyName": "PropertyName", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()" + } + } + ], + "WrapperExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WrapperExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WrapperExpressionDescription()": "WrapperExpressionDescription()", + "WrapperExpressionDescription": "WrapperExpressionDescription()", + "Expression": "Expression", + "InnerExpression": "InnerExpression", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "WrapperExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/WrapperExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WrapperExpressionDescriptionMetadata()": "WrapperExpressionDescriptionMetadata()", + "WrapperExpressionDescriptionMetadata": "WrapperExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "XamBulletGraph": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/XamBulletGraph", + "k": "class", + "s": "classes", + "m": { + "XamBulletGraph()": "XamBulletGraph()", + "XamBulletGraph": "XamBulletGraph()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueDisplayModeProperty": "ActualHighlightValueDisplayModeProperty", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualHighlightValueOpacityProperty": "ActualHighlightValueOpacityProperty", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Animating": "Animating", + "AnimatingProperty": "AnimatingProperty", + "BackingBrush": "BackingBrush", + "BackingBrushProperty": "BackingBrushProperty", + "BackingInnerExtent": "BackingInnerExtent", + "BackingInnerExtentProperty": "BackingInnerExtentProperty", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOuterExtentProperty": "BackingOuterExtentProperty", + "BackingOutline": "BackingOutline", + "BackingOutlineProperty": "BackingOutlineProperty", + "BackingStrokeThickness": "BackingStrokeThickness", + "BackingStrokeThicknessProperty": "BackingStrokeThicknessProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontBrush": "FontBrush", + "FontBrushProperty": "FontBrushProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetValueForPoint(Point)": "GetValueForPoint(Point)", + "GetValueForPoint": "GetValueForPoint(Point)", + "HighlightValue": "HighlightValue", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueDisplayModeProperty": "HighlightValueDisplayModeProperty", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightValueOpacityProperty": "HighlightValueOpacityProperty", + "HighlightValueProperty": "HighlightValueProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "IsScaleInverted": "IsScaleInverted", + "IsScaleInvertedProperty": "IsScaleInvertedProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInterval": "LabelInterval", + "LabelIntervalProperty": "LabelIntervalProperty", + "LabelsPostInitial": "LabelsPostInitial", + "LabelsPostInitialProperty": "LabelsPostInitialProperty", + "LabelsPreTerminal": "LabelsPreTerminal", + "LabelsPreTerminalProperty": "LabelsPreTerminalProperty", + "LabelsVisible": "LabelsVisible", + "LabelsVisibleProperty": "LabelsVisibleProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MergeViewports": "MergeViewports", + "MergeViewportsProperty": "MergeViewportsProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "MinorTickBrush": "MinorTickBrush", + "MinorTickBrushProperty": "MinorTickBrushProperty", + "MinorTickCount": "MinorTickCount", + "MinorTickCountProperty": "MinorTickCountProperty", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickEndExtentProperty": "MinorTickEndExtentProperty", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStartExtentProperty": "MinorTickStartExtentProperty", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "MinorTickStrokeThicknessProperty": "MinorTickStrokeThicknessProperty", + "OnAlignLabel(AlignLinearGraphLabelEventArgs)": "OnAlignLabel(AlignLinearGraphLabelEventArgs)", + "OnAlignLabel": "OnAlignLabel(AlignLinearGraphLabelEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFormatLabel(FormatLinearGraphLabelEventArgs)": "OnFormatLabel(FormatLinearGraphLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(FormatLinearGraphLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RangeBrushes": "RangeBrushes", + "RangeBrushesProperty": "RangeBrushesProperty", + "RangeInnerExtent": "RangeInnerExtent", + "RangeInnerExtentProperty": "RangeInnerExtentProperty", + "RangeOuterExtent": "RangeOuterExtent", + "RangeOuterExtentProperty": "RangeOuterExtentProperty", + "RangeOutlines": "RangeOutlines", + "RangeOutlinesProperty": "RangeOutlinesProperty", + "Ranges": "Ranges", + "ScaleBackgroundBrush": "ScaleBackgroundBrush", + "ScaleBackgroundBrushProperty": "ScaleBackgroundBrushProperty", + "ScaleBackgroundOutline": "ScaleBackgroundOutline", + "ScaleBackgroundOutlineProperty": "ScaleBackgroundOutlineProperty", + "ScaleBackgroundThickness": "ScaleBackgroundThickness", + "ScaleBackgroundThicknessProperty": "ScaleBackgroundThicknessProperty", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleEndExtentProperty": "ScaleEndExtentProperty", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleStartExtentProperty": "ScaleStartExtentProperty", + "TargetValue": "TargetValue", + "TargetValueBreadth": "TargetValueBreadth", + "TargetValueBreadthProperty": "TargetValueBreadthProperty", + "TargetValueBrush": "TargetValueBrush", + "TargetValueBrushProperty": "TargetValueBrushProperty", + "TargetValueInnerExtent": "TargetValueInnerExtent", + "TargetValueInnerExtentProperty": "TargetValueInnerExtentProperty", + "TargetValueOuterExtent": "TargetValueOuterExtent", + "TargetValueOuterExtentProperty": "TargetValueOuterExtentProperty", + "TargetValueOutline": "TargetValueOutline", + "TargetValueOutlineProperty": "TargetValueOutlineProperty", + "TargetValueProperty": "TargetValueProperty", + "TargetValueStrokeThickness": "TargetValueStrokeThickness", + "TargetValueStrokeThicknessProperty": "TargetValueStrokeThicknessProperty", + "TickBrush": "TickBrush", + "TickBrushProperty": "TickBrushProperty", + "TickEndExtent": "TickEndExtent", + "TickEndExtentProperty": "TickEndExtentProperty", + "TickStartExtent": "TickStartExtent", + "TickStartExtentProperty": "TickStartExtentProperty", + "TickStrokeThickness": "TickStrokeThickness", + "TickStrokeThicknessProperty": "TickStrokeThicknessProperty", + "TicksPostInitial": "TicksPostInitial", + "TicksPostInitialProperty": "TicksPostInitialProperty", + "TicksPreTerminal": "TicksPreTerminal", + "TicksPreTerminalProperty": "TicksPreTerminalProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionProgress": "TransitionProgress", + "TransitionProgressProperty": "TransitionProgressProperty", + "Value": "Value", + "ValueBrush": "ValueBrush", + "ValueBrushProperty": "ValueBrushProperty", + "ValueInnerExtent": "ValueInnerExtent", + "ValueInnerExtentProperty": "ValueInnerExtentProperty", + "ValueOuterExtent": "ValueOuterExtent", + "ValueOuterExtentProperty": "ValueOuterExtentProperty", + "ValueOutline": "ValueOutline", + "ValueOutlineProperty": "ValueOutlineProperty", + "ValueProperty": "ValueProperty", + "ValueStrokeThickness": "ValueStrokeThickness", + "ValueStrokeThicknessProperty": "ValueStrokeThicknessProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamButton": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamButton", + "k": "class", + "s": "classes", + "m": { + "XamButton()": "XamButton()", + "XamButton": "XamButton()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualAmbientShadowColorProperty": "ActualAmbientShadowColorProperty", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderColorProperty": "ActualBorderColorProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualDisableRipple": "ActualDisableRipple", + "ActualDisableRippleProperty": "ActualDisableRippleProperty", + "ActualDisabledBackgroundColor": "ActualDisabledBackgroundColor", + "ActualDisabledBackgroundColorProperty": "ActualDisabledBackgroundColorProperty", + "ActualDisabledBorderColor": "ActualDisabledBorderColor", + "ActualDisabledBorderColorProperty": "ActualDisabledBorderColorProperty", + "ActualDisabledElevation": "ActualDisabledElevation", + "ActualDisabledElevationProperty": "ActualDisabledElevationProperty", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualDisabledTextColorProperty": "ActualDisabledTextColorProperty", + "ActualElevationMode": "ActualElevationMode", + "ActualElevationModeProperty": "ActualElevationModeProperty", + "ActualFocusBackgroundColor": "ActualFocusBackgroundColor", + "ActualFocusBackgroundColorProperty": "ActualFocusBackgroundColorProperty", + "ActualFocusElevation": "ActualFocusElevation", + "ActualFocusElevationProperty": "ActualFocusElevationProperty", + "ActualFocusTextColor": "ActualFocusTextColor", + "ActualFocusTextColorProperty": "ActualFocusTextColorProperty", + "ActualHoverBackgroundColor": "ActualHoverBackgroundColor", + "ActualHoverBackgroundColorProperty": "ActualHoverBackgroundColorProperty", + "ActualHoverElevation": "ActualHoverElevation", + "ActualHoverElevationProperty": "ActualHoverElevationProperty", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualHoverTextColorProperty": "ActualHoverTextColorProperty", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualPenumbraShadowColorProperty": "ActualPenumbraShadowColorProperty", + "ActualRestingElevation": "ActualRestingElevation", + "ActualRestingElevationProperty": "ActualRestingElevationProperty", + "ActualRippleColor": "ActualRippleColor", + "ActualRippleColorProperty": "ActualRippleColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "ActualUmbraShadowColorProperty": "ActualUmbraShadowColorProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderColor": "BorderColor", + "BorderColorProperty": "BorderColorProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "ClickTunneling": "ClickTunneling", + "ClickTunnelingProperty": "ClickTunnelingProperty", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisableHover": "DisableHover", + "DisableHoverProperty": "DisableHoverProperty", + "DisablePointer": "DisablePointer", + "DisablePointerProperty": "DisablePointerProperty", + "DisableRipple": "DisableRipple", + "DisableRippleProperty": "DisableRippleProperty", + "DisableTransitions": "DisableTransitions", + "DisableTransitionsProperty": "DisableTransitionsProperty", + "DisabledBackgroundColor": "DisabledBackgroundColor", + "DisabledBackgroundColorProperty": "DisabledBackgroundColorProperty", + "DisabledBorderColor": "DisabledBorderColor", + "DisabledBorderColorProperty": "DisabledBorderColorProperty", + "DisabledElevation": "DisabledElevation", + "DisabledElevationProperty": "DisabledElevationProperty", + "DisabledTextColor": "DisabledTextColor", + "DisabledTextColorProperty": "DisabledTextColorProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "ElevationMode": "ElevationMode", + "ElevationModeProperty": "ElevationModeProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FabBackgroundColor": "FabBackgroundColor", + "FabBackgroundColorProperty": "FabBackgroundColorProperty", + "FabBorderColor": "FabBorderColor", + "FabBorderColorProperty": "FabBorderColorProperty", + "FabBorderWidth": "FabBorderWidth", + "FabBorderWidthProperty": "FabBorderWidthProperty", + "FabCornerRadiusBottomLeft": "FabCornerRadiusBottomLeft", + "FabCornerRadiusBottomLeftProperty": "FabCornerRadiusBottomLeftProperty", + "FabCornerRadiusBottomRight": "FabCornerRadiusBottomRight", + "FabCornerRadiusBottomRightProperty": "FabCornerRadiusBottomRightProperty", + "FabCornerRadiusTopLeft": "FabCornerRadiusTopLeft", + "FabCornerRadiusTopLeftProperty": "FabCornerRadiusTopLeftProperty", + "FabCornerRadiusTopRight": "FabCornerRadiusTopRight", + "FabCornerRadiusTopRightProperty": "FabCornerRadiusTopRightProperty", + "FabDisabledBackgroundColor": "FabDisabledBackgroundColor", + "FabDisabledBackgroundColorProperty": "FabDisabledBackgroundColorProperty", + "FabDisabledBorderColor": "FabDisabledBorderColor", + "FabDisabledBorderColorProperty": "FabDisabledBorderColorProperty", + "FabDisabledElevation": "FabDisabledElevation", + "FabDisabledElevationProperty": "FabDisabledElevationProperty", + "FabDisabledTextColor": "FabDisabledTextColor", + "FabDisabledTextColorProperty": "FabDisabledTextColorProperty", + "FabFocusBackgroundColor": "FabFocusBackgroundColor", + "FabFocusBackgroundColorProperty": "FabFocusBackgroundColorProperty", + "FabFocusElevation": "FabFocusElevation", + "FabFocusElevationProperty": "FabFocusElevationProperty", + "FabFocusTextColor": "FabFocusTextColor", + "FabFocusTextColorProperty": "FabFocusTextColorProperty", + "FabHoverBackgroundColor": "FabHoverBackgroundColor", + "FabHoverBackgroundColorProperty": "FabHoverBackgroundColorProperty", + "FabHoverElevation": "FabHoverElevation", + "FabHoverElevationProperty": "FabHoverElevationProperty", + "FabHoverTextColor": "FabHoverTextColor", + "FabHoverTextColorProperty": "FabHoverTextColorProperty", + "FabRestingElevation": "FabRestingElevation", + "FabRestingElevationProperty": "FabRestingElevationProperty", + "FabRippleColor": "FabRippleColor", + "FabRippleColorProperty": "FabRippleColorProperty", + "FabTextColor": "FabTextColor", + "FabTextColorProperty": "FabTextColorProperty", + "FillAvailableSpace": "FillAvailableSpace", + "FillAvailableSpaceProperty": "FillAvailableSpaceProperty", + "FlatBackgroundColor": "FlatBackgroundColor", + "FlatBackgroundColorProperty": "FlatBackgroundColorProperty", + "FlatBorderColor": "FlatBorderColor", + "FlatBorderColorProperty": "FlatBorderColorProperty", + "FlatBorderWidth": "FlatBorderWidth", + "FlatBorderWidthProperty": "FlatBorderWidthProperty", + "FlatCornerRadiusBottomLeft": "FlatCornerRadiusBottomLeft", + "FlatCornerRadiusBottomLeftProperty": "FlatCornerRadiusBottomLeftProperty", + "FlatCornerRadiusBottomRight": "FlatCornerRadiusBottomRight", + "FlatCornerRadiusBottomRightProperty": "FlatCornerRadiusBottomRightProperty", + "FlatCornerRadiusTopLeft": "FlatCornerRadiusTopLeft", + "FlatCornerRadiusTopLeftProperty": "FlatCornerRadiusTopLeftProperty", + "FlatCornerRadiusTopRight": "FlatCornerRadiusTopRight", + "FlatCornerRadiusTopRightProperty": "FlatCornerRadiusTopRightProperty", + "FlatDisabledBackgroundColor": "FlatDisabledBackgroundColor", + "FlatDisabledBackgroundColorProperty": "FlatDisabledBackgroundColorProperty", + "FlatDisabledBorderColor": "FlatDisabledBorderColor", + "FlatDisabledBorderColorProperty": "FlatDisabledBorderColorProperty", + "FlatDisabledElevation": "FlatDisabledElevation", + "FlatDisabledElevationProperty": "FlatDisabledElevationProperty", + "FlatDisabledTextColor": "FlatDisabledTextColor", + "FlatDisabledTextColorProperty": "FlatDisabledTextColorProperty", + "FlatFocusBackgroundColor": "FlatFocusBackgroundColor", + "FlatFocusBackgroundColorProperty": "FlatFocusBackgroundColorProperty", + "FlatFocusElevation": "FlatFocusElevation", + "FlatFocusElevationProperty": "FlatFocusElevationProperty", + "FlatFocusTextColor": "FlatFocusTextColor", + "FlatFocusTextColorProperty": "FlatFocusTextColorProperty", + "FlatHoverBackgroundColor": "FlatHoverBackgroundColor", + "FlatHoverBackgroundColorProperty": "FlatHoverBackgroundColorProperty", + "FlatHoverElevation": "FlatHoverElevation", + "FlatHoverElevationProperty": "FlatHoverElevationProperty", + "FlatHoverTextColor": "FlatHoverTextColor", + "FlatHoverTextColorProperty": "FlatHoverTextColorProperty", + "FlatRestingElevation": "FlatRestingElevation", + "FlatRestingElevationProperty": "FlatRestingElevationProperty", + "FlatRippleColor": "FlatRippleColor", + "FlatRippleColorProperty": "FlatRippleColorProperty", + "FlatTextColor": "FlatTextColor", + "FlatTextColorProperty": "FlatTextColorProperty", + "FocusBackgroundColor": "FocusBackgroundColor", + "FocusBackgroundColorProperty": "FocusBackgroundColorProperty", + "FocusElevation": "FocusElevation", + "FocusElevationProperty": "FocusElevationProperty", + "FocusTextColor": "FocusTextColor", + "FocusTextColorProperty": "FocusTextColorProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HorizontalContentAlignment": "HorizontalContentAlignment", + "HorizontalContentAlignmentProperty": "HorizontalContentAlignmentProperty", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverBackgroundColorProperty": "HoverBackgroundColorProperty", + "HoverElevation": "HoverElevation", + "HoverElevationProperty": "HoverElevationProperty", + "HoverTextColor": "HoverTextColor", + "HoverTextColorProperty": "HoverTextColorProperty", + "IconBackgroundColor": "IconBackgroundColor", + "IconBackgroundColorProperty": "IconBackgroundColorProperty", + "IconBorderColor": "IconBorderColor", + "IconBorderColorProperty": "IconBorderColorProperty", + "IconBorderWidth": "IconBorderWidth", + "IconBorderWidthProperty": "IconBorderWidthProperty", + "IconCornerRadiusBottomLeft": "IconCornerRadiusBottomLeft", + "IconCornerRadiusBottomLeftProperty": "IconCornerRadiusBottomLeftProperty", + "IconCornerRadiusBottomRight": "IconCornerRadiusBottomRight", + "IconCornerRadiusBottomRightProperty": "IconCornerRadiusBottomRightProperty", + "IconCornerRadiusTopLeft": "IconCornerRadiusTopLeft", + "IconCornerRadiusTopLeftProperty": "IconCornerRadiusTopLeftProperty", + "IconCornerRadiusTopRight": "IconCornerRadiusTopRight", + "IconCornerRadiusTopRightProperty": "IconCornerRadiusTopRightProperty", + "IconDisabledBackgroundColor": "IconDisabledBackgroundColor", + "IconDisabledBackgroundColorProperty": "IconDisabledBackgroundColorProperty", + "IconDisabledBorderColor": "IconDisabledBorderColor", + "IconDisabledBorderColorProperty": "IconDisabledBorderColorProperty", + "IconDisabledElevation": "IconDisabledElevation", + "IconDisabledElevationProperty": "IconDisabledElevationProperty", + "IconDisabledTextColor": "IconDisabledTextColor", + "IconDisabledTextColorProperty": "IconDisabledTextColorProperty", + "IconFocusBackgroundColor": "IconFocusBackgroundColor", + "IconFocusBackgroundColorProperty": "IconFocusBackgroundColorProperty", + "IconFocusElevation": "IconFocusElevation", + "IconFocusElevationProperty": "IconFocusElevationProperty", + "IconFocusTextColor": "IconFocusTextColor", + "IconFocusTextColorProperty": "IconFocusTextColorProperty", + "IconHoverBackgroundColor": "IconHoverBackgroundColor", + "IconHoverBackgroundColorProperty": "IconHoverBackgroundColorProperty", + "IconHoverElevation": "IconHoverElevation", + "IconHoverElevationProperty": "IconHoverElevationProperty", + "IconHoverTextColor": "IconHoverTextColor", + "IconHoverTextColorProperty": "IconHoverTextColorProperty", + "IconRestingElevation": "IconRestingElevation", + "IconRestingElevationProperty": "IconRestingElevationProperty", + "IconRippleColor": "IconRippleColor", + "IconRippleColorProperty": "IconRippleColorProperty", + "IconTextColor": "IconTextColor", + "IconTextColorProperty": "IconTextColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsFocusStyleEnabled": "IsFocusStyleEnabled", + "IsFocusStyleEnabledProperty": "IsFocusStyleEnabledProperty", + "IsFocused": "IsFocused", + "IsFocusedProperty": "IsFocusedProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "MinHeight": "MinHeight", + "MinHeightProperty": "MinHeightProperty", + "MinWidth": "MinWidth", + "MinWidthProperty": "MinWidthProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnClicked(ButtonClickEventArgs)": "OnClicked(ButtonClickEventArgs)", + "OnClicked": "OnClicked(ButtonClickEventArgs)", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnGotFocus(FocusEventArgs)": "OnGotFocus(FocusEventArgs)", + "OnGotFocus": "OnGotFocus(FocusEventArgs)", + "OnLostFocus(FocusEventArgs)": "OnLostFocus(FocusEventArgs)", + "OnLostFocus": "OnLostFocus(FocusEventArgs)", + "OnMouseDown(MouseEventArgs)": "OnMouseDown(MouseEventArgs)", + "OnMouseDown": "OnMouseDown(MouseEventArgs)", + "OnMouseEnter(MouseEventArgs)": "OnMouseEnter(MouseEventArgs)", + "OnMouseEnter": "OnMouseEnter(MouseEventArgs)", + "OnMouseLeave(MouseEventArgs)": "OnMouseLeave(MouseEventArgs)", + "OnMouseLeave": "OnMouseLeave(MouseEventArgs)", + "OnMouseUp(MouseEventArgs)": "OnMouseUp(MouseEventArgs)", + "OnMouseUp": "OnMouseUp(MouseEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OutlinedBackgroundColor": "OutlinedBackgroundColor", + "OutlinedBackgroundColorProperty": "OutlinedBackgroundColorProperty", + "OutlinedBorderColor": "OutlinedBorderColor", + "OutlinedBorderColorProperty": "OutlinedBorderColorProperty", + "OutlinedBorderWidth": "OutlinedBorderWidth", + "OutlinedBorderWidthProperty": "OutlinedBorderWidthProperty", + "OutlinedCornerRadiusBottomLeft": "OutlinedCornerRadiusBottomLeft", + "OutlinedCornerRadiusBottomLeftProperty": "OutlinedCornerRadiusBottomLeftProperty", + "OutlinedCornerRadiusBottomRight": "OutlinedCornerRadiusBottomRight", + "OutlinedCornerRadiusBottomRightProperty": "OutlinedCornerRadiusBottomRightProperty", + "OutlinedCornerRadiusTopLeft": "OutlinedCornerRadiusTopLeft", + "OutlinedCornerRadiusTopLeftProperty": "OutlinedCornerRadiusTopLeftProperty", + "OutlinedCornerRadiusTopRight": "OutlinedCornerRadiusTopRight", + "OutlinedCornerRadiusTopRightProperty": "OutlinedCornerRadiusTopRightProperty", + "OutlinedDisabledBackgroundColor": "OutlinedDisabledBackgroundColor", + "OutlinedDisabledBackgroundColorProperty": "OutlinedDisabledBackgroundColorProperty", + "OutlinedDisabledBorderColor": "OutlinedDisabledBorderColor", + "OutlinedDisabledBorderColorProperty": "OutlinedDisabledBorderColorProperty", + "OutlinedDisabledElevation": "OutlinedDisabledElevation", + "OutlinedDisabledElevationProperty": "OutlinedDisabledElevationProperty", + "OutlinedDisabledTextColor": "OutlinedDisabledTextColor", + "OutlinedDisabledTextColorProperty": "OutlinedDisabledTextColorProperty", + "OutlinedFocusBackgroundColor": "OutlinedFocusBackgroundColor", + "OutlinedFocusBackgroundColorProperty": "OutlinedFocusBackgroundColorProperty", + "OutlinedFocusElevation": "OutlinedFocusElevation", + "OutlinedFocusElevationProperty": "OutlinedFocusElevationProperty", + "OutlinedFocusTextColor": "OutlinedFocusTextColor", + "OutlinedFocusTextColorProperty": "OutlinedFocusTextColorProperty", + "OutlinedHoverBackgroundColor": "OutlinedHoverBackgroundColor", + "OutlinedHoverBackgroundColorProperty": "OutlinedHoverBackgroundColorProperty", + "OutlinedHoverElevation": "OutlinedHoverElevation", + "OutlinedHoverElevationProperty": "OutlinedHoverElevationProperty", + "OutlinedHoverTextColor": "OutlinedHoverTextColor", + "OutlinedHoverTextColorProperty": "OutlinedHoverTextColorProperty", + "OutlinedRestingElevation": "OutlinedRestingElevation", + "OutlinedRestingElevationProperty": "OutlinedRestingElevationProperty", + "OutlinedRippleColor": "OutlinedRippleColor", + "OutlinedRippleColorProperty": "OutlinedRippleColorProperty", + "OutlinedTextColor": "OutlinedTextColor", + "OutlinedTextColorProperty": "OutlinedTextColorProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "RaisedBackgroundColor": "RaisedBackgroundColor", + "RaisedBackgroundColorProperty": "RaisedBackgroundColorProperty", + "RaisedBorderColor": "RaisedBorderColor", + "RaisedBorderColorProperty": "RaisedBorderColorProperty", + "RaisedBorderWidth": "RaisedBorderWidth", + "RaisedBorderWidthProperty": "RaisedBorderWidthProperty", + "RaisedCornerRadiusBottomLeft": "RaisedCornerRadiusBottomLeft", + "RaisedCornerRadiusBottomLeftProperty": "RaisedCornerRadiusBottomLeftProperty", + "RaisedCornerRadiusBottomRight": "RaisedCornerRadiusBottomRight", + "RaisedCornerRadiusBottomRightProperty": "RaisedCornerRadiusBottomRightProperty", + "RaisedCornerRadiusTopLeft": "RaisedCornerRadiusTopLeft", + "RaisedCornerRadiusTopLeftProperty": "RaisedCornerRadiusTopLeftProperty", + "RaisedCornerRadiusTopRight": "RaisedCornerRadiusTopRight", + "RaisedCornerRadiusTopRightProperty": "RaisedCornerRadiusTopRightProperty", + "RaisedDisabledBackgroundColor": "RaisedDisabledBackgroundColor", + "RaisedDisabledBackgroundColorProperty": "RaisedDisabledBackgroundColorProperty", + "RaisedDisabledBorderColor": "RaisedDisabledBorderColor", + "RaisedDisabledBorderColorProperty": "RaisedDisabledBorderColorProperty", + "RaisedDisabledElevation": "RaisedDisabledElevation", + "RaisedDisabledElevationProperty": "RaisedDisabledElevationProperty", + "RaisedDisabledTextColor": "RaisedDisabledTextColor", + "RaisedDisabledTextColorProperty": "RaisedDisabledTextColorProperty", + "RaisedFocusBackgroundColor": "RaisedFocusBackgroundColor", + "RaisedFocusBackgroundColorProperty": "RaisedFocusBackgroundColorProperty", + "RaisedFocusElevation": "RaisedFocusElevation", + "RaisedFocusElevationProperty": "RaisedFocusElevationProperty", + "RaisedFocusTextColor": "RaisedFocusTextColor", + "RaisedFocusTextColorProperty": "RaisedFocusTextColorProperty", + "RaisedHoverBackgroundColor": "RaisedHoverBackgroundColor", + "RaisedHoverBackgroundColorProperty": "RaisedHoverBackgroundColorProperty", + "RaisedHoverElevation": "RaisedHoverElevation", + "RaisedHoverElevationProperty": "RaisedHoverElevationProperty", + "RaisedHoverTextColor": "RaisedHoverTextColor", + "RaisedHoverTextColorProperty": "RaisedHoverTextColorProperty", + "RaisedRestingElevation": "RaisedRestingElevation", + "RaisedRestingElevationProperty": "RaisedRestingElevationProperty", + "RaisedRippleColor": "RaisedRippleColor", + "RaisedRippleColorProperty": "RaisedRippleColorProperty", + "RaisedTextColor": "RaisedTextColor", + "RaisedTextColorProperty": "RaisedTextColorProperty", + "RestingElevation": "RestingElevation", + "RestingElevationProperty": "RestingElevationProperty", + "RippleColor": "RippleColor", + "RippleColorProperty": "RippleColorProperty", + "StopPropagation": "StopPropagation", + "StopPropagationProperty": "StopPropagationProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "VerticalContentAlignment": "VerticalContentAlignment", + "VerticalContentAlignmentProperty": "VerticalContentAlignmentProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamButtonGroup": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamButtonGroup", + "k": "class", + "s": "classes", + "m": { + "XamButtonGroup()": "XamButtonGroup()", + "XamButtonGroup": "XamButtonGroup()", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualItemBackgroundColor": "ActualItemBackgroundColor", + "ActualItemBackgroundColorProperty": "ActualItemBackgroundColorProperty", + "ActualItemBorderColor": "ActualItemBorderColor", + "ActualItemBorderColorProperty": "ActualItemBorderColorProperty", + "ActualItemBorderWidth": "ActualItemBorderWidth", + "ActualItemBorderWidthProperty": "ActualItemBorderWidthProperty", + "ActualItemCornerRadius": "ActualItemCornerRadius", + "ActualItemCornerRadiusProperty": "ActualItemCornerRadiusProperty", + "ActualItemDisabledBackgroundColor": "ActualItemDisabledBackgroundColor", + "ActualItemDisabledBackgroundColorProperty": "ActualItemDisabledBackgroundColorProperty", + "ActualItemDisabledBorderColor": "ActualItemDisabledBorderColor", + "ActualItemDisabledBorderColorProperty": "ActualItemDisabledBorderColorProperty", + "ActualItemDisabledTextColor": "ActualItemDisabledTextColor", + "ActualItemDisabledTextColorProperty": "ActualItemDisabledTextColorProperty", + "ActualItemHoverBackgroundColor": "ActualItemHoverBackgroundColor", + "ActualItemHoverBackgroundColorProperty": "ActualItemHoverBackgroundColorProperty", + "ActualItemHoverTextColor": "ActualItemHoverTextColor", + "ActualItemHoverTextColorProperty": "ActualItemHoverTextColorProperty", + "ActualItemTextColor": "ActualItemTextColor", + "ActualItemTextColorProperty": "ActualItemTextColorProperty", + "ActualSelectedItemBackgroundColor": "ActualSelectedItemBackgroundColor", + "ActualSelectedItemBackgroundColorProperty": "ActualSelectedItemBackgroundColorProperty", + "ActualSelectedItemHoverBackgroundColor": "ActualSelectedItemHoverBackgroundColor", + "ActualSelectedItemHoverBackgroundColorProperty": "ActualSelectedItemHoverBackgroundColorProperty", + "ActualSelectedItemHoverTextColor": "ActualSelectedItemHoverTextColor", + "ActualSelectedItemHoverTextColorProperty": "ActualSelectedItemHoverTextColorProperty", + "ActualSelectedItemTextColor": "ActualSelectedItemTextColor", + "ActualSelectedItemTextColorProperty": "ActualSelectedItemTextColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Buttons": "Buttons", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FlatItemBackgroundColor": "FlatItemBackgroundColor", + "FlatItemBackgroundColorProperty": "FlatItemBackgroundColorProperty", + "FlatItemBorderColor": "FlatItemBorderColor", + "FlatItemBorderColorProperty": "FlatItemBorderColorProperty", + "FlatItemBorderWidth": "FlatItemBorderWidth", + "FlatItemBorderWidthProperty": "FlatItemBorderWidthProperty", + "FlatItemCornerRadius": "FlatItemCornerRadius", + "FlatItemCornerRadiusProperty": "FlatItemCornerRadiusProperty", + "FlatItemDisabledBackgroundColor": "FlatItemDisabledBackgroundColor", + "FlatItemDisabledBackgroundColorProperty": "FlatItemDisabledBackgroundColorProperty", + "FlatItemDisabledBorderColor": "FlatItemDisabledBorderColor", + "FlatItemDisabledBorderColorProperty": "FlatItemDisabledBorderColorProperty", + "FlatItemDisabledTextColor": "FlatItemDisabledTextColor", + "FlatItemDisabledTextColorProperty": "FlatItemDisabledTextColorProperty", + "FlatItemHoverBackgroundColor": "FlatItemHoverBackgroundColor", + "FlatItemHoverBackgroundColorProperty": "FlatItemHoverBackgroundColorProperty", + "FlatItemHoverTextColor": "FlatItemHoverTextColor", + "FlatItemHoverTextColorProperty": "FlatItemHoverTextColorProperty", + "FlatItemTextColor": "FlatItemTextColor", + "FlatItemTextColorProperty": "FlatItemTextColorProperty", + "FlatSelectedItemBackgroundColor": "FlatSelectedItemBackgroundColor", + "FlatSelectedItemBackgroundColorProperty": "FlatSelectedItemBackgroundColorProperty", + "FlatSelectedItemHoverBackgroundColor": "FlatSelectedItemHoverBackgroundColor", + "FlatSelectedItemHoverBackgroundColorProperty": "FlatSelectedItemHoverBackgroundColorProperty", + "FlatSelectedItemHoverTextColor": "FlatSelectedItemHoverTextColor", + "FlatSelectedItemHoverTextColorProperty": "FlatSelectedItemHoverTextColorProperty", + "FlatSelectedItemTextColor": "FlatSelectedItemTextColor", + "FlatSelectedItemTextColorProperty": "FlatSelectedItemTextColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsMultiSelect": "IsMultiSelect", + "IsMultiSelectProperty": "IsMultiSelectProperty", + "ItemBackgroundColor": "ItemBackgroundColor", + "ItemBackgroundColorProperty": "ItemBackgroundColorProperty", + "ItemBorderColor": "ItemBorderColor", + "ItemBorderColorProperty": "ItemBorderColorProperty", + "ItemBorderWidth": "ItemBorderWidth", + "ItemBorderWidthProperty": "ItemBorderWidthProperty", + "ItemCornerRadius": "ItemCornerRadius", + "ItemCornerRadiusProperty": "ItemCornerRadiusProperty", + "ItemDisabledBackgroundColor": "ItemDisabledBackgroundColor", + "ItemDisabledBackgroundColorProperty": "ItemDisabledBackgroundColorProperty", + "ItemDisabledBorderColor": "ItemDisabledBorderColor", + "ItemDisabledBorderColorProperty": "ItemDisabledBorderColorProperty", + "ItemDisabledTextColor": "ItemDisabledTextColor", + "ItemDisabledTextColorProperty": "ItemDisabledTextColorProperty", + "ItemHoverBackgroundColor": "ItemHoverBackgroundColor", + "ItemHoverBackgroundColorProperty": "ItemHoverBackgroundColorProperty", + "ItemHoverTextColor": "ItemHoverTextColor", + "ItemHoverTextColorProperty": "ItemHoverTextColorProperty", + "ItemTextColor": "ItemTextColor", + "ItemTextColorProperty": "ItemTextColorProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectionChanged(ButtonGroupSelectionChangedEventArgs)": "OnSelectionChanged(ButtonGroupSelectionChangedEventArgs)", + "OnSelectionChanged": "OnSelectionChanged(ButtonGroupSelectionChangedEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "OutlinedItemBackgroundColor": "OutlinedItemBackgroundColor", + "OutlinedItemBackgroundColorProperty": "OutlinedItemBackgroundColorProperty", + "OutlinedItemBorderColor": "OutlinedItemBorderColor", + "OutlinedItemBorderColorProperty": "OutlinedItemBorderColorProperty", + "OutlinedItemBorderWidth": "OutlinedItemBorderWidth", + "OutlinedItemBorderWidthProperty": "OutlinedItemBorderWidthProperty", + "OutlinedItemCornerRadius": "OutlinedItemCornerRadius", + "OutlinedItemCornerRadiusProperty": "OutlinedItemCornerRadiusProperty", + "OutlinedItemDisabledBackgroundColor": "OutlinedItemDisabledBackgroundColor", + "OutlinedItemDisabledBackgroundColorProperty": "OutlinedItemDisabledBackgroundColorProperty", + "OutlinedItemDisabledBorderColor": "OutlinedItemDisabledBorderColor", + "OutlinedItemDisabledBorderColorProperty": "OutlinedItemDisabledBorderColorProperty", + "OutlinedItemDisabledTextColor": "OutlinedItemDisabledTextColor", + "OutlinedItemDisabledTextColorProperty": "OutlinedItemDisabledTextColorProperty", + "OutlinedItemHoverBackgroundColor": "OutlinedItemHoverBackgroundColor", + "OutlinedItemHoverBackgroundColorProperty": "OutlinedItemHoverBackgroundColorProperty", + "OutlinedItemHoverTextColor": "OutlinedItemHoverTextColor", + "OutlinedItemHoverTextColorProperty": "OutlinedItemHoverTextColorProperty", + "OutlinedItemTextColor": "OutlinedItemTextColor", + "OutlinedItemTextColorProperty": "OutlinedItemTextColorProperty", + "OutlinedSelectedItemBackgroundColor": "OutlinedSelectedItemBackgroundColor", + "OutlinedSelectedItemBackgroundColorProperty": "OutlinedSelectedItemBackgroundColorProperty", + "OutlinedSelectedItemHoverBackgroundColor": "OutlinedSelectedItemHoverBackgroundColor", + "OutlinedSelectedItemHoverBackgroundColorProperty": "OutlinedSelectedItemHoverBackgroundColorProperty", + "OutlinedSelectedItemHoverTextColor": "OutlinedSelectedItemHoverTextColor", + "OutlinedSelectedItemHoverTextColorProperty": "OutlinedSelectedItemHoverTextColorProperty", + "OutlinedSelectedItemTextColor": "OutlinedSelectedItemTextColor", + "OutlinedSelectedItemTextColorProperty": "OutlinedSelectedItemTextColorProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "SelectedIndices": "SelectedIndices", + "SelectedIndicesProperty": "SelectedIndicesProperty", + "SelectedItemBackgroundColor": "SelectedItemBackgroundColor", + "SelectedItemBackgroundColorProperty": "SelectedItemBackgroundColorProperty", + "SelectedItemHoverBackgroundColor": "SelectedItemHoverBackgroundColor", + "SelectedItemHoverBackgroundColorProperty": "SelectedItemHoverBackgroundColorProperty", + "SelectedItemHoverTextColor": "SelectedItemHoverTextColor", + "SelectedItemHoverTextColorProperty": "SelectedItemHoverTextColorProperty", + "SelectedItemTextColor": "SelectedItemTextColor", + "SelectedItemTextColorProperty": "SelectedItemTextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamCategoryChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/XamCategoryChart", + "k": "class", + "s": "classes", + "m": { + "XamCategoryChart()": "XamCategoryChart()", + "XamCategoryChart": "XamCategoryChart()", + "AutoExpandMarginExtraPadding": "AutoExpandMarginExtraPadding", + "AutoExpandMarginExtraPaddingProperty": "AutoExpandMarginExtraPaddingProperty", + "AutoExpandMarginMaximumValue": "AutoExpandMarginMaximumValue", + "AutoExpandMarginMaximumValueProperty": "AutoExpandMarginMaximumValueProperty", + "AutoMarginAndAngleUpdateMode": "AutoMarginAndAngleUpdateMode", + "AutoMarginAndAngleUpdateModeProperty": "AutoMarginAndAngleUpdateModeProperty", + "ChartType": "ChartType", + "ChartTypeProperty": "ChartTypeProperty", + "GetCurrentXAxisActualMaximum()": "GetCurrentXAxisActualMaximum()", + "GetCurrentXAxisActualMaximum": "GetCurrentXAxisActualMaximum()", + "GetCurrentXAxisActualMinimum()": "GetCurrentXAxisActualMinimum()", + "GetCurrentXAxisActualMinimum": "GetCurrentXAxisActualMinimum()", + "GetCurrentYAxisActualMaximum()": "GetCurrentYAxisActualMaximum()", + "GetCurrentYAxisActualMaximum": "GetCurrentYAxisActualMaximum()", + "GetCurrentYAxisActualMinimum()": "GetCurrentYAxisActualMinimum()", + "GetCurrentYAxisActualMinimum": "GetCurrentYAxisActualMinimum()", + "IsCategoryHighlightingEnabled": "IsCategoryHighlightingEnabled", + "IsCategoryHighlightingEnabledProperty": "IsCategoryHighlightingEnabledProperty", + "IsItemHighlightingEnabled": "IsItemHighlightingEnabled", + "IsItemHighlightingEnabledProperty": "IsItemHighlightingEnabledProperty", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "NegativeBrushes": "NegativeBrushes", + "NegativeBrushesProperty": "NegativeBrushesProperty", + "NegativeOutlines": "NegativeOutlines", + "NegativeOutlinesProperty": "NegativeOutlinesProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "RecalculateMarginAutoExpansion()": "RecalculateMarginAutoExpansion()", + "RecalculateMarginAutoExpansion": "RecalculateMarginAutoExpansion()", + "ShouldAutoExpandMarginForInitialLabels": "ShouldAutoExpandMarginForInitialLabels", + "ShouldAutoExpandMarginForInitialLabelsProperty": "ShouldAutoExpandMarginForInitialLabelsProperty", + "ShouldConsiderAutoRotationForInitialLabels": "ShouldConsiderAutoRotationForInitialLabels", + "ShouldConsiderAutoRotationForInitialLabelsProperty": "ShouldConsiderAutoRotationForInitialLabelsProperty", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipBorderColor": "ToolTipBorderColor", + "ToolTipBorderColorProperty": "ToolTipBorderColorProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "TransitionInDuration": "TransitionInDuration", + "TransitionInDurationProperty": "TransitionInDurationProperty", + "TransitionInEasingFunction": "TransitionInEasingFunction", + "TransitionInEasingFunctionProperty": "TransitionInEasingFunctionProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionInSpeedTypeProperty": "TransitionInSpeedTypeProperty", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutDurationProperty": "TransitionOutDurationProperty", + "TransitionOutEasingFunction": "TransitionOutEasingFunction", + "TransitionOutEasingFunctionProperty": "TransitionOutEasingFunctionProperty", + "XAxisActualMaximum": "XAxisActualMaximum", + "XAxisActualMaximumProperty": "XAxisActualMaximumProperty", + "XAxisActualMinimum": "XAxisActualMinimum", + "XAxisActualMinimumProperty": "XAxisActualMinimumProperty", + "XAxisEnhancedIntervalPreferMoreCategoryLabels": "XAxisEnhancedIntervalPreferMoreCategoryLabels", + "XAxisEnhancedIntervalPreferMoreCategoryLabelsProperty": "XAxisEnhancedIntervalPreferMoreCategoryLabelsProperty", + "XAxisGap": "XAxisGap", + "XAxisGapProperty": "XAxisGapProperty", + "XAxisInterval": "XAxisInterval", + "XAxisIntervalProperty": "XAxisIntervalProperty", + "XAxisIsLastLabelMandatory": "XAxisIsLastLabelMandatory", + "XAxisIsLastLabelMandatoryProperty": "XAxisIsLastLabelMandatoryProperty", + "XAxisMaximumGap": "XAxisMaximumGap", + "XAxisMaximumGapProperty": "XAxisMaximumGapProperty", + "XAxisMinimumGapSize": "XAxisMinimumGapSize", + "XAxisMinimumGapSizeProperty": "XAxisMinimumGapSizeProperty", + "XAxisMinorInterval": "XAxisMinorInterval", + "XAxisMinorIntervalProperty": "XAxisMinorIntervalProperty", + "XAxisOverlap": "XAxisOverlap", + "XAxisOverlapProperty": "XAxisOverlapProperty", + "XAxisZoomMaximumCategoryRange": "XAxisZoomMaximumCategoryRange", + "XAxisZoomMaximumCategoryRangeProperty": "XAxisZoomMaximumCategoryRangeProperty", + "XAxisZoomMaximumItemSpan": "XAxisZoomMaximumItemSpan", + "XAxisZoomMaximumItemSpanProperty": "XAxisZoomMaximumItemSpanProperty", + "XAxisZoomToCategoryRange": "XAxisZoomToCategoryRange", + "XAxisZoomToCategoryRangeProperty": "XAxisZoomToCategoryRangeProperty", + "XAxisZoomToCategoryStart": "XAxisZoomToCategoryStart", + "XAxisZoomToCategoryStartProperty": "XAxisZoomToCategoryStartProperty", + "XAxisZoomToItemSpan": "XAxisZoomToItemSpan", + "XAxisZoomToItemSpanProperty": "XAxisZoomToItemSpanProperty", + "YAxisAbbreviateLargeNumbers": "YAxisAbbreviateLargeNumbers", + "YAxisAbbreviateLargeNumbersProperty": "YAxisAbbreviateLargeNumbersProperty", + "YAxisActualMaximum": "YAxisActualMaximum", + "YAxisActualMaximumProperty": "YAxisActualMaximumProperty", + "YAxisActualMinimum": "YAxisActualMinimum", + "YAxisActualMinimumProperty": "YAxisActualMinimumProperty", + "YAxisAutoRangeBufferMode": "YAxisAutoRangeBufferMode", + "YAxisAutoRangeBufferModeProperty": "YAxisAutoRangeBufferModeProperty", + "YAxisEnhancedIntervalPreferMoreCategoryLabels": "YAxisEnhancedIntervalPreferMoreCategoryLabels", + "YAxisEnhancedIntervalPreferMoreCategoryLabelsProperty": "YAxisEnhancedIntervalPreferMoreCategoryLabelsProperty", + "YAxisFavorLabellingScaleEnd": "YAxisFavorLabellingScaleEnd", + "YAxisFavorLabellingScaleEndProperty": "YAxisFavorLabellingScaleEndProperty", + "YAxisInterval": "YAxisInterval", + "YAxisIntervalProperty": "YAxisIntervalProperty", + "YAxisIsLastLabelMandatory": "YAxisIsLastLabelMandatory", + "YAxisIsLastLabelMandatoryProperty": "YAxisIsLastLabelMandatoryProperty", + "YAxisIsLogarithmic": "YAxisIsLogarithmic", + "YAxisIsLogarithmicProperty": "YAxisIsLogarithmicProperty", + "YAxisLogarithmBase": "YAxisLogarithmBase", + "YAxisLogarithmBaseProperty": "YAxisLogarithmBaseProperty", + "YAxisMaximumValue": "YAxisMaximumValue", + "YAxisMaximumValueProperty": "YAxisMaximumValueProperty", + "YAxisMinimumValue": "YAxisMinimumValue", + "YAxisMinimumValueProperty": "YAxisMinimumValueProperty", + "YAxisMinorInterval": "YAxisMinorInterval", + "YAxisMinorIntervalProperty": "YAxisMinorIntervalProperty" + } + } + ], + "XamCheckbox": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamCheckbox", + "k": "class", + "s": "classes", + "m": { + "XamCheckbox()": "XamCheckbox()", + "XamCheckbox": "XamCheckbox()", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualCornerRadius": "ActualCornerRadius", + "ActualCornerRadiusProperty": "ActualCornerRadiusProperty", + "ActualTickColor": "ActualTickColor", + "ActualTickColorProperty": "ActualTickColorProperty", + "ActualTickStrokeWidth": "ActualTickStrokeWidth", + "ActualTickStrokeWidthProperty": "ActualTickStrokeWidthProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "CornerRadius": "CornerRadius", + "CornerRadiusProperty": "CornerRadiusProperty", + "DisableRipple": "DisableRipple", + "DisableRippleProperty": "DisableRippleProperty", + "DisableTransitions": "DisableTransitions", + "DisableTransitionsProperty": "DisableTransitionsProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IsChecked": "IsChecked", + "IsCheckedProperty": "IsCheckedProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsFocused": "IsFocused", + "IsFocusedProperty": "IsFocusedProperty", + "IsIndeterminate": "IsIndeterminate", + "IsIndeterminateProperty": "IsIndeterminateProperty", + "LabelPosition": "LabelPosition", + "LabelPositionProperty": "LabelPositionProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnChange(CheckboxChangeEventArgs)": "OnChange(CheckboxChangeEventArgs)", + "OnChange": "OnChange(CheckboxChangeEventArgs)", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "TickColor": "TickColor", + "TickColorProperty": "TickColorProperty", + "TickStrokeWidth": "TickStrokeWidth", + "TickStrokeWidthProperty": "TickStrokeWidthProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamCheckboxList": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/XamCheckboxList", + "k": "class", + "s": "classes", + "m": { + "XamCheckboxList()": "XamCheckboxList()", + "XamCheckboxList": "XamCheckboxList()", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "ActualSelectAllCaptionTextColor": "ActualSelectAllCaptionTextColor", + "ActualSelectAllCaptionTextColorProperty": "ActualSelectAllCaptionTextColorProperty", + "AddKeyValue(object[])": "AddKeyValue(object[])", + "AddKeyValue": "AddKeyValue(object[])", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CheckboxAlignedRight": "CheckboxAlignedRight", + "CheckboxAlignedRightProperty": "CheckboxAlignedRightProperty", + "CheckboxCheckedBackgroundColor": "CheckboxCheckedBackgroundColor", + "CheckboxCheckedBackgroundColorProperty": "CheckboxCheckedBackgroundColorProperty", + "CheckboxCheckedBorderColor": "CheckboxCheckedBorderColor", + "CheckboxCheckedBorderColorProperty": "CheckboxCheckedBorderColorProperty", + "CheckboxCornerRadius": "CheckboxCornerRadius", + "CheckboxCornerRadiusProperty": "CheckboxCornerRadiusProperty", + "CheckboxTickColor": "CheckboxTickColor", + "CheckboxTickColorProperty": "CheckboxTickColorProperty", + "CheckboxUncheckedBackgroundColor": "CheckboxUncheckedBackgroundColor", + "CheckboxUncheckedBackgroundColorProperty": "CheckboxUncheckedBackgroundColorProperty", + "CheckboxUncheckedBorderColor": "CheckboxUncheckedBorderColor", + "CheckboxUncheckedBorderColorProperty": "CheckboxUncheckedBorderColorProperty", + "DataLegendTarget": "DataLegendTarget", + "DataLegendTargetProperty": "DataLegendTargetProperty", + "DataMemberPath": "DataMemberPath", + "DataMemberPathProperty": "DataMemberPathProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DeselectAll()": "DeselectAll()", + "DeselectAll": "DeselectAll()", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FilterPlaceholderText": "FilterPlaceholderText", + "FilterPlaceholderTextProperty": "FilterPlaceholderTextProperty", + "IndexType": "IndexType", + "IndexTypeProperty": "IndexTypeProperty", + "IsDetached": "IsDetached", + "IsDetachedProperty": "IsDetachedProperty", + "IsEverythingSelected()": "IsEverythingSelected()", + "IsEverythingSelected": "IsEverythingSelected()", + "IsNothingSelected()": "IsNothingSelected()", + "IsNothingSelected": "IsNothingSelected()", + "IsRowHoverEnabled": "IsRowHoverEnabled", + "IsRowHoverEnabledProperty": "IsRowHoverEnabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Keys": "Keys", + "KeysProperty": "KeysProperty", + "LabelClickTriggersChange": "LabelClickTriggersChange", + "LabelClickTriggersChangeProperty": "LabelClickTriggersChangeProperty", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "OnApplyTemplate()": "OnApplyTemplate()", + "OnApplyTemplate": "OnApplyTemplate()", + "OnCheckedChanged(CheckedChangedEventArgs)": "OnCheckedChanged(CheckedChangedEventArgs)", + "OnCheckedChanged": "OnCheckedChanged(CheckedChangedEventArgs)", + "OnIndexTypeChanged(CheckboxListIndexTypeChangedEventArgs)": "OnIndexTypeChanged(CheckboxListIndexTypeChangedEventArgs)", + "OnIndexTypeChanged": "OnIndexTypeChanged(CheckboxListIndexTypeChangedEventArgs)", + "OnKeysCleared(CheckboxListKeysClearedEventArgs)": "OnKeysCleared(CheckboxListKeysClearedEventArgs)", + "OnKeysCleared": "OnKeysCleared(CheckboxListKeysClearedEventArgs)", + "OnLabelClicked(CheckedChangedEventArgs)": "OnLabelClicked(CheckedChangedEventArgs)", + "OnLabelClicked": "OnLabelClicked(CheckedChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectAllCheckboxChanged(SelectAllCheckboxChangedEventArgs)": "OnSelectAllCheckboxChanged(SelectAllCheckboxChangedEventArgs)", + "OnSelectAllCheckboxChanged": "OnSelectAllCheckboxChanged(SelectAllCheckboxChangedEventArgs)", + "OnSelectedKeyAdded(CheckedChangedEventArgs)": "OnSelectedKeyAdded(CheckedChangedEventArgs)", + "OnSelectedKeyAdded": "OnSelectedKeyAdded(CheckedChangedEventArgs)", + "OnSelectedKeyRemoved(CheckedChangedEventArgs)": "OnSelectedKeyRemoved(CheckedChangedEventArgs)", + "OnSelectedKeyRemoved": "OnSelectedKeyRemoved(CheckedChangedEventArgs)", + "PrimaryKey": "PrimaryKey", + "PrimaryKeyProperty": "PrimaryKeyProperty", + "PropertyTypeMemberPath": "PropertyTypeMemberPath", + "PropertyTypeMemberPathProperty": "PropertyTypeMemberPathProperty", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RemoveKeyValue(object[])": "RemoveKeyValue(object[])", + "RemoveKeyValue": "RemoveKeyValue(object[])", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "RowHoverBackgroundColor": "RowHoverBackgroundColor", + "RowHoverBackgroundColorProperty": "RowHoverBackgroundColorProperty", + "ScrollbarActiveBackground": "ScrollbarActiveBackground", + "ScrollbarActiveBackgroundProperty": "ScrollbarActiveBackgroundProperty", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarBackgroundProperty": "ScrollbarBackgroundProperty", + "ScrollbarHoverBackground": "ScrollbarHoverBackground", + "ScrollbarHoverBackgroundProperty": "ScrollbarHoverBackgroundProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SearchBackgroundColor": "SearchBackgroundColor", + "SearchBackgroundColorProperty": "SearchBackgroundColorProperty", + "SearchBorderColor": "SearchBorderColor", + "SearchBorderColorProperty": "SearchBorderColorProperty", + "SearchFocusBorderColor": "SearchFocusBorderColor", + "SearchFocusBorderColorProperty": "SearchFocusBorderColorProperty", + "SearchFontFamily": "SearchFontFamily", + "SearchFontFamilyProperty": "SearchFontFamilyProperty", + "SearchFontSize": "SearchFontSize", + "SearchFontSizeProperty": "SearchFontSizeProperty", + "SearchFontStyle": "SearchFontStyle", + "SearchFontStyleProperty": "SearchFontStyleProperty", + "SearchFontWeight": "SearchFontWeight", + "SearchFontWeightProperty": "SearchFontWeightProperty", + "SearchIconColor": "SearchIconColor", + "SearchIconColorProperty": "SearchIconColorProperty", + "SearchInputType": "SearchInputType", + "SearchInputTypeProperty": "SearchInputTypeProperty", + "SearchTextColor": "SearchTextColor", + "SearchTextColorProperty": "SearchTextColorProperty", + "SelectAll()": "SelectAll()", + "SelectAll": "SelectAll()", + "SelectAllCaption": "SelectAllCaption", + "SelectAllCaptionProperty": "SelectAllCaptionProperty", + "SelectAllCaptionTextColor": "SelectAllCaptionTextColor", + "SelectAllCaptionTextColorProperty": "SelectAllCaptionTextColorProperty", + "SelectedMemberPath": "SelectedMemberPath", + "SelectedMemberPathProperty": "SelectedMemberPathProperty", + "ShowFilter": "ShowFilter", + "ShowFilterProperty": "ShowFilterProperty", + "ShowSelectAll": "ShowSelectAll", + "ShowSelectAllProperty": "ShowSelectAllProperty", + "SubtitleMemberPath": "SubtitleMemberPath", + "SubtitleMemberPathProperty": "SubtitleMemberPathProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamColorEditor": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamColorEditor", + "k": "class", + "s": "classes", + "m": { + "XamColorEditor()": "XamColorEditor()", + "XamColorEditor": "XamColorEditor()", + "AllowTextInput": "AllowTextInput", + "AllowTextInputProperty": "AllowTextInputProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IconColor": "IconColor", + "IconColorProperty": "IconColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelProperty": "LabelProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "OnGotFocus(ColorEditorGotFocusEventArgs)": "OnGotFocus(ColorEditorGotFocusEventArgs)", + "OnGotFocus": "OnGotFocus(ColorEditorGotFocusEventArgs)", + "OnLostFocus(ColorEditorLostFocusEventArgs)": "OnLostFocus(ColorEditorLostFocusEventArgs)", + "OnLostFocus": "OnLostFocus(ColorEditorLostFocusEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)": "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)": "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanging": "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)", + "OpenOnFocus": "OpenOnFocus", + "OpenOnFocusProperty": "OpenOnFocusProperty", + "Select()": "Select()", + "Select": "Select()", + "ShowClearButton": "ShowClearButton", + "ShowClearButtonProperty": "ShowClearButtonProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TextFontFamily": "TextFontFamily", + "TextFontFamilyProperty": "TextFontFamilyProperty", + "TextFontSize": "TextFontSize", + "TextFontSizeProperty": "TextFontSizeProperty", + "TextFontStyle": "TextFontStyle", + "TextFontStyleProperty": "TextFontStyleProperty", + "TextFontWeight": "TextFontWeight", + "TextFontWeightProperty": "TextFontWeightProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamColorEditorPanel": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamColorEditorPanel", + "k": "class", + "s": "classes", + "m": { + "XamColorEditorPanel()": "XamColorEditorPanel()", + "XamColorEditorPanel": "XamColorEditorPanel()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "FocusColorBorderColor": "FocusColorBorderColor", + "FocusColorBorderColorProperty": "FocusColorBorderColorProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverBackgroundColorProperty": "HoverBackgroundColorProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)": "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)": "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanging": "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "SelectedColorBorderColor": "SelectedColorBorderColor", + "SelectedColorBorderColorProperty": "SelectedColorBorderColorProperty", + "SelectedFocusDateBackgroundColor": "SelectedFocusDateBackgroundColor", + "SelectedFocusDateBackgroundColorProperty": "SelectedFocusDateBackgroundColorProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamComboEditor": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/XamComboEditor", + "k": "class", + "s": "classes", + "m": { + "XamComboEditor()": "XamComboEditor()", + "XamComboEditor": "XamComboEditor()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualBaseTheme": "ActualBaseTheme", + "ActualBaseThemeProperty": "ActualBaseThemeProperty", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderColorProperty": "ActualBorderColorProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingBottomProperty": "ActualContentPaddingBottomProperty", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingLeftProperty": "ActualContentPaddingLeftProperty", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingRightProperty": "ActualContentPaddingRightProperty", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualContentPaddingTopProperty": "ActualContentPaddingTopProperty", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderColorProperty": "ActualFocusBorderColorProperty", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusBorderWidthProperty": "ActualFocusBorderWidthProperty", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineColorProperty": "ActualFocusUnderlineColorProperty", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineOpacityProperty": "ActualFocusUnderlineOpacityProperty", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualFocusUnderlineRippleOpacityProperty": "ActualFocusUnderlineRippleOpacityProperty", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineColorProperty": "ActualHoverUnderlineColorProperty", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineOpacityProperty": "ActualHoverUnderlineOpacityProperty", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualHoverUnderlineWidthProperty": "ActualHoverUnderlineWidthProperty", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelTextColorProperty": "ActualLabelTextColorProperty", + "ActualLabelVisible": "ActualLabelVisible", + "ActualLabelVisibleProperty": "ActualLabelVisibleProperty", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelBackgroundColorProperty": "ActualNoMatchesFoundLabelBackgroundColorProperty", + "ActualNoMatchesFoundLabelProperty": "ActualNoMatchesFoundLabelProperty", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualNoMatchesFoundLabelTextColorProperty": "ActualNoMatchesFoundLabelTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineColorProperty": "ActualUnderlineColorProperty", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineOpacityProperty": "ActualUnderlineOpacityProperty", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleColorProperty": "ActualUnderlineRippleColorProperty", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleOpacityProperty": "ActualUnderlineRippleOpacityProperty", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineRippleWidthProperty": "ActualUnderlineRippleWidthProperty", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualUnderlineWidthProperty": "ActualUnderlineWidthProperty", + "ActualValueField": "ActualValueField", + "ActualValueFieldProperty": "ActualValueFieldProperty", + "AllowFilter": "AllowFilter", + "AllowFilterProperty": "AllowFilterProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderColor": "BorderColor", + "BorderColorProperty": "BorderColorProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "CloseUp()": "CloseUp()", + "CloseUp": "CloseUp()", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceDesiredPropertiesProperty": "DataSourceDesiredPropertiesProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DropDown()": "DropDown()", + "DropDown": "DropDown()", + "DropDownButtonVisible": "DropDownButtonVisible", + "DropDownButtonVisibleProperty": "DropDownButtonVisibleProperty", + "EnableDisableFiltering(bool)": "EnableDisableFiltering(bool)", + "EnableDisableFiltering": "EnableDisableFiltering(bool)", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "Fields": "Fields", + "FieldsProperty": "FieldsProperty", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderColorProperty": "FocusBorderColorProperty", + "FocusBorderWidth": "FocusBorderWidth", + "FocusBorderWidthProperty": "FocusBorderWidthProperty", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineColorProperty": "FocusUnderlineColorProperty", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineOpacityProperty": "FocusUnderlineOpacityProperty", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FocusUnderlineRippleOpacityProperty": "FocusUnderlineRippleOpacityProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineColorProperty": "HoverUnderlineColorProperty", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineOpacityProperty": "HoverUnderlineOpacityProperty", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "HoverUnderlineWidthProperty": "HoverUnderlineWidthProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelProperty": "LabelProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "NoMatchesFoundLabel": "NoMatchesFoundLabel", + "NoMatchesFoundLabelBackgroundColor": "NoMatchesFoundLabelBackgroundColor", + "NoMatchesFoundLabelBackgroundColorProperty": "NoMatchesFoundLabelBackgroundColorProperty", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontFamilyProperty": "NoMatchesFoundLabelFontFamilyProperty", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontSizeProperty": "NoMatchesFoundLabelFontSizeProperty", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontStyleProperty": "NoMatchesFoundLabelFontStyleProperty", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "NoMatchesFoundLabelFontWeightProperty": "NoMatchesFoundLabelFontWeightProperty", + "NoMatchesFoundLabelProperty": "NoMatchesFoundLabelProperty", + "NoMatchesFoundLabelTextColor": "NoMatchesFoundLabelTextColor", + "NoMatchesFoundLabelTextColorProperty": "NoMatchesFoundLabelTextColorProperty", + "OnChange(InputChangeEventArgs)": "OnChange(InputChangeEventArgs)", + "OnChange": "OnChange(InputChangeEventArgs)", + "OnChanging(InputChangeEventArgs)": "OnChanging(InputChangeEventArgs)", + "OnChanging": "OnChanging(InputChangeEventArgs)", + "OnGotFocus(ComboEditorGotFocusEventArgs)": "OnGotFocus(ComboEditorGotFocusEventArgs)", + "OnGotFocus": "OnGotFocus(ComboEditorGotFocusEventArgs)", + "OnKeyDown(KeyEventArgs)": "OnKeyDown(KeyEventArgs)", + "OnKeyDown": "OnKeyDown(KeyEventArgs)", + "OnLostFocus(ComboEditorLostFocusEventArgs)": "OnLostFocus(ComboEditorLostFocusEventArgs)", + "OnLostFocus": "OnLostFocus(ComboEditorLostFocusEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectedValueChanged(ComboEditorValueChangedEventArgs)": "OnSelectedValueChanged(ComboEditorValueChangedEventArgs)", + "OnSelectedValueChanged": "OnSelectedValueChanged(ComboEditorValueChangedEventArgs)", + "OnTextValueChanged(ComboEditorTextChangedEventArgs)": "OnTextValueChanged(ComboEditorTextChangedEventArgs)", + "OnTextValueChanged": "OnTextValueChanged(ComboEditorTextChangedEventArgs)", + "Placeholder": "Placeholder", + "PlaceholderProperty": "PlaceholderProperty", + "Select()": "Select()", + "Select": "Select()", + "SelectGridRow(int)": "SelectGridRow(int)", + "SelectGridRow": "SelectGridRow(int)", + "Text": "Text", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TextField": "TextField", + "TextFieldProperty": "TextFieldProperty", + "TextProperty": "TextProperty", + "UnderlineColor": "UnderlineColor", + "UnderlineColorProperty": "UnderlineColorProperty", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineOpacityProperty": "UnderlineOpacityProperty", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleColorProperty": "UnderlineRippleColorProperty", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleOpacityProperty": "UnderlineRippleOpacityProperty", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineRippleWidthProperty": "UnderlineRippleWidthProperty", + "UnderlineWidth": "UnderlineWidth", + "UnderlineWidthProperty": "UnderlineWidthProperty", + "Value": "Value", + "ValueField": "ValueField", + "ValueFieldProperty": "ValueFieldProperty", + "ValueProperty": "ValueProperty", + "VerifyDisplayText()": "VerifyDisplayText()", + "VerifyDisplayText": "VerifyDisplayText()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamDashboardTile": [ + { + "p": "Infragistics.Uno.Dashboards", + "u": "/api/uno-platform/Infragistics.Uno.Dashboards/latest/classes/XamDashboardTile", + "k": "class", + "s": "classes", + "m": { + "XamDashboardTile()": "XamDashboardTile()", + "XamDashboardTile": "XamDashboardTile()", + "ActualBrushes": "ActualBrushes", + "ActualBrushesProperty": "ActualBrushesProperty", + "ActualHighlightedItemsSource": "ActualHighlightedItemsSource", + "ActualHighlightedItemsSourceProperty": "ActualHighlightedItemsSourceProperty", + "ActualItemsSource": "ActualItemsSource", + "ActualItemsSourceProperty": "ActualItemsSourceProperty", + "ActualOutlines": "ActualOutlines", + "ActualOutlinesProperty": "ActualOutlinesProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AutoCalloutsVisible": "AutoCalloutsVisible", + "AutoCalloutsVisibleProperty": "AutoCalloutsVisibleProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "CancelAnnotationFlow(string)": "CancelAnnotationFlow(string)", + "CancelAnnotationFlow": "CancelAnnotationFlow(string)", + "CategoryAxisMajorStroke": "CategoryAxisMajorStroke", + "CategoryAxisMajorStrokeProperty": "CategoryAxisMajorStrokeProperty", + "ClearSettings()": "ClearSettings()", + "ClearSettings": "ClearSettings()", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "Context": "Context", + "CreateLocalDataSource(object)": "CreateLocalDataSource(object)", + "CreateLocalDataSource": "CreateLocalDataSource(object)", + "CrosshairsAnnotationEnabled": "CrosshairsAnnotationEnabled", + "CrosshairsAnnotationEnabledProperty": "CrosshairsAnnotationEnabledProperty", + "CrosshairsDisplayMode": "CrosshairsDisplayMode", + "CrosshairsDisplayModeProperty": "CrosshairsDisplayModeProperty", + "Customizations": "Customizations", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "Dispose()": "Dispose()", + "Dispose": "Dispose()", + "Dispose(bool)": "Dispose(bool)", + "ExcludedProperties": "ExcludedProperties", + "ExcludedPropertiesProperty": "ExcludedPropertiesProperty", + "ExternalizeHandler(object)": "ExternalizeHandler(object)", + "ExternalizeHandler": "ExternalizeHandler(object)", + "FilterExpressions": "FilterExpressions", + "FinalValueAnnotationsVisible": "FinalValueAnnotationsVisible", + "FinalValueAnnotationsVisibleProperty": "FinalValueAnnotationsVisibleProperty", + "FinishAnnotationFlow(UserAnnotationInformation)": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishAnnotationFlow": "FinishAnnotationFlow(UserAnnotationInformation)", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "GetSettingsValue(string)": "GetSettingsValue(string)", + "GetSettingsValue": "GetSettingsValue(string)", + "GroupDescriptions": "GroupDescriptions", + "GroupSortDescriptions": "GroupSortDescriptions", + "GroupSorts": "GroupSorts", + "GroupSortsProperty": "GroupSortsProperty", + "HasModifiedSettings()": "HasModifiedSettings()", + "HasModifiedSettings": "HasModifiedSettings()", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "IncludedProperties": "IncludedProperties", + "IncludedPropertiesProperty": "IncludedPropertiesProperty", + "InitialFilter": "InitialFilter", + "InitialFilterExpressions": "InitialFilterExpressions", + "InitialFilterProperty": "InitialFilterProperty", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroupSortDescriptions": "InitialGroupSortDescriptions", + "InitialGroups": "InitialGroups", + "InitialGroupsProperty": "InitialGroupsProperty", + "InitialHighlightFilter": "InitialHighlightFilter", + "InitialHighlightFilterExpressions": "InitialHighlightFilterExpressions", + "InitialHighlightFilterProperty": "InitialHighlightFilterProperty", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSortsProperty": "InitialSortsProperty", + "InitialSummaries": "InitialSummaries", + "InitialSummariesProperty": "InitialSummariesProperty", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsUserAnnotationsEnabledProperty": "IsUserAnnotationsEnabledProperty", + "IsVisTypeRadial": "IsVisTypeRadial", + "IsVisTypeRadialProperty": "IsVisTypeRadialProperty", + "IsVisTypeStacked": "IsVisTypeStacked", + "IsVisTypeStackedProperty": "IsVisTypeStackedProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LoadAnnotationsFromJson(string)": "LoadAnnotationsFromJson(string)", + "LoadAnnotationsFromJson": "LoadAnnotationsFromJson(string)", + "OnChangingContent(DashboardTileChangingContentEventArgs)": "OnChangingContent(DashboardTileChangingContentEventArgs)", + "OnChangingContent": "OnChangingContent(DashboardTileChangingContentEventArgs)", + "OnContentSizeChanged()": "OnContentSizeChanged()", + "OnContentSizeChanged": "OnContentSizeChanged()", + "OnFilterStringErrorsParsing(DashboardTileFilterStringErrorsParsingEventArgs)": "OnFilterStringErrorsParsing(DashboardTileFilterStringErrorsParsingEventArgs)", + "OnFilterStringErrorsParsing": "OnFilterStringErrorsParsing(DashboardTileFilterStringErrorsParsingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "OnUIReady()": "OnUIReady()", + "OnUIReady": "OnUIReady()", + "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationInformationRequested": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnUserAnnotationToolTipContentUpdating": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveSettingsValue(string)": "RemoveSettingsValue(string)", + "RemoveSettingsValue": "RemoveSettingsValue(string)", + "ResetAnnotations()": "ResetAnnotations()", + "ResetAnnotations": "ResetAnnotations()", + "ResetZoom()": "ResetZoom()", + "ResetZoom": "ResetZoom()", + "SaveAnnotationsToJson()": "SaveAnnotationsToJson()", + "SaveAnnotationsToJson": "SaveAnnotationsToJson()", + "SelectedSeriesItems": "SelectedSeriesItems", + "ShouldAvoidAxisAnnotationCollisions": "ShouldAvoidAxisAnnotationCollisions", + "ShouldAvoidAxisAnnotationCollisionsProperty": "ShouldAvoidAxisAnnotationCollisionsProperty", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldDisplayMockDataProperty": "ShouldDisplayMockDataProperty", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "ShouldUseSkeletonStyleForMockDataProperty": "ShouldUseSkeletonStyleForMockDataProperty", + "SortDescriptions": "SortDescriptions", + "StartCreatingAnnotation()": "StartCreatingAnnotation()", + "StartCreatingAnnotation": "StartCreatingAnnotation()", + "StartDeletingAnnotation()": "StartDeletingAnnotation()", + "StartDeletingAnnotation": "StartDeletingAnnotation()", + "SummaryDescriptions": "SummaryDescriptions", + "TileTitle": "TileTitle", + "TileTitleProperty": "TileTitleProperty", + "TrendLineBrushes": "TrendLineBrushes", + "TrendLineBrushesProperty": "TrendLineBrushesProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "TrendLineTypes": "TrendLineTypes", + "TrendLineTypesProperty": "TrendLineTypesProperty", + "UpdateSettingsValue(string, object)": "UpdateSettingsValue(string, object)", + "UpdateSettingsValue": "UpdateSettingsValue(string, object)", + "ValidVisualizationTypePriorityThreshold": "ValidVisualizationTypePriorityThreshold", + "ValidVisualizationTypePriorityThresholdProperty": "ValidVisualizationTypePriorityThresholdProperty", + "ValidVisualizationTypes": "ValidVisualizationTypes", + "ValidVisualizationTypesProperty": "ValidVisualizationTypesProperty", + "ValueLines": "ValueLines", + "ValueLinesBrushes": "ValueLinesBrushes", + "ValueLinesBrushesProperty": "ValueLinesBrushesProperty", + "ValueLinesGlobalAverageBrush": "ValueLinesGlobalAverageBrush", + "ValueLinesGlobalAverageBrushProperty": "ValueLinesGlobalAverageBrushProperty", + "ValueLinesGlobalMaximumBrush": "ValueLinesGlobalMaximumBrush", + "ValueLinesGlobalMaximumBrushProperty": "ValueLinesGlobalMaximumBrushProperty", + "ValueLinesGlobalMinimumBrush": "ValueLinesGlobalMinimumBrush", + "ValueLinesGlobalMinimumBrushProperty": "ValueLinesGlobalMinimumBrushProperty", + "ValueLinesProperty": "ValueLinesProperty", + "VisualizationType": "VisualizationType", + "VisualizationTypeProperty": "VisualizationTypeProperty", + "ZoomIn(double)": "ZoomIn(double)", + "ZoomIn": "ZoomIn(double)", + "ZoomOut(double)": "ZoomOut(double)", + "ZoomOut": "ZoomOut(double)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamDataChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/XamDataChart", + "k": "class", + "s": "classes", + "m": { + "XamDataChart()": "XamDataChart()", + "XamDataChart": "XamDataChart()", + "ActualPlotAreaMarginBottom": "ActualPlotAreaMarginBottom", + "ActualPlotAreaMarginBottomProperty": "ActualPlotAreaMarginBottomProperty", + "ActualPlotAreaMarginLeft": "ActualPlotAreaMarginLeft", + "ActualPlotAreaMarginLeftProperty": "ActualPlotAreaMarginLeftProperty", + "ActualPlotAreaMarginRight": "ActualPlotAreaMarginRight", + "ActualPlotAreaMarginRightProperty": "ActualPlotAreaMarginRightProperty", + "ActualPlotAreaMarginTop": "ActualPlotAreaMarginTop", + "ActualPlotAreaMarginTopProperty": "ActualPlotAreaMarginTopProperty", + "ActualWindowScaleHorizontal": "ActualWindowScaleHorizontal", + "ActualWindowScaleHorizontalProperty": "ActualWindowScaleHorizontalProperty", + "ActualWindowScaleVertical": "ActualWindowScaleVertical", + "ActualWindowScaleVerticalProperty": "ActualWindowScaleVerticalProperty", + "AlignsGridLinesToPixels": "AlignsGridLinesToPixels", + "AlignsGridLinesToPixelsProperty": "AlignsGridLinesToPixelsProperty", + "AutoExpandMarginExtraPadding": "AutoExpandMarginExtraPadding", + "AutoExpandMarginExtraPaddingProperty": "AutoExpandMarginExtraPaddingProperty", + "AutoExpandMarginMaximumValue": "AutoExpandMarginMaximumValue", + "AutoExpandMarginMaximumValueProperty": "AutoExpandMarginMaximumValueProperty", + "AutoMarginAndAngleUpdateMode": "AutoMarginAndAngleUpdateMode", + "AutoMarginAndAngleUpdateModeProperty": "AutoMarginAndAngleUpdateModeProperty", + "Axes": "Axes", + "ComputedPlotAreaMarginMode": "ComputedPlotAreaMarginMode", + "ComputedPlotAreaMarginModeProperty": "ComputedPlotAreaMarginModeProperty", + "DefaultAxisMajorStroke": "DefaultAxisMajorStroke", + "DefaultAxisMajorStrokeProperty": "DefaultAxisMajorStrokeProperty", + "DefaultAxisMinorStroke": "DefaultAxisMinorStroke", + "DefaultAxisMinorStrokeProperty": "DefaultAxisMinorStrokeProperty", + "DefaultAxisStroke": "DefaultAxisStroke", + "DefaultAxisStrokeProperty": "DefaultAxisStrokeProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FullAxes": "FullAxes", + "FullAxesProperty": "FullAxesProperty", + "GridMode": "GridMode", + "GridModeProperty": "GridModeProperty", + "IsHorizontalZoomEnabled": "IsHorizontalZoomEnabled", + "IsHorizontalZoomEnabledProperty": "IsHorizontalZoomEnabledProperty", + "IsSquare": "IsSquare", + "IsSquareProperty": "IsSquareProperty", + "IsVerticalZoomEnabled": "IsVerticalZoomEnabled", + "IsVerticalZoomEnabledProperty": "IsVerticalZoomEnabledProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "PlotAreaMarginBottom": "PlotAreaMarginBottom", + "PlotAreaMarginBottomProperty": "PlotAreaMarginBottomProperty", + "PlotAreaMarginLeft": "PlotAreaMarginLeft", + "PlotAreaMarginLeftProperty": "PlotAreaMarginLeftProperty", + "PlotAreaMarginRight": "PlotAreaMarginRight", + "PlotAreaMarginRightProperty": "PlotAreaMarginRightProperty", + "PlotAreaMarginTop": "PlotAreaMarginTop", + "PlotAreaMarginTopProperty": "PlotAreaMarginTopProperty", + "RecalculateAutoLabelsAngle()": "RecalculateAutoLabelsAngle()", + "RecalculateAutoLabelsAngle": "RecalculateAutoLabelsAngle()", + "RecalculateMarginAutoExpansion()": "RecalculateMarginAutoExpansion()", + "RecalculateMarginAutoExpansion": "RecalculateMarginAutoExpansion()", + "RefreshComputedPlotAreaMargin()": "RefreshComputedPlotAreaMargin()", + "RefreshComputedPlotAreaMargin": "RefreshComputedPlotAreaMargin()", + "SeriesPlotAreaMarginHorizontalMode": "SeriesPlotAreaMarginHorizontalMode", + "SeriesPlotAreaMarginHorizontalModeProperty": "SeriesPlotAreaMarginHorizontalModeProperty", + "SeriesPlotAreaMarginVerticalMode": "SeriesPlotAreaMarginVerticalMode", + "SeriesPlotAreaMarginVerticalModeProperty": "SeriesPlotAreaMarginVerticalModeProperty", + "ShouldAutoExpandMarginForInitialLabels": "ShouldAutoExpandMarginForInitialLabels", + "ShouldAutoExpandMarginForInitialLabelsProperty": "ShouldAutoExpandMarginForInitialLabelsProperty", + "ShouldConsiderAutoRotationForInitialLabels": "ShouldConsiderAutoRotationForInitialLabels", + "ShouldConsiderAutoRotationForInitialLabelsProperty": "ShouldConsiderAutoRotationForInitialLabelsProperty", + "ShouldSuppressAxisLabelTruncation": "ShouldSuppressAxisLabelTruncation", + "ShouldSuppressAxisLabelTruncationProperty": "ShouldSuppressAxisLabelTruncationProperty", + "SuppressAutoMarginAndAngleRecalculation": "SuppressAutoMarginAndAngleRecalculation", + "SuppressAutoMarginAndAngleRecalculationProperty": "SuppressAutoMarginAndAngleRecalculationProperty", + "WindowScaleHorizontal": "WindowScaleHorizontal", + "WindowScaleHorizontalProperty": "WindowScaleHorizontalProperty", + "WindowScaleVertical": "WindowScaleVertical", + "WindowScaleVerticalProperty": "WindowScaleVerticalProperty" + } + } + ], + "XamDataGrid": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/XamDataGrid", + "k": "class", + "s": "classes", + "m": { + "XamDataGrid()": "XamDataGrid()", + "XamDataGrid": "XamDataGrid()", + "AcceptCommit(int)": "AcceptCommit(int)", + "AcceptCommit": "AcceptCommit(int)", + "AcceptEdit(int)": "AcceptEdit(int)", + "AcceptEdit": "AcceptEdit(int)", + "ActivationMode": "ActivationMode", + "ActivationModeProperty": "ActivationModeProperty", + "ActiveCell": "ActiveCell", + "ActiveCellProperty": "ActiveCellProperty", + "ActualBackground": "ActualBackground", + "ActualBackgroundProperty": "ActualBackgroundProperty", + "ActualBorder": "ActualBorder", + "ActualBorderProperty": "ActualBorderProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualColumns": "ActualColumns", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ActualHeaderHeight": "ActualHeaderHeight", + "ActualHeaderHeightProperty": "ActualHeaderHeightProperty", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualPrimaryKeyProperty": "ActualPrimaryKeyProperty", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "ActualVisibleRegion": "ActualVisibleRegion", + "ActualVisibleRegionProperty": "ActualVisibleRegionProperty", + "AllowCopyOperation": "AllowCopyOperation", + "AllowCopyOperationProperty": "AllowCopyOperationProperty", + "AnimationSettings": "AnimationSettings", + "AnimationSettingsProperty": "AnimationSettingsProperty", + "AutoAcceptEdits": "AutoAcceptEdits", + "AutoAcceptEditsProperty": "AutoAcceptEditsProperty", + "AutoGenerateColumns": "AutoGenerateColumns", + "AutoGenerateColumnsProperty": "AutoGenerateColumnsProperty", + "AutoGenerateDesiredProperties": "AutoGenerateDesiredProperties", + "AutoGenerateDesiredPropertiesProperty": "AutoGenerateDesiredPropertiesProperty", + "Background": "Background", + "BackgroundProperty": "BackgroundProperty", + "Border": "Border", + "BorderProperty": "BorderProperty", + "BorderWidthBottom": "BorderWidthBottom", + "BorderWidthBottomProperty": "BorderWidthBottomProperty", + "BorderWidthLeft": "BorderWidthLeft", + "BorderWidthLeftProperty": "BorderWidthLeftProperty", + "BorderWidthRight": "BorderWidthRight", + "BorderWidthRightProperty": "BorderWidthRightProperty", + "BorderWidthTop": "BorderWidthTop", + "BorderWidthTopProperty": "BorderWidthTopProperty", + "CanCommit": "CanCommit", + "CanCommitProperty": "CanCommitProperty", + "CanMoveColumnLeft(int)": "CanMoveColumnLeft(int)", + "CanMoveColumnLeft": "CanMoveColumnLeft(int)", + "CanMoveColumnRight(int)": "CanMoveColumnRight(int)", + "CanMoveColumnRight": "CanMoveColumnRight(int)", + "CanRedo": "CanRedo", + "CanRedoProperty": "CanRedoProperty", + "CanUndo": "CanUndo", + "CanUndoProperty": "CanUndoProperty", + "CancelEdits()": "CancelEdits()", + "CancelEdits": "CancelEdits()", + "CellBackground": "CellBackground", + "CellBackgroundProperty": "CellBackgroundProperty", + "CellDataLoadedAnimationMode": "CellDataLoadedAnimationMode", + "CellDataLoadedAnimationModeProperty": "CellDataLoadedAnimationModeProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CellSelectedBackground": "CellSelectedBackground", + "CellSelectedBackgroundProperty": "CellSelectedBackgroundProperty", + "CellSelectedTextColor": "CellSelectedTextColor", + "CellSelectedTextColorProperty": "CellSelectedTextColorProperty", + "CellSelectionAnimationMode": "CellSelectionAnimationMode", + "CellSelectionAnimationModeProperty": "CellSelectionAnimationModeProperty", + "CellTextColor": "CellTextColor", + "CellTextColorProperty": "CellTextColorProperty", + "ClearSelectionOnEscape": "ClearSelectionOnEscape", + "ClearSelectionOnEscapeProperty": "ClearSelectionOnEscapeProperty", + "ColumnAddingAnimationMode": "ColumnAddingAnimationMode", + "ColumnAddingAnimationModeProperty": "ColumnAddingAnimationModeProperty", + "ColumnAnimationSettings": "ColumnAnimationSettings", + "ColumnAnimationSettingsProperty": "ColumnAnimationSettingsProperty", + "ColumnExchangingAnimationMode": "ColumnExchangingAnimationMode", + "ColumnExchangingAnimationModeProperty": "ColumnExchangingAnimationModeProperty", + "ColumnHidingAnimationMode": "ColumnHidingAnimationMode", + "ColumnHidingAnimationModeProperty": "ColumnHidingAnimationModeProperty", + "ColumnMovingAnimationMode": "ColumnMovingAnimationMode", + "ColumnMovingAnimationModeProperty": "ColumnMovingAnimationModeProperty", + "ColumnMovingMode": "ColumnMovingMode", + "ColumnMovingModeProperty": "ColumnMovingModeProperty", + "ColumnMovingSeparator": "ColumnMovingSeparator", + "ColumnMovingSeparatorBackground": "ColumnMovingSeparatorBackground", + "ColumnMovingSeparatorBackgroundProperty": "ColumnMovingSeparatorBackgroundProperty", + "ColumnMovingSeparatorOpacity": "ColumnMovingSeparatorOpacity", + "ColumnMovingSeparatorOpacityProperty": "ColumnMovingSeparatorOpacityProperty", + "ColumnMovingSeparatorProperty": "ColumnMovingSeparatorProperty", + "ColumnMovingSeparatorWidth": "ColumnMovingSeparatorWidth", + "ColumnMovingSeparatorWidthProperty": "ColumnMovingSeparatorWidthProperty", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsAccentColorProperty": "ColumnOptionsAccentColorProperty", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsBackgroundProperty": "ColumnOptionsBackgroundProperty", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontFamilyProperty": "ColumnOptionsFontFamilyProperty", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontSizeProperty": "ColumnOptionsFontSizeProperty", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontStyleProperty": "ColumnOptionsFontStyleProperty", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsFontWeightProperty": "ColumnOptionsFontWeightProperty", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderBackgroundProperty": "ColumnOptionsGroupHeaderBackgroundProperty", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontFamilyProperty": "ColumnOptionsGroupHeaderFontFamilyProperty", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontSizeProperty": "ColumnOptionsGroupHeaderFontSizeProperty", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontStyleProperty": "ColumnOptionsGroupHeaderFontStyleProperty", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderFontWeightProperty": "ColumnOptionsGroupHeaderFontWeightProperty", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsGroupHeaderTextColorProperty": "ColumnOptionsGroupHeaderTextColorProperty", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHighlightColorProperty": "ColumnOptionsHighlightColorProperty", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsHoverBackgroundColorProperty": "ColumnOptionsHoverBackgroundColorProperty", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconAlignmentProperty": "ColumnOptionsIconAlignmentProperty", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconBehaviorProperty": "ColumnOptionsIconBehaviorProperty", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsIconColorProperty": "ColumnOptionsIconColorProperty", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsRowHeightProperty": "ColumnOptionsRowHeightProperty", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarActiveBackgroundProperty": "ColumnOptionsScrollbarActiveBackgroundProperty", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarBackgroundProperty": "ColumnOptionsScrollbarBackgroundProperty", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsScrollbarHoverBackgroundProperty": "ColumnOptionsScrollbarHoverBackgroundProperty", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsSeparatorColorProperty": "ColumnOptionsSeparatorColorProperty", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTextColorProperty": "ColumnOptionsTextColorProperty", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipBackgroundColorProperty": "ColumnOptionsToolTipBackgroundColorProperty", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "ColumnOptionsToolTipTextColorProperty": "ColumnOptionsToolTipTextColorProperty", + "ColumnPropertyUpdatingAnimationMode": "ColumnPropertyUpdatingAnimationMode", + "ColumnPropertyUpdatingAnimationModeProperty": "ColumnPropertyUpdatingAnimationModeProperty", + "ColumnResizingAnimationMode": "ColumnResizingAnimationMode", + "ColumnResizingAnimationModeProperty": "ColumnResizingAnimationModeProperty", + "ColumnResizingMode": "ColumnResizingMode", + "ColumnResizingModeProperty": "ColumnResizingModeProperty", + "ColumnResizingSeparator": "ColumnResizingSeparator", + "ColumnResizingSeparatorBackground": "ColumnResizingSeparatorBackground", + "ColumnResizingSeparatorBackgroundProperty": "ColumnResizingSeparatorBackgroundProperty", + "ColumnResizingSeparatorOpacity": "ColumnResizingSeparatorOpacity", + "ColumnResizingSeparatorOpacityProperty": "ColumnResizingSeparatorOpacityProperty", + "ColumnResizingSeparatorProperty": "ColumnResizingSeparatorProperty", + "ColumnResizingSeparatorWidth": "ColumnResizingSeparatorWidth", + "ColumnResizingSeparatorWidthProperty": "ColumnResizingSeparatorWidthProperty", + "ColumnShowingAnimationMode": "ColumnShowingAnimationMode", + "ColumnShowingAnimationModeProperty": "ColumnShowingAnimationModeProperty", + "Columns": "Columns", + "CommitEdits()": "CommitEdits()", + "CommitEdits": "CommitEdits()", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "DataIndexOfItem(object)": "DataIndexOfItem(object)", + "DataIndexOfItem": "DataIndexOfItem(object)", + "DataIndexOfPrimaryKey(object[])": "DataIndexOfPrimaryKey(object[])", + "DataIndexOfPrimaryKey": "DataIndexOfPrimaryKey(object[])", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceDesiredPropertiesProperty": "DataSourceDesiredPropertiesProperty", + "DefaultColumnMinWidth": "DefaultColumnMinWidth", + "DefaultColumnMinWidthProperty": "DefaultColumnMinWidthProperty", + "DefaultColumnWidth": "DefaultColumnWidth", + "DefaultColumnWidthProperty": "DefaultColumnWidthProperty", + "DeferEventForRowDragSelection": "DeferEventForRowDragSelection", + "DeferEventForRowDragSelectionProperty": "DeferEventForRowDragSelectionProperty", + "DeletedTextColor": "DeletedTextColor", + "DeletedTextColorProperty": "DeletedTextColorProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DeselectAllRows()": "DeselectAllRows()", + "DeselectAllRows": "DeselectAllRows()", + "DoActionAsync(Action)": "DoActionAsync(Action)", + "DoActionAsync": "DoActionAsync(Action)", + "EditFontFamily": "EditFontFamily", + "EditFontFamilyProperty": "EditFontFamilyProperty", + "EditFontSize": "EditFontSize", + "EditFontSizeProperty": "EditFontSizeProperty", + "EditFontStyle": "EditFontStyle", + "EditFontStyleProperty": "EditFontStyleProperty", + "EditFontWeight": "EditFontWeight", + "EditFontWeightProperty": "EditFontWeightProperty", + "EditMode": "EditMode", + "EditModeClickAction": "EditModeClickAction", + "EditModeClickActionProperty": "EditModeClickActionProperty", + "EditModeProperty": "EditModeProperty", + "EditOnKeyPress": "EditOnKeyPress", + "EditOnKeyPressProperty": "EditOnKeyPressProperty", + "EditOpacity": "EditOpacity", + "EditOpacityProperty": "EditOpacityProperty", + "EditRowBorder": "EditRowBorder", + "EditRowBorderProperty": "EditRowBorderProperty", + "EditRowBorderWidthBottom": "EditRowBorderWidthBottom", + "EditRowBorderWidthBottomProperty": "EditRowBorderWidthBottomProperty", + "EditRowBorderWidthLeft": "EditRowBorderWidthLeft", + "EditRowBorderWidthLeftProperty": "EditRowBorderWidthLeftProperty", + "EditRowBorderWidthRight": "EditRowBorderWidthRight", + "EditRowBorderWidthRightProperty": "EditRowBorderWidthRightProperty", + "EditRowBorderWidthTop": "EditRowBorderWidthTop", + "EditRowBorderWidthTopProperty": "EditRowBorderWidthTopProperty", + "EndEditMode(bool)": "EndEditMode(bool)", + "EndEditMode": "EndEditMode(bool)", + "EnterBehavior": "EnterBehavior", + "EnterBehaviorAfterEdit": "EnterBehaviorAfterEdit", + "EnterBehaviorAfterEditProperty": "EnterBehaviorAfterEditProperty", + "EnterBehaviorProperty": "EnterBehaviorProperty", + "ExchangeColumn(DataGridColumn, DataGridColumn)": "ExchangeColumn(DataGridColumn, DataGridColumn)", + "ExchangeColumn": "ExchangeColumn(DataGridColumn, DataGridColumn)", + "ExpandCollapseOnSectionHeaderClick": "ExpandCollapseOnSectionHeaderClick", + "ExpandCollapseOnSectionHeaderClickProperty": "ExpandCollapseOnSectionHeaderClickProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FilterComparisonType": "FilterComparisonType", + "FilterComparisonTypeProperty": "FilterComparisonTypeProperty", + "FilterExpressions": "FilterExpressions", + "FilterLogicalOperator": "FilterLogicalOperator", + "FilterLogicalOperatorProperty": "FilterLogicalOperatorProperty", + "FilterUIType": "FilterUIType", + "FilterUITypeProperty": "FilterUITypeProperty", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FocusScroller()": "FocusScroller()", + "FocusScroller": "FocusScroller()", + "GetColumnAtRenderedIndex(int)": "GetColumnAtRenderedIndex(int)", + "GetColumnAtRenderedIndex": "GetColumnAtRenderedIndex(int)", + "GetDataURLFromCache(string, string)": "GetDataURLFromCache(string, string)", + "GetDataURLFromCache": "GetDataURLFromCache(string, string)", + "GetFirstVisibleIndex()": "GetFirstVisibleIndex()", + "GetFirstVisibleIndex": "GetFirstVisibleIndex()", + "GetHitCell(double, double)": "GetHitCell(double, double)", + "GetHitCell": "GetHitCell(double, double)", + "GetIconFromCache(string, string)": "GetIconFromCache(string, string)", + "GetIconFromCache": "GetIconFromCache(string, string)", + "GetIconSource(string, string)": "GetIconSource(string, string)", + "GetIconSource": "GetIconSource(string, string)", + "GetLastVisibleIndex()": "GetLastVisibleIndex()", + "GetLastVisibleIndex": "GetLastVisibleIndex()", + "GetMultiPathSVGFromCache(string, string)": "GetMultiPathSVGFromCache(string, string)", + "GetMultiPathSVGFromCache": "GetMultiPathSVGFromCache(string, string)", + "GetRootSummaryResults()": "GetRootSummaryResults()", + "GetRootSummaryResults": "GetRootSummaryResults()", + "GetSectionSummaryResults(int)": "GetSectionSummaryResults(int)", + "GetSectionSummaryResults": "GetSectionSummaryResults(int)", + "GroupDescriptions": "GroupDescriptions", + "GroupHeaderDisplayMode": "GroupHeaderDisplayMode", + "GroupHeaderDisplayModeProperty": "GroupHeaderDisplayModeProperty", + "GroupSummaryDisplayMode": "GroupSummaryDisplayMode", + "GroupSummaryDisplayModeProperty": "GroupSummaryDisplayModeProperty", + "HeaderBackground": "HeaderBackground", + "HeaderBackgroundProperty": "HeaderBackgroundProperty", + "HeaderClickAction": "HeaderClickAction", + "HeaderClickActionProperty": "HeaderClickActionProperty", + "HeaderFontFamily": "HeaderFontFamily", + "HeaderFontFamilyProperty": "HeaderFontFamilyProperty", + "HeaderFontSize": "HeaderFontSize", + "HeaderFontSizeProperty": "HeaderFontSizeProperty", + "HeaderFontStyle": "HeaderFontStyle", + "HeaderFontStyleProperty": "HeaderFontStyleProperty", + "HeaderFontWeight": "HeaderFontWeight", + "HeaderFontWeightProperty": "HeaderFontWeightProperty", + "HeaderHeight": "HeaderHeight", + "HeaderHeightProperty": "HeaderHeightProperty", + "HeaderRowSeparator": "HeaderRowSeparator", + "HeaderRowSeparatorBackground": "HeaderRowSeparatorBackground", + "HeaderRowSeparatorBackgroundProperty": "HeaderRowSeparatorBackgroundProperty", + "HeaderRowSeparatorProperty": "HeaderRowSeparatorProperty", + "HeaderSeparator": "HeaderSeparator", + "HeaderSeparatorBackground": "HeaderSeparatorBackground", + "HeaderSeparatorBackgroundProperty": "HeaderSeparatorBackgroundProperty", + "HeaderSeparatorProperty": "HeaderSeparatorProperty", + "HeaderSeparatorWidth": "HeaderSeparatorWidth", + "HeaderSeparatorWidthProperty": "HeaderSeparatorWidthProperty", + "HeaderSortIndicatorColor": "HeaderSortIndicatorColor", + "HeaderSortIndicatorColorProperty": "HeaderSortIndicatorColorProperty", + "HeaderSortIndicatorStyle": "HeaderSortIndicatorStyle", + "HeaderSortIndicatorStyleProperty": "HeaderSortIndicatorStyleProperty", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HideThenRemoveColumn(DataGridColumn)": "HideThenRemoveColumn(DataGridColumn)", + "HideThenRemoveColumn": "HideThenRemoveColumn(DataGridColumn)", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroups": "InitialGroups", + "InitialGroupsProperty": "InitialGroupsProperty", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSortsProperty": "InitialSortsProperty", + "InitialSummaries": "InitialSummaries", + "InitialSummariesProperty": "InitialSummariesProperty", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "InvalidateVisibleRows()": "InvalidateVisibleRows()", + "InvalidateVisibleRows": "InvalidateVisibleRows()", + "IsActiveCellStyleEnabled": "IsActiveCellStyleEnabled", + "IsActiveCellStyleEnabledProperty": "IsActiveCellStyleEnabledProperty", + "IsActiveCellStyleEnabledPropertyName": "IsActiveCellStyleEnabledPropertyName", + "IsCanvasModeDisabled": "IsCanvasModeDisabled", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsEnabledProperty": "IsColumnOptionsEnabledProperty", + "IsColumnOptionsGroupingEnabled": "IsColumnOptionsGroupingEnabled", + "IsColumnOptionsGroupingEnabledProperty": "IsColumnOptionsGroupingEnabledProperty", + "IsColumnOptionsSummariesEnabled": "IsColumnOptionsSummariesEnabled", + "IsColumnOptionsSummariesEnabledProperty": "IsColumnOptionsSummariesEnabledProperty", + "IsGroupByAreaVisible": "IsGroupByAreaVisible", + "IsGroupByAreaVisibleProperty": "IsGroupByAreaVisibleProperty", + "IsGroupCollapsable": "IsGroupCollapsable", + "IsGroupCollapsableProperty": "IsGroupCollapsableProperty", + "IsGroupExpandedDefault": "IsGroupExpandedDefault", + "IsGroupExpandedDefaultProperty": "IsGroupExpandedDefaultProperty", + "IsGroupRowSticky": "IsGroupRowSticky", + "IsGroupRowStickyProperty": "IsGroupRowStickyProperty", + "IsHeaderSeparatorVisible": "IsHeaderSeparatorVisible", + "IsHeaderSeparatorVisibleProperty": "IsHeaderSeparatorVisibleProperty", + "IsPagerVisible": "IsPagerVisible", + "IsPagerVisibleProperty": "IsPagerVisibleProperty", + "IsPlaceholderRenderingEnabled": "IsPlaceholderRenderingEnabled", + "IsPlaceholderRenderingEnabledProperty": "IsPlaceholderRenderingEnabledProperty", + "IsRowHoverEnabled": "IsRowHoverEnabled", + "IsRowHoverEnabledProperty": "IsRowHoverEnabledProperty", + "IsToolbarColumnChooserVisible": "IsToolbarColumnChooserVisible", + "IsToolbarColumnChooserVisibleProperty": "IsToolbarColumnChooserVisibleProperty", + "IsToolbarColumnPinningVisible": "IsToolbarColumnPinningVisible", + "IsToolbarColumnPinningVisibleProperty": "IsToolbarColumnPinningVisibleProperty", + "IsToolbarVisible": "IsToolbarVisible", + "IsToolbarVisibleProperty": "IsToolbarVisibleProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LastStickyRowBackground": "LastStickyRowBackground", + "LastStickyRowBackgroundProperty": "LastStickyRowBackgroundProperty", + "LoadLayout(string)": "LoadLayout(string)", + "LoadLayout": "LoadLayout(string)", + "MaxSelectedCellRanges": "MaxSelectedCellRanges", + "MaxSelectedCellRangesProperty": "MaxSelectedCellRangesProperty", + "MergedCellEvaluationCriteria": "MergedCellEvaluationCriteria", + "MergedCellEvaluationCriteriaProperty": "MergedCellEvaluationCriteriaProperty", + "MergedCellMode": "MergedCellMode", + "MergedCellModeProperty": "MergedCellModeProperty", + "MergedCellVerticalAlignment": "MergedCellVerticalAlignment", + "MergedCellVerticalAlignmentProperty": "MergedCellVerticalAlignmentProperty", + "MouseDragSelectionEnabled": "MouseDragSelectionEnabled", + "MouseDragSelectionEnabledProperty": "MouseDragSelectionEnabledProperty", + "MoveColumn(int, int)": "MoveColumn(int, int)", + "MoveColumn": "MoveColumn(int, int)", + "MoveColumnLeft(int)": "MoveColumnLeft(int)", + "MoveColumnLeft": "MoveColumnLeft(int)", + "MoveColumnRight(int)": "MoveColumnRight(int)", + "MoveColumnRight": "MoveColumnRight(int)", + "MoveFocusNext()": "MoveFocusNext()", + "MoveFocusNext": "MoveFocusNext()", + "MoveFocusPrevious()": "MoveFocusPrevious()", + "MoveFocusPrevious": "MoveFocusPrevious()", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyOnAllSelectionChanges": "NotifyOnAllSelectionChanges", + "NotifyOnAllSelectionChangesProperty": "NotifyOnAllSelectionChangesProperty", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifyScrollStart()": "NotifyScrollStart()", + "NotifyScrollStart": "NotifyScrollStart()", + "NotifyScrollStop()": "NotifyScrollStop()", + "NotifyScrollStop": "NotifyScrollStop()", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "OnActiveCellChanged(GridActiveCellChangedEventArgs)": "OnActiveCellChanged(GridActiveCellChangedEventArgs)", + "OnActiveCellChanged": "OnActiveCellChanged(GridActiveCellChangedEventArgs)", + "OnActualColumnsChanged(GridColumnsChangedEventArgs)": "OnActualColumnsChanged(GridColumnsChangedEventArgs)", + "OnActualColumnsChanged": "OnActualColumnsChanged(GridColumnsChangedEventArgs)", + "OnCellClicked(DataGridCellEventArgs)": "OnCellClicked(DataGridCellEventArgs)", + "OnCellClicked": "OnCellClicked(DataGridCellEventArgs)", + "OnCellEditEnded(GridCellEditEndedEventArgs)": "OnCellEditEnded(GridCellEditEndedEventArgs)", + "OnCellEditEnded": "OnCellEditEnded(GridCellEditEndedEventArgs)", + "OnCellEditStarted(GridCellEditStartedEventArgs)": "OnCellEditStarted(GridCellEditStartedEventArgs)", + "OnCellEditStarted": "OnCellEditStarted(GridCellEditStartedEventArgs)", + "OnCellValueChanging(GridCellValueChangingEventArgs)": "OnCellValueChanging(GridCellValueChangingEventArgs)", + "OnCellValueChanging": "OnCellValueChanging(GridCellValueChangingEventArgs)", + "OnColumnExchangingAnimationCanceled(EventArgs)": "OnColumnExchangingAnimationCanceled(EventArgs)", + "OnColumnExchangingAnimationCanceled": "OnColumnExchangingAnimationCanceled(EventArgs)", + "OnColumnExchangingAnimationCompleted(EventArgs)": "OnColumnExchangingAnimationCompleted(EventArgs)", + "OnColumnExchangingAnimationCompleted": "OnColumnExchangingAnimationCompleted(EventArgs)", + "OnColumnHiddenChanged(ColumnHiddenChangedEventArgs)": "OnColumnHiddenChanged(ColumnHiddenChangedEventArgs)", + "OnColumnHiddenChanged": "OnColumnHiddenChanged(ColumnHiddenChangedEventArgs)", + "OnColumnHidingAnimationCanceled(EventArgs)": "OnColumnHidingAnimationCanceled(EventArgs)", + "OnColumnHidingAnimationCanceled": "OnColumnHidingAnimationCanceled(EventArgs)", + "OnColumnHidingAnimationCompleted(EventArgs)": "OnColumnHidingAnimationCompleted(EventArgs)", + "OnColumnHidingAnimationCompleted": "OnColumnHidingAnimationCompleted(EventArgs)", + "OnColumnMovingAnimationCanceled(EventArgs)": "OnColumnMovingAnimationCanceled(EventArgs)", + "OnColumnMovingAnimationCanceled": "OnColumnMovingAnimationCanceled(EventArgs)", + "OnColumnMovingAnimationCompleted(EventArgs)": "OnColumnMovingAnimationCompleted(EventArgs)", + "OnColumnMovingAnimationCompleted": "OnColumnMovingAnimationCompleted(EventArgs)", + "OnColumnPinnedChanged(ColumnPinnedChangedEventArgs)": "OnColumnPinnedChanged(ColumnPinnedChangedEventArgs)", + "OnColumnPinnedChanged": "OnColumnPinnedChanged(ColumnPinnedChangedEventArgs)", + "OnColumnShowingAnimationCanceled(EventArgs)": "OnColumnShowingAnimationCanceled(EventArgs)", + "OnColumnShowingAnimationCanceled": "OnColumnShowingAnimationCanceled(EventArgs)", + "OnColumnShowingAnimationCompleted(EventArgs)": "OnColumnShowingAnimationCompleted(EventArgs)", + "OnColumnShowingAnimationCompleted": "OnColumnShowingAnimationCompleted(EventArgs)", + "OnColumnWidthChanged(GridColumnWidthChangedEventArgs)": "OnColumnWidthChanged(GridColumnWidthChangedEventArgs)", + "OnColumnWidthChanged": "OnColumnWidthChanged(GridColumnWidthChangedEventArgs)", + "OnColumnsAutoGenerated(GridColumnsAutoGeneratedEventArgs)": "OnColumnsAutoGenerated(GridColumnsAutoGeneratedEventArgs)", + "OnColumnsAutoGenerated": "OnColumnsAutoGenerated(GridColumnsAutoGeneratedEventArgs)", + "OnCustomFilterRequested(GridCustomFilterRequestedEventArgs)": "OnCustomFilterRequested(GridCustomFilterRequestedEventArgs)", + "OnCustomFilterRequested": "OnCustomFilterRequested(GridCustomFilterRequestedEventArgs)", + "OnDataCommitted(GridDataCommittedEventArgs)": "OnDataCommitted(GridDataCommittedEventArgs)", + "OnDataCommitted": "OnDataCommitted(GridDataCommittedEventArgs)", + "OnDataCommitting(GridDataCommittingEventArgs)": "OnDataCommitting(GridDataCommittingEventArgs)", + "OnDataCommitting": "OnDataCommitting(GridDataCommittingEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFilterExpressionsChanged(GridFilterExpressionsEventArgs)": "OnFilterExpressionsChanged(GridFilterExpressionsEventArgs)", + "OnFilterExpressionsChanged": "OnFilterExpressionsChanged(GridFilterExpressionsEventArgs)", + "OnFilterExpressionsChanging(GridFilterExpressionsEventArgs)": "OnFilterExpressionsChanging(GridFilterExpressionsEventArgs)", + "OnFilterExpressionsChanging": "OnFilterExpressionsChanging(GridFilterExpressionsEventArgs)", + "OnFilterRowDataBinding(DataBindingEventArgs)": "OnFilterRowDataBinding(DataBindingEventArgs)", + "OnFilterRowDataBinding": "OnFilterRowDataBinding(DataBindingEventArgs)", + "OnFilterRowDataBound(DataBindingEventArgs)": "OnFilterRowDataBound(DataBindingEventArgs)", + "OnFilterRowDataBound": "OnFilterRowDataBound(DataBindingEventArgs)", + "OnGroupDescriptionsChanged(GridGroupDescriptionsChangedEventArgs)": "OnGroupDescriptionsChanged(GridGroupDescriptionsChangedEventArgs)", + "OnGroupDescriptionsChanged": "OnGroupDescriptionsChanged(GridGroupDescriptionsChangedEventArgs)", + "OnHyperlinkNavigationRequested(GridHyperlinkNavigationRequestedEventArgs)": "OnHyperlinkNavigationRequested(GridHyperlinkNavigationRequestedEventArgs)", + "OnHyperlinkNavigationRequested": "OnHyperlinkNavigationRequested(GridHyperlinkNavigationRequestedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRootSummariesChanged(DataSourceRootSummariesChangedEventArgs)": "OnRootSummariesChanged(DataSourceRootSummariesChangedEventArgs)", + "OnRootSummariesChanged": "OnRootSummariesChanged(DataSourceRootSummariesChangedEventArgs)", + "OnRowEditEnded(GridRowEditEndedEventArgs)": "OnRowEditEnded(GridRowEditEndedEventArgs)", + "OnRowEditEnded": "OnRowEditEnded(GridRowEditEndedEventArgs)", + "OnRowEditStarted(GridRowEditStartedEventArgs)": "OnRowEditStarted(GridRowEditStartedEventArgs)", + "OnRowEditStarted": "OnRowEditStarted(GridRowEditStartedEventArgs)", + "OnSelectedCellRangesChanged(GridSelectedCellRangesChangedEventArgs)": "OnSelectedCellRangesChanged(GridSelectedCellRangesChangedEventArgs)", + "OnSelectedCellRangesChanged": "OnSelectedCellRangesChanged(GridSelectedCellRangesChangedEventArgs)", + "OnSelectedCellsChanged(GridSelectedCellsChangedEventArgs)": "OnSelectedCellsChanged(GridSelectedCellsChangedEventArgs)", + "OnSelectedCellsChanged": "OnSelectedCellsChanged(GridSelectedCellsChangedEventArgs)", + "OnSelectedItemsChanged(GridSelectedItemsChangedEventArgs)": "OnSelectedItemsChanged(GridSelectedItemsChangedEventArgs)", + "OnSelectedItemsChanged": "OnSelectedItemsChanged(GridSelectedItemsChangedEventArgs)", + "OnSelectedKeysChanged(GridSelectedKeysChangedEventArgs)": "OnSelectedKeysChanged(GridSelectedKeysChangedEventArgs)", + "OnSelectedKeysChanged": "OnSelectedKeysChanged(GridSelectedKeysChangedEventArgs)", + "OnSelectionChanged(GridSelectionChangedEventArgs)": "OnSelectionChanged(GridSelectionChangedEventArgs)", + "OnSelectionChanged": "OnSelectionChanged(GridSelectionChangedEventArgs)", + "OnSizeChanged(GridSizeChangedEventArgs)": "OnSizeChanged(GridSizeChangedEventArgs)", + "OnSizeChanged": "OnSizeChanged(GridSizeChangedEventArgs)", + "OnSortDescriptionsChanged(GridSortDescriptionsChangedEventArgs)": "OnSortDescriptionsChanged(GridSortDescriptionsChangedEventArgs)", + "OnSortDescriptionsChanged": "OnSortDescriptionsChanged(GridSortDescriptionsChangedEventArgs)", + "OnSummaryDescriptionsChanged(GridSummaryDescriptionsChangedEventArgs)": "OnSummaryDescriptionsChanged(GridSummaryDescriptionsChangedEventArgs)", + "OnSummaryDescriptionsChanged": "OnSummaryDescriptionsChanged(GridSummaryDescriptionsChangedEventArgs)", + "PageSize": "PageSize", + "PageSizeProperty": "PageSizeProperty", + "PinColumn(DataGridColumn, PinnedPositions)": "PinColumn(DataGridColumn, PinnedPositions)", + "PinColumn": "PinColumn(DataGridColumn, PinnedPositions)", + "PinnedAreaSeparator": "PinnedAreaSeparator", + "PinnedAreaSeparatorProperty": "PinnedAreaSeparatorProperty", + "PinnedAreaSeparatorWidth": "PinnedAreaSeparatorWidth", + "PinnedAreaSeparatorWidthProperty": "PinnedAreaSeparatorWidthProperty", + "PinnedItems": "PinnedItems", + "PinnedKeys": "PinnedKeys", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowBackgroundProperty": "PinnedRowBackgroundProperty", + "PinnedRowOpacity": "PinnedRowOpacity", + "PinnedRowOpacityProperty": "PinnedRowOpacityProperty", + "PreventDefaultNavigationColumnList": "PreventDefaultNavigationColumnList", + "PreventDefaultNavigationColumnListProperty": "PreventDefaultNavigationColumnListProperty", + "PrimaryKey": "PrimaryKey", + "PrimaryKeyProperty": "PrimaryKeyProperty", + "ReactsToFilterChanges": "ReactsToFilterChanges", + "ReactsToFilterChangesProperty": "ReactsToFilterChangesProperty", + "ReactsToGroupChanges": "ReactsToGroupChanges", + "ReactsToGroupChangesProperty": "ReactsToGroupChangesProperty", + "ReactsToSortChanges": "ReactsToSortChanges", + "ReactsToSortChangesProperty": "ReactsToSortChangesProperty", + "Redo()": "Redo()", + "Redo": "Redo()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RegisterIconFromDataURL(string, string, string)": "RegisterIconFromDataURL(string, string, string)", + "RegisterIconFromDataURL": "RegisterIconFromDataURL(string, string, string)", + "RegisterIconFromText(string, string, string)": "RegisterIconFromText(string, string, string)", + "RegisterIconFromText": "RegisterIconFromText(string, string, string)", + "RegisterIconSource(string, string, object)": "RegisterIconSource(string, string, object)", + "RegisterIconSource": "RegisterIconSource(string, string, object)", + "RegisterMultiPathSVG(string, string, string[])": "RegisterMultiPathSVG(string, string, string[])", + "RegisterMultiPathSVG": "RegisterMultiPathSVG(string, string, string[])", + "RejectCommit(int)": "RejectCommit(int)", + "RejectCommit": "RejectCommit(int)", + "RejectEdit(int)": "RejectEdit(int)", + "RejectEdit": "RejectEdit(int)", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "RemoveItemByKey(object[])": "RemoveItemByKey(object[])", + "RemoveItemByKey": "RemoveItemByKey(object[])", + "ResolveCellValue(CellKey)": "ResolveCellValue(CellKey)", + "ResolveCellValue": "ResolveCellValue(CellKey)", + "ResolveCellValueFromPosition(int, int)": "ResolveCellValueFromPosition(int, int)", + "ResolveCellValueFromPosition": "ResolveCellValueFromPosition(int, int)", + "ResponsiveStates": "ResponsiveStates", + "ResponsiveStatesProperty": "ResponsiveStatesProperty", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "RowHoverAnimationMode": "RowHoverAnimationMode", + "RowHoverAnimationModeProperty": "RowHoverAnimationModeProperty", + "RowHoverBackground": "RowHoverBackground", + "RowHoverBackgroundProperty": "RowHoverBackgroundProperty", + "RowHoverTextColor": "RowHoverTextColor", + "RowHoverTextColorProperty": "RowHoverTextColorProperty", + "RowSelectionAnimationMode": "RowSelectionAnimationMode", + "RowSelectionAnimationModeProperty": "RowSelectionAnimationModeProperty", + "RowSeparator": "RowSeparator", + "RowSeparatorBackground": "RowSeparatorBackground", + "RowSeparatorBackgroundProperty": "RowSeparatorBackgroundProperty", + "RowSeparatorHeight": "RowSeparatorHeight", + "RowSeparatorHeightProperty": "RowSeparatorHeightProperty", + "RowSeparatorLastStickyRowBackground": "RowSeparatorLastStickyRowBackground", + "RowSeparatorLastStickyRowBackgroundProperty": "RowSeparatorLastStickyRowBackgroundProperty", + "RowSeparatorPinnedRowBackground": "RowSeparatorPinnedRowBackground", + "RowSeparatorPinnedRowBackgroundProperty": "RowSeparatorPinnedRowBackgroundProperty", + "RowSeparatorProperty": "RowSeparatorProperty", + "RowSeparatorStickyRowBackground": "RowSeparatorStickyRowBackground", + "RowSeparatorStickyRowBackgroundProperty": "RowSeparatorStickyRowBackgroundProperty", + "SaveLayout()": "SaveLayout()", + "SaveLayout": "SaveLayout()", + "ScrollToColumnByIndex(double)": "ScrollToColumnByIndex(double)", + "ScrollToColumnByIndex": "ScrollToColumnByIndex(double)", + "ScrollToItem(object)": "ScrollToItem(object)", + "ScrollToItem": "ScrollToItem(object)", + "ScrollToLastRowByIndex(double)": "ScrollToLastRowByIndex(double)", + "ScrollToLastRowByIndex": "ScrollToLastRowByIndex(double)", + "ScrollToPrimaryKey(object[])": "ScrollToPrimaryKey(object[])", + "ScrollToPrimaryKey": "ScrollToPrimaryKey(object[])", + "ScrollToRowByIndex(double)": "ScrollToRowByIndex(double)", + "ScrollToRowByIndex": "ScrollToRowByIndex(double)", + "ScrollbarActiveBackground": "ScrollbarActiveBackground", + "ScrollbarActiveBackgroundProperty": "ScrollbarActiveBackgroundProperty", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarBackgroundProperty": "ScrollbarBackgroundProperty", + "ScrollbarHoverBackground": "ScrollbarHoverBackground", + "ScrollbarHoverBackgroundProperty": "ScrollbarHoverBackgroundProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SectionHeader": "SectionHeader", + "SectionHeaderBackground": "SectionHeaderBackground", + "SectionHeaderBackgroundProperty": "SectionHeaderBackgroundProperty", + "SectionHeaderExpansionIndicatorIconColor": "SectionHeaderExpansionIndicatorIconColor", + "SectionHeaderExpansionIndicatorIconColorProperty": "SectionHeaderExpansionIndicatorIconColorProperty", + "SectionHeaderFontFamily": "SectionHeaderFontFamily", + "SectionHeaderFontFamilyProperty": "SectionHeaderFontFamilyProperty", + "SectionHeaderFontSize": "SectionHeaderFontSize", + "SectionHeaderFontSizeProperty": "SectionHeaderFontSizeProperty", + "SectionHeaderFontStyle": "SectionHeaderFontStyle", + "SectionHeaderFontStyleProperty": "SectionHeaderFontStyleProperty", + "SectionHeaderFontWeight": "SectionHeaderFontWeight", + "SectionHeaderFontWeightProperty": "SectionHeaderFontWeightProperty", + "SectionHeaderProperty": "SectionHeaderProperty", + "SectionHeaderSelectedBackground": "SectionHeaderSelectedBackground", + "SectionHeaderSelectedBackgroundProperty": "SectionHeaderSelectedBackgroundProperty", + "SectionHeaderTextColor": "SectionHeaderTextColor", + "SectionHeaderTextColorProperty": "SectionHeaderTextColorProperty", + "SelectAllRows()": "SelectAllRows()", + "SelectAllRows": "SelectAllRows()", + "SelectedCellRanges": "SelectedCellRanges", + "SelectedCells": "SelectedCells", + "SelectedItems": "SelectedItems", + "SelectedKeys": "SelectedKeys", + "SelectionBehavior": "SelectionBehavior", + "SelectionBehaviorProperty": "SelectionBehaviorProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "SetActiveResponsiveState(string)": "SetActiveResponsiveState(string)", + "SetActiveResponsiveState": "SetActiveResponsiveState(string)", + "SetClipboardText(string)": "SetClipboardText(string)", + "SetClipboardText": "SetClipboardText(string)", + "SetDefaultCursor()": "SetDefaultCursor()", + "SetDefaultCursor": "SetDefaultCursor()", + "SetEditError(int, string)": "SetEditError(int, string)", + "SetEditError": "SetEditError(int, string)", + "SetHandCursor()": "SetHandCursor()", + "SetHandCursor": "SetHandCursor()", + "SetResizeCursor()": "SetResizeCursor()", + "SetResizeCursor": "SetResizeCursor()", + "SetScrollerVerticalTrackInset(int)": "SetScrollerVerticalTrackInset(int)", + "SetScrollerVerticalTrackInset": "SetScrollerVerticalTrackInset(int)", + "ShiftSectionContent": "ShiftSectionContent", + "ShiftSectionContentProperty": "ShiftSectionContentProperty", + "SortDescriptions": "SortDescriptions", + "StartEditMode()": "StartEditMode()", + "StartEditMode": "StartEditMode()", + "StickyRowBackground": "StickyRowBackground", + "StickyRowBackgroundProperty": "StickyRowBackgroundProperty", + "StopPropagation": "StopPropagation", + "StopPropagationProperty": "StopPropagationProperty", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryRootBackground": "SummaryRootBackground", + "SummaryRootBackgroundProperty": "SummaryRootBackgroundProperty", + "SummaryRootLabelFontFamily": "SummaryRootLabelFontFamily", + "SummaryRootLabelFontFamilyProperty": "SummaryRootLabelFontFamilyProperty", + "SummaryRootLabelFontSize": "SummaryRootLabelFontSize", + "SummaryRootLabelFontSizeProperty": "SummaryRootLabelFontSizeProperty", + "SummaryRootLabelFontStyle": "SummaryRootLabelFontStyle", + "SummaryRootLabelFontStyleProperty": "SummaryRootLabelFontStyleProperty", + "SummaryRootLabelFontWeight": "SummaryRootLabelFontWeight", + "SummaryRootLabelFontWeightProperty": "SummaryRootLabelFontWeightProperty", + "SummaryRootLabelTextColor": "SummaryRootLabelTextColor", + "SummaryRootLabelTextColorProperty": "SummaryRootLabelTextColorProperty", + "SummaryRootSelectedBackground": "SummaryRootSelectedBackground", + "SummaryRootSelectedBackgroundProperty": "SummaryRootSelectedBackgroundProperty", + "SummaryRootValueFontFamily": "SummaryRootValueFontFamily", + "SummaryRootValueFontFamilyProperty": "SummaryRootValueFontFamilyProperty", + "SummaryRootValueFontSize": "SummaryRootValueFontSize", + "SummaryRootValueFontSizeProperty": "SummaryRootValueFontSizeProperty", + "SummaryRootValueFontStyle": "SummaryRootValueFontStyle", + "SummaryRootValueFontStyleProperty": "SummaryRootValueFontStyleProperty", + "SummaryRootValueFontWeight": "SummaryRootValueFontWeight", + "SummaryRootValueFontWeightProperty": "SummaryRootValueFontWeightProperty", + "SummaryRootValueTextColor": "SummaryRootValueTextColor", + "SummaryRootValueTextColorProperty": "SummaryRootValueTextColorProperty", + "SummaryRowRoot": "SummaryRowRoot", + "SummaryRowRootProperty": "SummaryRowRootProperty", + "SummaryRowSection": "SummaryRowSection", + "SummaryRowSectionProperty": "SummaryRowSectionProperty", + "SummaryScope": "SummaryScope", + "SummaryScopeProperty": "SummaryScopeProperty", + "SummarySectionBackground": "SummarySectionBackground", + "SummarySectionBackgroundProperty": "SummarySectionBackgroundProperty", + "SummarySectionLabelFontFamily": "SummarySectionLabelFontFamily", + "SummarySectionLabelFontFamilyProperty": "SummarySectionLabelFontFamilyProperty", + "SummarySectionLabelFontSize": "SummarySectionLabelFontSize", + "SummarySectionLabelFontSizeProperty": "SummarySectionLabelFontSizeProperty", + "SummarySectionLabelFontStyle": "SummarySectionLabelFontStyle", + "SummarySectionLabelFontStyleProperty": "SummarySectionLabelFontStyleProperty", + "SummarySectionLabelFontWeight": "SummarySectionLabelFontWeight", + "SummarySectionLabelFontWeightProperty": "SummarySectionLabelFontWeightProperty", + "SummarySectionLabelTextColor": "SummarySectionLabelTextColor", + "SummarySectionLabelTextColorProperty": "SummarySectionLabelTextColorProperty", + "SummarySectionSelectedBackground": "SummarySectionSelectedBackground", + "SummarySectionSelectedBackgroundProperty": "SummarySectionSelectedBackgroundProperty", + "SummarySectionValueFontFamily": "SummarySectionValueFontFamily", + "SummarySectionValueFontFamilyProperty": "SummarySectionValueFontFamilyProperty", + "SummarySectionValueFontSize": "SummarySectionValueFontSize", + "SummarySectionValueFontSizeProperty": "SummarySectionValueFontSizeProperty", + "SummarySectionValueFontStyle": "SummarySectionValueFontStyle", + "SummarySectionValueFontStyleProperty": "SummarySectionValueFontStyleProperty", + "SummarySectionValueFontWeight": "SummarySectionValueFontWeight", + "SummarySectionValueFontWeightProperty": "SummarySectionValueFontWeightProperty", + "SummarySectionValueTextColor": "SummarySectionValueTextColor", + "SummarySectionValueTextColorProperty": "SummarySectionValueTextColorProperty", + "Theme": "Theme", + "ThemeProperty": "ThemeProperty", + "TodayOverride": "TodayOverride", + "TodayOverrideProperty": "TodayOverrideProperty", + "ToolbarColumnChooserText": "ToolbarColumnChooserText", + "ToolbarColumnChooserTextProperty": "ToolbarColumnChooserTextProperty", + "ToolbarColumnChooserTitle": "ToolbarColumnChooserTitle", + "ToolbarColumnChooserTitleProperty": "ToolbarColumnChooserTitleProperty", + "ToolbarColumnPinningText": "ToolbarColumnPinningText", + "ToolbarColumnPinningTextProperty": "ToolbarColumnPinningTextProperty", + "ToolbarColumnPinningTitle": "ToolbarColumnPinningTitle", + "ToolbarColumnPinningTitleProperty": "ToolbarColumnPinningTitleProperty", + "ToolbarTitle": "ToolbarTitle", + "ToolbarTitleProperty": "ToolbarTitleProperty", + "Undo()": "Undo()", + "Undo": "Undo()", + "UpdatePropertyAtKey(object[], string, object)": "UpdatePropertyAtKey(object[], string, object)", + "UpdatePropertyAtKey": "UpdatePropertyAtKey(object[], string, object)", + "UseNewerColumnOptionsMenu": "UseNewerColumnOptionsMenu", + "UseNewerColumnOptionsMenuProperty": "UseNewerColumnOptionsMenuProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamDataLegend": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/XamDataLegend", + "k": "class", + "s": "classes", + "m": { + "XamDataLegend()": "XamDataLegend()", + "XamDataLegend": "XamDataLegend()", + "ActualBackground": "ActualBackground", + "ActualBackgroundProperty": "ActualBackgroundProperty", + "ActualBadgesVisible": "ActualBadgesVisible", + "ActualBadgesVisibleProperty": "ActualBadgesVisibleProperty", + "ActualBorderBrush": "ActualBorderBrush", + "ActualBorderBrushProperty": "ActualBorderBrushProperty", + "ActualBorderThicknessBottom": "ActualBorderThicknessBottom", + "ActualBorderThicknessBottomProperty": "ActualBorderThicknessBottomProperty", + "ActualBorderThicknessLeft": "ActualBorderThicknessLeft", + "ActualBorderThicknessLeftProperty": "ActualBorderThicknessLeftProperty", + "ActualBorderThicknessRight": "ActualBorderThicknessRight", + "ActualBorderThicknessRightProperty": "ActualBorderThicknessRightProperty", + "ActualBorderThicknessTop": "ActualBorderThicknessTop", + "ActualBorderThicknessTopProperty": "ActualBorderThicknessTopProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginBottomProperty": "BadgeMarginBottomProperty", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginLeftProperty": "BadgeMarginLeftProperty", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginRightProperty": "BadgeMarginRightProperty", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeMarginTopProperty": "BadgeMarginTopProperty", + "BadgeShape": "BadgeShape", + "BadgeShapeProperty": "BadgeShapeProperty", + "ContentBackground": "ContentBackground", + "ContentBackgroundProperty": "ContentBackgroundProperty", + "ContentBorderBrush": "ContentBorderBrush", + "ContentBorderBrushProperty": "ContentBorderBrushProperty", + "ContentBorderThickness": "ContentBorderThickness", + "ContentBorderThicknessProperty": "ContentBorderThicknessProperty", + "ExcludedColumns": "ExcludedColumns", + "ExcludedColumnsProperty": "ExcludedColumnsProperty", + "ExcludedSeries": "ExcludedSeries", + "ExcludedSeriesProperty": "ExcludedSeriesProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)": "GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedNumber": "GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedString(double, DataAbbreviationMode, int, int)": "GetAbbreviatedString(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedString": "GetAbbreviatedString(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)": "GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedSymbol": "GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)", + "GroupRowMarginBottom": "GroupRowMarginBottom", + "GroupRowMarginBottomProperty": "GroupRowMarginBottomProperty", + "GroupRowMarginLeft": "GroupRowMarginLeft", + "GroupRowMarginLeftProperty": "GroupRowMarginLeftProperty", + "GroupRowMarginRight": "GroupRowMarginRight", + "GroupRowMarginRightProperty": "GroupRowMarginRightProperty", + "GroupRowMarginTop": "GroupRowMarginTop", + "GroupRowMarginTopProperty": "GroupRowMarginTopProperty", + "GroupRowVisible": "GroupRowVisible", + "GroupRowVisibleProperty": "GroupRowVisibleProperty", + "GroupTextColor": "GroupTextColor", + "GroupTextColorProperty": "GroupTextColorProperty", + "GroupTextFontFamily": "GroupTextFontFamily", + "GroupTextFontFamilyProperty": "GroupTextFontFamilyProperty", + "GroupTextFontSize": "GroupTextFontSize", + "GroupTextFontSizeProperty": "GroupTextFontSizeProperty", + "GroupTextFontStyle": "GroupTextFontStyle", + "GroupTextFontStyleProperty": "GroupTextFontStyleProperty", + "GroupTextFontWeight": "GroupTextFontWeight", + "GroupTextFontWeightProperty": "GroupTextFontWeightProperty", + "GroupTextMarginBottom": "GroupTextMarginBottom", + "GroupTextMarginBottomProperty": "GroupTextMarginBottomProperty", + "GroupTextMarginLeft": "GroupTextMarginLeft", + "GroupTextMarginLeftProperty": "GroupTextMarginLeftProperty", + "GroupTextMarginRight": "GroupTextMarginRight", + "GroupTextMarginRightProperty": "GroupTextMarginRightProperty", + "GroupTextMarginTop": "GroupTextMarginTop", + "GroupTextMarginTopProperty": "GroupTextMarginTopProperty", + "HeaderFormatCulture": "HeaderFormatCulture", + "HeaderFormatCultureProperty": "HeaderFormatCultureProperty", + "HeaderFormatDate": "HeaderFormatDate", + "HeaderFormatDateProperty": "HeaderFormatDateProperty", + "HeaderFormatSpecifiers": "HeaderFormatSpecifiers", + "HeaderFormatSpecifiersProperty": "HeaderFormatSpecifiersProperty", + "HeaderFormatString": "HeaderFormatString", + "HeaderFormatStringProperty": "HeaderFormatStringProperty", + "HeaderFormatTime": "HeaderFormatTime", + "HeaderFormatTimeProperty": "HeaderFormatTimeProperty", + "HeaderRowMarginBottom": "HeaderRowMarginBottom", + "HeaderRowMarginBottomProperty": "HeaderRowMarginBottomProperty", + "HeaderRowMarginLeft": "HeaderRowMarginLeft", + "HeaderRowMarginLeftProperty": "HeaderRowMarginLeftProperty", + "HeaderRowMarginRight": "HeaderRowMarginRight", + "HeaderRowMarginRightProperty": "HeaderRowMarginRightProperty", + "HeaderRowMarginTop": "HeaderRowMarginTop", + "HeaderRowMarginTopProperty": "HeaderRowMarginTopProperty", + "HeaderRowVisible": "HeaderRowVisible", + "HeaderRowVisibleProperty": "HeaderRowVisibleProperty", + "HeaderText": "HeaderText", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HeaderTextFontFamily": "HeaderTextFontFamily", + "HeaderTextFontFamilyProperty": "HeaderTextFontFamilyProperty", + "HeaderTextFontSize": "HeaderTextFontSize", + "HeaderTextFontSizeProperty": "HeaderTextFontSizeProperty", + "HeaderTextFontStyle": "HeaderTextFontStyle", + "HeaderTextFontStyleProperty": "HeaderTextFontStyleProperty", + "HeaderTextFontWeight": "HeaderTextFontWeight", + "HeaderTextFontWeightProperty": "HeaderTextFontWeightProperty", + "HeaderTextMarginBottom": "HeaderTextMarginBottom", + "HeaderTextMarginBottomProperty": "HeaderTextMarginBottomProperty", + "HeaderTextMarginLeft": "HeaderTextMarginLeft", + "HeaderTextMarginLeftProperty": "HeaderTextMarginLeftProperty", + "HeaderTextMarginRight": "HeaderTextMarginRight", + "HeaderTextMarginRightProperty": "HeaderTextMarginRightProperty", + "HeaderTextMarginTop": "HeaderTextMarginTop", + "HeaderTextMarginTopProperty": "HeaderTextMarginTopProperty", + "HeaderTextProperty": "HeaderTextProperty", + "IncludedColumns": "IncludedColumns", + "IncludedColumnsProperty": "IncludedColumnsProperty", + "IncludedSeries": "IncludedSeries", + "IncludedSeriesProperty": "IncludedSeriesProperty", + "IsEmbeddedInDataTooltip": "IsEmbeddedInDataTooltip", + "IsEmbeddedInDataTooltipProperty": "IsEmbeddedInDataTooltipProperty", + "LabelDisplayMode": "LabelDisplayMode", + "LabelDisplayModeProperty": "LabelDisplayModeProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "LabelTextFontFamily": "LabelTextFontFamily", + "LabelTextFontFamilyProperty": "LabelTextFontFamilyProperty", + "LabelTextFontSize": "LabelTextFontSize", + "LabelTextFontSizeProperty": "LabelTextFontSizeProperty", + "LabelTextFontStyle": "LabelTextFontStyle", + "LabelTextFontStyleProperty": "LabelTextFontStyleProperty", + "LabelTextFontWeight": "LabelTextFontWeight", + "LabelTextFontWeightProperty": "LabelTextFontWeightProperty", + "LabelTextMarginBottom": "LabelTextMarginBottom", + "LabelTextMarginBottomProperty": "LabelTextMarginBottomProperty", + "LabelTextMarginLeft": "LabelTextMarginLeft", + "LabelTextMarginLeftProperty": "LabelTextMarginLeftProperty", + "LabelTextMarginRight": "LabelTextMarginRight", + "LabelTextMarginRightProperty": "LabelTextMarginRightProperty", + "LabelTextMarginTop": "LabelTextMarginTop", + "LabelTextMarginTopProperty": "LabelTextMarginTopProperty", + "LayoutMode": "LayoutMode", + "LayoutModeProperty": "LayoutModeProperty", + "MeasureOverride(Size)": "MeasureOverride(Size)", + "MeasureOverride": "MeasureOverride(Size)", + "NotifySizeChanged()": "NotifySizeChanged()", + "NotifySizeChanged": "NotifySizeChanged()", + "OnCalculateColumnSummary(DataLegendSummaryEventArgs)": "OnCalculateColumnSummary(DataLegendSummaryEventArgs)", + "OnCalculateColumnSummary": "OnCalculateColumnSummary(DataLegendSummaryEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnStyleGroupRow(DataLegendStylingRowEventArgs)": "OnStyleGroupRow(DataLegendStylingRowEventArgs)", + "OnStyleGroupRow": "OnStyleGroupRow(DataLegendStylingRowEventArgs)", + "OnStyleHeaderRow(DataLegendStylingRowEventArgs)": "OnStyleHeaderRow(DataLegendStylingRowEventArgs)", + "OnStyleHeaderRow": "OnStyleHeaderRow(DataLegendStylingRowEventArgs)", + "OnStyleSeriesColumn(DataLegendStylingColumnEventArgs)": "OnStyleSeriesColumn(DataLegendStylingColumnEventArgs)", + "OnStyleSeriesColumn": "OnStyleSeriesColumn(DataLegendStylingColumnEventArgs)", + "OnStyleSeriesRow(DataLegendStylingRowEventArgs)": "OnStyleSeriesRow(DataLegendStylingRowEventArgs)", + "OnStyleSeriesRow": "OnStyleSeriesRow(DataLegendStylingRowEventArgs)", + "OnStyleSummaryColumn(DataLegendStylingColumnEventArgs)": "OnStyleSummaryColumn(DataLegendStylingColumnEventArgs)", + "OnStyleSummaryColumn": "OnStyleSummaryColumn(DataLegendStylingColumnEventArgs)", + "OnStyleSummaryRow(DataLegendStylingRowEventArgs)": "OnStyleSummaryRow(DataLegendStylingRowEventArgs)", + "OnStyleSummaryRow": "OnStyleSummaryRow(DataLegendStylingRowEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "ShouldUpdateWhenSeriesDataChanges": "ShouldUpdateWhenSeriesDataChanges", + "ShouldUpdateWhenSeriesDataChangesProperty": "ShouldUpdateWhenSeriesDataChangesProperty", + "SummaryLabelText": "SummaryLabelText", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextColorProperty": "SummaryLabelTextColorProperty", + "SummaryLabelTextFontFamily": "SummaryLabelTextFontFamily", + "SummaryLabelTextFontFamilyProperty": "SummaryLabelTextFontFamilyProperty", + "SummaryLabelTextFontSize": "SummaryLabelTextFontSize", + "SummaryLabelTextFontSizeProperty": "SummaryLabelTextFontSizeProperty", + "SummaryLabelTextFontStyle": "SummaryLabelTextFontStyle", + "SummaryLabelTextFontStyleProperty": "SummaryLabelTextFontStyleProperty", + "SummaryLabelTextFontWeight": "SummaryLabelTextFontWeight", + "SummaryLabelTextFontWeightProperty": "SummaryLabelTextFontWeightProperty", + "SummaryLabelTextProperty": "SummaryLabelTextProperty", + "SummaryRowMarginBottom": "SummaryRowMarginBottom", + "SummaryRowMarginBottomProperty": "SummaryRowMarginBottomProperty", + "SummaryRowMarginLeft": "SummaryRowMarginLeft", + "SummaryRowMarginLeftProperty": "SummaryRowMarginLeftProperty", + "SummaryRowMarginRight": "SummaryRowMarginRight", + "SummaryRowMarginRightProperty": "SummaryRowMarginRightProperty", + "SummaryRowMarginTop": "SummaryRowMarginTop", + "SummaryRowMarginTopProperty": "SummaryRowMarginTopProperty", + "SummaryTitleText": "SummaryTitleText", + "SummaryTitleTextColor": "SummaryTitleTextColor", + "SummaryTitleTextColorProperty": "SummaryTitleTextColorProperty", + "SummaryTitleTextFontFamily": "SummaryTitleTextFontFamily", + "SummaryTitleTextFontFamilyProperty": "SummaryTitleTextFontFamilyProperty", + "SummaryTitleTextFontSize": "SummaryTitleTextFontSize", + "SummaryTitleTextFontSizeProperty": "SummaryTitleTextFontSizeProperty", + "SummaryTitleTextFontStyle": "SummaryTitleTextFontStyle", + "SummaryTitleTextFontStyleProperty": "SummaryTitleTextFontStyleProperty", + "SummaryTitleTextFontWeight": "SummaryTitleTextFontWeight", + "SummaryTitleTextFontWeightProperty": "SummaryTitleTextFontWeightProperty", + "SummaryTitleTextMarginBottom": "SummaryTitleTextMarginBottom", + "SummaryTitleTextMarginBottomProperty": "SummaryTitleTextMarginBottomProperty", + "SummaryTitleTextMarginLeft": "SummaryTitleTextMarginLeft", + "SummaryTitleTextMarginLeftProperty": "SummaryTitleTextMarginLeftProperty", + "SummaryTitleTextMarginRight": "SummaryTitleTextMarginRight", + "SummaryTitleTextMarginRightProperty": "SummaryTitleTextMarginRightProperty", + "SummaryTitleTextMarginTop": "SummaryTitleTextMarginTop", + "SummaryTitleTextMarginTopProperty": "SummaryTitleTextMarginTopProperty", + "SummaryTitleTextProperty": "SummaryTitleTextProperty", + "SummaryType": "SummaryType", + "SummaryTypeProperty": "SummaryTypeProperty", + "SummaryUnitsText": "SummaryUnitsText", + "SummaryUnitsTextColor": "SummaryUnitsTextColor", + "SummaryUnitsTextColorProperty": "SummaryUnitsTextColorProperty", + "SummaryUnitsTextFontFamily": "SummaryUnitsTextFontFamily", + "SummaryUnitsTextFontFamilyProperty": "SummaryUnitsTextFontFamilyProperty", + "SummaryUnitsTextFontSize": "SummaryUnitsTextFontSize", + "SummaryUnitsTextFontSizeProperty": "SummaryUnitsTextFontSizeProperty", + "SummaryUnitsTextFontStyle": "SummaryUnitsTextFontStyle", + "SummaryUnitsTextFontStyleProperty": "SummaryUnitsTextFontStyleProperty", + "SummaryUnitsTextFontWeight": "SummaryUnitsTextFontWeight", + "SummaryUnitsTextFontWeightProperty": "SummaryUnitsTextFontWeightProperty", + "SummaryUnitsTextProperty": "SummaryUnitsTextProperty", + "SummaryValueTextColor": "SummaryValueTextColor", + "SummaryValueTextColorProperty": "SummaryValueTextColorProperty", + "SummaryValueTextFontFamily": "SummaryValueTextFontFamily", + "SummaryValueTextFontFamilyProperty": "SummaryValueTextFontFamilyProperty", + "SummaryValueTextFontSize": "SummaryValueTextFontSize", + "SummaryValueTextFontSizeProperty": "SummaryValueTextFontSizeProperty", + "SummaryValueTextFontStyle": "SummaryValueTextFontStyle", + "SummaryValueTextFontStyleProperty": "SummaryValueTextFontStyleProperty", + "SummaryValueTextFontWeight": "SummaryValueTextFontWeight", + "SummaryValueTextFontWeightProperty": "SummaryValueTextFontWeightProperty", + "Target": "Target", + "TargetCursorPositionX": "TargetCursorPositionX", + "TargetCursorPositionXProperty": "TargetCursorPositionXProperty", + "TargetCursorPositionY": "TargetCursorPositionY", + "TargetCursorPositionYProperty": "TargetCursorPositionYProperty", + "TargetProperty": "TargetProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTextFontFamily": "TitleTextFontFamily", + "TitleTextFontFamilyProperty": "TitleTextFontFamilyProperty", + "TitleTextFontSize": "TitleTextFontSize", + "TitleTextFontSizeProperty": "TitleTextFontSizeProperty", + "TitleTextFontStyle": "TitleTextFontStyle", + "TitleTextFontStyleProperty": "TitleTextFontStyleProperty", + "TitleTextFontWeight": "TitleTextFontWeight", + "TitleTextFontWeightProperty": "TitleTextFontWeightProperty", + "TitleTextMarginBottom": "TitleTextMarginBottom", + "TitleTextMarginBottomProperty": "TitleTextMarginBottomProperty", + "TitleTextMarginLeft": "TitleTextMarginLeft", + "TitleTextMarginLeftProperty": "TitleTextMarginLeftProperty", + "TitleTextMarginRight": "TitleTextMarginRight", + "TitleTextMarginRightProperty": "TitleTextMarginRightProperty", + "TitleTextMarginTop": "TitleTextMarginTop", + "TitleTextMarginTopProperty": "TitleTextMarginTopProperty", + "UnitsDisplayMode": "UnitsDisplayMode", + "UnitsDisplayModeProperty": "UnitsDisplayModeProperty", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "UnitsTextColorProperty": "UnitsTextColorProperty", + "UnitsTextFontFamily": "UnitsTextFontFamily", + "UnitsTextFontFamilyProperty": "UnitsTextFontFamilyProperty", + "UnitsTextFontSize": "UnitsTextFontSize", + "UnitsTextFontSizeProperty": "UnitsTextFontSizeProperty", + "UnitsTextFontStyle": "UnitsTextFontStyle", + "UnitsTextFontStyleProperty": "UnitsTextFontStyleProperty", + "UnitsTextFontWeight": "UnitsTextFontWeight", + "UnitsTextFontWeightProperty": "UnitsTextFontWeightProperty", + "UnitsTextMarginBottom": "UnitsTextMarginBottom", + "UnitsTextMarginBottomProperty": "UnitsTextMarginBottomProperty", + "UnitsTextMarginLeft": "UnitsTextMarginLeft", + "UnitsTextMarginLeftProperty": "UnitsTextMarginLeftProperty", + "UnitsTextMarginRight": "UnitsTextMarginRight", + "UnitsTextMarginRightProperty": "UnitsTextMarginRightProperty", + "UnitsTextMarginTop": "UnitsTextMarginTop", + "UnitsTextMarginTopProperty": "UnitsTextMarginTopProperty", + "UnitsTextProperty": "UnitsTextProperty", + "ValueFormatAbbreviation": "ValueFormatAbbreviation", + "ValueFormatAbbreviationProperty": "ValueFormatAbbreviationProperty", + "ValueFormatCulture": "ValueFormatCulture", + "ValueFormatCultureProperty": "ValueFormatCultureProperty", + "ValueFormatMaxFractions": "ValueFormatMaxFractions", + "ValueFormatMaxFractionsProperty": "ValueFormatMaxFractionsProperty", + "ValueFormatMinFractions": "ValueFormatMinFractions", + "ValueFormatMinFractionsProperty": "ValueFormatMinFractionsProperty", + "ValueFormatMode": "ValueFormatMode", + "ValueFormatModeProperty": "ValueFormatModeProperty", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "ValueFormatSpecifiersProperty": "ValueFormatSpecifiersProperty", + "ValueFormatString": "ValueFormatString", + "ValueFormatStringProperty": "ValueFormatStringProperty", + "ValueFormatUseGrouping": "ValueFormatUseGrouping", + "ValueFormatUseGroupingProperty": "ValueFormatUseGroupingProperty", + "ValueRowMarginBottom": "ValueRowMarginBottom", + "ValueRowMarginBottomProperty": "ValueRowMarginBottomProperty", + "ValueRowMarginLeft": "ValueRowMarginLeft", + "ValueRowMarginLeftProperty": "ValueRowMarginLeftProperty", + "ValueRowMarginRight": "ValueRowMarginRight", + "ValueRowMarginRightProperty": "ValueRowMarginRightProperty", + "ValueRowMarginTop": "ValueRowMarginTop", + "ValueRowMarginTopProperty": "ValueRowMarginTopProperty", + "ValueRowVisible": "ValueRowVisible", + "ValueRowVisibleProperty": "ValueRowVisibleProperty", + "ValueTextColor": "ValueTextColor", + "ValueTextColorProperty": "ValueTextColorProperty", + "ValueTextFontFamily": "ValueTextFontFamily", + "ValueTextFontFamilyProperty": "ValueTextFontFamilyProperty", + "ValueTextFontSize": "ValueTextFontSize", + "ValueTextFontSizeProperty": "ValueTextFontSizeProperty", + "ValueTextFontStyle": "ValueTextFontStyle", + "ValueTextFontStyleProperty": "ValueTextFontStyleProperty", + "ValueTextFontWeight": "ValueTextFontWeight", + "ValueTextFontWeightProperty": "ValueTextFontWeightProperty", + "ValueTextMarginBottom": "ValueTextMarginBottom", + "ValueTextMarginBottomProperty": "ValueTextMarginBottomProperty", + "ValueTextMarginLeft": "ValueTextMarginLeft", + "ValueTextMarginLeftProperty": "ValueTextMarginLeftProperty", + "ValueTextMarginRight": "ValueTextMarginRight", + "ValueTextMarginRightProperty": "ValueTextMarginRightProperty", + "ValueTextMarginTop": "ValueTextMarginTop", + "ValueTextMarginTopProperty": "ValueTextMarginTopProperty", + "ValueTextUseSeriesColors": "ValueTextUseSeriesColors", + "ValueTextUseSeriesColorsProperty": "ValueTextUseSeriesColorsProperty", + "ValueTextWhenMissingData": "ValueTextWhenMissingData", + "ValueTextWhenMissingDataProperty": "ValueTextWhenMissingDataProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamDataPieChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/XamDataPieChart", + "k": "class", + "s": "classes", + "m": { + "XamDataPieChart()": "XamDataPieChart()", + "XamDataPieChart": "XamDataPieChart()", + "ChartType": "ChartType", + "ChartTypeProperty": "ChartTypeProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipBorderColor": "ToolTipBorderColor", + "ToolTipBorderColorProperty": "ToolTipBorderColorProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "TransitionInDuration": "TransitionInDuration", + "TransitionInDurationProperty": "TransitionInDurationProperty", + "TransitionInEasingFunction": "TransitionInEasingFunction", + "TransitionInEasingFunctionProperty": "TransitionInEasingFunctionProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionInSpeedTypeProperty": "TransitionInSpeedTypeProperty", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutDurationProperty": "TransitionOutDurationProperty", + "TransitionOutEasingFunction": "TransitionOutEasingFunction", + "TransitionOutEasingFunctionProperty": "TransitionOutEasingFunctionProperty" + } + } + ], + "XamDoughnutChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/XamDoughnutChart", + "k": "class", + "s": "classes", + "m": { + "XamDoughnutChart()": "XamDoughnutChart()", + "XamDoughnutChart": "XamDoughnutChart()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "AllowSliceExplosion": "AllowSliceExplosion", + "AllowSliceExplosionProperty": "AllowSliceExplosionProperty", + "AllowSliceSelection": "AllowSliceSelection", + "AllowSliceSelectionProperty": "AllowSliceSelectionProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "GetCenterCoordinates()": "GetCenterCoordinates()", + "GetCenterCoordinates": "GetCenterCoordinates()", + "GetHoleRadius()": "GetHoleRadius()", + "GetHoleRadius": "GetHoleRadius()", + "InnerExtent": "InnerExtent", + "InnerExtentProperty": "InnerExtentProperty", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsSurfaceInteractionDisabledProperty": "IsSurfaceInteractionDisabledProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnHoleDimensionsChanged(HoleDimensionsChangedEventArgs)": "OnHoleDimensionsChanged(HoleDimensionsChangedEventArgs)", + "OnHoleDimensionsChanged": "OnHoleDimensionsChanged(HoleDimensionsChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSliceClick(SliceClickEventArgs)": "OnSliceClick(SliceClickEventArgs)", + "OnSliceClick": "OnSliceClick(SliceClickEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceFillProperty": "SelectedSliceFillProperty", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceOpacityProperty": "SelectedSliceOpacityProperty", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeProperty": "SelectedSliceStrokeProperty", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectedSliceStrokeThicknessProperty": "SelectedSliceStrokeThicknessProperty", + "Series": "Series", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamExpansionPanel": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/XamExpansionPanel", + "k": "class", + "s": "classes", + "m": { + "XamExpansionPanel()": "XamExpansionPanel()", + "XamExpansionPanel": "XamExpansionPanel()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualAmbientShadowColorProperty": "ActualAmbientShadowColorProperty", + "ActualCaptionTextColor": "ActualCaptionTextColor", + "ActualCaptionTextColorProperty": "ActualCaptionTextColorProperty", + "ActualDescriptionTextColor": "ActualDescriptionTextColor", + "ActualDescriptionTextColorProperty": "ActualDescriptionTextColorProperty", + "ActualElevation": "ActualElevation", + "ActualElevationProperty": "ActualElevationProperty", + "ActualHeaderBackgroundColor": "ActualHeaderBackgroundColor", + "ActualHeaderBackgroundColorProperty": "ActualHeaderBackgroundColorProperty", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualPenumbraShadowColorProperty": "ActualPenumbraShadowColorProperty", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "ActualUmbraShadowColorProperty": "ActualUmbraShadowColorProperty", + "Caption": "Caption", + "CaptionCollapsedTextColor": "CaptionCollapsedTextColor", + "CaptionCollapsedTextColorProperty": "CaptionCollapsedTextColorProperty", + "CaptionExpandedTextColor": "CaptionExpandedTextColor", + "CaptionExpandedTextColorProperty": "CaptionExpandedTextColorProperty", + "CaptionProperty": "CaptionProperty", + "CaptionTextColor": "CaptionTextColor", + "CaptionTextColorProperty": "CaptionTextColorProperty", + "Collapse()": "Collapse()", + "Collapse": "Collapse()", + "DescriptionCollapsedTextColor": "DescriptionCollapsedTextColor", + "DescriptionCollapsedTextColorProperty": "DescriptionCollapsedTextColorProperty", + "DescriptionExpandedTextColor": "DescriptionExpandedTextColor", + "DescriptionExpandedTextColorProperty": "DescriptionExpandedTextColorProperty", + "DescriptionText": "DescriptionText", + "DescriptionTextColor": "DescriptionTextColor", + "DescriptionTextColorProperty": "DescriptionTextColorProperty", + "DescriptionTextProperty": "DescriptionTextProperty", + "Elevation": "Elevation", + "ElevationProperty": "ElevationProperty", + "Expand()": "Expand()", + "Expand": "Expand()", + "Expanded": "Expanded", + "ExpandedProperty": "ExpandedProperty", + "HeaderBackgroundColor": "HeaderBackgroundColor", + "HeaderBackgroundColorProperty": "HeaderBackgroundColorProperty", + "HeaderCollapsedBackgroundColor": "HeaderCollapsedBackgroundColor", + "HeaderCollapsedBackgroundColorProperty": "HeaderCollapsedBackgroundColorProperty", + "HeaderExpandedBackgroundColor": "HeaderExpandedBackgroundColor", + "HeaderExpandedBackgroundColorProperty": "HeaderExpandedBackgroundColorProperty", + "OnOnCollapsed(OnCollapsedEventArgs)": "OnOnCollapsed(OnCollapsedEventArgs)", + "OnOnCollapsed": "OnOnCollapsed(OnCollapsedEventArgs)", + "OnOnExpanded(OnExpandedEventArgs)": "OnOnExpanded(OnExpandedEventArgs)", + "OnOnExpanded": "OnOnExpanded(OnExpandedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Toggle()": "Toggle()", + "Toggle": "Toggle()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamFunnelChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/XamFunnelChart", + "k": "class", + "s": "classes", + "m": { + "XamFunnelChart()": "XamFunnelChart()", + "XamFunnelChart": "XamFunnelChart()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueDisplayModeProperty": "ActualHighlightValueDisplayModeProperty", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualHighlightValueOpacityProperty": "ActualHighlightValueOpacityProperty", + "AllowSliceSelection": "AllowSliceSelection", + "AllowSliceSelectionProperty": "AllowSliceSelectionProperty", + "BottomEdgeWidth": "BottomEdgeWidth", + "BottomEdgeWidthProperty": "BottomEdgeWidthProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "FormatInnerLabel": "FormatInnerLabel", + "FormatInnerLabelProperty": "FormatInnerLabelProperty", + "FormatOuterLabel": "FormatOuterLabel", + "FormatOuterLabelProperty": "FormatOuterLabelProperty", + "FunnelSliceDisplay": "FunnelSliceDisplay", + "FunnelSliceDisplayProperty": "FunnelSliceDisplayProperty", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueDisplayModeProperty": "HighlightValueDisplayModeProperty", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightValueOpacityProperty": "HighlightValueOpacityProperty", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "HighlightedValueMemberPathProperty": "HighlightedValueMemberPathProperty", + "InnerLabelMemberPath": "InnerLabelMemberPath", + "InnerLabelMemberPathProperty": "InnerLabelMemberPathProperty", + "InnerLabelVisibility": "InnerLabelVisibility", + "InnerLabelVisibilityProperty": "InnerLabelVisibilityProperty", + "IsInverted": "IsInverted", + "IsInvertedProperty": "IsInvertedProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Legend": "Legend", + "LegendProperty": "LegendProperty", + "LowerBezierControlPoint": "LowerBezierControlPoint", + "LowerBezierControlPointProperty": "LowerBezierControlPointProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnSelectedItemsChanged(FunnelChartSelectedItemsChangedEventArgs)": "OnSelectedItemsChanged(FunnelChartSelectedItemsChangedEventArgs)", + "OnSelectedItemsChanged": "OnSelectedItemsChanged(FunnelChartSelectedItemsChangedEventArgs)", + "OnSliceClicked(FunnelSliceClickedEventArgs)": "OnSliceClicked(FunnelSliceClickedEventArgs)", + "OnSliceClicked": "OnSliceClicked(FunnelSliceClickedEventArgs)", + "OnSliceEnter(FunnelSliceEventArgs)": "OnSliceEnter(FunnelSliceEventArgs)", + "OnSliceEnter": "OnSliceEnter(FunnelSliceEventArgs)", + "OnSliceHover(FunnelSliceEventArgs)": "OnSliceHover(FunnelSliceEventArgs)", + "OnSliceHover": "OnSliceHover(FunnelSliceEventArgs)", + "OnSliceLeave(FunnelSliceEventArgs)": "OnSliceLeave(FunnelSliceEventArgs)", + "OnSliceLeave": "OnSliceLeave(FunnelSliceEventArgs)", + "OuterLabelAlignment": "OuterLabelAlignment", + "OuterLabelAlignmentProperty": "OuterLabelAlignmentProperty", + "OuterLabelFontFamily": "OuterLabelFontFamily", + "OuterLabelFontFamilyProperty": "OuterLabelFontFamilyProperty", + "OuterLabelFontSize": "OuterLabelFontSize", + "OuterLabelFontSizeProperty": "OuterLabelFontSizeProperty", + "OuterLabelFontStyle": "OuterLabelFontStyle", + "OuterLabelFontStyleProperty": "OuterLabelFontStyleProperty", + "OuterLabelFontWeight": "OuterLabelFontWeight", + "OuterLabelFontWeightProperty": "OuterLabelFontWeightProperty", + "OuterLabelMemberPath": "OuterLabelMemberPath", + "OuterLabelMemberPathProperty": "OuterLabelMemberPathProperty", + "OuterLabelTextColor": "OuterLabelTextColor", + "OuterLabelTextColorProperty": "OuterLabelTextColorProperty", + "OuterLabelVisibility": "OuterLabelVisibility", + "OuterLabelVisibilityProperty": "OuterLabelVisibilityProperty", + "OutlineThickness": "OutlineThickness", + "OutlineThicknessProperty": "OutlineThicknessProperty", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "SelectedItems": "SelectedItems", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceFillProperty": "SelectedSliceFillProperty", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceOpacityProperty": "SelectedSliceOpacityProperty", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeProperty": "SelectedSliceStrokeProperty", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectedSliceStrokeThicknessProperty": "SelectedSliceStrokeThicknessProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ToggleSelection(int)": "ToggleSelection(int)", + "ToggleSelection": "ToggleSelection(int)", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "UnselectedSliceFill": "UnselectedSliceFill", + "UnselectedSliceFillProperty": "UnselectedSliceFillProperty", + "UnselectedSliceOpacity": "UnselectedSliceOpacity", + "UnselectedSliceOpacityProperty": "UnselectedSliceOpacityProperty", + "UnselectedSliceStroke": "UnselectedSliceStroke", + "UnselectedSliceStrokeProperty": "UnselectedSliceStrokeProperty", + "UnselectedSliceStrokeThickness": "UnselectedSliceStrokeThickness", + "UnselectedSliceStrokeThicknessProperty": "UnselectedSliceStrokeThicknessProperty", + "UpperBezierControlPoint": "UpperBezierControlPoint", + "UpperBezierControlPointProperty": "UpperBezierControlPointProperty", + "UseBezierCurve": "UseBezierCurve", + "UseBezierCurveProperty": "UseBezierCurveProperty", + "UseOuterLabelsForLegend": "UseOuterLabelsForLegend", + "UseOuterLabelsForLegendProperty": "UseOuterLabelsForLegendProperty", + "UseUnselectedStyle": "UseUnselectedStyle", + "UseUnselectedStyleProperty": "UseUnselectedStyleProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamGeographicMap": [ + { + "p": "Infragistics.Uno.Maps", + "u": "/api/uno-platform/Infragistics.Uno.Maps/latest/classes/XamGeographicMap", + "k": "class", + "s": "classes", + "m": { + "XamGeographicMap()": "XamGeographicMap()", + "XamGeographicMap": "XamGeographicMap()", + "ActualWindowScale": "ActualWindowScale", + "ActualWindowScaleProperty": "ActualWindowScaleProperty", + "ActualWorldRect": "ActualWorldRect", + "ActualWorldRectProperty": "ActualWorldRectProperty", + "BackgroundContent": "BackgroundContent", + "BackgroundContentProperty": "BackgroundContentProperty", + "BackgroundTilingMode": "BackgroundTilingMode", + "BackgroundTilingModeProperty": "BackgroundTilingModeProperty", + "ClearTileCache()": "ClearTileCache()", + "ClearTileCache": "ClearTileCache()", + "ConvertGeographicToZoom(Rect, double)": "ConvertGeographicToZoom(Rect, double)", + "ConvertGeographicToZoom": "ConvertGeographicToZoom(Rect, double)", + "DeferredRefresh()": "DeferredRefresh()", + "DeferredRefresh": "DeferredRefresh()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "GetCurrentActualWorldRect()": "GetCurrentActualWorldRect()", + "GetCurrentActualWorldRect": "GetCurrentActualWorldRect()", + "GetGeographicFromZoom(Rect)": "GetGeographicFromZoom(Rect)", + "GetGeographicFromZoom": "GetGeographicFromZoom(Rect)", + "GetGeographicPoint(Point)": "GetGeographicPoint(Point)", + "GetGeographicPoint": "GetGeographicPoint(Point)", + "GetPixelPoint(Point)": "GetPixelPoint(Point)", + "GetPixelPoint": "GetPixelPoint(Point)", + "GetZoomFromGeographic(Point, Point)": "GetZoomFromGeographic(Point, Point)", + "GetZoomFromGeographic": "GetZoomFromGeographic(Point, Point)", + "GetZoomFromGeographic(Rect)": "GetZoomFromGeographic(Rect)", + "GetZoomRectFromGeoRect(Rect)": "GetZoomRectFromGeoRect(Rect)", + "GetZoomRectFromGeoRect": "GetZoomRectFromGeoRect(Rect)", + "IsHorizontalWrappingEnabled": "IsHorizontalWrappingEnabled", + "IsHorizontalWrappingEnabledProperty": "IsHorizontalWrappingEnabledProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnImageTilesReady(EventArgs)": "OnImageTilesReady(EventArgs)", + "OnImageTilesReady": "OnImageTilesReady(EventArgs)", + "Register(object, Action)": "Register(object, Action)", + "Register": "Register(object, Action)", + "ResizeBehavior": "ResizeBehavior", + "ResizeBehaviorProperty": "ResizeBehaviorProperty", + "StyleUpdated()": "StyleUpdated()", + "StyleUpdated": "StyleUpdated()", + "SuppressZoomResetOnWorldRectChange": "SuppressZoomResetOnWorldRectChange", + "SuppressZoomResetOnWorldRectChangeProperty": "SuppressZoomResetOnWorldRectChangeProperty", + "UnRegister(object)": "UnRegister(object)", + "UnRegister": "UnRegister(object)", + "UpdateWorldRect(Rect)": "UpdateWorldRect(Rect)", + "UpdateWorldRect": "UpdateWorldRect(Rect)", + "UpdateZoomWindow(Rect)": "UpdateZoomWindow(Rect)", + "UpdateZoomWindow": "UpdateZoomWindow(Rect)", + "UseWorldRectForZoomBounds": "UseWorldRectForZoomBounds", + "UseWorldRectForZoomBoundsProperty": "UseWorldRectForZoomBoundsProperty", + "WindowScale": "WindowScale", + "WindowScaleProperty": "WindowScaleProperty", + "WorldRect": "WorldRect", + "WorldRectProperty": "WorldRectProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty", + "ZoomIsReady": "ZoomIsReady", + "ZoomIsReadyProperty": "ZoomIsReadyProperty", + "ZoomToGeographic(Rect)": "ZoomToGeographic(Rect)", + "ZoomToGeographic": "ZoomToGeographic(Rect)", + "Zoomable": "Zoomable", + "ZoomableProperty": "ZoomableProperty" + } + } + ], + "XamIcon": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamIcon", + "k": "class", + "s": "classes", + "m": { + "XamIcon()": "XamIcon()", + "XamIcon": "XamIcon()", + "ActualFill": "ActualFill", + "ActualFillProperty": "ActualFillProperty", + "ActualStroke": "ActualStroke", + "ActualStrokeProperty": "ActualStrokeProperty", + "ActualStrokeWidth": "ActualStrokeWidth", + "ActualStrokeWidthProperty": "ActualStrokeWidthProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualViewBoxHeight": "ActualViewBoxHeight", + "ActualViewBoxHeightProperty": "ActualViewBoxHeightProperty", + "ActualViewBoxLeft": "ActualViewBoxLeft", + "ActualViewBoxLeftProperty": "ActualViewBoxLeftProperty", + "ActualViewBoxTop": "ActualViewBoxTop", + "ActualViewBoxTopProperty": "ActualViewBoxTopProperty", + "ActualViewBoxWidth": "ActualViewBoxWidth", + "ActualViewBoxWidthProperty": "ActualViewBoxWidthProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "DataURL": "DataURL", + "DataURLProperty": "DataURLProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "Fill": "Fill", + "FillColors": "FillColors", + "FillColorsProperty": "FillColorsProperty", + "FillProperty": "FillProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "Height": "Height", + "HeightProperty": "HeightProperty", + "HoverFill": "HoverFill", + "HoverFillProperty": "HoverFillProperty", + "HoverStroke": "HoverStroke", + "HoverStrokeProperty": "HoverStrokeProperty", + "HoverStrokeThickness": "HoverStrokeThickness", + "HoverStrokeThicknessProperty": "HoverStrokeThicknessProperty", + "HoverTextColor": "HoverTextColor", + "HoverTextColorProperty": "HoverTextColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty", + "PrimaryFillColor": "PrimaryFillColor", + "PrimaryFillColorProperty": "PrimaryFillColorProperty", + "PrimaryStrokeColor": "PrimaryStrokeColor", + "PrimaryStrokeColorProperty": "PrimaryStrokeColorProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "SVG": "SVG", + "SVGPath": "SVGPath", + "SVGPathProperty": "SVGPathProperty", + "SVGPaths": "SVGPaths", + "SVGPathsProperty": "SVGPathsProperty", + "SVGProperty": "SVGProperty", + "SecondaryFillColor": "SecondaryFillColor", + "SecondaryFillColorProperty": "SecondaryFillColorProperty", + "SecondaryStrokeColor": "SecondaryStrokeColor", + "SecondaryStrokeColorProperty": "SecondaryStrokeColorProperty", + "Source": "Source", + "SourceProperty": "SourceProperty", + "Stroke": "Stroke", + "StrokeColors": "StrokeColors", + "StrokeColorsProperty": "StrokeColorsProperty", + "StrokeProperty": "StrokeProperty", + "StrokeWidth": "StrokeWidth", + "StrokeWidthProperty": "StrokeWidthProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ViewBoxHeight": "ViewBoxHeight", + "ViewBoxHeightProperty": "ViewBoxHeightProperty", + "ViewBoxLeft": "ViewBoxLeft", + "ViewBoxLeftProperty": "ViewBoxLeftProperty", + "ViewBoxTop": "ViewBoxTop", + "ViewBoxTopProperty": "ViewBoxTopProperty", + "ViewBoxWidth": "ViewBoxWidth", + "ViewBoxWidthProperty": "ViewBoxWidthProperty", + "Width": "Width", + "WidthProperty": "WidthProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamInput": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamInput", + "k": "class", + "s": "classes", + "m": { + "XamInput()": "XamInput()", + "XamInput": "XamInput()", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualHoverTextColorProperty": "ActualHoverTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Blur()": "Blur()", + "Blur": "Blur()", + "Density": "Density", + "DensityProperty": "DensityProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HasValue": "HasValue", + "HasValueProperty": "HasValueProperty", + "HoverTextColor": "HoverTextColor", + "HoverTextColorProperty": "HoverTextColorProperty", + "IncludeLiterals": "IncludeLiterals", + "IncludeLiteralsProperty": "IncludeLiteralsProperty", + "InputType": "InputType", + "InputTypeProperty": "InputTypeProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "IsReadOnly": "IsReadOnly", + "IsReadOnlyProperty": "IsReadOnlyProperty", + "Mask": "Mask", + "MaskProperty": "MaskProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnChange(InputChangeEventArgs)": "OnChange(InputChangeEventArgs)", + "OnChange": "OnChange(InputChangeEventArgs)", + "OnChanging(InputChangeEventArgs)": "OnChanging(InputChangeEventArgs)", + "OnChanging": "OnChanging(InputChangeEventArgs)", + "OnCompositionEnd(InputChangeEventArgs)": "OnCompositionEnd(InputChangeEventArgs)", + "OnCompositionEnd": "OnCompositionEnd(InputChangeEventArgs)", + "OnCompositionStart(EventArgs)": "OnCompositionStart(EventArgs)", + "OnCompositionStart": "OnCompositionStart(EventArgs)", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnGotFocus(EventArgs)": "OnGotFocus(EventArgs)", + "OnGotFocus": "OnGotFocus(EventArgs)", + "OnKeyDown(KeyEventArgs)": "OnKeyDown(KeyEventArgs)", + "OnKeyDown": "OnKeyDown(KeyEventArgs)", + "OnKeyPress(KeyEventArgs)": "OnKeyPress(KeyEventArgs)", + "OnKeyPress": "OnKeyPress(KeyEventArgs)", + "OnKeyUp(KeyEventArgs)": "OnKeyUp(KeyEventArgs)", + "OnKeyUp": "OnKeyUp(KeyEventArgs)", + "OnLostFocus(EventArgs)": "OnLostFocus(EventArgs)", + "OnLostFocus": "OnLostFocus(EventArgs)", + "Placeholder": "Placeholder", + "PlaceholderProperty": "PlaceholderProperty", + "PromptChar": "PromptChar", + "PromptCharProperty": "PromptCharProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "Select()": "Select()", + "Select": "Select()", + "SelectionEnd": "SelectionEnd", + "SelectionEndProperty": "SelectionEndProperty", + "SelectionStart": "SelectionStart", + "SelectionStartProperty": "SelectionStartProperty", + "SetSelectionRange(int, int)": "SetSelectionRange(int, int)", + "SetSelectionRange": "SetSelectionRange(int, int)", + "ShowSpinner": "ShowSpinner", + "ShowSpinnerProperty": "ShowSpinnerProperty", + "TextAlignment": "TextAlignment", + "TextAlignmentProperty": "TextAlignmentProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "XamInputGroup": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamInputGroup", + "k": "class", + "s": "classes", + "m": { + "XamInputGroup()": "XamInputGroup()", + "XamInputGroup": "XamInputGroup()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderColorProperty": "ActualBorderColorProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingBottomProperty": "ActualContentPaddingBottomProperty", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingLeftProperty": "ActualContentPaddingLeftProperty", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingRightProperty": "ActualContentPaddingRightProperty", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualContentPaddingTopProperty": "ActualContentPaddingTopProperty", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderColorProperty": "ActualFocusBorderColorProperty", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusBorderWidthProperty": "ActualFocusBorderWidthProperty", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineColorProperty": "ActualFocusUnderlineColorProperty", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineOpacityProperty": "ActualFocusUnderlineOpacityProperty", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualFocusUnderlineRippleOpacityProperty": "ActualFocusUnderlineRippleOpacityProperty", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineColorProperty": "ActualHoverUnderlineColorProperty", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineOpacityProperty": "ActualHoverUnderlineOpacityProperty", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualHoverUnderlineWidthProperty": "ActualHoverUnderlineWidthProperty", + "ActualIsExpanded": "ActualIsExpanded", + "ActualIsExpandedProperty": "ActualIsExpandedProperty", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineColorProperty": "ActualUnderlineColorProperty", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineOpacityProperty": "ActualUnderlineOpacityProperty", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleColorProperty": "ActualUnderlineRippleColorProperty", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleOpacityProperty": "ActualUnderlineRippleOpacityProperty", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineRippleWidthProperty": "ActualUnderlineRippleWidthProperty", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualUnderlineWidthProperty": "ActualUnderlineWidthProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderColor": "BorderColor", + "BorderColorProperty": "BorderColorProperty", + "BorderTypeBackgroundColor": "BorderTypeBackgroundColor", + "BorderTypeBackgroundColorProperty": "BorderTypeBackgroundColorProperty", + "BorderTypeBorderColor": "BorderTypeBorderColor", + "BorderTypeBorderColorProperty": "BorderTypeBorderColorProperty", + "BorderTypeBorderWidth": "BorderTypeBorderWidth", + "BorderTypeBorderWidthProperty": "BorderTypeBorderWidthProperty", + "BorderTypeContentPaddingBottom": "BorderTypeContentPaddingBottom", + "BorderTypeContentPaddingBottomProperty": "BorderTypeContentPaddingBottomProperty", + "BorderTypeContentPaddingLeft": "BorderTypeContentPaddingLeft", + "BorderTypeContentPaddingLeftProperty": "BorderTypeContentPaddingLeftProperty", + "BorderTypeContentPaddingRight": "BorderTypeContentPaddingRight", + "BorderTypeContentPaddingRightProperty": "BorderTypeContentPaddingRightProperty", + "BorderTypeContentPaddingTop": "BorderTypeContentPaddingTop", + "BorderTypeContentPaddingTopProperty": "BorderTypeContentPaddingTopProperty", + "BorderTypeCornerRadiusBottomLeft": "BorderTypeCornerRadiusBottomLeft", + "BorderTypeCornerRadiusBottomLeftProperty": "BorderTypeCornerRadiusBottomLeftProperty", + "BorderTypeCornerRadiusBottomRight": "BorderTypeCornerRadiusBottomRight", + "BorderTypeCornerRadiusBottomRightProperty": "BorderTypeCornerRadiusBottomRightProperty", + "BorderTypeCornerRadiusTopLeft": "BorderTypeCornerRadiusTopLeft", + "BorderTypeCornerRadiusTopLeftProperty": "BorderTypeCornerRadiusTopLeftProperty", + "BorderTypeCornerRadiusTopRight": "BorderTypeCornerRadiusTopRight", + "BorderTypeCornerRadiusTopRightProperty": "BorderTypeCornerRadiusTopRightProperty", + "BorderTypeFocusBorderColor": "BorderTypeFocusBorderColor", + "BorderTypeFocusBorderColorProperty": "BorderTypeFocusBorderColorProperty", + "BorderTypeFocusBorderWidth": "BorderTypeFocusBorderWidth", + "BorderTypeFocusBorderWidthProperty": "BorderTypeFocusBorderWidthProperty", + "BorderTypeFocusUnderlineColor": "BorderTypeFocusUnderlineColor", + "BorderTypeFocusUnderlineColorProperty": "BorderTypeFocusUnderlineColorProperty", + "BorderTypeFocusUnderlineOpacity": "BorderTypeFocusUnderlineOpacity", + "BorderTypeFocusUnderlineOpacityProperty": "BorderTypeFocusUnderlineOpacityProperty", + "BorderTypeFocusUnderlineRippleOpacity": "BorderTypeFocusUnderlineRippleOpacity", + "BorderTypeFocusUnderlineRippleOpacityProperty": "BorderTypeFocusUnderlineRippleOpacityProperty", + "BorderTypeHoverUnderlineColor": "BorderTypeHoverUnderlineColor", + "BorderTypeHoverUnderlineColorProperty": "BorderTypeHoverUnderlineColorProperty", + "BorderTypeHoverUnderlineOpacity": "BorderTypeHoverUnderlineOpacity", + "BorderTypeHoverUnderlineOpacityProperty": "BorderTypeHoverUnderlineOpacityProperty", + "BorderTypeHoverUnderlineWidth": "BorderTypeHoverUnderlineWidth", + "BorderTypeHoverUnderlineWidthProperty": "BorderTypeHoverUnderlineWidthProperty", + "BorderTypeUnderlineColor": "BorderTypeUnderlineColor", + "BorderTypeUnderlineColorProperty": "BorderTypeUnderlineColorProperty", + "BorderTypeUnderlineOpacity": "BorderTypeUnderlineOpacity", + "BorderTypeUnderlineOpacityProperty": "BorderTypeUnderlineOpacityProperty", + "BorderTypeUnderlineRippleColor": "BorderTypeUnderlineRippleColor", + "BorderTypeUnderlineRippleColorProperty": "BorderTypeUnderlineRippleColorProperty", + "BorderTypeUnderlineRippleOpacity": "BorderTypeUnderlineRippleOpacity", + "BorderTypeUnderlineRippleOpacityProperty": "BorderTypeUnderlineRippleOpacityProperty", + "BorderTypeUnderlineRippleWidth": "BorderTypeUnderlineRippleWidth", + "BorderTypeUnderlineRippleWidthProperty": "BorderTypeUnderlineRippleWidthProperty", + "BorderTypeUnderlineWidth": "BorderTypeUnderlineWidth", + "BorderTypeUnderlineWidthProperty": "BorderTypeUnderlineWidthProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "BoxTypeBackgroundColor": "BoxTypeBackgroundColor", + "BoxTypeBackgroundColorProperty": "BoxTypeBackgroundColorProperty", + "BoxTypeBorderColor": "BoxTypeBorderColor", + "BoxTypeBorderColorProperty": "BoxTypeBorderColorProperty", + "BoxTypeBorderWidth": "BoxTypeBorderWidth", + "BoxTypeBorderWidthProperty": "BoxTypeBorderWidthProperty", + "BoxTypeContentPaddingBottom": "BoxTypeContentPaddingBottom", + "BoxTypeContentPaddingBottomProperty": "BoxTypeContentPaddingBottomProperty", + "BoxTypeContentPaddingLeft": "BoxTypeContentPaddingLeft", + "BoxTypeContentPaddingLeftProperty": "BoxTypeContentPaddingLeftProperty", + "BoxTypeContentPaddingRight": "BoxTypeContentPaddingRight", + "BoxTypeContentPaddingRightProperty": "BoxTypeContentPaddingRightProperty", + "BoxTypeContentPaddingTop": "BoxTypeContentPaddingTop", + "BoxTypeContentPaddingTopProperty": "BoxTypeContentPaddingTopProperty", + "BoxTypeCornerRadiusBottomLeft": "BoxTypeCornerRadiusBottomLeft", + "BoxTypeCornerRadiusBottomLeftProperty": "BoxTypeCornerRadiusBottomLeftProperty", + "BoxTypeCornerRadiusBottomRight": "BoxTypeCornerRadiusBottomRight", + "BoxTypeCornerRadiusBottomRightProperty": "BoxTypeCornerRadiusBottomRightProperty", + "BoxTypeCornerRadiusTopLeft": "BoxTypeCornerRadiusTopLeft", + "BoxTypeCornerRadiusTopLeftProperty": "BoxTypeCornerRadiusTopLeftProperty", + "BoxTypeCornerRadiusTopRight": "BoxTypeCornerRadiusTopRight", + "BoxTypeCornerRadiusTopRightProperty": "BoxTypeCornerRadiusTopRightProperty", + "BoxTypeFocusBorderColor": "BoxTypeFocusBorderColor", + "BoxTypeFocusBorderColorProperty": "BoxTypeFocusBorderColorProperty", + "BoxTypeFocusBorderWidth": "BoxTypeFocusBorderWidth", + "BoxTypeFocusBorderWidthProperty": "BoxTypeFocusBorderWidthProperty", + "BoxTypeFocusUnderlineColor": "BoxTypeFocusUnderlineColor", + "BoxTypeFocusUnderlineColorProperty": "BoxTypeFocusUnderlineColorProperty", + "BoxTypeFocusUnderlineOpacity": "BoxTypeFocusUnderlineOpacity", + "BoxTypeFocusUnderlineOpacityProperty": "BoxTypeFocusUnderlineOpacityProperty", + "BoxTypeFocusUnderlineRippleOpacity": "BoxTypeFocusUnderlineRippleOpacity", + "BoxTypeFocusUnderlineRippleOpacityProperty": "BoxTypeFocusUnderlineRippleOpacityProperty", + "BoxTypeHoverUnderlineColor": "BoxTypeHoverUnderlineColor", + "BoxTypeHoverUnderlineColorProperty": "BoxTypeHoverUnderlineColorProperty", + "BoxTypeHoverUnderlineOpacity": "BoxTypeHoverUnderlineOpacity", + "BoxTypeHoverUnderlineOpacityProperty": "BoxTypeHoverUnderlineOpacityProperty", + "BoxTypeHoverUnderlineWidth": "BoxTypeHoverUnderlineWidth", + "BoxTypeHoverUnderlineWidthProperty": "BoxTypeHoverUnderlineWidthProperty", + "BoxTypeUnderlineColor": "BoxTypeUnderlineColor", + "BoxTypeUnderlineColorProperty": "BoxTypeUnderlineColorProperty", + "BoxTypeUnderlineOpacity": "BoxTypeUnderlineOpacity", + "BoxTypeUnderlineOpacityProperty": "BoxTypeUnderlineOpacityProperty", + "BoxTypeUnderlineRippleColor": "BoxTypeUnderlineRippleColor", + "BoxTypeUnderlineRippleColorProperty": "BoxTypeUnderlineRippleColorProperty", + "BoxTypeUnderlineRippleOpacity": "BoxTypeUnderlineRippleOpacity", + "BoxTypeUnderlineRippleOpacityProperty": "BoxTypeUnderlineRippleOpacityProperty", + "BoxTypeUnderlineRippleWidth": "BoxTypeUnderlineRippleWidth", + "BoxTypeUnderlineRippleWidthProperty": "BoxTypeUnderlineRippleWidthProperty", + "BoxTypeUnderlineWidth": "BoxTypeUnderlineWidth", + "BoxTypeUnderlineWidthProperty": "BoxTypeUnderlineWidthProperty", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderColorProperty": "FocusBorderColorProperty", + "FocusBorderWidth": "FocusBorderWidth", + "FocusBorderWidthProperty": "FocusBorderWidthProperty", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineColorProperty": "FocusUnderlineColorProperty", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineOpacityProperty": "FocusUnderlineOpacityProperty", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FocusUnderlineRippleOpacityProperty": "FocusUnderlineRippleOpacityProperty", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineColorProperty": "HoverUnderlineColorProperty", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineOpacityProperty": "HoverUnderlineOpacityProperty", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "HoverUnderlineWidthProperty": "HoverUnderlineWidthProperty", + "InputHasValue": "InputHasValue", + "InputHasValueProperty": "InputHasValueProperty", + "Inputs": "Inputs", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsExpanded": "IsExpanded", + "IsExpandedProperty": "IsExpandedProperty", + "IsFocused": "IsFocused", + "IsFocusedProperty": "IsFocusedProperty", + "IsHovered": "IsHovered", + "IsHoveredProperty": "IsHoveredProperty", + "LineTypeBackgroundColor": "LineTypeBackgroundColor", + "LineTypeBackgroundColorProperty": "LineTypeBackgroundColorProperty", + "LineTypeBorderColor": "LineTypeBorderColor", + "LineTypeBorderColorProperty": "LineTypeBorderColorProperty", + "LineTypeBorderWidth": "LineTypeBorderWidth", + "LineTypeBorderWidthProperty": "LineTypeBorderWidthProperty", + "LineTypeContentPaddingBottom": "LineTypeContentPaddingBottom", + "LineTypeContentPaddingBottomProperty": "LineTypeContentPaddingBottomProperty", + "LineTypeContentPaddingLeft": "LineTypeContentPaddingLeft", + "LineTypeContentPaddingLeftProperty": "LineTypeContentPaddingLeftProperty", + "LineTypeContentPaddingRight": "LineTypeContentPaddingRight", + "LineTypeContentPaddingRightProperty": "LineTypeContentPaddingRightProperty", + "LineTypeContentPaddingTop": "LineTypeContentPaddingTop", + "LineTypeContentPaddingTopProperty": "LineTypeContentPaddingTopProperty", + "LineTypeCornerRadiusBottomLeft": "LineTypeCornerRadiusBottomLeft", + "LineTypeCornerRadiusBottomLeftProperty": "LineTypeCornerRadiusBottomLeftProperty", + "LineTypeCornerRadiusBottomRight": "LineTypeCornerRadiusBottomRight", + "LineTypeCornerRadiusBottomRightProperty": "LineTypeCornerRadiusBottomRightProperty", + "LineTypeCornerRadiusTopLeft": "LineTypeCornerRadiusTopLeft", + "LineTypeCornerRadiusTopLeftProperty": "LineTypeCornerRadiusTopLeftProperty", + "LineTypeCornerRadiusTopRight": "LineTypeCornerRadiusTopRight", + "LineTypeCornerRadiusTopRightProperty": "LineTypeCornerRadiusTopRightProperty", + "LineTypeFocusBorderColor": "LineTypeFocusBorderColor", + "LineTypeFocusBorderColorProperty": "LineTypeFocusBorderColorProperty", + "LineTypeFocusBorderWidth": "LineTypeFocusBorderWidth", + "LineTypeFocusBorderWidthProperty": "LineTypeFocusBorderWidthProperty", + "LineTypeFocusUnderlineColor": "LineTypeFocusUnderlineColor", + "LineTypeFocusUnderlineColorProperty": "LineTypeFocusUnderlineColorProperty", + "LineTypeFocusUnderlineOpacity": "LineTypeFocusUnderlineOpacity", + "LineTypeFocusUnderlineOpacityProperty": "LineTypeFocusUnderlineOpacityProperty", + "LineTypeFocusUnderlineRippleOpacity": "LineTypeFocusUnderlineRippleOpacity", + "LineTypeFocusUnderlineRippleOpacityProperty": "LineTypeFocusUnderlineRippleOpacityProperty", + "LineTypeHoverUnderlineColor": "LineTypeHoverUnderlineColor", + "LineTypeHoverUnderlineColorProperty": "LineTypeHoverUnderlineColorProperty", + "LineTypeHoverUnderlineOpacity": "LineTypeHoverUnderlineOpacity", + "LineTypeHoverUnderlineOpacityProperty": "LineTypeHoverUnderlineOpacityProperty", + "LineTypeHoverUnderlineWidth": "LineTypeHoverUnderlineWidth", + "LineTypeHoverUnderlineWidthProperty": "LineTypeHoverUnderlineWidthProperty", + "LineTypeUnderlineColor": "LineTypeUnderlineColor", + "LineTypeUnderlineColorProperty": "LineTypeUnderlineColorProperty", + "LineTypeUnderlineOpacity": "LineTypeUnderlineOpacity", + "LineTypeUnderlineOpacityProperty": "LineTypeUnderlineOpacityProperty", + "LineTypeUnderlineRippleColor": "LineTypeUnderlineRippleColor", + "LineTypeUnderlineRippleColorProperty": "LineTypeUnderlineRippleColorProperty", + "LineTypeUnderlineRippleOpacity": "LineTypeUnderlineRippleOpacity", + "LineTypeUnderlineRippleOpacityProperty": "LineTypeUnderlineRippleOpacityProperty", + "LineTypeUnderlineRippleWidth": "LineTypeUnderlineRippleWidth", + "LineTypeUnderlineRippleWidthProperty": "LineTypeUnderlineRippleWidthProperty", + "LineTypeUnderlineWidth": "LineTypeUnderlineWidth", + "LineTypeUnderlineWidthProperty": "LineTypeUnderlineWidthProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnGotFocus(EventArgs)": "OnGotFocus(EventArgs)", + "OnGotFocus": "OnGotFocus(EventArgs)", + "OnLostFocus(EventArgs)": "OnLostFocus(EventArgs)", + "OnLostFocus": "OnLostFocus(EventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "SearchTypeBackgroundColor": "SearchTypeBackgroundColor", + "SearchTypeBackgroundColorProperty": "SearchTypeBackgroundColorProperty", + "SearchTypeBorderColor": "SearchTypeBorderColor", + "SearchTypeBorderColorProperty": "SearchTypeBorderColorProperty", + "SearchTypeBorderWidth": "SearchTypeBorderWidth", + "SearchTypeBorderWidthProperty": "SearchTypeBorderWidthProperty", + "SearchTypeContentPaddingBottom": "SearchTypeContentPaddingBottom", + "SearchTypeContentPaddingBottomProperty": "SearchTypeContentPaddingBottomProperty", + "SearchTypeContentPaddingLeft": "SearchTypeContentPaddingLeft", + "SearchTypeContentPaddingLeftProperty": "SearchTypeContentPaddingLeftProperty", + "SearchTypeContentPaddingRight": "SearchTypeContentPaddingRight", + "SearchTypeContentPaddingRightProperty": "SearchTypeContentPaddingRightProperty", + "SearchTypeContentPaddingTop": "SearchTypeContentPaddingTop", + "SearchTypeContentPaddingTopProperty": "SearchTypeContentPaddingTopProperty", + "SearchTypeCornerRadiusBottomLeft": "SearchTypeCornerRadiusBottomLeft", + "SearchTypeCornerRadiusBottomLeftProperty": "SearchTypeCornerRadiusBottomLeftProperty", + "SearchTypeCornerRadiusBottomRight": "SearchTypeCornerRadiusBottomRight", + "SearchTypeCornerRadiusBottomRightProperty": "SearchTypeCornerRadiusBottomRightProperty", + "SearchTypeCornerRadiusTopLeft": "SearchTypeCornerRadiusTopLeft", + "SearchTypeCornerRadiusTopLeftProperty": "SearchTypeCornerRadiusTopLeftProperty", + "SearchTypeCornerRadiusTopRight": "SearchTypeCornerRadiusTopRight", + "SearchTypeCornerRadiusTopRightProperty": "SearchTypeCornerRadiusTopRightProperty", + "SearchTypeFocusBorderColor": "SearchTypeFocusBorderColor", + "SearchTypeFocusBorderColorProperty": "SearchTypeFocusBorderColorProperty", + "SearchTypeFocusBorderWidth": "SearchTypeFocusBorderWidth", + "SearchTypeFocusBorderWidthProperty": "SearchTypeFocusBorderWidthProperty", + "SearchTypeFocusUnderlineColor": "SearchTypeFocusUnderlineColor", + "SearchTypeFocusUnderlineColorProperty": "SearchTypeFocusUnderlineColorProperty", + "SearchTypeFocusUnderlineOpacity": "SearchTypeFocusUnderlineOpacity", + "SearchTypeFocusUnderlineOpacityProperty": "SearchTypeFocusUnderlineOpacityProperty", + "SearchTypeFocusUnderlineRippleOpacity": "SearchTypeFocusUnderlineRippleOpacity", + "SearchTypeFocusUnderlineRippleOpacityProperty": "SearchTypeFocusUnderlineRippleOpacityProperty", + "SearchTypeHoverUnderlineColor": "SearchTypeHoverUnderlineColor", + "SearchTypeHoverUnderlineColorProperty": "SearchTypeHoverUnderlineColorProperty", + "SearchTypeHoverUnderlineOpacity": "SearchTypeHoverUnderlineOpacity", + "SearchTypeHoverUnderlineOpacityProperty": "SearchTypeHoverUnderlineOpacityProperty", + "SearchTypeHoverUnderlineWidth": "SearchTypeHoverUnderlineWidth", + "SearchTypeHoverUnderlineWidthProperty": "SearchTypeHoverUnderlineWidthProperty", + "SearchTypeUnderlineColor": "SearchTypeUnderlineColor", + "SearchTypeUnderlineColorProperty": "SearchTypeUnderlineColorProperty", + "SearchTypeUnderlineOpacity": "SearchTypeUnderlineOpacity", + "SearchTypeUnderlineOpacityProperty": "SearchTypeUnderlineOpacityProperty", + "SearchTypeUnderlineRippleColor": "SearchTypeUnderlineRippleColor", + "SearchTypeUnderlineRippleColorProperty": "SearchTypeUnderlineRippleColorProperty", + "SearchTypeUnderlineRippleOpacity": "SearchTypeUnderlineRippleOpacity", + "SearchTypeUnderlineRippleOpacityProperty": "SearchTypeUnderlineRippleOpacityProperty", + "SearchTypeUnderlineRippleWidth": "SearchTypeUnderlineRippleWidth", + "SearchTypeUnderlineRippleWidthProperty": "SearchTypeUnderlineRippleWidthProperty", + "SearchTypeUnderlineWidth": "SearchTypeUnderlineWidth", + "SearchTypeUnderlineWidthProperty": "SearchTypeUnderlineWidthProperty", + "UnderlineColor": "UnderlineColor", + "UnderlineColorProperty": "UnderlineColorProperty", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineOpacityProperty": "UnderlineOpacityProperty", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleColorProperty": "UnderlineRippleColorProperty", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleOpacityProperty": "UnderlineRippleOpacityProperty", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineRippleWidthProperty": "UnderlineRippleWidthProperty", + "UnderlineWidth": "UnderlineWidth", + "UnderlineWidthProperty": "UnderlineWidthProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamInputGroupItem": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamInputGroupItem", + "k": "class", + "s": "classes", + "m": { + "Name": "Name", + "NameProperty": "NameProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamLabel": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamLabel", + "k": "class", + "s": "classes", + "m": { + "XamLabel()": "XamLabel()", + "XamLabel": "XamLabel()", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualHighlightTextColor": "ActualHighlightTextColor", + "ActualHighlightTextColorProperty": "ActualHighlightTextColorProperty", + "ActualHoverHighlightTextColor": "ActualHoverHighlightTextColor", + "ActualHoverHighlightTextColorProperty": "ActualHoverHighlightTextColorProperty", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualHoverTextColorProperty": "ActualHoverTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HighlightTextColor": "HighlightTextColor", + "HighlightTextColorProperty": "HighlightTextColorProperty", + "HoverHighlightTextColor": "HoverHighlightTextColor", + "HoverHighlightTextColorProperty": "HoverHighlightTextColorProperty", + "HoverTextColor": "HoverTextColor", + "HoverTextColorProperty": "HoverTextColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "Text": "Text", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TextProperty": "TextProperty", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "XamLinearGauge": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/XamLinearGauge", + "k": "class", + "s": "classes", + "m": { + "XamLinearGauge()": "XamLinearGauge()", + "XamLinearGauge": "XamLinearGauge()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueDisplayModeProperty": "ActualHighlightValueDisplayModeProperty", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualHighlightValueOpacityProperty": "ActualHighlightValueOpacityProperty", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Animating": "Animating", + "AnimatingProperty": "AnimatingProperty", + "BackingBrush": "BackingBrush", + "BackingBrushProperty": "BackingBrushProperty", + "BackingInnerExtent": "BackingInnerExtent", + "BackingInnerExtentProperty": "BackingInnerExtentProperty", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOuterExtentProperty": "BackingOuterExtentProperty", + "BackingOutline": "BackingOutline", + "BackingOutlineProperty": "BackingOutlineProperty", + "BackingStrokeThickness": "BackingStrokeThickness", + "BackingStrokeThicknessProperty": "BackingStrokeThicknessProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontBrush": "FontBrush", + "FontBrushProperty": "FontBrushProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetValueForPoint(Point)": "GetValueForPoint(Point)", + "GetValueForPoint": "GetValueForPoint(Point)", + "HighlightNeedleContainsPoint(Point)": "HighlightNeedleContainsPoint(Point)", + "HighlightNeedleContainsPoint": "HighlightNeedleContainsPoint(Point)", + "HighlightNeedleContainsPoint(Point, bool)": "HighlightNeedleContainsPoint(Point, bool)", + "HighlightValue": "HighlightValue", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueDisplayModeProperty": "HighlightValueDisplayModeProperty", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightValueOpacityProperty": "HighlightValueOpacityProperty", + "HighlightValueProperty": "HighlightValueProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "IsHighlightNeedleDraggingEnabled": "IsHighlightNeedleDraggingEnabled", + "IsHighlightNeedleDraggingEnabledProperty": "IsHighlightNeedleDraggingEnabledProperty", + "IsNeedleDraggingEnabled": "IsNeedleDraggingEnabled", + "IsNeedleDraggingEnabledProperty": "IsNeedleDraggingEnabledProperty", + "IsScaleInverted": "IsScaleInverted", + "IsScaleInvertedProperty": "IsScaleInvertedProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInterval": "LabelInterval", + "LabelIntervalProperty": "LabelIntervalProperty", + "LabelsPostInitial": "LabelsPostInitial", + "LabelsPostInitialProperty": "LabelsPostInitialProperty", + "LabelsPreTerminal": "LabelsPreTerminal", + "LabelsPreTerminalProperty": "LabelsPreTerminalProperty", + "LabelsVisible": "LabelsVisible", + "LabelsVisibleProperty": "LabelsVisibleProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MergeViewports": "MergeViewports", + "MergeViewportsProperty": "MergeViewportsProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "MinorTickBrush": "MinorTickBrush", + "MinorTickBrushProperty": "MinorTickBrushProperty", + "MinorTickCount": "MinorTickCount", + "MinorTickCountProperty": "MinorTickCountProperty", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickEndExtentProperty": "MinorTickEndExtentProperty", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStartExtentProperty": "MinorTickStartExtentProperty", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "MinorTickStrokeThicknessProperty": "MinorTickStrokeThicknessProperty", + "NeedleBreadth": "NeedleBreadth", + "NeedleBreadthProperty": "NeedleBreadthProperty", + "NeedleBrush": "NeedleBrush", + "NeedleBrushProperty": "NeedleBrushProperty", + "NeedleContainsPoint(Point)": "NeedleContainsPoint(Point)", + "NeedleContainsPoint": "NeedleContainsPoint(Point)", + "NeedleContainsPoint(Point, bool)": "NeedleContainsPoint(Point, bool)", + "NeedleInnerBaseWidth": "NeedleInnerBaseWidth", + "NeedleInnerBaseWidthProperty": "NeedleInnerBaseWidthProperty", + "NeedleInnerExtent": "NeedleInnerExtent", + "NeedleInnerExtentProperty": "NeedleInnerExtentProperty", + "NeedleInnerPointExtent": "NeedleInnerPointExtent", + "NeedleInnerPointExtentProperty": "NeedleInnerPointExtentProperty", + "NeedleInnerPointWidth": "NeedleInnerPointWidth", + "NeedleInnerPointWidthProperty": "NeedleInnerPointWidthProperty", + "NeedleName": "NeedleName", + "NeedleNameProperty": "NeedleNameProperty", + "NeedleOuterBaseWidth": "NeedleOuterBaseWidth", + "NeedleOuterBaseWidthProperty": "NeedleOuterBaseWidthProperty", + "NeedleOuterExtent": "NeedleOuterExtent", + "NeedleOuterExtentProperty": "NeedleOuterExtentProperty", + "NeedleOuterPointExtent": "NeedleOuterPointExtent", + "NeedleOuterPointExtentProperty": "NeedleOuterPointExtentProperty", + "NeedleOuterPointWidth": "NeedleOuterPointWidth", + "NeedleOuterPointWidthProperty": "NeedleOuterPointWidthProperty", + "NeedleOutline": "NeedleOutline", + "NeedleOutlineProperty": "NeedleOutlineProperty", + "NeedleShape": "NeedleShape", + "NeedleShapeProperty": "NeedleShapeProperty", + "NeedleStrokeThickness": "NeedleStrokeThickness", + "NeedleStrokeThicknessProperty": "NeedleStrokeThicknessProperty", + "OnAlignLabel(AlignLinearGraphLabelEventArgs)": "OnAlignLabel(AlignLinearGraphLabelEventArgs)", + "OnAlignLabel": "OnAlignLabel(AlignLinearGraphLabelEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFormatLabel(FormatLinearGraphLabelEventArgs)": "OnFormatLabel(FormatLinearGraphLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(FormatLinearGraphLabelEventArgs)", + "OnHighlightValueChanged(DoubleValueChangedEventArgs)": "OnHighlightValueChanged(DoubleValueChangedEventArgs)", + "OnHighlightValueChanged": "OnHighlightValueChanged(DoubleValueChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(DoubleValueChangedEventArgs)": "OnValueChanged(DoubleValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(DoubleValueChangedEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RangeBrushes": "RangeBrushes", + "RangeBrushesProperty": "RangeBrushesProperty", + "RangeInnerExtent": "RangeInnerExtent", + "RangeInnerExtentProperty": "RangeInnerExtentProperty", + "RangeOuterExtent": "RangeOuterExtent", + "RangeOuterExtentProperty": "RangeOuterExtentProperty", + "RangeOutlines": "RangeOutlines", + "RangeOutlinesProperty": "RangeOutlinesProperty", + "Ranges": "Ranges", + "ScaleBrush": "ScaleBrush", + "ScaleBrushProperty": "ScaleBrushProperty", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleEndExtentProperty": "ScaleEndExtentProperty", + "ScaleInnerExtent": "ScaleInnerExtent", + "ScaleInnerExtentProperty": "ScaleInnerExtentProperty", + "ScaleOuterExtent": "ScaleOuterExtent", + "ScaleOuterExtentProperty": "ScaleOuterExtentProperty", + "ScaleOutline": "ScaleOutline", + "ScaleOutlineProperty": "ScaleOutlineProperty", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleStartExtentProperty": "ScaleStartExtentProperty", + "ScaleStrokeThickness": "ScaleStrokeThickness", + "ScaleStrokeThicknessProperty": "ScaleStrokeThicknessProperty", + "TickBrush": "TickBrush", + "TickBrushProperty": "TickBrushProperty", + "TickEndExtent": "TickEndExtent", + "TickEndExtentProperty": "TickEndExtentProperty", + "TickStartExtent": "TickStartExtent", + "TickStartExtentProperty": "TickStartExtentProperty", + "TickStrokeThickness": "TickStrokeThickness", + "TickStrokeThicknessProperty": "TickStrokeThicknessProperty", + "TicksPostInitial": "TicksPostInitial", + "TicksPostInitialProperty": "TicksPostInitialProperty", + "TicksPreTerminal": "TicksPreTerminal", + "TicksPreTerminalProperty": "TicksPreTerminalProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionProgress": "TransitionProgress", + "TransitionProgressProperty": "TransitionProgressProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamListPanel": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/XamListPanel", + "k": "class", + "s": "classes", + "m": { + "XamListPanel()": "XamListPanel()", + "XamListPanel": "XamListPanel()", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderBottomWidthProperty": "ActivationBorderBottomWidthProperty", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderLeftWidthProperty": "ActivationBorderLeftWidthProperty", + "ActivationBorderProperty": "ActivationBorderProperty", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderRightWidthProperty": "ActivationBorderRightWidthProperty", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationBorderTopWidthProperty": "ActivationBorderTopWidthProperty", + "ActivationMode": "ActivationMode", + "ActivationModeProperty": "ActivationModeProperty", + "ActiveRow": "ActiveRow", + "ActiveRowProperty": "ActiveRowProperty", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualPrimaryKeyProperty": "ActualPrimaryKeyProperty", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CreateLocalDataSource(object, string[])": "CreateLocalDataSource(object, string[])", + "CreateLocalDataSource": "CreateLocalDataSource(object, string[])", + "DataIndexOfItem(object)": "DataIndexOfItem(object)", + "DataIndexOfItem": "DataIndexOfItem(object)", + "DataIndexOfPrimaryKey(object[])": "DataIndexOfPrimaryKey(object[])", + "DataIndexOfPrimaryKey": "DataIndexOfPrimaryKey(object[])", + "DeselectAllRows()": "DeselectAllRows()", + "DeselectAllRows": "DeselectAllRows()", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "GetFirstVisibleIndex()": "GetFirstVisibleIndex()", + "GetFirstVisibleIndex": "GetFirstVisibleIndex()", + "GetItemKey(string[], object)": "GetItemKey(string[], object)", + "GetItemKey": "GetItemKey(string[], object)", + "GetLastVisibleIndex()": "GetLastVisibleIndex()", + "GetLastVisibleIndex": "GetLastVisibleIndex()", + "GetRowKey(string[], int)": "GetRowKey(string[], int)", + "GetRowKey": "GetRowKey(string[], int)", + "HasUnevenSizes": "HasUnevenSizes", + "HasUnevenSizesProperty": "HasUnevenSizesProperty", + "InvalidateVisibleItems()": "InvalidateVisibleItems()", + "InvalidateVisibleItems": "InvalidateVisibleItems()", + "IsActiveRowStyleEnabled": "IsActiveRowStyleEnabled", + "IsActiveRowStyleEnabledProperty": "IsActiveRowStyleEnabledProperty", + "IsActiveRowStyleEnabledPropertyName": "IsActiveRowStyleEnabledPropertyName", + "IsCustomRowHeightEnabled": "IsCustomRowHeightEnabled", + "IsCustomRowHeightEnabledProperty": "IsCustomRowHeightEnabledProperty", + "ItemSpacing": "ItemSpacing", + "ItemSpacingProperty": "ItemSpacingProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "MoveViewportTo(int, int)": "MoveViewportTo(int, int)", + "MoveViewportTo": "MoveViewportTo(int, int)", + "NormalBackground": "NormalBackground", + "NormalBackgroundProperty": "NormalBackgroundProperty", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyOnAllSelectionChanges": "NotifyOnAllSelectionChanges", + "NotifyOnAllSelectionChangesProperty": "NotifyOnAllSelectionChangesProperty", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "OnActiveRowChanged(ListPanelActiveRowChangedEventArgs)": "OnActiveRowChanged(ListPanelActiveRowChangedEventArgs)", + "OnActiveRowChanged": "OnActiveRowChanged(ListPanelActiveRowChangedEventArgs)", + "OnContentRefreshed(ListPanelContentRefreshedEventArgs)": "OnContentRefreshed(ListPanelContentRefreshedEventArgs)", + "OnContentRefreshed": "OnContentRefreshed(ListPanelContentRefreshedEventArgs)", + "OnContentSizeChanged()": "OnContentSizeChanged()", + "OnContentSizeChanged": "OnContentSizeChanged()", + "OnItemClicked(ListPanelItemEventArgs)": "OnItemClicked(ListPanelItemEventArgs)", + "OnItemClicked": "OnItemClicked(ListPanelItemEventArgs)", + "OnItemHeightRequested(ListPanelTemplateHeightRequestedEventArgs)": "OnItemHeightRequested(ListPanelTemplateHeightRequestedEventArgs)", + "OnItemHeightRequested": "OnItemHeightRequested(ListPanelTemplateHeightRequestedEventArgs)", + "OnItemRebind(ListPanelContentRebindEventArgs)": "OnItemRebind(ListPanelContentRebindEventArgs)", + "OnItemRebind": "OnItemRebind(ListPanelContentRebindEventArgs)", + "OnItemRecycled(ListPanelContentRecycledEventArgs)": "OnItemRecycled(ListPanelContentRecycledEventArgs)", + "OnItemRecycled": "OnItemRecycled(ListPanelContentRecycledEventArgs)", + "OnItemWidthRequested(ListPanelTemplateWidthRequestedEventArgs)": "OnItemWidthRequested(ListPanelTemplateWidthRequestedEventArgs)", + "OnItemWidthRequested": "OnItemWidthRequested(ListPanelTemplateWidthRequestedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRowUpdating(ListPanelTemplateItemUpdatingEventArgs)": "OnRowUpdating(ListPanelTemplateItemUpdatingEventArgs)", + "OnRowUpdating": "OnRowUpdating(ListPanelTemplateItemUpdatingEventArgs)", + "OnSelectedItemsChanged(ListPanelSelectedItemsChangedEventArgs)": "OnSelectedItemsChanged(ListPanelSelectedItemsChangedEventArgs)", + "OnSelectedItemsChanged": "OnSelectedItemsChanged(ListPanelSelectedItemsChangedEventArgs)", + "OnSelectedKeysChanged(ListPanelSelectedKeysChangedEventArgs)": "OnSelectedKeysChanged(ListPanelSelectedKeysChangedEventArgs)", + "OnSelectedKeysChanged": "OnSelectedKeysChanged(ListPanelSelectedKeysChangedEventArgs)", + "OnSelectionChanged(ListPanelSelectionChangedEventArgs)": "OnSelectionChanged(ListPanelSelectionChangedEventArgs)", + "OnSelectionChanged": "OnSelectionChanged(ListPanelSelectionChangedEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "PrimaryKey": "PrimaryKey", + "PrimaryKeyProperty": "PrimaryKeyProperty", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SchemaIncludedPropertiesProperty": "SchemaIncludedPropertiesProperty", + "ScrollToLastRowByIndex(double)": "ScrollToLastRowByIndex(double)", + "ScrollToLastRowByIndex": "ScrollToLastRowByIndex(double)", + "ScrollToRowByIndex(double)": "ScrollToRowByIndex(double)", + "ScrollToRowByIndex": "ScrollToRowByIndex(double)", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarBackgroundProperty": "ScrollbarBackgroundProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SelectAllRows()": "SelectAllRows()", + "SelectAllRows": "SelectAllRows()", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundProperty": "SelectedBackgroundProperty", + "SelectedItems": "SelectedItems", + "SelectedKeys": "SelectedKeys", + "SelectionBehavior": "SelectionBehavior", + "SelectionBehaviorProperty": "SelectionBehaviorProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "SetScrollbarStyle(ScrollbarStyle)": "SetScrollbarStyle(ScrollbarStyle)", + "SetScrollbarStyle": "SetScrollbarStyle(ScrollbarStyle)", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamMultiColumnComboBox": [ + { + "p": "Infragistics.Uno.DataGrid", + "u": "/api/uno-platform/Infragistics.Uno.DataGrid/latest/classes/XamMultiColumnComboBox", + "k": "class", + "s": "classes", + "m": { + "XamMultiColumnComboBox()": "XamMultiColumnComboBox()", + "XamMultiColumnComboBox": "XamMultiColumnComboBox()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualBaseTheme": "ActualBaseTheme", + "ActualBaseThemeProperty": "ActualBaseThemeProperty", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderColorProperty": "ActualBorderColorProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingBottomProperty": "ActualContentPaddingBottomProperty", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingLeftProperty": "ActualContentPaddingLeftProperty", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingRightProperty": "ActualContentPaddingRightProperty", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualContentPaddingTopProperty": "ActualContentPaddingTopProperty", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderColorProperty": "ActualFocusBorderColorProperty", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusBorderWidthProperty": "ActualFocusBorderWidthProperty", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineColorProperty": "ActualFocusUnderlineColorProperty", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineOpacityProperty": "ActualFocusUnderlineOpacityProperty", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualFocusUnderlineRippleOpacityProperty": "ActualFocusUnderlineRippleOpacityProperty", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineColorProperty": "ActualHoverUnderlineColorProperty", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineOpacityProperty": "ActualHoverUnderlineOpacityProperty", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualHoverUnderlineWidthProperty": "ActualHoverUnderlineWidthProperty", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelTextColorProperty": "ActualLabelTextColorProperty", + "ActualLabelVisible": "ActualLabelVisible", + "ActualLabelVisibleProperty": "ActualLabelVisibleProperty", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelBackgroundColorProperty": "ActualNoMatchesFoundLabelBackgroundColorProperty", + "ActualNoMatchesFoundLabelProperty": "ActualNoMatchesFoundLabelProperty", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualNoMatchesFoundLabelTextColorProperty": "ActualNoMatchesFoundLabelTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineColorProperty": "ActualUnderlineColorProperty", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineOpacityProperty": "ActualUnderlineOpacityProperty", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleColorProperty": "ActualUnderlineRippleColorProperty", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleOpacityProperty": "ActualUnderlineRippleOpacityProperty", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineRippleWidthProperty": "ActualUnderlineRippleWidthProperty", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualUnderlineWidthProperty": "ActualUnderlineWidthProperty", + "ActualValueField": "ActualValueField", + "ActualValueFieldProperty": "ActualValueFieldProperty", + "AllowFilter": "AllowFilter", + "AllowFilterProperty": "AllowFilterProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderColor": "BorderColor", + "BorderColorProperty": "BorderColorProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "CloseUp()": "CloseUp()", + "CloseUp": "CloseUp()", + "ColumnHeadersVisible": "ColumnHeadersVisible", + "ColumnHeadersVisibleProperty": "ColumnHeadersVisibleProperty", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceDesiredPropertiesProperty": "DataSourceDesiredPropertiesProperty", + "DefaultColumnWidth": "DefaultColumnWidth", + "DefaultColumnWidthProperty": "DefaultColumnWidthProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DropDown()": "DropDown()", + "DropDown": "DropDown()", + "DropDownButtonVisible": "DropDownButtonVisible", + "DropDownButtonVisibleProperty": "DropDownButtonVisibleProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "Fields": "Fields", + "FieldsProperty": "FieldsProperty", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderColorProperty": "FocusBorderColorProperty", + "FocusBorderWidth": "FocusBorderWidth", + "FocusBorderWidthProperty": "FocusBorderWidthProperty", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineColorProperty": "FocusUnderlineColorProperty", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineOpacityProperty": "FocusUnderlineOpacityProperty", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FocusUnderlineRippleOpacityProperty": "FocusUnderlineRippleOpacityProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineColorProperty": "HoverUnderlineColorProperty", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineOpacityProperty": "HoverUnderlineOpacityProperty", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "HoverUnderlineWidthProperty": "HoverUnderlineWidthProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelProperty": "LabelProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "NoMatchesFoundLabel": "NoMatchesFoundLabel", + "NoMatchesFoundLabelBackgroundColor": "NoMatchesFoundLabelBackgroundColor", + "NoMatchesFoundLabelBackgroundColorProperty": "NoMatchesFoundLabelBackgroundColorProperty", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontFamilyProperty": "NoMatchesFoundLabelFontFamilyProperty", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontSizeProperty": "NoMatchesFoundLabelFontSizeProperty", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontStyleProperty": "NoMatchesFoundLabelFontStyleProperty", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "NoMatchesFoundLabelFontWeightProperty": "NoMatchesFoundLabelFontWeightProperty", + "NoMatchesFoundLabelProperty": "NoMatchesFoundLabelProperty", + "NoMatchesFoundLabelTextColor": "NoMatchesFoundLabelTextColor", + "NoMatchesFoundLabelTextColorProperty": "NoMatchesFoundLabelTextColorProperty", + "OnApplyTemplate()": "OnApplyTemplate()", + "OnApplyTemplate": "OnApplyTemplate()", + "OnChange(InputChangeEventArgs)": "OnChange(InputChangeEventArgs)", + "OnChange": "OnChange(InputChangeEventArgs)", + "OnChanging(InputChangeEventArgs)": "OnChanging(InputChangeEventArgs)", + "OnChanging": "OnChanging(InputChangeEventArgs)", + "OnGotFocus(GotFocusEventArgs)": "OnGotFocus(GotFocusEventArgs)", + "OnGotFocus": "OnGotFocus(GotFocusEventArgs)", + "OnKeyDown(KeyEventArgs)": "OnKeyDown(KeyEventArgs)", + "OnKeyDown": "OnKeyDown(KeyEventArgs)", + "OnLostFocus(LostFocusEventArgs)": "OnLostFocus(LostFocusEventArgs)", + "OnLostFocus": "OnLostFocus(LostFocusEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectedValueChanged(MultiColumnComboBoxValueChangedEventArgs)": "OnSelectedValueChanged(MultiColumnComboBoxValueChangedEventArgs)", + "OnSelectedValueChanged": "OnSelectedValueChanged(MultiColumnComboBoxValueChangedEventArgs)", + "OnTextValueChanged(MultiColumnComboBoxTextChangedEventArgs)": "OnTextValueChanged(MultiColumnComboBoxTextChangedEventArgs)", + "OnTextValueChanged": "OnTextValueChanged(MultiColumnComboBoxTextChangedEventArgs)", + "Placeholder": "Placeholder", + "PlaceholderProperty": "PlaceholderProperty", + "RowSeparatorsVisible": "RowSeparatorsVisible", + "RowSeparatorsVisibleProperty": "RowSeparatorsVisibleProperty", + "Select()": "Select()", + "Select": "Select()", + "ShowClearButton": "ShowClearButton", + "ShowClearButtonProperty": "ShowClearButtonProperty", + "SortMode": "SortMode", + "SortModeProperty": "SortModeProperty", + "Text": "Text", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TextField": "TextField", + "TextFieldProperty": "TextFieldProperty", + "TextProperty": "TextProperty", + "UnderlineColor": "UnderlineColor", + "UnderlineColorProperty": "UnderlineColorProperty", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineOpacityProperty": "UnderlineOpacityProperty", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleColorProperty": "UnderlineRippleColorProperty", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleOpacityProperty": "UnderlineRippleOpacityProperty", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineRippleWidthProperty": "UnderlineRippleWidthProperty", + "UnderlineWidth": "UnderlineWidth", + "UnderlineWidthProperty": "UnderlineWidthProperty", + "Value": "Value", + "ValueField": "ValueField", + "ValueFieldProperty": "ValueFieldProperty", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamMultiSlider": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamMultiSlider", + "k": "class", + "s": "classes", + "m": { + "XamMultiSlider()": "XamMultiSlider()", + "XamMultiSlider": "XamMultiSlider()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "AreThumbCalloutsEnabled": "AreThumbCalloutsEnabled", + "AreThumbCalloutsEnabledProperty": "AreThumbCalloutsEnabledProperty", + "BarBrush": "BarBrush", + "BarBrushProperty": "BarBrushProperty", + "BarExtent": "BarExtent", + "BarExtentProperty": "BarExtentProperty", + "BarOutline": "BarOutline", + "BarOutlineProperty": "BarOutlineProperty", + "BarStrokeThickness": "BarStrokeThickness", + "BarStrokeThicknessProperty": "BarStrokeThicknessProperty", + "CalloutBrush": "CalloutBrush", + "CalloutBrushProperty": "CalloutBrushProperty", + "CalloutOutline": "CalloutOutline", + "CalloutOutlineProperty": "CalloutOutlineProperty", + "CalloutStrokeThickness": "CalloutStrokeThickness", + "CalloutStrokeThicknessProperty": "CalloutStrokeThicknessProperty", + "CalloutTextColor": "CalloutTextColor", + "CalloutTextColorProperty": "CalloutTextColorProperty", + "EndInset": "EndInset", + "EndInsetProperty": "EndInsetProperty", + "Flush()": "Flush()", + "Flush": "Flush()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "IsCustomBarProvided": "IsCustomBarProvided", + "IsCustomBarProvidedProperty": "IsCustomBarProvidedProperty", + "IsCustomRangeThumbProvided": "IsCustomRangeThumbProvided", + "IsCustomRangeThumbProvidedProperty": "IsCustomRangeThumbProvidedProperty", + "IsCustomShadeProvided": "IsCustomShadeProvided", + "IsCustomShadeProvidedProperty": "IsCustomShadeProvidedProperty", + "IsCustomThumbProvided": "IsCustomThumbProvided", + "IsCustomThumbProvidedProperty": "IsCustomThumbProvidedProperty", + "Max": "Max", + "MaxProperty": "MaxProperty", + "MeasureOverride(Size)": "MeasureOverride(Size)", + "MeasureOverride": "MeasureOverride(Size)", + "Min": "Min", + "MinProperty": "MinProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnResolvingToolTipValue(MultiSliderResolvingToolTipValueEventArgs)": "OnResolvingToolTipValue(MultiSliderResolvingToolTipValueEventArgs)", + "OnResolvingToolTipValue": "OnResolvingToolTipValue(MultiSliderResolvingToolTipValueEventArgs)", + "OnThumbValueChanged(MultiSliderThumbValueChangingEventArgs)": "OnThumbValueChanged(MultiSliderThumbValueChangingEventArgs)", + "OnThumbValueChanged": "OnThumbValueChanged(MultiSliderThumbValueChangingEventArgs)", + "OnThumbValueChanging(MultiSliderThumbValueChangingEventArgs)": "OnThumbValueChanging(MultiSliderThumbValueChangingEventArgs)", + "OnThumbValueChanging": "OnThumbValueChanging(MultiSliderThumbValueChangingEventArgs)", + "OnYValueChanged(MultiSliderYValueChangingEventArgs)": "OnYValueChanged(MultiSliderYValueChangingEventArgs)", + "OnYValueChanged": "OnYValueChanged(MultiSliderYValueChangingEventArgs)", + "OnYValueChanging(MultiSliderYValueChangingEventArgs)": "OnYValueChanging(MultiSliderYValueChangingEventArgs)", + "OnYValueChanging": "OnYValueChanging(MultiSliderYValueChangingEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "RangeThumbBrush": "RangeThumbBrush", + "RangeThumbBrushProperty": "RangeThumbBrushProperty", + "RangeThumbOutline": "RangeThumbOutline", + "RangeThumbOutlineProperty": "RangeThumbOutlineProperty", + "RangeThumbRidgesBrush": "RangeThumbRidgesBrush", + "RangeThumbRidgesBrushProperty": "RangeThumbRidgesBrushProperty", + "RangeThumbStrokeThickness": "RangeThumbStrokeThickness", + "RangeThumbStrokeThicknessProperty": "RangeThumbStrokeThicknessProperty", + "StartInset": "StartInset", + "StartInsetProperty": "StartInsetProperty", + "Step": "Step", + "StepProperty": "StepProperty", + "ThumbBrush": "ThumbBrush", + "ThumbBrushProperty": "ThumbBrushProperty", + "ThumbCalloutFontFamily": "ThumbCalloutFontFamily", + "ThumbCalloutFontFamilyProperty": "ThumbCalloutFontFamilyProperty", + "ThumbCalloutFontSize": "ThumbCalloutFontSize", + "ThumbCalloutFontSizeProperty": "ThumbCalloutFontSizeProperty", + "ThumbCalloutFontStyle": "ThumbCalloutFontStyle", + "ThumbCalloutFontStyleProperty": "ThumbCalloutFontStyleProperty", + "ThumbCalloutFontWeight": "ThumbCalloutFontWeight", + "ThumbCalloutFontWeightProperty": "ThumbCalloutFontWeightProperty", + "ThumbHeight": "ThumbHeight", + "ThumbHeightProperty": "ThumbHeightProperty", + "ThumbOutline": "ThumbOutline", + "ThumbOutlineProperty": "ThumbOutlineProperty", + "ThumbRidgesBrush": "ThumbRidgesBrush", + "ThumbRidgesBrushProperty": "ThumbRidgesBrushProperty", + "ThumbStrokeThickness": "ThumbStrokeThickness", + "ThumbStrokeThicknessProperty": "ThumbStrokeThicknessProperty", + "ThumbWidth": "ThumbWidth", + "ThumbWidthProperty": "ThumbWidthProperty", + "Thumbs": "Thumbs", + "TrackDirty()": "TrackDirty()", + "TrackDirty": "TrackDirty()", + "TrackEndInset": "TrackEndInset", + "TrackEndInsetProperty": "TrackEndInsetProperty", + "TrackStartInset": "TrackStartInset", + "TrackStartInsetProperty": "TrackStartInsetProperty", + "WindowRect": "WindowRect", + "WindowRectProperty": "WindowRectProperty", + "YMax": "YMax", + "YMaxProperty": "YMaxProperty", + "YMin": "YMin", + "YMinProperty": "YMinProperty", + "YStep": "YStep", + "YStepProperty": "YStepProperty", + "YTrackEndInset": "YTrackEndInset", + "YTrackEndInsetProperty": "YTrackEndInsetProperty", + "YTrackStartInset": "YTrackStartInset", + "YTrackStartInsetProperty": "YTrackStartInsetProperty", + "YValue": "YValue", + "YValueProperty": "YValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamPieChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/XamPieChart", + "k": "class", + "s": "classes", + "m": { + "XamPieChart()": "XamPieChart()", + "XamPieChart": "XamPieChart()", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)" + } + } + ], + "XamPopup": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/XamPopup", + "k": "class", + "s": "classes", + "m": { + "XamPopup()": "XamPopup()", + "XamPopup": "XamPopup()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualAmbientShadowColorProperty": "ActualAmbientShadowColorProperty", + "ActualElevation": "ActualElevation", + "ActualElevationProperty": "ActualElevationProperty", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualPenumbraShadowColorProperty": "ActualPenumbraShadowColorProperty", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "ActualUmbraShadowColorProperty": "ActualUmbraShadowColorProperty", + "AnimationDuration": "AnimationDuration", + "AnimationDurationProperty": "AnimationDurationProperty", + "AnimationEnabled": "AnimationEnabled", + "AnimationEnabledProperty": "AnimationEnabledProperty", + "AnimationType": "AnimationType", + "AnimationTypeProperty": "AnimationTypeProperty", + "Background": "Background", + "BackgroundProperty": "BackgroundProperty", + "Close()": "Close()", + "Close": "Close()", + "CornerRadius": "CornerRadius", + "CornerRadiusProperty": "CornerRadiusProperty", + "DisableHitTestDuringAnimation": "DisableHitTestDuringAnimation", + "DisableHitTestDuringAnimationProperty": "DisableHitTestDuringAnimationProperty", + "Elevation": "Elevation", + "ElevationProperty": "ElevationProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IsClosing": "IsClosing", + "IsClosingProperty": "IsClosingProperty", + "IsFocusable": "IsFocusable", + "IsFocusableProperty": "IsFocusableProperty", + "IsHitTestVisible": "IsHitTestVisible", + "IsHitTestVisibleProperty": "IsHitTestVisibleProperty", + "IsPointerEnabled": "IsPointerEnabled", + "IsPointerEnabledProperty": "IsPointerEnabledProperty", + "IsShowing": "IsShowing", + "IsShowingProperty": "IsShowingProperty", + "IsShown": "IsShown", + "IsShownProperty": "IsShownProperty", + "OnMeasuringContentSize(PopupMeasuringContentSizeEventArgs)": "OnMeasuringContentSize(PopupMeasuringContentSizeEventArgs)", + "OnMeasuringContentSize": "OnMeasuringContentSize(PopupMeasuringContentSizeEventArgs)", + "OnOnClosed(OnClosedEventArgs)": "OnOnClosed(OnClosedEventArgs)", + "OnOnClosed": "OnOnClosed(OnClosedEventArgs)", + "OnOnPopup(OnPopupEventArgs)": "OnOnPopup(OnPopupEventArgs)", + "OnOnPopup": "OnOnPopup(OnPopupEventArgs)", + "OnPopupGotFocus(FocusEventArgs)": "OnPopupGotFocus(FocusEventArgs)", + "OnPopupGotFocus": "OnPopupGotFocus(FocusEventArgs)", + "OnPopupLostFocus(FocusEventArgs)": "OnPopupLostFocus(FocusEventArgs)", + "OnPopupLostFocus": "OnPopupLostFocus(FocusEventArgs)", + "OnPopupMouseEnter(MouseEventArgs)": "OnPopupMouseEnter(MouseEventArgs)", + "OnPopupMouseEnter": "OnPopupMouseEnter(MouseEventArgs)", + "OnPopupMouseLeave(MouseEventArgs)": "OnPopupMouseLeave(MouseEventArgs)", + "OnPopupMouseLeave": "OnPopupMouseLeave(MouseEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PointerBackground": "PointerBackground", + "PointerBackgroundProperty": "PointerBackgroundProperty", + "PointerPosition": "PointerPosition", + "PointerPositionProperty": "PointerPositionProperty", + "PointerSize": "PointerSize", + "PointerSizeProperty": "PointerSizeProperty", + "ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)": "ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)", + "ShowRelativeToExclusionRect": "ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamPrefix": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamPrefix", + "k": "class", + "s": "classes", + "m": { + "XamPrefix()": "XamPrefix()", + "XamPrefix": "XamPrefix()", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)" + } + } + ], + "XamPropertyEditorPanel": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/XamPropertyEditorPanel", + "k": "class", + "s": "classes", + "m": { + "XamPropertyEditorPanel()": "XamPropertyEditorPanel()", + "XamPropertyEditorPanel": "XamPropertyEditorPanel()", + "ActualDescriptionContext": "ActualDescriptionContext", + "ActualDescriptionContextProperty": "ActualDescriptionContextProperty", + "ActualProperties": "ActualProperties", + "ActualPropertiesProperty": "ActualPropertiesProperty", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "ComponentRenderer": "ComponentRenderer", + "ComponentRendererProperty": "ComponentRendererProperty", + "DescriptionContext": "DescriptionContext", + "DescriptionContextProperty": "DescriptionContextProperty", + "DescriptionType": "DescriptionType", + "DescriptionTypeProperty": "DescriptionTypeProperty", + "IsHorizontal": "IsHorizontal", + "IsHorizontalProperty": "IsHorizontalProperty", + "IsIndirectModeEnabled": "IsIndirectModeEnabled", + "IsIndirectModeEnabledProperty": "IsIndirectModeEnabledProperty", + "IsWrappingEnabled": "IsWrappingEnabled", + "IsWrappingEnabledProperty": "IsWrappingEnabledProperty", + "MeasureOverride(Size)": "MeasureOverride(Size)", + "MeasureOverride": "MeasureOverride(Size)", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Properties": "Properties", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "Target": "Target", + "TargetProperty": "TargetProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "UpdateMode": "UpdateMode", + "UpdateModeProperty": "UpdateModeProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamRadialGauge": [ + { + "p": "Infragistics.Uno.Gauges", + "u": "/api/uno-platform/Infragistics.Uno.Gauges/latest/classes/XamRadialGauge", + "k": "class", + "s": "classes", + "m": { + "XamRadialGauge()": "XamRadialGauge()", + "XamRadialGauge": "XamRadialGauge()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueDisplayModeProperty": "ActualHighlightValueDisplayModeProperty", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualHighlightValueOpacityProperty": "ActualHighlightValueOpacityProperty", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Animating": "Animating", + "AnimatingProperty": "AnimatingProperty", + "BackingBrush": "BackingBrush", + "BackingBrushProperty": "BackingBrushProperty", + "BackingCornerRadius": "BackingCornerRadius", + "BackingCornerRadiusDefaultValue": "BackingCornerRadiusDefaultValue", + "BackingCornerRadiusProperty": "BackingCornerRadiusProperty", + "BackingInnerExtent": "BackingInnerExtent", + "BackingInnerExtentDefaultValue": "BackingInnerExtentDefaultValue", + "BackingInnerExtentProperty": "BackingInnerExtentProperty", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOuterExtentDefaultValue": "BackingOuterExtentDefaultValue", + "BackingOuterExtentProperty": "BackingOuterExtentProperty", + "BackingOutline": "BackingOutline", + "BackingOutlineProperty": "BackingOutlineProperty", + "BackingOversweep": "BackingOversweep", + "BackingOversweepProperty": "BackingOversweepProperty", + "BackingShape": "BackingShape", + "BackingShapeProperty": "BackingShapeProperty", + "BackingStrokeThickness": "BackingStrokeThickness", + "BackingStrokeThicknessProperty": "BackingStrokeThicknessProperty", + "CenterX": "CenterX", + "CenterXProperty": "CenterXProperty", + "CenterY": "CenterY", + "CenterYProperty": "CenterYProperty", + "DuplicateLabelOmissionStrategy": "DuplicateLabelOmissionStrategy", + "DuplicateLabelOmissionStrategyProperty": "DuplicateLabelOmissionStrategyProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontBrush": "FontBrush", + "FontBrushProperty": "FontBrushProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetPointForValue(double, double)": "GetPointForValue(double, double)", + "GetPointForValue": "GetPointForValue(double, double)", + "GetValueForPoint(Point)": "GetValueForPoint(Point)", + "GetValueForPoint": "GetValueForPoint(Point)", + "HighlightLabelAngle": "HighlightLabelAngle", + "HighlightLabelAngleProperty": "HighlightLabelAngleProperty", + "HighlightLabelBrush": "HighlightLabelBrush", + "HighlightLabelBrushProperty": "HighlightLabelBrushProperty", + "HighlightLabelDisplaysValue": "HighlightLabelDisplaysValue", + "HighlightLabelDisplaysValueProperty": "HighlightLabelDisplaysValueProperty", + "HighlightLabelExtent": "HighlightLabelExtent", + "HighlightLabelExtentProperty": "HighlightLabelExtentProperty", + "HighlightLabelFontFamily": "HighlightLabelFontFamily", + "HighlightLabelFontFamilyProperty": "HighlightLabelFontFamilyProperty", + "HighlightLabelFontSize": "HighlightLabelFontSize", + "HighlightLabelFontSizeProperty": "HighlightLabelFontSizeProperty", + "HighlightLabelFontStyle": "HighlightLabelFontStyle", + "HighlightLabelFontStyleProperty": "HighlightLabelFontStyleProperty", + "HighlightLabelFontWeight": "HighlightLabelFontWeight", + "HighlightLabelFontWeightProperty": "HighlightLabelFontWeightProperty", + "HighlightLabelFormat": "HighlightLabelFormat", + "HighlightLabelFormatProperty": "HighlightLabelFormatProperty", + "HighlightLabelFormatSpecifiers": "HighlightLabelFormatSpecifiers", + "HighlightLabelFormatSpecifiersProperty": "HighlightLabelFormatSpecifiersProperty", + "HighlightLabelSnapsToNeedlePivot": "HighlightLabelSnapsToNeedlePivot", + "HighlightLabelSnapsToNeedlePivotProperty": "HighlightLabelSnapsToNeedlePivotProperty", + "HighlightLabelText": "HighlightLabelText", + "HighlightLabelTextProperty": "HighlightLabelTextProperty", + "HighlightNeedleContainsPoint(Point)": "HighlightNeedleContainsPoint(Point)", + "HighlightNeedleContainsPoint": "HighlightNeedleContainsPoint(Point)", + "HighlightNeedleContainsPoint(Point, bool)": "HighlightNeedleContainsPoint(Point, bool)", + "HighlightValue": "HighlightValue", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueDisplayModeProperty": "HighlightValueDisplayModeProperty", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightValueOpacityProperty": "HighlightValueOpacityProperty", + "HighlightValueProperty": "HighlightValueProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "IsHighlightNeedleDraggingConstrained": "IsHighlightNeedleDraggingConstrained", + "IsHighlightNeedleDraggingConstrainedProperty": "IsHighlightNeedleDraggingConstrainedProperty", + "IsHighlightNeedleDraggingEnabled": "IsHighlightNeedleDraggingEnabled", + "IsHighlightNeedleDraggingEnabledProperty": "IsHighlightNeedleDraggingEnabledProperty", + "IsNeedleDraggingConstrained": "IsNeedleDraggingConstrained", + "IsNeedleDraggingConstrainedProperty": "IsNeedleDraggingConstrainedProperty", + "IsNeedleDraggingEnabled": "IsNeedleDraggingEnabled", + "IsNeedleDraggingEnabledProperty": "IsNeedleDraggingEnabledProperty", + "LabelExtent": "LabelExtent", + "LabelExtentDefaultValue": "LabelExtentDefaultValue", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInterval": "LabelInterval", + "LabelIntervalProperty": "LabelIntervalProperty", + "MaximumValue": "MaximumValue", + "MaximumValueDefaultValue": "MaximumValueDefaultValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueDefaultValue": "MinimumValueDefaultValue", + "MinimumValueProperty": "MinimumValueProperty", + "MinorTickBrush": "MinorTickBrush", + "MinorTickBrushProperty": "MinorTickBrushProperty", + "MinorTickCount": "MinorTickCount", + "MinorTickCountProperty": "MinorTickCountProperty", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickEndExtentDefaultValue": "MinorTickEndExtentDefaultValue", + "MinorTickEndExtentProperty": "MinorTickEndExtentProperty", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStartExtentDefaultValue": "MinorTickStartExtentDefaultValue", + "MinorTickStartExtentProperty": "MinorTickStartExtentProperty", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "MinorTickStrokeThicknessProperty": "MinorTickStrokeThicknessProperty", + "NeedleBaseFeatureExtent": "NeedleBaseFeatureExtent", + "NeedleBaseFeatureExtentProperty": "NeedleBaseFeatureExtentProperty", + "NeedleBaseFeatureWidthRatio": "NeedleBaseFeatureWidthRatio", + "NeedleBaseFeatureWidthRatioProperty": "NeedleBaseFeatureWidthRatioProperty", + "NeedleBrush": "NeedleBrush", + "NeedleBrushProperty": "NeedleBrushProperty", + "NeedleContainsPoint(Point)": "NeedleContainsPoint(Point)", + "NeedleContainsPoint": "NeedleContainsPoint(Point)", + "NeedleContainsPoint(Point, bool)": "NeedleContainsPoint(Point, bool)", + "NeedleEndExtent": "NeedleEndExtent", + "NeedleEndExtentProperty": "NeedleEndExtentProperty", + "NeedleEndWidthRatio": "NeedleEndWidthRatio", + "NeedleEndWidthRatioProperty": "NeedleEndWidthRatioProperty", + "NeedleOutline": "NeedleOutline", + "NeedleOutlineProperty": "NeedleOutlineProperty", + "NeedlePivotBrush": "NeedlePivotBrush", + "NeedlePivotBrushProperty": "NeedlePivotBrushProperty", + "NeedlePivotInnerWidthRatio": "NeedlePivotInnerWidthRatio", + "NeedlePivotInnerWidthRatioProperty": "NeedlePivotInnerWidthRatioProperty", + "NeedlePivotOutline": "NeedlePivotOutline", + "NeedlePivotOutlineProperty": "NeedlePivotOutlineProperty", + "NeedlePivotShape": "NeedlePivotShape", + "NeedlePivotShapeProperty": "NeedlePivotShapeProperty", + "NeedlePivotStrokeThickness": "NeedlePivotStrokeThickness", + "NeedlePivotStrokeThicknessProperty": "NeedlePivotStrokeThicknessProperty", + "NeedlePivotWidthRatio": "NeedlePivotWidthRatio", + "NeedlePivotWidthRatioProperty": "NeedlePivotWidthRatioProperty", + "NeedlePointFeatureExtent": "NeedlePointFeatureExtent", + "NeedlePointFeatureExtentProperty": "NeedlePointFeatureExtentProperty", + "NeedlePointFeatureWidthRatio": "NeedlePointFeatureWidthRatio", + "NeedlePointFeatureWidthRatioProperty": "NeedlePointFeatureWidthRatioProperty", + "NeedleShape": "NeedleShape", + "NeedleShapeProperty": "NeedleShapeProperty", + "NeedleStartExtent": "NeedleStartExtent", + "NeedleStartExtentProperty": "NeedleStartExtentProperty", + "NeedleStartWidthRatio": "NeedleStartWidthRatio", + "NeedleStartWidthRatioProperty": "NeedleStartWidthRatioProperty", + "NeedleStrokeThickness": "NeedleStrokeThickness", + "NeedleStrokeThicknessProperty": "NeedleStrokeThicknessProperty", + "OnAlignHighlightLabel(AlignRadialGaugeLabelEventArgs)": "OnAlignHighlightLabel(AlignRadialGaugeLabelEventArgs)", + "OnAlignHighlightLabel": "OnAlignHighlightLabel(AlignRadialGaugeLabelEventArgs)", + "OnAlignLabel(AlignRadialGaugeLabelEventArgs)": "OnAlignLabel(AlignRadialGaugeLabelEventArgs)", + "OnAlignLabel": "OnAlignLabel(AlignRadialGaugeLabelEventArgs)", + "OnAlignSubtitle(AlignRadialGaugeLabelEventArgs)": "OnAlignSubtitle(AlignRadialGaugeLabelEventArgs)", + "OnAlignSubtitle": "OnAlignSubtitle(AlignRadialGaugeLabelEventArgs)", + "OnAlignTitle(AlignRadialGaugeLabelEventArgs)": "OnAlignTitle(AlignRadialGaugeLabelEventArgs)", + "OnAlignTitle": "OnAlignTitle(AlignRadialGaugeLabelEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFormatHighlightLabel(FormatRadialGaugeLabelEventArgs)": "OnFormatHighlightLabel(FormatRadialGaugeLabelEventArgs)", + "OnFormatHighlightLabel": "OnFormatHighlightLabel(FormatRadialGaugeLabelEventArgs)", + "OnFormatLabel(FormatRadialGaugeLabelEventArgs)": "OnFormatLabel(FormatRadialGaugeLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(FormatRadialGaugeLabelEventArgs)", + "OnFormatSubtitle(FormatRadialGaugeLabelEventArgs)": "OnFormatSubtitle(FormatRadialGaugeLabelEventArgs)", + "OnFormatSubtitle": "OnFormatSubtitle(FormatRadialGaugeLabelEventArgs)", + "OnFormatTitle(FormatRadialGaugeLabelEventArgs)": "OnFormatTitle(FormatRadialGaugeLabelEventArgs)", + "OnFormatTitle": "OnFormatTitle(FormatRadialGaugeLabelEventArgs)", + "OnHighlightValueChanged(DoubleValueChangedEventArgs)": "OnHighlightValueChanged(DoubleValueChangedEventArgs)", + "OnHighlightValueChanged": "OnHighlightValueChanged(DoubleValueChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(DoubleValueChangedEventArgs)": "OnValueChanged(DoubleValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(DoubleValueChangedEventArgs)", + "OpticalScalingEnabled": "OpticalScalingEnabled", + "OpticalScalingEnabledProperty": "OpticalScalingEnabledProperty", + "OpticalScalingRatio": "OpticalScalingRatio", + "OpticalScalingRatioProperty": "OpticalScalingRatioProperty", + "OpticalScalingSize": "OpticalScalingSize", + "OpticalScalingSizeProperty": "OpticalScalingSizeProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RadiusMultiplier": "RadiusMultiplier", + "RadiusMultiplierProperty": "RadiusMultiplierProperty", + "RangeBrushes": "RangeBrushes", + "RangeBrushesProperty": "RangeBrushesProperty", + "RangeOutlines": "RangeOutlines", + "RangeOutlinesProperty": "RangeOutlinesProperty", + "Ranges": "Ranges", + "ScaleBrush": "ScaleBrush", + "ScaleBrushProperty": "ScaleBrushProperty", + "ScaleEndAngle": "ScaleEndAngle", + "ScaleEndAngleProperty": "ScaleEndAngleProperty", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleEndExtentDefaultValue": "ScaleEndExtentDefaultValue", + "ScaleEndExtentProperty": "ScaleEndExtentProperty", + "ScaleOversweep": "ScaleOversweep", + "ScaleOversweepProperty": "ScaleOversweepProperty", + "ScaleOversweepShape": "ScaleOversweepShape", + "ScaleOversweepShapeProperty": "ScaleOversweepShapeProperty", + "ScaleStartAngle": "ScaleStartAngle", + "ScaleStartAngleProperty": "ScaleStartAngleProperty", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleStartExtentDefaultValue": "ScaleStartExtentDefaultValue", + "ScaleStartExtentProperty": "ScaleStartExtentProperty", + "ScaleSweepDirection": "ScaleSweepDirection", + "ScaleSweepDirectionProperty": "ScaleSweepDirectionProperty", + "ScaleValue(double)": "ScaleValue(double)", + "ScaleValue": "ScaleValue(double)", + "SubtitleAngle": "SubtitleAngle", + "SubtitleAngleProperty": "SubtitleAngleProperty", + "SubtitleBrush": "SubtitleBrush", + "SubtitleBrushProperty": "SubtitleBrushProperty", + "SubtitleDisplaysValue": "SubtitleDisplaysValue", + "SubtitleDisplaysValueProperty": "SubtitleDisplaysValueProperty", + "SubtitleExtent": "SubtitleExtent", + "SubtitleExtentProperty": "SubtitleExtentProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleFormat": "SubtitleFormat", + "SubtitleFormatProperty": "SubtitleFormatProperty", + "SubtitleFormatSpecifiers": "SubtitleFormatSpecifiers", + "SubtitleFormatSpecifiersProperty": "SubtitleFormatSpecifiersProperty", + "SubtitleSnapsToNeedlePivot": "SubtitleSnapsToNeedlePivot", + "SubtitleSnapsToNeedlePivotProperty": "SubtitleSnapsToNeedlePivotProperty", + "SubtitleText": "SubtitleText", + "SubtitleTextProperty": "SubtitleTextProperty", + "TickBrush": "TickBrush", + "TickBrushProperty": "TickBrushProperty", + "TickEndExtent": "TickEndExtent", + "TickEndExtentDefaultValue": "TickEndExtentDefaultValue", + "TickEndExtentProperty": "TickEndExtentProperty", + "TickStartExtent": "TickStartExtent", + "TickStartExtentDefaultValue": "TickStartExtentDefaultValue", + "TickStartExtentProperty": "TickStartExtentProperty", + "TickStrokeThickness": "TickStrokeThickness", + "TickStrokeThicknessProperty": "TickStrokeThicknessProperty", + "TitleAngle": "TitleAngle", + "TitleAngleProperty": "TitleAngleProperty", + "TitleBrush": "TitleBrush", + "TitleBrushProperty": "TitleBrushProperty", + "TitleDisplaysValue": "TitleDisplaysValue", + "TitleDisplaysValueProperty": "TitleDisplaysValueProperty", + "TitleExtent": "TitleExtent", + "TitleExtentProperty": "TitleExtentProperty", + "TitleFontFamily": "TitleFontFamily", + "TitleFontFamilyProperty": "TitleFontFamilyProperty", + "TitleFontSize": "TitleFontSize", + "TitleFontSizeProperty": "TitleFontSizeProperty", + "TitleFontStyle": "TitleFontStyle", + "TitleFontStyleProperty": "TitleFontStyleProperty", + "TitleFontWeight": "TitleFontWeight", + "TitleFontWeightProperty": "TitleFontWeightProperty", + "TitleFormat": "TitleFormat", + "TitleFormatProperty": "TitleFormatProperty", + "TitleFormatSpecifiers": "TitleFormatSpecifiers", + "TitleFormatSpecifiersProperty": "TitleFormatSpecifiersProperty", + "TitleSnapsToNeedlePivot": "TitleSnapsToNeedlePivot", + "TitleSnapsToNeedlePivotProperty": "TitleSnapsToNeedlePivotProperty", + "TitleText": "TitleText", + "TitleTextProperty": "TitleTextProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionProgress": "TransitionProgress", + "TransitionProgressProperty": "TransitionProgressProperty", + "UnscaleValue(double)": "UnscaleValue(double)", + "UnscaleValue": "UnscaleValue(double)", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamRipple": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamRipple", + "k": "class", + "s": "classes", + "m": { + "XamRipple()": "XamRipple()", + "XamRipple": "XamRipple()", + "ActualHoverColor": "ActualHoverColor", + "ActualHoverColorProperty": "ActualHoverColorProperty", + "ActualRippleColor": "ActualRippleColor", + "ActualRippleColorProperty": "ActualRippleColorProperty", + "EventSource": "EventSource", + "EventSourceProperty": "EventSourceProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "HoverColor": "HoverColor", + "HoverColorProperty": "HoverColorProperty", + "IsCentered": "IsCentered", + "IsCenteredProperty": "IsCenteredProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHoverEnabled": "IsHoverEnabled", + "IsHoverEnabledProperty": "IsHoverEnabledProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "RippleColor": "RippleColor", + "RippleColorProperty": "RippleColorProperty", + "RippleDuration": "RippleDuration", + "RippleDurationProperty": "RippleDurationProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamSparkline": [ + { + "p": "Infragistics.Uno.Sparkline", + "u": "/api/uno-platform/Infragistics.Uno.Sparkline/latest/classes/XamSparkline", + "k": "class", + "s": "classes", + "m": { + "XamSparkline()": "XamSparkline()", + "XamSparkline": "XamSparkline()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FirstMarkerBrush": "FirstMarkerBrush", + "FirstMarkerBrushProperty": "FirstMarkerBrushProperty", + "FirstMarkerSize": "FirstMarkerSize", + "FirstMarkerSizeProperty": "FirstMarkerSizeProperty", + "FirstMarkerVisibility": "FirstMarkerVisibility", + "FirstMarkerVisibilityProperty": "FirstMarkerVisibilityProperty", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HighMarkerBrush": "HighMarkerBrush", + "HighMarkerBrushProperty": "HighMarkerBrushProperty", + "HighMarkerSize": "HighMarkerSize", + "HighMarkerSizeProperty": "HighMarkerSizeProperty", + "HighMarkerVisibility": "HighMarkerVisibility", + "HighMarkerVisibilityProperty": "HighMarkerVisibilityProperty", + "HorizontalAxisBrush": "HorizontalAxisBrush", + "HorizontalAxisBrushProperty": "HorizontalAxisBrushProperty", + "HorizontalAxisVisibility": "HorizontalAxisVisibility", + "HorizontalAxisVisibilityProperty": "HorizontalAxisVisibilityProperty", + "HorizontalLabelFormat": "HorizontalLabelFormat", + "HorizontalLabelFormatProperty": "HorizontalLabelFormatProperty", + "HorizontalLabelFormatSpecifiers": "HorizontalLabelFormatSpecifiers", + "HorizontalLabelFormatSpecifiersProperty": "HorizontalLabelFormatSpecifiersProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LastMarkerBrush": "LastMarkerBrush", + "LastMarkerBrushProperty": "LastMarkerBrushProperty", + "LastMarkerSize": "LastMarkerSize", + "LastMarkerSizeProperty": "LastMarkerSizeProperty", + "LastMarkerVisibility": "LastMarkerVisibility", + "LastMarkerVisibilityProperty": "LastMarkerVisibilityProperty", + "LineThickness": "LineThickness", + "LineThicknessProperty": "LineThicknessProperty", + "LowMarkerBrush": "LowMarkerBrush", + "LowMarkerBrushProperty": "LowMarkerBrushProperty", + "LowMarkerSize": "LowMarkerSize", + "LowMarkerSizeProperty": "LowMarkerSizeProperty", + "LowMarkerVisibility": "LowMarkerVisibility", + "LowMarkerVisibilityProperty": "LowMarkerVisibilityProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerSize": "MarkerSize", + "MarkerSizeProperty": "MarkerSizeProperty", + "MarkerVisibility": "MarkerVisibility", + "MarkerVisibilityProperty": "MarkerVisibilityProperty", + "Maximum": "Maximum", + "MaximumProperty": "MaximumProperty", + "Minimum": "Minimum", + "MinimumProperty": "MinimumProperty", + "NegativeBrush": "NegativeBrush", + "NegativeBrushProperty": "NegativeBrushProperty", + "NegativeMarkerBrush": "NegativeMarkerBrush", + "NegativeMarkerBrushProperty": "NegativeMarkerBrushProperty", + "NegativeMarkerSize": "NegativeMarkerSize", + "NegativeMarkerSizeProperty": "NegativeMarkerSizeProperty", + "NegativeMarkerVisibility": "NegativeMarkerVisibility", + "NegativeMarkerVisibilityProperty": "NegativeMarkerVisibilityProperty", + "NormalRangeFill": "NormalRangeFill", + "NormalRangeFillProperty": "NormalRangeFillProperty", + "NormalRangeMaximum": "NormalRangeMaximum", + "NormalRangeMaximumProperty": "NormalRangeMaximumProperty", + "NormalRangeMinimum": "NormalRangeMinimum", + "NormalRangeMinimumProperty": "NormalRangeMinimumProperty", + "NormalRangeVisibility": "NormalRangeVisibility", + "NormalRangeVisibilityProperty": "NormalRangeVisibilityProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifyResized()": "NotifyResized()", + "NotifyResized": "NotifyResized()", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFormatLabel(SparklineFormatLabelEventArgs)": "OnFormatLabel(SparklineFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(SparklineFormatLabelEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "VerticalAxisBrush": "VerticalAxisBrush", + "VerticalAxisBrushProperty": "VerticalAxisBrushProperty", + "VerticalAxisVisibility": "VerticalAxisVisibility", + "VerticalAxisVisibilityProperty": "VerticalAxisVisibilityProperty", + "VerticalLabelFormat": "VerticalLabelFormat", + "VerticalLabelFormatProperty": "VerticalLabelFormatProperty", + "VerticalLabelFormatSpecifiers": "VerticalLabelFormatSpecifiers", + "VerticalLabelFormatSpecifiersProperty": "VerticalLabelFormatSpecifiersProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamSuffix": [ + { + "p": "Infragistics.Uno.Inputs", + "u": "/api/uno-platform/Infragistics.Uno.Inputs/latest/classes/XamSuffix", + "k": "class", + "s": "classes", + "m": { + "XamSuffix()": "XamSuffix()", + "XamSuffix": "XamSuffix()", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)" + } + } + ], + "XamToolbar": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/XamToolbar", + "k": "class", + "s": "classes", + "m": { + "XamToolbar()": "XamToolbar()", + "XamToolbar": "XamToolbar()", + "AccentColor": "AccentColor", + "AccentColorProperty": "AccentColorProperty", + "Actions": "Actions", + "ActualActions": "ActualActions", + "AutoGeneratedActions": "AutoGeneratedActions", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CheckboxListScrollbarActiveBackground": "CheckboxListScrollbarActiveBackground", + "CheckboxListScrollbarActiveBackgroundProperty": "CheckboxListScrollbarActiveBackgroundProperty", + "CheckboxListScrollbarBackground": "CheckboxListScrollbarBackground", + "CheckboxListScrollbarBackgroundProperty": "CheckboxListScrollbarBackgroundProperty", + "CheckboxListScrollbarHoverBackground": "CheckboxListScrollbarHoverBackground", + "CheckboxListScrollbarHoverBackgroundProperty": "CheckboxListScrollbarHoverBackgroundProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "CloseSubmenus()": "CloseSubmenus()", + "CloseSubmenus": "CloseSubmenus()", + "CreateLocalDataSource(object)": "CreateLocalDataSource(object)", + "CreateLocalDataSource": "CreateLocalDataSource(object)", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisabledTextColor": "DisabledTextColor", + "DisabledTextColorProperty": "DisabledTextColorProperty", + "DropdownClickBuffer": "DropdownClickBuffer", + "DropdownClickBufferProperty": "DropdownClickBufferProperty", + "DropdownDelay": "DropdownDelay", + "DropdownDelayProperty": "DropdownDelayProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushRefresh()": "FlushRefresh()", + "FlushRefresh": "FlushRefresh()", + "GetBoolContextItem(string)": "GetBoolContextItem(string)", + "GetBoolContextItem": "GetBoolContextItem(string)", + "GetBrushCollectionContextItem(string)": "GetBrushCollectionContextItem(string)", + "GetBrushCollectionContextItem": "GetBrushCollectionContextItem(string)", + "GetBrushContextItem(string)": "GetBrushContextItem(string)", + "GetBrushContextItem": "GetBrushContextItem(string)", + "GetColorContextItem(string)": "GetColorContextItem(string)", + "GetColorContextItem": "GetColorContextItem(string)", + "GetDataContextItem(string)": "GetDataContextItem(string)", + "GetDataContextItem": "GetDataContextItem(string)", + "GetDataURLFromCache(string, string)": "GetDataURLFromCache(string, string)", + "GetDataURLFromCache": "GetDataURLFromCache(string, string)", + "GetDoubleContextItem(string)": "GetDoubleContextItem(string)", + "GetDoubleContextItem": "GetDoubleContextItem(string)", + "GetExternalDataContextItem(string)": "GetExternalDataContextItem(string)", + "GetExternalDataContextItem": "GetExternalDataContextItem(string)", + "GetExternalDoubleContextItem(string)": "GetExternalDoubleContextItem(string)", + "GetExternalDoubleContextItem": "GetExternalDoubleContextItem(string)", + "GetExternalIntContextItem(string)": "GetExternalIntContextItem(string)", + "GetExternalIntContextItem": "GetExternalIntContextItem(string)", + "GetIconFromCache(string, string)": "GetIconFromCache(string, string)", + "GetIconFromCache": "GetIconFromCache(string, string)", + "GetIconSource(string, string)": "GetIconSource(string, string)", + "GetIconSource": "GetIconSource(string, string)", + "GetIntContextItem(string)": "GetIntContextItem(string)", + "GetIntContextItem": "GetIntContextItem(string)", + "GetMultiPathSVGFromCache(string, string)": "GetMultiPathSVGFromCache(string, string)", + "GetMultiPathSVGFromCache": "GetMultiPathSVGFromCache(string, string)", + "GetStringContextItem(string)": "GetStringContextItem(string)", + "GetStringContextItem": "GetStringContextItem(string)", + "GroupHeaderBackgroundColor": "GroupHeaderBackgroundColor", + "GroupHeaderBackgroundColorProperty": "GroupHeaderBackgroundColorProperty", + "GroupHeaderFontFamily": "GroupHeaderFontFamily", + "GroupHeaderFontFamilyProperty": "GroupHeaderFontFamilyProperty", + "GroupHeaderFontSize": "GroupHeaderFontSize", + "GroupHeaderFontSizeProperty": "GroupHeaderFontSizeProperty", + "GroupHeaderFontStyle": "GroupHeaderFontStyle", + "GroupHeaderFontStyleProperty": "GroupHeaderFontStyleProperty", + "GroupHeaderFontWeight": "GroupHeaderFontWeight", + "GroupHeaderFontWeightProperty": "GroupHeaderFontWeightProperty", + "GroupHeaderSubtitleTextColor": "GroupHeaderSubtitleTextColor", + "GroupHeaderSubtitleTextColorProperty": "GroupHeaderSubtitleTextColorProperty", + "GroupHeaderTextColor": "GroupHeaderTextColor", + "GroupHeaderTextColorProperty": "GroupHeaderTextColorProperty", + "HighlightColor": "HighlightColor", + "HighlightColorProperty": "HighlightColorProperty", + "HighlightRadius": "HighlightRadius", + "HighlightRadiusProperty": "HighlightRadiusProperty", + "HighlightWidth": "HighlightWidth", + "HighlightWidthProperty": "HighlightWidthProperty", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverBackgroundColorProperty": "HoverBackgroundColorProperty", + "IconFill": "IconFill", + "IconFillProperty": "IconFillProperty", + "IconStroke": "IconStroke", + "IconStrokeProperty": "IconStrokeProperty", + "IsOpen()": "IsOpen()", + "IsOpen": "IsOpen()", + "MenuArrowStroke": "MenuArrowStroke", + "MenuArrowStrokeProperty": "MenuArrowStrokeProperty", + "OnCommandStateChanged(string, ToolCommandStateType, object)": "OnCommandStateChanged(string, ToolCommandStateType, object)", + "OnCommandStateChanged": "OnCommandStateChanged(string, ToolCommandStateType, object)", + "OnContentSizeChanged()": "OnContentSizeChanged()", + "OnContentSizeChanged": "OnContentSizeChanged()", + "OnOnCommand(ToolCommandEventArgs)": "OnOnCommand(ToolCommandEventArgs)", + "OnOnCommand": "OnOnCommand(ToolCommandEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSubMenuClosing(ToolbarSubMenuClosingEventArgs)": "OnSubMenuClosing(ToolbarSubMenuClosingEventArgs)", + "OnSubMenuClosing": "OnSubMenuClosing(ToolbarSubMenuClosingEventArgs)", + "OnSubMenuOpening(ToolbarSubMenuOpeningEventArgs)": "OnSubMenuOpening(ToolbarSubMenuOpeningEventArgs)", + "OnSubMenuOpening": "OnSubMenuOpening(ToolbarSubMenuOpeningEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "RegisterIconFromDataURL(string, string, string)": "RegisterIconFromDataURL(string, string, string)", + "RegisterIconFromDataURL": "RegisterIconFromDataURL(string, string, string)", + "RegisterIconFromText(string, string, string)": "RegisterIconFromText(string, string, string)", + "RegisterIconFromText": "RegisterIconFromText(string, string, string)", + "RegisterIconSource(string, string, object)": "RegisterIconSource(string, string, object)", + "RegisterIconSource": "RegisterIconSource(string, string, object)", + "RegisterMultiPathSVG(string, string, string[])": "RegisterMultiPathSVG(string, string, string[])", + "RegisterMultiPathSVG": "RegisterMultiPathSVG(string, string, string[])", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SeparatorBackgroundColor": "SeparatorBackgroundColor", + "SeparatorBackgroundColorProperty": "SeparatorBackgroundColorProperty", + "SeparatorHorizontalPaddingBottom": "SeparatorHorizontalPaddingBottom", + "SeparatorHorizontalPaddingBottomProperty": "SeparatorHorizontalPaddingBottomProperty", + "SeparatorHorizontalPaddingLeft": "SeparatorHorizontalPaddingLeft", + "SeparatorHorizontalPaddingLeftProperty": "SeparatorHorizontalPaddingLeftProperty", + "SeparatorHorizontalPaddingRight": "SeparatorHorizontalPaddingRight", + "SeparatorHorizontalPaddingRightProperty": "SeparatorHorizontalPaddingRightProperty", + "SeparatorHorizontalPaddingTop": "SeparatorHorizontalPaddingTop", + "SeparatorHorizontalPaddingTopProperty": "SeparatorHorizontalPaddingTopProperty", + "SeparatorVerticalPaddingBottom": "SeparatorVerticalPaddingBottom", + "SeparatorVerticalPaddingBottomProperty": "SeparatorVerticalPaddingBottomProperty", + "SeparatorVerticalPaddingLeft": "SeparatorVerticalPaddingLeft", + "SeparatorVerticalPaddingLeftProperty": "SeparatorVerticalPaddingLeftProperty", + "SeparatorVerticalPaddingRight": "SeparatorVerticalPaddingRight", + "SeparatorVerticalPaddingRightProperty": "SeparatorVerticalPaddingRightProperty", + "SeparatorVerticalPaddingTop": "SeparatorVerticalPaddingTop", + "SeparatorVerticalPaddingTopProperty": "SeparatorVerticalPaddingTopProperty", + "SetBoolContextItem(string, bool)": "SetBoolContextItem(string, bool)", + "SetBoolContextItem": "SetBoolContextItem(string, bool)", + "SetBrushCollectionContextItem(string, BrushCollection)": "SetBrushCollectionContextItem(string, BrushCollection)", + "SetBrushCollectionContextItem": "SetBrushCollectionContextItem(string, BrushCollection)", + "SetBrushContextItem(string, Brush)": "SetBrushContextItem(string, Brush)", + "SetBrushContextItem": "SetBrushContextItem(string, Brush)", + "SetColorContextItem(string, Color)": "SetColorContextItem(string, Color)", + "SetColorContextItem": "SetColorContextItem(string, Color)", + "SetDataContextItem(string, object)": "SetDataContextItem(string, object)", + "SetDataContextItem": "SetDataContextItem(string, object)", + "SetDoubleContextItem(string, double)": "SetDoubleContextItem(string, double)", + "SetDoubleContextItem": "SetDoubleContextItem(string, double)", + "SetExternalDataContextItem(string, object)": "SetExternalDataContextItem(string, object)", + "SetExternalDataContextItem": "SetExternalDataContextItem(string, object)", + "SetExternalDoubleContextItem(string, object)": "SetExternalDoubleContextItem(string, object)", + "SetExternalDoubleContextItem": "SetExternalDoubleContextItem(string, object)", + "SetExternalIntContextItem(string, object)": "SetExternalIntContextItem(string, object)", + "SetExternalIntContextItem": "SetExternalIntContextItem(string, object)", + "SetIntContextItem(string, int)": "SetIntContextItem(string, int)", + "SetIntContextItem": "SetIntContextItem(string, int)", + "SetStringContextItem(string, string)": "SetStringContextItem(string, string)", + "SetStringContextItem": "SetStringContextItem(string, string)", + "ShowOnHover": "ShowOnHover", + "ShowOnHoverProperty": "ShowOnHoverProperty", + "ShowTooltipOnHover": "ShowTooltipOnHover", + "ShowTooltipOnHoverProperty": "ShowTooltipOnHoverProperty", + "StopPropagation": "StopPropagation", + "StopPropagationProperty": "StopPropagationProperty", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubPanelRowHeightProperty": "SubPanelRowHeightProperty", + "SubmenuBackgroundColor": "SubmenuBackgroundColor", + "SubmenuBackgroundColorProperty": "SubmenuBackgroundColorProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "Target": "Target", + "TargetProperty": "TargetProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipCornerRadius": "ToolTipCornerRadius", + "ToolTipCornerRadiusProperty": "ToolTipCornerRadiusProperty", + "ToolTipElevation": "ToolTipElevation", + "ToolTipElevationProperty": "ToolTipElevationProperty", + "ToolTipTextColor": "ToolTipTextColor", + "ToolTipTextColorProperty": "ToolTipTextColorProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamToolPanel": [ + { + "p": "Infragistics.Uno.Layouts", + "u": "/api/uno-platform/Infragistics.Uno.Layouts/latest/classes/XamToolPanel", + "k": "class", + "s": "classes", + "m": { + "XamToolPanel()": "XamToolPanel()", + "XamToolPanel": "XamToolPanel()", + "AccentColor": "AccentColor", + "AccentColorProperty": "AccentColorProperty", + "Actions": "Actions", + "ActualAccentColor": "ActualAccentColor", + "ActualAccentColorProperty": "ActualAccentColorProperty", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualDisabledTextColorProperty": "ActualDisabledTextColorProperty", + "ActualDropdownDelay": "ActualDropdownDelay", + "ActualDropdownDelayProperty": "ActualDropdownDelayProperty", + "ActualGroupHeaderBackgroundColor": "ActualGroupHeaderBackgroundColor", + "ActualGroupHeaderBackgroundColorProperty": "ActualGroupHeaderBackgroundColorProperty", + "ActualGroupHeaderSeparatorBackgroundColor": "ActualGroupHeaderSeparatorBackgroundColor", + "ActualGroupHeaderSeparatorBackgroundColorProperty": "ActualGroupHeaderSeparatorBackgroundColorProperty", + "ActualGroupHeaderSubtitleTextColor": "ActualGroupHeaderSubtitleTextColor", + "ActualGroupHeaderSubtitleTextColorProperty": "ActualGroupHeaderSubtitleTextColorProperty", + "ActualGroupHeaderTextColor": "ActualGroupHeaderTextColor", + "ActualGroupHeaderTextColorProperty": "ActualGroupHeaderTextColorProperty", + "ActualHighlightColor": "ActualHighlightColor", + "ActualHighlightColorProperty": "ActualHighlightColorProperty", + "ActualHighlightRadius": "ActualHighlightRadius", + "ActualHighlightRadiusProperty": "ActualHighlightRadiusProperty", + "ActualHighlightWidth": "ActualHighlightWidth", + "ActualHighlightWidthProperty": "ActualHighlightWidthProperty", + "ActualHoverBackgroundColor": "ActualHoverBackgroundColor", + "ActualHoverBackgroundColorProperty": "ActualHoverBackgroundColorProperty", + "ActualIconFill": "ActualIconFill", + "ActualIconFillProperty": "ActualIconFillProperty", + "ActualIconStroke": "ActualIconStroke", + "ActualIconStrokeProperty": "ActualIconStrokeProperty", + "ActualMenuArrowStroke": "ActualMenuArrowStroke", + "ActualMenuArrowStrokeProperty": "ActualMenuArrowStrokeProperty", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "ActualSeparatorBackgroundColor": "ActualSeparatorBackgroundColor", + "ActualSeparatorBackgroundColorProperty": "ActualSeparatorBackgroundColorProperty", + "ActualSeparatorHorizontalPaddingBottom": "ActualSeparatorHorizontalPaddingBottom", + "ActualSeparatorHorizontalPaddingBottomProperty": "ActualSeparatorHorizontalPaddingBottomProperty", + "ActualSeparatorHorizontalPaddingLeft": "ActualSeparatorHorizontalPaddingLeft", + "ActualSeparatorHorizontalPaddingLeftProperty": "ActualSeparatorHorizontalPaddingLeftProperty", + "ActualSeparatorHorizontalPaddingRight": "ActualSeparatorHorizontalPaddingRight", + "ActualSeparatorHorizontalPaddingRightProperty": "ActualSeparatorHorizontalPaddingRightProperty", + "ActualSeparatorHorizontalPaddingTop": "ActualSeparatorHorizontalPaddingTop", + "ActualSeparatorHorizontalPaddingTopProperty": "ActualSeparatorHorizontalPaddingTopProperty", + "ActualSeparatorVerticalPaddingBottom": "ActualSeparatorVerticalPaddingBottom", + "ActualSeparatorVerticalPaddingBottomProperty": "ActualSeparatorVerticalPaddingBottomProperty", + "ActualSeparatorVerticalPaddingLeft": "ActualSeparatorVerticalPaddingLeft", + "ActualSeparatorVerticalPaddingLeftProperty": "ActualSeparatorVerticalPaddingLeftProperty", + "ActualSeparatorVerticalPaddingRight": "ActualSeparatorVerticalPaddingRight", + "ActualSeparatorVerticalPaddingRightProperty": "ActualSeparatorVerticalPaddingRightProperty", + "ActualSeparatorVerticalPaddingTop": "ActualSeparatorVerticalPaddingTop", + "ActualSeparatorVerticalPaddingTopProperty": "ActualSeparatorVerticalPaddingTopProperty", + "ActualSubmenuBackgroundColor": "ActualSubmenuBackgroundColor", + "ActualSubmenuBackgroundColorProperty": "ActualSubmenuBackgroundColorProperty", + "ActualSubtitleTextColor": "ActualSubtitleTextColor", + "ActualSubtitleTextColorProperty": "ActualSubtitleTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualToolTipBackgroundColor": "ActualToolTipBackgroundColor", + "ActualToolTipBackgroundColorProperty": "ActualToolTipBackgroundColorProperty", + "ActualToolTipCornerRadius": "ActualToolTipCornerRadius", + "ActualToolTipCornerRadiusProperty": "ActualToolTipCornerRadiusProperty", + "ActualToolTipElevation": "ActualToolTipElevation", + "ActualToolTipElevationProperty": "ActualToolTipElevationProperty", + "ActualToolTipTextColor": "ActualToolTipTextColor", + "ActualToolTipTextColorProperty": "ActualToolTipTextColorProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CheckboxListScrollbarActiveBackground": "CheckboxListScrollbarActiveBackground", + "CheckboxListScrollbarActiveBackgroundProperty": "CheckboxListScrollbarActiveBackgroundProperty", + "CheckboxListScrollbarBackground": "CheckboxListScrollbarBackground", + "CheckboxListScrollbarBackgroundProperty": "CheckboxListScrollbarBackgroundProperty", + "CheckboxListScrollbarHoverBackground": "CheckboxListScrollbarHoverBackground", + "CheckboxListScrollbarHoverBackgroundProperty": "CheckboxListScrollbarHoverBackgroundProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "CloseSubmenus()": "CloseSubmenus()", + "CloseSubmenus": "CloseSubmenus()", + "CreateLocalDataSource(object)": "CreateLocalDataSource(object)", + "CreateLocalDataSource": "CreateLocalDataSource(object)", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisabledTextColor": "DisabledTextColor", + "DisabledTextColorProperty": "DisabledTextColorProperty", + "DropdownClickBuffer": "DropdownClickBuffer", + "DropdownClickBufferProperty": "DropdownClickBufferProperty", + "DropdownDelay": "DropdownDelay", + "DropdownDelayProperty": "DropdownDelayProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushRefresh()": "FlushRefresh()", + "FlushRefresh": "FlushRefresh()", + "GetBoolContextItem(string)": "GetBoolContextItem(string)", + "GetBoolContextItem": "GetBoolContextItem(string)", + "GetBrushCollectionContextItem(string)": "GetBrushCollectionContextItem(string)", + "GetBrushCollectionContextItem": "GetBrushCollectionContextItem(string)", + "GetBrushContextItem(string)": "GetBrushContextItem(string)", + "GetBrushContextItem": "GetBrushContextItem(string)", + "GetColorContextItem(string)": "GetColorContextItem(string)", + "GetColorContextItem": "GetColorContextItem(string)", + "GetDataContextItem(string)": "GetDataContextItem(string)", + "GetDataContextItem": "GetDataContextItem(string)", + "GetDoubleContextItem(string)": "GetDoubleContextItem(string)", + "GetDoubleContextItem": "GetDoubleContextItem(string)", + "GetIntContextItem(string)": "GetIntContextItem(string)", + "GetIntContextItem": "GetIntContextItem(string)", + "GetStringContextItem(string)": "GetStringContextItem(string)", + "GetStringContextItem": "GetStringContextItem(string)", + "GroupHeaderBackgroundColor": "GroupHeaderBackgroundColor", + "GroupHeaderBackgroundColorProperty": "GroupHeaderBackgroundColorProperty", + "GroupHeaderFontFamily": "GroupHeaderFontFamily", + "GroupHeaderFontFamilyProperty": "GroupHeaderFontFamilyProperty", + "GroupHeaderFontSize": "GroupHeaderFontSize", + "GroupHeaderFontSizeProperty": "GroupHeaderFontSizeProperty", + "GroupHeaderFontStyle": "GroupHeaderFontStyle", + "GroupHeaderFontStyleProperty": "GroupHeaderFontStyleProperty", + "GroupHeaderFontWeight": "GroupHeaderFontWeight", + "GroupHeaderFontWeightProperty": "GroupHeaderFontWeightProperty", + "GroupHeaderSeparatorBackgroundColor": "GroupHeaderSeparatorBackgroundColor", + "GroupHeaderSeparatorBackgroundColorProperty": "GroupHeaderSeparatorBackgroundColorProperty", + "GroupHeaderSubtitleTextColor": "GroupHeaderSubtitleTextColor", + "GroupHeaderSubtitleTextColorProperty": "GroupHeaderSubtitleTextColorProperty", + "GroupHeaderTextColor": "GroupHeaderTextColor", + "GroupHeaderTextColorProperty": "GroupHeaderTextColorProperty", + "HighlightColor": "HighlightColor", + "HighlightColorProperty": "HighlightColorProperty", + "HighlightRadius": "HighlightRadius", + "HighlightRadiusProperty": "HighlightRadiusProperty", + "HighlightWidth": "HighlightWidth", + "HighlightWidthProperty": "HighlightWidthProperty", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverBackgroundColorProperty": "HoverBackgroundColorProperty", + "IconFill": "IconFill", + "IconFillProperty": "IconFillProperty", + "IconStroke": "IconStroke", + "IconStrokeProperty": "IconStrokeProperty", + "IsOpen": "IsOpen", + "IsOpenProperty": "IsOpenProperty", + "ItemSpacing": "ItemSpacing", + "ItemSpacingProperty": "ItemSpacingProperty", + "MenuArrowStroke": "MenuArrowStroke", + "MenuArrowStrokeProperty": "MenuArrowStrokeProperty", + "NestedActionMode": "NestedActionMode", + "NestedActionModeProperty": "NestedActionModeProperty", + "OnContentRefreshed(ToolPanelContentRefreshedEventArgs)": "OnContentRefreshed(ToolPanelContentRefreshedEventArgs)", + "OnContentRefreshed": "OnContentRefreshed(ToolPanelContentRefreshedEventArgs)", + "OnContentSizeChanged()": "OnContentSizeChanged()", + "OnContentSizeChanged": "OnContentSizeChanged()", + "OnOnCommand(ToolCommandEventArgs)": "OnOnCommand(ToolCommandEventArgs)", + "OnOnCommand": "OnOnCommand(ToolCommandEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SeparatorBackgroundColor": "SeparatorBackgroundColor", + "SeparatorBackgroundColorProperty": "SeparatorBackgroundColorProperty", + "SeparatorHorizontalPaddingBottom": "SeparatorHorizontalPaddingBottom", + "SeparatorHorizontalPaddingBottomProperty": "SeparatorHorizontalPaddingBottomProperty", + "SeparatorHorizontalPaddingLeft": "SeparatorHorizontalPaddingLeft", + "SeparatorHorizontalPaddingLeftProperty": "SeparatorHorizontalPaddingLeftProperty", + "SeparatorHorizontalPaddingRight": "SeparatorHorizontalPaddingRight", + "SeparatorHorizontalPaddingRightProperty": "SeparatorHorizontalPaddingRightProperty", + "SeparatorHorizontalPaddingTop": "SeparatorHorizontalPaddingTop", + "SeparatorHorizontalPaddingTopProperty": "SeparatorHorizontalPaddingTopProperty", + "SeparatorVerticalPaddingBottom": "SeparatorVerticalPaddingBottom", + "SeparatorVerticalPaddingBottomProperty": "SeparatorVerticalPaddingBottomProperty", + "SeparatorVerticalPaddingLeft": "SeparatorVerticalPaddingLeft", + "SeparatorVerticalPaddingLeftProperty": "SeparatorVerticalPaddingLeftProperty", + "SeparatorVerticalPaddingRight": "SeparatorVerticalPaddingRight", + "SeparatorVerticalPaddingRightProperty": "SeparatorVerticalPaddingRightProperty", + "SeparatorVerticalPaddingTop": "SeparatorVerticalPaddingTop", + "SeparatorVerticalPaddingTopProperty": "SeparatorVerticalPaddingTopProperty", + "SetBoolContextItem(string, bool)": "SetBoolContextItem(string, bool)", + "SetBoolContextItem": "SetBoolContextItem(string, bool)", + "SetBrushCollectionContextItem(string, BrushCollection)": "SetBrushCollectionContextItem(string, BrushCollection)", + "SetBrushCollectionContextItem": "SetBrushCollectionContextItem(string, BrushCollection)", + "SetBrushContextItem(string, Brush)": "SetBrushContextItem(string, Brush)", + "SetBrushContextItem": "SetBrushContextItem(string, Brush)", + "SetColorContextItem(string, Color)": "SetColorContextItem(string, Color)", + "SetColorContextItem": "SetColorContextItem(string, Color)", + "SetDataContextItem(string, object)": "SetDataContextItem(string, object)", + "SetDataContextItem": "SetDataContextItem(string, object)", + "SetDoubleContextItem(string, double)": "SetDoubleContextItem(string, double)", + "SetDoubleContextItem": "SetDoubleContextItem(string, double)", + "SetIntContextItem(string, int)": "SetIntContextItem(string, int)", + "SetIntContextItem": "SetIntContextItem(string, int)", + "SetStringContextItem(string, string)": "SetStringContextItem(string, string)", + "SetStringContextItem": "SetStringContextItem(string, string)", + "ShowOnHover": "ShowOnHover", + "ShowOnHoverProperty": "ShowOnHoverProperty", + "ShowTooltipOnHover": "ShowTooltipOnHover", + "ShowTooltipOnHoverProperty": "ShowTooltipOnHoverProperty", + "StopPropagation": "StopPropagation", + "StopPropagationProperty": "StopPropagationProperty", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubPanelRowHeightProperty": "SubPanelRowHeightProperty", + "SubmenuBackgroundColor": "SubmenuBackgroundColor", + "SubmenuBackgroundColorProperty": "SubmenuBackgroundColorProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipCornerRadius": "ToolTipCornerRadius", + "ToolTipCornerRadiusProperty": "ToolTipCornerRadiusProperty", + "ToolTipElevation": "ToolTipElevation", + "ToolTipElevationProperty": "ToolTipElevationProperty", + "ToolTipTextColor": "ToolTipTextColor", + "ToolTipTextColorProperty": "ToolTipTextColorProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamTreemap": [ + { + "p": "Infragistics.Uno.TreeMap", + "u": "/api/uno-platform/Infragistics.Uno.TreeMap/latest/classes/XamTreemap", + "k": "class", + "s": "classes", + "m": { + "XamTreemap()": "XamTreemap()", + "XamTreemap": "XamTreemap()", + "ActualHighlightingMode": "ActualHighlightingMode", + "ActualHighlightingModeProperty": "ActualHighlightingModeProperty", + "ActualInteractionPixelScalingRatio": "ActualInteractionPixelScalingRatio", + "ActualInteractionPixelScalingRatioProperty": "ActualInteractionPixelScalingRatioProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Animating": "Animating", + "AnimatingProperty": "AnimatingProperty", + "BreadcrumbSequence": "BreadcrumbSequence", + "BreadcrumbSequenceProperty": "BreadcrumbSequenceProperty", + "CustomValueMemberPath": "CustomValueMemberPath", + "CustomValueMemberPathProperty": "CustomValueMemberPathProperty", + "DarkTextColor": "DarkTextColor", + "DarkTextColorProperty": "DarkTextColorProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FillBrushes": "FillBrushes", + "FillBrushesProperty": "FillBrushesProperty", + "FillScaleLogarithmBase": "FillScaleLogarithmBase", + "FillScaleLogarithmBaseProperty": "FillScaleLogarithmBaseProperty", + "FillScaleMaximumValue": "FillScaleMaximumValue", + "FillScaleMaximumValueProperty": "FillScaleMaximumValueProperty", + "FillScaleMinimumValue": "FillScaleMinimumValue", + "FillScaleMinimumValueProperty": "FillScaleMinimumValueProperty", + "FillScaleMode": "FillScaleMode", + "FillScaleModeProperty": "FillScaleModeProperty", + "Flush()": "Flush()", + "Flush": "Flush()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FocusItem": "FocusItem", + "FocusItemProperty": "FocusItemProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HeaderBackground": "HeaderBackground", + "HeaderBackgroundProperty": "HeaderBackgroundProperty", + "HeaderDarkTextColor": "HeaderDarkTextColor", + "HeaderDarkTextColorProperty": "HeaderDarkTextColorProperty", + "HeaderDisplayMode": "HeaderDisplayMode", + "HeaderDisplayModeProperty": "HeaderDisplayModeProperty", + "HeaderFontFamily": "HeaderFontFamily", + "HeaderFontFamilyProperty": "HeaderFontFamilyProperty", + "HeaderFontSize": "HeaderFontSize", + "HeaderFontSizeProperty": "HeaderFontSizeProperty", + "HeaderFontStyle": "HeaderFontStyle", + "HeaderFontStyleProperty": "HeaderFontStyleProperty", + "HeaderFontWeight": "HeaderFontWeight", + "HeaderFontWeightProperty": "HeaderFontWeightProperty", + "HeaderHeight": "HeaderHeight", + "HeaderHeightProperty": "HeaderHeightProperty", + "HeaderHoverBackground": "HeaderHoverBackground", + "HeaderHoverBackgroundProperty": "HeaderHoverBackgroundProperty", + "HeaderHoverDarkTextColor": "HeaderHoverDarkTextColor", + "HeaderHoverDarkTextColorProperty": "HeaderHoverDarkTextColorProperty", + "HeaderHoverTextColor": "HeaderHoverTextColor", + "HeaderHoverTextColorProperty": "HeaderHoverTextColorProperty", + "HeaderLabelBottomMargin": "HeaderLabelBottomMargin", + "HeaderLabelBottomMarginProperty": "HeaderLabelBottomMarginProperty", + "HeaderLabelLeftMargin": "HeaderLabelLeftMargin", + "HeaderLabelLeftMarginProperty": "HeaderLabelLeftMarginProperty", + "HeaderLabelRightMargin": "HeaderLabelRightMargin", + "HeaderLabelRightMarginProperty": "HeaderLabelRightMarginProperty", + "HeaderLabelTopMargin": "HeaderLabelTopMargin", + "HeaderLabelTopMarginProperty": "HeaderLabelTopMarginProperty", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "HighlightedValueMemberPathProperty": "HighlightedValueMemberPathProperty", + "HighlightedValueOpacity": "HighlightedValueOpacity", + "HighlightedValueOpacityProperty": "HighlightedValueOpacityProperty", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "HighlightingMode": "HighlightingMode", + "HighlightingModeProperty": "HighlightingModeProperty", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HighlightingTransitionDurationProperty": "HighlightingTransitionDurationProperty", + "IdMemberPath": "IdMemberPath", + "IdMemberPathProperty": "IdMemberPathProperty", + "InteractionPixelScalingRatio": "InteractionPixelScalingRatio", + "InteractionPixelScalingRatioProperty": "InteractionPixelScalingRatioProperty", + "IsFillScaleLogarithmic": "IsFillScaleLogarithmic", + "IsFillScaleLogarithmicProperty": "IsFillScaleLogarithmicProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LabelBottomMargin": "LabelBottomMargin", + "LabelBottomMarginProperty": "LabelBottomMarginProperty", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelHorizontalAlignmentProperty": "LabelHorizontalAlignmentProperty", + "LabelHorizontalFitMode": "LabelHorizontalFitMode", + "LabelHorizontalFitModeProperty": "LabelHorizontalFitModeProperty", + "LabelLeftMargin": "LabelLeftMargin", + "LabelLeftMarginProperty": "LabelLeftMarginProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LabelRightMargin": "LabelRightMargin", + "LabelRightMarginProperty": "LabelRightMarginProperty", + "LabelTopMargin": "LabelTopMargin", + "LabelTopMarginProperty": "LabelTopMarginProperty", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVerticalAlignmentProperty": "LabelVerticalAlignmentProperty", + "LabelVerticalFitMode": "LabelVerticalFitMode", + "LabelVerticalFitModeProperty": "LabelVerticalFitModeProperty", + "LayoutOrientation": "LayoutOrientation", + "LayoutOrientationProperty": "LayoutOrientationProperty", + "LayoutType": "LayoutType", + "LayoutTypeProperty": "LayoutTypeProperty", + "MarkDirty()": "MarkDirty()", + "MarkDirty": "MarkDirty()", + "MinimumDisplaySize": "MinimumDisplaySize", + "MinimumDisplaySizeProperty": "MinimumDisplaySizeProperty", + "NodeOpacity": "NodeOpacity", + "NodeOpacityProperty": "NodeOpacityProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "NotifySizeChanged()": "NotifySizeChanged()", + "NotifySizeChanged": "NotifySizeChanged()", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnNodePointerEnter(TreemapNodePointerEventArgs)": "OnNodePointerEnter(TreemapNodePointerEventArgs)", + "OnNodePointerEnter": "OnNodePointerEnter(TreemapNodePointerEventArgs)", + "OnNodePointerLeave(TreemapNodePointerEventArgs)": "OnNodePointerLeave(TreemapNodePointerEventArgs)", + "OnNodePointerLeave": "OnNodePointerLeave(TreemapNodePointerEventArgs)", + "OnNodePointerOver(TreemapNodePointerEventArgs)": "OnNodePointerOver(TreemapNodePointerEventArgs)", + "OnNodePointerOver": "OnNodePointerOver(TreemapNodePointerEventArgs)", + "OnNodePointerPressed(TreemapNodePointerEventArgs)": "OnNodePointerPressed(TreemapNodePointerEventArgs)", + "OnNodePointerPressed": "OnNodePointerPressed(TreemapNodePointerEventArgs)", + "OnNodePointerReleased(TreemapNodePointerEventArgs)": "OnNodePointerReleased(TreemapNodePointerEventArgs)", + "OnNodePointerReleased": "OnNodePointerReleased(TreemapNodePointerEventArgs)", + "OnNodeRenderStyling(TreemapNodeStylingEventArgs)": "OnNodeRenderStyling(TreemapNodeStylingEventArgs)", + "OnNodeRenderStyling": "OnNodeRenderStyling(TreemapNodeStylingEventArgs)", + "OnNodeStyling(TreemapNodeStylingEventArgs)": "OnNodeStyling(TreemapNodeStylingEventArgs)", + "OnNodeStyling": "OnNodeStyling(TreemapNodeStylingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Outline": "Outline", + "OutlineProperty": "OutlineProperty", + "OverlayHeaderBackground": "OverlayHeaderBackground", + "OverlayHeaderBackgroundProperty": "OverlayHeaderBackgroundProperty", + "OverlayHeaderHoverBackground": "OverlayHeaderHoverBackground", + "OverlayHeaderHoverBackgroundProperty": "OverlayHeaderHoverBackgroundProperty", + "OverlayHeaderLabelBottomMargin": "OverlayHeaderLabelBottomMargin", + "OverlayHeaderLabelBottomMarginProperty": "OverlayHeaderLabelBottomMarginProperty", + "OverlayHeaderLabelLeftMargin": "OverlayHeaderLabelLeftMargin", + "OverlayHeaderLabelLeftMarginProperty": "OverlayHeaderLabelLeftMarginProperty", + "OverlayHeaderLabelRightMargin": "OverlayHeaderLabelRightMargin", + "OverlayHeaderLabelRightMarginProperty": "OverlayHeaderLabelRightMarginProperty", + "OverlayHeaderLabelTopMargin": "OverlayHeaderLabelTopMargin", + "OverlayHeaderLabelTopMarginProperty": "OverlayHeaderLabelTopMarginProperty", + "ParentIdMemberPath": "ParentIdMemberPath", + "ParentIdMemberPathProperty": "ParentIdMemberPathProperty", + "ParentNodeBottomMargin": "ParentNodeBottomMargin", + "ParentNodeBottomMarginProperty": "ParentNodeBottomMarginProperty", + "ParentNodeBottomPadding": "ParentNodeBottomPadding", + "ParentNodeBottomPaddingProperty": "ParentNodeBottomPaddingProperty", + "ParentNodeLeftMargin": "ParentNodeLeftMargin", + "ParentNodeLeftMarginProperty": "ParentNodeLeftMarginProperty", + "ParentNodeLeftPadding": "ParentNodeLeftPadding", + "ParentNodeLeftPaddingProperty": "ParentNodeLeftPaddingProperty", + "ParentNodeRightMargin": "ParentNodeRightMargin", + "ParentNodeRightMarginProperty": "ParentNodeRightMarginProperty", + "ParentNodeRightPadding": "ParentNodeRightPadding", + "ParentNodeRightPaddingProperty": "ParentNodeRightPaddingProperty", + "ParentNodeTopMargin": "ParentNodeTopMargin", + "ParentNodeTopMarginProperty": "ParentNodeTopMarginProperty", + "ParentNodeTopPadding": "ParentNodeTopPadding", + "ParentNodeTopPaddingProperty": "ParentNodeTopPaddingProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RootTitle": "RootTitle", + "RootTitleProperty": "RootTitleProperty", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "StyleMappings": "StyleMappings", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XAxisLabelLocation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/XAxisLabelLocation", + "k": "enum", + "s": "enums" + } + ], + "XBaseDataType": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/enums/XBaseDataType", + "k": "enum", + "s": "enums" + } + ], + "XBaseField": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/XBaseField", + "k": "class", + "s": "classes", + "m": { + "XBaseField()": "XBaseField()", + "XBaseField": "XBaseField()", + "Length": "Length", + "Name": "Name", + "Type": "Type", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XYChart": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/classes/XYChart", + "k": "class", + "s": "classes", + "m": { + "ActualXAxisLabelTextColor": "ActualXAxisLabelTextColor", + "ActualXAxisLabelTextColorProperty": "ActualXAxisLabelTextColorProperty", + "ActualYAxisLabelTextColor": "ActualYAxisLabelTextColor", + "ActualYAxisLabelTextColorProperty": "ActualYAxisLabelTextColorProperty", + "GetScaledValueX(double)": "GetScaledValueX(double)", + "GetScaledValueX": "GetScaledValueX(double)", + "GetScaledValueY(double)": "GetScaledValueY(double)", + "GetScaledValueY": "GetScaledValueY(double)", + "GetUnscaledValueX(double)": "GetUnscaledValueX(double)", + "GetUnscaledValueX": "GetUnscaledValueX(double)", + "GetUnscaledValueY(double)": "GetUnscaledValueY(double)", + "GetUnscaledValueY": "GetUnscaledValueY(double)", + "OnXAxisFormatLabel(AxisFormatLabelEventArgs)": "OnXAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnXAxisFormatLabel": "OnXAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisFormatLabel(AxisFormatLabelEventArgs)": "OnYAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisFormatLabel": "OnYAxisFormatLabel(AxisFormatLabelEventArgs)", + "XAxisAreAnnotationsVisible": "XAxisAreAnnotationsVisible", + "XAxisAreAnnotationsVisibleProperty": "XAxisAreAnnotationsVisibleProperty", + "XAxisAreLabelsVisible": "XAxisAreLabelsVisible", + "XAxisAreLabelsVisibleProperty": "XAxisAreLabelsVisibleProperty", + "XAxisAreTickMarksVisible": "XAxisAreTickMarksVisible", + "XAxisAreTickMarksVisibleProperty": "XAxisAreTickMarksVisibleProperty", + "XAxisExtent": "XAxisExtent", + "XAxisExtentProperty": "XAxisExtentProperty", + "XAxisInverted": "XAxisInverted", + "XAxisInvertedProperty": "XAxisInvertedProperty", + "XAxisIsLabelPanelVisible": "XAxisIsLabelPanelVisible", + "XAxisIsLabelPanelVisibleProperty": "XAxisIsLabelPanelVisibleProperty", + "XAxisLabel": "XAxisLabel", + "XAxisLabelAngle": "XAxisLabelAngle", + "XAxisLabelAngleProperty": "XAxisLabelAngleProperty", + "XAxisLabelBottomMargin": "XAxisLabelBottomMargin", + "XAxisLabelBottomMarginProperty": "XAxisLabelBottomMarginProperty", + "XAxisLabelFontFamily": "XAxisLabelFontFamily", + "XAxisLabelFontFamilyProperty": "XAxisLabelFontFamilyProperty", + "XAxisLabelFontSize": "XAxisLabelFontSize", + "XAxisLabelFontSizeProperty": "XAxisLabelFontSizeProperty", + "XAxisLabelFontStyle": "XAxisLabelFontStyle", + "XAxisLabelFontStyleProperty": "XAxisLabelFontStyleProperty", + "XAxisLabelFontWeight": "XAxisLabelFontWeight", + "XAxisLabelFontWeightProperty": "XAxisLabelFontWeightProperty", + "XAxisLabelFormat": "XAxisLabelFormat", + "XAxisLabelFormatProperty": "XAxisLabelFormatProperty", + "XAxisLabelFormatSpecifiers": "XAxisLabelFormatSpecifiers", + "XAxisLabelFormatSpecifiersProperty": "XAxisLabelFormatSpecifiersProperty", + "XAxisLabelHorizontalAlignment": "XAxisLabelHorizontalAlignment", + "XAxisLabelHorizontalAlignmentProperty": "XAxisLabelHorizontalAlignmentProperty", + "XAxisLabelLeftMargin": "XAxisLabelLeftMargin", + "XAxisLabelLeftMarginProperty": "XAxisLabelLeftMarginProperty", + "XAxisLabelLocation": "XAxisLabelLocation", + "XAxisLabelLocationProperty": "XAxisLabelLocationProperty", + "XAxisLabelProperty": "XAxisLabelProperty", + "XAxisLabelRightMargin": "XAxisLabelRightMargin", + "XAxisLabelRightMarginProperty": "XAxisLabelRightMarginProperty", + "XAxisLabelTextColor": "XAxisLabelTextColor", + "XAxisLabelTextColorProperty": "XAxisLabelTextColorProperty", + "XAxisLabelTopMargin": "XAxisLabelTopMargin", + "XAxisLabelTopMarginProperty": "XAxisLabelTopMarginProperty", + "XAxisLabelVerticalAlignment": "XAxisLabelVerticalAlignment", + "XAxisLabelVerticalAlignmentProperty": "XAxisLabelVerticalAlignmentProperty", + "XAxisLabelVisibility": "XAxisLabelVisibility", + "XAxisLabelVisibilityProperty": "XAxisLabelVisibilityProperty", + "XAxisMajorStroke": "XAxisMajorStroke", + "XAxisMajorStrokeProperty": "XAxisMajorStrokeProperty", + "XAxisMajorStrokeThickness": "XAxisMajorStrokeThickness", + "XAxisMajorStrokeThicknessProperty": "XAxisMajorStrokeThicknessProperty", + "XAxisMaximumExtent": "XAxisMaximumExtent", + "XAxisMaximumExtentPercentage": "XAxisMaximumExtentPercentage", + "XAxisMaximumExtentPercentageProperty": "XAxisMaximumExtentPercentageProperty", + "XAxisMaximumExtentProperty": "XAxisMaximumExtentProperty", + "XAxisMinorStroke": "XAxisMinorStroke", + "XAxisMinorStrokeProperty": "XAxisMinorStrokeProperty", + "XAxisMinorStrokeThickness": "XAxisMinorStrokeThickness", + "XAxisMinorStrokeThicknessProperty": "XAxisMinorStrokeThicknessProperty", + "XAxisStrip": "XAxisStrip", + "XAxisStripProperty": "XAxisStripProperty", + "XAxisStroke": "XAxisStroke", + "XAxisStrokeProperty": "XAxisStrokeProperty", + "XAxisStrokeThickness": "XAxisStrokeThickness", + "XAxisStrokeThicknessProperty": "XAxisStrokeThicknessProperty", + "XAxisTickLength": "XAxisTickLength", + "XAxisTickLengthProperty": "XAxisTickLengthProperty", + "XAxisTickStroke": "XAxisTickStroke", + "XAxisTickStrokeProperty": "XAxisTickStrokeProperty", + "XAxisTickStrokeThickness": "XAxisTickStrokeThickness", + "XAxisTickStrokeThicknessProperty": "XAxisTickStrokeThicknessProperty", + "XAxisTitle": "XAxisTitle", + "XAxisTitleAlignment": "XAxisTitleAlignment", + "XAxisTitleAlignmentProperty": "XAxisTitleAlignmentProperty", + "XAxisTitleAngle": "XAxisTitleAngle", + "XAxisTitleAngleProperty": "XAxisTitleAngleProperty", + "XAxisTitleBottomMargin": "XAxisTitleBottomMargin", + "XAxisTitleBottomMarginProperty": "XAxisTitleBottomMarginProperty", + "XAxisTitleFontFamily": "XAxisTitleFontFamily", + "XAxisTitleFontFamilyProperty": "XAxisTitleFontFamilyProperty", + "XAxisTitleFontSize": "XAxisTitleFontSize", + "XAxisTitleFontSizeProperty": "XAxisTitleFontSizeProperty", + "XAxisTitleFontStyle": "XAxisTitleFontStyle", + "XAxisTitleFontStyleProperty": "XAxisTitleFontStyleProperty", + "XAxisTitleFontWeight": "XAxisTitleFontWeight", + "XAxisTitleFontWeightProperty": "XAxisTitleFontWeightProperty", + "XAxisTitleLeftMargin": "XAxisTitleLeftMargin", + "XAxisTitleLeftMarginProperty": "XAxisTitleLeftMarginProperty", + "XAxisTitleMargin": "XAxisTitleMargin", + "XAxisTitleMarginProperty": "XAxisTitleMarginProperty", + "XAxisTitleProperty": "XAxisTitleProperty", + "XAxisTitleRightMargin": "XAxisTitleRightMargin", + "XAxisTitleRightMarginProperty": "XAxisTitleRightMarginProperty", + "XAxisTitleTextColor": "XAxisTitleTextColor", + "XAxisTitleTextColorProperty": "XAxisTitleTextColorProperty", + "XAxisTitleTopMargin": "XAxisTitleTopMargin", + "XAxisTitleTopMarginProperty": "XAxisTitleTopMarginProperty", + "YAxisAreAnnotationsVisible": "YAxisAreAnnotationsVisible", + "YAxisAreAnnotationsVisibleProperty": "YAxisAreAnnotationsVisibleProperty", + "YAxisAreLabelsVisible": "YAxisAreLabelsVisible", + "YAxisAreLabelsVisibleProperty": "YAxisAreLabelsVisibleProperty", + "YAxisAreTickMarksVisible": "YAxisAreTickMarksVisible", + "YAxisAreTickMarksVisibleProperty": "YAxisAreTickMarksVisibleProperty", + "YAxisExtent": "YAxisExtent", + "YAxisExtentProperty": "YAxisExtentProperty", + "YAxisInverted": "YAxisInverted", + "YAxisInvertedProperty": "YAxisInvertedProperty", + "YAxisIsLabelPanelVisible": "YAxisIsLabelPanelVisible", + "YAxisIsLabelPanelVisibleProperty": "YAxisIsLabelPanelVisibleProperty", + "YAxisLabel": "YAxisLabel", + "YAxisLabelAngle": "YAxisLabelAngle", + "YAxisLabelAngleProperty": "YAxisLabelAngleProperty", + "YAxisLabelBottomMargin": "YAxisLabelBottomMargin", + "YAxisLabelBottomMarginProperty": "YAxisLabelBottomMarginProperty", + "YAxisLabelFontFamily": "YAxisLabelFontFamily", + "YAxisLabelFontFamilyProperty": "YAxisLabelFontFamilyProperty", + "YAxisLabelFontSize": "YAxisLabelFontSize", + "YAxisLabelFontSizeProperty": "YAxisLabelFontSizeProperty", + "YAxisLabelFontStyle": "YAxisLabelFontStyle", + "YAxisLabelFontStyleProperty": "YAxisLabelFontStyleProperty", + "YAxisLabelFontWeight": "YAxisLabelFontWeight", + "YAxisLabelFontWeightProperty": "YAxisLabelFontWeightProperty", + "YAxisLabelFormat": "YAxisLabelFormat", + "YAxisLabelFormatProperty": "YAxisLabelFormatProperty", + "YAxisLabelFormatSpecifiers": "YAxisLabelFormatSpecifiers", + "YAxisLabelFormatSpecifiersProperty": "YAxisLabelFormatSpecifiersProperty", + "YAxisLabelHorizontalAlignment": "YAxisLabelHorizontalAlignment", + "YAxisLabelHorizontalAlignmentProperty": "YAxisLabelHorizontalAlignmentProperty", + "YAxisLabelLeftMargin": "YAxisLabelLeftMargin", + "YAxisLabelLeftMarginProperty": "YAxisLabelLeftMarginProperty", + "YAxisLabelLocation": "YAxisLabelLocation", + "YAxisLabelLocationProperty": "YAxisLabelLocationProperty", + "YAxisLabelProperty": "YAxisLabelProperty", + "YAxisLabelRightMargin": "YAxisLabelRightMargin", + "YAxisLabelRightMarginProperty": "YAxisLabelRightMarginProperty", + "YAxisLabelTextColor": "YAxisLabelTextColor", + "YAxisLabelTextColorProperty": "YAxisLabelTextColorProperty", + "YAxisLabelTopMargin": "YAxisLabelTopMargin", + "YAxisLabelTopMarginProperty": "YAxisLabelTopMarginProperty", + "YAxisLabelVerticalAlignment": "YAxisLabelVerticalAlignment", + "YAxisLabelVerticalAlignmentProperty": "YAxisLabelVerticalAlignmentProperty", + "YAxisLabelVisibility": "YAxisLabelVisibility", + "YAxisLabelVisibilityProperty": "YAxisLabelVisibilityProperty", + "YAxisMajorStroke": "YAxisMajorStroke", + "YAxisMajorStrokeProperty": "YAxisMajorStrokeProperty", + "YAxisMajorStrokeThickness": "YAxisMajorStrokeThickness", + "YAxisMajorStrokeThicknessProperty": "YAxisMajorStrokeThicknessProperty", + "YAxisMaximumExtent": "YAxisMaximumExtent", + "YAxisMaximumExtentPercentage": "YAxisMaximumExtentPercentage", + "YAxisMaximumExtentPercentageProperty": "YAxisMaximumExtentPercentageProperty", + "YAxisMaximumExtentProperty": "YAxisMaximumExtentProperty", + "YAxisMinorStroke": "YAxisMinorStroke", + "YAxisMinorStrokeProperty": "YAxisMinorStrokeProperty", + "YAxisMinorStrokeThickness": "YAxisMinorStrokeThickness", + "YAxisMinorStrokeThicknessProperty": "YAxisMinorStrokeThicknessProperty", + "YAxisStrip": "YAxisStrip", + "YAxisStripProperty": "YAxisStripProperty", + "YAxisStroke": "YAxisStroke", + "YAxisStrokeProperty": "YAxisStrokeProperty", + "YAxisStrokeThickness": "YAxisStrokeThickness", + "YAxisStrokeThicknessProperty": "YAxisStrokeThicknessProperty", + "YAxisTickLength": "YAxisTickLength", + "YAxisTickLengthProperty": "YAxisTickLengthProperty", + "YAxisTickStroke": "YAxisTickStroke", + "YAxisTickStrokeProperty": "YAxisTickStrokeProperty", + "YAxisTickStrokeThickness": "YAxisTickStrokeThickness", + "YAxisTickStrokeThicknessProperty": "YAxisTickStrokeThicknessProperty", + "YAxisTitle": "YAxisTitle", + "YAxisTitleAlignment": "YAxisTitleAlignment", + "YAxisTitleAlignmentProperty": "YAxisTitleAlignmentProperty", + "YAxisTitleAngle": "YAxisTitleAngle", + "YAxisTitleAngleProperty": "YAxisTitleAngleProperty", + "YAxisTitleBottomMargin": "YAxisTitleBottomMargin", + "YAxisTitleBottomMarginProperty": "YAxisTitleBottomMarginProperty", + "YAxisTitleFontFamily": "YAxisTitleFontFamily", + "YAxisTitleFontFamilyProperty": "YAxisTitleFontFamilyProperty", + "YAxisTitleFontSize": "YAxisTitleFontSize", + "YAxisTitleFontSizeProperty": "YAxisTitleFontSizeProperty", + "YAxisTitleFontStyle": "YAxisTitleFontStyle", + "YAxisTitleFontStyleProperty": "YAxisTitleFontStyleProperty", + "YAxisTitleFontWeight": "YAxisTitleFontWeight", + "YAxisTitleFontWeightProperty": "YAxisTitleFontWeightProperty", + "YAxisTitleLeftMargin": "YAxisTitleLeftMargin", + "YAxisTitleLeftMarginProperty": "YAxisTitleLeftMarginProperty", + "YAxisTitleMargin": "YAxisTitleMargin", + "YAxisTitleMarginProperty": "YAxisTitleMarginProperty", + "YAxisTitleProperty": "YAxisTitleProperty", + "YAxisTitleRightMargin": "YAxisTitleRightMargin", + "YAxisTitleRightMarginProperty": "YAxisTitleRightMarginProperty", + "YAxisTitleTextColor": "YAxisTitleTextColor", + "YAxisTitleTextColorProperty": "YAxisTitleTextColorProperty", + "YAxisTitleTopMargin": "YAxisTitleTopMargin", + "YAxisTitleTopMarginProperty": "YAxisTitleTopMarginProperty" + } + } + ], + "XYChartDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/XYChartDescription", + "k": "class", + "s": "classes", + "m": { + "XYChartDescription()": "XYChartDescription()", + "XYChartDescription": "XYChartDescription()", + "ActualXAxisLabelTextColor": "ActualXAxisLabelTextColor", + "ActualYAxisLabelTextColor": "ActualYAxisLabelTextColor", + "Type": "Type", + "XAxisAreAnnotationsVisible": "XAxisAreAnnotationsVisible", + "XAxisAreLabelsVisible": "XAxisAreLabelsVisible", + "XAxisAreTickMarksVisible": "XAxisAreTickMarksVisible", + "XAxisExtent": "XAxisExtent", + "XAxisFormatLabelRef": "XAxisFormatLabelRef", + "XAxisInverted": "XAxisInverted", + "XAxisIsLabelPanelVisible": "XAxisIsLabelPanelVisible", + "XAxisLabelAngle": "XAxisLabelAngle", + "XAxisLabelBottomMargin": "XAxisLabelBottomMargin", + "XAxisLabelFormat": "XAxisLabelFormat", + "XAxisLabelFormatSpecifiers": "XAxisLabelFormatSpecifiers", + "XAxisLabelHorizontalAlignment": "XAxisLabelHorizontalAlignment", + "XAxisLabelLeftMargin": "XAxisLabelLeftMargin", + "XAxisLabelLocation": "XAxisLabelLocation", + "XAxisLabelRef": "XAxisLabelRef", + "XAxisLabelRightMargin": "XAxisLabelRightMargin", + "XAxisLabelTextColor": "XAxisLabelTextColor", + "XAxisLabelTextStyle": "XAxisLabelTextStyle", + "XAxisLabelTopMargin": "XAxisLabelTopMargin", + "XAxisLabelVerticalAlignment": "XAxisLabelVerticalAlignment", + "XAxisLabelVisibility": "XAxisLabelVisibility", + "XAxisMajorStroke": "XAxisMajorStroke", + "XAxisMajorStrokeThickness": "XAxisMajorStrokeThickness", + "XAxisMaximumExtent": "XAxisMaximumExtent", + "XAxisMaximumExtentPercentage": "XAxisMaximumExtentPercentage", + "XAxisMinorStroke": "XAxisMinorStroke", + "XAxisMinorStrokeThickness": "XAxisMinorStrokeThickness", + "XAxisStrip": "XAxisStrip", + "XAxisStroke": "XAxisStroke", + "XAxisStrokeThickness": "XAxisStrokeThickness", + "XAxisTickLength": "XAxisTickLength", + "XAxisTickStroke": "XAxisTickStroke", + "XAxisTickStrokeThickness": "XAxisTickStrokeThickness", + "XAxisTitle": "XAxisTitle", + "XAxisTitleAlignment": "XAxisTitleAlignment", + "XAxisTitleAngle": "XAxisTitleAngle", + "XAxisTitleBottomMargin": "XAxisTitleBottomMargin", + "XAxisTitleLeftMargin": "XAxisTitleLeftMargin", + "XAxisTitleMargin": "XAxisTitleMargin", + "XAxisTitleRightMargin": "XAxisTitleRightMargin", + "XAxisTitleTextColor": "XAxisTitleTextColor", + "XAxisTitleTextStyle": "XAxisTitleTextStyle", + "XAxisTitleTopMargin": "XAxisTitleTopMargin", + "YAxisAreAnnotationsVisible": "YAxisAreAnnotationsVisible", + "YAxisAreLabelsVisible": "YAxisAreLabelsVisible", + "YAxisAreTickMarksVisible": "YAxisAreTickMarksVisible", + "YAxisExtent": "YAxisExtent", + "YAxisFormatLabelRef": "YAxisFormatLabelRef", + "YAxisInverted": "YAxisInverted", + "YAxisIsLabelPanelVisible": "YAxisIsLabelPanelVisible", + "YAxisLabelAngle": "YAxisLabelAngle", + "YAxisLabelBottomMargin": "YAxisLabelBottomMargin", + "YAxisLabelFormat": "YAxisLabelFormat", + "YAxisLabelFormatSpecifiers": "YAxisLabelFormatSpecifiers", + "YAxisLabelHorizontalAlignment": "YAxisLabelHorizontalAlignment", + "YAxisLabelLeftMargin": "YAxisLabelLeftMargin", + "YAxisLabelLocation": "YAxisLabelLocation", + "YAxisLabelRef": "YAxisLabelRef", + "YAxisLabelRightMargin": "YAxisLabelRightMargin", + "YAxisLabelTextColor": "YAxisLabelTextColor", + "YAxisLabelTextStyle": "YAxisLabelTextStyle", + "YAxisLabelTopMargin": "YAxisLabelTopMargin", + "YAxisLabelVerticalAlignment": "YAxisLabelVerticalAlignment", + "YAxisLabelVisibility": "YAxisLabelVisibility", + "YAxisMajorStroke": "YAxisMajorStroke", + "YAxisMajorStrokeThickness": "YAxisMajorStrokeThickness", + "YAxisMaximumExtent": "YAxisMaximumExtent", + "YAxisMaximumExtentPercentage": "YAxisMaximumExtentPercentage", + "YAxisMinorStroke": "YAxisMinorStroke", + "YAxisMinorStrokeThickness": "YAxisMinorStrokeThickness", + "YAxisStrip": "YAxisStrip", + "YAxisStroke": "YAxisStroke", + "YAxisStrokeThickness": "YAxisStrokeThickness", + "YAxisTickLength": "YAxisTickLength", + "YAxisTickStroke": "YAxisTickStroke", + "YAxisTickStrokeThickness": "YAxisTickStrokeThickness", + "YAxisTitle": "YAxisTitle", + "YAxisTitleAlignment": "YAxisTitleAlignment", + "YAxisTitleAngle": "YAxisTitleAngle", + "YAxisTitleBottomMargin": "YAxisTitleBottomMargin", + "YAxisTitleLeftMargin": "YAxisTitleLeftMargin", + "YAxisTitleMargin": "YAxisTitleMargin", + "YAxisTitleRightMargin": "YAxisTitleRightMargin", + "YAxisTitleTextColor": "YAxisTitleTextColor", + "YAxisTitleTextStyle": "YAxisTitleTextStyle", + "YAxisTitleTopMargin": "YAxisTitleTopMargin" + } + } + ], + "XYChartDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/XYChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "XYChartDescriptionMetadata()": "XYChartDescriptionMetadata()", + "XYChartDescriptionMetadata": "XYChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "YAxisLabelLocation": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/YAxisLabelLocation", + "k": "enum", + "s": "enums" + } + ], + "YearToDateExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/YearToDateExpression", + "k": "class", + "s": "classes", + "m": { + "YearToDateExpression(FilterExpression)": "YearToDateExpression(FilterExpression)", + "YearToDateExpression": "YearToDateExpression(FilterExpression)", + "YearToDateExpression(string)": "YearToDateExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "YearToDateExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/YearToDateExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "YearToDateExpressionDescription()": "YearToDateExpressionDescription()", + "YearToDateExpressionDescription": "YearToDateExpressionDescription()", + "Type": "Type" + } + } + ], + "YearToDateExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/YearToDateExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "YearToDateExpressionDescriptionMetadata()": "YearToDateExpressionDescriptionMetadata()", + "YearToDateExpressionDescriptionMetadata": "YearToDateExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "YesterdayExpression": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/YesterdayExpression", + "k": "class", + "s": "classes", + "m": { + "YesterdayExpression(FilterExpression)": "YesterdayExpression(FilterExpression)", + "YesterdayExpression": "YesterdayExpression(FilterExpression)", + "YesterdayExpression(string)": "YesterdayExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "YesterdayExpressionDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/YesterdayExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "YesterdayExpressionDescription()": "YesterdayExpressionDescription()", + "YesterdayExpressionDescription": "YesterdayExpressionDescription()", + "Type": "Type" + } + } + ], + "YesterdayExpressionDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/YesterdayExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "YesterdayExpressionDescriptionMetadata()": "YesterdayExpressionDescriptionMetadata()", + "YesterdayExpressionDescriptionMetadata": "YesterdayExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ZoomCoercionMode": [ + { + "p": "Infragistics.Uno.Charts", + "u": "/api/uno-platform/Infragistics.Uno.Charts/latest/enums/ZoomCoercionMode", + "k": "enum", + "s": "enums" + } + ], + "ZoomSliderDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ZoomSliderDescription", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderDescription()": "ZoomSliderDescription()", + "ZoomSliderDescription": "ZoomSliderDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AreThumbCalloutsEnabled": "AreThumbCalloutsEnabled", + "Background": "Background", + "BarBrush": "BarBrush", + "BarExtent": "BarExtent", + "BarOutline": "BarOutline", + "BarStrokeThickness": "BarStrokeThickness", + "EndInset": "EndInset", + "Height": "Height", + "HigherCalloutBrush": "HigherCalloutBrush", + "HigherCalloutOutline": "HigherCalloutOutline", + "HigherCalloutStrokeThickness": "HigherCalloutStrokeThickness", + "HigherCalloutTextColor": "HigherCalloutTextColor", + "HigherShadeBrush": "HigherShadeBrush", + "HigherShadeOutline": "HigherShadeOutline", + "HigherShadeStrokeThickness": "HigherShadeStrokeThickness", + "HigherThumbBrush": "HigherThumbBrush", + "HigherThumbHeight": "HigherThumbHeight", + "HigherThumbOutline": "HigherThumbOutline", + "HigherThumbRidgesBrush": "HigherThumbRidgesBrush", + "HigherThumbStrokeThickness": "HigherThumbStrokeThickness", + "HigherThumbWidth": "HigherThumbWidth", + "LowerCalloutBrush": "LowerCalloutBrush", + "LowerCalloutOutline": "LowerCalloutOutline", + "LowerCalloutStrokeThickness": "LowerCalloutStrokeThickness", + "LowerCalloutTextColor": "LowerCalloutTextColor", + "LowerShadeBrush": "LowerShadeBrush", + "LowerShadeOutline": "LowerShadeOutline", + "LowerShadeStrokeThickness": "LowerShadeStrokeThickness", + "LowerThumbBrush": "LowerThumbBrush", + "LowerThumbHeight": "LowerThumbHeight", + "LowerThumbOutline": "LowerThumbOutline", + "LowerThumbRidgesBrush": "LowerThumbRidgesBrush", + "LowerThumbStrokeThickness": "LowerThumbStrokeThickness", + "LowerThumbWidth": "LowerThumbWidth", + "MaxZoomWidth": "MaxZoomWidth", + "MinZoomWidth": "MinZoomWidth", + "Orientation": "Orientation", + "PanTransitionDuration": "PanTransitionDuration", + "PixelScalingRatio": "PixelScalingRatio", + "RangeThumbBrush": "RangeThumbBrush", + "RangeThumbOutline": "RangeThumbOutline", + "RangeThumbRidgesBrush": "RangeThumbRidgesBrush", + "RangeThumbStrokeThickness": "RangeThumbStrokeThickness", + "ResolvingAxisValueRef": "ResolvingAxisValueRef", + "StartInset": "StartInset", + "ThumbCalloutFontFamily": "ThumbCalloutFontFamily", + "ThumbCalloutFontSize": "ThumbCalloutFontSize", + "ThumbCalloutFontStyle": "ThumbCalloutFontStyle", + "ThumbCalloutFontWeight": "ThumbCalloutFontWeight", + "TrackEndInset": "TrackEndInset", + "TrackStartInset": "TrackStartInset", + "Type": "Type", + "Width": "Width", + "WindowRect": "WindowRect", + "WindowRectChangedRef": "WindowRectChangedRef" + } + } + ], + "ZoomSliderDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ZoomSliderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderDescriptionMetadata()": "ZoomSliderDescriptionMetadata()", + "ZoomSliderDescriptionMetadata": "ZoomSliderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ZoomSliderDescriptionModule": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ZoomSliderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderDescriptionModule()": "ZoomSliderDescriptionModule()", + "ZoomSliderDescriptionModule": "ZoomSliderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ZoomSliderResolvingAxisValueEventArgsDescription": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ZoomSliderResolvingAxisValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderResolvingAxisValueEventArgsDescription()": "ZoomSliderResolvingAxisValueEventArgsDescription()", + "ZoomSliderResolvingAxisValueEventArgsDescription": "ZoomSliderResolvingAxisValueEventArgsDescription()", + "Position": "Position", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.Uno.DataVisualization", + "u": "/api/uno-platform/Infragistics.Uno.DataVisualization/latest/classes/ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata()": "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata()", + "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata": "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ] + } +} diff --git a/src/data/api-link-index/winui/staging-latest.json b/src/data/api-link-index/winui/staging-latest.json new file mode 100644 index 0000000000..9ec4d5f3ef --- /dev/null +++ b/src/data/api-link-index/winui/staging-latest.json @@ -0,0 +1,83521 @@ +{ + "platform": "winui", + "version": "latest", + "generatedAt": "2026-09-01T20:30:14.589Z", + "packages": [ + "Infragistics.WinUI.Core", + "Infragistics.WinUI.Charts", + "Infragistics.WinUI.DataVisualization", + "Infragistics.WinUI.DataGrid", + "Infragistics.WinUI.Layouts", + "Infragistics.WinUI.Inputs", + "Infragistics.WinUI.Gauges", + "Infragistics.WinUI.Dashboards", + "Infragistics.WinUI.TreeMap", + "Infragistics.WinUI.Sparkline", + "Infragistics.WinUI.Maps", + "Infragistics.WinUI.SkiaSharp" + ], + "symbols": { + "AbsoluteVolumeOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AbsoluteVolumeOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "AbsoluteVolumeOscillatorIndicator()": "AbsoluteVolumeOscillatorIndicator()", + "AbsoluteVolumeOscillatorIndicator": "AbsoluteVolumeOscillatorIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty" + } + } + ], + "AbsoluteVolumeOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AbsoluteVolumeOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "AbsoluteVolumeOscillatorIndicatorDescription()": "AbsoluteVolumeOscillatorIndicatorDescription()", + "AbsoluteVolumeOscillatorIndicatorDescription": "AbsoluteVolumeOscillatorIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "Type": "Type" + } + } + ], + "AbsoluteVolumeOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AbsoluteVolumeOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AbsoluteVolumeOscillatorIndicatorDescriptionMetadata()": "AbsoluteVolumeOscillatorIndicatorDescriptionMetadata()", + "AbsoluteVolumeOscillatorIndicatorDescriptionMetadata": "AbsoluteVolumeOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AbsoluteVolumeOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AbsoluteVolumeOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AbsoluteVolumeOscillatorIndicatorDescriptionModule()": "AbsoluteVolumeOscillatorIndicatorDescriptionModule()", + "AbsoluteVolumeOscillatorIndicatorDescriptionModule": "AbsoluteVolumeOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AccumulationDistributionIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AccumulationDistributionIndicator", + "k": "class", + "s": "classes", + "m": { + "AccumulationDistributionIndicator()": "AccumulationDistributionIndicator()", + "AccumulationDistributionIndicator": "AccumulationDistributionIndicator()" + } + } + ], + "AccumulationDistributionIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AccumulationDistributionIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "AccumulationDistributionIndicatorDescription()": "AccumulationDistributionIndicatorDescription()", + "AccumulationDistributionIndicatorDescription": "AccumulationDistributionIndicatorDescription()", + "Type": "Type" + } + } + ], + "AccumulationDistributionIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AccumulationDistributionIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AccumulationDistributionIndicatorDescriptionMetadata()": "AccumulationDistributionIndicatorDescriptionMetadata()", + "AccumulationDistributionIndicatorDescriptionMetadata": "AccumulationDistributionIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AccumulationDistributionIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AccumulationDistributionIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AccumulationDistributionIndicatorDescriptionModule()": "AccumulationDistributionIndicatorDescriptionModule()", + "AccumulationDistributionIndicatorDescriptionModule": "AccumulationDistributionIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ActualLegendItemBadgeShape": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ActualLegendItemBadgeShape", + "k": "enum", + "s": "enums" + } + ], + "AggregatedDataProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AggregatedDataProvider", + "k": "class", + "s": "classes", + "m": { + "AggregatedDataProvider()": "AggregatedDataProvider()", + "AggregatedDataProvider": "AggregatedDataProvider()", + "ActualCount": "ActualCount", + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "Clone()": "Clone()", + "Clone": "Clone()", + "DeferAutoRefresh": "DeferAutoRefresh", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GroupDescriptions": "GroupDescriptions", + "IncludeParentSummary": "IncludeParentSummary", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsSortingSupported": "IsSortingSupported", + "ItemsSource": "ItemsSource", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "PropertiesRequested": "PropertiesRequested", + "PropertyUpdatedOverride(string, object, object)": "PropertyUpdatedOverride(string, object, object)", + "PropertyUpdatedOverride": "PropertyUpdatedOverride(string, object, object)", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RefreshInternalOverride()": "RefreshInternalOverride()", + "RefreshInternalOverride": "RefreshInternalOverride()", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "SchemaHints": "SchemaHints", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SetItemValue(object, string, object)": "SetItemValue(object, string, object)", + "SetItemValue": "SetItemValue(object, string, object)", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "TargetDataSource": "TargetDataSource", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "AlignLinearGraphLabelEventArgs": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/AlignLinearGraphLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "AlignLinearGraphLabelEventArgs()": "AlignLinearGraphLabelEventArgs()", + "AlignLinearGraphLabelEventArgs": "AlignLinearGraphLabelEventArgs()", + "Height": "Height", + "OffsetX": "OffsetX", + "OffsetY": "OffsetY", + "Width": "Width" + } + } + ], + "AlignLinearGraphLabelEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AlignLinearGraphLabelEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AlignLinearGraphLabelEventArgsDescription()": "AlignLinearGraphLabelEventArgsDescription()", + "AlignLinearGraphLabelEventArgsDescription": "AlignLinearGraphLabelEventArgsDescription()", + "Type": "Type" + } + } + ], + "AlignLinearGraphLabelEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AlignLinearGraphLabelEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AlignLinearGraphLabelEventArgsDescriptionMetadata()": "AlignLinearGraphLabelEventArgsDescriptionMetadata()", + "AlignLinearGraphLabelEventArgsDescriptionMetadata": "AlignLinearGraphLabelEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AlignRadialGaugeLabelEventArgs": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/AlignRadialGaugeLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "AlignRadialGaugeLabelEventArgs()": "AlignRadialGaugeLabelEventArgs()", + "AlignRadialGaugeLabelEventArgs": "AlignRadialGaugeLabelEventArgs()", + "Brush": "Brush", + "FontSize": "FontSize", + "Height": "Height", + "OffsetX": "OffsetX", + "OffsetY": "OffsetY", + "Width": "Width" + } + } + ], + "AlignRadialGaugeLabelEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AlignRadialGaugeLabelEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AlignRadialGaugeLabelEventArgsDescription()": "AlignRadialGaugeLabelEventArgsDescription()", + "AlignRadialGaugeLabelEventArgsDescription": "AlignRadialGaugeLabelEventArgsDescription()", + "Type": "Type" + } + } + ], + "AlignRadialGaugeLabelEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AlignRadialGaugeLabelEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AlignRadialGaugeLabelEventArgsDescriptionMetadata()": "AlignRadialGaugeLabelEventArgsDescriptionMetadata()", + "AlignRadialGaugeLabelEventArgsDescriptionMetadata": "AlignRadialGaugeLabelEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AllowSqueezeAliasAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/AllowSqueezeAliasAttribute", + "k": "class", + "s": "classes", + "m": { + "AllowSqueezeAliasAttribute()": "AllowSqueezeAliasAttribute()", + "AllowSqueezeAliasAttribute": "AllowSqueezeAliasAttribute()" + } + } + ], + "AnchoredCategorySeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AnchoredCategorySeries", + "k": "class", + "s": "classes", + "m": { + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "ConsolidatedItemHitTestBehavior": "ConsolidatedItemHitTestBehavior", + "ConsolidatedItemHitTestBehaviorProperty": "ConsolidatedItemHitTestBehaviorProperty", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "HighlightedValueMemberPathProperty": "HighlightedValueMemberPathProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendLabelProperty": "ValueMemberAsLegendLabelProperty", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberAsLegendUnitProperty": "ValueMemberAsLegendUnitProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty" + } + } + ], + "AnchoredCategorySeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnchoredCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "AnchoredCategorySeriesDescription()": "AnchoredCategorySeriesDescription()", + "AnchoredCategorySeriesDescription": "AnchoredCategorySeriesDescription()", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ConsolidatedItemHitTestBehavior": "ConsolidatedItemHitTestBehavior", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "Type": "Type", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "AnchoredCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnchoredCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AnchoredCategorySeriesDescriptionMetadata()": "AnchoredCategorySeriesDescriptionMetadata()", + "AnchoredCategorySeriesDescriptionMetadata": "AnchoredCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AnchoredRadialSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AnchoredRadialSeries", + "k": "class", + "s": "classes", + "m": { + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "HighlightedValueMemberPathProperty": "HighlightedValueMemberPathProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "UseCategoryNormalizedValues": "UseCategoryNormalizedValues", + "UseCategoryNormalizedValuesProperty": "UseCategoryNormalizedValuesProperty", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendLabelProperty": "ValueMemberAsLegendLabelProperty", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberAsLegendUnitProperty": "ValueMemberAsLegendUnitProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty" + } + } + ], + "AnchoredRadialSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnchoredRadialSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "AnchoredRadialSeriesDescription()": "AnchoredRadialSeriesDescription()", + "AnchoredRadialSeriesDescription": "AnchoredRadialSeriesDescription()", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "TrendLineZIndex": "TrendLineZIndex", + "Type": "Type", + "UseCategoryNormalizedValues": "UseCategoryNormalizedValues", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "AnchoredRadialSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnchoredRadialSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AnchoredRadialSeriesDescriptionMetadata()": "AnchoredRadialSeriesDescriptionMetadata()", + "AnchoredRadialSeriesDescriptionMetadata": "AnchoredRadialSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AngleAxisLabelLocation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AngleAxisLabelLocation", + "k": "enum", + "s": "enums" + } + ], + "AnimationIdleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnimationIdleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AnimationIdleEventArgsDescription()": "AnimationIdleEventArgsDescription()", + "AnimationIdleEventArgsDescription": "AnimationIdleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AnimationIdleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnimationIdleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AnimationIdleEventArgsDescriptionMetadata()": "AnimationIdleEventArgsDescriptionMetadata()", + "AnimationIdleEventArgsDescriptionMetadata": "AnimationIdleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AnnotationAppearanceMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AnnotationAppearanceMode", + "k": "enum", + "s": "enums" + } + ], + "AnnotationLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AnnotationLayer", + "k": "class", + "s": "classes", + "m": { + "ActualAppearanceMode": "ActualAppearanceMode", + "ActualAppearanceModeProperty": "ActualAppearanceModeProperty", + "ActualDashArray": "ActualDashArray", + "ActualDashArrayProperty": "ActualDashArrayProperty", + "ActualDashCap": "ActualDashCap", + "ActualDashCapProperty": "ActualDashCapProperty", + "ActualHorizontalAppearanceMode": "ActualHorizontalAppearanceMode", + "ActualHorizontalAppearanceModeProperty": "ActualHorizontalAppearanceModeProperty", + "ActualHorizontalDashArray": "ActualHorizontalDashArray", + "ActualHorizontalDashArrayProperty": "ActualHorizontalDashArrayProperty", + "ActualHorizontalShiftAmount": "ActualHorizontalShiftAmount", + "ActualHorizontalShiftAmountProperty": "ActualHorizontalShiftAmountProperty", + "ActualShiftAmount": "ActualShiftAmount", + "ActualShiftAmountProperty": "ActualShiftAmountProperty", + "ActualVerticalAppearanceMode": "ActualVerticalAppearanceMode", + "ActualVerticalAppearanceModeProperty": "ActualVerticalAppearanceModeProperty", + "ActualVerticalDashArray": "ActualVerticalDashArray", + "ActualVerticalDashArrayProperty": "ActualVerticalDashArrayProperty", + "ActualVerticalShiftAmount": "ActualVerticalShiftAmount", + "ActualVerticalShiftAmountProperty": "ActualVerticalShiftAmountProperty", + "AppearanceMode": "AppearanceMode", + "AppearanceModeProperty": "AppearanceModeProperty", + "CursorPosition": "CursorPosition", + "CursorPositionProperty": "CursorPositionProperty", + "CursorPositionUpdatesOnMove": "CursorPositionUpdatesOnMove", + "CursorPositionUpdatesOnMoveProperty": "CursorPositionUpdatesOnMoveProperty", + "HorizontalAppearanceMode": "HorizontalAppearanceMode", + "HorizontalAppearanceModeProperty": "HorizontalAppearanceModeProperty", + "HorizontalDashArray": "HorizontalDashArray", + "HorizontalDashArrayProperty": "HorizontalDashArrayProperty", + "HorizontalShiftAmount": "HorizontalShiftAmount", + "HorizontalShiftAmountProperty": "HorizontalShiftAmountProperty", + "IsDefaultCrosshairDisabled": "IsDefaultCrosshairDisabled", + "IsDefaultCrosshairDisabledProperty": "IsDefaultCrosshairDisabledProperty", + "ShiftAmount": "ShiftAmount", + "ShiftAmountProperty": "ShiftAmountProperty", + "ShouldRenderAsOverlay": "ShouldRenderAsOverlay", + "ShouldRenderAsOverlayProperty": "ShouldRenderAsOverlayProperty", + "UseIndex": "UseIndex", + "UseIndexProperty": "UseIndexProperty", + "UseLegend": "UseLegend", + "UseLegendProperty": "UseLegendProperty", + "VerticalAppearanceMode": "VerticalAppearanceMode", + "VerticalAppearanceModeProperty": "VerticalAppearanceModeProperty", + "VerticalDashArray": "VerticalDashArray", + "VerticalDashArrayProperty": "VerticalDashArrayProperty", + "VerticalShiftAmount": "VerticalShiftAmount", + "VerticalShiftAmountProperty": "VerticalShiftAmountProperty" + } + } + ], + "AnnotationLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnnotationLayerDescription", + "k": "class", + "s": "classes", + "m": { + "AnnotationLayerDescription()": "AnnotationLayerDescription()", + "AnnotationLayerDescription": "AnnotationLayerDescription()", + "ActualAppearanceMode": "ActualAppearanceMode", + "ActualDashArray": "ActualDashArray", + "ActualDashCap": "ActualDashCap", + "ActualHorizontalAppearanceMode": "ActualHorizontalAppearanceMode", + "ActualHorizontalDashArray": "ActualHorizontalDashArray", + "ActualHorizontalShiftAmount": "ActualHorizontalShiftAmount", + "ActualShiftAmount": "ActualShiftAmount", + "ActualVerticalAppearanceMode": "ActualVerticalAppearanceMode", + "ActualVerticalDashArray": "ActualVerticalDashArray", + "ActualVerticalShiftAmount": "ActualVerticalShiftAmount", + "AppearanceMode": "AppearanceMode", + "CursorPosition": "CursorPosition", + "CursorPositionUpdatesOnMove": "CursorPositionUpdatesOnMove", + "HorizontalAppearanceMode": "HorizontalAppearanceMode", + "HorizontalDashArray": "HorizontalDashArray", + "HorizontalShiftAmount": "HorizontalShiftAmount", + "IsDefaultCrosshairDisabled": "IsDefaultCrosshairDisabled", + "ShiftAmount": "ShiftAmount", + "ShouldRenderAsOverlay": "ShouldRenderAsOverlay", + "Type": "Type", + "UseIndex": "UseIndex", + "UseLegend": "UseLegend", + "VerticalAppearanceMode": "VerticalAppearanceMode", + "VerticalDashArray": "VerticalDashArray", + "VerticalShiftAmount": "VerticalShiftAmount" + } + } + ], + "AnnotationLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnnotationLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AnnotationLayerDescriptionMetadata()": "AnnotationLayerDescriptionMetadata()", + "AnnotationLayerDescriptionMetadata": "AnnotationLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AnnotationLayerProxyDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AnnotationLayerProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AnnotationLayerProxyDescriptionModule()": "AnnotationLayerProxyDescriptionModule()", + "AnnotationLayerProxyDescriptionModule": "AnnotationLayerProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AppearanceHelper": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AppearanceHelper", + "k": "class", + "s": "classes", + "m": { + "AppearanceHelper()": "AppearanceHelper()", + "AppearanceHelper": "AppearanceHelper()", + "SerializeItem(StringBuilder, string, IVisualData, bool)": "SerializeItem(StringBuilder, string, IVisualData, bool)", + "SerializeItem": "SerializeItem(StringBuilder, string, IVisualData, bool)", + "SerializeItems(StringBuilder, string, IEnumerable, bool)": "SerializeItems(StringBuilder, string, IEnumerable, bool)", + "SerializeItems": "SerializeItems(StringBuilder, string, IEnumerable, bool)" + } + } + ], + "ApplyButtonClickEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ApplyButtonClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ApplyButtonClickEventArgsDescription()": "ApplyButtonClickEventArgsDescription()", + "ApplyButtonClickEventArgsDescription": "ApplyButtonClickEventArgsDescription()", + "Type": "Type" + } + } + ], + "ApplyButtonClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ApplyButtonClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ApplyButtonClickEventArgsDescriptionMetadata()": "ApplyButtonClickEventArgsDescriptionMetadata()", + "ApplyButtonClickEventArgsDescriptionMetadata": "ApplyButtonClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ArcGISOnlineMapImagery": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/ArcGISOnlineMapImagery", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineMapImagery()": "ArcGISOnlineMapImagery()", + "ArcGISOnlineMapImagery": "ArcGISOnlineMapImagery()", + "AcquireNewToken()": "AcquireNewToken()", + "AcquireNewToken": "AcquireNewToken()", + "DefaultTokenTimeout": "DefaultTokenTimeout", + "IsMapPublic": "IsMapPublic", + "MapServerUri": "MapServerUri", + "Password": "Password", + "RefererUri": "RefererUri", + "TokenGenerationEndPoint": "TokenGenerationEndPoint", + "UserName": "UserName", + "UserToken": "UserToken" + } + } + ], + "ArcGISOnlineMapImageryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ArcGISOnlineMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineMapImageryDescription()": "ArcGISOnlineMapImageryDescription()", + "ArcGISOnlineMapImageryDescription": "ArcGISOnlineMapImageryDescription()", + "DefaultTokenTimeout": "DefaultTokenTimeout", + "IsMapPublic": "IsMapPublic", + "MapServerUri": "MapServerUri", + "Password": "Password", + "RefererUri": "RefererUri", + "TokenGenerationEndPoint": "TokenGenerationEndPoint", + "Type": "Type", + "UserName": "UserName", + "UserToken": "UserToken" + } + } + ], + "ArcGISOnlineMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ArcGISOnlineMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineMapImageryDescriptionMetadata()": "ArcGISOnlineMapImageryDescriptionMetadata()", + "ArcGISOnlineMapImageryDescriptionMetadata": "ArcGISOnlineMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ArcGISOnlineMapImageryDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ArcGISOnlineMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineMapImageryDescriptionModule()": "ArcGISOnlineMapImageryDescriptionModule()", + "ArcGISOnlineMapImageryDescriptionModule": "ArcGISOnlineMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ArcGISOnlineTileSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ArcGISOnlineTileSource", + "k": "class", + "s": "classes", + "m": { + "ArcGISOnlineTileSource()": "ArcGISOnlineTileSource()", + "ArcGISOnlineTileSource": "ArcGISOnlineTileSource()", + "IsMapPublic": "IsMapPublic", + "LevelOfDetail": "LevelOfDetail", + "MapServerUri": "MapServerUri", + "UserToken": "UserToken" + } + } + ], + "ArcSegmentData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ArcSegmentData", + "k": "class", + "s": "classes", + "m": { + "ArcSegmentData()": "ArcSegmentData()", + "ArcSegmentData": "ArcSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "IsCounterClockwise": "IsCounterClockwise", + "IsLargeArc": "IsLargeArc", + "Point": "Point", + "RotationAngle": "RotationAngle", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "SizeX": "SizeX", + "SizeY": "SizeY", + "Type": "Type" + } + } + ], + "ArcVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ArcVisualData", + "k": "class", + "s": "classes", + "m": { + "ArcVisualData()": "ArcVisualData()", + "ArcVisualData": "ArcVisualData()", + "LeaderLine": "LeaderLine", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Slices": "Slices" + } + } + ], + "ArcVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ArcVisualDataList", + "k": "class", + "s": "classes", + "m": { + "ArcVisualDataList()": "ArcVisualDataList()", + "ArcVisualDataList": "ArcVisualDataList()" + } + } + ], + "AreaFragmentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AreaFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "AreaFragmentDescription()": "AreaFragmentDescription()", + "AreaFragmentDescription": "AreaFragmentDescription()", + "Type": "Type" + } + } + ], + "AreaFragmentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AreaFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AreaFragmentDescriptionMetadata()": "AreaFragmentDescriptionMetadata()", + "AreaFragmentDescriptionMetadata": "AreaFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AreaFragmentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AreaFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AreaFragmentDescriptionModule()": "AreaFragmentDescriptionModule()", + "AreaFragmentDescriptionModule": "AreaFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AreaSeries", + "k": "class", + "s": "classes", + "m": { + "AreaSeries()": "AreaSeries()", + "AreaSeries": "AreaSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "AreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "AreaSeriesDescription()": "AreaSeriesDescription()", + "AreaSeriesDescription": "AreaSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "AreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AreaSeriesDescriptionMetadata()": "AreaSeriesDescriptionMetadata()", + "AreaSeriesDescriptionMetadata": "AreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AreaSeriesDescriptionModule()": "AreaSeriesDescriptionModule()", + "AreaSeriesDescriptionModule": "AreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssemblyVersion": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/AssemblyVersion", + "k": "class", + "s": "classes", + "m": { + "AssemblyNamePrefix": "AssemblyNamePrefix", + "AssemblyNamePrefix_Android": "AssemblyNamePrefix_Android", + "AssemblyNamePrefix_Core": "AssemblyNamePrefix_Core", + "AssemblyNamePrefix_DotNetAndroid": "AssemblyNamePrefix_DotNetAndroid", + "AssemblyNamePrefix_DotNetIOS": "AssemblyNamePrefix_DotNetIOS", + "AssemblyNamePrefix_GTK": "AssemblyNamePrefix_GTK", + "AssemblyNamePrefix_IOS": "AssemblyNamePrefix_IOS", + "AssemblyNamePrefix_Maui": "AssemblyNamePrefix_Maui", + "AssemblyNamePrefix_UNO": "AssemblyNamePrefix_UNO", + "AssemblyNamePrefix_UWP": "AssemblyNamePrefix_UWP", + "AssemblyNamePrefix_UWPWinUI": "AssemblyNamePrefix_UWPWinUI", + "AssemblyNamePrefix_WinUI": "AssemblyNamePrefix_WinUI", + "AssemblyNamePrefix_XamarinForms": "AssemblyNamePrefix_XamarinForms", + "AssemblyNameSuffix": "AssemblyNameSuffix", + "Build": "Build", + "CompanyName": "CompanyName", + "Configuration": "Configuration", + "EndCopyrightYear": "EndCopyrightYear", + "FileVersion": "FileVersion", + "MajorMinor": "MajorMinor", + "Platform_Android": "Platform_Android", + "Platform_GTK": "Platform_GTK", + "Platform_IOS": "Platform_IOS", + "Platform_UNO": "Platform_UNO", + "Platform_UWP": "Platform_UWP", + "Platform_UWPWinUI": "Platform_UWPWinUI", + "Platform_WinUI": "Platform_WinUI", + "Platform_XamarinForms": "Platform_XamarinForms", + "Product": "Product", + "ProductTitleSuffix": "ProductTitleSuffix", + "PublicKey_WF": "PublicKey_WF", + "Revision": "Revision", + "SatelliteContractVersion": "SatelliteContractVersion", + "Version": "Version" + } + } + ], + "AssigningCategoryMarkerStyleEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningCategoryMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryMarkerStyleEventArgs()": "AssigningCategoryMarkerStyleEventArgs()", + "AssigningCategoryMarkerStyleEventArgs": "AssigningCategoryMarkerStyleEventArgs()" + } + } + ], + "AssigningCategoryMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningCategoryMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryMarkerStyleEventArgsDescription()": "AssigningCategoryMarkerStyleEventArgsDescription()", + "AssigningCategoryMarkerStyleEventArgsDescription": "AssigningCategoryMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningCategoryMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata()": "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata()", + "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata": "AssigningCategoryMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningCategoryStyleEventArgsBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningCategoryStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningCategoryStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningCategoryStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryStyleEventArgsBaseDescription()": "AssigningCategoryStyleEventArgsBaseDescription()", + "AssigningCategoryStyleEventArgsBaseDescription": "AssigningCategoryStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningCategoryStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningCategoryStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryStyleEventArgsBaseDescriptionMetadata()": "AssigningCategoryStyleEventArgsBaseDescriptionMetadata()", + "AssigningCategoryStyleEventArgsBaseDescriptionMetadata": "AssigningCategoryStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningCategoryStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningCategoryStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryStyleEventArgsDescription()": "AssigningCategoryStyleEventArgsDescription()", + "AssigningCategoryStyleEventArgsDescription": "AssigningCategoryStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningCategoryStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningCategoryStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningCategoryStyleEventArgsDescriptionMetadata()": "AssigningCategoryStyleEventArgsDescriptionMetadata()", + "AssigningCategoryStyleEventArgsDescriptionMetadata": "AssigningCategoryStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningPolarMarkerStyleEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningPolarMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarMarkerStyleEventArgs()": "AssigningPolarMarkerStyleEventArgs()", + "AssigningPolarMarkerStyleEventArgs": "AssigningPolarMarkerStyleEventArgs()" + } + } + ], + "AssigningPolarMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningPolarMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarMarkerStyleEventArgsDescription()": "AssigningPolarMarkerStyleEventArgsDescription()", + "AssigningPolarMarkerStyleEventArgsDescription": "AssigningPolarMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningPolarMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningPolarMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarMarkerStyleEventArgsDescriptionMetadata()": "AssigningPolarMarkerStyleEventArgsDescriptionMetadata()", + "AssigningPolarMarkerStyleEventArgsDescriptionMetadata": "AssigningPolarMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningPolarStyleEventArgsBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningPolarStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningPolarStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningPolarStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarStyleEventArgsBaseDescription()": "AssigningPolarStyleEventArgsBaseDescription()", + "AssigningPolarStyleEventArgsBaseDescription": "AssigningPolarStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningPolarStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningPolarStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarStyleEventArgsBaseDescriptionMetadata()": "AssigningPolarStyleEventArgsBaseDescriptionMetadata()", + "AssigningPolarStyleEventArgsBaseDescriptionMetadata": "AssigningPolarStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningPolarStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningPolarStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarStyleEventArgsDescription()": "AssigningPolarStyleEventArgsDescription()", + "AssigningPolarStyleEventArgsDescription": "AssigningPolarStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningPolarStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningPolarStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningPolarStyleEventArgsDescriptionMetadata()": "AssigningPolarStyleEventArgsDescriptionMetadata()", + "AssigningPolarStyleEventArgsDescriptionMetadata": "AssigningPolarStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningRadialMarkerStyleEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningRadialMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialMarkerStyleEventArgs()": "AssigningRadialMarkerStyleEventArgs()", + "AssigningRadialMarkerStyleEventArgs": "AssigningRadialMarkerStyleEventArgs()" + } + } + ], + "AssigningRadialMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningRadialMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialMarkerStyleEventArgsDescription()": "AssigningRadialMarkerStyleEventArgsDescription()", + "AssigningRadialMarkerStyleEventArgsDescription": "AssigningRadialMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningRadialMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningRadialMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialMarkerStyleEventArgsDescriptionMetadata()": "AssigningRadialMarkerStyleEventArgsDescriptionMetadata()", + "AssigningRadialMarkerStyleEventArgsDescriptionMetadata": "AssigningRadialMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningRadialStyleEventArgsBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningRadialStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningRadialStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningRadialStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialStyleEventArgsBaseDescription()": "AssigningRadialStyleEventArgsBaseDescription()", + "AssigningRadialStyleEventArgsBaseDescription": "AssigningRadialStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningRadialStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningRadialStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialStyleEventArgsBaseDescriptionMetadata()": "AssigningRadialStyleEventArgsBaseDescriptionMetadata()", + "AssigningRadialStyleEventArgsBaseDescriptionMetadata": "AssigningRadialStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningRadialStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningRadialStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialStyleEventArgsDescription()": "AssigningRadialStyleEventArgsDescription()", + "AssigningRadialStyleEventArgsDescription": "AssigningRadialStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningRadialStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningRadialStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningRadialStyleEventArgsDescriptionMetadata()": "AssigningRadialStyleEventArgsDescriptionMetadata()", + "AssigningRadialStyleEventArgsDescriptionMetadata": "AssigningRadialStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningScatterMarkerStyleEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningScatterMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterMarkerStyleEventArgs()": "AssigningScatterMarkerStyleEventArgs()", + "AssigningScatterMarkerStyleEventArgs": "AssigningScatterMarkerStyleEventArgs()" + } + } + ], + "AssigningScatterMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningScatterMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterMarkerStyleEventArgsDescription()": "AssigningScatterMarkerStyleEventArgsDescription()", + "AssigningScatterMarkerStyleEventArgsDescription": "AssigningScatterMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningScatterMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningScatterMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterMarkerStyleEventArgsDescriptionMetadata()": "AssigningScatterMarkerStyleEventArgsDescriptionMetadata()", + "AssigningScatterMarkerStyleEventArgsDescriptionMetadata": "AssigningScatterMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningScatterStyleEventArgsBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningScatterStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningScatterStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningScatterStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterStyleEventArgsBaseDescription()": "AssigningScatterStyleEventArgsBaseDescription()", + "AssigningScatterStyleEventArgsBaseDescription": "AssigningScatterStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningScatterStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningScatterStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterStyleEventArgsBaseDescriptionMetadata()": "AssigningScatterStyleEventArgsBaseDescriptionMetadata()", + "AssigningScatterStyleEventArgsBaseDescriptionMetadata": "AssigningScatterStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningScatterStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningScatterStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterStyleEventArgsDescription()": "AssigningScatterStyleEventArgsDescription()", + "AssigningScatterStyleEventArgsDescription": "AssigningScatterStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningScatterStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningScatterStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningScatterStyleEventArgsDescriptionMetadata()": "AssigningScatterStyleEventArgsDescriptionMetadata()", + "AssigningScatterStyleEventArgsDescriptionMetadata": "AssigningScatterStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningSeriesShapeStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningSeriesShapeStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningSeriesShapeStyleEventArgsBaseDescription()": "AssigningSeriesShapeStyleEventArgsBaseDescription()", + "AssigningSeriesShapeStyleEventArgsBaseDescription": "AssigningSeriesShapeStyleEventArgsBaseDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "StrokeDashArray": "StrokeDashArray", + "StrokeThickness": "StrokeThickness", + "Type": "Type" + } + } + ], + "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata()": "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata()", + "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata": "AssigningSeriesShapeStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningSeriesStyleEventArgsBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningSeriesStyleEventArgsBase", + "k": "class", + "s": "classes", + "m": { + "EndDate": "EndDate", + "EndIndex": "EndIndex", + "FadeOpacity": "FadeOpacity", + "Fill": "Fill", + "FocusHighlightingInfo": "FocusHighlightingInfo", + "GetItems": "GetItems", + "HasDateRange": "HasDateRange", + "HighlightingHandled": "HighlightingHandled", + "HighlightingInfo": "HighlightingInfo", + "IsNegativeShape": "IsNegativeShape", + "MaxAllSeriesFocusHighlightingProgress": "MaxAllSeriesFocusHighlightingProgress", + "MaxAllSeriesHighlightingProgress": "MaxAllSeriesHighlightingProgress", + "MaxAllSeriesSelectionHighlightingProgress": "MaxAllSeriesSelectionHighlightingProgress", + "Opacity": "Opacity", + "SelectionHighlightingInfo": "SelectionHighlightingInfo", + "StartDate": "StartDate", + "StartIndex": "StartIndex", + "Stroke": "Stroke", + "SumAllSeriesFocusHighlightingProgress": "SumAllSeriesFocusHighlightingProgress", + "SumAllSeriesHighlightingProgress": "SumAllSeriesHighlightingProgress", + "SumAllSeriesSelectionHighlightingProgress": "SumAllSeriesSelectionHighlightingProgress", + "TotalAllSeriesFocusHighWaterMark": "TotalAllSeriesFocusHighWaterMark", + "TotalAllSeriesFocusHighlightingProgress": "TotalAllSeriesFocusHighlightingProgress", + "TotalAllSeriesHighWaterMark": "TotalAllSeriesHighWaterMark", + "TotalAllSeriesHighlightingProgress": "TotalAllSeriesHighlightingProgress", + "TotalAllSeriesSelectionHighWaterMark": "TotalAllSeriesSelectionHighWaterMark", + "TotalAllSeriesSelectionHighlightingProgress": "TotalAllSeriesSelectionHighlightingProgress", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AssigningSeriesStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningSeriesStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningSeriesStyleEventArgsBaseDescription()": "AssigningSeriesStyleEventArgsBaseDescription()", + "AssigningSeriesStyleEventArgsBaseDescription": "AssigningSeriesStyleEventArgsBaseDescription()", + "EndDate": "EndDate", + "EndIndex": "EndIndex", + "FadeOpacity": "FadeOpacity", + "Fill": "Fill", + "FocusHighlightingInfo": "FocusHighlightingInfo", + "GetItemsRef": "GetItemsRef", + "HasDateRange": "HasDateRange", + "HighlightingHandled": "HighlightingHandled", + "HighlightingInfo": "HighlightingInfo", + "IsNegativeShape": "IsNegativeShape", + "IsThumbnail": "IsThumbnail", + "MaxAllSeriesFocusHighlightingProgress": "MaxAllSeriesFocusHighlightingProgress", + "MaxAllSeriesHighlightingProgress": "MaxAllSeriesHighlightingProgress", + "MaxAllSeriesSelectionHighlightingProgress": "MaxAllSeriesSelectionHighlightingProgress", + "Opacity": "Opacity", + "SelectionHighlightingInfo": "SelectionHighlightingInfo", + "StartDate": "StartDate", + "StartIndex": "StartIndex", + "Stroke": "Stroke", + "SumAllSeriesFocusHighlightingProgress": "SumAllSeriesFocusHighlightingProgress", + "SumAllSeriesHighlightingProgress": "SumAllSeriesHighlightingProgress", + "SumAllSeriesSelectionHighlightingProgress": "SumAllSeriesSelectionHighlightingProgress", + "TotalAllSeriesFocusHighWaterMark": "TotalAllSeriesFocusHighWaterMark", + "TotalAllSeriesFocusHighlightingProgress": "TotalAllSeriesFocusHighlightingProgress", + "TotalAllSeriesHighWaterMark": "TotalAllSeriesHighWaterMark", + "TotalAllSeriesHighlightingProgress": "TotalAllSeriesHighlightingProgress", + "TotalAllSeriesSelectionHighWaterMark": "TotalAllSeriesSelectionHighWaterMark", + "TotalAllSeriesSelectionHighlightingProgress": "TotalAllSeriesSelectionHighlightingProgress", + "Type": "Type" + } + } + ], + "AssigningSeriesStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningSeriesStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningSeriesStyleEventArgsBaseDescriptionMetadata()": "AssigningSeriesStyleEventArgsBaseDescriptionMetadata()", + "AssigningSeriesStyleEventArgsBaseDescriptionMetadata": "AssigningSeriesStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningShapeMarkerStyleEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningShapeMarkerStyleEventArgs", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeMarkerStyleEventArgs()": "AssigningShapeMarkerStyleEventArgs()", + "AssigningShapeMarkerStyleEventArgs": "AssigningShapeMarkerStyleEventArgs()" + } + } + ], + "AssigningShapeMarkerStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningShapeMarkerStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeMarkerStyleEventArgsDescription()": "AssigningShapeMarkerStyleEventArgsDescription()", + "AssigningShapeMarkerStyleEventArgsDescription": "AssigningShapeMarkerStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningShapeMarkerStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningShapeMarkerStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeMarkerStyleEventArgsDescriptionMetadata()": "AssigningShapeMarkerStyleEventArgsDescriptionMetadata()", + "AssigningShapeMarkerStyleEventArgsDescriptionMetadata": "AssigningShapeMarkerStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningShapeStyleEventArgsBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AssigningShapeStyleEventArgsBase", + "k": "class", + "s": "classes" + } + ], + "AssigningShapeStyleEventArgsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningShapeStyleEventArgsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeStyleEventArgsBaseDescription()": "AssigningShapeStyleEventArgsBaseDescription()", + "AssigningShapeStyleEventArgsBaseDescription": "AssigningShapeStyleEventArgsBaseDescription()", + "Type": "Type" + } + } + ], + "AssigningShapeStyleEventArgsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningShapeStyleEventArgsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeStyleEventArgsBaseDescriptionMetadata()": "AssigningShapeStyleEventArgsBaseDescriptionMetadata()", + "AssigningShapeStyleEventArgsBaseDescriptionMetadata": "AssigningShapeStyleEventArgsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AssigningShapeStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningShapeStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeStyleEventArgsDescription()": "AssigningShapeStyleEventArgsDescription()", + "AssigningShapeStyleEventArgsDescription": "AssigningShapeStyleEventArgsDescription()", + "Type": "Type" + } + } + ], + "AssigningShapeStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AssigningShapeStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AssigningShapeStyleEventArgsDescriptionMetadata()": "AssigningShapeStyleEventArgsDescriptionMetadata()", + "AssigningShapeStyleEventArgsDescriptionMetadata": "AssigningShapeStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AsyncCompletedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AsyncCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AsyncCompletedEventArgsDescription()": "AsyncCompletedEventArgsDescription()", + "AsyncCompletedEventArgsDescription": "AsyncCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "AsyncCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AsyncCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AsyncCompletedEventArgsDescriptionMetadata()": "AsyncCompletedEventArgsDescriptionMetadata()", + "AsyncCompletedEventArgsDescriptionMetadata": "AsyncCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AsyncDataSourcePageRequest": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AsyncDataSourcePageRequest", + "k": "class", + "s": "classes", + "m": { + "AsyncDataSourcePageRequest(int, int)": "AsyncDataSourcePageRequest(int, int)", + "AsyncDataSourcePageRequest": "AsyncDataSourcePageRequest(int, int)", + "Id": "Id", + "Index": "Index", + "IsDone": "IsDone", + "RetryDelay": "RetryDelay", + "TaskHolder": "TaskHolder" + } + } + ], + "AsyncDataSourcePageTaskHolder": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AsyncDataSourcePageTaskHolder", + "k": "class", + "s": "classes", + "m": { + "AsyncDataSourcePageTaskHolder()": "AsyncDataSourcePageTaskHolder()", + "AsyncDataSourcePageTaskHolder": "AsyncDataSourcePageTaskHolder()", + "Task": "Task" + } + } + ], + "AsyncVirtualDataSourceDataProviderWorkerSettings": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AsyncVirtualDataSourceDataProviderWorkerSettings", + "k": "class", + "s": "classes", + "m": { + "AsyncVirtualDataSourceDataProviderWorkerSettings()": "AsyncVirtualDataSourceDataProviderWorkerSettings()", + "AsyncVirtualDataSourceDataProviderWorkerSettings": "AsyncVirtualDataSourceDataProviderWorkerSettings()", + "BatchCompleted": "BatchCompleted", + "ExecutionContext": "ExecutionContext", + "PageLoaded": "PageLoaded", + "PageSizeRequested": "PageSizeRequested", + "TimeoutMilliseconds": "TimeoutMilliseconds" + } + } + ], + "AsyncVirtualDataSourceProviderTaskDataHolder": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AsyncVirtualDataSourceProviderTaskDataHolder", + "k": "class", + "s": "classes", + "m": { + "AsyncVirtualDataSourceProviderTaskDataHolder()": "AsyncVirtualDataSourceProviderTaskDataHolder()", + "AsyncVirtualDataSourceProviderTaskDataHolder": "AsyncVirtualDataSourceProviderTaskDataHolder()" + } + } + ], + "AsyncVirtualDataSourceProviderWorker": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AsyncVirtualDataSourceProviderWorker", + "k": "class", + "s": "classes", + "m": { + "AsyncVirtualDataSourceProviderWorker(AsyncVirtualDataSourceDataProviderWorkerSettings)": "AsyncVirtualDataSourceProviderWorker(AsyncVirtualDataSourceDataProviderWorkerSettings)", + "AsyncVirtualDataSourceProviderWorker": "AsyncVirtualDataSourceProviderWorker(AsyncVirtualDataSourceDataProviderWorkerSettings)", + "ActualCount": "ActualCount", + "ActualPageSize": "ActualPageSize", + "ActualSchema": "ActualSchema", + "AddPageRequest(int, DataSourcePageRequestPriority)": "AddPageRequest(int, DataSourcePageRequestPriority)", + "AddPageRequest": "AddPageRequest(int, DataSourcePageRequestPriority)", + "AddPageRequestWithRetry(int, DataSourcePageRequestPriority, int)": "AddPageRequestWithRetry(int, DataSourcePageRequestPriority, int)", + "AddPageRequestWithRetry": "AddPageRequestWithRetry(int, DataSourcePageRequestPriority, int)", + "AwaitChanges()": "AwaitChanges()", + "AwaitChanges": "AwaitChanges()", + "BatchCompleted": "BatchCompleted", + "CheckAndPotentiallyWaitOnTasks(AsyncDataSourcePageRequest[])": "CheckAndPotentiallyWaitOnTasks(AsyncDataSourcePageRequest[])", + "CheckAndPotentiallyWaitOnTasks": "CheckAndPotentiallyWaitOnTasks(AsyncDataSourcePageRequest[])", + "CreateBatchRequest(TransactionState[])": "CreateBatchRequest(TransactionState[])", + "CreateBatchRequest": "CreateBatchRequest(TransactionState[])", + "DoWork()": "DoWork()", + "DoWork": "DoWork()", + "ExecutionContext": "ExecutionContext", + "GetCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)": "GetCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)", + "GetCompletedTaskData": "GetCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)", + "GetTaskDataHolder()": "GetTaskDataHolder()", + "GetTaskDataHolder": "GetTaskDataHolder()", + "GetTasksData(AsyncVirtualDataSourceProviderTaskDataHolder)": "GetTasksData(AsyncVirtualDataSourceProviderTaskDataHolder)", + "GetTasksData": "GetTasksData(AsyncVirtualDataSourceProviderTaskDataHolder)", + "InitialRetryDelay": "InitialRetryDelay", + "Initialize()": "Initialize()", + "Initialize": "Initialize()", + "IsLastPage(int)": "IsLastPage(int)", + "IsLastPage": "IsLastPage(int)", + "IsRunning": "IsRunning", + "IsShutdown": "IsShutdown", + "MakeTaskForRequest(AsyncDataSourcePageRequest, int)": "MakeTaskForRequest(AsyncDataSourcePageRequest, int)", + "MakeTaskForRequest": "MakeTaskForRequest(AsyncDataSourcePageRequest, int)", + "MaxRetryDelay": "MaxRetryDelay", + "MaxSimultaneousExecutingTasks": "MaxSimultaneousExecutingTasks", + "PageLoaded": "PageLoaded", + "PopulatedActualPageSize": "PopulatedActualPageSize", + "ProcessCompletedTask(AsyncDataSourcePageTaskHolder, int, int, AsyncVirtualDataSourceProviderTaskDataHolder)": "ProcessCompletedTask(AsyncDataSourcePageTaskHolder, int, int, AsyncVirtualDataSourceProviderTaskDataHolder)", + "ProcessCompletedTask": "ProcessCompletedTask(AsyncDataSourcePageTaskHolder, int, int, AsyncVirtualDataSourceProviderTaskDataHolder)", + "RemoveAllPageRequests()": "RemoveAllPageRequests()", + "RemoveAllPageRequests": "RemoveAllPageRequests()", + "RemoveCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)": "RemoveCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)", + "RemoveCompletedTaskData": "RemoveCompletedTaskData(AsyncVirtualDataSourceProviderTaskDataHolder, int)", + "RemovePageRequest(int)": "RemovePageRequest(int)", + "RemovePageRequest": "RemovePageRequest(int)", + "RetryIndex(int, int)": "RetryIndex(int, int)", + "RetryIndex": "RetryIndex(int, int)", + "Shutdown()": "Shutdown()", + "Shutdown": "Shutdown()", + "SignalChangesOcurred()": "SignalChangesOcurred()", + "SignalChangesOcurred": "SignalChangesOcurred()", + "SyncLock": "SyncLock", + "Tasks": "Tasks" + } + } + ], + "AutoCalloutVisibilityMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AutoCalloutVisibilityMode", + "k": "enum", + "s": "enums" + } + ], + "AutoMarginsAndAngleUpdateMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AutoMarginsAndAngleUpdateMode", + "k": "enum", + "s": "enums" + } + ], + "AverageDirectionalIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AverageDirectionalIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "AverageDirectionalIndexIndicator()": "AverageDirectionalIndexIndicator()", + "AverageDirectionalIndexIndicator": "AverageDirectionalIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "AverageDirectionalIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AverageDirectionalIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "AverageDirectionalIndexIndicatorDescription()": "AverageDirectionalIndexIndicatorDescription()", + "AverageDirectionalIndexIndicatorDescription": "AverageDirectionalIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "AverageDirectionalIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AverageDirectionalIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AverageDirectionalIndexIndicatorDescriptionMetadata()": "AverageDirectionalIndexIndicatorDescriptionMetadata()", + "AverageDirectionalIndexIndicatorDescriptionMetadata": "AverageDirectionalIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AverageDirectionalIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AverageDirectionalIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AverageDirectionalIndexIndicatorDescriptionModule()": "AverageDirectionalIndexIndicatorDescriptionModule()", + "AverageDirectionalIndexIndicatorDescriptionModule": "AverageDirectionalIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AverageSummaryCalculator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AverageSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "AverageSummaryCalculator()": "AverageSummaryCalculator()", + "AverageSummaryCalculator": "AverageSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "AverageTrueRangeIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AverageTrueRangeIndicator", + "k": "class", + "s": "classes", + "m": { + "AverageTrueRangeIndicator()": "AverageTrueRangeIndicator()", + "AverageTrueRangeIndicator": "AverageTrueRangeIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "AverageTrueRangeIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AverageTrueRangeIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "AverageTrueRangeIndicatorDescription()": "AverageTrueRangeIndicatorDescription()", + "AverageTrueRangeIndicatorDescription": "AverageTrueRangeIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "AverageTrueRangeIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AverageTrueRangeIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AverageTrueRangeIndicatorDescriptionMetadata()": "AverageTrueRangeIndicatorDescriptionMetadata()", + "AverageTrueRangeIndicatorDescriptionMetadata": "AverageTrueRangeIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AverageTrueRangeIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AverageTrueRangeIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AverageTrueRangeIndicatorDescriptionModule()": "AverageTrueRangeIndicatorDescriptionModule()", + "AverageTrueRangeIndicatorDescriptionModule": "AverageTrueRangeIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Axis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Axis", + "k": "class", + "s": "classes", + "m": { + "ActualMajorStroke": "ActualMajorStroke", + "ActualMajorStrokeProperty": "ActualMajorStrokeProperty", + "ActualMinorStroke": "ActualMinorStroke", + "ActualMinorStrokeProperty": "ActualMinorStrokeProperty", + "ActualStroke": "ActualStroke", + "ActualStrokeProperty": "ActualStrokeProperty", + "Annotations": "Annotations", + "AreAnnotationsVisible": "AreAnnotationsVisible", + "AreAnnotationsVisibleProperty": "AreAnnotationsVisibleProperty", + "AreLabelsVisible": "AreLabelsVisible", + "AreLabelsVisibleProperty": "AreLabelsVisibleProperty", + "AreTickMarksVisible": "AreTickMarksVisible", + "AreTickMarksVisibleProperty": "AreTickMarksVisibleProperty", + "CompanionAxisCrossingAxis": "CompanionAxisCrossingAxis", + "CompanionAxisCrossingAxisProperty": "CompanionAxisCrossingAxisProperty", + "CompanionAxisCrossingValue": "CompanionAxisCrossingValue", + "CompanionAxisCrossingValueProperty": "CompanionAxisCrossingValueProperty", + "CompanionAxisEnabled": "CompanionAxisEnabled", + "CompanionAxisEnabledProperty": "CompanionAxisEnabledProperty", + "CompanionAxisIsInverted": "CompanionAxisIsInverted", + "CompanionAxisIsInvertedProperty": "CompanionAxisIsInvertedProperty", + "CompanionAxisLabelAngle": "CompanionAxisLabelAngle", + "CompanionAxisLabelAngleProperty": "CompanionAxisLabelAngleProperty", + "CompanionAxisLabelColor": "CompanionAxisLabelColor", + "CompanionAxisLabelColorProperty": "CompanionAxisLabelColorProperty", + "CompanionAxisLabelExtent": "CompanionAxisLabelExtent", + "CompanionAxisLabelExtentProperty": "CompanionAxisLabelExtentProperty", + "CompanionAxisLabelHorizontalAlignment": "CompanionAxisLabelHorizontalAlignment", + "CompanionAxisLabelHorizontalAlignmentProperty": "CompanionAxisLabelHorizontalAlignmentProperty", + "CompanionAxisLabelLocation": "CompanionAxisLabelLocation", + "CompanionAxisLabelLocationProperty": "CompanionAxisLabelLocationProperty", + "CompanionAxisLabelOpposite": "CompanionAxisLabelOpposite", + "CompanionAxisLabelOppositeProperty": "CompanionAxisLabelOppositeProperty", + "CompanionAxisLabelVerticalAlignment": "CompanionAxisLabelVerticalAlignment", + "CompanionAxisLabelVerticalAlignmentProperty": "CompanionAxisLabelVerticalAlignmentProperty", + "CompanionAxisLabelVisible": "CompanionAxisLabelVisible", + "CompanionAxisLabelVisibleProperty": "CompanionAxisLabelVisibleProperty", + "CompanionAxisMajorStroke": "CompanionAxisMajorStroke", + "CompanionAxisMajorStrokeProperty": "CompanionAxisMajorStrokeProperty", + "CompanionAxisMajorStrokeThickness": "CompanionAxisMajorStrokeThickness", + "CompanionAxisMajorStrokeThicknessProperty": "CompanionAxisMajorStrokeThicknessProperty", + "CompanionAxisMinExtent": "CompanionAxisMinExtent", + "CompanionAxisMinExtentProperty": "CompanionAxisMinExtentProperty", + "CompanionAxisMinorStroke": "CompanionAxisMinorStroke", + "CompanionAxisMinorStrokeProperty": "CompanionAxisMinorStrokeProperty", + "CompanionAxisMinorStrokeThickness": "CompanionAxisMinorStrokeThickness", + "CompanionAxisMinorStrokeThicknessProperty": "CompanionAxisMinorStrokeThicknessProperty", + "CompanionAxisShouldAutoTruncateAnnotations": "CompanionAxisShouldAutoTruncateAnnotations", + "CompanionAxisShouldAutoTruncateAnnotationsProperty": "CompanionAxisShouldAutoTruncateAnnotationsProperty", + "CompanionAxisShouldAvoidAnnotationCollisions": "CompanionAxisShouldAvoidAnnotationCollisions", + "CompanionAxisShouldAvoidAnnotationCollisionsProperty": "CompanionAxisShouldAvoidAnnotationCollisionsProperty", + "CompanionAxisShouldKeepAnnotationsInView": "CompanionAxisShouldKeepAnnotationsInView", + "CompanionAxisShouldKeepAnnotationsInViewProperty": "CompanionAxisShouldKeepAnnotationsInViewProperty", + "CompanionAxisStrip": "CompanionAxisStrip", + "CompanionAxisStripProperty": "CompanionAxisStripProperty", + "CompanionAxisStroke": "CompanionAxisStroke", + "CompanionAxisStrokeProperty": "CompanionAxisStrokeProperty", + "CompanionAxisStrokeThickness": "CompanionAxisStrokeThickness", + "CompanionAxisStrokeThicknessProperty": "CompanionAxisStrokeThicknessProperty", + "CompanionAxisSyncronizedWithPrimaryAxis": "CompanionAxisSyncronizedWithPrimaryAxis", + "CompanionAxisSyncronizedWithPrimaryAxisProperty": "CompanionAxisSyncronizedWithPrimaryAxisProperty", + "CompanionAxisTickLength": "CompanionAxisTickLength", + "CompanionAxisTickLengthProperty": "CompanionAxisTickLengthProperty", + "CompanionAxisTickStroke": "CompanionAxisTickStroke", + "CompanionAxisTickStrokeProperty": "CompanionAxisTickStrokeProperty", + "CompanionAxisTickStrokeThickness": "CompanionAxisTickStrokeThickness", + "CompanionAxisTickStrokeThicknessProperty": "CompanionAxisTickStrokeThicknessProperty", + "CompanionAxisTitle": "CompanionAxisTitle", + "CompanionAxisTitleProperty": "CompanionAxisTitleProperty", + "CrossingAxis": "CrossingAxis", + "CrossingAxisProperty": "CrossingAxisProperty", + "CrossingValue": "CrossingValue", + "CrossingValueProperty": "CrossingValueProperty", + "DeregisterSeries(Series)": "DeregisterSeries(Series)", + "DeregisterSeries": "DeregisterSeries(Series)", + "EnhancedIntervalMinimumCharacters": "EnhancedIntervalMinimumCharacters", + "EnhancedIntervalMinimumCharactersProperty": "EnhancedIntervalMinimumCharactersProperty", + "EnhancedIntervalPreferMoreCategoryLabels": "EnhancedIntervalPreferMoreCategoryLabels", + "EnhancedIntervalPreferMoreCategoryLabelsProperty": "EnhancedIntervalPreferMoreCategoryLabelsProperty", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "GetFullRange()": "GetFullRange()", + "GetFullRange": "GetFullRange()", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GetMemberPathValue(string)": "GetMemberPathValue(string)", + "GetMemberPathValue": "GetMemberPathValue(string)", + "GetScaledValue(double, ScalerParams)": "GetScaledValue(double, ScalerParams)", + "GetScaledValue": "GetScaledValue(double, ScalerParams)", + "GetUnscaledValue(double, ScalerParams)": "GetUnscaledValue(double, ScalerParams)", + "GetUnscaledValue": "GetUnscaledValue(double, ScalerParams)", + "GetValueLabel(double)": "GetValueLabel(double)", + "GetValueLabel": "GetValueLabel(double)", + "IsAngular": "IsAngular", + "IsCategory": "IsCategory", + "IsCategoryDateTime": "IsCategoryDateTime", + "IsCompanionAxis": "IsCompanionAxis", + "IsCompanionAxisProperty": "IsCompanionAxisProperty", + "IsContinuous": "IsContinuous", + "IsDateTime": "IsDateTime", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHorizontal": "IsHorizontal", + "IsHorizontalProperty": "IsHorizontalProperty", + "IsInverted": "IsInverted", + "IsInvertedProperty": "IsInvertedProperty", + "IsLabelPanelVisible": "IsLabelPanelVisible", + "IsLabelPanelVisibleProperty": "IsLabelPanelVisibleProperty", + "IsNumeric": "IsNumeric", + "IsOrdinal": "IsOrdinal", + "IsPiecewise": "IsPiecewise", + "IsPrimaryAxis": "IsPrimaryAxis", + "IsPrimaryAxisProperty": "IsPrimaryAxisProperty", + "IsRadial": "IsRadial", + "IsSorting": "IsSorting", + "IsVertical": "IsVertical", + "Label": "Label", + "LabelAngle": "LabelAngle", + "LabelAngleProperty": "LabelAngleProperty", + "LabelBottomMargin": "LabelBottomMargin", + "LabelBottomMarginProperty": "LabelBottomMarginProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelHorizontalAlignmentProperty": "LabelHorizontalAlignmentProperty", + "LabelLeftMargin": "LabelLeftMargin", + "LabelLeftMarginProperty": "LabelLeftMarginProperty", + "LabelLocation": "LabelLocation", + "LabelLocationProperty": "LabelLocationProperty", + "LabelMaximumExtent": "LabelMaximumExtent", + "LabelMaximumExtentPercentage": "LabelMaximumExtentPercentage", + "LabelMaximumExtentPercentageProperty": "LabelMaximumExtentPercentageProperty", + "LabelMaximumExtentProperty": "LabelMaximumExtentProperty", + "LabelProperty": "LabelProperty", + "LabelRightMargin": "LabelRightMargin", + "LabelRightMarginProperty": "LabelRightMarginProperty", + "LabelShowFirstLabel": "LabelShowFirstLabel", + "LabelShowFirstLabelProperty": "LabelShowFirstLabelProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "LabelTopMargin": "LabelTopMargin", + "LabelTopMarginProperty": "LabelTopMarginProperty", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVerticalAlignmentProperty": "LabelVerticalAlignmentProperty", + "LabelVisibility": "LabelVisibility", + "LabelVisibilityProperty": "LabelVisibilityProperty", + "MajorStroke": "MajorStroke", + "MajorStrokeDashArray": "MajorStrokeDashArray", + "MajorStrokeDashArrayProperty": "MajorStrokeDashArrayProperty", + "MajorStrokeProperty": "MajorStrokeProperty", + "MajorStrokeThickness": "MajorStrokeThickness", + "MajorStrokeThicknessProperty": "MajorStrokeThicknessProperty", + "MinorStroke": "MinorStroke", + "MinorStrokeDashArray": "MinorStrokeDashArray", + "MinorStrokeDashArrayProperty": "MinorStrokeDashArrayProperty", + "MinorStrokeProperty": "MinorStrokeProperty", + "MinorStrokeThickness": "MinorStrokeThickness", + "MinorStrokeThicknessProperty": "MinorStrokeThicknessProperty", + "OnFormatLabel(AxisFormatLabelEventArgs)": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRangeChanged(AxisRangeChangedEventArgs)": "OnRangeChanged(AxisRangeChangedEventArgs)", + "OnRangeChanged": "OnRangeChanged(AxisRangeChangedEventArgs)", + "OnRenderRequested(RenderRequestedEventArgs)": "OnRenderRequested(RenderRequestedEventArgs)", + "OnRenderRequested": "OnRenderRequested(RenderRequestedEventArgs)", + "RegisterSeries(Series)": "RegisterSeries(Series)", + "RegisterSeries": "RegisterSeries(Series)", + "RenderAxis()": "RenderAxis()", + "RenderAxis": "RenderAxis()", + "ResetCachedEnhancedInterval()": "ResetCachedEnhancedInterval()", + "ResetCachedEnhancedInterval": "ResetCachedEnhancedInterval()", + "ScaleValue(double)": "ScaleValue(double)", + "ScaleValue": "ScaleValue(double)", + "SeriesViewer": "SeriesViewer", + "SeriesViewerProperty": "SeriesViewerProperty", + "ShouldAutoTruncateAnnotations": "ShouldAutoTruncateAnnotations", + "ShouldAutoTruncateAnnotationsProperty": "ShouldAutoTruncateAnnotationsProperty", + "ShouldAvoidAnnotationCollisions": "ShouldAvoidAnnotationCollisions", + "ShouldAvoidAnnotationCollisionsProperty": "ShouldAvoidAnnotationCollisionsProperty", + "ShouldKeepAnnotationsInView": "ShouldKeepAnnotationsInView", + "ShouldKeepAnnotationsInViewProperty": "ShouldKeepAnnotationsInViewProperty", + "Strip": "Strip", + "StripProperty": "StripProperty", + "Stroke": "Stroke", + "StrokeDashArray": "StrokeDashArray", + "StrokeDashArrayProperty": "StrokeDashArrayProperty", + "StrokeProperty": "StrokeProperty", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "TickLength": "TickLength", + "TickLengthProperty": "TickLengthProperty", + "TickStroke": "TickStroke", + "TickStrokeDashArray": "TickStrokeDashArray", + "TickStrokeDashArrayProperty": "TickStrokeDashArrayProperty", + "TickStrokeProperty": "TickStrokeProperty", + "TickStrokeThickness": "TickStrokeThickness", + "TickStrokeThicknessProperty": "TickStrokeThicknessProperty", + "Title": "Title", + "TitleAngle": "TitleAngle", + "TitleAngleProperty": "TitleAngleProperty", + "TitleBottomMargin": "TitleBottomMargin", + "TitleBottomMarginProperty": "TitleBottomMarginProperty", + "TitleFontFamily": "TitleFontFamily", + "TitleFontFamilyProperty": "TitleFontFamilyProperty", + "TitleFontSize": "TitleFontSize", + "TitleFontSizeProperty": "TitleFontSizeProperty", + "TitleFontStyle": "TitleFontStyle", + "TitleFontStyleProperty": "TitleFontStyleProperty", + "TitleFontWeight": "TitleFontWeight", + "TitleFontWeightProperty": "TitleFontWeightProperty", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleHorizontalAlignmentProperty": "TitleHorizontalAlignmentProperty", + "TitleLeftMargin": "TitleLeftMargin", + "TitleLeftMarginProperty": "TitleLeftMarginProperty", + "TitleLocation": "TitleLocation", + "TitleLocationProperty": "TitleLocationProperty", + "TitleMaximumExtent": "TitleMaximumExtent", + "TitleMaximumExtentPercentage": "TitleMaximumExtentPercentage", + "TitleMaximumExtentPercentageProperty": "TitleMaximumExtentPercentageProperty", + "TitleMaximumExtentProperty": "TitleMaximumExtentProperty", + "TitlePosition": "TitlePosition", + "TitlePositionProperty": "TitlePositionProperty", + "TitleProperty": "TitleProperty", + "TitleRightMargin": "TitleRightMargin", + "TitleRightMarginProperty": "TitleRightMarginProperty", + "TitleShowFirstLabel": "TitleShowFirstLabel", + "TitleShowFirstLabelProperty": "TitleShowFirstLabelProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTopMargin": "TitleTopMargin", + "TitleTopMarginProperty": "TitleTopMarginProperty", + "TitleVerticalAlignment": "TitleVerticalAlignment", + "TitleVerticalAlignmentProperty": "TitleVerticalAlignmentProperty", + "TitleVisibility": "TitleVisibility", + "TitleVisibilityProperty": "TitleVisibilityProperty", + "UpdateRange()": "UpdateRange()", + "UpdateRange": "UpdateRange()", + "UpdateRange(bool)": "UpdateRange(bool)", + "UseEnhancedIntervalManagement": "UseEnhancedIntervalManagement", + "UseEnhancedIntervalManagementProperty": "UseEnhancedIntervalManagementProperty", + "UsePerLabelHeightMeasurement": "UsePerLabelHeightMeasurement", + "UsePerLabelHeightMeasurementProperty": "UsePerLabelHeightMeasurementProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisAngleLabelMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AxisAngleLabelMode", + "k": "enum", + "s": "enums" + } + ], + "AxisAnnotation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisAnnotation", + "k": "class", + "s": "classes", + "m": { + "AxisAnnotation()": "AxisAnnotation()", + "AxisAnnotation": "AxisAnnotation()", + "Background": "Background", + "BackgroundCornerRadius": "BackgroundCornerRadius", + "BackgroundPaddingBottom": "BackgroundPaddingBottom", + "BackgroundPaddingLeft": "BackgroundPaddingLeft", + "BackgroundPaddingRight": "BackgroundPaddingRight", + "BackgroundPaddingTop": "BackgroundPaddingTop", + "BadgeBackground": "BadgeBackground", + "BadgeCornerRadius": "BadgeCornerRadius", + "BadgeImagePath": "BadgeImagePath", + "BadgeMargin": "BadgeMargin", + "BadgeOutline": "BadgeOutline", + "BadgeOutlineThickness": "BadgeOutlineThickness", + "BadgeSize": "BadgeSize", + "IsBadgeEnabled": "IsBadgeEnabled", + "IsPillShaped": "IsPillShaped", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "OnFormatLabel(AxisFormatLabelEventArgs)": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Outline": "Outline", + "ResetCachedExtent()": "ResetCachedExtent()", + "ResetCachedExtent": "ResetCachedExtent()", + "ResolveLabelValue()": "ResolveLabelValue()", + "ResolveLabelValue": "ResolveLabelValue()", + "StrokeThickness": "StrokeThickness", + "Text": "Text", + "TextColor": "TextColor", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisAnnotationCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisAnnotationCollection", + "k": "class", + "s": "classes", + "m": { + "AxisAnnotationCollection()": "AxisAnnotationCollection()", + "AxisAnnotationCollection": "AxisAnnotationCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisAnnotationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "AxisAnnotationDescription()": "AxisAnnotationDescription()", + "AxisAnnotationDescription": "AxisAnnotationDescription()", + "Background": "Background", + "BackgroundCornerRadius": "BackgroundCornerRadius", + "BackgroundPaddingBottom": "BackgroundPaddingBottom", + "BackgroundPaddingLeft": "BackgroundPaddingLeft", + "BackgroundPaddingRight": "BackgroundPaddingRight", + "BackgroundPaddingTop": "BackgroundPaddingTop", + "BadgeBackground": "BadgeBackground", + "BadgeCornerRadius": "BadgeCornerRadius", + "BadgeImagePath": "BadgeImagePath", + "BadgeMargin": "BadgeMargin", + "BadgeOutline": "BadgeOutline", + "BadgeOutlineThickness": "BadgeOutlineThickness", + "BadgeSize": "BadgeSize", + "FormatLabelRef": "FormatLabelRef", + "IsBadgeEnabled": "IsBadgeEnabled", + "IsPillShaped": "IsPillShaped", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "Outline": "Outline", + "StrokeThickness": "StrokeThickness", + "Text": "Text", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value" + } + } + ], + "AxisAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisAnnotationDescriptionMetadata()": "AxisAnnotationDescriptionMetadata()", + "AxisAnnotationDescriptionMetadata": "AxisAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisCollection", + "k": "class", + "s": "classes", + "m": { + "AxisCollection()": "AxisCollection()", + "AxisCollection": "AxisCollection()", + "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)": "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionAfterChanged": "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)": "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionBeforeChanged": "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisDescription", + "k": "class", + "s": "classes", + "m": { + "AxisDescription()": "AxisDescription()", + "AxisDescription": "AxisDescription()", + "ActualMajorStroke": "ActualMajorStroke", + "ActualMinorStroke": "ActualMinorStroke", + "ActualStroke": "ActualStroke", + "Annotations": "Annotations", + "AreAnnotationsVisible": "AreAnnotationsVisible", + "AreLabelsVisible": "AreLabelsVisible", + "AreTickMarksVisible": "AreTickMarksVisible", + "CoercionMethodsRef": "CoercionMethodsRef", + "CompanionAxisCrossingAxisRef": "CompanionAxisCrossingAxisRef", + "CompanionAxisCrossingValue": "CompanionAxisCrossingValue", + "CompanionAxisEnabled": "CompanionAxisEnabled", + "CompanionAxisIsInverted": "CompanionAxisIsInverted", + "CompanionAxisLabelAngle": "CompanionAxisLabelAngle", + "CompanionAxisLabelColor": "CompanionAxisLabelColor", + "CompanionAxisLabelExtent": "CompanionAxisLabelExtent", + "CompanionAxisLabelHorizontalAlignment": "CompanionAxisLabelHorizontalAlignment", + "CompanionAxisLabelLocation": "CompanionAxisLabelLocation", + "CompanionAxisLabelOpposite": "CompanionAxisLabelOpposite", + "CompanionAxisLabelVerticalAlignment": "CompanionAxisLabelVerticalAlignment", + "CompanionAxisLabelVisible": "CompanionAxisLabelVisible", + "CompanionAxisMajorStroke": "CompanionAxisMajorStroke", + "CompanionAxisMajorStrokeThickness": "CompanionAxisMajorStrokeThickness", + "CompanionAxisMinExtent": "CompanionAxisMinExtent", + "CompanionAxisMinorStroke": "CompanionAxisMinorStroke", + "CompanionAxisMinorStrokeThickness": "CompanionAxisMinorStrokeThickness", + "CompanionAxisShouldAutoTruncateAnnotations": "CompanionAxisShouldAutoTruncateAnnotations", + "CompanionAxisShouldAvoidAnnotationCollisions": "CompanionAxisShouldAvoidAnnotationCollisions", + "CompanionAxisShouldKeepAnnotationsInView": "CompanionAxisShouldKeepAnnotationsInView", + "CompanionAxisStrip": "CompanionAxisStrip", + "CompanionAxisStroke": "CompanionAxisStroke", + "CompanionAxisStrokeThickness": "CompanionAxisStrokeThickness", + "CompanionAxisSyncronizedWithPrimaryAxis": "CompanionAxisSyncronizedWithPrimaryAxis", + "CompanionAxisTickLength": "CompanionAxisTickLength", + "CompanionAxisTickStroke": "CompanionAxisTickStroke", + "CompanionAxisTickStrokeThickness": "CompanionAxisTickStrokeThickness", + "CompanionAxisTitle": "CompanionAxisTitle", + "CrossingAxisRef": "CrossingAxisRef", + "CrossingValue": "CrossingValue", + "EnhancedIntervalMinimumCharacters": "EnhancedIntervalMinimumCharacters", + "EnhancedIntervalPreferMoreCategoryLabels": "EnhancedIntervalPreferMoreCategoryLabels", + "ExpectFunctions": "ExpectFunctions", + "FormatLabelRef": "FormatLabelRef", + "IsCompanionAxis": "IsCompanionAxis", + "IsDisabled": "IsDisabled", + "IsInverted": "IsInverted", + "IsLabelPanelVisible": "IsLabelPanelVisible", + "Label": "Label", + "LabelAngle": "LabelAngle", + "LabelBottomMargin": "LabelBottomMargin", + "LabelExtent": "LabelExtent", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelLeftMargin": "LabelLeftMargin", + "LabelLocation": "LabelLocation", + "LabelMaximumExtent": "LabelMaximumExtent", + "LabelMaximumExtentPercentage": "LabelMaximumExtentPercentage", + "LabelRightMargin": "LabelRightMargin", + "LabelShowFirstLabel": "LabelShowFirstLabel", + "LabelTextColor": "LabelTextColor", + "LabelTopMargin": "LabelTopMargin", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVisibility": "LabelVisibility", + "MajorStroke": "MajorStroke", + "MajorStrokeDashArray": "MajorStrokeDashArray", + "MajorStrokeThickness": "MajorStrokeThickness", + "MinorStroke": "MinorStroke", + "MinorStrokeDashArray": "MinorStrokeDashArray", + "MinorStrokeThickness": "MinorStrokeThickness", + "RangeChangedRef": "RangeChangedRef", + "RenderRequestedRef": "RenderRequestedRef", + "ShouldAutoTruncateAnnotations": "ShouldAutoTruncateAnnotations", + "ShouldAvoidAnnotationCollisions": "ShouldAvoidAnnotationCollisions", + "ShouldKeepAnnotationsInView": "ShouldKeepAnnotationsInView", + "Strip": "Strip", + "Stroke": "Stroke", + "StrokeDashArray": "StrokeDashArray", + "StrokeThickness": "StrokeThickness", + "TickLength": "TickLength", + "TickStroke": "TickStroke", + "TickStrokeDashArray": "TickStrokeDashArray", + "TickStrokeThickness": "TickStrokeThickness", + "Title": "Title", + "TitleAngle": "TitleAngle", + "TitleBottomMargin": "TitleBottomMargin", + "TitleExtent": "TitleExtent", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleLeftMargin": "TitleLeftMargin", + "TitleLocation": "TitleLocation", + "TitleMaximumExtent": "TitleMaximumExtent", + "TitleMaximumExtentPercentage": "TitleMaximumExtentPercentage", + "TitlePosition": "TitlePosition", + "TitleRightMargin": "TitleRightMargin", + "TitleShowFirstLabel": "TitleShowFirstLabel", + "TitleTextColor": "TitleTextColor", + "TitleTopMargin": "TitleTopMargin", + "TitleVerticalAlignment": "TitleVerticalAlignment", + "Type": "Type", + "UseEnhancedIntervalManagement": "UseEnhancedIntervalManagement", + "UsePerLabelHeightMeasurement": "UsePerLabelHeightMeasurement" + } + } + ], + "AxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisDescriptionMetadata()": "AxisDescriptionMetadata()", + "AxisDescriptionMetadata": "AxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisExtentType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AxisExtentType", + "k": "enum", + "s": "enums" + } + ], + "AxisFormatLabelEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisFormatLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "AxisFormatLabelEventArgs()": "AxisFormatLabelEventArgs()", + "AxisFormatLabelEventArgs": "AxisFormatLabelEventArgs()", + "Item": "Item", + "Label": "Label", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisLabelsLocation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AxisLabelsLocation", + "k": "enum", + "s": "enums" + } + ], + "AxisLabelVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "AxisLabelVisualData()": "AxisLabelVisualData()", + "AxisLabelVisualData": "AxisLabelVisualData()", + "ANCHOR_BOT_LEFT": "ANCHOR_BOT_LEFT", + "ANCHOR_BOT_RIGHT": "ANCHOR_BOT_RIGHT", + "ANCHOR_CENTER": "ANCHOR_CENTER", + "ANCHOR_END": "ANCHOR_END", + "ANCHOR_START": "ANCHOR_START", + "ANCHOR_TOP_LEFT": "ANCHOR_TOP_LEFT", + "ANCHOR_TOP_RIGHT": "ANCHOR_TOP_RIGHT", + "Anchors": "Anchors", + "Appearance": "Appearance", + "ChartPosition": "ChartPosition", + "LabelPosition": "LabelPosition", + "LabelValue": "LabelValue", + "PanelPosition": "PanelPosition", + "Position": "Position", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Size": "Size" + } + } + ], + "AxisLabelVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisLabelVisualDataList", + "k": "class", + "s": "classes", + "m": { + "AxisLabelVisualDataList()": "AxisLabelVisualDataList()", + "AxisLabelVisualDataList": "AxisLabelVisualDataList()" + } + } + ], + "AxisMatcher": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisMatcher", + "k": "class", + "s": "classes", + "m": { + "AxisMatcher()": "AxisMatcher()", + "AxisMatcher": "AxisMatcher()", + "AxisType": "AxisType", + "Index": "Index", + "MemberPath": "MemberPath", + "MemberPathType": "MemberPathType", + "Name": "Name", + "Title": "Title", + "TypedIndex": "TypedIndex", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisMatcherDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisMatcherDescription", + "k": "class", + "s": "classes", + "m": { + "AxisMatcherDescription()": "AxisMatcherDescription()", + "AxisMatcherDescription": "AxisMatcherDescription()", + "AxisType": "AxisType", + "Index": "Index", + "MemberPath": "MemberPath", + "MemberPathType": "MemberPathType", + "Title": "Title", + "Type": "Type", + "TypedIndex": "TypedIndex" + } + } + ], + "AxisMatcherDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisMatcherDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisMatcherDescriptionMetadata()": "AxisMatcherDescriptionMetadata()", + "AxisMatcherDescriptionMetadata": "AxisMatcherDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisMatcherDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisMatcherDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AxisMatcherDescriptionModule()": "AxisMatcherDescriptionModule()", + "AxisMatcherDescriptionModule": "AxisMatcherDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisMouseEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisMouseEventArgs", + "k": "class", + "s": "classes", + "m": { + "Axis": "Axis", + "AxisDateValue": "AxisDateValue", + "AxisValue": "AxisValue", + "ChartPosition": "ChartPosition", + "Label": "Label", + "LabelContext": "LabelContext", + "PlotAreaPosition": "PlotAreaPosition", + "WorldPosition": "WorldPosition", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "AxisMouseEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisMouseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AxisMouseEventArgsDescription()": "AxisMouseEventArgsDescription()", + "AxisMouseEventArgsDescription": "AxisMouseEventArgsDescription()", + "AxisDateValue": "AxisDateValue", + "AxisRef": "AxisRef", + "AxisValue": "AxisValue", + "ChartPosition": "ChartPosition", + "Label": "Label", + "LabelContextRef": "LabelContextRef", + "PlotAreaPosition": "PlotAreaPosition", + "Type": "Type", + "WorldPosition": "WorldPosition" + } + } + ], + "AxisMouseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisMouseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisMouseEventArgsDescriptionMetadata()": "AxisMouseEventArgsDescriptionMetadata()", + "AxisMouseEventArgsDescriptionMetadata": "AxisMouseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisRangeBufferMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AxisRangeBufferMode", + "k": "enum", + "s": "enums" + } + ], + "AxisRangeChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisRangeChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "AxisRangeChangedEventArgsDescription()": "AxisRangeChangedEventArgsDescription()", + "AxisRangeChangedEventArgsDescription": "AxisRangeChangedEventArgsDescription()", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "OldMaximumValue": "OldMaximumValue", + "OldMinimumValue": "OldMinimumValue", + "Type": "Type" + } + } + ], + "AxisRangeChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AxisRangeChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AxisRangeChangedEventArgsDescriptionMetadata()": "AxisRangeChangedEventArgsDescriptionMetadata()", + "AxisRangeChangedEventArgsDescriptionMetadata": "AxisRangeChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AxisTitlePosition": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/AxisTitlePosition", + "k": "enum", + "s": "enums" + } + ], + "AxisVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisVisualData", + "k": "class", + "s": "classes", + "m": { + "AxisVisualData()": "AxisVisualData()", + "AxisVisualData": "AxisVisualData()", + "AnnotationBackings": "AnnotationBackings", + "AnnotationBadges": "AnnotationBadges", + "AxisLine": "AxisLine", + "Labels": "Labels", + "LabelsPlotArea": "LabelsPlotArea", + "LabelsViewport": "LabelsViewport", + "MajorLines": "MajorLines", + "MinorLines": "MinorLines", + "Name": "Name", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Strips": "Strips", + "TickMarks": "TickMarks", + "TickMarksLength": "TickMarksLength", + "Title": "Title", + "Type": "Type", + "Viewport": "Viewport" + } + } + ], + "AxisVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/AxisVisualDataList", + "k": "class", + "s": "classes", + "m": { + "AxisVisualDataList()": "AxisVisualDataList()", + "AxisVisualDataList": "AxisVisualDataList()" + } + } + ], + "AzureMapsImagery": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/AzureMapsImagery", + "k": "class", + "s": "classes", + "m": { + "AzureMapsImagery()": "AzureMapsImagery()", + "AzureMapsImagery": "AzureMapsImagery()", + "ApiKey": "ApiKey", + "ApiVersion": "ApiVersion", + "CultureName": "CultureName", + "ImageryStyle": "ImageryStyle", + "LocalizedView": "LocalizedView", + "Timestamp": "Timestamp" + } + } + ], + "AzureMapsImageryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AzureMapsImageryDescription", + "k": "class", + "s": "classes", + "m": { + "AzureMapsImageryDescription()": "AzureMapsImageryDescription()", + "AzureMapsImageryDescription": "AzureMapsImageryDescription()", + "ApiKey": "ApiKey", + "ApiVersion": "ApiVersion", + "CultureName": "CultureName", + "ImageryStyle": "ImageryStyle", + "LocalizedView": "LocalizedView", + "Timestamp": "Timestamp", + "Type": "Type" + } + } + ], + "AzureMapsImageryDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AzureMapsImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "AzureMapsImageryDescriptionMetadata()": "AzureMapsImageryDescriptionMetadata()", + "AzureMapsImageryDescriptionMetadata": "AzureMapsImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AzureMapsImageryDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AzureMapsImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "AzureMapsImageryDescriptionModule()": "AzureMapsImageryDescriptionModule()", + "AzureMapsImageryDescriptionModule": "AzureMapsImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "AzureMapsImageryStyle": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/enums/AzureMapsImageryStyle", + "k": "enum", + "s": "enums" + } + ], + "AzureMapsTileSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/AzureMapsTileSource", + "k": "class", + "s": "classes", + "m": { + "AzureMapsTileSource()": "AzureMapsTileSource()", + "AzureMapsTileSource": "AzureMapsTileSource()", + "ApiKey": "ApiKey", + "ApiVersion": "ApiVersion", + "CultureName": "CultureName", + "LocalizedView": "LocalizedView", + "TilesetId": "TilesetId", + "Timestamp": "Timestamp" + } + } + ], + "BarFragmentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BarFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "BarFragmentDescription()": "BarFragmentDescription()", + "BarFragmentDescription": "BarFragmentDescription()", + "Type": "Type" + } + } + ], + "BarFragmentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BarFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BarFragmentDescriptionMetadata()": "BarFragmentDescriptionMetadata()", + "BarFragmentDescriptionMetadata": "BarFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BarFragmentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BarFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BarFragmentDescriptionModule()": "BarFragmentDescriptionModule()", + "BarFragmentDescriptionModule": "BarFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BarSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/BarSeries", + "k": "class", + "s": "classes", + "m": { + "BarSeries()": "BarSeries()", + "BarSeries": "BarSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "BarSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BarSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "BarSeriesDescription()": "BarSeriesDescription()", + "BarSeriesDescription": "BarSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "BarSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BarSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BarSeriesDescriptionMetadata()": "BarSeriesDescriptionMetadata()", + "BarSeriesDescriptionMetadata": "BarSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BarSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BarSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BarSeriesDescriptionModule()": "BarSeriesDescriptionModule()", + "BarSeriesDescriptionModule": "BarSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BaseControlTheme": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/BaseControlTheme", + "k": "enum", + "s": "enums" + } + ], + "BaseDataSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BaseDataSource", + "k": "class", + "s": "classes", + "m": { + "AcceptPendingCommit(int)": "AcceptPendingCommit(int)", + "AcceptPendingCommit": "AcceptPendingCommit(int)", + "AcceptPendingTransaction(int)": "AcceptPendingTransaction(int)", + "AcceptPendingTransaction": "AcceptPendingTransaction(int)", + "ActualCount": "ActualCount", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "CanCommit": "CanCommit", + "CanRedo": "CanRedo", + "CanUndo": "CanUndo", + "CancelEdits()": "CancelEdits()", + "CancelEdits": "CancelEdits()", + "ClearPinnedRows()": "ClearPinnedRows()", + "ClearPinnedRows": "ClearPinnedRows()", + "Clone()": "Clone()", + "Clone": "Clone()", + "CloneProperties(IDataSource)": "CloneProperties(IDataSource)", + "CloneProperties": "CloneProperties(IDataSource)", + "CommitEdits(bool)": "CommitEdits(bool)", + "CommitEdits": "CommitEdits(bool)", + "DeferAutoRefresh": "DeferAutoRefresh", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FirstVisibleIndexRequested": "FirstVisibleIndexRequested", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetAggregatedChanges(int)": "GetAggregatedChanges(int)", + "GetAggregatedChanges": "GetAggregatedChanges(int)", + "GetIsRowExpandedAtIndex(int)": "GetIsRowExpandedAtIndex(int)", + "GetIsRowExpandedAtIndex": "GetIsRowExpandedAtIndex(int)", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemProperty(object, string)": "GetItemProperty(object, string)", + "GetItemProperty": "GetItemProperty(object, string)", + "GetItemPropertyAtIndex(int, string)": "GetItemPropertyAtIndex(int, string)", + "GetItemPropertyAtIndex": "GetItemPropertyAtIndex(int, string)", + "GetMainValuePath(DataSourceRowType)": "GetMainValuePath(DataSourceRowType)", + "GetMainValuePath": "GetMainValuePath(DataSourceRowType)", + "GetRootSummaryResults()": "GetRootSummaryResults()", + "GetRootSummaryResults": "GetRootSummaryResults()", + "GetRootSummaryRowCount()": "GetRootSummaryRowCount()", + "GetRootSummaryRowCount": "GetRootSummaryRowCount()", + "GetRowLevel(int)": "GetRowLevel(int)", + "GetRowLevel": "GetRowLevel(int)", + "GetRowType(int)": "GetRowType(int)", + "GetRowType": "GetRowType(int)", + "GetSectionSummaryResults(int)": "GetSectionSummaryResults(int)", + "GetSectionSummaryResults": "GetSectionSummaryResults(int)", + "GetStickyRowPriority(int)": "GetStickyRowPriority(int)", + "GetStickyRowPriority": "GetStickyRowPriority(int)", + "GetStickyRows()": "GetStickyRows()", + "GetStickyRows": "GetStickyRows()", + "GetStickyRowsInRange(int, int)": "GetStickyRowsInRange(int, int)", + "GetStickyRowsInRange": "GetStickyRowsInRange(int, int)", + "GetTransactionErrorByID(int)": "GetTransactionErrorByID(int)", + "GetTransactionErrorByID": "GetTransactionErrorByID(int)", + "GetTransactionErrorByKey(object[], string)": "GetTransactionErrorByKey(object[], string)", + "GetTransactionErrorByKey": "GetTransactionErrorByKey(object[], string)", + "GetTransactionID(object[], string)": "GetTransactionID(object[], string)", + "GetTransactionID": "GetTransactionID(object[], string)", + "GroupDescriptions": "GroupDescriptions", + "HasAdd(object)": "HasAdd(object)", + "HasAdd": "HasAdd(object)", + "HasDelete(object[])": "HasDelete(object[])", + "HasDelete": "HasDelete(object[])", + "HasEdit(object[], string)": "HasEdit(object[], string)", + "HasEdit": "HasEdit(object[], string)", + "IncludeSummaryRowsInSection": "IncludeSummaryRowsInSection", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsBatchingEnabled": "IsBatchingEnabled", + "IsExclusivelySticky(int)": "IsExclusivelySticky(int)", + "IsExclusivelySticky": "IsExclusivelySticky(int)", + "IsFilteringSupported": "IsFilteringSupported", + "IsFilteringSupportedOverride": "IsFilteringSupportedOverride", + "IsGroupingSupported": "IsGroupingSupported", + "IsGroupingSupportedOverride": "IsGroupingSupportedOverride", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsPendingCommit(int)": "IsPendingCommit(int)", + "IsPendingCommit": "IsPendingCommit(int)", + "IsPendingTransaction(int)": "IsPendingTransaction(int)", + "IsPendingTransaction": "IsPendingTransaction(int)", + "IsPlaceholderItem(int)": "IsPlaceholderItem(int)", + "IsPlaceholderItem": "IsPlaceholderItem(int)", + "IsReadOnly": "IsReadOnly", + "IsRowPinned(int)": "IsRowPinned(int)", + "IsRowPinned": "IsRowPinned(int)", + "IsRowSpanning(DataSourceRowType)": "IsRowSpanning(DataSourceRowType)", + "IsRowSpanning": "IsRowSpanning(DataSourceRowType)", + "IsSectionCollapsable": "IsSectionCollapsable", + "IsSectionContentVisible": "IsSectionContentVisible", + "IsSectionExpandedDefault": "IsSectionExpandedDefault", + "IsSectionHeaderNormalRow": "IsSectionHeaderNormalRow", + "IsSectionSummaryRowsAtBottom": "IsSectionSummaryRowsAtBottom", + "IsSortingSupported": "IsSortingSupported", + "IsSortingSupportedOverride": "IsSortingSupportedOverride", + "IsVirtual": "IsVirtual", + "LastVisibleIndexRequested": "LastVisibleIndexRequested", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "OnDataCommitted(DataSourceDataCommittedEventArgs)": "OnDataCommitted(DataSourceDataCommittedEventArgs)", + "OnDataCommitted": "OnDataCommitted(DataSourceDataCommittedEventArgs)", + "OnPropertiesRequestedChanged(object, DataSourcePropertiesRequestedChangedEventArgs)": "OnPropertiesRequestedChanged(object, DataSourcePropertiesRequestedChangedEventArgs)", + "OnPropertiesRequestedChanged": "OnPropertiesRequestedChanged(object, DataSourcePropertiesRequestedChangedEventArgs)", + "OnPropertyChanged(PropertyChangedEventArgs)": "OnPropertyChanged(PropertyChangedEventArgs)", + "OnPropertyChanged": "OnPropertyChanged(PropertyChangedEventArgs)", + "OnRootSummariesChanged(object, DataSourceRootSummariesChangedEventArgs)": "OnRootSummariesChanged(object, DataSourceRootSummariesChangedEventArgs)", + "OnRootSummariesChanged": "OnRootSummariesChanged(object, DataSourceRootSummariesChangedEventArgs)", + "OnRowExpansionChanged(DataSourceRowExpansionChangedEventArgs)": "OnRowExpansionChanged(DataSourceRowExpansionChangedEventArgs)", + "OnRowExpansionChanged": "OnRowExpansionChanged(DataSourceRowExpansionChangedEventArgs)", + "OnSchemaChanged(DataSourceSchemaChangedEventArgs)": "OnSchemaChanged(DataSourceSchemaChangedEventArgs)", + "OnSchemaChanged": "OnSchemaChanged(DataSourceSchemaChangedEventArgs)", + "PinRow(object[])": "PinRow(object[])", + "PinRow": "PinRow(object[])", + "PrimaryKey": "PrimaryKey", + "PropertiesRequested": "PropertiesRequested", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Redo()": "Redo()", + "Redo": "Redo()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RejectPendingCommit(int)": "RejectPendingCommit(int)", + "RejectPendingCommit": "RejectPendingCommit(int)", + "RejectPendingTransaction(int)": "RejectPendingTransaction(int)", + "RejectPendingTransaction": "RejectPendingTransaction(int)", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "RemoveItemByKey(object[])": "RemoveItemByKey(object[])", + "RemoveItemByKey": "RemoveItemByKey(object[])", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "ResolvedDataProvider": "ResolvedDataProvider", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SectionHeaderDisplayMode": "SectionHeaderDisplayMode", + "SetIsRowExpandedAtIndex(int, bool)": "SetIsRowExpandedAtIndex(int, bool)", + "SetIsRowExpandedAtIndex": "SetIsRowExpandedAtIndex(int, bool)", + "SetTransactionError(int, string)": "SetTransactionError(int, string)", + "SetTransactionError": "SetTransactionError(int, string)", + "ShouldEmitSectionFooters": "ShouldEmitSectionFooters", + "ShouldEmitSectionHeaders": "ShouldEmitSectionHeaders", + "ShouldEmitShiftedRows": "ShouldEmitShiftedRows", + "ShouldEmitSummaryRows": "ShouldEmitSummaryRows", + "SortDescriptions": "SortDescriptions", + "SourceName": "SourceName", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "Undo()": "Undo()", + "Undo": "Undo()", + "UnpinRow(object[])": "UnpinRow(object[])", + "UnpinRow": "UnpinRow(object[])", + "UpdateNotifier": "UpdateNotifier", + "UpdatePropertyAtKey(object[], string, object, bool)": "UpdatePropertyAtKey(object[], string, object, bool)", + "UpdatePropertyAtKey": "UpdatePropertyAtKey(object[], string, object, bool)" + } + } + ], + "BaseDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BaseDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "BaseDataSourceDescription()": "BaseDataSourceDescription()", + "BaseDataSourceDescription": "BaseDataSourceDescription()", + "ActualCount": "ActualCount", + "DeferAutoRefresh": "DeferAutoRefresh", + "FirstVisibleIndexRequested": "FirstVisibleIndexRequested", + "IncludeSummaryRowsInSection": "IncludeSummaryRowsInSection", + "IsBatchingEnabled": "IsBatchingEnabled", + "IsReadOnly": "IsReadOnly", + "IsSectionCollapsable": "IsSectionCollapsable", + "IsSectionContentVisible": "IsSectionContentVisible", + "IsSectionExpandedDefault": "IsSectionExpandedDefault", + "IsSectionHeaderNormalRow": "IsSectionHeaderNormalRow", + "IsSectionSummaryRowsAtBottom": "IsSectionSummaryRowsAtBottom", + "LastVisibleIndexRequested": "LastVisibleIndexRequested", + "PrimaryKey": "PrimaryKey", + "PropertiesRequested": "PropertiesRequested", + "PropertiesRequestedChangedRef": "PropertiesRequestedChangedRef", + "RootSummariesChangedRef": "RootSummariesChangedRef", + "RowExpansionChangedRef": "RowExpansionChangedRef", + "SchemaChangedRef": "SchemaChangedRef", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SectionHeaderDisplayMode": "SectionHeaderDisplayMode", + "ShouldEmitSectionFooters": "ShouldEmitSectionFooters", + "ShouldEmitSectionHeaders": "ShouldEmitSectionHeaders", + "ShouldEmitShiftedRows": "ShouldEmitShiftedRows", + "ShouldEmitSummaryRows": "ShouldEmitSummaryRows", + "SourceName": "SourceName", + "Type": "Type" + } + } + ], + "BaseDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BaseDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BaseDataSourceDescriptionMetadata()": "BaseDataSourceDescriptionMetadata()", + "BaseDataSourceDescriptionMetadata": "BaseDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BaseGenericDataSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BaseGenericDataSource", + "k": "class", + "s": "classes", + "m": { + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "GroupDescriptions": "GroupDescriptions", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "BaseGenericDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BaseGenericDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "BaseGenericDataSourceDescription()": "BaseGenericDataSourceDescription()", + "BaseGenericDataSourceDescription": "BaseGenericDataSourceDescription()", + "FilterExpressions": "FilterExpressions", + "GroupDescriptions": "GroupDescriptions", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "Type": "Type" + } + } + ], + "BaseGenericDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BaseGenericDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BaseGenericDataSourceDescriptionMetadata()": "BaseGenericDataSourceDescriptionMetadata()", + "BaseGenericDataSourceDescriptionMetadata": "BaseGenericDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BaseTransactionService": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BaseTransactionService", + "k": "class", + "s": "classes", + "m": { + "BaseTransactionService(Action, Func, IEqualityComparer)": "BaseTransactionService(Action, Func, IEqualityComparer)", + "BaseTransactionService": "BaseTransactionService(Action, Func, IEqualityComparer)", + "AcceptCommit(int)": "AcceptCommit(int)", + "AcceptCommit": "AcceptCommit(int)", + "Add(Transaction, bool)": "Add(Transaction, bool)", + "Add": "Add(Transaction, bool)", + "CanRedo": "CanRedo", + "CanUndo": "CanUndo", + "Clear(bool, object)": "Clear(bool, object)", + "Clear": "Clear(bool, object)", + "ClearPending(int)": "ClearPending(int)", + "ClearPending": "ClearPending(int)", + "Clone": "Clone", + "Commit(bool, bool)": "Commit(bool, bool)", + "Commit": "Commit(bool, bool)", + "EndPending(bool)": "EndPending(bool)", + "EndPending": "EndPending(bool)", + "GetAggregatedChanges(int)": "GetAggregatedChanges(int)", + "GetAggregatedChanges": "GetAggregatedChanges(int)", + "GetPendingCommit(int)": "GetPendingCommit(int)", + "GetPendingCommit": "GetPendingCommit(int)", + "GetPendingErrors()": "GetPendingErrors()", + "GetPendingErrors": "GetPendingErrors()", + "GetPendingTransaction(int)": "GetPendingTransaction(int)", + "GetPendingTransaction": "GetPendingTransaction(int)", + "GetPendingTransactions(object)": "GetPendingTransactions(object)", + "GetPendingTransactions": "GetPendingTransactions(object)", + "GetState(object)": "GetState(object)", + "GetState": "GetState(object)", + "IsEnabled": "IsEnabled", + "IsEnabledPropertyName": "IsEnabledPropertyName", + "IsPending": "IsPending", + "Merge": "Merge", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "OnStateChanged(TransactionEvent, object)": "OnStateChanged(TransactionEvent, object)", + "OnStateChanged": "OnStateChanged(TransactionEvent, object)", + "PendingStates": "PendingStates", + "PendingTransactions": "PendingTransactions", + "Redo()": "Redo()", + "Redo": "Redo()", + "RejectCommit(int)": "RejectCommit(int)", + "RejectCommit": "RejectCommit(int)", + "StartPending()": "StartPending()", + "StartPending": "StartPending()", + "Undo()": "Undo()", + "Undo": "Undo()", + "UpdateState(Dictionary, Transaction)": "UpdateState(Dictionary, Transaction)", + "UpdateState": "UpdateState(Dictionary, Transaction)" + } + } + ], + "BezierSegmentData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BezierSegmentData", + "k": "class", + "s": "classes", + "m": { + "BezierSegmentData()": "BezierSegmentData()", + "BezierSegmentData": "BezierSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "BingMapsImageryStyle": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/enums/BingMapsImageryStyle", + "k": "enum", + "s": "enums" + } + ], + "BingMapsMapImagery": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/BingMapsMapImagery", + "k": "class", + "s": "classes", + "m": { + "BingMapsMapImagery()": "BingMapsMapImagery()", + "BingMapsMapImagery": "BingMapsMapImagery()", + "ActualBingImageryRestUri": "ActualBingImageryRestUri", + "ActualSubDomains": "ActualSubDomains", + "ActualTilePath": "ActualTilePath", + "ApiKey": "ApiKey", + "BingImageryRestUri": "BingImageryRestUri", + "CultureName": "CultureName", + "ImageryStyle": "ImageryStyle", + "IsDeferredLoad": "IsDeferredLoad", + "IsInitialized": "IsInitialized", + "RequestMapSettings()": "RequestMapSettings()", + "RequestMapSettings": "RequestMapSettings()", + "SubDomains": "SubDomains", + "TilePath": "TilePath" + } + } + ], + "BingMapsMapImageryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BingMapsMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "BingMapsMapImageryDescription()": "BingMapsMapImageryDescription()", + "BingMapsMapImageryDescription": "BingMapsMapImageryDescription()", + "ActualBingImageryRestUri": "ActualBingImageryRestUri", + "ActualSubDomains": "ActualSubDomains", + "ActualTilePath": "ActualTilePath", + "ApiKey": "ApiKey", + "BingImageryRestUri": "BingImageryRestUri", + "CultureName": "CultureName", + "ImageryStyle": "ImageryStyle", + "IsDeferredLoad": "IsDeferredLoad", + "IsInitialized": "IsInitialized", + "SubDomains": "SubDomains", + "TilePath": "TilePath", + "Type": "Type" + } + } + ], + "BingMapsMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BingMapsMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BingMapsMapImageryDescriptionMetadata()": "BingMapsMapImageryDescriptionMetadata()", + "BingMapsMapImageryDescriptionMetadata": "BingMapsMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BingMapsMapImageryDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BingMapsMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BingMapsMapImageryDescriptionModule()": "BingMapsMapImageryDescriptionModule()", + "BingMapsMapImageryDescriptionModule": "BingMapsMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BingMapsTileSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BingMapsTileSource", + "k": "class", + "s": "classes", + "m": { + "BingMapsTileSource()": "BingMapsTileSource()", + "BingMapsTileSource": "BingMapsTileSource()", + "BingMapsTileSource(string, ObservableCollection)": "BingMapsTileSource(string, ObservableCollection)", + "CultureName": "CultureName", + "SubDomains": "SubDomains", + "TilePath": "TilePath" + } + } + ], + "BingResourceSet": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/BingResourceSet", + "k": "class", + "s": "classes", + "m": { + "BingResourceSet()": "BingResourceSet()", + "BingResourceSet": "BingResourceSet()", + "Resources": "Resources" + } + } + ], + "BingResponse": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/BingResponse", + "k": "class", + "s": "classes", + "m": { + "BingResponse()": "BingResponse()", + "BingResponse": "BingResponse()", + "ResourceSets": "ResourceSets" + } + } + ], + "BitmapUtilities": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/BitmapUtilities", + "k": "class", + "s": "classes", + "m": { + "GetPixelAt(object, int, int)": "GetPixelAt(object, int, int)", + "GetPixelAt": "GetPixelAt(object, int, int)" + } + } + ], + "BollingerBandsOverlay": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/BollingerBandsOverlay", + "k": "class", + "s": "classes", + "m": { + "BollingerBandsOverlay()": "BollingerBandsOverlay()", + "BollingerBandsOverlay": "BollingerBandsOverlay()", + "Multiplier": "Multiplier", + "MultiplierProperty": "MultiplierProperty", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "BollingerBandsOverlayDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BollingerBandsOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "BollingerBandsOverlayDescription()": "BollingerBandsOverlayDescription()", + "BollingerBandsOverlayDescription": "BollingerBandsOverlayDescription()", + "Multiplier": "Multiplier", + "Period": "Period", + "Type": "Type" + } + } + ], + "BollingerBandsOverlayDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BollingerBandsOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BollingerBandsOverlayDescriptionMetadata()": "BollingerBandsOverlayDescriptionMetadata()", + "BollingerBandsOverlayDescriptionMetadata": "BollingerBandsOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BollingerBandsOverlayDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BollingerBandsOverlayDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BollingerBandsOverlayDescriptionModule()": "BollingerBandsOverlayDescriptionModule()", + "BollingerBandsOverlayDescriptionModule": "BollingerBandsOverlayDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BollingerBandWidthIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/BollingerBandWidthIndicator", + "k": "class", + "s": "classes", + "m": { + "BollingerBandWidthIndicator()": "BollingerBandWidthIndicator()", + "BollingerBandWidthIndicator": "BollingerBandWidthIndicator()", + "Multiplier": "Multiplier", + "MultiplierProperty": "MultiplierProperty", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "BollingerBandWidthIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BollingerBandWidthIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "BollingerBandWidthIndicatorDescription()": "BollingerBandWidthIndicatorDescription()", + "BollingerBandWidthIndicatorDescription": "BollingerBandWidthIndicatorDescription()", + "Multiplier": "Multiplier", + "Period": "Period", + "Type": "Type" + } + } + ], + "BollingerBandWidthIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BollingerBandWidthIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BollingerBandWidthIndicatorDescriptionMetadata()": "BollingerBandWidthIndicatorDescriptionMetadata()", + "BollingerBandWidthIndicatorDescriptionMetadata": "BollingerBandWidthIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BollingerBandWidthIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BollingerBandWidthIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BollingerBandWidthIndicatorDescriptionModule()": "BollingerBandWidthIndicatorDescriptionModule()", + "BollingerBandWidthIndicatorDescriptionModule": "BollingerBandWidthIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BoxCollisionGeometry": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BoxCollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "BoxCollisionGeometry(CollisionRect)": "BoxCollisionGeometry(CollisionRect)", + "BoxCollisionGeometry": "BoxCollisionGeometry(CollisionRect)", + "BoundingBox": "BoundingBox", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "Type": "Type" + } + } + ], + "BoxesCollisionGeometry": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BoxesCollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "BoxesCollisionGeometry(CollisionRect[])": "BoxesCollisionGeometry(CollisionRect[])", + "BoxesCollisionGeometry": "BoxesCollisionGeometry(CollisionRect[])", + "BoundingBox": "BoundingBox", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "Type": "Type" + } + } + ], + "BreakEvenDataRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BreakEvenDataRule", + "k": "class", + "s": "classes", + "m": { + "BreakEvenDataRule()": "BreakEvenDataRule()", + "BreakEvenDataRule": "BreakEvenDataRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)" + } + } + ], + "Brush": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/Brush", + "k": "class", + "s": "classes", + "m": { + "Brush()": "Brush()", + "Brush": "Brush()" + } + } + ], + "BrushAppearanceData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BrushAppearanceData", + "k": "class", + "s": "classes", + "m": { + "BrushAppearanceData()": "BrushAppearanceData()", + "BrushAppearanceData": "BrushAppearanceData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "BrushCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BrushCollection", + "k": "class", + "s": "classes", + "m": { + "BrushCollection()": "BrushCollection()", + "BrushCollection": "BrushCollection()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "InterpolationMode": "InterpolationMode", + "this[int]": "this[int]", + "SelectRandom()": "SelectRandom()", + "SelectRandom": "SelectRandom()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "BrushCollectionHelper": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BrushCollectionHelper", + "k": "class", + "s": "classes", + "m": { + "BrushCollectionHelper()": "BrushCollectionHelper()", + "BrushCollectionHelper": "BrushCollectionHelper()", + "CreateFromString(string)": "CreateFromString(string)", + "CreateFromString": "CreateFromString(string)" + } + } + ], + "BrushDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BrushDescription", + "k": "class", + "s": "classes", + "m": { + "BrushDescription()": "BrushDescription()", + "BrushDescription": "BrushDescription()", + "Value": "Value" + } + } + ], + "BrushScale": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/BrushScale", + "k": "class", + "s": "classes", + "m": { + "BrushScale()": "BrushScale()", + "BrushScale": "BrushScale()", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "GetBrush(int)": "GetBrush(int)", + "GetBrush": "GetBrush(int)", + "NotifySeries()": "NotifySeries()", + "NotifySeries": "NotifySeries()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "BrushScaleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BrushScaleDescription", + "k": "class", + "s": "classes", + "m": { + "BrushScaleDescription()": "BrushScaleDescription()", + "BrushScaleDescription": "BrushScaleDescription()", + "Brushes": "Brushes", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type" + } + } + ], + "BrushScaleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BrushScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BrushScaleDescriptionMetadata()": "BrushScaleDescriptionMetadata()", + "BrushScaleDescriptionMetadata": "BrushScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BrushScaleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BrushScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BrushScaleDescriptionModule()": "BrushScaleDescriptionModule()", + "BrushScaleDescriptionModule": "BrushScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BrushSelectionMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/BrushSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "BubbleSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/BubbleSeries", + "k": "class", + "s": "classes", + "m": { + "BubbleSeries()": "BubbleSeries()", + "BubbleSeries": "BubbleSeries()", + "FillMemberAsLegendLabel": "FillMemberAsLegendLabel", + "FillMemberAsLegendLabelProperty": "FillMemberAsLegendLabelProperty", + "FillMemberAsLegendUnit": "FillMemberAsLegendUnit", + "FillMemberAsLegendUnitProperty": "FillMemberAsLegendUnitProperty", + "FillMemberPath": "FillMemberPath", + "FillMemberPathProperty": "FillMemberPathProperty", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "FillScaleUseGlobalValuesProperty": "FillScaleUseGlobalValuesProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "MarkerBrushBrightness": "MarkerBrushBrightness", + "MarkerBrushBrightnessProperty": "MarkerBrushBrightnessProperty", + "MarkerOutlineBrightness": "MarkerOutlineBrightness", + "MarkerOutlineBrightnessProperty": "MarkerOutlineBrightnessProperty", + "MarkerOutlineUsesFillScale": "MarkerOutlineUsesFillScale", + "MarkerOutlineUsesFillScaleProperty": "MarkerOutlineUsesFillScaleProperty", + "RadiusMemberAsLegendLabel": "RadiusMemberAsLegendLabel", + "RadiusMemberAsLegendLabelProperty": "RadiusMemberAsLegendLabelProperty", + "RadiusMemberAsLegendUnit": "RadiusMemberAsLegendUnit", + "RadiusMemberAsLegendUnitProperty": "RadiusMemberAsLegendUnitProperty", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusMemberPathProperty": "RadiusMemberPathProperty", + "RadiusScale": "RadiusScale", + "RadiusScaleProperty": "RadiusScaleProperty", + "RadiusScaleUseGlobalValues": "RadiusScaleUseGlobalValues", + "RadiusScaleUseGlobalValuesProperty": "RadiusScaleUseGlobalValuesProperty" + } + } + ], + "BubbleSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BubbleSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "BubbleSeriesDescription()": "BubbleSeriesDescription()", + "BubbleSeriesDescription": "BubbleSeriesDescription()", + "FillMemberAsLegendLabel": "FillMemberAsLegendLabel", + "FillMemberAsLegendUnit": "FillMemberAsLegendUnit", + "FillMemberPath": "FillMemberPath", + "FillScale": "FillScale", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "LabelMemberPath": "LabelMemberPath", + "MarkerBrushBrightness": "MarkerBrushBrightness", + "MarkerOutlineBrightness": "MarkerOutlineBrightness", + "MarkerOutlineUsesFillScale": "MarkerOutlineUsesFillScale", + "RadiusMemberAsLegendLabel": "RadiusMemberAsLegendLabel", + "RadiusMemberAsLegendUnit": "RadiusMemberAsLegendUnit", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusScale": "RadiusScale", + "RadiusScaleUseGlobalValues": "RadiusScaleUseGlobalValues", + "Type": "Type" + } + } + ], + "BubbleSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BubbleSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BubbleSeriesDescriptionMetadata()": "BubbleSeriesDescriptionMetadata()", + "BubbleSeriesDescriptionMetadata": "BubbleSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BubbleSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BubbleSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BubbleSeriesDescriptionModule()": "BubbleSeriesDescriptionModule()", + "BubbleSeriesDescriptionModule": "BubbleSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BulletGraphCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BulletGraphCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BulletGraphCoreDescriptionModule()": "BulletGraphCoreDescriptionModule()", + "BulletGraphCoreDescriptionModule": "BulletGraphCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BulletGraphDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BulletGraphDescription", + "k": "class", + "s": "classes", + "m": { + "BulletGraphDescription()": "BulletGraphDescription()", + "BulletGraphDescription": "BulletGraphDescription()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AlignLabelRef": "AlignLabelRef", + "Background": "Background", + "BackingBrush": "BackingBrush", + "BackingInnerExtent": "BackingInnerExtent", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOutline": "BackingOutline", + "BackingStrokeThickness": "BackingStrokeThickness", + "Font": "Font", + "FontBrush": "FontBrush", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "Height": "Height", + "HighlightValue": "HighlightValue", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueOpacity": "HighlightValueOpacity", + "Interval": "Interval", + "IsScaleInverted": "IsScaleInverted", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInterval": "LabelInterval", + "LabelsPostInitial": "LabelsPostInitial", + "LabelsPreTerminal": "LabelsPreTerminal", + "LabelsVisible": "LabelsVisible", + "MaximumValue": "MaximumValue", + "MergeViewports": "MergeViewports", + "MinimumValue": "MinimumValue", + "MinorTickBrush": "MinorTickBrush", + "MinorTickCount": "MinorTickCount", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "Orientation": "Orientation", + "PixelScalingRatio": "PixelScalingRatio", + "RangeBrushes": "RangeBrushes", + "RangeInnerExtent": "RangeInnerExtent", + "RangeOuterExtent": "RangeOuterExtent", + "RangeOutlines": "RangeOutlines", + "Ranges": "Ranges", + "ScaleBackgroundBrush": "ScaleBackgroundBrush", + "ScaleBackgroundOutline": "ScaleBackgroundOutline", + "ScaleBackgroundThickness": "ScaleBackgroundThickness", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleStartExtent": "ScaleStartExtent", + "ShowToolTip": "ShowToolTip", + "ShowToolTipTimeout": "ShowToolTipTimeout", + "TargetValue": "TargetValue", + "TargetValueBreadth": "TargetValueBreadth", + "TargetValueBrush": "TargetValueBrush", + "TargetValueInnerExtent": "TargetValueInnerExtent", + "TargetValueName": "TargetValueName", + "TargetValueOuterExtent": "TargetValueOuterExtent", + "TargetValueOutline": "TargetValueOutline", + "TargetValueStrokeThickness": "TargetValueStrokeThickness", + "TickBrush": "TickBrush", + "TickEndExtent": "TickEndExtent", + "TickStartExtent": "TickStartExtent", + "TickStrokeThickness": "TickStrokeThickness", + "TicksPostInitial": "TicksPostInitial", + "TicksPreTerminal": "TicksPreTerminal", + "TransitionDuration": "TransitionDuration", + "TransitionProgress": "TransitionProgress", + "Type": "Type", + "Value": "Value", + "ValueBrush": "ValueBrush", + "ValueInnerExtent": "ValueInnerExtent", + "ValueName": "ValueName", + "ValueOuterExtent": "ValueOuterExtent", + "ValueOutline": "ValueOutline", + "ValueStrokeThickness": "ValueStrokeThickness", + "Width": "Width" + } + } + ], + "BulletGraphDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BulletGraphDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "BulletGraphDescriptionMetadata()": "BulletGraphDescriptionMetadata()", + "BulletGraphDescriptionMetadata": "BulletGraphDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BulletGraphDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/BulletGraphDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "BulletGraphDescriptionModule()": "BulletGraphDescriptionModule()", + "BulletGraphDescriptionModule": "BulletGraphDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "BulletGraphTargetValueVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/BulletGraphTargetValueVisualData", + "k": "class", + "s": "classes", + "m": { + "BulletGraphTargetValueVisualData()": "BulletGraphTargetValueVisualData()", + "BulletGraphTargetValueVisualData": "BulletGraphTargetValueVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type", + "Value": "Value" + } + } + ], + "BulletGraphVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/BulletGraphVisualData", + "k": "class", + "s": "classes", + "m": { + "BulletGraphVisualData()": "BulletGraphVisualData()", + "BulletGraphVisualData": "BulletGraphVisualData()", + "HighlightValue": "HighlightValue", + "HighlightValuePath": "HighlightValuePath", + "ScaleBackgroundPath": "ScaleBackgroundPath", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TargetValue": "TargetValue", + "TargetValuePath": "TargetValuePath", + "Value": "Value", + "ValuePath": "ValuePath" + } + } + ], + "ButtonClickEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ButtonClickEventArgs", + "k": "class", + "s": "classes", + "m": { + "ButtonClickEventArgs()": "ButtonClickEventArgs()", + "ButtonClickEventArgs": "ButtonClickEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ButtonClickEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ButtonClickEventArgsDescription()": "ButtonClickEventArgsDescription()", + "ButtonClickEventArgsDescription": "ButtonClickEventArgsDescription()", + "Type": "Type" + } + } + ], + "ButtonClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ButtonClickEventArgsDescriptionMetadata()": "ButtonClickEventArgsDescriptionMetadata()", + "ButtonClickEventArgsDescriptionMetadata": "ButtonClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonDescription", + "k": "class", + "s": "classes", + "m": { + "ButtonDescription()": "ButtonDescription()", + "ButtonDescription": "ButtonDescription()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualDensity": "ActualDensity", + "ActualDisableRipple": "ActualDisableRipple", + "ActualDisabledBackgroundColor": "ActualDisabledBackgroundColor", + "ActualDisabledBorderColor": "ActualDisabledBorderColor", + "ActualDisabledElevation": "ActualDisabledElevation", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualElevationMode": "ActualElevationMode", + "ActualFocusBackgroundColor": "ActualFocusBackgroundColor", + "ActualFocusElevation": "ActualFocusElevation", + "ActualFocusTextColor": "ActualFocusTextColor", + "ActualHoverBackgroundColor": "ActualHoverBackgroundColor", + "ActualHoverElevation": "ActualHoverElevation", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualRestingElevation": "ActualRestingElevation", + "ActualRippleColor": "ActualRippleColor", + "ActualTextColor": "ActualTextColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "AlignItems": "AlignItems", + "AriaLabel": "AriaLabel", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderColor": "BorderColor", + "BorderWidth": "BorderWidth", + "ClickTunneling": "ClickTunneling", + "ClickedRef": "ClickedRef", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "Density": "Density", + "DisableHover": "DisableHover", + "DisablePointer": "DisablePointer", + "DisableRipple": "DisableRipple", + "DisableTransitions": "DisableTransitions", + "Disabled": "Disabled", + "DisabledBackgroundColor": "DisabledBackgroundColor", + "DisabledBorderColor": "DisabledBorderColor", + "DisabledElevation": "DisabledElevation", + "DisabledTextColor": "DisabledTextColor", + "Display": "Display", + "DisplayType": "DisplayType", + "ElevationMode": "ElevationMode", + "FabBackgroundColor": "FabBackgroundColor", + "FabBorderColor": "FabBorderColor", + "FabBorderWidth": "FabBorderWidth", + "FabCornerRadiusBottomLeft": "FabCornerRadiusBottomLeft", + "FabCornerRadiusBottomRight": "FabCornerRadiusBottomRight", + "FabCornerRadiusTopLeft": "FabCornerRadiusTopLeft", + "FabCornerRadiusTopRight": "FabCornerRadiusTopRight", + "FabDisabledBackgroundColor": "FabDisabledBackgroundColor", + "FabDisabledBorderColor": "FabDisabledBorderColor", + "FabDisabledElevation": "FabDisabledElevation", + "FabDisabledTextColor": "FabDisabledTextColor", + "FabFocusBackgroundColor": "FabFocusBackgroundColor", + "FabFocusElevation": "FabFocusElevation", + "FabFocusTextColor": "FabFocusTextColor", + "FabHoverBackgroundColor": "FabHoverBackgroundColor", + "FabHoverElevation": "FabHoverElevation", + "FabHoverTextColor": "FabHoverTextColor", + "FabRestingElevation": "FabRestingElevation", + "FabRippleColor": "FabRippleColor", + "FabTextColor": "FabTextColor", + "FillAvailableSpace": "FillAvailableSpace", + "FlatBackgroundColor": "FlatBackgroundColor", + "FlatBorderColor": "FlatBorderColor", + "FlatBorderWidth": "FlatBorderWidth", + "FlatCornerRadiusBottomLeft": "FlatCornerRadiusBottomLeft", + "FlatCornerRadiusBottomRight": "FlatCornerRadiusBottomRight", + "FlatCornerRadiusTopLeft": "FlatCornerRadiusTopLeft", + "FlatCornerRadiusTopRight": "FlatCornerRadiusTopRight", + "FlatDisabledBackgroundColor": "FlatDisabledBackgroundColor", + "FlatDisabledBorderColor": "FlatDisabledBorderColor", + "FlatDisabledElevation": "FlatDisabledElevation", + "FlatDisabledTextColor": "FlatDisabledTextColor", + "FlatFocusBackgroundColor": "FlatFocusBackgroundColor", + "FlatFocusElevation": "FlatFocusElevation", + "FlatFocusTextColor": "FlatFocusTextColor", + "FlatHoverBackgroundColor": "FlatHoverBackgroundColor", + "FlatHoverElevation": "FlatHoverElevation", + "FlatHoverTextColor": "FlatHoverTextColor", + "FlatRestingElevation": "FlatRestingElevation", + "FlatRippleColor": "FlatRippleColor", + "FlatTextColor": "FlatTextColor", + "FlexDirection": "FlexDirection", + "FlexGrow": "FlexGrow", + "FocusBackgroundColor": "FocusBackgroundColor", + "FocusElevation": "FocusElevation", + "FocusTextColor": "FocusTextColor", + "Focused": "Focused", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "GotFocusRef": "GotFocusRef", + "HorizontalContentAlignment": "HorizontalContentAlignment", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverElevation": "HoverElevation", + "HoverTextColor": "HoverTextColor", + "IconBackgroundColor": "IconBackgroundColor", + "IconBorderColor": "IconBorderColor", + "IconBorderWidth": "IconBorderWidth", + "IconCornerRadiusBottomLeft": "IconCornerRadiusBottomLeft", + "IconCornerRadiusBottomRight": "IconCornerRadiusBottomRight", + "IconCornerRadiusTopLeft": "IconCornerRadiusTopLeft", + "IconCornerRadiusTopRight": "IconCornerRadiusTopRight", + "IconDisabledBackgroundColor": "IconDisabledBackgroundColor", + "IconDisabledBorderColor": "IconDisabledBorderColor", + "IconDisabledElevation": "IconDisabledElevation", + "IconDisabledTextColor": "IconDisabledTextColor", + "IconFocusBackgroundColor": "IconFocusBackgroundColor", + "IconFocusElevation": "IconFocusElevation", + "IconFocusTextColor": "IconFocusTextColor", + "IconHoverBackgroundColor": "IconHoverBackgroundColor", + "IconHoverElevation": "IconHoverElevation", + "IconHoverTextColor": "IconHoverTextColor", + "IconRestingElevation": "IconRestingElevation", + "IconRippleColor": "IconRippleColor", + "IconTextColor": "IconTextColor", + "Id": "Id", + "InputId": "InputId", + "IsFocusStyleEnabled": "IsFocusStyleEnabled", + "IsHover": "IsHover", + "LostFocusRef": "LostFocusRef", + "MinHeight": "MinHeight", + "MinWidth": "MinWidth", + "OutlinedBackgroundColor": "OutlinedBackgroundColor", + "OutlinedBorderColor": "OutlinedBorderColor", + "OutlinedBorderWidth": "OutlinedBorderWidth", + "OutlinedCornerRadiusBottomLeft": "OutlinedCornerRadiusBottomLeft", + "OutlinedCornerRadiusBottomRight": "OutlinedCornerRadiusBottomRight", + "OutlinedCornerRadiusTopLeft": "OutlinedCornerRadiusTopLeft", + "OutlinedCornerRadiusTopRight": "OutlinedCornerRadiusTopRight", + "OutlinedDisabledBackgroundColor": "OutlinedDisabledBackgroundColor", + "OutlinedDisabledBorderColor": "OutlinedDisabledBorderColor", + "OutlinedDisabledElevation": "OutlinedDisabledElevation", + "OutlinedDisabledTextColor": "OutlinedDisabledTextColor", + "OutlinedFocusBackgroundColor": "OutlinedFocusBackgroundColor", + "OutlinedFocusElevation": "OutlinedFocusElevation", + "OutlinedFocusTextColor": "OutlinedFocusTextColor", + "OutlinedHoverBackgroundColor": "OutlinedHoverBackgroundColor", + "OutlinedHoverElevation": "OutlinedHoverElevation", + "OutlinedHoverTextColor": "OutlinedHoverTextColor", + "OutlinedRestingElevation": "OutlinedRestingElevation", + "OutlinedRippleColor": "OutlinedRippleColor", + "OutlinedTextColor": "OutlinedTextColor", + "RaisedBackgroundColor": "RaisedBackgroundColor", + "RaisedBorderColor": "RaisedBorderColor", + "RaisedBorderWidth": "RaisedBorderWidth", + "RaisedCornerRadiusBottomLeft": "RaisedCornerRadiusBottomLeft", + "RaisedCornerRadiusBottomRight": "RaisedCornerRadiusBottomRight", + "RaisedCornerRadiusTopLeft": "RaisedCornerRadiusTopLeft", + "RaisedCornerRadiusTopRight": "RaisedCornerRadiusTopRight", + "RaisedDisabledBackgroundColor": "RaisedDisabledBackgroundColor", + "RaisedDisabledBorderColor": "RaisedDisabledBorderColor", + "RaisedDisabledElevation": "RaisedDisabledElevation", + "RaisedDisabledTextColor": "RaisedDisabledTextColor", + "RaisedFocusBackgroundColor": "RaisedFocusBackgroundColor", + "RaisedFocusElevation": "RaisedFocusElevation", + "RaisedFocusTextColor": "RaisedFocusTextColor", + "RaisedHoverBackgroundColor": "RaisedHoverBackgroundColor", + "RaisedHoverElevation": "RaisedHoverElevation", + "RaisedHoverTextColor": "RaisedHoverTextColor", + "RaisedRestingElevation": "RaisedRestingElevation", + "RaisedRippleColor": "RaisedRippleColor", + "RaisedTextColor": "RaisedTextColor", + "RestingElevation": "RestingElevation", + "RippleColor": "RippleColor", + "StopPropagation": "StopPropagation", + "TabIndex": "TabIndex", + "TextColor": "TextColor", + "Type": "Type", + "ValueRef": "ValueRef", + "VerticalContentAlignment": "VerticalContentAlignment" + } + } + ], + "ButtonDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ButtonDescriptionMetadata()": "ButtonDescriptionMetadata()", + "ButtonDescriptionMetadata": "ButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ButtonDescriptionModule()": "ButtonDescriptionModule()", + "ButtonDescriptionModule": "ButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonDisplayStyle": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/ButtonDisplayStyle", + "k": "enum", + "s": "enums" + } + ], + "ButtonGroupButtonCollection": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ButtonGroupButtonCollection", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupButtonCollection()": "ButtonGroupButtonCollection()", + "ButtonGroupButtonCollection": "ButtonGroupButtonCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ButtonGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupDescription()": "ButtonGroupDescription()", + "ButtonGroupDescription": "ButtonGroupDescription()", + "ActualDensity": "ActualDensity", + "ActualItemBackgroundColor": "ActualItemBackgroundColor", + "ActualItemBorderColor": "ActualItemBorderColor", + "ActualItemBorderWidth": "ActualItemBorderWidth", + "ActualItemCornerRadius": "ActualItemCornerRadius", + "ActualItemDisabledBackgroundColor": "ActualItemDisabledBackgroundColor", + "ActualItemDisabledBorderColor": "ActualItemDisabledBorderColor", + "ActualItemDisabledTextColor": "ActualItemDisabledTextColor", + "ActualItemHoverBackgroundColor": "ActualItemHoverBackgroundColor", + "ActualItemHoverTextColor": "ActualItemHoverTextColor", + "ActualItemTextColor": "ActualItemTextColor", + "ActualSelectedItemBackgroundColor": "ActualSelectedItemBackgroundColor", + "ActualSelectedItemHoverBackgroundColor": "ActualSelectedItemHoverBackgroundColor", + "ActualSelectedItemHoverTextColor": "ActualSelectedItemHoverTextColor", + "ActualSelectedItemTextColor": "ActualSelectedItemTextColor", + "BaseTheme": "BaseTheme", + "Buttons": "Buttons", + "Density": "Density", + "Disabled": "Disabled", + "DisplayType": "DisplayType", + "FlatItemBackgroundColor": "FlatItemBackgroundColor", + "FlatItemBorderColor": "FlatItemBorderColor", + "FlatItemBorderWidth": "FlatItemBorderWidth", + "FlatItemCornerRadius": "FlatItemCornerRadius", + "FlatItemDisabledBackgroundColor": "FlatItemDisabledBackgroundColor", + "FlatItemDisabledBorderColor": "FlatItemDisabledBorderColor", + "FlatItemDisabledTextColor": "FlatItemDisabledTextColor", + "FlatItemHoverBackgroundColor": "FlatItemHoverBackgroundColor", + "FlatItemHoverTextColor": "FlatItemHoverTextColor", + "FlatItemTextColor": "FlatItemTextColor", + "FlatSelectedItemBackgroundColor": "FlatSelectedItemBackgroundColor", + "FlatSelectedItemHoverBackgroundColor": "FlatSelectedItemHoverBackgroundColor", + "FlatSelectedItemHoverTextColor": "FlatSelectedItemHoverTextColor", + "FlatSelectedItemTextColor": "FlatSelectedItemTextColor", + "Id": "Id", + "IsMultiSelect": "IsMultiSelect", + "ItemBackgroundColor": "ItemBackgroundColor", + "ItemBorderColor": "ItemBorderColor", + "ItemBorderWidth": "ItemBorderWidth", + "ItemCornerRadius": "ItemCornerRadius", + "ItemDisabledBackgroundColor": "ItemDisabledBackgroundColor", + "ItemDisabledBorderColor": "ItemDisabledBorderColor", + "ItemDisabledTextColor": "ItemDisabledTextColor", + "ItemHoverBackgroundColor": "ItemHoverBackgroundColor", + "ItemHoverTextColor": "ItemHoverTextColor", + "ItemTextColor": "ItemTextColor", + "Orientation": "Orientation", + "OutlinedItemBackgroundColor": "OutlinedItemBackgroundColor", + "OutlinedItemBorderColor": "OutlinedItemBorderColor", + "OutlinedItemBorderWidth": "OutlinedItemBorderWidth", + "OutlinedItemCornerRadius": "OutlinedItemCornerRadius", + "OutlinedItemDisabledBackgroundColor": "OutlinedItemDisabledBackgroundColor", + "OutlinedItemDisabledBorderColor": "OutlinedItemDisabledBorderColor", + "OutlinedItemDisabledTextColor": "OutlinedItemDisabledTextColor", + "OutlinedItemHoverBackgroundColor": "OutlinedItemHoverBackgroundColor", + "OutlinedItemHoverTextColor": "OutlinedItemHoverTextColor", + "OutlinedItemTextColor": "OutlinedItemTextColor", + "OutlinedSelectedItemBackgroundColor": "OutlinedSelectedItemBackgroundColor", + "OutlinedSelectedItemHoverBackgroundColor": "OutlinedSelectedItemHoverBackgroundColor", + "OutlinedSelectedItemHoverTextColor": "OutlinedSelectedItemHoverTextColor", + "OutlinedSelectedItemTextColor": "OutlinedSelectedItemTextColor", + "SelectedIndices": "SelectedIndices", + "SelectedItemBackgroundColor": "SelectedItemBackgroundColor", + "SelectedItemHoverBackgroundColor": "SelectedItemHoverBackgroundColor", + "SelectedItemHoverTextColor": "SelectedItemHoverTextColor", + "SelectedItemTextColor": "SelectedItemTextColor", + "SelectionChangedRef": "SelectionChangedRef", + "Type": "Type" + } + } + ], + "ButtonGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupDescriptionMetadata()": "ButtonGroupDescriptionMetadata()", + "ButtonGroupDescriptionMetadata": "ButtonGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupDescriptionModule()": "ButtonGroupDescriptionModule()", + "ButtonGroupDescriptionModule": "ButtonGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonGroupDisplayStyle": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/ButtonGroupDisplayStyle", + "k": "enum", + "s": "enums" + } + ], + "ButtonGroupOrientation": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/ButtonGroupOrientation", + "k": "enum", + "s": "enums" + } + ], + "ButtonGroupSelectionChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ButtonGroupSelectionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupSelectionChangedEventArgs()": "ButtonGroupSelectionChangedEventArgs()", + "ButtonGroupSelectionChangedEventArgs": "ButtonGroupSelectionChangedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ButtonGroupSelectionChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonGroupSelectionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupSelectionChangedEventArgsDescription()": "ButtonGroupSelectionChangedEventArgsDescription()", + "ButtonGroupSelectionChangedEventArgsDescription": "ButtonGroupSelectionChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ButtonGroupSelectionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ButtonGroupSelectionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupSelectionChangedEventArgsDescriptionMetadata()": "ButtonGroupSelectionChangedEventArgsDescriptionMetadata()", + "ButtonGroupSelectionChangedEventArgsDescriptionMetadata": "ButtonGroupSelectionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ButtonGroupVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ButtonGroupVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "ButtonGroupVisualModelExport()": "ButtonGroupVisualModelExport()", + "ButtonGroupVisualModelExport": "ButtonGroupVisualModelExport()", + "ActualItemBackgroundColor": "ActualItemBackgroundColor", + "ActualItemBorderColor": "ActualItemBorderColor", + "ActualItemBorderWidth": "ActualItemBorderWidth", + "ActualItemCornerRadius": "ActualItemCornerRadius", + "ActualItemTextColor": "ActualItemTextColor", + "ButtonsModels": "ButtonsModels", + "Height": "Height", + "IsDisabled": "IsDisabled", + "IsMultiSelect": "IsMultiSelect", + "Left": "Left", + "SelectedIndices": "SelectedIndices", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Width": "Width" + } + } + ], + "ButtonVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ButtonVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "ButtonVisualModelExport()": "ButtonVisualModelExport()", + "ButtonVisualModelExport": "ButtonVisualModelExport()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualDisableRipple": "ActualDisableRipple", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualRestingElevation": "ActualRestingElevation", + "ActualRippleColor": "ActualRippleColor", + "ActualTextColor": "ActualTextColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "AlignItems": "AlignItems", + "Display": "Display", + "FlexDirection": "FlexDirection", + "FlexGrow": "FlexGrow", + "Height": "Height", + "IsDisabled": "IsDisabled", + "IsFocused": "IsFocused", + "IsHover": "IsHover", + "Left": "Left", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "CalculatedColumn": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalculatedColumn", + "k": "class", + "s": "classes", + "m": { + "CalculatedColumn(IEnumerable, IList)": "CalculatedColumn(IEnumerable, IList)", + "CalculatedColumn": "CalculatedColumn(IEnumerable, IList)", + "CalculatedColumn(IEnumerable, params string[])": "CalculatedColumn(IEnumerable, params string[])", + "BasedOn": "BasedOn", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()" + } + } + ], + "CalculatedColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalculatedColumnDescription", + "k": "class", + "s": "classes", + "m": { + "CalculatedColumnDescription()": "CalculatedColumnDescription()", + "CalculatedColumnDescription": "CalculatedColumnDescription()", + "Type": "Type" + } + } + ], + "CalculatedColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalculatedColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalculatedColumnDescriptionMetadata()": "CalculatedColumnDescriptionMetadata()", + "CalculatedColumnDescriptionMetadata": "CalculatedColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalendarDateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalendarDateDescription", + "k": "class", + "s": "classes", + "m": { + "CalendarDateDescription()": "CalendarDateDescription()", + "CalendarDateDescription": "CalendarDateDescription()", + "Date": "Date", + "IsCurrentMonth": "IsCurrentMonth", + "IsNextMonth": "IsNextMonth", + "IsPrevMonth": "IsPrevMonth", + "Type": "Type" + } + } + ], + "CalendarDateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalendarDateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalendarDateDescriptionMetadata()": "CalendarDateDescriptionMetadata()", + "CalendarDateDescriptionMetadata": "CalendarDateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalendarDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalendarDescription", + "k": "class", + "s": "classes", + "m": { + "CalendarDescription()": "CalendarDescription()", + "CalendarDescription": "CalendarDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CurrentDateBorderColor": "CurrentDateBorderColor", + "CurrentDateTextColor": "CurrentDateTextColor", + "Density": "Density", + "FirstDayOfWeek": "FirstDayOfWeek", + "FirstWeekOfYear": "FirstWeekOfYear", + "FocusDateBackgroundColor": "FocusDateBackgroundColor", + "FocusDateTextColor": "FocusDateTextColor", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HoverBackgroundColor": "HoverBackgroundColor", + "MaxDate": "MaxDate", + "MinDate": "MinDate", + "SelectedDateBackgroundColor": "SelectedDateBackgroundColor", + "SelectedDateTextColor": "SelectedDateTextColor", + "SelectedFocusDateBackgroundColor": "SelectedFocusDateBackgroundColor", + "SelectedValueChangedRef": "SelectedValueChangedRef", + "ShowTodayButton": "ShowTodayButton", + "ShowWeekNumbers": "ShowWeekNumbers", + "TextColor": "TextColor", + "Today": "Today", + "Type": "Type", + "Value": "Value", + "ValueChangeRef": "ValueChangeRef" + } + } + ], + "CalendarDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalendarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalendarDescriptionMetadata()": "CalendarDescriptionMetadata()", + "CalendarDescriptionMetadata": "CalendarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalendarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalendarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CalendarDescriptionModule()": "CalendarDescriptionModule()", + "CalendarDescriptionModule": "CalendarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalendarFormatOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalendarFormatOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "CalendarFormatOptionsDescription()": "CalendarFormatOptionsDescription()", + "CalendarFormatOptionsDescription": "CalendarFormatOptionsDescription()", + "Month": "Month", + "Type": "Type", + "Weekday": "Weekday" + } + } + ], + "CalendarFormatOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalendarFormatOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalendarFormatOptionsDescriptionMetadata()": "CalendarFormatOptionsDescriptionMetadata()", + "CalendarFormatOptionsDescriptionMetadata": "CalendarFormatOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutAnnotation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutAnnotation", + "k": "class", + "s": "classes", + "m": { + "CalloutAnnotation()": "CalloutAnnotation()", + "CalloutAnnotation": "CalloutAnnotation()", + "Background": "Background", + "BackgroundCornerRadius": "BackgroundCornerRadius", + "BackgroundPaddingBottom": "BackgroundPaddingBottom", + "BackgroundPaddingLeft": "BackgroundPaddingLeft", + "BackgroundPaddingRight": "BackgroundPaddingRight", + "BackgroundPaddingTop": "BackgroundPaddingTop", + "BadgeBackground": "BadgeBackground", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "Content": "Content", + "ItemColor": "ItemColor", + "Key": "Key", + "LeaderBrush": "LeaderBrush", + "OnFormatLabel(AxisFormatLabelEventArgs)": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(AxisFormatLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "Text": "Text", + "TextColor": "TextColor", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutAnnotationCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutAnnotationCollection", + "k": "class", + "s": "classes", + "m": { + "CalloutAnnotationCollection()": "CalloutAnnotationCollection()", + "CalloutAnnotationCollection": "CalloutAnnotationCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutAnnotationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutAnnotationDescription()": "CalloutAnnotationDescription()", + "CalloutAnnotationDescription": "CalloutAnnotationDescription()", + "Background": "Background", + "BackgroundCornerRadius": "BackgroundCornerRadius", + "BackgroundPaddingBottom": "BackgroundPaddingBottom", + "BackgroundPaddingLeft": "BackgroundPaddingLeft", + "BackgroundPaddingRight": "BackgroundPaddingRight", + "BackgroundPaddingTop": "BackgroundPaddingTop", + "BadgeBackground": "BadgeBackground", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "ContentRef": "ContentRef", + "FormatLabelRef": "FormatLabelRef", + "ItemColor": "ItemColor", + "KeyRef": "KeyRef", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "Text": "Text", + "TextColor": "TextColor", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutAnnotationDescriptionMetadata()": "CalloutAnnotationDescriptionMetadata()", + "CalloutAnnotationDescriptionMetadata": "CalloutAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutBadgeInfo": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutBadgeInfo", + "k": "class", + "s": "classes", + "m": { + "CalloutBadgeInfo()": "CalloutBadgeInfo()", + "CalloutBadgeInfo": "CalloutBadgeInfo()", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutBadgeInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutBadgeInfoDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutBadgeInfoDescription()": "CalloutBadgeInfoDescription()", + "CalloutBadgeInfoDescription": "CalloutBadgeInfoDescription()", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "Type": "Type" + } + } + ], + "CalloutBadgeInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutBadgeInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutBadgeInfoDescriptionMetadata()": "CalloutBadgeInfoDescriptionMetadata()", + "CalloutBadgeInfoDescriptionMetadata": "CalloutBadgeInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutCollisionMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/CalloutCollisionMode", + "k": "enum", + "s": "enums" + } + ], + "CalloutContentUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutContentUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutContentUpdatingEventArgs()": "CalloutContentUpdatingEventArgs()", + "CalloutContentUpdatingEventArgs": "CalloutContentUpdatingEventArgs()", + "Content": "Content", + "Item": "Item", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutContentUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutContentUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutContentUpdatingEventArgsDescription()": "CalloutContentUpdatingEventArgsDescription()", + "CalloutContentUpdatingEventArgsDescription": "CalloutContentUpdatingEventArgsDescription()", + "ContentRef": "ContentRef", + "ItemRef": "ItemRef", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutContentUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutContentUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutContentUpdatingEventArgsDescriptionMetadata()": "CalloutContentUpdatingEventArgsDescriptionMetadata()", + "CalloutContentUpdatingEventArgsDescriptionMetadata": "CalloutContentUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutLabelUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutLabelUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutLabelUpdatingEventArgs()": "CalloutLabelUpdatingEventArgs()", + "CalloutLabelUpdatingEventArgs": "CalloutLabelUpdatingEventArgs()", + "Item": "Item", + "Label": "Label", + "Series": "Series", + "SeriesName": "SeriesName", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutLabelUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutLabelUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutLabelUpdatingEventArgsDescription()": "CalloutLabelUpdatingEventArgsDescription()", + "CalloutLabelUpdatingEventArgsDescription": "CalloutLabelUpdatingEventArgsDescription()", + "ItemRef": "ItemRef", + "LabelRef": "LabelRef", + "Series": "Series", + "SeriesName": "SeriesName", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutLabelUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutLabelUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutLabelUpdatingEventArgsDescriptionMetadata()": "CalloutLabelUpdatingEventArgsDescriptionMetadata()", + "CalloutLabelUpdatingEventArgsDescriptionMetadata": "CalloutLabelUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutLayer", + "k": "class", + "s": "classes", + "m": { + "CalloutLayer()": "CalloutLayer()", + "CalloutLayer": "CalloutLayer()", + "AllowedPositions": "AllowedPositions", + "AllowedPositionsProperty": "AllowedPositionsProperty", + "AutoCalloutLabelPrecision": "AutoCalloutLabelPrecision", + "AutoCalloutLabelPrecisionProperty": "AutoCalloutLabelPrecisionProperty", + "AutoCalloutVisibilityMode": "AutoCalloutVisibilityMode", + "AutoCalloutVisibilityModeProperty": "AutoCalloutVisibilityModeProperty", + "CalloutBackground": "CalloutBackground", + "CalloutBackgroundProperty": "CalloutBackgroundProperty", + "CalloutBadgeBackground": "CalloutBadgeBackground", + "CalloutBadgeBackgroundProperty": "CalloutBadgeBackgroundProperty", + "CalloutBadgeCorner": "CalloutBadgeCorner", + "CalloutBadgeCornerProperty": "CalloutBadgeCornerProperty", + "CalloutBadgeGap": "CalloutBadgeGap", + "CalloutBadgeGapProperty": "CalloutBadgeGapProperty", + "CalloutBadgeHeight": "CalloutBadgeHeight", + "CalloutBadgeHeightProperty": "CalloutBadgeHeightProperty", + "CalloutBadgeImageMemberPath": "CalloutBadgeImageMemberPath", + "CalloutBadgeImageMemberPathProperty": "CalloutBadgeImageMemberPathProperty", + "CalloutBadgeMatchSeries": "CalloutBadgeMatchSeries", + "CalloutBadgeMatchSeriesProperty": "CalloutBadgeMatchSeriesProperty", + "CalloutBadgeOutline": "CalloutBadgeOutline", + "CalloutBadgeOutlineProperty": "CalloutBadgeOutlineProperty", + "CalloutBadgeThickness": "CalloutBadgeThickness", + "CalloutBadgeThicknessProperty": "CalloutBadgeThicknessProperty", + "CalloutBadgeVisible": "CalloutBadgeVisible", + "CalloutBadgeVisibleProperty": "CalloutBadgeVisibleProperty", + "CalloutBadgeWidth": "CalloutBadgeWidth", + "CalloutBadgeWidthProperty": "CalloutBadgeWidthProperty", + "CalloutCollisionMode": "CalloutCollisionMode", + "CalloutCollisionModeProperty": "CalloutCollisionModeProperty", + "CalloutCornerRadius": "CalloutCornerRadius", + "CalloutCornerRadiusProperty": "CalloutCornerRadiusProperty", + "CalloutDarkTextColor": "CalloutDarkTextColor", + "CalloutDarkTextColorProperty": "CalloutDarkTextColorProperty", + "CalloutExpandsAxisBufferEnabled": "CalloutExpandsAxisBufferEnabled", + "CalloutExpandsAxisBufferEnabledProperty": "CalloutExpandsAxisBufferEnabledProperty", + "CalloutExpandsAxisBufferMaxHeight": "CalloutExpandsAxisBufferMaxHeight", + "CalloutExpandsAxisBufferMaxHeightProperty": "CalloutExpandsAxisBufferMaxHeightProperty", + "CalloutExpandsAxisBufferMaxWidth": "CalloutExpandsAxisBufferMaxWidth", + "CalloutExpandsAxisBufferMaxWidthProperty": "CalloutExpandsAxisBufferMaxWidthProperty", + "CalloutExpandsAxisBufferMinHeight": "CalloutExpandsAxisBufferMinHeight", + "CalloutExpandsAxisBufferMinHeightProperty": "CalloutExpandsAxisBufferMinHeightProperty", + "CalloutExpandsAxisBufferMinWidth": "CalloutExpandsAxisBufferMinWidth", + "CalloutExpandsAxisBufferMinWidthProperty": "CalloutExpandsAxisBufferMinWidthProperty", + "CalloutExpandsAxisBufferOnInitialVisibility": "CalloutExpandsAxisBufferOnInitialVisibility", + "CalloutExpandsAxisBufferOnInitialVisibilityProperty": "CalloutExpandsAxisBufferOnInitialVisibilityProperty", + "CalloutExpandsAxisBufferOnlyWhenVisible": "CalloutExpandsAxisBufferOnlyWhenVisible", + "CalloutExpandsAxisBufferOnlyWhenVisibleProperty": "CalloutExpandsAxisBufferOnlyWhenVisibleProperty", + "CalloutInterpolatedValuePrecision": "CalloutInterpolatedValuePrecision", + "CalloutInterpolatedValuePrecisionProperty": "CalloutInterpolatedValuePrecisionProperty", + "CalloutLeaderBrush": "CalloutLeaderBrush", + "CalloutLeaderBrushProperty": "CalloutLeaderBrushProperty", + "CalloutLightTextColor": "CalloutLightTextColor", + "CalloutLightTextColorProperty": "CalloutLightTextColorProperty", + "CalloutOutline": "CalloutOutline", + "CalloutOutlineProperty": "CalloutOutlineProperty", + "CalloutPaddingBottom": "CalloutPaddingBottom", + "CalloutPaddingBottomProperty": "CalloutPaddingBottomProperty", + "CalloutPaddingLeft": "CalloutPaddingLeft", + "CalloutPaddingLeftProperty": "CalloutPaddingLeftProperty", + "CalloutPaddingRight": "CalloutPaddingRight", + "CalloutPaddingRightProperty": "CalloutPaddingRightProperty", + "CalloutPaddingTop": "CalloutPaddingTop", + "CalloutPaddingTopProperty": "CalloutPaddingTopProperty", + "CalloutPositionPadding": "CalloutPositionPadding", + "CalloutPositionPaddingProperty": "CalloutPositionPaddingProperty", + "CalloutStrokeThickness": "CalloutStrokeThickness", + "CalloutStrokeThicknessProperty": "CalloutStrokeThicknessProperty", + "CalloutSuspendedWhenShiftingToVisible": "CalloutSuspendedWhenShiftingToVisible", + "CalloutSuspendedWhenShiftingToVisibleProperty": "CalloutSuspendedWhenShiftingToVisibleProperty", + "CalloutTextColor": "CalloutTextColor", + "CalloutTextColorProperty": "CalloutTextColorProperty", + "CollisionChannel": "CollisionChannel", + "CollisionChannelProperty": "CollisionChannelProperty", + "ContentMemberPath": "ContentMemberPath", + "ContentMemberPathProperty": "ContentMemberPathProperty", + "HighlightedValueLabelMode": "HighlightedValueLabelMode", + "HighlightedValueLabelModeProperty": "HighlightedValueLabelModeProperty", + "InvalidateCalloutContent()": "InvalidateCalloutContent()", + "InvalidateCalloutContent": "InvalidateCalloutContent()", + "IsAutoCalloutBehaviorEnabled": "IsAutoCalloutBehaviorEnabled", + "IsAutoCalloutBehaviorEnabledProperty": "IsAutoCalloutBehaviorEnabledProperty", + "IsCalloutOffsettingEnabled": "IsCalloutOffsettingEnabled", + "IsCalloutOffsettingEnabledProperty": "IsCalloutOffsettingEnabledProperty", + "IsCustomCalloutRenderStyleEnabled": "IsCustomCalloutRenderStyleEnabled", + "IsCustomCalloutRenderStyleEnabledProperty": "IsCustomCalloutRenderStyleEnabledProperty", + "IsCustomCalloutStyleEnabled": "IsCustomCalloutStyleEnabled", + "IsCustomCalloutStyleEnabledProperty": "IsCustomCalloutStyleEnabledProperty", + "KeyMemberPath": "KeyMemberPath", + "KeyMemberPathProperty": "KeyMemberPathProperty", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "OnCalloutContentUpdating(CalloutContentUpdatingEventArgs)": "OnCalloutContentUpdating(CalloutContentUpdatingEventArgs)", + "OnCalloutContentUpdating": "OnCalloutContentUpdating(CalloutContentUpdatingEventArgs)", + "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)": "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)", + "OnCalloutLabelUpdating": "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)", + "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)": "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)", + "OnCalloutRenderStyleUpdating": "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)", + "OnCalloutSeriesSelecting(CalloutSeriesSelectingEventArgs)": "OnCalloutSeriesSelecting(CalloutSeriesSelectingEventArgs)", + "OnCalloutSeriesSelecting": "OnCalloutSeriesSelecting(CalloutSeriesSelectingEventArgs)", + "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)": "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)", + "OnCalloutStyleUpdating": "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)", + "RecalculateAxisRangeBuffer()": "RecalculateAxisRangeBuffer()", + "RecalculateAxisRangeBuffer": "RecalculateAxisRangeBuffer()", + "RefreshAxisBufferAndCalloutPositions()": "RefreshAxisBufferAndCalloutPositions()", + "RefreshAxisBufferAndCalloutPositions": "RefreshAxisBufferAndCalloutPositions()", + "RefreshLabelPositions()": "RefreshLabelPositions()", + "RefreshLabelPositions": "RefreshLabelPositions()", + "ShouldTruncateOnBoundaryCollisions": "ShouldTruncateOnBoundaryCollisions", + "ShouldTruncateOnBoundaryCollisionsProperty": "ShouldTruncateOnBoundaryCollisionsProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty", + "UseAutoContrastingLabelColors": "UseAutoContrastingLabelColors", + "UseAutoContrastingLabelColorsProperty": "UseAutoContrastingLabelColorsProperty", + "UseInterpolatedValueForAutoCalloutLabels": "UseInterpolatedValueForAutoCalloutLabels", + "UseInterpolatedValueForAutoCalloutLabelsProperty": "UseInterpolatedValueForAutoCalloutLabelsProperty", + "UseItemColorForFill": "UseItemColorForFill", + "UseItemColorForFillProperty": "UseItemColorForFillProperty", + "UseItemColorForOutline": "UseItemColorForOutline", + "UseItemColorForOutlineProperty": "UseItemColorForOutlineProperty", + "UseSeriesColorForOutline": "UseSeriesColorForOutline", + "UseSeriesColorForOutlineProperty": "UseSeriesColorForOutlineProperty", + "UseValueForAutoCalloutLabels": "UseValueForAutoCalloutLabels", + "UseValueForAutoCalloutLabelsProperty": "UseValueForAutoCalloutLabelsProperty", + "XMemberPath": "XMemberPath", + "XMemberPathProperty": "XMemberPathProperty", + "YMemberPath": "YMemberPath", + "YMemberPathProperty": "YMemberPathProperty" + } + } + ], + "CalloutLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutLayerDescription()": "CalloutLayerDescription()", + "CalloutLayerDescription": "CalloutLayerDescription()", + "AllowedPositions": "AllowedPositions", + "AutoCalloutLabelPrecision": "AutoCalloutLabelPrecision", + "AutoCalloutVisibilityMode": "AutoCalloutVisibilityMode", + "CalloutBackground": "CalloutBackground", + "CalloutBadgeBackground": "CalloutBadgeBackground", + "CalloutBadgeCorner": "CalloutBadgeCorner", + "CalloutBadgeGap": "CalloutBadgeGap", + "CalloutBadgeHeight": "CalloutBadgeHeight", + "CalloutBadgeImageMemberPath": "CalloutBadgeImageMemberPath", + "CalloutBadgeMatchSeries": "CalloutBadgeMatchSeries", + "CalloutBadgeOutline": "CalloutBadgeOutline", + "CalloutBadgeThickness": "CalloutBadgeThickness", + "CalloutBadgeVisible": "CalloutBadgeVisible", + "CalloutBadgeWidth": "CalloutBadgeWidth", + "CalloutCollisionMode": "CalloutCollisionMode", + "CalloutContentUpdatingRef": "CalloutContentUpdatingRef", + "CalloutCornerRadius": "CalloutCornerRadius", + "CalloutDarkTextColor": "CalloutDarkTextColor", + "CalloutExpandsAxisBufferEnabled": "CalloutExpandsAxisBufferEnabled", + "CalloutExpandsAxisBufferMaxHeight": "CalloutExpandsAxisBufferMaxHeight", + "CalloutExpandsAxisBufferMaxWidth": "CalloutExpandsAxisBufferMaxWidth", + "CalloutExpandsAxisBufferMinHeight": "CalloutExpandsAxisBufferMinHeight", + "CalloutExpandsAxisBufferMinWidth": "CalloutExpandsAxisBufferMinWidth", + "CalloutExpandsAxisBufferOnInitialVisibility": "CalloutExpandsAxisBufferOnInitialVisibility", + "CalloutExpandsAxisBufferOnlyWhenVisible": "CalloutExpandsAxisBufferOnlyWhenVisible", + "CalloutInterpolatedValuePrecision": "CalloutInterpolatedValuePrecision", + "CalloutLabelUpdatingRef": "CalloutLabelUpdatingRef", + "CalloutLeaderBrush": "CalloutLeaderBrush", + "CalloutLightTextColor": "CalloutLightTextColor", + "CalloutOutline": "CalloutOutline", + "CalloutPaddingBottom": "CalloutPaddingBottom", + "CalloutPaddingLeft": "CalloutPaddingLeft", + "CalloutPaddingRight": "CalloutPaddingRight", + "CalloutPaddingTop": "CalloutPaddingTop", + "CalloutPositionPadding": "CalloutPositionPadding", + "CalloutRenderStyleUpdatingRef": "CalloutRenderStyleUpdatingRef", + "CalloutSeriesSelectingRef": "CalloutSeriesSelectingRef", + "CalloutStrokeThickness": "CalloutStrokeThickness", + "CalloutStyleUpdatingRef": "CalloutStyleUpdatingRef", + "CalloutSuspendedWhenShiftingToVisible": "CalloutSuspendedWhenShiftingToVisible", + "CalloutTextColor": "CalloutTextColor", + "CollisionChannel": "CollisionChannel", + "ContentMemberPath": "ContentMemberPath", + "HighlightedValueLabelMode": "HighlightedValueLabelMode", + "IsAutoCalloutBehaviorEnabled": "IsAutoCalloutBehaviorEnabled", + "IsCalloutOffsettingEnabled": "IsCalloutOffsettingEnabled", + "IsCustomCalloutRenderStyleEnabled": "IsCustomCalloutRenderStyleEnabled", + "IsCustomCalloutStyleEnabled": "IsCustomCalloutStyleEnabled", + "KeyMemberPath": "KeyMemberPath", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelMemberPath": "LabelMemberPath", + "ShouldTruncateOnBoundaryCollisions": "ShouldTruncateOnBoundaryCollisions", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "TextStyle": "TextStyle", + "Type": "Type", + "UseAutoContrastingLabelColors": "UseAutoContrastingLabelColors", + "UseInterpolatedValueForAutoCalloutLabels": "UseInterpolatedValueForAutoCalloutLabels", + "UseItemColorForFill": "UseItemColorForFill", + "UseItemColorForOutline": "UseItemColorForOutline", + "UseSeriesColorForOutline": "UseSeriesColorForOutline", + "UseValueForAutoCalloutLabels": "UseValueForAutoCalloutLabels", + "XMemberPath": "XMemberPath", + "YMemberPath": "YMemberPath" + } + } + ], + "CalloutLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutLayerDescriptionMetadata()": "CalloutLayerDescriptionMetadata()", + "CalloutLayerDescriptionMetadata": "CalloutLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CalloutLayerDescriptionModule()": "CalloutLayerDescriptionModule()", + "CalloutLayerDescriptionModule": "CalloutLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutPlacementPositions": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CalloutPlacementPositions", + "k": "enum", + "s": "enums" + } + ], + "CalloutPlacementPositionsCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutPlacementPositionsCollection", + "k": "class", + "s": "classes", + "m": { + "CalloutPlacementPositionsCollection()": "CalloutPlacementPositionsCollection()", + "CalloutPlacementPositionsCollection": "CalloutPlacementPositionsCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutRenderStyleUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutRenderStyleUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutRenderStyleUpdatingEventArgs()": "CalloutRenderStyleUpdatingEventArgs()", + "CalloutRenderStyleUpdatingEventArgs": "CalloutRenderStyleUpdatingEventArgs()", + "ActualPosition": "ActualPosition", + "Background": "Background", + "BackgroundCorner": "BackgroundCorner", + "BadgeBackground": "BadgeBackground", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "Height": "Height", + "Item": "Item", + "LabelPositionX": "LabelPositionX", + "LabelPositionY": "LabelPositionY", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "TargetPositionX": "TargetPositionX", + "TargetPositionY": "TargetPositionY", + "TextColor": "TextColor", + "Width": "Width", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutRenderStyleUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutRenderStyleUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutRenderStyleUpdatingEventArgsDescription()": "CalloutRenderStyleUpdatingEventArgsDescription()", + "CalloutRenderStyleUpdatingEventArgsDescription": "CalloutRenderStyleUpdatingEventArgsDescription()", + "ActualPosition": "ActualPosition", + "Background": "Background", + "BackgroundCorner": "BackgroundCorner", + "BadgeBackground": "BadgeBackground", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "Height": "Height", + "ItemRef": "ItemRef", + "LabelPositionX": "LabelPositionX", + "LabelPositionY": "LabelPositionY", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "TargetPositionX": "TargetPositionX", + "TargetPositionY": "TargetPositionY", + "TextColor": "TextColor", + "Type": "Type", + "Width": "Width", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutRenderStyleUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata()": "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata()", + "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata": "CalloutRenderStyleUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutSeriesSelectingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutSeriesSelectingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutSeriesSelectingEventArgs()": "CalloutSeriesSelectingEventArgs()", + "CalloutSeriesSelectingEventArgs": "CalloutSeriesSelectingEventArgs()", + "Item": "Item", + "Series": "Series", + "SeriesName": "SeriesName", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutSeriesSelectingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutSeriesSelectingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutSeriesSelectingEventArgsDescription()": "CalloutSeriesSelectingEventArgsDescription()", + "CalloutSeriesSelectingEventArgsDescription": "CalloutSeriesSelectingEventArgsDescription()", + "ItemRef": "ItemRef", + "Series": "Series", + "SeriesName": "SeriesName", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutSeriesSelectingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutSeriesSelectingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutSeriesSelectingEventArgsDescriptionMetadata()": "CalloutSeriesSelectingEventArgsDescriptionMetadata()", + "CalloutSeriesSelectingEventArgsDescriptionMetadata": "CalloutSeriesSelectingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutStyleUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutStyleUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "CalloutStyleUpdatingEventArgs()": "CalloutStyleUpdatingEventArgs()", + "CalloutStyleUpdatingEventArgs": "CalloutStyleUpdatingEventArgs()", + "BacgkroundPaddingBottom": "BacgkroundPaddingBottom", + "BacgkroundPaddingLeft": "BacgkroundPaddingLeft", + "BacgkroundPaddingRight": "BacgkroundPaddingRight", + "BacgkroundPaddingTop": "BacgkroundPaddingTop", + "Background": "Background", + "BackgroundCorner": "BackgroundCorner", + "BadgeBackground": "BadgeBackground", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "Item": "Item", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "TextColor": "TextColor", + "XValue": "XValue", + "YValue": "YValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CalloutStyleUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutStyleUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CalloutStyleUpdatingEventArgsDescription()": "CalloutStyleUpdatingEventArgsDescription()", + "CalloutStyleUpdatingEventArgsDescription": "CalloutStyleUpdatingEventArgsDescription()", + "BacgkroundPaddingBottom": "BacgkroundPaddingBottom", + "BacgkroundPaddingLeft": "BacgkroundPaddingLeft", + "BacgkroundPaddingRight": "BacgkroundPaddingRight", + "BacgkroundPaddingTop": "BacgkroundPaddingTop", + "Background": "Background", + "BackgroundCorner": "BackgroundCorner", + "BadgeBackground": "BadgeBackground", + "BadgeCorner": "BadgeCorner", + "BadgeGap": "BadgeGap", + "BadgeHeight": "BadgeHeight", + "BadgeImage": "BadgeImage", + "BadgeOutline": "BadgeOutline", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "BadgeWidth": "BadgeWidth", + "ItemRef": "ItemRef", + "LeaderBrush": "LeaderBrush", + "Outline": "Outline", + "Series": "Series", + "StrokeThickness": "StrokeThickness", + "TextColor": "TextColor", + "Type": "Type", + "XValueRef": "XValueRef", + "YValueRef": "YValueRef" + } + } + ], + "CalloutStyleUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CalloutStyleUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CalloutStyleUpdatingEventArgsDescriptionMetadata()": "CalloutStyleUpdatingEventArgsDescriptionMetadata()", + "CalloutStyleUpdatingEventArgsDescriptionMetadata": "CalloutStyleUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CalloutVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutVisualData", + "k": "class", + "s": "classes", + "m": { + "CalloutVisualData()": "CalloutVisualData()", + "CalloutVisualData": "CalloutVisualData()", + "Background": "Background", + "Badge": "Badge", + "Left": "Left", + "Line": "Line", + "MarginLeft": "MarginLeft", + "MarginTop": "MarginTop", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "Top": "Top" + } + } + ], + "CalloutVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CalloutVisualDataList", + "k": "class", + "s": "classes", + "m": { + "CalloutVisualDataList()": "CalloutVisualDataList()", + "CalloutVisualDataList": "CalloutVisualDataList()" + } + } + ], + "CancelButtonClickEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CancelButtonClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CancelButtonClickEventArgsDescription()": "CancelButtonClickEventArgsDescription()", + "CancelButtonClickEventArgsDescription": "CancelButtonClickEventArgsDescription()", + "Type": "Type" + } + } + ], + "CancelButtonClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CancelButtonClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CancelButtonClickEventArgsDescriptionMetadata()": "CancelButtonClickEventArgsDescriptionMetadata()", + "CancelButtonClickEventArgsDescriptionMetadata": "CancelButtonClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CancelEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CancelEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CancelEventArgsDescription()": "CancelEventArgsDescription()", + "CancelEventArgsDescription": "CancelEventArgsDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "CancelEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CancelEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CancelEventArgsDescriptionMetadata()": "CancelEventArgsDescriptionMetadata()", + "CancelEventArgsDescriptionMetadata": "CancelEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CancellingMultiScaleImageEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CancellingMultiScaleImageEventArgs", + "k": "class", + "s": "classes", + "m": { + "CancellingMultiScaleImageEventArgs()": "CancellingMultiScaleImageEventArgs()", + "CancellingMultiScaleImageEventArgs": "CancellingMultiScaleImageEventArgs()", + "Uri": "Uri" + } + } + ], + "CancellingMultiScaleImageEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CancellingMultiScaleImageEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CancellingMultiScaleImageEventArgsDescription()": "CancellingMultiScaleImageEventArgsDescription()", + "CancellingMultiScaleImageEventArgsDescription": "CancellingMultiScaleImageEventArgsDescription()", + "Type": "Type", + "Uri": "Uri" + } + } + ], + "CancellingMultiScaleImageEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CancellingMultiScaleImageEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CancellingMultiScaleImageEventArgsDescriptionMetadata()": "CancellingMultiScaleImageEventArgsDescriptionMetadata()", + "CancellingMultiScaleImageEventArgsDescriptionMetadata": "CancellingMultiScaleImageEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CaptureImageFormat": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/CaptureImageFormat", + "k": "enum", + "s": "enums" + } + ], + "CaptureImageSettings": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CaptureImageSettings", + "k": "class", + "s": "classes", + "m": { + "CaptureImageSettings()": "CaptureImageSettings()", + "CaptureImageSettings": "CaptureImageSettings()", + "AddToClipboard": "AddToClipboard", + "Format": "Format", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CaptureImageSettingsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CaptureImageSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "CaptureImageSettingsDescription()": "CaptureImageSettingsDescription()", + "CaptureImageSettingsDescription": "CaptureImageSettingsDescription()", + "AddToClipboard": "AddToClipboard", + "Format": "Format", + "Type": "Type" + } + } + ], + "CaptureImageSettingsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CaptureImageSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CaptureImageSettingsDescriptionMetadata()": "CaptureImageSettingsDescriptionMetadata()", + "CaptureImageSettingsDescriptionMetadata": "CaptureImageSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryAngleAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryAngleAxis", + "k": "class", + "s": "classes", + "m": { + "CategoryAngleAxis()": "CategoryAngleAxis()", + "CategoryAngleAxis": "CategoryAngleAxis()", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "AreGroupSizesUneven": "AreGroupSizesUneven", + "AreGroupSizesUnevenProperty": "AreGroupSizesUnevenProperty", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIntervalProperty": "CompanionAxisIntervalProperty", + "CompanionAxisLabelMode": "CompanionAxisLabelMode", + "CompanionAxisLabelModeProperty": "CompanionAxisLabelModeProperty", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisMinorIntervalProperty": "CompanionAxisMinorIntervalProperty", + "CompanionAxisStartAngleOffset": "CompanionAxisStartAngleOffset", + "CompanionAxisStartAngleOffsetProperty": "CompanionAxisStartAngleOffsetProperty", + "GetScaledAngle(double)": "GetScaledAngle(double)", + "GetScaledAngle": "GetScaledAngle(double)", + "GetUnscaledAngle(double)": "GetUnscaledAngle(double)", + "GetUnscaledAngle": "GetUnscaledAngle(double)", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "LabelMode": "LabelMode", + "LabelModeProperty": "LabelModeProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "StartAngleOffset": "StartAngleOffset", + "StartAngleOffsetProperty": "StartAngleOffsetProperty" + } + } + ], + "CategoryAngleAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryAngleAxisDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryAngleAxisDescription()": "CategoryAngleAxisDescription()", + "CategoryAngleAxisDescription": "CategoryAngleAxisDescription()", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisLabelMode": "CompanionAxisLabelMode", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisStartAngleOffset": "CompanionAxisStartAngleOffset", + "Interval": "Interval", + "LabelMode": "LabelMode", + "MinorInterval": "MinorInterval", + "StartAngleOffset": "StartAngleOffset", + "Type": "Type" + } + } + ], + "CategoryAngleAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryAngleAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryAngleAxisDescriptionMetadata()": "CategoryAngleAxisDescriptionMetadata()", + "CategoryAngleAxisDescriptionMetadata": "CategoryAngleAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryAngleAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryAngleAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryAngleAxisDescriptionModule()": "CategoryAngleAxisDescriptionModule()", + "CategoryAngleAxisDescriptionModule": "CategoryAngleAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryAxisBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryAxisBase", + "k": "class", + "s": "classes", + "m": { + "Gap": "Gap", + "GapProperty": "GapProperty", + "GetCategoryBoundingBox(Point, bool, double)": "GetCategoryBoundingBox(Point, bool, double)", + "GetCategoryBoundingBox": "GetCategoryBoundingBox(Point, bool, double)", + "IsLastLabelMandatory": "IsLastLabelMandatory", + "IsLastLabelMandatoryProperty": "IsLastLabelMandatoryProperty", + "ItemsCount": "ItemsCount", + "ItemsCountProperty": "ItemsCountProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "MaximumGap": "MaximumGap", + "MaximumGapProperty": "MaximumGapProperty", + "MinimumGapSize": "MinimumGapSize", + "MinimumGapSizeProperty": "MinimumGapSizeProperty", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "Overlap": "Overlap", + "OverlapProperty": "OverlapProperty", + "UnscaleValue(double)": "UnscaleValue(double)", + "UnscaleValue": "UnscaleValue(double)", + "UseClusteringMode": "UseClusteringMode", + "UseClusteringModeProperty": "UseClusteringModeProperty" + } + } + ], + "CategoryAxisBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryAxisBaseDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryAxisBaseDescription()": "CategoryAxisBaseDescription()", + "CategoryAxisBaseDescription": "CategoryAxisBaseDescription()", + "DataSourceRef": "DataSourceRef", + "Gap": "Gap", + "IsLastLabelMandatory": "IsLastLabelMandatory", + "ItemsCount": "ItemsCount", + "ItemsCountChangeRef": "ItemsCountChangeRef", + "MaximumGap": "MaximumGap", + "MinimumGapSize": "MinimumGapSize", + "Overlap": "Overlap", + "Type": "Type", + "UseClusteringMode": "UseClusteringMode" + } + } + ], + "CategoryAxisBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryAxisBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryAxisBaseDescriptionMetadata()": "CategoryAxisBaseDescriptionMetadata()", + "CategoryAxisBaseDescriptionMetadata": "CategoryAxisBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryChartCoreDescriptionModule()": "CategoryChartCoreDescriptionModule()", + "CategoryChartCoreDescriptionModule": "CategoryChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryChartDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryChartDescription()": "CategoryChartDescription()", + "CategoryChartDescription": "CategoryChartDescription()", + "AutoExpandMarginExtraPadding": "AutoExpandMarginExtraPadding", + "AutoExpandMarginMaximumValue": "AutoExpandMarginMaximumValue", + "AutoMarginAndAngleUpdateMode": "AutoMarginAndAngleUpdateMode", + "Background": "Background", + "ChartType": "ChartType", + "Height": "Height", + "IsCategoryHighlightingEnabled": "IsCategoryHighlightingEnabled", + "IsItemHighlightingEnabled": "IsItemHighlightingEnabled", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "NegativeBrushes": "NegativeBrushes", + "NegativeOutlines": "NegativeOutlines", + "ShouldAutoExpandMarginForInitialLabels": "ShouldAutoExpandMarginForInitialLabels", + "ShouldConsiderAutoRotationForInitialLabels": "ShouldConsiderAutoRotationForInitialLabels", + "TooltipTemplateRef": "TooltipTemplateRef", + "TransitionInDuration": "TransitionInDuration", + "TransitionInEasingFunctionRef": "TransitionInEasingFunctionRef", + "TransitionInMode": "TransitionInMode", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutEasingFunctionRef": "TransitionOutEasingFunctionRef", + "Type": "Type", + "Width": "Width", + "XAxisEnhancedIntervalPreferMoreCategoryLabels": "XAxisEnhancedIntervalPreferMoreCategoryLabels", + "XAxisGap": "XAxisGap", + "XAxisInterval": "XAxisInterval", + "XAxisIsLastLabelMandatory": "XAxisIsLastLabelMandatory", + "XAxisMaximumGap": "XAxisMaximumGap", + "XAxisMinimumGapSize": "XAxisMinimumGapSize", + "XAxisMinorInterval": "XAxisMinorInterval", + "XAxisOverlap": "XAxisOverlap", + "XAxisZoomMaximumCategoryRange": "XAxisZoomMaximumCategoryRange", + "XAxisZoomMaximumItemSpan": "XAxisZoomMaximumItemSpan", + "XAxisZoomToCategoryRange": "XAxisZoomToCategoryRange", + "XAxisZoomToCategoryStart": "XAxisZoomToCategoryStart", + "XAxisZoomToItemSpan": "XAxisZoomToItemSpan", + "YAxisAbbreviateLargeNumbers": "YAxisAbbreviateLargeNumbers", + "YAxisAutoRangeBufferMode": "YAxisAutoRangeBufferMode", + "YAxisEnhancedIntervalPreferMoreCategoryLabels": "YAxisEnhancedIntervalPreferMoreCategoryLabels", + "YAxisFavorLabellingScaleEnd": "YAxisFavorLabellingScaleEnd", + "YAxisInterval": "YAxisInterval", + "YAxisIsLastLabelMandatory": "YAxisIsLastLabelMandatory", + "YAxisIsLogarithmic": "YAxisIsLogarithmic", + "YAxisLogarithmBase": "YAxisLogarithmBase", + "YAxisMaximumValue": "YAxisMaximumValue", + "YAxisMinimumValue": "YAxisMinimumValue", + "YAxisMinorInterval": "YAxisMinorInterval" + } + } + ], + "CategoryChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryChartDescriptionMetadata()": "CategoryChartDescriptionMetadata()", + "CategoryChartDescriptionMetadata": "CategoryChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryChartDescriptionModule()": "CategoryChartDescriptionModule()", + "CategoryChartDescriptionModule": "CategoryChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartMockDataItem": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryChartMockDataItem", + "k": "class", + "s": "classes", + "m": { + "CategoryChartMockDataItem()": "CategoryChartMockDataItem()", + "CategoryChartMockDataItem": "CategoryChartMockDataItem()", + "Label": "Label", + "Series1": "Series1", + "Series2": "Series2", + "Series3": "Series3" + } + } + ], + "CategoryChartToolbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryChartToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryChartToolbarDescriptionModule()": "CategoryChartToolbarDescriptionModule()", + "CategoryChartToolbarDescriptionModule": "CategoryChartToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryChartType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CategoryChartType", + "k": "enum", + "s": "enums" + } + ], + "CategoryCollisionMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CategoryCollisionMode", + "k": "enum", + "s": "enums" + } + ], + "CategoryDateTimeXAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryDateTimeXAxis", + "k": "class", + "s": "classes", + "m": { + "CategoryDateTimeXAxis()": "CategoryDateTimeXAxis()", + "CategoryDateTimeXAxis": "CategoryDateTimeXAxis()", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "ScrollIntoView(DateTime, DateTime)": "ScrollIntoView(DateTime, DateTime)", + "ScrollIntoView": "ScrollIntoView(DateTime, DateTime)", + "UnevenlySpacedLabels": "UnevenlySpacedLabels", + "UnevenlySpacedLabelsProperty": "UnevenlySpacedLabelsProperty" + } + } + ], + "CategoryDateTimeXAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryDateTimeXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryDateTimeXAxisDescription()": "CategoryDateTimeXAxisDescription()", + "CategoryDateTimeXAxisDescription": "CategoryDateTimeXAxisDescription()", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalChangeRef": "ActualMinorIntervalChangeRef", + "DisplayType": "DisplayType", + "Interval": "Interval", + "MinorInterval": "MinorInterval", + "Type": "Type", + "UnevenlySpacedLabels": "UnevenlySpacedLabels" + } + } + ], + "CategoryDateTimeXAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryDateTimeXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryDateTimeXAxisDescriptionMetadata()": "CategoryDateTimeXAxisDescriptionMetadata()", + "CategoryDateTimeXAxisDescriptionMetadata": "CategoryDateTimeXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryDateTimeXAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryDateTimeXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryDateTimeXAxisDescriptionModule()": "CategoryDateTimeXAxisDescriptionModule()", + "CategoryDateTimeXAxisDescriptionModule": "CategoryDateTimeXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryHighlightLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryHighlightLayer", + "k": "class", + "s": "classes", + "m": { + "CategoryHighlightLayer()": "CategoryHighlightLayer()", + "CategoryHighlightLayer": "CategoryHighlightLayer()", + "BandHighlightWidth": "BandHighlightWidth", + "BandHighlightWidthProperty": "BandHighlightWidthProperty", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty" + } + } + ], + "CategoryHighlightLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryHighlightLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryHighlightLayerDescription()": "CategoryHighlightLayerDescription()", + "CategoryHighlightLayerDescription": "CategoryHighlightLayerDescription()", + "BandHighlightWidth": "BandHighlightWidth", + "TargetAxisRef": "TargetAxisRef", + "Type": "Type", + "UseInterpolation": "UseInterpolation" + } + } + ], + "CategoryHighlightLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryHighlightLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryHighlightLayerDescriptionMetadata()": "CategoryHighlightLayerDescriptionMetadata()", + "CategoryHighlightLayerDescriptionMetadata": "CategoryHighlightLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryHighlightLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryHighlightLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryHighlightLayerDescriptionModule()": "CategoryHighlightLayerDescriptionModule()", + "CategoryHighlightLayerDescriptionModule": "CategoryHighlightLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryItemHighlightLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryItemHighlightLayer", + "k": "class", + "s": "classes", + "m": { + "CategoryItemHighlightLayer()": "CategoryItemHighlightLayer()", + "CategoryItemHighlightLayer": "CategoryItemHighlightLayer()", + "BandHighlightWidth": "BandHighlightWidth", + "BandHighlightWidthProperty": "BandHighlightWidthProperty", + "HighlightType": "HighlightType", + "HighlightTypeProperty": "HighlightTypeProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty" + } + } + ], + "CategoryItemHighlightLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryItemHighlightLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryItemHighlightLayerDescription()": "CategoryItemHighlightLayerDescription()", + "CategoryItemHighlightLayerDescription": "CategoryItemHighlightLayerDescription()", + "BandHighlightWidth": "BandHighlightWidth", + "HighlightType": "HighlightType", + "MarkerBrush": "MarkerBrush", + "MarkerOutline": "MarkerOutline", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerType": "MarkerType", + "SkipUnknownValues": "SkipUnknownValues", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type", + "UseInterpolation": "UseInterpolation" + } + } + ], + "CategoryItemHighlightLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryItemHighlightLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryItemHighlightLayerDescriptionMetadata()": "CategoryItemHighlightLayerDescriptionMetadata()", + "CategoryItemHighlightLayerDescriptionMetadata": "CategoryItemHighlightLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryItemHighlightLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryItemHighlightLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryItemHighlightLayerDescriptionModule()": "CategoryItemHighlightLayerDescriptionModule()", + "CategoryItemHighlightLayerDescriptionModule": "CategoryItemHighlightLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryItemHighlightType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CategoryItemHighlightType", + "k": "enum", + "s": "enums" + } + ], + "CategorySeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategorySeries", + "k": "class", + "s": "classes", + "m": { + "CategoryCollisionMode": "CategoryCollisionMode", + "CategoryCollisionModeProperty": "CategoryCollisionModeProperty", + "GetCategoryItems(int, int)": "GetCategoryItems(int, int)", + "GetCategoryItems": "GetCategoryItems(int, int)", + "GetCategoryWidth()": "GetCategoryWidth()", + "GetCategoryWidth": "GetCategoryWidth()", + "GetOffsetValue()": "GetOffsetValue()", + "GetOffsetValue": "GetOffsetValue()", + "IsCustomCategoryMarkerStyleAllowed": "IsCustomCategoryMarkerStyleAllowed", + "IsCustomCategoryMarkerStyleAllowedProperty": "IsCustomCategoryMarkerStyleAllowedProperty", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsCustomCategoryStyleAllowedProperty": "IsCustomCategoryStyleAllowedProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)": "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)", + "OnAssigningCategoryMarkerStyle": "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)", + "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnAssigningCategoryStyle": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "UseHighMarkerFidelity": "UseHighMarkerFidelity", + "UseHighMarkerFidelityProperty": "UseHighMarkerFidelityProperty" + } + } + ], + "CategorySeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "CategorySeriesDescription()": "CategorySeriesDescription()", + "CategorySeriesDescription": "CategorySeriesDescription()", + "AssigningCategoryMarkerStyleRef": "AssigningCategoryMarkerStyleRef", + "AssigningCategoryStyleRef": "AssigningCategoryStyleRef", + "CategoryCollisionMode": "CategoryCollisionMode", + "IsCustomCategoryMarkerStyleAllowed": "IsCustomCategoryMarkerStyleAllowed", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "TransitionInMode": "TransitionInMode", + "Type": "Type", + "UseHighMarkerFidelity": "UseHighMarkerFidelity" + } + } + ], + "CategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategorySeriesDescriptionMetadata()": "CategorySeriesDescriptionMetadata()", + "CategorySeriesDescriptionMetadata": "CategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategorySeriesMarkerCollisionAvoidance": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CategorySeriesMarkerCollisionAvoidance", + "k": "enum", + "s": "enums" + } + ], + "CategoryToolTipLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryToolTipLayer", + "k": "class", + "s": "classes", + "m": { + "CategoryToolTipLayer()": "CategoryToolTipLayer()", + "CategoryToolTipLayer": "CategoryToolTipLayer()", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBackgroundProperty": "ToolTipBackgroundProperty", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderBrushProperty": "ToolTipBorderBrushProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "ToolTipPosition": "ToolTipPosition", + "ToolTipPositionProperty": "ToolTipPositionProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty" + } + } + ], + "CategoryToolTipLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryToolTipLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryToolTipLayerDescription()": "CategoryToolTipLayerDescription()", + "CategoryToolTipLayerDescription": "CategoryToolTipLayerDescription()", + "TargetAxisRef": "TargetAxisRef", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipPosition": "ToolTipPosition", + "Type": "Type", + "UseInterpolation": "UseInterpolation" + } + } + ], + "CategoryToolTipLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryToolTipLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryToolTipLayerDescriptionMetadata()": "CategoryToolTipLayerDescriptionMetadata()", + "CategoryToolTipLayerDescriptionMetadata": "CategoryToolTipLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryToolTipLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryToolTipLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryToolTipLayerDescriptionModule()": "CategoryToolTipLayerDescriptionModule()", + "CategoryToolTipLayerDescriptionModule": "CategoryToolTipLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryTooltipLayerPosition": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CategoryTooltipLayerPosition", + "k": "enum", + "s": "enums" + } + ], + "CategoryTransitionInMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CategoryTransitionInMode", + "k": "enum", + "s": "enums" + } + ], + "CategoryXAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryXAxis", + "k": "class", + "s": "classes", + "m": { + "CategoryXAxis()": "CategoryXAxis()", + "CategoryXAxis": "CategoryXAxis()", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIntervalProperty": "CompanionAxisIntervalProperty", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisMinorIntervalProperty": "CompanionAxisMinorIntervalProperty", + "GetWindowZoomFromCategories(double)": "GetWindowZoomFromCategories(double)", + "GetWindowZoomFromCategories": "GetWindowZoomFromCategories(double)", + "GetWindowZoomFromItemSpan(double)": "GetWindowZoomFromItemSpan(double)", + "GetWindowZoomFromItemSpan": "GetWindowZoomFromItemSpan(double)", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "ScrollIntoView(object)": "ScrollIntoView(object)", + "ScrollIntoView": "ScrollIntoView(object)", + "ScrollRangeIntoView(double, double)": "ScrollRangeIntoView(double, double)", + "ScrollRangeIntoView": "ScrollRangeIntoView(double, double)", + "ZoomMaximumCategoryRange": "ZoomMaximumCategoryRange", + "ZoomMaximumCategoryRangeProperty": "ZoomMaximumCategoryRangeProperty", + "ZoomMaximumItemSpan": "ZoomMaximumItemSpan", + "ZoomMaximumItemSpanProperty": "ZoomMaximumItemSpanProperty", + "ZoomToCategoryRange": "ZoomToCategoryRange", + "ZoomToCategoryRangeProperty": "ZoomToCategoryRangeProperty", + "ZoomToCategoryStart": "ZoomToCategoryStart", + "ZoomToCategoryStartProperty": "ZoomToCategoryStartProperty", + "ZoomToItemSpan": "ZoomToItemSpan", + "ZoomToItemSpanProperty": "ZoomToItemSpanProperty" + } + } + ], + "CategoryXAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryXAxisDescription()": "CategoryXAxisDescription()", + "CategoryXAxisDescription": "CategoryXAxisDescription()", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalChangeRef": "ActualMinorIntervalChangeRef", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "Interval": "Interval", + "MinorInterval": "MinorInterval", + "Type": "Type", + "ZoomMaximumCategoryRange": "ZoomMaximumCategoryRange", + "ZoomMaximumItemSpan": "ZoomMaximumItemSpan", + "ZoomToCategoryRange": "ZoomToCategoryRange", + "ZoomToCategoryStart": "ZoomToCategoryStart", + "ZoomToItemSpan": "ZoomToItemSpan" + } + } + ], + "CategoryXAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryXAxisDescriptionMetadata()": "CategoryXAxisDescriptionMetadata()", + "CategoryXAxisDescriptionMetadata": "CategoryXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryXAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryXAxisDescriptionModule()": "CategoryXAxisDescriptionModule()", + "CategoryXAxisDescriptionModule": "CategoryXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryYAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CategoryYAxis", + "k": "class", + "s": "classes", + "m": { + "CategoryYAxis()": "CategoryYAxis()", + "CategoryYAxis": "CategoryYAxis()", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIntervalProperty": "CompanionAxisIntervalProperty", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisMinorIntervalProperty": "CompanionAxisMinorIntervalProperty", + "GetWindowZoomFromCategories(double)": "GetWindowZoomFromCategories(double)", + "GetWindowZoomFromCategories": "GetWindowZoomFromCategories(double)", + "GetWindowZoomFromItemSpan(double)": "GetWindowZoomFromItemSpan(double)", + "GetWindowZoomFromItemSpan": "GetWindowZoomFromItemSpan(double)", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "ScrollIntoView(object)": "ScrollIntoView(object)", + "ScrollIntoView": "ScrollIntoView(object)", + "ScrollRangeIntoView(double, double)": "ScrollRangeIntoView(double, double)", + "ScrollRangeIntoView": "ScrollRangeIntoView(double, double)", + "ZoomMaximumCategoryRange": "ZoomMaximumCategoryRange", + "ZoomMaximumCategoryRangeProperty": "ZoomMaximumCategoryRangeProperty", + "ZoomMaximumItemSpan": "ZoomMaximumItemSpan", + "ZoomMaximumItemSpanProperty": "ZoomMaximumItemSpanProperty", + "ZoomToCategoryRange": "ZoomToCategoryRange", + "ZoomToCategoryRangeProperty": "ZoomToCategoryRangeProperty", + "ZoomToCategoryStart": "ZoomToCategoryStart", + "ZoomToCategoryStartProperty": "ZoomToCategoryStartProperty", + "ZoomToItemSpan": "ZoomToItemSpan", + "ZoomToItemSpanProperty": "ZoomToItemSpanProperty" + } + } + ], + "CategoryYAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryYAxisDescription", + "k": "class", + "s": "classes", + "m": { + "CategoryYAxisDescription()": "CategoryYAxisDescription()", + "CategoryYAxisDescription": "CategoryYAxisDescription()", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalChangeRef": "ActualMinorIntervalChangeRef", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "Interval": "Interval", + "MinorInterval": "MinorInterval", + "Type": "Type", + "ZoomMaximumCategoryRange": "ZoomMaximumCategoryRange", + "ZoomMaximumItemSpan": "ZoomMaximumItemSpan", + "ZoomToCategoryRange": "ZoomToCategoryRange", + "ZoomToCategoryStart": "ZoomToCategoryStart", + "ZoomToItemSpan": "ZoomToItemSpan" + } + } + ], + "CategoryYAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryYAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CategoryYAxisDescriptionMetadata()": "CategoryYAxisDescriptionMetadata()", + "CategoryYAxisDescriptionMetadata": "CategoryYAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CategoryYAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CategoryYAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CategoryYAxisDescriptionModule()": "CategoryYAxisDescriptionModule()", + "CategoryYAxisDescriptionModule": "CategoryYAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellActionManagerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellActionManagerDescription", + "k": "class", + "s": "classes", + "m": { + "CellActionManagerDescription()": "CellActionManagerDescription()", + "CellActionManagerDescription": "CellActionManagerDescription()", + "IsControlPressed": "IsControlPressed", + "IsShiftPressed": "IsShiftPressed", + "Type": "Type" + } + } + ], + "CellActionManagerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellActionManagerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellActionManagerDescriptionMetadata()": "CellActionManagerDescriptionMetadata()", + "CellActionManagerDescriptionMetadata": "CellActionManagerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellContentHorizontalAlignment": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/CellContentHorizontalAlignment", + "k": "enum", + "s": "enums" + } + ], + "CellContentVerticalAlignment": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/CellContentVerticalAlignment", + "k": "enum", + "s": "enums" + } + ], + "CellDataLoadedAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/CellDataLoadedAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "CellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/CellInfo", + "k": "class", + "s": "classes", + "m": { + "ActionManager": "ActionManager", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderBottomWidthPropertyName": "ActivationBorderBottomWidthPropertyName", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderLeftWidthPropertyName": "ActivationBorderLeftWidthPropertyName", + "ActivationBorderPropertyName": "ActivationBorderPropertyName", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderRightWidthPropertyName": "ActivationBorderRightWidthPropertyName", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationBorderTopWidthPropertyName": "ActivationBorderTopWidthPropertyName", + "ActivationStatus": "ActivationStatus", + "ActivationStatusPropertyName": "ActivationStatusPropertyName", + "ActualBackground": "ActualBackground", + "ActualBackgroundPropertyName": "ActualBackgroundPropertyName", + "ActualBorder": "ActualBorder", + "ActualBorderBottomWidth": "ActualBorderBottomWidth", + "ActualBorderBottomWidthPropertyName": "ActualBorderBottomWidthPropertyName", + "ActualBorderLeftWidth": "ActualBorderLeftWidth", + "ActualBorderLeftWidthPropertyName": "ActualBorderLeftWidthPropertyName", + "ActualBorderPropertyName": "ActualBorderPropertyName", + "ActualBorderRightWidth": "ActualBorderRightWidth", + "ActualBorderRightWidthPropertyName": "ActualBorderRightWidthPropertyName", + "ActualBorderTopWidth": "ActualBorderTopWidth", + "ActualBorderTopWidthPropertyName": "ActualBorderTopWidthPropertyName", + "ActualContentOpacity": "ActualContentOpacity", + "ActualContentOpacityPropertyName": "ActualContentOpacityPropertyName", + "ActualFontInfoPropertyName": "ActualFontInfoPropertyName", + "ActualOpacity": "ActualOpacity", + "ActualOpacityPropertyName": "ActualOpacityPropertyName", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingBottomPropertyName": "ActualPaddingBottomPropertyName", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingLeftPropertyName": "ActualPaddingLeftPropertyName", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingRightPropertyName": "ActualPaddingRightPropertyName", + "ActualPaddingTop": "ActualPaddingTop", + "ActualPaddingTopPropertyName": "ActualPaddingTopPropertyName", + "ActualTextColor": "ActualTextColor", + "ActualTextColorPropertyName": "ActualTextColorPropertyName", + "Background": "Background", + "BackgroundPropertyName": "BackgroundPropertyName", + "Border": "Border", + "BorderBottomWidth": "BorderBottomWidth", + "BorderBottomWidthPropertyName": "BorderBottomWidthPropertyName", + "BorderLeftWidth": "BorderLeftWidth", + "BorderLeftWidthPropertyName": "BorderLeftWidthPropertyName", + "BorderPropertyName": "BorderPropertyName", + "BorderRightWidth": "BorderRightWidth", + "BorderRightWidthPropertyName": "BorderRightWidthPropertyName", + "BorderTopWidth": "BorderTopWidth", + "BorderTopWidthPropertyName": "BorderTopWidthPropertyName", + "ColumnIdx": "ColumnIdx", + "ContentOpacity": "ContentOpacity", + "ContentOpacityPropertyName": "ContentOpacityPropertyName", + "DataRow": "DataRow", + "DeletedTextColor": "DeletedTextColor", + "DeletedTextColorPropertyName": "DeletedTextColorPropertyName", + "EditError": "EditError", + "EditErrorPropertyName": "EditErrorPropertyName", + "EditFontFamily": "EditFontFamily", + "EditFontInfoPropertyName": "EditFontInfoPropertyName", + "EditFontSize": "EditFontSize", + "EditFontStyle": "EditFontStyle", + "EditFontWeight": "EditFontWeight", + "EditID": "EditID", + "EditOpacity": "EditOpacity", + "EditOpacityPropertyName": "EditOpacityPropertyName", + "ErrorBorder": "ErrorBorder", + "ErrorBorderBottomWidth": "ErrorBorderBottomWidth", + "ErrorBorderBottomWidthPropertyName": "ErrorBorderBottomWidthPropertyName", + "ErrorBorderLeftWidth": "ErrorBorderLeftWidth", + "ErrorBorderLeftWidthPropertyName": "ErrorBorderLeftWidthPropertyName", + "ErrorBorderPropertyName": "ErrorBorderPropertyName", + "ErrorBorderRightWidth": "ErrorBorderRightWidth", + "ErrorBorderRightWidthPropertyName": "ErrorBorderRightWidthPropertyName", + "ErrorBorderTopWidth": "ErrorBorderTopWidth", + "ErrorBorderTopWidthPropertyName": "ErrorBorderTopWidthPropertyName", + "ExpansionIndicatorIconColor": "ExpansionIndicatorIconColor", + "ExpansionIndicatorIconColorPropertyName": "ExpansionIndicatorIconColorPropertyName", + "FilterRowBackground": "FilterRowBackground", + "FontFamily": "FontFamily", + "FontInfoPropertyName": "FontInfoPropertyName", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "GetNamedValue(string)": "GetNamedValue(string)", + "GetNamedValue": "GetNamedValue(string)", + "HasNamedValue(string)": "HasNamedValue(string)", + "HasNamedValue": "HasNamedValue(string)", + "Height": "Height", + "HeightPropertyName": "HeightPropertyName", + "HorizontalAlignment": "HorizontalAlignment", + "HorizontalAlignmentPropertyName": "HorizontalAlignmentPropertyName", + "HoverBackground": "HoverBackground", + "HoverBackgroundPropertyName": "HoverBackgroundPropertyName", + "HoverStatus": "HoverStatus", + "HoverStatusPropertyName": "HoverStatusPropertyName", + "HoverTextColor": "HoverTextColor", + "HoverTextColorPropertyName": "HoverTextColorPropertyName", + "Indent": "Indent", + "IsBorderDirty": "IsBorderDirty", + "IsCollapsable": "IsCollapsable", + "IsCollapsablePropertyName": "IsCollapsablePropertyName", + "IsContentDirty": "IsContentDirty", + "IsCustomFieldDirty(string)": "IsCustomFieldDirty(string)", + "IsCustomFieldDirty": "IsCustomFieldDirty(string)", + "IsDataDirty": "IsDataDirty", + "IsDeleted": "IsDeleted", + "IsDeletedPropertyName": "IsDeletedPropertyName", + "IsDirty(string)": "IsDirty(string)", + "IsDirty": "IsDirty(string)", + "IsDirtyById(int)": "IsDirtyById(int)", + "IsDirtyById": "IsDirtyById(int)", + "IsEdited": "IsEdited", + "IsEditedPropertyName": "IsEditedPropertyName", + "IsExpanded": "IsExpanded", + "IsExpandedPropertyName": "IsExpandedPropertyName", + "IsFilterRow": "IsFilterRow", + "IsFirstRootSummarySeparator": "IsFirstRootSummarySeparator", + "IsHitTestVisible": "IsHitTestVisible", + "IsHoverable": "IsHoverable", + "IsInEditMode": "IsInEditMode", + "IsLastStickyRow": "IsLastStickyRow", + "IsLayerDirty": "IsLayerDirty", + "IsPlaceholdContentNeeded": "IsPlaceholdContentNeeded", + "IsPositionDirty": "IsPositionDirty", + "IsRootSummary": "IsRootSummary", + "IsRowPinned": "IsRowPinned", + "IsRowSticky": "IsRowSticky", + "IsSectionSummary": "IsSectionSummary", + "IsSelected": "IsSelected", + "IsSelectedPropertyName": "IsSelectedPropertyName", + "IsSizeDirty": "IsSizeDirty", + "IsStateDirty": "IsStateDirty", + "LastStickyRowBackground": "LastStickyRowBackground", + "LineBreakMode": "LineBreakMode", + "Opacity": "Opacity", + "OpacityPropertyName": "OpacityPropertyName", + "OriginalValue": "OriginalValue", + "OriginalValuePropertyName": "OriginalValuePropertyName", + "PaddingBottom": "PaddingBottom", + "PaddingBottomPropertyName": "PaddingBottomPropertyName", + "PaddingLeft": "PaddingLeft", + "PaddingLeftPropertyName": "PaddingLeftPropertyName", + "PaddingRight": "PaddingRight", + "PaddingRightPropertyName": "PaddingRightPropertyName", + "PaddingTop": "PaddingTop", + "PaddingTopPropertyName": "PaddingTopPropertyName", + "Pinned": "Pinned", + "PinnedPropertyName": "PinnedPropertyName", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowOpacity": "PinnedRowOpacity", + "RemoveNamedValue(string)": "RemoveNamedValue(string)", + "RemoveNamedValue": "RemoveNamedValue(string)", + "RenderValue": "RenderValue", + "RenderValuePropertyName": "RenderValuePropertyName", + "RowItem": "RowItem", + "RowItemPropertyName": "RowItemPropertyName", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundPropertyName": "SelectedBackgroundPropertyName", + "SelectedStatus": "SelectedStatus", + "SelectedStatusPropertyName": "SelectedStatusPropertyName", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorPropertyName": "SelectedTextColorPropertyName", + "SetNamedValue(string, object)": "SetNamedValue(string, object)", + "SetNamedValue": "SetNamedValue(string, object)", + "SortDirection": "SortDirection", + "SortDirectionPropertyName": "SortDirectionPropertyName", + "SortIndicatorColor": "SortIndicatorColor", + "SortIndicatorColorPropertyName": "SortIndicatorColorPropertyName", + "StickyRowBackground": "StickyRowBackground", + "StyleKey": "StyleKey", + "SuffixIconCollectionName": "SuffixIconCollectionName", + "SuffixIconCollectionNamePropertyName": "SuffixIconCollectionNamePropertyName", + "SuffixIconFill": "SuffixIconFill", + "SuffixIconFillPropertyName": "SuffixIconFillPropertyName", + "SuffixIconName": "SuffixIconName", + "SuffixIconNamePropertyName": "SuffixIconNamePropertyName", + "SuffixIconStroke": "SuffixIconStroke", + "SuffixIconStrokePropertyName": "SuffixIconStrokePropertyName", + "SuffixIconViewBoxHeight": "SuffixIconViewBoxHeight", + "SuffixIconViewBoxHeightPropertyName": "SuffixIconViewBoxHeightPropertyName", + "SuffixIconViewBoxLeft": "SuffixIconViewBoxLeft", + "SuffixIconViewBoxLeftPropertyName": "SuffixIconViewBoxLeftPropertyName", + "SuffixIconViewBoxTop": "SuffixIconViewBoxTop", + "SuffixIconViewBoxTopPropertyName": "SuffixIconViewBoxTopPropertyName", + "SuffixIconViewBoxWidth": "SuffixIconViewBoxWidth", + "SuffixIconViewBoxWidthPropertyName": "SuffixIconViewBoxWidthPropertyName", + "SuffixMargin": "SuffixMargin", + "SuffixMarginPropertyName": "SuffixMarginPropertyName", + "SuffixText": "SuffixText", + "SuffixTextColor": "SuffixTextColor", + "SuffixTextColorPropertyName": "SuffixTextColorPropertyName", + "SuffixTextFontFamily": "SuffixTextFontFamily", + "SuffixTextFontInfoPropertyName": "SuffixTextFontInfoPropertyName", + "SuffixTextFontPropertyName": "SuffixTextFontPropertyName", + "SuffixTextFontSize": "SuffixTextFontSize", + "SuffixTextFontStyle": "SuffixTextFontStyle", + "SuffixTextFontWeight": "SuffixTextFontWeight", + "SuffixTextPropertyName": "SuffixTextPropertyName", + "TextColor": "TextColor", + "TextColorPropertyName": "TextColorPropertyName", + "TextDecoration": "TextDecoration", + "TextDecorationPropertyName": "TextDecorationPropertyName", + "UserFormattedValue": "UserFormattedValue", + "UserFormattedValuePropertyName": "UserFormattedValuePropertyName", + "VerticalAlignment": "VerticalAlignment", + "VerticalAlignmentPropertyName": "VerticalAlignmentPropertyName", + "VirtualizationPercentage": "VirtualizationPercentage", + "VirtualizationPercentagePropertyName": "VirtualizationPercentagePropertyName", + "Width": "Width", + "WidthPropertyName": "WidthPropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "CellInfoDescription()": "CellInfoDescription()", + "CellInfoDescription": "CellInfoDescription()", + "ActionManager": "ActionManager", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationStatus": "ActivationStatus", + "ActualBackground": "ActualBackground", + "ActualBorder": "ActualBorder", + "ActualBorderBottomWidth": "ActualBorderBottomWidth", + "ActualBorderLeftWidth": "ActualBorderLeftWidth", + "ActualBorderRightWidth": "ActualBorderRightWidth", + "ActualBorderTopWidth": "ActualBorderTopWidth", + "ActualContentOpacity": "ActualContentOpacity", + "ActualFontFamily": "ActualFontFamily", + "ActualFontSize": "ActualFontSize", + "ActualFontStyle": "ActualFontStyle", + "ActualFontWeight": "ActualFontWeight", + "ActualOpacity": "ActualOpacity", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingTop": "ActualPaddingTop", + "ActualTextColor": "ActualTextColor", + "Background": "Background", + "Border": "Border", + "BorderBottomWidth": "BorderBottomWidth", + "BorderLeftWidth": "BorderLeftWidth", + "BorderRightWidth": "BorderRightWidth", + "BorderTopWidth": "BorderTopWidth", + "ColumnIdx": "ColumnIdx", + "ContentOpacity": "ContentOpacity", + "DataRow": "DataRow", + "DeletedTextColor": "DeletedTextColor", + "EditError": "EditError", + "EditFontFamily": "EditFontFamily", + "EditFontSize": "EditFontSize", + "EditFontStyle": "EditFontStyle", + "EditFontWeight": "EditFontWeight", + "EditID": "EditID", + "EditOpacity": "EditOpacity", + "ErrorBorder": "ErrorBorder", + "ErrorBorderBottomWidth": "ErrorBorderBottomWidth", + "ErrorBorderLeftWidth": "ErrorBorderLeftWidth", + "ErrorBorderRightWidth": "ErrorBorderRightWidth", + "ErrorBorderTopWidth": "ErrorBorderTopWidth", + "ExpansionIndicatorIconColor": "ExpansionIndicatorIconColor", + "FilterRowBackground": "FilterRowBackground", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "Height": "Height", + "HorizontalAlignment": "HorizontalAlignment", + "HoverBackground": "HoverBackground", + "HoverStatus": "HoverStatus", + "HoverTextColor": "HoverTextColor", + "Indent": "Indent", + "IsBorderDirty": "IsBorderDirty", + "IsCollapsable": "IsCollapsable", + "IsContentDirty": "IsContentDirty", + "IsDataDirty": "IsDataDirty", + "IsDeleted": "IsDeleted", + "IsEdited": "IsEdited", + "IsExpanded": "IsExpanded", + "IsFilterRow": "IsFilterRow", + "IsFirstRootSummarySeparator": "IsFirstRootSummarySeparator", + "IsHitTestVisible": "IsHitTestVisible", + "IsHoverable": "IsHoverable", + "IsInEditMode": "IsInEditMode", + "IsLastStickyRow": "IsLastStickyRow", + "IsLayerDirty": "IsLayerDirty", + "IsPlaceholdContentNeeded": "IsPlaceholdContentNeeded", + "IsPositionDirty": "IsPositionDirty", + "IsRootSummary": "IsRootSummary", + "IsRowPinned": "IsRowPinned", + "IsRowSticky": "IsRowSticky", + "IsSectionSummary": "IsSectionSummary", + "IsSelected": "IsSelected", + "IsSizeDirty": "IsSizeDirty", + "IsStateDirty": "IsStateDirty", + "LastStickyRowBackground": "LastStickyRowBackground", + "LineBreakMode": "LineBreakMode", + "Opacity": "Opacity", + "OriginalValueRef": "OriginalValueRef", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "Pinned": "Pinned", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowOpacity": "PinnedRowOpacity", + "RenderValue": "RenderValue", + "RowItemRef": "RowItemRef", + "SelectedBackground": "SelectedBackground", + "SelectedStatus": "SelectedStatus", + "SelectedTextColor": "SelectedTextColor", + "SnappedX": "SnappedX", + "SnappedY": "SnappedY", + "SortDirection": "SortDirection", + "SortIndicatorColor": "SortIndicatorColor", + "StickyRowBackground": "StickyRowBackground", + "StyleKey": "StyleKey", + "SuffixIconCollectionName": "SuffixIconCollectionName", + "SuffixIconFill": "SuffixIconFill", + "SuffixIconName": "SuffixIconName", + "SuffixIconStroke": "SuffixIconStroke", + "SuffixIconViewBoxHeight": "SuffixIconViewBoxHeight", + "SuffixIconViewBoxLeft": "SuffixIconViewBoxLeft", + "SuffixIconViewBoxTop": "SuffixIconViewBoxTop", + "SuffixIconViewBoxWidth": "SuffixIconViewBoxWidth", + "SuffixMargin": "SuffixMargin", + "SuffixText": "SuffixText", + "SuffixTextColor": "SuffixTextColor", + "SuffixTextFontFamily": "SuffixTextFontFamily", + "SuffixTextFontSize": "SuffixTextFontSize", + "SuffixTextFontStyle": "SuffixTextFontStyle", + "SuffixTextFontWeight": "SuffixTextFontWeight", + "TextColor": "TextColor", + "TextDecoration": "TextDecoration", + "Type": "Type", + "UserFormattedValue": "UserFormattedValue", + "VerticalAlignment": "VerticalAlignment", + "VirtualizationPercentage": "VirtualizationPercentage", + "Width": "Width", + "X": "X", + "Y": "Y" + } + } + ], + "CellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellInfoDescriptionMetadata()": "CellInfoDescriptionMetadata()", + "CellInfoDescriptionMetadata": "CellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellKey": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/CellKey", + "k": "class", + "s": "classes", + "m": { + "CellKey()": "CellKey()", + "CellKey": "CellKey()", + "ColumnUniqueKey": "ColumnUniqueKey", + "PrimaryKey": "PrimaryKey", + "ResolvedColumn": "ResolvedColumn", + "RowItem": "RowItem", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CellKeyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellKeyDescription", + "k": "class", + "s": "classes", + "m": { + "CellKeyDescription()": "CellKeyDescription()", + "CellKeyDescription": "CellKeyDescription()", + "ColumnUniqueKey": "ColumnUniqueKey", + "PrimaryKey": "PrimaryKey", + "ResolvedColumn": "ResolvedColumn", + "RowItem": "RowItem", + "Type": "Type" + } + } + ], + "CellKeyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellKeyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellKeyDescriptionMetadata()": "CellKeyDescriptionMetadata()", + "CellKeyDescriptionMetadata": "CellKeyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellKeyDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellKeyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CellKeyDescriptionModule()": "CellKeyDescriptionModule()", + "CellKeyDescriptionModule": "CellKeyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/CellModelExport", + "k": "class", + "s": "classes", + "m": { + "CellModelExport()": "CellModelExport()", + "CellModelExport": "CellModelExport()", + "ActivationStatus": "ActivationStatus", + "BackgroundBrushData": "BackgroundBrushData", + "BorderBrushData": "BorderBrushData", + "ContentOpacity": "ContentOpacity", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStretch": "FontStretch", + "FontStyle": "FontStyle", + "FontVariant": "FontVariant", + "FontWeight": "FontWeight", + "Height": "Height", + "HorizontalAlignment": "HorizontalAlignment", + "Indent": "Indent", + "IsCollapsable": "IsCollapsable", + "LineBreakMode": "LineBreakMode", + "Opacity": "Opacity", + "RenderValue": "RenderValue", + "SelectedStatus": "SelectedStatus", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "SnappedX": "SnappedX", + "SnappedY": "SnappedY", + "SortDirection": "SortDirection", + "TextColor": "TextColor", + "Type": "Type", + "VerticalAlignment": "VerticalAlignment", + "VirtualizationPercentage": "VirtualizationPercentage", + "Width": "Width", + "X": "X", + "Y": "Y" + } + } + ], + "CellPropertyAnimationType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/CellPropertyAnimationType", + "k": "enum", + "s": "enums" + } + ], + "CellRange": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/CellRange", + "k": "class", + "s": "classes", + "m": { + "CellRange()": "CellRange()", + "CellRange": "CellRange()", + "EndColumn": "EndColumn", + "EndRow": "EndRow", + "StartColumn": "StartColumn", + "StartRow": "StartRow", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CellRangeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellRangeDescription", + "k": "class", + "s": "classes", + "m": { + "CellRangeDescription()": "CellRangeDescription()", + "CellRangeDescription": "CellRangeDescription()", + "EndColumn": "EndColumn", + "EndRow": "EndRow", + "StartColumn": "StartColumn", + "StartRow": "StartRow", + "Type": "Type" + } + } + ], + "CellRangeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellRangeDescriptionMetadata()": "CellRangeDescriptionMetadata()", + "CellRangeDescriptionMetadata": "CellRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellRangeDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellRangeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CellRangeDescriptionModule()": "CellRangeDescriptionModule()", + "CellRangeDescriptionModule": "CellRangeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellSelectionAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/CellSelectionAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "CellStyleRequestedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/CellStyleRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "CellStyleRequestedEventArgs()": "CellStyleRequestedEventArgs()", + "CellStyleRequestedEventArgs": "CellStyleRequestedEventArgs()", + "ResolvedValue": "ResolvedValue", + "RowNumber": "RowNumber", + "StyleKey": "StyleKey", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CellStyleRequestedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellStyleRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CellStyleRequestedEventArgsDescription()": "CellStyleRequestedEventArgsDescription()", + "CellStyleRequestedEventArgsDescription": "CellStyleRequestedEventArgsDescription()", + "ResolvedValueRef": "ResolvedValueRef", + "RowNumber": "RowNumber", + "StyleKey": "StyleKey", + "Type": "Type" + } + } + ], + "CellStyleRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CellStyleRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CellStyleRequestedEventArgsDescriptionMetadata()": "CellStyleRequestedEventArgsDescriptionMetadata()", + "CellStyleRequestedEventArgsDescriptionMetadata": "CellStyleRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CellType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/CellType", + "k": "enum", + "s": "enums" + } + ], + "ChaikinOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChaikinOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "ChaikinOscillatorIndicator()": "ChaikinOscillatorIndicator()", + "ChaikinOscillatorIndicator": "ChaikinOscillatorIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty" + } + } + ], + "ChaikinOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChaikinOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "ChaikinOscillatorIndicatorDescription()": "ChaikinOscillatorIndicatorDescription()", + "ChaikinOscillatorIndicatorDescription": "ChaikinOscillatorIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "Type": "Type" + } + } + ], + "ChaikinOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChaikinOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChaikinOscillatorIndicatorDescriptionMetadata()": "ChaikinOscillatorIndicatorDescriptionMetadata()", + "ChaikinOscillatorIndicatorDescriptionMetadata": "ChaikinOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChaikinOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChaikinOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChaikinOscillatorIndicatorDescriptionModule()": "ChaikinOscillatorIndicatorDescriptionModule()", + "ChaikinOscillatorIndicatorDescriptionModule": "ChaikinOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChaikinVolatilityIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChaikinVolatilityIndicator", + "k": "class", + "s": "classes", + "m": { + "ChaikinVolatilityIndicator()": "ChaikinVolatilityIndicator()", + "ChaikinVolatilityIndicator": "ChaikinVolatilityIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "ChaikinVolatilityIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChaikinVolatilityIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "ChaikinVolatilityIndicatorDescription()": "ChaikinVolatilityIndicatorDescription()", + "ChaikinVolatilityIndicatorDescription": "ChaikinVolatilityIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "ChaikinVolatilityIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChaikinVolatilityIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChaikinVolatilityIndicatorDescriptionMetadata()": "ChaikinVolatilityIndicatorDescriptionMetadata()", + "ChaikinVolatilityIndicatorDescriptionMetadata": "ChaikinVolatilityIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChaikinVolatilityIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChaikinVolatilityIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChaikinVolatilityIndicatorDescriptionModule()": "ChaikinVolatilityIndicatorDescriptionModule()", + "ChaikinVolatilityIndicatorDescriptionModule": "ChaikinVolatilityIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartCursorEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartCursorEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ChartCursorEventArgsDescription()": "ChartCursorEventArgsDescription()", + "ChartCursorEventArgsDescription": "ChartCursorEventArgsDescription()", + "ItemRef": "ItemRef", + "Series": "Series", + "SeriesViewer": "SeriesViewer", + "Type": "Type" + } + } + ], + "ChartCursorEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartCursorEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartCursorEventArgsDescriptionMetadata()": "ChartCursorEventArgsDescriptionMetadata()", + "ChartCursorEventArgsDescriptionMetadata": "ChartCursorEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartDefaultTooltipData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartDefaultTooltipData", + "k": "class", + "s": "classes", + "m": { + "ChartDefaultTooltipData()": "ChartDefaultTooltipData()", + "ChartDefaultTooltipData": "ChartDefaultTooltipData()", + "OffsetX": "OffsetX", + "OffsetY": "OffsetY", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SeriesData": "SeriesData", + "Viewport": "Viewport" + } + } + ], + "ChartDefaultTooltipSeriesData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartDefaultTooltipSeriesData", + "k": "class", + "s": "classes", + "m": { + "ChartDefaultTooltipSeriesData()": "ChartDefaultTooltipSeriesData()", + "ChartDefaultTooltipSeriesData": "ChartDefaultTooltipSeriesData()", + "AxisLabel": "AxisLabel", + "BadgeBrush": "BadgeBrush", + "BadgeLineBrush": "BadgeLineBrush", + "BadgeOutline": "BadgeOutline", + "BadgeShape": "BadgeShape", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SeriesTitle": "SeriesTitle", + "SeriesTitleBrush": "SeriesTitleBrush", + "SeriesValues": "SeriesValues", + "StaticText": "StaticText", + "ValueNames": "ValueNames" + } + } + ], + "ChartGroupDescription": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescription()": "ChartGroupDescription()", + "ChartGroupDescription": "ChartGroupDescription()", + "ChartGroupDescription(string)": "ChartGroupDescription(string)", + "ChartGroupDescription(string, ListSortDirection)": "ChartGroupDescription(string, ListSortDirection)" + } + } + ], + "ChartGroupDescriptionCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartGroupDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescriptionCollection()": "ChartGroupDescriptionCollection()", + "ChartGroupDescriptionCollection": "ChartGroupDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartGroupDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartGroupDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescriptionDescription()": "ChartGroupDescriptionDescription()", + "ChartGroupDescriptionDescription": "ChartGroupDescriptionDescription()", + "Type": "Type" + } + } + ], + "ChartGroupDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartGroupDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescriptionDescriptionMetadata()": "ChartGroupDescriptionDescriptionMetadata()", + "ChartGroupDescriptionDescriptionMetadata": "ChartGroupDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartGroupDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartGroupDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChartGroupDescriptionDescriptionModule()": "ChartGroupDescriptionDescriptionModule()", + "ChartGroupDescriptionDescriptionModule": "ChartGroupDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartHitTestMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ChartHitTestMode", + "k": "enum", + "s": "enums" + } + ], + "ChartMouseEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartMouseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ChartMouseEventArgsDescription()": "ChartMouseEventArgsDescription()", + "ChartMouseEventArgsDescription": "ChartMouseEventArgsDescription()", + "Chart": "Chart", + "Item": "Item", + "PlotAreaPosition": "PlotAreaPosition", + "SeriesRef": "SeriesRef", + "Type": "Type", + "WorldPosition": "WorldPosition" + } + } + ], + "ChartMouseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartMouseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartMouseEventArgsDescriptionMetadata()": "ChartMouseEventArgsDescriptionMetadata()", + "ChartMouseEventArgsDescriptionMetadata": "ChartMouseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartResizeIdleEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartResizeIdleEventArgs", + "k": "class", + "s": "classes", + "m": { + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartResizeIdleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartResizeIdleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ChartResizeIdleEventArgsDescription()": "ChartResizeIdleEventArgsDescription()", + "ChartResizeIdleEventArgsDescription": "ChartResizeIdleEventArgsDescription()", + "Type": "Type" + } + } + ], + "ChartResizeIdleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartResizeIdleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartResizeIdleEventArgsDescriptionMetadata()": "ChartResizeIdleEventArgsDescriptionMetadata()", + "ChartResizeIdleEventArgsDescriptionMetadata": "ChartResizeIdleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSelectedItemCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartSelectedItemCollection", + "k": "class", + "s": "classes", + "m": { + "ChartSelectedItemCollection()": "ChartSelectedItemCollection()", + "ChartSelectedItemCollection": "ChartSelectedItemCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSelection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartSelection", + "k": "class", + "s": "classes", + "m": { + "ChartSelection()": "ChartSelection()", + "ChartSelection": "ChartSelection()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Item": "Item", + "Matcher": "Matcher", + "Series": "Series", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSelectionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSelectionDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSelectionDescription()": "ChartSelectionDescription()", + "ChartSelectionDescription": "ChartSelectionDescription()", + "Item": "Item", + "Matcher": "Matcher", + "SeriesRef": "SeriesRef", + "Type": "Type" + } + } + ], + "ChartSelectionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSelectionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartSelectionDescriptionMetadata()": "ChartSelectionDescriptionMetadata()", + "ChartSelectionDescriptionMetadata": "ChartSelectionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSelectionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSelectionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChartSelectionDescriptionModule()": "ChartSelectionDescriptionModule()", + "ChartSelectionDescriptionModule": "ChartSelectionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSeriesEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartSeriesEventArgs", + "k": "class", + "s": "classes", + "m": { + "Series": "Series", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSeriesEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSeriesEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSeriesEventArgsDescription()": "ChartSeriesEventArgsDescription()", + "ChartSeriesEventArgsDescription": "ChartSeriesEventArgsDescription()", + "Series": "Series", + "Type": "Type" + } + } + ], + "ChartSeriesEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSeriesEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartSeriesEventArgsDescriptionMetadata()": "ChartSeriesEventArgsDescriptionMetadata()", + "ChartSeriesEventArgsDescriptionMetadata": "ChartSeriesEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSortDescription": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartSortDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescription()": "ChartSortDescription()", + "ChartSortDescription": "ChartSortDescription()", + "ChartSortDescription(string)": "ChartSortDescription(string)", + "ChartSortDescription(string, ListSortDirection)": "ChartSortDescription(string, ListSortDirection)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "SortDirection": "SortDirection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSortDescriptionCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartSortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescriptionCollection()": "ChartSortDescriptionCollection()", + "ChartSortDescriptionCollection": "ChartSortDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSortDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSortDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescriptionDescription()": "ChartSortDescriptionDescription()", + "ChartSortDescriptionDescription": "ChartSortDescriptionDescription()", + "Field": "Field", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "ChartSortDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSortDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescriptionDescriptionMetadata()": "ChartSortDescriptionDescriptionMetadata()", + "ChartSortDescriptionDescriptionMetadata": "ChartSortDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSortDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSortDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChartSortDescriptionDescriptionModule()": "ChartSortDescriptionDescriptionModule()", + "ChartSortDescriptionDescriptionModule": "ChartSortDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSummaryDescription": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartSummaryDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescription()": "ChartSummaryDescription()", + "ChartSummaryDescription": "ChartSummaryDescription()", + "ChartSummaryDescription(string)": "ChartSummaryDescription(string)", + "ChartSummaryDescription(string, DataSourceSummaryOperand)": "ChartSummaryDescription(string, DataSourceSummaryOperand)", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "OnProvideCalculator(ProvideCalculatorEventArgs)": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "OnProvideCalculator": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "Operand": "Operand", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSummaryDescriptionCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartSummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescriptionCollection()": "ChartSummaryDescriptionCollection()", + "ChartSummaryDescriptionCollection": "ChartSummaryDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ChartSummaryDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSummaryDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescriptionDescription()": "ChartSummaryDescriptionDescription()", + "ChartSummaryDescriptionDescription": "ChartSummaryDescriptionDescription()", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Field": "Field", + "Operand": "Operand", + "ProvideCalculatorRef": "ProvideCalculatorRef", + "Type": "Type" + } + } + ], + "ChartSummaryDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSummaryDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescriptionDescriptionMetadata()": "ChartSummaryDescriptionDescriptionMetadata()", + "ChartSummaryDescriptionDescriptionMetadata": "ChartSummaryDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartSummaryDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChartSummaryDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChartSummaryDescriptionDescriptionModule()": "ChartSummaryDescriptionDescriptionModule()", + "ChartSummaryDescriptionDescriptionModule": "ChartSummaryDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChartTitleVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartTitleVisualData", + "k": "class", + "s": "classes", + "m": { + "ChartTitleVisualData()": "ChartTitleVisualData()", + "ChartTitleVisualData": "ChartTitleVisualData()", + "Appearance": "Appearance", + "Height": "Height", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TextPlotArea": "TextPlotArea", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "ChartTitleVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartTitleVisualDataList", + "k": "class", + "s": "classes", + "m": { + "ChartTitleVisualDataList()": "ChartTitleVisualDataList()", + "ChartTitleVisualDataList": "ChartTitleVisualDataList()" + } + } + ], + "ChartToolTipContainerAdapter": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartToolTipContainerAdapter", + "k": "class", + "s": "classes", + "m": { + "ChartToolTipContainerAdapter(CoreDispatcher)": "ChartToolTipContainerAdapter(CoreDispatcher)", + "ChartToolTipContainerAdapter": "ChartToolTipContainerAdapter(CoreDispatcher)", + "Context": "Context", + "GetView(DataContext, UIElement, CustomContentUpdateInfo)": "GetView(DataContext, UIElement, CustomContentUpdateInfo)", + "GetView": "GetView(DataContext, UIElement, CustomContentUpdateInfo)" + } + } + ], + "ChartToolTipUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartToolTipUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "ChartToolTipUpdatingEventArgs()": "ChartToolTipUpdatingEventArgs()", + "ChartToolTipUpdatingEventArgs": "ChartToolTipUpdatingEventArgs()", + "CurrentData": "CurrentData", + "CurrentView": "CurrentView", + "UpdateInfo": "UpdateInfo" + } + } + ], + "ChartVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ChartVisualData", + "k": "class", + "s": "classes", + "m": { + "ChartVisualData()": "ChartVisualData()", + "ChartVisualData": "ChartVisualData()", + "Axes": "Axes", + "CentralArea": "CentralArea", + "ContentArea": "ContentArea", + "DefaultTooltipData": "DefaultTooltipData", + "DipScalingRatio": "DipScalingRatio", + "GetBounds()": "GetBounds()", + "GetBounds": "GetBounds()", + "GetSerializedSeriesPoints(string, string, GetPointsSettings)": "GetSerializedSeriesPoints(string, string, GetPointsSettings)", + "GetSerializedSeriesPoints": "GetSerializedSeriesPoints(string, string, GetPointsSettings)", + "Height": "Height", + "IsViewportScaled": "IsViewportScaled", + "Name": "Name", + "PlotArea": "PlotArea", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Series": "Series", + "Subtitle": "Subtitle", + "Title": "Title", + "Width": "Width" + } + } + ], + "CheckboxChangeEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/CheckboxChangeEventArgs", + "k": "class", + "s": "classes", + "m": { + "CheckboxChangeEventArgs()": "CheckboxChangeEventArgs()", + "CheckboxChangeEventArgs": "CheckboxChangeEventArgs()", + "IsChecked": "IsChecked", + "IsIndeterminate": "IsIndeterminate", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CheckboxChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxChangeEventArgsDescription()": "CheckboxChangeEventArgsDescription()", + "CheckboxChangeEventArgsDescription": "CheckboxChangeEventArgsDescription()", + "IsChecked": "IsChecked", + "IsIndeterminate": "IsIndeterminate", + "Type": "Type" + } + } + ], + "CheckboxChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxChangeEventArgsDescriptionMetadata()": "CheckboxChangeEventArgsDescriptionMetadata()", + "CheckboxChangeEventArgsDescriptionMetadata": "CheckboxChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxDescription()": "CheckboxDescription()", + "CheckboxDescription": "CheckboxDescription()", + "ActualBorderWidth": "ActualBorderWidth", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCornerRadius": "ActualCornerRadius", + "ActualTickColor": "ActualTickColor", + "ActualTickStrokeWidth": "ActualTickStrokeWidth", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "AriaLabel": "AriaLabel", + "AriaLabelledBy": "AriaLabelledBy", + "BaseTheme": "BaseTheme", + "BorderWidth": "BorderWidth", + "ChangeRef": "ChangeRef", + "Checked": "Checked", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "CornerRadius": "CornerRadius", + "DisableRipple": "DisableRipple", + "DisableTransitions": "DisableTransitions", + "Disabled": "Disabled", + "Focused": "Focused", + "Id": "Id", + "Indeterminate": "Indeterminate", + "InputId": "InputId", + "LabelId": "LabelId", + "LabelPosition": "LabelPosition", + "Required": "Required", + "TabIndex": "TabIndex", + "TickColor": "TickColor", + "TickStrokeWidth": "TickStrokeWidth", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor", + "ValueRef": "ValueRef" + } + } + ], + "CheckboxDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxDescriptionMetadata()": "CheckboxDescriptionMetadata()", + "CheckboxDescriptionMetadata": "CheckboxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CheckboxDescriptionModule()": "CheckboxDescriptionModule()", + "CheckboxDescriptionModule": "CheckboxDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxLabelPosition": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/CheckboxLabelPosition", + "k": "enum", + "s": "enums" + } + ], + "CheckboxListDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxListDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxListDescription()": "CheckboxListDescription()", + "CheckboxListDescription": "CheckboxListDescription()", + "ActualSelectAllCaptionTextColor": "ActualSelectAllCaptionTextColor", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "CheckboxAlignedRight": "CheckboxAlignedRight", + "CheckboxCheckedBackgroundColor": "CheckboxCheckedBackgroundColor", + "CheckboxCheckedBorderColor": "CheckboxCheckedBorderColor", + "CheckboxCornerRadius": "CheckboxCornerRadius", + "CheckboxTickColor": "CheckboxTickColor", + "CheckboxUncheckedBackgroundColor": "CheckboxUncheckedBackgroundColor", + "CheckboxUncheckedBorderColor": "CheckboxUncheckedBorderColor", + "CheckedChangedRef": "CheckedChangedRef", + "DataLegendTargetRef": "DataLegendTargetRef", + "DataMemberPath": "DataMemberPath", + "DataSourceRef": "DataSourceRef", + "Density": "Density", + "FilterPlaceholderText": "FilterPlaceholderText", + "IndexType": "IndexType", + "IndexTypeChangedRef": "IndexTypeChangedRef", + "IsRowHoverEnabled": "IsRowHoverEnabled", + "Keys": "Keys", + "KeysClearedRef": "KeysClearedRef", + "LabelClickTriggersChange": "LabelClickTriggersChange", + "LabelClickedRef": "LabelClickedRef", + "PrimaryKey": "PrimaryKey", + "PropertyTypeMemberPath": "PropertyTypeMemberPath", + "RowHeight": "RowHeight", + "RowHoverBackgroundColor": "RowHoverBackgroundColor", + "ScrollbarActiveBackground": "ScrollbarActiveBackground", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarHoverBackground": "ScrollbarHoverBackground", + "ScrollbarStyle": "ScrollbarStyle", + "SearchBackgroundColor": "SearchBackgroundColor", + "SearchBorderColor": "SearchBorderColor", + "SearchFocusBorderColor": "SearchFocusBorderColor", + "SearchFontFamily": "SearchFontFamily", + "SearchFontSize": "SearchFontSize", + "SearchFontStyle": "SearchFontStyle", + "SearchFontWeight": "SearchFontWeight", + "SearchIconColor": "SearchIconColor", + "SearchInputType": "SearchInputType", + "SearchTextColor": "SearchTextColor", + "SelectAllCaption": "SelectAllCaption", + "SelectAllCaptionTextColor": "SelectAllCaptionTextColor", + "SelectAllCheckboxChangedRef": "SelectAllCheckboxChangedRef", + "SelectedKeyAddedRef": "SelectedKeyAddedRef", + "SelectedKeyRemovedRef": "SelectedKeyRemovedRef", + "SelectedMemberPath": "SelectedMemberPath", + "ShowFilter": "ShowFilter", + "ShowSelectAll": "ShowSelectAll", + "SubtitleMemberPath": "SubtitleMemberPath", + "TextColor": "TextColor", + "Type": "Type" + } + } + ], + "CheckboxListDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxListDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxListDescriptionMetadata()": "CheckboxListDescriptionMetadata()", + "CheckboxListDescriptionMetadata": "CheckboxListDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxListDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxListDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CheckboxListDescriptionModule()": "CheckboxListDescriptionModule()", + "CheckboxListDescriptionModule": "CheckboxListDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxListIndexType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/CheckboxListIndexType", + "k": "enum", + "s": "enums" + } + ], + "CheckboxListIndexTypeChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/CheckboxListIndexTypeChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "CheckboxListIndexTypeChangedEventArgs()": "CheckboxListIndexTypeChangedEventArgs()", + "CheckboxListIndexTypeChangedEventArgs": "CheckboxListIndexTypeChangedEventArgs()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CheckboxListIndexTypeChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxListIndexTypeChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxListIndexTypeChangedEventArgsDescription()": "CheckboxListIndexTypeChangedEventArgsDescription()", + "CheckboxListIndexTypeChangedEventArgsDescription": "CheckboxListIndexTypeChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxListIndexTypeChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata()": "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata()", + "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata": "CheckboxListIndexTypeChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxListKeysClearedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/CheckboxListKeysClearedEventArgs", + "k": "class", + "s": "classes", + "m": { + "CheckboxListKeysClearedEventArgs()": "CheckboxListKeysClearedEventArgs()", + "CheckboxListKeysClearedEventArgs": "CheckboxListKeysClearedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CheckboxListKeysClearedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxListKeysClearedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CheckboxListKeysClearedEventArgsDescription()": "CheckboxListKeysClearedEventArgsDescription()", + "CheckboxListKeysClearedEventArgsDescription": "CheckboxListKeysClearedEventArgsDescription()", + "Type": "Type" + } + } + ], + "CheckboxListKeysClearedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckboxListKeysClearedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckboxListKeysClearedEventArgsDescriptionMetadata()": "CheckboxListKeysClearedEventArgsDescriptionMetadata()", + "CheckboxListKeysClearedEventArgsDescriptionMetadata": "CheckboxListKeysClearedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CheckboxListVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/CheckboxListVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "CheckboxListVisualModelExport()": "CheckboxListVisualModelExport()", + "CheckboxListVisualModelExport": "CheckboxListVisualModelExport()", + "ActualRowHeight": "ActualRowHeight", + "ActualSelectAllCaptionTextColor": "ActualSelectAllCaptionTextColor", + "BackgroundColor": "BackgroundColor", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Width": "Width" + } + } + ], + "CheckboxVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/CheckboxVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "CheckboxVisualModelExport()": "CheckboxVisualModelExport()", + "CheckboxVisualModelExport": "CheckboxVisualModelExport()", + "ActualBorderWidth": "ActualBorderWidth", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCornerRadius": "ActualCornerRadius", + "ActualTickColor": "ActualTickColor", + "ActualTickStrokeWidth": "ActualTickStrokeWidth", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "BorderWidth": "BorderWidth", + "CornerRadius": "CornerRadius", + "DisableRipple": "DisableRipple", + "Height": "Height", + "IsChecked": "IsChecked", + "IsDisabled": "IsDisabled", + "IsFocused": "IsFocused", + "IsIndeterminate": "IsIndeterminate", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TickStrokeWidth": "TickStrokeWidth", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "CheckedChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/CheckedChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "CheckedChangedEventArgs()": "CheckedChangedEventArgs()", + "CheckedChangedEventArgs": "CheckedChangedEventArgs()", + "Index": "Index", + "IsChecked": "IsChecked", + "PrimaryKey": "PrimaryKey", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CheckedChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckedChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CheckedChangedEventArgsDescription()": "CheckedChangedEventArgsDescription()", + "CheckedChangedEventArgsDescription": "CheckedChangedEventArgsDescription()", + "Index": "Index", + "IsChecked": "IsChecked", + "PrimaryKeyRef": "PrimaryKeyRef", + "Type": "Type" + } + } + ], + "CheckedChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CheckedChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CheckedChangedEventArgsDescriptionMetadata()": "CheckedChangedEventArgsDescriptionMetadata()", + "CheckedChangedEventArgsDescriptionMetadata": "CheckedChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChildContentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChildContentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChildContentDescriptionModule()": "ChildContentDescriptionModule()", + "ChildContentDescriptionModule": "ChildContentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ChildContentExtendedDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ChildContentExtendedDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ChildContentExtendedDescriptionModule()": "ChildContentExtendedDescriptionModule()", + "ChildContentExtendedDescriptionModule": "ChildContentExtendedDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CircleCollisionGeometry": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CircleCollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "CircleCollisionGeometry(double, double, double)": "CircleCollisionGeometry(double, double, double)", + "CircleCollisionGeometry": "CircleCollisionGeometry(double, double, double)", + "BoundingBox": "BoundingBox", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "Type": "Type" + } + } + ], + "ClientScriptAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/ClientScriptAttribute", + "k": "class", + "s": "classes", + "m": { + "ClientScriptAttribute(string)": "ClientScriptAttribute(string)", + "ClientScriptAttribute": "ClientScriptAttribute(string)", + "ClientScript": "ClientScript" + } + } + ], + "CloneDataSourceFilterOperation": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/CloneDataSourceFilterOperation", + "k": "enum", + "s": "enums" + } + ], + "CodeGeneratingComponentRenderer": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGeneratingComponentRenderer", + "k": "class", + "s": "classes", + "m": { + "AllowEnumIntCoerce()": "AllowEnumIntCoerce()", + "AllowEnumIntCoerce": "AllowEnumIntCoerce()", + "EmitCode(ICodeGenerationRendererTemplate)": "EmitCode(ICodeGenerationRendererTemplate)", + "EmitCode": "EmitCode(ICodeGenerationRendererTemplate)", + "LoadCodeJson(string)": "LoadCodeJson(string)", + "LoadCodeJson": "LoadCodeJson(string)", + "MarkRefUsed(string)": "MarkRefUsed(string)", + "MarkRefUsed": "MarkRefUsed(string)", + "OnSkipAlterDataCasingAltered(bool)": "OnSkipAlterDataCasingAltered(bool)", + "OnSkipAlterDataCasingAltered": "OnSkipAlterDataCasingAltered(bool)", + "ResolveCustomMemberPathTransformer()": "ResolveCustomMemberPathTransformer()", + "ResolveCustomMemberPathTransformer": "ResolveCustomMemberPathTransformer()", + "ShouldForcePascal()": "ShouldForcePascal()", + "ShouldForcePascal": "ShouldForcePascal()", + "ToBrush(string)": "ToBrush(string)", + "ToBrush": "ToBrush(string)", + "ToColor(string)": "ToColor(string)", + "ToColor": "ToColor(string)" + } + } + ], + "CodeGeneratingImportManager": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGeneratingImportManager", + "k": "class", + "s": "classes", + "m": { + "CodeGeneratingImportManager()": "CodeGeneratingImportManager()", + "CodeGeneratingImportManager": "CodeGeneratingImportManager()", + "AddDefaultImport(string, string)": "AddDefaultImport(string, string)", + "AddDefaultImport": "AddDefaultImport(string, string)", + "AddPackageImport(string, string)": "AddPackageImport(string, string)", + "AddPackageImport": "AddPackageImport(string, string)", + "AddUsing(string)": "AddUsing(string)", + "AddUsing": "AddUsing(string)", + "Any()": "Any()", + "Any": "Any()", + "HasPackageImports": "HasPackageImports", + "IsImportsOnly": "IsImportsOnly", + "Merge(CodeGeneratingImportManager, CodeGeneratingImportManager)": "Merge(CodeGeneratingImportManager, CodeGeneratingImportManager)", + "Merge": "Merge(CodeGeneratingImportManager, CodeGeneratingImportManager)", + "PackageImportsToString()": "PackageImportsToString()", + "PackageImportsToString": "PackageImportsToString()", + "PackageOverride": "PackageOverride", + "RemoveDuplicates(CodeGeneratingImportManager)": "RemoveDuplicates(CodeGeneratingImportManager)", + "RemoveDuplicates": "RemoveDuplicates(CodeGeneratingImportManager)", + "UsingsToString(bool)": "UsingsToString(bool)", + "UsingsToString": "UsingsToString(bool)" + } + } + ], + "CodeGeneratingRendererResult": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGeneratingRendererResult", + "k": "class", + "s": "classes", + "m": { + "CodeGeneratingRendererResult()": "CodeGeneratingRendererResult()", + "CodeGeneratingRendererResult": "CodeGeneratingRendererResult()", + "AddContainerNewFileResult(string, string)": "AddContainerNewFileResult(string, string)", + "AddContainerNewFileResult": "AddContainerNewFileResult(string, string)", + "AddContainerResult(string, string)": "AddContainerResult(string, string)", + "AddContainerResult": "AddContainerResult(string, string)", + "AddImportResult(string, CodeGeneratingImportManager)": "AddImportResult(string, CodeGeneratingImportManager)", + "AddImportResult": "AddImportResult(string, CodeGeneratingImportManager)", + "AddPackageRef(string)": "AddPackageRef(string)", + "AddPackageRef": "AddPackageRef(string)", + "DefineString(string, string)": "DefineString(string, string)", + "DefineString": "DefineString(string, string)", + "GenerationOptions": "GenerationOptions", + "GetContentForKey(string)": "GetContentForKey(string)", + "GetContentForKey": "GetContentForKey(string)", + "GetDescriptionField(string)": "GetDescriptionField(string)", + "GetDescriptionField": "GetDescriptionField(string)", + "GetImportsArrayForKey(string)": "GetImportsArrayForKey(string)", + "GetImportsArrayForKey": "GetImportsArrayForKey(string)", + "GetImportsKeys()": "GetImportsKeys()", + "GetImportsKeys": "GetImportsKeys()", + "GetKeys()": "GetKeys()", + "GetKeys": "GetKeys()", + "GetNewFileContent(string)": "GetNewFileContent(string)", + "GetNewFileContent": "GetNewFileContent(string)", + "GetNewFiles()": "GetNewFiles()", + "GetNewFiles": "GetNewFiles()", + "GetPackages()": "GetPackages()", + "GetPackages": "GetPackages()", + "GetString(string)": "GetString(string)", + "GetString": "GetString(string)", + "GetStringNames()": "GetStringNames()", + "GetStringNames": "GetStringNames()", + "HasDescription(string)": "HasDescription(string)", + "HasDescription": "HasDescription(string)", + "Platform": "Platform", + "TrackDescriptionField(string, string)": "TrackDescriptionField(string, string)", + "TrackDescriptionField": "TrackDescriptionField(string, string)" + } + } + ], + "CodeGenerationContainer": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGenerationContainer", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationContainer()": "CodeGenerationContainer()", + "CodeGenerationContainer": "CodeGenerationContainer()", + "Id": "Id", + "MarkRefUsed(string)": "MarkRefUsed(string)", + "MarkRefUsed": "MarkRefUsed(string)" + } + } + ], + "CodeGenerationFolderTemplate": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGenerationFolderTemplate", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationFolderTemplate()": "CodeGenerationFolderTemplate()", + "CodeGenerationFolderTemplate": "CodeGenerationFolderTemplate()", + "AddFile(string, string)": "AddFile(string, string)", + "AddFile": "AddFile(string, string)", + "Execute(CodeGeneratingRendererResult)": "Execute(CodeGeneratingRendererResult)", + "Execute": "Execute(CodeGeneratingRendererResult)", + "GetFileOuutput(string)": "GetFileOuutput(string)", + "GetFileOuutput": "GetFileOuutput(string)", + "GetFilePaths()": "GetFilePaths()", + "GetFilePaths": "GetFilePaths()", + "GetOutput(Dictionary, bool)": "GetOutput(Dictionary, bool)", + "GetOutput": "GetOutput(Dictionary, bool)", + "LoadTemplate(string)": "LoadTemplate(string)", + "LoadTemplate": "LoadTemplate(string)", + "LoadTemplateFromJson(string)": "LoadTemplateFromJson(string)", + "LoadTemplateFromJson": "LoadTemplateFromJson(string)", + "SaveOutput(string, bool)": "SaveOutput(string, bool)", + "SaveOutput": "SaveOutput(string, bool)", + "SaveTemplateToJson()": "SaveTemplateToJson()", + "SaveTemplateToJson": "SaveTemplateToJson()" + } + } + ], + "CodeGenerationLibrary": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGenerationLibrary", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationLibrary()": "CodeGenerationLibrary()", + "CodeGenerationLibrary": "CodeGenerationLibrary()", + "AddItemFromFolder(string, string)": "AddItemFromFolder(string, string)", + "AddItemFromFolder": "AddItemFromFolder(string, string)", + "FromFolder(string)": "FromFolder(string)", + "FromFolder": "FromFolder(string)", + "FromJson(string)": "FromJson(string)", + "FromJson": "FromJson(string)", + "GetItem(string)": "GetItem(string)", + "GetItem": "GetItem(string)", + "GetKeys()": "GetKeys()", + "GetKeys": "GetKeys()", + "HasItem(string)": "HasItem(string)", + "HasItem": "HasItem(string)", + "ToJson()": "ToJson()", + "ToJson": "ToJson()" + } + } + ], + "CodeGenerationLibraryItem": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGenerationLibraryItem", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationLibraryItem()": "CodeGenerationLibraryItem()", + "CodeGenerationLibraryItem": "CodeGenerationLibraryItem()", + "AddPlatformContent(CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemContent)": "AddPlatformContent(CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemContent)", + "AddPlatformContent": "AddPlatformContent(CodeGenerationLibraryItemPlatform, CodeGenerationLibraryItemContent)", + "AddPlatformsFromFile(string)": "AddPlatformsFromFile(string)", + "AddPlatformsFromFile": "AddPlatformsFromFile(string)", + "GetConfigForPlatform(CodeGenerationTargetPlatforms)": "GetConfigForPlatform(CodeGenerationTargetPlatforms)", + "GetConfigForPlatform": "GetConfigForPlatform(CodeGenerationTargetPlatforms)", + "GetConfigForPlatformString(string)": "GetConfigForPlatformString(string)", + "GetConfigForPlatformString": "GetConfigForPlatformString(string)", + "GetContentForPlatform(CodeGenerationTargetPlatforms)": "GetContentForPlatform(CodeGenerationTargetPlatforms)", + "GetContentForPlatform": "GetContentForPlatform(CodeGenerationTargetPlatforms)", + "GetContentForPlatformString(string)": "GetContentForPlatformString(string)", + "GetContentForPlatformString": "GetContentForPlatformString(string)", + "Name": "Name", + "Type": "Type" + } + } + ], + "CodeGenerationLibraryItemContent": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGenerationLibraryItemContent", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationLibraryItemContent()": "CodeGenerationLibraryItemContent()", + "CodeGenerationLibraryItemContent": "CodeGenerationLibraryItemContent()", + "Configs": "Configs", + "Content": "Content", + "IsAsync": "IsAsync", + "IsJSContent": "IsJSContent", + "IsJSX": "IsJSX", + "IsJson": "IsJson", + "Platform": "Platform" + } + } + ], + "CodeGenerationLibraryItemContentConfiguration": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGenerationLibraryItemContentConfiguration", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationLibraryItemContentConfiguration()": "CodeGenerationLibraryItemContentConfiguration()", + "CodeGenerationLibraryItemContentConfiguration": "CodeGenerationLibraryItemContentConfiguration()", + "Location": "Location", + "Platform": "Platform" + } + } + ], + "CodeGenerationLibraryItemContentLocation": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/CodeGenerationLibraryItemContentLocation", + "k": "enum", + "s": "enums" + } + ], + "CodeGenerationLibraryItemPlatform": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/CodeGenerationLibraryItemPlatform", + "k": "enum", + "s": "enums" + } + ], + "CodeGenerationLibraryItemType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/CodeGenerationLibraryItemType", + "k": "enum", + "s": "enums" + } + ], + "CodeGenerationRendererOptions": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CodeGenerationRendererOptions", + "k": "class", + "s": "classes", + "m": { + "CodeGenerationRendererOptions()": "CodeGenerationRendererOptions()", + "CodeGenerationRendererOptions": "CodeGenerationRendererOptions()", + "CDNBasePath": "CDNBasePath", + "ForceCodeBehind": "ForceCodeBehind", + "ForceHelperLookups": "ForceHelperLookups", + "GenerateFullProject": "GenerateFullProject", + "IndentSpaces": "IndentSpaces", + "IsLibraryEmission": "IsLibraryEmission", + "Library": "Library", + "ReusedContext": "ReusedContext", + "SkipAlterDataCasing": "SkipAlterDataCasing", + "SkipAngularEventDestructuring": "SkipAngularEventDestructuring", + "UseSpacesForIndent": "UseSpacesForIndent" + } + } + ], + "CodeGenerationTargetPlatforms": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/CodeGenerationTargetPlatforms", + "k": "enum", + "s": "enums" + } + ], + "CollisionAvoidanceType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CollisionAvoidanceType", + "k": "enum", + "s": "enums" + } + ], + "CollisionGeometry": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "CollisionGeometry()": "CollisionGeometry()", + "CollisionGeometry": "CollisionGeometry()", + "BoundingBox": "BoundingBox", + "CollidesWith(CollisionRect)": "CollidesWith(CollisionRect)", + "CollidesWith": "CollidesWith(CollisionRect)", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "CollidesWithPoint(double, double)": "CollidesWithPoint(double, double)", + "CollidesWithPoint": "CollidesWithPoint(double, double)", + "Type": "Type" + } + } + ], + "CollisionGeometryType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/CollisionGeometryType", + "k": "enum", + "s": "enums" + } + ], + "CollisionRect": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CollisionRect", + "k": "class", + "s": "classes", + "m": { + "CollisionRect()": "CollisionRect()", + "CollisionRect": "CollisionRect()", + "CollisionRect(double, double, double, double)": "CollisionRect(double, double, double, double)", + "Bottom": "Bottom", + "Contains(CollisionRect)": "Contains(CollisionRect)", + "Contains": "Contains(CollisionRect)", + "Contains(double, double)": "Contains(double, double)", + "Copy()": "Copy()", + "Copy": "Copy()", + "Empty": "Empty", + "Equals(CollisionRect)": "Equals(CollisionRect)", + "Equals": "Equals(CollisionRect)", + "Equals(object)": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Height": "Height", + "Inflate(double, double)": "Inflate(double, double)", + "Inflate": "Inflate(double, double)", + "Intersect(CollisionRect)": "Intersect(CollisionRect)", + "Intersect": "Intersect(CollisionRect)", + "IntersectsWith(CollisionRect)": "IntersectsWith(CollisionRect)", + "IntersectsWith": "IntersectsWith(CollisionRect)", + "IsEmpty": "IsEmpty", + "Left": "Left", + "Right": "Right", + "Top": "Top", + "Union(CollisionRect)": "Union(CollisionRect)", + "Union": "Union(CollisionRect)", + "Width": "Width", + "X": "X", + "Y": "Y" + } + } + ], + "ColorData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorData", + "k": "class", + "s": "classes", + "m": { + "ColorData()": "ColorData()", + "ColorData": "ColorData()", + "A": "A", + "B": "B", + "G": "G", + "R": "R", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "ColorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorDescription", + "k": "class", + "s": "classes", + "m": { + "ColorDescription()": "ColorDescription()", + "ColorDescription": "ColorDescription()", + "Value": "Value" + } + } + ], + "ColorEditorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorDescription()": "ColorEditorDescription()", + "ColorEditorDescription": "ColorEditorDescription()", + "AllowTextInput": "AllowTextInput", + "BaseTheme": "BaseTheme", + "Density": "Density", + "GotFocusRef": "GotFocusRef", + "IconColor": "IconColor", + "IsDisabled": "IsDisabled", + "IsFixed": "IsFixed", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelTextColor": "LabelTextColor", + "LostFocusRef": "LostFocusRef", + "OpenAsChild": "OpenAsChild", + "OpenOnFocus": "OpenOnFocus", + "ShowClearButton": "ShowClearButton", + "TextColor": "TextColor", + "TextFontFamily": "TextFontFamily", + "TextFontSize": "TextFontSize", + "TextFontStyle": "TextFontStyle", + "TextFontWeight": "TextFontWeight", + "Type": "Type", + "UseTopLayer": "UseTopLayer", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef", + "ValueChangingRef": "ValueChangingRef" + } + } + ], + "ColorEditorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorDescriptionMetadata()": "ColorEditorDescriptionMetadata()", + "ColorEditorDescriptionMetadata": "ColorEditorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColorEditorDescriptionModule()": "ColorEditorDescriptionModule()", + "ColorEditorDescriptionModule": "ColorEditorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorGotFocusEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ColorEditorGotFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColorEditorGotFocusEventArgs()": "ColorEditorGotFocusEventArgs()", + "ColorEditorGotFocusEventArgs": "ColorEditorGotFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorEditorGotFocusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorGotFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorGotFocusEventArgsDescription()": "ColorEditorGotFocusEventArgsDescription()", + "ColorEditorGotFocusEventArgsDescription": "ColorEditorGotFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "ColorEditorGotFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorGotFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorGotFocusEventArgsDescriptionMetadata()": "ColorEditorGotFocusEventArgsDescriptionMetadata()", + "ColorEditorGotFocusEventArgsDescriptionMetadata": "ColorEditorGotFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorLostFocusEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ColorEditorLostFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColorEditorLostFocusEventArgs()": "ColorEditorLostFocusEventArgs()", + "ColorEditorLostFocusEventArgs": "ColorEditorLostFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorEditorLostFocusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorLostFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorLostFocusEventArgsDescription()": "ColorEditorLostFocusEventArgsDescription()", + "ColorEditorLostFocusEventArgsDescription": "ColorEditorLostFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "ColorEditorLostFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorLostFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorLostFocusEventArgsDescriptionMetadata()": "ColorEditorLostFocusEventArgsDescriptionMetadata()", + "ColorEditorLostFocusEventArgsDescriptionMetadata": "ColorEditorLostFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorPanelClosedEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ColorEditorPanelClosedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelClosedEventArgs()": "ColorEditorPanelClosedEventArgs()", + "ColorEditorPanelClosedEventArgs": "ColorEditorPanelClosedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorEditorPanelClosedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorPanelClosedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelClosedEventArgsDescription()": "ColorEditorPanelClosedEventArgsDescription()", + "ColorEditorPanelClosedEventArgsDescription": "ColorEditorPanelClosedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ColorEditorPanelClosedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorPanelClosedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelClosedEventArgsDescriptionMetadata()": "ColorEditorPanelClosedEventArgsDescriptionMetadata()", + "ColorEditorPanelClosedEventArgsDescriptionMetadata": "ColorEditorPanelClosedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorPanelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelDescription()": "ColorEditorPanelDescription()", + "ColorEditorPanelDescription": "ColorEditorPanelDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "Density": "Density", + "FocusColorBorderColor": "FocusColorBorderColor", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HoverBackgroundColor": "HoverBackgroundColor", + "PixelScalingRatio": "PixelScalingRatio", + "SelectedColorBorderColor": "SelectedColorBorderColor", + "SelectedFocusDateBackgroundColor": "SelectedFocusDateBackgroundColor", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef", + "ValueChangingRef": "ValueChangingRef" + } + } + ], + "ColorEditorPanelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelDescriptionMetadata()": "ColorEditorPanelDescriptionMetadata()", + "ColorEditorPanelDescriptionMetadata": "ColorEditorPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorPanelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelDescriptionModule()": "ColorEditorPanelDescriptionModule()", + "ColorEditorPanelDescriptionModule": "ColorEditorPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorPanelSelectedValueChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ColorEditorPanelSelectedValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelSelectedValueChangedEventArgs()": "ColorEditorPanelSelectedValueChangedEventArgs()", + "ColorEditorPanelSelectedValueChangedEventArgs": "ColorEditorPanelSelectedValueChangedEventArgs()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorEditorPanelSelectedValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorPanelSelectedValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelSelectedValueChangedEventArgsDescription()": "ColorEditorPanelSelectedValueChangedEventArgsDescription()", + "ColorEditorPanelSelectedValueChangedEventArgsDescription": "ColorEditorPanelSelectedValueChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata()": "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata()", + "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata": "ColorEditorPanelSelectedValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorEditorVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/ColorEditorVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "ColorEditorVisualModelExport()": "ColorEditorVisualModelExport()", + "ColorEditorVisualModelExport": "ColorEditorVisualModelExport()", + "Height": "Height", + "IsDisabled": "IsDisabled", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "Colors": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/Colors", + "k": "class", + "s": "classes", + "m": { + "AliceBlue": "AliceBlue", + "AntiqueWhite": "AntiqueWhite", + "Aqua": "Aqua", + "Aquamarine": "Aquamarine", + "Azure": "Azure", + "Beige": "Beige", + "Bisque": "Bisque", + "Black": "Black", + "BlanchedAlmond": "BlanchedAlmond", + "Blue": "Blue", + "BlueViolet": "BlueViolet", + "Brown": "Brown", + "BurlyWood": "BurlyWood", + "CadetBlue": "CadetBlue", + "Chartreuse": "Chartreuse", + "Chocolate": "Chocolate", + "Coral": "Coral", + "CornflowerBlue": "CornflowerBlue", + "Cornsilk": "Cornsilk", + "Crimson": "Crimson", + "Cyan": "Cyan", + "DarkBlue": "DarkBlue", + "DarkCyan": "DarkCyan", + "DarkGoldenrod": "DarkGoldenrod", + "DarkGray": "DarkGray", + "DarkGreen": "DarkGreen", + "DarkKhaki": "DarkKhaki", + "DarkMagenta": "DarkMagenta", + "DarkOliveGreen": "DarkOliveGreen", + "DarkOrange": "DarkOrange", + "DarkOrchid": "DarkOrchid", + "DarkRed": "DarkRed", + "DarkSalmon": "DarkSalmon", + "DarkSeaGreen": "DarkSeaGreen", + "DarkSlateBlue": "DarkSlateBlue", + "DarkSlateGray": "DarkSlateGray", + "DarkTurquoise": "DarkTurquoise", + "DarkViolet": "DarkViolet", + "DeepPink": "DeepPink", + "DeepSkyBlue": "DeepSkyBlue", + "DimGray": "DimGray", + "DodgerBlue": "DodgerBlue", + "Firebrick": "Firebrick", + "FloralWhite": "FloralWhite", + "ForestGreen": "ForestGreen", + "Fuchsia": "Fuchsia", + "Gainsboro": "Gainsboro", + "GhostWhite": "GhostWhite", + "Gold": "Gold", + "Goldenrod": "Goldenrod", + "Gray": "Gray", + "Green": "Green", + "GreenYellow": "GreenYellow", + "Honeydew": "Honeydew", + "HotPink": "HotPink", + "IndianRed": "IndianRed", + "Indigo": "Indigo", + "Ivory": "Ivory", + "Khaki": "Khaki", + "Lavender": "Lavender", + "LavenderBlush": "LavenderBlush", + "LawnGreen": "LawnGreen", + "LemonChiffon": "LemonChiffon", + "LightBlue": "LightBlue", + "LightCoral": "LightCoral", + "LightCyan": "LightCyan", + "LightGoldenrodYellow": "LightGoldenrodYellow", + "LightGray": "LightGray", + "LightGreen": "LightGreen", + "LightPink": "LightPink", + "LightSalmon": "LightSalmon", + "LightSeaGreen": "LightSeaGreen", + "LightSkyBlue": "LightSkyBlue", + "LightSlateGray": "LightSlateGray", + "LightSteelBlue": "LightSteelBlue", + "LightYellow": "LightYellow", + "Lime": "Lime", + "LimeGreen": "LimeGreen", + "Linen": "Linen", + "Magenta": "Magenta", + "Maroon": "Maroon", + "MediumAquamarine": "MediumAquamarine", + "MediumBlue": "MediumBlue", + "MediumOrchid": "MediumOrchid", + "MediumPurple": "MediumPurple", + "MediumSeaGreen": "MediumSeaGreen", + "MediumSlateBlue": "MediumSlateBlue", + "MediumSpringGreen": "MediumSpringGreen", + "MediumTurquoise": "MediumTurquoise", + "MediumVioletRed": "MediumVioletRed", + "MidnightBlue": "MidnightBlue", + "MintCream": "MintCream", + "MistyRose": "MistyRose", + "Moccasin": "Moccasin", + "NavajoWhite": "NavajoWhite", + "Navy": "Navy", + "OldLace": "OldLace", + "Olive": "Olive", + "OliveDrab": "OliveDrab", + "Orange": "Orange", + "OrangeRed": "OrangeRed", + "Orchid": "Orchid", + "PaleGoldenrod": "PaleGoldenrod", + "PaleGreen": "PaleGreen", + "PaleTurquoise": "PaleTurquoise", + "PaleVioletRed": "PaleVioletRed", + "PapayaWhip": "PapayaWhip", + "PeachPuff": "PeachPuff", + "Peru": "Peru", + "Pink": "Pink", + "Plum": "Plum", + "PowderBlue": "PowderBlue", + "Purple": "Purple", + "Red": "Red", + "RosyBrown": "RosyBrown", + "RoyalBlue": "RoyalBlue", + "SaddleBrown": "SaddleBrown", + "Salmon": "Salmon", + "SandyBrown": "SandyBrown", + "SeaGreen": "SeaGreen", + "SeaShell": "SeaShell", + "Sienna": "Sienna", + "Silver": "Silver", + "SkyBlue": "SkyBlue", + "SlateBlue": "SlateBlue", + "SlateGray": "SlateGray", + "Snow": "Snow", + "SpringGreen": "SpringGreen", + "SteelBlue": "SteelBlue", + "Tan": "Tan", + "Teal": "Teal", + "Thistle": "Thistle", + "Tomato": "Tomato", + "Transparent": "Transparent", + "Turquoise": "Turquoise", + "Violet": "Violet", + "Wheat": "Wheat", + "White": "White", + "WhiteSmoke": "WhiteSmoke", + "Yellow": "Yellow", + "YellowGreen": "YellowGreen" + } + } + ], + "ColorScale": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ColorScale", + "k": "class", + "s": "classes", + "m": { + "GetColor(double, double, double, IList)": "GetColor(double, double, double, IList)", + "GetColor": "GetColor(double, double, double, IList)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColorScaleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorScaleDescription", + "k": "class", + "s": "classes", + "m": { + "ColorScaleDescription()": "ColorScaleDescription()", + "ColorScaleDescription": "ColorScaleDescription()", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type" + } + } + ], + "ColorScaleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColorScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColorScaleDescriptionMetadata()": "ColorScaleDescriptionMetadata()", + "ColorScaleDescriptionMetadata": "ColorScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColorScaleInterpolationMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ColorScaleInterpolationMode", + "k": "enum", + "s": "enums" + } + ], + "Column": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/Column", + "k": "class", + "s": "classes", + "m": { + "Column()": "Column()", + "Column": "Column()" + } + } + ], + "ColumnChooserDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnChooserDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnChooserDescription()": "ColumnChooserDescription()", + "ColumnChooserDescription": "ColumnChooserDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "Density": "Density", + "FilterPlaceholderText": "FilterPlaceholderText", + "TargetGridRef": "TargetGridRef", + "Title": "Title", + "TitleColor": "TitleColor", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "Type": "Type" + } + } + ], + "ColumnChooserDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnChooserDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnChooserDescriptionMetadata()": "ColumnChooserDescriptionMetadata()", + "ColumnChooserDescriptionMetadata": "ColumnChooserDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnChooserDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnChooserDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnChooserDescriptionModule()": "ColumnChooserDescriptionModule()", + "ColumnChooserDescriptionModule": "ColumnChooserDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnComparisonConditionOperatorType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnComparisonConditionOperatorType", + "k": "enum", + "s": "enums" + } + ], + "ColumnComparisonFilterCondition": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnComparisonFilterCondition", + "k": "class", + "s": "classes", + "m": { + "ColumnComparisonFilterCondition()": "ColumnComparisonFilterCondition()", + "ColumnComparisonFilterCondition": "ColumnComparisonFilterCondition()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetApplicableOperators(DataSourceSchemaPropertyType)": "GetApplicableOperators(DataSourceSchemaPropertyType)", + "GetApplicableOperators": "GetApplicableOperators(DataSourceSchemaPropertyType)", + "GetOperandNumber(ColumnComparisonConditionOperatorType)": "GetOperandNumber(ColumnComparisonConditionOperatorType)", + "GetOperandNumber": "GetOperandNumber(ColumnComparisonConditionOperatorType)", + "GetOperandNumbers(ColumnComparisonConditionOperatorType[])": "GetOperandNumbers(ColumnComparisonConditionOperatorType[])", + "GetOperandNumbers": "GetOperandNumbers(ColumnComparisonConditionOperatorType[])", + "IsCaseSensitive": "IsCaseSensitive", + "Operator": "Operator", + "ResolveFilter(string, DataSourceSchemaPropertyType)": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ResolveFilter": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "Value": "Value" + } + } + ], + "ColumnComparisonFilterConditionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnComparisonFilterConditionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnComparisonFilterConditionDescription()": "ColumnComparisonFilterConditionDescription()", + "ColumnComparisonFilterConditionDescription": "ColumnComparisonFilterConditionDescription()", + "IsCaseSensitive": "IsCaseSensitive", + "Operator": "Operator", + "Type": "Type", + "Value": "Value" + } + } + ], + "ColumnComparisonFilterConditionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnComparisonFilterConditionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnComparisonFilterConditionDescriptionMetadata()": "ColumnComparisonFilterConditionDescriptionMetadata()", + "ColumnComparisonFilterConditionDescriptionMetadata": "ColumnComparisonFilterConditionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnCustomFilterCondition": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnCustomFilterCondition", + "k": "class", + "s": "classes", + "m": { + "ColumnCustomFilterCondition()": "ColumnCustomFilterCondition()", + "ColumnCustomFilterCondition": "ColumnCustomFilterCondition()", + "ID": "ID", + "Index": "Index", + "ResolveFilter(string, DataSourceSchemaPropertyType)": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ResolveFilter": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "Value": "Value" + } + } + ], + "ColumnCustomFilterConditionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnCustomFilterConditionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnCustomFilterConditionDescription()": "ColumnCustomFilterConditionDescription()", + "ColumnCustomFilterConditionDescription": "ColumnCustomFilterConditionDescription()", + "Id": "Id", + "Index": "Index", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "ColumnCustomFilterConditionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnCustomFilterConditionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnCustomFilterConditionDescriptionMetadata()": "ColumnCustomFilterConditionDescriptionMetadata()", + "ColumnCustomFilterConditionDescriptionMetadata": "ColumnCustomFilterConditionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnDependenciesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnDependenciesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnDependenciesDescriptionModule()": "ColumnDependenciesDescriptionModule()", + "ColumnDependenciesDescriptionModule": "ColumnDependenciesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnExchanger": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnExchanger", + "k": "class", + "s": "classes", + "m": { + "ColumnExchanger()": "ColumnExchanger()", + "ColumnExchanger": "ColumnExchanger()", + "ColumnExchanger(DataGridColumn, int)": "ColumnExchanger(DataGridColumn, int)", + "Column": "Column", + "ColumnProperty": "ColumnProperty", + "TargetIndex": "TargetIndex", + "TargetIndexProperty": "TargetIndexProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnExchangerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnExchangerDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnExchangerDescription()": "ColumnExchangerDescription()", + "ColumnExchangerDescription": "ColumnExchangerDescription()", + "TargetIndex": "TargetIndex", + "Type": "Type" + } + } + ], + "ColumnExchangerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnExchangerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnExchangerDescriptionMetadata()": "ColumnExchangerDescriptionMetadata()", + "ColumnExchangerDescriptionMetadata": "ColumnExchangerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnExchangersCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnExchangersCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnExchangersCollection()": "ColumnExchangersCollection()", + "ColumnExchangersCollection": "ColumnExchangersCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnExchangingAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnExchangingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnFilterCondition": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnFilterCondition", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterCondition()": "ColumnFilterCondition()", + "ColumnFilterCondition": "ColumnFilterCondition()", + "IsGroup()": "IsGroup()", + "IsGroup": "IsGroup()", + "ResolveFilter(string, DataSourceSchemaPropertyType)": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ResolveFilter": "ResolveFilter(string, DataSourceSchemaPropertyType)" + } + } + ], + "ColumnFilterConditionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnFilterConditionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionDescription()": "ColumnFilterConditionDescription()", + "ColumnFilterConditionDescription": "ColumnFilterConditionDescription()", + "Type": "Type" + } + } + ], + "ColumnFilterConditionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnFilterConditionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionDescriptionMetadata()": "ColumnFilterConditionDescriptionMetadata()", + "ColumnFilterConditionDescriptionMetadata": "ColumnFilterConditionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnFilterConditionGroup": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnFilterConditionGroup", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionGroup()": "ColumnFilterConditionGroup()", + "ColumnFilterConditionGroup": "ColumnFilterConditionGroup()", + "Add(ColumnFilterCondition)": "Add(ColumnFilterCondition)", + "Add": "Add(ColumnFilterCondition)", + "Clear()": "Clear()", + "Clear": "Clear()", + "Conditions": "Conditions", + "Count": "Count", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "IsGroup()": "IsGroup()", + "IsGroup": "IsGroup()", + "this[int]": "this[int]", + "Remove(ColumnFilterCondition)": "Remove(ColumnFilterCondition)", + "Remove": "Remove(ColumnFilterCondition)", + "RemoveAt(int)": "RemoveAt(int)", + "RemoveAt": "RemoveAt(int)", + "ResolveFilter(string, DataSourceSchemaPropertyType)": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ResolveFilter": "ResolveFilter(string, DataSourceSchemaPropertyType)", + "ToArray()": "ToArray()", + "ToArray": "ToArray()", + "UsesOrOperator": "UsesOrOperator" + } + } + ], + "ColumnFilterConditionGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnFilterConditionGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionGroupDescription()": "ColumnFilterConditionGroupDescription()", + "ColumnFilterConditionGroupDescription": "ColumnFilterConditionGroupDescription()", + "Conditions": "Conditions", + "Item": "Item", + "Type": "Type", + "UsesOrOperator": "UsesOrOperator" + } + } + ], + "ColumnFilterConditionGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnFilterConditionGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnFilterConditionGroupDescriptionMetadata()": "ColumnFilterConditionGroupDescriptionMetadata()", + "ColumnFilterConditionGroupDescriptionMetadata": "ColumnFilterConditionGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnFragmentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnFragmentDescription()": "ColumnFragmentDescription()", + "ColumnFragmentDescription": "ColumnFragmentDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "ColumnFragmentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnFragmentDescriptionMetadata()": "ColumnFragmentDescriptionMetadata()", + "ColumnFragmentDescriptionMetadata": "ColumnFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnFragmentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnFragmentDescriptionModule()": "ColumnFragmentDescriptionModule()", + "ColumnFragmentDescriptionModule": "ColumnFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnGroupDescription": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescription()": "ColumnGroupDescription()", + "ColumnGroupDescription": "ColumnGroupDescription()", + "ColumnGroupDescription(string)": "ColumnGroupDescription(string)", + "ColumnGroupDescription(string, ListSortDirection)": "ColumnGroupDescription(string, ListSortDirection)", + "ColumnGroupDescription(string, ListSortDirection, string)": "ColumnGroupDescription(string, ListSortDirection, string)", + "DisplayFormat": "DisplayFormat", + "DisplayFormatSpecifiers": "DisplayFormatSpecifiers", + "DisplayName": "DisplayName", + "OnFormatText(FormatGroupTextEventArgs)": "OnFormatText(FormatGroupTextEventArgs)", + "OnFormatText": "OnFormatText(FormatGroupTextEventArgs)", + "ValueFormat": "ValueFormat", + "ValueFormatSpecifiers": "ValueFormatSpecifiers" + } + } + ], + "ColumnGroupDescriptionCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnGroupDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescriptionCollection()": "ColumnGroupDescriptionCollection()", + "ColumnGroupDescriptionCollection": "ColumnGroupDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnGroupDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnGroupDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescriptionDescription()": "ColumnGroupDescriptionDescription()", + "ColumnGroupDescriptionDescription": "ColumnGroupDescriptionDescription()", + "DisplayFormat": "DisplayFormat", + "DisplayFormatSpecifiers": "DisplayFormatSpecifiers", + "DisplayName": "DisplayName", + "FormatTextRef": "FormatTextRef", + "Type": "Type", + "ValueFormat": "ValueFormat", + "ValueFormatSpecifiers": "ValueFormatSpecifiers" + } + } + ], + "ColumnGroupDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnGroupDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescriptionDescriptionMetadata()": "ColumnGroupDescriptionDescriptionMetadata()", + "ColumnGroupDescriptionDescriptionMetadata": "ColumnGroupDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnGroupDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnGroupDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupDescriptionDescriptionModule()": "ColumnGroupDescriptionDescriptionModule()", + "ColumnGroupDescriptionDescriptionModule": "ColumnGroupDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnGroupingDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnGroupingDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupingDescription()": "ColumnGroupingDescription()", + "ColumnGroupingDescription": "ColumnGroupingDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "ColumnGroupTitleFontFamily": "ColumnGroupTitleFontFamily", + "ColumnGroupTitleFontSize": "ColumnGroupTitleFontSize", + "ColumnGroupTitleFontStyle": "ColumnGroupTitleFontStyle", + "ColumnGroupTitleFontWeight": "ColumnGroupTitleFontWeight", + "Density": "Density", + "IconColor": "IconColor", + "ItemBackgroundColor": "ItemBackgroundColor", + "ItemHoverBackgroundColor": "ItemHoverBackgroundColor", + "TargetGridRef": "TargetGridRef", + "TextColor": "TextColor", + "Title": "Title", + "TitleColor": "TitleColor", + "Type": "Type" + } + } + ], + "ColumnGroupingDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnGroupingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupingDescriptionMetadata()": "ColumnGroupingDescriptionMetadata()", + "ColumnGroupingDescriptionMetadata": "ColumnGroupingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnGroupingDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnGroupingDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnGroupingDescriptionModule()": "ColumnGroupingDescriptionModule()", + "ColumnGroupingDescriptionModule": "ColumnGroupingDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnHiddenChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnHiddenChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColumnHiddenChangedEventArgs()": "ColumnHiddenChangedEventArgs()", + "ColumnHiddenChangedEventArgs": "ColumnHiddenChangedEventArgs()", + "Column": "Column", + "IsHidden": "IsHidden", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnHiddenChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnHiddenChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnHiddenChangedEventArgsDescription()": "ColumnHiddenChangedEventArgsDescription()", + "ColumnHiddenChangedEventArgsDescription": "ColumnHiddenChangedEventArgsDescription()", + "Column": "Column", + "IsHidden": "IsHidden", + "Type": "Type" + } + } + ], + "ColumnHiddenChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnHiddenChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnHiddenChangedEventArgsDescriptionMetadata()": "ColumnHiddenChangedEventArgsDescriptionMetadata()", + "ColumnHiddenChangedEventArgsDescriptionMetadata": "ColumnHiddenChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnHidingAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnHidingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnMovingAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnMovingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnMovingMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnMovingMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnMovingSeparator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnMovingSeparator", + "k": "class", + "s": "classes", + "m": { + "ColumnMovingSeparator()": "ColumnMovingSeparator()", + "ColumnMovingSeparator": "ColumnMovingSeparator()", + "ActualOpacity": "ActualOpacity", + "ActualOpacityProperty": "ActualOpacityProperty", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty", + "SeparatorWidth": "SeparatorWidth", + "SeparatorWidthProperty": "SeparatorWidthProperty" + } + } + ], + "ColumnMovingSeparatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnMovingSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnMovingSeparatorDescription()": "ColumnMovingSeparatorDescription()", + "ColumnMovingSeparatorDescription": "ColumnMovingSeparatorDescription()", + "ActualOpacity": "ActualOpacity", + "Opacity": "Opacity", + "SeparatorWidth": "SeparatorWidth", + "Type": "Type" + } + } + ], + "ColumnMovingSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnMovingSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnMovingSeparatorDescriptionMetadata()": "ColumnMovingSeparatorDescriptionMetadata()", + "ColumnMovingSeparatorDescriptionMetadata": "ColumnMovingSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnMovingSeparatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnMovingSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnMovingSeparatorDescriptionModule()": "ColumnMovingSeparatorDescriptionModule()", + "ColumnMovingSeparatorDescriptionModule": "ColumnMovingSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnOptionsIconAlignment": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnOptionsIconAlignment", + "k": "enum", + "s": "enums" + } + ], + "ColumnOptionsIconBehavior": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnOptionsIconBehavior", + "k": "enum", + "s": "enums" + } + ], + "ColumnPinnedChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnPinnedChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ColumnPinnedChangedEventArgs()": "ColumnPinnedChangedEventArgs()", + "ColumnPinnedChangedEventArgs": "ColumnPinnedChangedEventArgs()", + "Column": "Column", + "Pinned": "Pinned", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnPinnedChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnPinnedChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnPinnedChangedEventArgsDescription()": "ColumnPinnedChangedEventArgsDescription()", + "ColumnPinnedChangedEventArgsDescription": "ColumnPinnedChangedEventArgsDescription()", + "Column": "Column", + "Pinned": "Pinned", + "Type": "Type" + } + } + ], + "ColumnPinnedChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnPinnedChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnPinnedChangedEventArgsDescriptionMetadata()": "ColumnPinnedChangedEventArgsDescriptionMetadata()", + "ColumnPinnedChangedEventArgsDescriptionMetadata": "ColumnPinnedChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnPinningDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnPinningDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnPinningDescription()": "ColumnPinningDescription()", + "ColumnPinningDescription": "ColumnPinningDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "Density": "Density", + "FilterPlaceholderText": "FilterPlaceholderText", + "TargetGridRef": "TargetGridRef", + "Title": "Title", + "TitleColor": "TitleColor", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "Type": "Type" + } + } + ], + "ColumnPinningDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnPinningDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnPinningDescriptionMetadata()": "ColumnPinningDescriptionMetadata()", + "ColumnPinningDescriptionMetadata": "ColumnPinningDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnPinningDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnPinningDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnPinningDescriptionModule()": "ColumnPinningDescriptionModule()", + "ColumnPinningDescriptionModule": "ColumnPinningDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnPropertySetter": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnPropertySetter", + "k": "class", + "s": "classes", + "m": { + "ColumnPropertySetter()": "ColumnPropertySetter()", + "ColumnPropertySetter": "ColumnPropertySetter()", + "ColumnPropertySetter(string, string, object)": "ColumnPropertySetter(string, string, object)", + "ColumnName": "ColumnName", + "ColumnNameProperty": "ColumnNameProperty", + "PropertyName": "PropertyName", + "PropertyNameProperty": "PropertyNameProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnPropertySetterDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnPropertySetterDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnPropertySetterDescription()": "ColumnPropertySetterDescription()", + "ColumnPropertySetterDescription": "ColumnPropertySetterDescription()", + "ColumnName": "ColumnName", + "PropertyName": "PropertyName", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "ColumnPropertySetterDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnPropertySetterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnPropertySetterDescriptionMetadata()": "ColumnPropertySetterDescriptionMetadata()", + "ColumnPropertySetterDescriptionMetadata": "ColumnPropertySetterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnPropertySettersCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnPropertySettersCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnPropertySettersCollection()": "ColumnPropertySettersCollection()", + "ColumnPropertySettersCollection": "ColumnPropertySettersCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnPropertyUpdatingAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnPropertyUpdatingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnResizingAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnResizingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnResizingMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnResizingMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnResizingSeparator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnResizingSeparator", + "k": "class", + "s": "classes", + "m": { + "ColumnResizingSeparator()": "ColumnResizingSeparator()", + "ColumnResizingSeparator": "ColumnResizingSeparator()", + "ActualOpacity": "ActualOpacity", + "ActualOpacityProperty": "ActualOpacityProperty", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty" + } + } + ], + "ColumnResizingSeparatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnResizingSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnResizingSeparatorDescription()": "ColumnResizingSeparatorDescription()", + "ColumnResizingSeparatorDescription": "ColumnResizingSeparatorDescription()", + "ActualOpacity": "ActualOpacity", + "Opacity": "Opacity", + "Type": "Type" + } + } + ], + "ColumnResizingSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnResizingSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnResizingSeparatorDescriptionMetadata()": "ColumnResizingSeparatorDescriptionMetadata()", + "ColumnResizingSeparatorDescriptionMetadata": "ColumnResizingSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnResizingSeparatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnResizingSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnResizingSeparatorDescriptionModule()": "ColumnResizingSeparatorDescriptionModule()", + "ColumnResizingSeparatorDescriptionModule": "ColumnResizingSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ColumnSeries", + "k": "class", + "s": "classes", + "m": { + "ColumnSeries()": "ColumnSeries()", + "ColumnSeries": "ColumnSeries()", + "ConsolidatedColumnVerticalPosition": "ConsolidatedColumnVerticalPosition", + "ConsolidatedColumnVerticalPositionProperty": "ConsolidatedColumnVerticalPositionProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "ColumnSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSeriesDescription()": "ColumnSeriesDescription()", + "ColumnSeriesDescription": "ColumnSeriesDescription()", + "ConsolidatedColumnVerticalPosition": "ConsolidatedColumnVerticalPosition", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "ColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnSeriesDescriptionMetadata()": "ColumnSeriesDescriptionMetadata()", + "ColumnSeriesDescriptionMetadata": "ColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnSeriesDescriptionModule()": "ColumnSeriesDescriptionModule()", + "ColumnSeriesDescriptionModule": "ColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnShowingAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnShowingAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "ColumnSortDescription": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnSortDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescription()": "ColumnSortDescription()", + "ColumnSortDescription": "ColumnSortDescription()", + "ColumnSortDescription(string)": "ColumnSortDescription(string)", + "ColumnSortDescription(string, ListSortDirection)": "ColumnSortDescription(string, ListSortDirection)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "SortDirection": "SortDirection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnSortDescriptionCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnSortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescriptionCollection()": "ColumnSortDescriptionCollection()", + "ColumnSortDescriptionCollection": "ColumnSortDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnSortDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSortDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescriptionDescription()": "ColumnSortDescriptionDescription()", + "ColumnSortDescriptionDescription": "ColumnSortDescriptionDescription()", + "Field": "Field", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "ColumnSortDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSortDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescriptionDescriptionMetadata()": "ColumnSortDescriptionDescriptionMetadata()", + "ColumnSortDescriptionDescriptionMetadata": "ColumnSortDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSortDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSortDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnSortDescriptionDescriptionModule()": "ColumnSortDescriptionDescriptionModule()", + "ColumnSortDescriptionDescriptionModule": "ColumnSortDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSortDirection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ColumnSortDirection", + "k": "enum", + "s": "enums" + } + ], + "ColumnSummaryDescription": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnSummaryDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescription()": "ColumnSummaryDescription()", + "ColumnSummaryDescription": "ColumnSummaryDescription()", + "ColumnSummaryDescription(string)": "ColumnSummaryDescription(string)", + "ColumnSummaryDescription(string, DataSourceSummaryOperand)": "ColumnSummaryDescription(string, DataSourceSummaryOperand)", + "CalculatorDisplayName": "CalculatorDisplayName", + "DisplayFormat": "DisplayFormat", + "DisplayFormatSpecifiers": "DisplayFormatSpecifiers", + "DisplayName": "DisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "MaxFractionDigits": "MaxFractionDigits", + "OnFormatText(FormatSummaryTextEventArgs)": "OnFormatText(FormatSummaryTextEventArgs)", + "OnFormatText": "OnFormatText(FormatSummaryTextEventArgs)", + "OnProvideCalculator(ProvideCalculatorEventArgs)": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "OnProvideCalculator": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "Operand": "Operand", + "ShouldDisplay": "ShouldDisplay", + "ValueFormat": "ValueFormat", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnSummaryDescriptionCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnSummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescriptionCollection()": "ColumnSummaryDescriptionCollection()", + "ColumnSummaryDescriptionCollection": "ColumnSummaryDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnSummaryDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSummaryDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescriptionDescription()": "ColumnSummaryDescriptionDescription()", + "ColumnSummaryDescriptionDescription": "ColumnSummaryDescriptionDescription()", + "CalculatorDisplayName": "CalculatorDisplayName", + "DisplayFormat": "DisplayFormat", + "DisplayFormatSpecifiers": "DisplayFormatSpecifiers", + "DisplayName": "DisplayName", + "Field": "Field", + "FormatTextRef": "FormatTextRef", + "MaxFractionDigits": "MaxFractionDigits", + "Operand": "Operand", + "ProvideCalculatorRef": "ProvideCalculatorRef", + "ShouldDisplay": "ShouldDisplay", + "Type": "Type", + "ValueFormat": "ValueFormat", + "ValueFormatSpecifiers": "ValueFormatSpecifiers" + } + } + ], + "ColumnSummaryDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSummaryDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescriptionDescriptionMetadata()": "ColumnSummaryDescriptionDescriptionMetadata()", + "ColumnSummaryDescriptionDescriptionMetadata": "ColumnSummaryDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSummaryDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSummaryDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnSummaryDescriptionDescriptionModule()": "ColumnSummaryDescriptionDescriptionModule()", + "ColumnSummaryDescriptionDescriptionModule": "ColumnSummaryDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnSupportingCalculation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ColumnSupportingCalculation", + "k": "class", + "s": "classes", + "m": { + "ColumnSupportingCalculation(SupportingCalculationStrategy)": "ColumnSupportingCalculation(SupportingCalculationStrategy)", + "ColumnSupportingCalculation": "ColumnSupportingCalculation(SupportingCalculationStrategy)", + "ColumnSupportingCalculation(SupportingCalculationStrategy, IList)": "ColumnSupportingCalculation(SupportingCalculationStrategy, IList)" + } + } + ], + "ColumnSupportingCalculationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSupportingCalculationDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnSupportingCalculationDescription()": "ColumnSupportingCalculationDescription()", + "ColumnSupportingCalculationDescription": "ColumnSupportingCalculationDescription()", + "Type": "Type" + } + } + ], + "ColumnSupportingCalculationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnSupportingCalculationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnSupportingCalculationDescriptionMetadata()": "ColumnSupportingCalculationDescriptionMetadata()", + "ColumnSupportingCalculationDescriptionMetadata": "ColumnSupportingCalculationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnWidth": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ColumnWidth", + "k": "class", + "s": "classes", + "m": { + "ColumnWidth()": "ColumnWidth()", + "ColumnWidth": "ColumnWidth()", + "Default": "Default", + "IsStarSized": "IsStarSized", + "MinimumWidth": "MinimumWidth", + "Parse(string)": "Parse(string)", + "Parse": "Parse(string)", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ColumnWidthDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnWidthDescription", + "k": "class", + "s": "classes", + "m": { + "ColumnWidthDescription()": "ColumnWidthDescription()", + "ColumnWidthDescription": "ColumnWidthDescription()", + "IsStarSized": "IsStarSized", + "MinimumWidth": "MinimumWidth", + "Type": "Type", + "Value": "Value" + } + } + ], + "ColumnWidthDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnWidthDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ColumnWidthDescriptionMetadata()": "ColumnWidthDescriptionMetadata()", + "ColumnWidthDescriptionMetadata": "ColumnWidthDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ColumnWidthDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ColumnWidthDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ColumnWidthDescriptionModule()": "ColumnWidthDescriptionModule()", + "ColumnWidthDescriptionModule": "ColumnWidthDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboBoxColumn": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ComboBoxColumn", + "k": "class", + "s": "classes", + "m": { + "ComboBoxColumn()": "ComboBoxColumn()", + "ComboBoxColumn": "ComboBoxColumn()", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "TextField": "TextField", + "TextFieldProperty": "TextFieldProperty", + "ValueField": "ValueField", + "ValueFieldProperty": "ValueFieldProperty", + "ValueMultiField": "ValueMultiField", + "ValueMultiFieldProperty": "ValueMultiFieldProperty" + } + } + ], + "ComboBoxColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboBoxColumnDescription", + "k": "class", + "s": "classes", + "m": { + "ComboBoxColumnDescription()": "ComboBoxColumnDescription()", + "ComboBoxColumnDescription": "ComboBoxColumnDescription()", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "GenericDataSource": "GenericDataSource", + "TextField": "TextField", + "Type": "Type", + "ValueField": "ValueField" + } + } + ], + "ComboBoxColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboBoxColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboBoxColumnDescriptionMetadata()": "ComboBoxColumnDescriptionMetadata()", + "ComboBoxColumnDescriptionMetadata": "ComboBoxColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboBoxColumnDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboBoxColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ComboBoxColumnDescriptionModule()": "ComboBoxColumnDescriptionModule()", + "ComboBoxColumnDescriptionModule": "ComboBoxColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorCloneDataSourceFilterOperation": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ComboEditorCloneDataSourceFilterOperation", + "k": "enum", + "s": "enums" + } + ], + "ComboEditorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorDescription()": "ComboEditorDescription()", + "ComboEditorDescription": "ComboEditorDescription()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBaseTheme": "ActualBaseTheme", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualDensity": "ActualDensity", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelVisible": "ActualLabelVisible", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualTextColor": "ActualTextColor", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualValueField": "ActualValueField", + "AllowFilter": "AllowFilter", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderColor": "BorderColor", + "BorderWidth": "BorderWidth", + "ChangeRef": "ChangeRef", + "ChangingRef": "ChangingRef", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceRef": "DataSourceRef", + "Density": "Density", + "DropDownButtonVisible": "DropDownButtonVisible", + "Fields": "Fields", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderWidth": "FocusBorderWidth", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "GotFocusRef": "GotFocusRef", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "IsFixed": "IsFixed", + "KeyDownRef": "KeyDownRef", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelTextColor": "LabelTextColor", + "LostFocusRef": "LostFocusRef", + "NoMatchesFoundLabel": "NoMatchesFoundLabel", + "NoMatchesFoundLabelBackgroundColor": "NoMatchesFoundLabelBackgroundColor", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "NoMatchesFoundLabelTextColor": "NoMatchesFoundLabelTextColor", + "OpenAsChild": "OpenAsChild", + "Placeholder": "Placeholder", + "SelectedValueChangedRef": "SelectedValueChangedRef", + "Text": "Text", + "TextChangeRef": "TextChangeRef", + "TextColor": "TextColor", + "TextField": "TextField", + "TextValueChangedRef": "TextValueChangedRef", + "Type": "Type", + "UnderlineColor": "UnderlineColor", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineWidth": "UnderlineWidth", + "UseTopLayer": "UseTopLayer", + "Value": "Value", + "ValueChangeRef": "ValueChangeRef", + "ValueField": "ValueField" + } + } + ], + "ComboEditorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorDescriptionMetadata()": "ComboEditorDescriptionMetadata()", + "ComboEditorDescriptionMetadata": "ComboEditorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ComboEditorDescriptionModule()": "ComboEditorDescriptionModule()", + "ComboEditorDescriptionModule": "ComboEditorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorGotFocusEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ComboEditorGotFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComboEditorGotFocusEventArgs()": "ComboEditorGotFocusEventArgs()", + "ComboEditorGotFocusEventArgs": "ComboEditorGotFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ComboEditorGotFocusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorGotFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorGotFocusEventArgsDescription()": "ComboEditorGotFocusEventArgsDescription()", + "ComboEditorGotFocusEventArgsDescription": "ComboEditorGotFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "ComboEditorGotFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorGotFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorGotFocusEventArgsDescriptionMetadata()": "ComboEditorGotFocusEventArgsDescriptionMetadata()", + "ComboEditorGotFocusEventArgsDescriptionMetadata": "ComboEditorGotFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorLostFocusEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ComboEditorLostFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComboEditorLostFocusEventArgs()": "ComboEditorLostFocusEventArgs()", + "ComboEditorLostFocusEventArgs": "ComboEditorLostFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ComboEditorLostFocusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorLostFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorLostFocusEventArgsDescription()": "ComboEditorLostFocusEventArgsDescription()", + "ComboEditorLostFocusEventArgsDescription": "ComboEditorLostFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "ComboEditorLostFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorLostFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorLostFocusEventArgsDescriptionMetadata()": "ComboEditorLostFocusEventArgsDescriptionMetadata()", + "ComboEditorLostFocusEventArgsDescriptionMetadata": "ComboEditorLostFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorSelectedItemChangeType": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ComboEditorSelectedItemChangeType", + "k": "enum", + "s": "enums" + } + ], + "ComboEditorTextChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ComboEditorTextChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComboEditorTextChangedEventArgs(string, string)": "ComboEditorTextChangedEventArgs(string, string)", + "ComboEditorTextChangedEventArgs": "ComboEditorTextChangedEventArgs(string, string)", + "NewText": "NewText", + "OldText": "OldText", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ComboEditorTextChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorTextChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorTextChangedEventArgsDescription()": "ComboEditorTextChangedEventArgsDescription()", + "ComboEditorTextChangedEventArgsDescription": "ComboEditorTextChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ComboEditorTextChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorTextChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorTextChangedEventArgsDescriptionMetadata()": "ComboEditorTextChangedEventArgsDescriptionMetadata()", + "ComboEditorTextChangedEventArgsDescriptionMetadata": "ComboEditorTextChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorValueChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ComboEditorValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComboEditorValueChangedEventArgs(object, object)": "ComboEditorValueChangedEventArgs(object, object)", + "ComboEditorValueChangedEventArgs": "ComboEditorValueChangedEventArgs(object, object)", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ComboEditorValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ComboEditorValueChangedEventArgsDescription()": "ComboEditorValueChangedEventArgsDescription()", + "ComboEditorValueChangedEventArgsDescription": "ComboEditorValueChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ComboEditorValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComboEditorValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ComboEditorValueChangedEventArgsDescriptionMetadata()": "ComboEditorValueChangedEventArgsDescriptionMetadata()", + "ComboEditorValueChangedEventArgsDescriptionMetadata": "ComboEditorValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ComboEditorVisualModelExport": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ComboEditorVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "ComboEditorVisualModelExport()": "ComboEditorVisualModelExport()", + "ComboEditorVisualModelExport": "ComboEditorVisualModelExport()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPadding": "ActualContentPadding", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelVisible": "ActualLabelVisible", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualTextColor": "ActualTextColor", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "DropDownButtonVisible": "DropDownButtonVisible", + "Height": "Height", + "IsPopupShown": "IsPopupShown", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStretch": "LabelFontStretch", + "LabelFontStyle": "LabelFontStyle", + "LabelFontVariant": "LabelFontVariant", + "LabelFontWeight": "LabelFontWeight", + "Left": "Left", + "ListPanel": "ListPanel", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontStretch": "NoMatchesFoundLabelFontStretch", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontVariant": "NoMatchesFoundLabelFontVariant", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "Placeholder": "Placeholder", + "RowSeparatorsVisible": "RowSeparatorsVisible", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "CommodityChannelIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CommodityChannelIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "CommodityChannelIndexIndicator()": "CommodityChannelIndexIndicator()", + "CommodityChannelIndexIndicator": "CommodityChannelIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "CommodityChannelIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CommodityChannelIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "CommodityChannelIndexIndicatorDescription()": "CommodityChannelIndexIndicatorDescription()", + "CommodityChannelIndexIndicatorDescription": "CommodityChannelIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "CommodityChannelIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CommodityChannelIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CommodityChannelIndexIndicatorDescriptionMetadata()": "CommodityChannelIndexIndicatorDescriptionMetadata()", + "CommodityChannelIndexIndicatorDescriptionMetadata": "CommodityChannelIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CommodityChannelIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CommodityChannelIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CommodityChannelIndexIndicatorDescriptionModule()": "CommodityChannelIndexIndicatorDescriptionModule()", + "CommodityChannelIndexIndicatorDescriptionModule": "CommodityChannelIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CommonData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/CommonData", + "k": "class", + "s": "classes", + "m": { + "CommonData()": "CommonData()", + "CommonData": "CommonData()", + "BorderBrush": "BorderBrush", + "BorderThickness": "BorderThickness" + } + } + ], + "ComponentRenderer": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComponentRenderer", + "k": "class", + "s": "classes", + "m": { + "AddCleanupListener(ComponentCleanupHandler)": "AddCleanupListener(ComponentCleanupHandler)", + "AddCleanupListener": "AddCleanupListener(ComponentCleanupHandler)", + "AddMemberPathTransformer(MemberPathTransformer)": "AddMemberPathTransformer(MemberPathTransformer)", + "AddMemberPathTransformer": "AddMemberPathTransformer(MemberPathTransformer)", + "AddNamespaceLookupListener(ComponentNamespaceLookupHandler)": "AddNamespaceLookupListener(ComponentNamespaceLookupHandler)", + "AddNamespaceLookupListener": "AddNamespaceLookupListener(ComponentNamespaceLookupHandler)", + "AddPropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)": "AddPropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)", + "AddPropertyUpdatingListener": "AddPropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)", + "AddReferenceLookupListener(ComponentRendererReferenceLookupHandler)": "AddReferenceLookupListener(ComponentRendererReferenceLookupHandler)", + "AddReferenceLookupListener": "AddReferenceLookupListener(ComponentRendererReferenceLookupHandler)", + "AddReferenceResolver(ComponentRendererReferenceResolver)": "AddReferenceResolver(ComponentRendererReferenceResolver)", + "AddReferenceResolver": "AddReferenceResolver(ComponentRendererReferenceResolver)", + "AddReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)": "AddReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)", + "AddReferenceReverseLookupListener": "AddReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)", + "AddTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)": "AddTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)", + "AddTargetPropertyUpdatingListener": "AddTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)", + "AllowEnumIntCoerce()": "AllowEnumIntCoerce()", + "AllowEnumIntCoerce": "AllowEnumIntCoerce()", + "AllowNullForRemove": "AllowNullForRemove", + "Cleanup(object, bool)": "Cleanup(object, bool)", + "Cleanup": "Cleanup(object, bool)", + "CleanupUnusedOnRender": "CleanupUnusedOnRender", + "ClearErrors()": "ClearErrors()", + "ClearErrors": "ClearErrors()", + "ClearRefValues(object)": "ClearRefValues(object)", + "ClearRefValues": "ClearRefValues(object)", + "ClearUserRefValues()": "ClearUserRefValues()", + "ClearUserRefValues": "ClearUserRefValues()", + "Context": "Context", + "CreateHandlerWithDescription(object, string, string, string, Action)": "CreateHandlerWithDescription(object, string, string, string, Action)", + "CreateHandlerWithDescription": "CreateHandlerWithDescription(object, string, string, string, Action)", + "CreateHandlerWithJSON(object, string, string, string, Action)": "CreateHandlerWithJSON(object, string, string, string, Action)", + "CreateHandlerWithJSON": "CreateHandlerWithJSON(object, string, string, string, Action)", + "CreateHandlerWithRaw(object, string, string, string, Action)": "CreateHandlerWithRaw(object, string, string, string, Action)", + "CreateHandlerWithRaw": "CreateHandlerWithRaw(object, string, string, string, Action)", + "ExecuteMethod(object, string, Action)": "ExecuteMethod(object, string, Action)", + "ExecuteMethod": "ExecuteMethod(object, string, Action)", + "ExecuteMethodWithBuilder(object, ComponentRendererMethodHelperBuilder, Action)": "ExecuteMethodWithBuilder(object, ComponentRendererMethodHelperBuilder, Action)", + "ExecuteMethodWithBuilder": "ExecuteMethodWithBuilder(object, ComponentRendererMethodHelperBuilder, Action)", + "GetErrors()": "GetErrors()", + "GetErrors": "GetErrors()", + "GetMissingRefs()": "GetMissingRefs()", + "GetMissingRefs": "GetMissingRefs()", + "GetObjectTypeForArray(string)": "GetObjectTypeForArray(string)", + "GetObjectTypeForArray": "GetObjectTypeForArray(string)", + "GetRefChangeInfos(string)": "GetRefChangeInfos(string)", + "GetRefChangeInfos": "GetRefChangeInfos(string)", + "GetTargetValue(string, string, object)": "GetTargetValue(string, string, object)", + "GetTargetValue": "GetTargetValue(string, string, object)", + "HasErrors()": "HasErrors()", + "HasErrors": "HasErrors()", + "HasNotifyMethods": "HasNotifyMethods", + "HasRef(string)": "HasRef(string)", + "HasRef": "HasRef(string)", + "IsProceedOnErrorEnabled": "IsProceedOnErrorEnabled", + "LoadJson(string, Func)": "LoadJson(string, Func)", + "LoadJson": "LoadJson(string, Func)", + "LoadJsonDelta(string, Func, bool)": "LoadJsonDelta(string, Func, bool)", + "LoadJsonDelta": "LoadJsonDelta(string, Func, bool)", + "LoadJsonOverlay(string, Func, Func)": "LoadJsonOverlay(string, Func, Func)", + "LoadJsonOverlay": "LoadJsonOverlay(string, Func, Func)", + "OnSkipAlterDataCasingAltered(bool)": "OnSkipAlterDataCasingAltered(bool)", + "OnSkipAlterDataCasingAltered": "OnSkipAlterDataCasingAltered(bool)", + "PreserveKeyOrder": "PreserveKeyOrder", + "ProvideRefValue(object, string, object)": "ProvideRefValue(object, string, object)", + "ProvideRefValue": "ProvideRefValue(object, string, object)", + "ProvideRefValueFromJson(object, string, string)": "ProvideRefValueFromJson(object, string, string)", + "ProvideRefValueFromJson": "ProvideRefValueFromJson(object, string, string)", + "QueueForIdle(object, Action)": "QueueForIdle(object, Action)", + "QueueForIdle": "QueueForIdle(object, Action)", + "RegisterFont(string, object)": "RegisterFont(string, object)", + "RegisterFont": "RegisterFont(string, object)", + "RemoveCleanupListener(ComponentCleanupHandler)": "RemoveCleanupListener(ComponentCleanupHandler)", + "RemoveCleanupListener": "RemoveCleanupListener(ComponentCleanupHandler)", + "RemoveFont(string)": "RemoveFont(string)", + "RemoveFont": "RemoveFont(string)", + "RemoveMemberPathTransformer(MemberPathTransformer)": "RemoveMemberPathTransformer(MemberPathTransformer)", + "RemoveMemberPathTransformer": "RemoveMemberPathTransformer(MemberPathTransformer)", + "RemoveNamespaceLookupListener(ComponentNamespaceLookupHandler)": "RemoveNamespaceLookupListener(ComponentNamespaceLookupHandler)", + "RemoveNamespaceLookupListener": "RemoveNamespaceLookupListener(ComponentNamespaceLookupHandler)", + "RemovePropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)": "RemovePropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)", + "RemovePropertyUpdatingListener": "RemovePropertyUpdatingListener(string, ComponentRendererPropertyUpdatingHandler)", + "RemoveRefValue(object, string)": "RemoveRefValue(object, string)", + "RemoveRefValue": "RemoveRefValue(object, string)", + "RemoveRefValueCore(object, string, bool)": "RemoveRefValueCore(object, string, bool)", + "RemoveRefValueCore": "RemoveRefValueCore(object, string, bool)", + "RemoveReferenceLookupListener(ComponentRendererReferenceLookupHandler)": "RemoveReferenceLookupListener(ComponentRendererReferenceLookupHandler)", + "RemoveReferenceLookupListener": "RemoveReferenceLookupListener(ComponentRendererReferenceLookupHandler)", + "RemoveReferenceResolver(ComponentRendererReferenceResolver)": "RemoveReferenceResolver(ComponentRendererReferenceResolver)", + "RemoveReferenceResolver": "RemoveReferenceResolver(ComponentRendererReferenceResolver)", + "RemoveReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)": "RemoveReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)", + "RemoveReferenceReverseLookupListener": "RemoveReferenceReverseLookupListener(ComponentRendererReferenceReverseLookupHandler)", + "RemoveTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)": "RemoveTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)", + "RemoveTargetPropertyUpdatingListener": "RemoveTargetPropertyUpdatingListener(ComponentRendererTargetPropertyUpdatingHandler)", + "Render(Description, object)": "Render(Description, object)", + "Render": "Render(Description, object)", + "ResolveCustomMemberPathTransformer()": "ResolveCustomMemberPathTransformer()", + "ResolveCustomMemberPathTransformer": "ResolveCustomMemberPathTransformer()", + "ResolveRefName(object, object, Action)": "ResolveRefName(object, object, Action)", + "ResolveRefName": "ResolveRefName(object, object, Action)", + "ResolveRefValue(object, string, Action)": "ResolveRefValue(object, string, Action)", + "ResolveRefValue": "ResolveRefValue(object, string, Action)", + "SerializationProvider": "SerializationProvider", + "SetTargetValue(string, string, object, object, object)": "SetTargetValue(string, string, object, object, object)", + "SetTargetValue": "SetTargetValue(string, string, object, object, object)", + "ShouldForcePascal()": "ShouldForcePascal()", + "ShouldForcePascal": "ShouldForcePascal()", + "ShouldNamespaceSystemRefValues": "ShouldNamespaceSystemRefValues", + "SkipSystemRefsClean": "SkipSystemRefsClean", + "SkipTransformingMemberPaths": "SkipTransformingMemberPaths", + "ToBrush(string)": "ToBrush(string)", + "ToBrush": "ToBrush(string)", + "ToColor(string)": "ToColor(string)", + "ToColor": "ToColor(string)", + "ToJson(Func)": "ToJson(Func)", + "ToJson": "ToJson(Func)", + "TryFlushIdleActions(object)": "TryFlushIdleActions(object)", + "TryFlushIdleActions": "TryFlushIdleActions(object)", + "WaitForAnimationIdle(object, int, Action)": "WaitForAnimationIdle(object, int, Action)", + "WaitForAnimationIdle": "WaitForAnimationIdle(object, int, Action)", + "WaitForFlush(object, Action)": "WaitForFlush(object, Action)", + "WaitForFlush": "WaitForFlush(object, Action)" + } + } + ], + "ComponentRendererHelper": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComponentRendererHelper", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererHelper()": "ComponentRendererHelper()", + "ComponentRendererHelper": "ComponentRendererHelper()", + "CreateRenderer()": "CreateRenderer()", + "CreateRenderer": "CreateRenderer()" + } + } + ], + "ComponentRendererMethodHelper": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComponentRendererMethodHelper", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererMethodHelper()": "ComponentRendererMethodHelper()", + "ComponentRendererMethodHelper": "ComponentRendererMethodHelper()", + "AsMethodRef(string)": "AsMethodRef(string)", + "AsMethodRef": "AsMethodRef(string)", + "Call(string, string)": "Call(string, string)", + "Call": "Call(string, string)", + "ReturnAsBool(string)": "ReturnAsBool(string)", + "ReturnAsBool": "ReturnAsBool(string)", + "ReturnAsDate(string)": "ReturnAsDate(string)", + "ReturnAsDate": "ReturnAsDate(string)", + "ReturnAsDouble(string)": "ReturnAsDouble(string)", + "ReturnAsDouble": "ReturnAsDouble(string)", + "ReturnAsDoubleArray(string)": "ReturnAsDoubleArray(string)", + "ReturnAsDoubleArray": "ReturnAsDoubleArray(string)", + "ReturnAsEnum(Type, string)": "ReturnAsEnum(Type, string)", + "ReturnAsEnum": "ReturnAsEnum(Type, string)", + "ReturnAsFloat(string)": "ReturnAsFloat(string)", + "ReturnAsFloat": "ReturnAsFloat(string)", + "ReturnAsInt(string)": "ReturnAsInt(string)", + "ReturnAsInt": "ReturnAsInt(string)", + "ReturnAsIntArray(string)": "ReturnAsIntArray(string)", + "ReturnAsIntArray": "ReturnAsIntArray(string)", + "ReturnAsLong(string)": "ReturnAsLong(string)", + "ReturnAsLong": "ReturnAsLong(string)", + "ReturnAsPoint(string)": "ReturnAsPoint(string)", + "ReturnAsPoint": "ReturnAsPoint(string)", + "ReturnAsPrimitive(string)": "ReturnAsPrimitive(string)", + "ReturnAsPrimitive": "ReturnAsPrimitive(string)", + "ReturnAsPrimitiveArray(string)": "ReturnAsPrimitiveArray(string)", + "ReturnAsPrimitiveArray": "ReturnAsPrimitiveArray(string)", + "ReturnAsPublicTypeRef(string, string)": "ReturnAsPublicTypeRef(string, string)", + "ReturnAsPublicTypeRef": "ReturnAsPublicTypeRef(string, string)", + "ReturnAsPublicTypeRefArray(string, string)": "ReturnAsPublicTypeRefArray(string, string)", + "ReturnAsPublicTypeRefArray": "ReturnAsPublicTypeRefArray(string, string)", + "ReturnAsRect(string)": "ReturnAsRect(string)", + "ReturnAsRect": "ReturnAsRect(string)", + "ReturnAsShort(string)": "ReturnAsShort(string)", + "ReturnAsShort": "ReturnAsShort(string)", + "ReturnAsSize(string)": "ReturnAsSize(string)", + "ReturnAsSize": "ReturnAsSize(string)", + "ReturnAsString(string)": "ReturnAsString(string)", + "ReturnAsString": "ReturnAsString(string)", + "ReturnAsStringArray(string)": "ReturnAsStringArray(string)", + "ReturnAsStringArray": "ReturnAsStringArray(string)" + } + } + ], + "ComponentRendererMethodHelperArgumentBuilder": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComponentRendererMethodHelperArgumentBuilder", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererMethodHelperArgumentBuilder(ComponentRendererMethodHelperBuilder)": "ComponentRendererMethodHelperArgumentBuilder(ComponentRendererMethodHelperBuilder)", + "ComponentRendererMethodHelperArgumentBuilder": "ComponentRendererMethodHelperArgumentBuilder(ComponentRendererMethodHelperBuilder)", + "Argument()": "Argument()", + "Argument": "Argument()", + "AsBool(bool)": "AsBool(bool)", + "AsBool": "AsBool(bool)", + "AsBoolArray(bool[])": "AsBoolArray(bool[])", + "AsBoolArray": "AsBoolArray(bool[])", + "AsDate(DateTime)": "AsDate(DateTime)", + "AsDate": "AsDate(DateTime)", + "AsDateArray(DateTime[])": "AsDateArray(DateTime[])", + "AsDateArray": "AsDateArray(DateTime[])", + "AsDouble(double)": "AsDouble(double)", + "AsDouble": "AsDouble(double)", + "AsDoubleArray(double[])": "AsDoubleArray(double[])", + "AsDoubleArray": "AsDoubleArray(double[])", + "AsEmbeddedRef(EmbeddedRefDescription)": "AsEmbeddedRef(EmbeddedRefDescription)", + "AsEmbeddedRef": "AsEmbeddedRef(EmbeddedRefDescription)", + "AsEmbeddedRefArray(EmbeddedRefDescription[])": "AsEmbeddedRefArray(EmbeddedRefDescription[])", + "AsEmbeddedRefArray": "AsEmbeddedRefArray(EmbeddedRefDescription[])", + "AsEnum(string, object)": "AsEnum(string, object)", + "AsEnum": "AsEnum(string, object)", + "AsEnum(Type, object)": "AsEnum(Type, object)", + "AsFloat(float)": "AsFloat(float)", + "AsFloat": "AsFloat(float)", + "AsFloatArray(float[])": "AsFloatArray(float[])", + "AsFloatArray": "AsFloatArray(float[])", + "AsInt(int)": "AsInt(int)", + "AsInt": "AsInt(int)", + "AsIntArray(int[])": "AsIntArray(int[])", + "AsIntArray": "AsIntArray(int[])", + "AsLong(long)": "AsLong(long)", + "AsLong": "AsLong(long)", + "AsLongArray(long[])": "AsLongArray(long[])", + "AsLongArray": "AsLongArray(long[])", + "AsMethodRef(string)": "AsMethodRef(string)", + "AsMethodRef": "AsMethodRef(string)", + "AsPixel(double)": "AsPixel(double)", + "AsPixel": "AsPixel(double)", + "AsPixelPoint(PointDescription)": "AsPixelPoint(PointDescription)", + "AsPixelPoint": "AsPixelPoint(PointDescription)", + "AsPixelRect(RectDescription)": "AsPixelRect(RectDescription)", + "AsPixelRect": "AsPixelRect(RectDescription)", + "AsPixelSize(SizeDescription)": "AsPixelSize(SizeDescription)", + "AsPixelSize": "AsPixelSize(SizeDescription)", + "AsPoint(PointDescription)": "AsPoint(PointDescription)", + "AsPoint": "AsPoint(PointDescription)", + "AsPrimitive(object)": "AsPrimitive(object)", + "AsPrimitive": "AsPrimitive(object)", + "AsPrimitiveArray(object)": "AsPrimitiveArray(object)", + "AsPrimitiveArray": "AsPrimitiveArray(object)", + "AsPublicTypeRef(string, EmbeddedRefDescription)": "AsPublicTypeRef(string, EmbeddedRefDescription)", + "AsPublicTypeRef": "AsPublicTypeRef(string, EmbeddedRefDescription)", + "AsRect(RectDescription)": "AsRect(RectDescription)", + "AsRect": "AsRect(RectDescription)", + "AsShort(short)": "AsShort(short)", + "AsShort": "AsShort(short)", + "AsShortArray(short[])": "AsShortArray(short[])", + "AsShortArray": "AsShortArray(short[])", + "AsSize(SizeDescription)": "AsSize(SizeDescription)", + "AsSize": "AsSize(SizeDescription)", + "AsString(string)": "AsString(string)", + "AsString": "AsString(string)", + "AsStringArray(string[])": "AsStringArray(string[])", + "AsStringArray": "AsStringArray(string[])", + "Build()": "Build()", + "Build": "Build()", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "Return()": "Return()", + "Return": "Return()" + } + } + ], + "ComponentRendererMethodHelperBuilder": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComponentRendererMethodHelperBuilder", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererMethodHelperBuilder(string, string)": "ComponentRendererMethodHelperBuilder(string, string)", + "ComponentRendererMethodHelperBuilder": "ComponentRendererMethodHelperBuilder(string, string)", + "Argument()": "Argument()", + "Argument": "Argument()", + "Build()": "Build()", + "Build": "Build()", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "GetArgument(int)": "GetArgument(int)", + "GetArgument": "GetArgument(int)", + "GetArgumentCount()": "GetArgumentCount()", + "GetArgumentCount": "GetArgumentCount()", + "GetReturn()": "GetReturn()", + "GetReturn": "GetReturn()", + "HasReturn()": "HasReturn()", + "HasReturn": "HasReturn()", + "MethodName": "MethodName", + "Return()": "Return()", + "Return": "Return()", + "Reusable": "Reusable", + "TargetRef": "TargetRef" + } + } + ], + "ComponentRendererMethodHelperReturnBuilder": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComponentRendererMethodHelperReturnBuilder", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererMethodHelperReturnBuilder(ComponentRendererMethodHelperBuilder)": "ComponentRendererMethodHelperReturnBuilder(ComponentRendererMethodHelperBuilder)", + "ComponentRendererMethodHelperReturnBuilder": "ComponentRendererMethodHelperReturnBuilder(ComponentRendererMethodHelperBuilder)", + "Argument()": "Argument()", + "Argument": "Argument()", + "AsBool()": "AsBool()", + "AsBool": "AsBool()", + "AsDate()": "AsDate()", + "AsDate": "AsDate()", + "AsDouble()": "AsDouble()", + "AsDouble": "AsDouble()", + "AsDoubleArray()": "AsDoubleArray()", + "AsDoubleArray": "AsDoubleArray()", + "AsEnum(Type)": "AsEnum(Type)", + "AsEnum": "AsEnum(Type)", + "AsFloat()": "AsFloat()", + "AsFloat": "AsFloat()", + "AsFloatArray()": "AsFloatArray()", + "AsFloatArray": "AsFloatArray()", + "AsInt()": "AsInt()", + "AsInt": "AsInt()", + "AsIntArray()": "AsIntArray()", + "AsIntArray": "AsIntArray()", + "AsLong()": "AsLong()", + "AsLong": "AsLong()", + "AsLongArray()": "AsLongArray()", + "AsLongArray": "AsLongArray()", + "AsMethodRef()": "AsMethodRef()", + "AsMethodRef": "AsMethodRef()", + "AsPIxelSize()": "AsPIxelSize()", + "AsPIxelSize": "AsPIxelSize()", + "AsPixel()": "AsPixel()", + "AsPixel": "AsPixel()", + "AsPixelPoint()": "AsPixelPoint()", + "AsPixelPoint": "AsPixelPoint()", + "AsPixelRect()": "AsPixelRect()", + "AsPixelRect": "AsPixelRect()", + "AsPoint()": "AsPoint()", + "AsPoint": "AsPoint()", + "AsPrimitive()": "AsPrimitive()", + "AsPrimitive": "AsPrimitive()", + "AsPrimitiveArray()": "AsPrimitiveArray()", + "AsPrimitiveArray": "AsPrimitiveArray()", + "AsPublicTypeRef(string)": "AsPublicTypeRef(string)", + "AsPublicTypeRef": "AsPublicTypeRef(string)", + "AsPublicTypeRefArray(string)": "AsPublicTypeRefArray(string)", + "AsPublicTypeRefArray": "AsPublicTypeRefArray(string)", + "AsRect()": "AsRect()", + "AsRect": "AsRect()", + "AsShort()": "AsShort()", + "AsShort": "AsShort()", + "AsShortArray()": "AsShortArray()", + "AsShortArray": "AsShortArray()", + "AsSize()": "AsSize()", + "AsSize": "AsSize()", + "AsString()": "AsString()", + "AsString": "AsString()", + "AsStringArray()": "AsStringArray()", + "AsStringArray": "AsStringArray()", + "AsVoid()": "AsVoid()", + "AsVoid": "AsVoid()", + "Build()": "Build()", + "Build": "Build()", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "Return()": "Return()", + "Return": "Return()" + } + } + ], + "ComponentRendererReferenceResolverEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComponentRendererReferenceResolverEventArgs", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererReferenceResolverEventArgs()": "ComponentRendererReferenceResolverEventArgs()", + "ComponentRendererReferenceResolverEventArgs": "ComponentRendererReferenceResolverEventArgs()", + "Found": "Found", + "ReferenceValue": "ReferenceValue" + } + } + ], + "ComponentRendererSerializationProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ComponentRendererSerializationProvider", + "k": "class", + "s": "classes", + "m": { + "ComponentRendererSerializationProvider()": "ComponentRendererSerializationProvider()", + "ComponentRendererSerializationProvider": "ComponentRendererSerializationProvider()" + } + } + ], + "ComputedPlotAreaMarginMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ComputedPlotAreaMarginMode", + "k": "enum", + "s": "enums" + } + ], + "ConsolidatedItemHitTestBehavior": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ConsolidatedItemHitTestBehavior", + "k": "enum", + "s": "enums" + } + ], + "ConsolidatedItemsPosition": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ConsolidatedItemsPosition", + "k": "enum", + "s": "enums" + } + ], + "ContainsPropertyDataSourceFilterExpressionVisitor": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ContainsPropertyDataSourceFilterExpressionVisitor", + "k": "class", + "s": "classes", + "m": { + "ContainsPropertyDataSourceFilterExpressionVisitor(string)": "ContainsPropertyDataSourceFilterExpressionVisitor(string)", + "ContainsPropertyDataSourceFilterExpressionVisitor": "ContainsPropertyDataSourceFilterExpressionVisitor(string)", + "Contains": "Contains", + "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)", + "VisitPropertyReferenceExpression": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)" + } + } + ], + "ContentChildCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ContentChildCollection", + "k": "class", + "s": "classes", + "m": { + "ContentChildCollection()": "ContentChildCollection()", + "ContentChildCollection": "ContentChildCollection()", + "ContentChildCollection(IEnumerable)": "ContentChildCollection(IEnumerable)" + } + } + ], + "ContourValueResolver": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ContourValueResolver", + "k": "class", + "s": "classes", + "m": { + "GetContourValues(IFastItemColumn)": "GetContourValues(IFastItemColumn)", + "GetContourValues": "GetContourValues(IFastItemColumn)", + "OnUpdated(EventArgs)": "OnUpdated(EventArgs)", + "OnUpdated": "OnUpdated(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ContourValueResolverDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ContourValueResolverDescription", + "k": "class", + "s": "classes", + "m": { + "ContourValueResolverDescription()": "ContourValueResolverDescription()", + "ContourValueResolverDescription": "ContourValueResolverDescription()", + "Type": "Type" + } + } + ], + "ContourValueResolverDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ContourValueResolverDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ContourValueResolverDescriptionMetadata()": "ContourValueResolverDescriptionMetadata()", + "ContourValueResolverDescriptionMetadata": "ContourValueResolverDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ControlDisplayDensity": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ControlDisplayDensity", + "k": "enum", + "s": "enums" + } + ], + "CoreUtilities": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/CoreUtilities", + "k": "class", + "s": "classes", + "m": { + "CoreUtilities()": "CoreUtilities()", + "CoreUtilities": "CoreUtilities()", + "BuildEmbeddedResourceUri(Assembly, string)": "BuildEmbeddedResourceUri(Assembly, string)", + "BuildEmbeddedResourceUri": "BuildEmbeddedResourceUri(Assembly, string)", + "CreateComparer(IComparer)": "CreateComparer(IComparer)", + "CreateComparer": "CreateComparer(IComparer)", + "CreateComparer(Comparison)": "CreateComparer(Comparison)", + "GetUnderlyingType(Type)": "GetUnderlyingType(Type)", + "GetUnderlyingType": "GetUnderlyingType(Type)", + "GetWeakReferenceTargetSafe(WeakReference)": "GetWeakReferenceTargetSafe(WeakReference)", + "GetWeakReferenceTargetSafe": "GetWeakReferenceTargetSafe(WeakReference)", + "RemoveAll(IList, T)": "RemoveAll(IList, T)", + "RemoveAll": "RemoveAll(IList, T)", + "RemoveAll(List, T)": "RemoveAll(List, T)", + "SortMerge(object[], IComparer)": "SortMerge(object[], IComparer)", + "SortMerge": "SortMerge(object[], IComparer)", + "SortMerge(object[], object[], IComparer)": "SortMerge(object[], object[], IComparer)", + "SortMerge(object[], object[], IComparer, int, int)": "SortMerge(object[], object[], IComparer, int, int)", + "SortMergeGeneric(List, IComparer)": "SortMergeGeneric(List, IComparer)", + "SortMergeGeneric": "SortMergeGeneric(List, IComparer)", + "SortMergeGeneric(List, IComparer, int, int)": "SortMergeGeneric(List, IComparer, int, int)", + "SortMergeGeneric(T[], IComparer)": "SortMergeGeneric(T[], IComparer)", + "SortMergeGeneric(T[], T[], IComparer)": "SortMergeGeneric(T[], T[], IComparer)", + "SortMergeGeneric(T[], T[], IComparer, int, int)": "SortMergeGeneric(T[], T[], IComparer, int, int)", + "Swap(IList, int, int)": "Swap(IList, int, int)", + "Swap": "Swap(IList, int, int)" + } + } + ], + "CountSummaryCalculator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CountSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "CountSummaryCalculator()": "CountSummaryCalculator()", + "CountSummaryCalculator": "CountSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "CrosshairLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CrosshairLayer", + "k": "class", + "s": "classes", + "m": { + "CrosshairLayer()": "CrosshairLayer()", + "CrosshairLayer": "CrosshairLayer()", + "HorizontalLineStroke": "HorizontalLineStroke", + "HorizontalLineStrokeProperty": "HorizontalLineStrokeProperty", + "HorizontalLineVisibility": "HorizontalLineVisibility", + "HorizontalLineVisibilityProperty": "HorizontalLineVisibilityProperty", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "IsAxisAnnotationEnabledProperty": "IsAxisAnnotationEnabledProperty", + "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnXAxisAnnotationFormatLabel": "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisAnnotationFormatLabel": "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "SkipAxisAnnotationOnInvalidData": "SkipAxisAnnotationOnInvalidData", + "SkipAxisAnnotationOnInvalidDataProperty": "SkipAxisAnnotationOnInvalidDataProperty", + "SkipAxisAnnotationOnZeroValueFragments": "SkipAxisAnnotationOnZeroValueFragments", + "SkipAxisAnnotationOnZeroValueFragmentsProperty": "SkipAxisAnnotationOnZeroValueFragmentsProperty", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty", + "VerticalLineStroke": "VerticalLineStroke", + "VerticalLineStrokeProperty": "VerticalLineStrokeProperty", + "VerticalLineVisibility": "VerticalLineVisibility", + "VerticalLineVisibilityProperty": "VerticalLineVisibilityProperty", + "XAxisAnnotationBackground": "XAxisAnnotationBackground", + "XAxisAnnotationBackgroundCornerRadius": "XAxisAnnotationBackgroundCornerRadius", + "XAxisAnnotationBackgroundCornerRadiusProperty": "XAxisAnnotationBackgroundCornerRadiusProperty", + "XAxisAnnotationBackgroundProperty": "XAxisAnnotationBackgroundProperty", + "XAxisAnnotationInterpolatedValuePrecision": "XAxisAnnotationInterpolatedValuePrecision", + "XAxisAnnotationInterpolatedValuePrecisionProperty": "XAxisAnnotationInterpolatedValuePrecisionProperty", + "XAxisAnnotationOutline": "XAxisAnnotationOutline", + "XAxisAnnotationOutlineProperty": "XAxisAnnotationOutlineProperty", + "XAxisAnnotationPaddingBottom": "XAxisAnnotationPaddingBottom", + "XAxisAnnotationPaddingBottomProperty": "XAxisAnnotationPaddingBottomProperty", + "XAxisAnnotationPaddingLeft": "XAxisAnnotationPaddingLeft", + "XAxisAnnotationPaddingLeftProperty": "XAxisAnnotationPaddingLeftProperty", + "XAxisAnnotationPaddingRight": "XAxisAnnotationPaddingRight", + "XAxisAnnotationPaddingRightProperty": "XAxisAnnotationPaddingRightProperty", + "XAxisAnnotationPaddingTop": "XAxisAnnotationPaddingTop", + "XAxisAnnotationPaddingTopProperty": "XAxisAnnotationPaddingTopProperty", + "XAxisAnnotationStrokeThickness": "XAxisAnnotationStrokeThickness", + "XAxisAnnotationStrokeThicknessProperty": "XAxisAnnotationStrokeThicknessProperty", + "XAxisAnnotationTextColor": "XAxisAnnotationTextColor", + "XAxisAnnotationTextColorProperty": "XAxisAnnotationTextColorProperty", + "YAxisAnnotationBackground": "YAxisAnnotationBackground", + "YAxisAnnotationBackgroundCornerRadius": "YAxisAnnotationBackgroundCornerRadius", + "YAxisAnnotationBackgroundCornerRadiusProperty": "YAxisAnnotationBackgroundCornerRadiusProperty", + "YAxisAnnotationBackgroundProperty": "YAxisAnnotationBackgroundProperty", + "YAxisAnnotationInterpolatedValuePrecision": "YAxisAnnotationInterpolatedValuePrecision", + "YAxisAnnotationInterpolatedValuePrecisionProperty": "YAxisAnnotationInterpolatedValuePrecisionProperty", + "YAxisAnnotationOutline": "YAxisAnnotationOutline", + "YAxisAnnotationOutlineProperty": "YAxisAnnotationOutlineProperty", + "YAxisAnnotationPaddingBottom": "YAxisAnnotationPaddingBottom", + "YAxisAnnotationPaddingBottomProperty": "YAxisAnnotationPaddingBottomProperty", + "YAxisAnnotationPaddingLeft": "YAxisAnnotationPaddingLeft", + "YAxisAnnotationPaddingLeftProperty": "YAxisAnnotationPaddingLeftProperty", + "YAxisAnnotationPaddingRight": "YAxisAnnotationPaddingRight", + "YAxisAnnotationPaddingRightProperty": "YAxisAnnotationPaddingRightProperty", + "YAxisAnnotationPaddingTop": "YAxisAnnotationPaddingTop", + "YAxisAnnotationPaddingTopProperty": "YAxisAnnotationPaddingTopProperty", + "YAxisAnnotationStrokeThickness": "YAxisAnnotationStrokeThickness", + "YAxisAnnotationStrokeThicknessProperty": "YAxisAnnotationStrokeThicknessProperty", + "YAxisAnnotationTextColor": "YAxisAnnotationTextColor", + "YAxisAnnotationTextColorProperty": "YAxisAnnotationTextColorProperty" + } + } + ], + "CrosshairLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CrosshairLayerDescription", + "k": "class", + "s": "classes", + "m": { + "CrosshairLayerDescription()": "CrosshairLayerDescription()", + "CrosshairLayerDescription": "CrosshairLayerDescription()", + "HorizontalLineStroke": "HorizontalLineStroke", + "HorizontalLineVisibility": "HorizontalLineVisibility", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "SkipAxisAnnotationOnInvalidData": "SkipAxisAnnotationOnInvalidData", + "SkipAxisAnnotationOnZeroValueFragments": "SkipAxisAnnotationOnZeroValueFragments", + "SkipUnknownValues": "SkipUnknownValues", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type", + "UseInterpolation": "UseInterpolation", + "VerticalLineStroke": "VerticalLineStroke", + "VerticalLineVisibility": "VerticalLineVisibility", + "XAxisAnnotationBackground": "XAxisAnnotationBackground", + "XAxisAnnotationBackgroundCornerRadius": "XAxisAnnotationBackgroundCornerRadius", + "XAxisAnnotationFormatLabelRef": "XAxisAnnotationFormatLabelRef", + "XAxisAnnotationInterpolatedValuePrecision": "XAxisAnnotationInterpolatedValuePrecision", + "XAxisAnnotationOutline": "XAxisAnnotationOutline", + "XAxisAnnotationPaddingBottom": "XAxisAnnotationPaddingBottom", + "XAxisAnnotationPaddingLeft": "XAxisAnnotationPaddingLeft", + "XAxisAnnotationPaddingRight": "XAxisAnnotationPaddingRight", + "XAxisAnnotationPaddingTop": "XAxisAnnotationPaddingTop", + "XAxisAnnotationStrokeThickness": "XAxisAnnotationStrokeThickness", + "XAxisAnnotationTextColor": "XAxisAnnotationTextColor", + "YAxisAnnotationBackground": "YAxisAnnotationBackground", + "YAxisAnnotationBackgroundCornerRadius": "YAxisAnnotationBackgroundCornerRadius", + "YAxisAnnotationFormatLabelRef": "YAxisAnnotationFormatLabelRef", + "YAxisAnnotationInterpolatedValuePrecision": "YAxisAnnotationInterpolatedValuePrecision", + "YAxisAnnotationOutline": "YAxisAnnotationOutline", + "YAxisAnnotationPaddingBottom": "YAxisAnnotationPaddingBottom", + "YAxisAnnotationPaddingLeft": "YAxisAnnotationPaddingLeft", + "YAxisAnnotationPaddingRight": "YAxisAnnotationPaddingRight", + "YAxisAnnotationPaddingTop": "YAxisAnnotationPaddingTop", + "YAxisAnnotationStrokeThickness": "YAxisAnnotationStrokeThickness", + "YAxisAnnotationTextColor": "YAxisAnnotationTextColor" + } + } + ], + "CrosshairLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CrosshairLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CrosshairLayerDescriptionMetadata()": "CrosshairLayerDescriptionMetadata()", + "CrosshairLayerDescriptionMetadata": "CrosshairLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CrosshairLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CrosshairLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CrosshairLayerDescriptionModule()": "CrosshairLayerDescriptionModule()", + "CrosshairLayerDescriptionModule": "CrosshairLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CrosshairsDisplayMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/CrosshairsDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "CustomContentUpdateInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomContentUpdateInfo", + "k": "class", + "s": "classes", + "m": { + "CustomContentUpdateInfo()": "CustomContentUpdateInfo()", + "CustomContentUpdateInfo": "CustomContentUpdateInfo()", + "GetItem(string)": "GetItem(string)", + "GetItem": "GetItem(string)", + "SetItem(string, object)": "SetItem(string, object)", + "SetItem": "SetItem(string, object)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CustomContourValueResolver": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CustomContourValueResolver", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolver()": "CustomContourValueResolver()", + "CustomContourValueResolver": "CustomContourValueResolver()", + "OnGetCustomContourValues(CustomContourValueResolverEventArgs)": "OnGetCustomContourValues(CustomContourValueResolverEventArgs)", + "OnGetCustomContourValues": "OnGetCustomContourValues(CustomContourValueResolverEventArgs)" + } + } + ], + "CustomContourValueResolverDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomContourValueResolverDescription", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverDescription()": "CustomContourValueResolverDescription()", + "CustomContourValueResolverDescription": "CustomContourValueResolverDescription()", + "GetCustomContourValuesRef": "GetCustomContourValuesRef", + "Type": "Type" + } + } + ], + "CustomContourValueResolverDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomContourValueResolverDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverDescriptionMetadata()": "CustomContourValueResolverDescriptionMetadata()", + "CustomContourValueResolverDescriptionMetadata": "CustomContourValueResolverDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomContourValueResolverDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomContourValueResolverDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverDescriptionModule()": "CustomContourValueResolverDescriptionModule()", + "CustomContourValueResolverDescriptionModule": "CustomContourValueResolverDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomContourValueResolverEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CustomContourValueResolverEventArgs", + "k": "class", + "s": "classes", + "m": { + "ContourValuesEnumerable": "ContourValuesEnumerable", + "ValueColumn": "ValueColumn", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "CustomContourValueResolverEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomContourValueResolverEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverEventArgsDescription()": "CustomContourValueResolverEventArgsDescription()", + "CustomContourValueResolverEventArgsDescription": "CustomContourValueResolverEventArgsDescription()", + "ContourValues": "ContourValues", + "Type": "Type" + } + } + ], + "CustomContourValueResolverEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomContourValueResolverEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomContourValueResolverEventArgsDescriptionMetadata()": "CustomContourValueResolverEventArgsDescriptionMetadata()", + "CustomContourValueResolverEventArgsDescriptionMetadata": "CustomContourValueResolverEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CustomIndicator", + "k": "class", + "s": "classes", + "m": { + "CustomIndicator()": "CustomIndicator()", + "CustomIndicator": "CustomIndicator()", + "OnBasedOnColumns(FinancialEventArgs)": "OnBasedOnColumns(FinancialEventArgs)", + "OnBasedOnColumns": "OnBasedOnColumns(FinancialEventArgs)", + "OnIndicator(FinancialEventArgs)": "OnIndicator(FinancialEventArgs)", + "OnIndicator": "OnIndicator(FinancialEventArgs)" + } + } + ], + "CustomIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "CustomIndicatorDescription()": "CustomIndicatorDescription()", + "CustomIndicatorDescription": "CustomIndicatorDescription()", + "Type": "Type" + } + } + ], + "CustomIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomIndicatorDescriptionMetadata()": "CustomIndicatorDescriptionMetadata()", + "CustomIndicatorDescriptionMetadata": "CustomIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomIndicatorDescriptionModule()": "CustomIndicatorDescriptionModule()", + "CustomIndicatorDescriptionModule": "CustomIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomLegendContainer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CustomLegendContainer", + "k": "class", + "s": "classes", + "m": { + "CustomLegendContainer()": "CustomLegendContainer()", + "CustomLegendContainer": "CustomLegendContainer()", + "OnAddingChild(Panel, FrameworkElement, LegendSettings)": "OnAddingChild(Panel, FrameworkElement, LegendSettings)", + "OnAddingChild": "OnAddingChild(Panel, FrameworkElement, LegendSettings)", + "OnInsertingChild(Panel, FrameworkElement, int, LegendSettings)": "OnInsertingChild(Panel, FrameworkElement, int, LegendSettings)", + "OnInsertingChild": "OnInsertingChild(Panel, FrameworkElement, int, LegendSettings)", + "OnRemovingChild(Panel, FrameworkElement, LegendSettings)": "OnRemovingChild(Panel, FrameworkElement, LegendSettings)", + "OnRemovingChild": "OnRemovingChild(Panel, FrameworkElement, LegendSettings)", + "OnRemovingChildAtIndex(Panel, FrameworkElement, int, LegendSettings)": "OnRemovingChildAtIndex(Panel, FrameworkElement, int, LegendSettings)", + "OnRemovingChildAtIndex": "OnRemovingChildAtIndex(Panel, FrameworkElement, int, LegendSettings)", + "OnSettingsChanged(Panel, LegendSettings)": "OnSettingsChanged(Panel, LegendSettings)", + "OnSettingsChanged": "OnSettingsChanged(Panel, LegendSettings)", + "ProvideContainer(Panel, LegendSettings)": "ProvideContainer(Panel, LegendSettings)", + "ProvideContainer": "ProvideContainer(Panel, LegendSettings)" + } + } + ], + "CustomLocalDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomLocalDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "CustomLocalDataSourceDescription()": "CustomLocalDataSourceDescription()", + "CustomLocalDataSourceDescription": "CustomLocalDataSourceDescription()", + "Type": "Type" + } + } + ], + "CustomLocalDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomLocalDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomLocalDataSourceDescriptionMetadata()": "CustomLocalDataSourceDescriptionMetadata()", + "CustomLocalDataSourceDescriptionMetadata": "CustomLocalDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomLocalDataSourceDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomLocalDataSourceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomLocalDataSourceDescriptionModule()": "CustomLocalDataSourceDescriptionModule()", + "CustomLocalDataSourceDescriptionModule": "CustomLocalDataSourceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomMapImagery": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/CustomMapImagery", + "k": "class", + "s": "classes", + "m": { + "CustomMapImagery(CustomMapTileSource)": "CustomMapImagery(CustomMapTileSource)", + "CustomMapImagery": "CustomMapImagery(CustomMapTileSource)", + "OnGetTileImageUri(GetTileImageUriArgs)": "OnGetTileImageUri(GetTileImageUriArgs)", + "OnGetTileImageUri": "OnGetTileImageUri(GetTileImageUriArgs)" + } + } + ], + "CustomMapImageryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "CustomMapImageryDescription()": "CustomMapImageryDescription()", + "CustomMapImageryDescription": "CustomMapImageryDescription()", + "GetTileImageUriRef": "GetTileImageUriRef", + "Type": "Type" + } + } + ], + "CustomMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomMapImageryDescriptionMetadata()": "CustomMapImageryDescriptionMetadata()", + "CustomMapImageryDescriptionMetadata": "CustomMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomMapImageryDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomMapImageryDescriptionModule()": "CustomMapImageryDescriptionModule()", + "CustomMapImageryDescriptionModule": "CustomMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomMapTileSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomMapTileSource", + "k": "class", + "s": "classes", + "m": { + "CustomMapTileSource(int, int, int, int, int)": "CustomMapTileSource(int, int, int, int, int)", + "CustomMapTileSource": "CustomMapTileSource(int, int, int, int, int)", + "OnGetTileImageUri(GetTileImageUriArgs)": "OnGetTileImageUri(GetTileImageUriArgs)", + "OnGetTileImageUri": "OnGetTileImageUri(GetTileImageUriArgs)" + } + } + ], + "CustomPaletteBrushScale": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CustomPaletteBrushScale", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteBrushScale()": "CustomPaletteBrushScale()", + "CustomPaletteBrushScale": "CustomPaletteBrushScale()", + "BrushSelectionMode": "BrushSelectionMode", + "BrushSelectionModeProperty": "BrushSelectionModeProperty", + "GetBrush(int, int)": "GetBrush(int, int)", + "GetBrush": "GetBrush(int, int)" + } + } + ], + "CustomPaletteBrushScaleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomPaletteBrushScaleDescription", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteBrushScaleDescription()": "CustomPaletteBrushScaleDescription()", + "CustomPaletteBrushScaleDescription": "CustomPaletteBrushScaleDescription()", + "BrushSelectionMode": "BrushSelectionMode", + "Type": "Type" + } + } + ], + "CustomPaletteBrushScaleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomPaletteBrushScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteBrushScaleDescriptionMetadata()": "CustomPaletteBrushScaleDescriptionMetadata()", + "CustomPaletteBrushScaleDescriptionMetadata": "CustomPaletteBrushScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomPaletteBrushScaleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomPaletteBrushScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteBrushScaleDescriptionModule()": "CustomPaletteBrushScaleDescriptionModule()", + "CustomPaletteBrushScaleDescriptionModule": "CustomPaletteBrushScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomPaletteColorScale": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/CustomPaletteColorScale", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteColorScale()": "CustomPaletteColorScale()", + "CustomPaletteColorScale": "CustomPaletteColorScale()", + "InterpolationMode": "InterpolationMode", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "ProvidePalette(string[])": "ProvidePalette(string[])", + "ProvidePalette": "ProvidePalette(string[])" + } + } + ], + "CustomPaletteColorScaleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomPaletteColorScaleDescription", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteColorScaleDescription()": "CustomPaletteColorScaleDescription()", + "CustomPaletteColorScaleDescription": "CustomPaletteColorScaleDescription()", + "InterpolationMode": "InterpolationMode", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Palette": "Palette", + "Type": "Type" + } + } + ], + "CustomPaletteColorScaleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomPaletteColorScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteColorScaleDescriptionMetadata()": "CustomPaletteColorScaleDescriptionMetadata()", + "CustomPaletteColorScaleDescriptionMetadata": "CustomPaletteColorScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "CustomPaletteColorScaleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/CustomPaletteColorScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "CustomPaletteColorScaleDescriptionModule()": "CustomPaletteColorScaleDescriptionModule()", + "CustomPaletteColorScaleDescriptionModule": "CustomPaletteColorScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DartEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DartEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "DartEmitIgnoreTypeAttribute()": "DartEmitIgnoreTypeAttribute()", + "DartEmitIgnoreTypeAttribute": "DartEmitIgnoreTypeAttribute()" + } + } + ], + "DartGlobalMemberAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DartGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "DartGlobalMemberAttribute()": "DartGlobalMemberAttribute()", + "DartGlobalMemberAttribute": "DartGlobalMemberAttribute()" + } + } + ], + "DartLiteralUnwrapAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DartLiteralUnwrapAttribute", + "k": "class", + "s": "classes", + "m": { + "DartLiteralUnwrapAttribute()": "DartLiteralUnwrapAttribute()", + "DartLiteralUnwrapAttribute": "DartLiteralUnwrapAttribute()" + } + } + ], + "DashboardTileChangingContentEventArgs": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileChangingContentEventArgs", + "k": "class", + "s": "classes", + "m": { + "ContentJson": "ContentJson", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileChangingContentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileChangingContentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileChangingContentEventArgsDescription()": "DashboardTileChangingContentEventArgsDescription()", + "DashboardTileChangingContentEventArgsDescription": "DashboardTileChangingContentEventArgsDescription()", + "ContentJson": "ContentJson", + "Type": "Type" + } + } + ], + "DashboardTileChangingContentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileChangingContentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileChangingContentEventArgsDescriptionMetadata()": "DashboardTileChangingContentEventArgsDescriptionMetadata()", + "DashboardTileChangingContentEventArgsDescriptionMetadata": "DashboardTileChangingContentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileCustomization": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileCustomization", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomization()": "DashboardTileCustomization()", + "DashboardTileCustomization": "DashboardTileCustomization()", + "CollectionIndex": "CollectionIndex", + "IsCollectionInsertionAtEnd": "IsCollectionInsertionAtEnd", + "IsCollectionInsertionAtIndex": "IsCollectionInsertionAtIndex", + "IsCollectionInsertionAtStart": "IsCollectionInsertionAtStart", + "IsCollectionRemovaltIndex": "IsCollectionRemovaltIndex", + "MatchParentIndex": "MatchParentIndex", + "MatchType": "MatchType", + "Order": "Order", + "PropertyName": "PropertyName", + "PropertyValue": "PropertyValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileCustomizationCollection": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileCustomizationCollection", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomizationCollection()": "DashboardTileCustomizationCollection()", + "DashboardTileCustomizationCollection": "DashboardTileCustomizationCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileCustomizationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileCustomizationDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomizationDescription()": "DashboardTileCustomizationDescription()", + "DashboardTileCustomizationDescription": "DashboardTileCustomizationDescription()", + "CollectionIndex": "CollectionIndex", + "IsCollectionInsertionAtEnd": "IsCollectionInsertionAtEnd", + "IsCollectionInsertionAtIndex": "IsCollectionInsertionAtIndex", + "IsCollectionInsertionAtStart": "IsCollectionInsertionAtStart", + "IsCollectionRemovaltIndex": "IsCollectionRemovaltIndex", + "MatchParentIndex": "MatchParentIndex", + "MatchType": "MatchType", + "Order": "Order", + "PropertyName": "PropertyName", + "PropertyValueRef": "PropertyValueRef", + "Type": "Type" + } + } + ], + "DashboardTileCustomizationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileCustomizationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomizationDescriptionMetadata()": "DashboardTileCustomizationDescriptionMetadata()", + "DashboardTileCustomizationDescriptionMetadata": "DashboardTileCustomizationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileCustomizationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileCustomizationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileCustomizationDescriptionModule()": "DashboardTileCustomizationDescriptionModule()", + "DashboardTileCustomizationDescriptionModule": "DashboardTileCustomizationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileDescription()": "DashboardTileDescription()", + "DashboardTileDescription": "DashboardTileDescription()", + "ActualBrushes": "ActualBrushes", + "ActualOutlines": "ActualOutlines", + "AutoCalloutsVisible": "AutoCalloutsVisible", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "Brushes": "Brushes", + "CategoryAxisMajorStroke": "CategoryAxisMajorStroke", + "ChangingContentRef": "ChangingContentRef", + "CrosshairsAnnotationEnabled": "CrosshairsAnnotationEnabled", + "CrosshairsDisplayMode": "CrosshairsDisplayMode", + "Customizations": "Customizations", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "Density": "Density", + "ExcludedProperties": "ExcludedProperties", + "FilterExpressions": "FilterExpressions", + "FilterStringErrorsParsingRef": "FilterStringErrorsParsingRef", + "FinalValueAnnotationsVisible": "FinalValueAnnotationsVisible", + "GroupDescriptions": "GroupDescriptions", + "GroupSortDescriptions": "GroupSortDescriptions", + "GroupSorts": "GroupSorts", + "Height": "Height", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "HighlightedDataSource": "HighlightedDataSource", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "IncludedProperties": "IncludedProperties", + "InitialFilter": "InitialFilter", + "InitialFilterExpressions": "InitialFilterExpressions", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroupSortDescriptions": "InitialGroupSortDescriptions", + "InitialGroups": "InitialGroups", + "InitialHighlightFilter": "InitialHighlightFilter", + "InitialHighlightFilterExpressions": "InitialHighlightFilterExpressions", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSummaries": "InitialSummaries", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "Outlines": "Outlines", + "SelectedSeriesItems": "SelectedSeriesItems", + "ShouldAvoidAxisAnnotationCollisions": "ShouldAvoidAxisAnnotationCollisions", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "TileTitle": "TileTitle", + "TrendLineBrushes": "TrendLineBrushes", + "TrendLineType": "TrendLineType", + "TrendLineTypes": "TrendLineTypes", + "Type": "Type", + "UserAnnotationInformationRequestedRef": "UserAnnotationInformationRequestedRef", + "UserAnnotationToolTipContentUpdatingRef": "UserAnnotationToolTipContentUpdatingRef", + "ValidVisualizationTypePriorityThreshold": "ValidVisualizationTypePriorityThreshold", + "ValidVisualizationTypes": "ValidVisualizationTypes", + "ValueLines": "ValueLines", + "ValueLinesBrushes": "ValueLinesBrushes", + "ValueLinesGlobalAverageBrush": "ValueLinesGlobalAverageBrush", + "ValueLinesGlobalMaximumBrush": "ValueLinesGlobalMaximumBrush", + "ValueLinesGlobalMinimumBrush": "ValueLinesGlobalMinimumBrush", + "VisualizationType": "VisualizationType", + "Width": "Width" + } + } + ], + "DashboardTileDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileDescriptionMetadata()": "DashboardTileDescriptionMetadata()", + "DashboardTileDescriptionMetadata": "DashboardTileDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileDescriptionModule()": "DashboardTileDescriptionModule()", + "DashboardTileDescriptionModule": "DashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileFilterStringErrorsParsingEventArgs": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileFilterStringErrorsParsingEventArgs", + "k": "class", + "s": "classes", + "m": { + "Errors": "Errors", + "PropertyName": "PropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileFilterStringErrorsParsingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileFilterStringErrorsParsingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileFilterStringErrorsParsingEventArgsDescription()": "DashboardTileFilterStringErrorsParsingEventArgsDescription()", + "DashboardTileFilterStringErrorsParsingEventArgsDescription": "DashboardTileFilterStringErrorsParsingEventArgsDescription()", + "Errors": "Errors", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata()": "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata()", + "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata": "DashboardTileFilterStringErrorsParsingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileGroupDescription": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileGroupDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescription()": "DashboardTileGroupDescription()", + "DashboardTileGroupDescription": "DashboardTileGroupDescription()", + "DashboardTileGroupDescription(string)": "DashboardTileGroupDescription(string)", + "DashboardTileGroupDescription(string, ListSortDirection)": "DashboardTileGroupDescription(string, ListSortDirection)" + } + } + ], + "DashboardTileGroupDescriptionCollection": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileGroupDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescriptionCollection()": "DashboardTileGroupDescriptionCollection()", + "DashboardTileGroupDescriptionCollection": "DashboardTileGroupDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileGroupDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileGroupDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescriptionDescription()": "DashboardTileGroupDescriptionDescription()", + "DashboardTileGroupDescriptionDescription": "DashboardTileGroupDescriptionDescription()", + "Type": "Type" + } + } + ], + "DashboardTileGroupDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileGroupDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescriptionDescriptionMetadata()": "DashboardTileGroupDescriptionDescriptionMetadata()", + "DashboardTileGroupDescriptionDescriptionMetadata": "DashboardTileGroupDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileGroupDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileGroupDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileGroupDescriptionDescriptionModule()": "DashboardTileGroupDescriptionDescriptionModule()", + "DashboardTileGroupDescriptionDescriptionModule": "DashboardTileGroupDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTilePrimitiveValueWrapper": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTilePrimitiveValueWrapper", + "k": "class", + "s": "classes", + "m": { + "DashboardTilePrimitiveValueWrapper()": "DashboardTilePrimitiveValueWrapper()", + "DashboardTilePrimitiveValueWrapper": "DashboardTilePrimitiveValueWrapper()", + "Value": "Value" + } + } + ], + "DashboardTileSortDescription": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileSortDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescription()": "DashboardTileSortDescription()", + "DashboardTileSortDescription": "DashboardTileSortDescription()", + "DashboardTileSortDescription(string)": "DashboardTileSortDescription(string)", + "DashboardTileSortDescription(string, ListSortDirection)": "DashboardTileSortDescription(string, ListSortDirection)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "SortDirection": "SortDirection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileSortDescriptionCollection": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileSortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescriptionCollection()": "DashboardTileSortDescriptionCollection()", + "DashboardTileSortDescriptionCollection": "DashboardTileSortDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileSortDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileSortDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescriptionDescription()": "DashboardTileSortDescriptionDescription()", + "DashboardTileSortDescriptionDescription": "DashboardTileSortDescriptionDescription()", + "Field": "Field", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "DashboardTileSortDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileSortDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescriptionDescriptionMetadata()": "DashboardTileSortDescriptionDescriptionMetadata()", + "DashboardTileSortDescriptionDescriptionMetadata": "DashboardTileSortDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileSortDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileSortDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSortDescriptionDescriptionModule()": "DashboardTileSortDescriptionDescriptionModule()", + "DashboardTileSortDescriptionDescriptionModule": "DashboardTileSortDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileSummaryDescription": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileSummaryDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescription()": "DashboardTileSummaryDescription()", + "DashboardTileSummaryDescription": "DashboardTileSummaryDescription()", + "DashboardTileSummaryDescription(string)": "DashboardTileSummaryDescription(string)", + "DashboardTileSummaryDescription(string, DataSourceSummaryOperand)": "DashboardTileSummaryDescription(string, DataSourceSummaryOperand)", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "OnProvideCalculator(ProvideCalculatorEventArgs)": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "OnProvideCalculator": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "Operand": "Operand", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileSummaryDescriptionCollection": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DashboardTileSummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescriptionCollection()": "DashboardTileSummaryDescriptionCollection()", + "DashboardTileSummaryDescriptionCollection": "DashboardTileSummaryDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DashboardTileSummaryDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileSummaryDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescriptionDescription()": "DashboardTileSummaryDescriptionDescription()", + "DashboardTileSummaryDescriptionDescription": "DashboardTileSummaryDescriptionDescription()", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Field": "Field", + "Operand": "Operand", + "ProvideCalculatorRef": "ProvideCalculatorRef", + "Type": "Type" + } + } + ], + "DashboardTileSummaryDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileSummaryDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescriptionDescriptionMetadata()": "DashboardTileSummaryDescriptionDescriptionMetadata()", + "DashboardTileSummaryDescriptionDescriptionMetadata": "DashboardTileSummaryDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileSummaryDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DashboardTileSummaryDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DashboardTileSummaryDescriptionDescriptionModule()": "DashboardTileSummaryDescriptionDescriptionModule()", + "DashboardTileSummaryDescriptionDescriptionModule": "DashboardTileSummaryDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DashboardTileVisualizationType": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/enums/DashboardTileVisualizationType", + "k": "enum", + "s": "enums" + } + ], + "DataAbbreviationMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataAbbreviationMode", + "k": "enum", + "s": "enums" + } + ], + "DataAnnotationAxisLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationAxisLayer", + "k": "class", + "s": "classes", + "m": { + "AnnotationBackground": "AnnotationBackground", + "AnnotationBackgroundMatchLayer": "AnnotationBackgroundMatchLayer", + "AnnotationBackgroundMatchLayerProperty": "AnnotationBackgroundMatchLayerProperty", + "AnnotationBackgroundMode": "AnnotationBackgroundMode", + "AnnotationBackgroundModeProperty": "AnnotationBackgroundModeProperty", + "AnnotationBackgroundProperty": "AnnotationBackgroundProperty", + "AnnotationBackgroundShift": "AnnotationBackgroundShift", + "AnnotationBackgroundShiftProperty": "AnnotationBackgroundShiftProperty", + "AnnotationBadgeBackground": "AnnotationBadgeBackground", + "AnnotationBadgeBackgroundProperty": "AnnotationBadgeBackgroundProperty", + "AnnotationBadgeCornerRadius": "AnnotationBadgeCornerRadius", + "AnnotationBadgeCornerRadiusProperty": "AnnotationBadgeCornerRadiusProperty", + "AnnotationBadgeEnabled": "AnnotationBadgeEnabled", + "AnnotationBadgeEnabledProperty": "AnnotationBadgeEnabledProperty", + "AnnotationBadgeImagePath": "AnnotationBadgeImagePath", + "AnnotationBadgeImagePathProperty": "AnnotationBadgeImagePathProperty", + "AnnotationBadgeMargin": "AnnotationBadgeMargin", + "AnnotationBadgeMarginProperty": "AnnotationBadgeMarginProperty", + "AnnotationBadgeOutline": "AnnotationBadgeOutline", + "AnnotationBadgeOutlineProperty": "AnnotationBadgeOutlineProperty", + "AnnotationBadgeOutlineThickness": "AnnotationBadgeOutlineThickness", + "AnnotationBadgeOutlineThicknessProperty": "AnnotationBadgeOutlineThicknessProperty", + "AnnotationBadgeSize": "AnnotationBadgeSize", + "AnnotationBadgeSizeProperty": "AnnotationBadgeSizeProperty", + "AnnotationBorderColor": "AnnotationBorderColor", + "AnnotationBorderColorProperty": "AnnotationBorderColorProperty", + "AnnotationBorderMatchLayer": "AnnotationBorderMatchLayer", + "AnnotationBorderMatchLayerProperty": "AnnotationBorderMatchLayerProperty", + "AnnotationBorderMode": "AnnotationBorderMode", + "AnnotationBorderModeProperty": "AnnotationBorderModeProperty", + "AnnotationBorderRadius": "AnnotationBorderRadius", + "AnnotationBorderRadiusProperty": "AnnotationBorderRadiusProperty", + "AnnotationBorderShift": "AnnotationBorderShift", + "AnnotationBorderShiftProperty": "AnnotationBorderShiftProperty", + "AnnotationBorderThickness": "AnnotationBorderThickness", + "AnnotationBorderThicknessProperty": "AnnotationBorderThicknessProperty", + "AnnotationLabelDisplayMode": "AnnotationLabelDisplayMode", + "AnnotationLabelDisplayModeProperty": "AnnotationLabelDisplayModeProperty", + "AnnotationLabelVisible": "AnnotationLabelVisible", + "AnnotationLabelVisibleProperty": "AnnotationLabelVisibleProperty", + "AnnotationPaddingBottom": "AnnotationPaddingBottom", + "AnnotationPaddingBottomProperty": "AnnotationPaddingBottomProperty", + "AnnotationPaddingLeft": "AnnotationPaddingLeft", + "AnnotationPaddingLeftProperty": "AnnotationPaddingLeftProperty", + "AnnotationPaddingRight": "AnnotationPaddingRight", + "AnnotationPaddingRightProperty": "AnnotationPaddingRightProperty", + "AnnotationPaddingTop": "AnnotationPaddingTop", + "AnnotationPaddingTopProperty": "AnnotationPaddingTopProperty", + "AnnotationTextColor": "AnnotationTextColor", + "AnnotationTextColorMatchLayer": "AnnotationTextColorMatchLayer", + "AnnotationTextColorMatchLayerProperty": "AnnotationTextColorMatchLayerProperty", + "AnnotationTextColorMode": "AnnotationTextColorMode", + "AnnotationTextColorModeProperty": "AnnotationTextColorModeProperty", + "AnnotationTextColorProperty": "AnnotationTextColorProperty", + "AnnotationTextColorShift": "AnnotationTextColorShift", + "AnnotationTextColorShiftProperty": "AnnotationTextColorShiftProperty", + "AnnotationValueMaxPrecision": "AnnotationValueMaxPrecision", + "AnnotationValueMaxPrecisionProperty": "AnnotationValueMaxPrecisionProperty", + "AnnotationValueMinPrecision": "AnnotationValueMinPrecision", + "AnnotationValueMinPrecisionProperty": "AnnotationValueMinPrecisionProperty", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "TargetMode": "TargetMode", + "TargetModeProperty": "TargetModeProperty" + } + } + ], + "DataAnnotationAxisLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationAxisLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationAxisLayerDescription()": "DataAnnotationAxisLayerDescription()", + "DataAnnotationAxisLayerDescription": "DataAnnotationAxisLayerDescription()", + "AnnotationBackground": "AnnotationBackground", + "AnnotationBackgroundMatchLayer": "AnnotationBackgroundMatchLayer", + "AnnotationBackgroundMode": "AnnotationBackgroundMode", + "AnnotationBackgroundShift": "AnnotationBackgroundShift", + "AnnotationBadgeBackground": "AnnotationBadgeBackground", + "AnnotationBadgeCornerRadius": "AnnotationBadgeCornerRadius", + "AnnotationBadgeEnabled": "AnnotationBadgeEnabled", + "AnnotationBadgeImagePath": "AnnotationBadgeImagePath", + "AnnotationBadgeMargin": "AnnotationBadgeMargin", + "AnnotationBadgeOutline": "AnnotationBadgeOutline", + "AnnotationBadgeOutlineThickness": "AnnotationBadgeOutlineThickness", + "AnnotationBadgeSize": "AnnotationBadgeSize", + "AnnotationBorderColor": "AnnotationBorderColor", + "AnnotationBorderMatchLayer": "AnnotationBorderMatchLayer", + "AnnotationBorderMode": "AnnotationBorderMode", + "AnnotationBorderRadius": "AnnotationBorderRadius", + "AnnotationBorderShift": "AnnotationBorderShift", + "AnnotationBorderThickness": "AnnotationBorderThickness", + "AnnotationLabelDisplayMode": "AnnotationLabelDisplayMode", + "AnnotationLabelVisible": "AnnotationLabelVisible", + "AnnotationPaddingBottom": "AnnotationPaddingBottom", + "AnnotationPaddingLeft": "AnnotationPaddingLeft", + "AnnotationPaddingRight": "AnnotationPaddingRight", + "AnnotationPaddingTop": "AnnotationPaddingTop", + "AnnotationTextColor": "AnnotationTextColor", + "AnnotationTextColorMatchLayer": "AnnotationTextColorMatchLayer", + "AnnotationTextColorMode": "AnnotationTextColorMode", + "AnnotationTextColorShift": "AnnotationTextColorShift", + "AnnotationValueMaxPrecision": "AnnotationValueMaxPrecision", + "AnnotationValueMinPrecision": "AnnotationValueMinPrecision", + "TargetAxisRef": "TargetAxisRef", + "TargetMode": "TargetMode", + "Type": "Type" + } + } + ], + "DataAnnotationAxisLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationAxisLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationAxisLayerDescriptionMetadata()": "DataAnnotationAxisLayerDescriptionMetadata()", + "DataAnnotationAxisLayerDescriptionMetadata": "DataAnnotationAxisLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationBandLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationBandLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationBandLayer()": "DataAnnotationBandLayer()", + "DataAnnotationBandLayer": "DataAnnotationBandLayer()", + "AnnotationBreadthMemberPath": "AnnotationBreadthMemberPath", + "AnnotationBreadthMemberPathProperty": "AnnotationBreadthMemberPathProperty" + } + } + ], + "DataAnnotationBandLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationBandLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationBandLayerDescription()": "DataAnnotationBandLayerDescription()", + "DataAnnotationBandLayerDescription": "DataAnnotationBandLayerDescription()", + "AnnotationBreadthMemberPath": "AnnotationBreadthMemberPath", + "Type": "Type" + } + } + ], + "DataAnnotationBandLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationBandLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationBandLayerDescriptionMetadata()": "DataAnnotationBandLayerDescriptionMetadata()", + "DataAnnotationBandLayerDescriptionMetadata": "DataAnnotationBandLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationBandLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationBandLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationBandLayerDescriptionModule()": "DataAnnotationBandLayerDescriptionModule()", + "DataAnnotationBandLayerDescriptionModule": "DataAnnotationBandLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationDisplayMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/DataAnnotationDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "DataAnnotationInfo": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationInfo", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationInfo()": "DataAnnotationInfo()", + "DataAnnotationInfo": "DataAnnotationInfo()", + "Background": "Background", + "BorderColor": "BorderColor", + "BorderRadius": "BorderRadius", + "BorderThickness": "BorderThickness", + "DataIndex": "DataIndex", + "DataLabelX": "DataLabelX", + "DataLabelY": "DataLabelY", + "DataValueX": "DataValueX", + "DataValueY": "DataValueY", + "IsCenterLabel": "IsCenterLabel", + "IsEndLabel": "IsEndLabel", + "IsStartLabel": "IsStartLabel", + "IsXAxisBadgeEnabled": "IsXAxisBadgeEnabled", + "IsYAxisBadgeEnabled": "IsYAxisBadgeEnabled", + "TextColor": "TextColor", + "XAxisBadgeBackground": "XAxisBadgeBackground", + "XAxisBadgeImagePath": "XAxisBadgeImagePath", + "XAxisBadgeMargin": "XAxisBadgeMargin", + "XAxisBadgeOutline": "XAxisBadgeOutline", + "XAxisBadgeOutlineThickness": "XAxisBadgeOutlineThickness", + "XAxisBadgeRadius": "XAxisBadgeRadius", + "XAxisBadgeSize": "XAxisBadgeSize", + "XAxisLabel": "XAxisLabel", + "XAxisPixel": "XAxisPixel", + "XAxisUserAnnotation": "XAxisUserAnnotation", + "XAxisValue": "XAxisValue", + "XAxisWindow": "XAxisWindow", + "YAxisBadgeBackground": "YAxisBadgeBackground", + "YAxisBadgeImagePath": "YAxisBadgeImagePath", + "YAxisBadgeMargin": "YAxisBadgeMargin", + "YAxisBadgeOutline": "YAxisBadgeOutline", + "YAxisBadgeOutlineThickness": "YAxisBadgeOutlineThickness", + "YAxisBadgeRadius": "YAxisBadgeRadius", + "YAxisBadgeSize": "YAxisBadgeSize", + "YAxisLabel": "YAxisLabel", + "YAxisPixel": "YAxisPixel", + "YAxisUserAnnotation": "YAxisUserAnnotation", + "YAxisValue": "YAxisValue", + "YAxisWindow": "YAxisWindow", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataAnnotationInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationInfoDescription()": "DataAnnotationInfoDescription()", + "DataAnnotationInfoDescription": "DataAnnotationInfoDescription()", + "Background": "Background", + "BorderColor": "BorderColor", + "BorderRadius": "BorderRadius", + "BorderThickness": "BorderThickness", + "DataIndex": "DataIndex", + "DataLabelX": "DataLabelX", + "DataLabelY": "DataLabelY", + "DataValueX": "DataValueX", + "DataValueY": "DataValueY", + "IsCenterLabel": "IsCenterLabel", + "IsEndLabel": "IsEndLabel", + "IsStartLabel": "IsStartLabel", + "IsXAxisBadgeEnabled": "IsXAxisBadgeEnabled", + "IsYAxisBadgeEnabled": "IsYAxisBadgeEnabled", + "TextColor": "TextColor", + "Type": "Type", + "XAxisBadgeBackground": "XAxisBadgeBackground", + "XAxisBadgeImagePath": "XAxisBadgeImagePath", + "XAxisBadgeMargin": "XAxisBadgeMargin", + "XAxisBadgeOutline": "XAxisBadgeOutline", + "XAxisBadgeOutlineThickness": "XAxisBadgeOutlineThickness", + "XAxisBadgeRadius": "XAxisBadgeRadius", + "XAxisBadgeSize": "XAxisBadgeSize", + "XAxisLabel": "XAxisLabel", + "XAxisPixel": "XAxisPixel", + "XAxisUserAnnotation": "XAxisUserAnnotation", + "XAxisValue": "XAxisValue", + "XAxisWindow": "XAxisWindow", + "YAxisBadgeBackground": "YAxisBadgeBackground", + "YAxisBadgeImagePath": "YAxisBadgeImagePath", + "YAxisBadgeMargin": "YAxisBadgeMargin", + "YAxisBadgeOutline": "YAxisBadgeOutline", + "YAxisBadgeOutlineThickness": "YAxisBadgeOutlineThickness", + "YAxisBadgeRadius": "YAxisBadgeRadius", + "YAxisBadgeSize": "YAxisBadgeSize", + "YAxisLabel": "YAxisLabel", + "YAxisPixel": "YAxisPixel", + "YAxisUserAnnotation": "YAxisUserAnnotation", + "YAxisValue": "YAxisValue", + "YAxisWindow": "YAxisWindow" + } + } + ], + "DataAnnotationInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationInfoDescriptionMetadata()": "DataAnnotationInfoDescriptionMetadata()", + "DataAnnotationInfoDescriptionMetadata": "DataAnnotationInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationItem": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationItem", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationItem()": "DataAnnotationItem()", + "DataAnnotationItem": "DataAnnotationItem()", + "CenterLabelX": "CenterLabelX", + "CenterLabelY": "CenterLabelY", + "DataIndex": "DataIndex", + "EndLabelX": "EndLabelX", + "EndLabelY": "EndLabelY", + "ShapeBrush": "ShapeBrush", + "ShapeCenterX": "ShapeCenterX", + "ShapeCenterY": "ShapeCenterY", + "ShapeEndX": "ShapeEndX", + "ShapeEndY": "ShapeEndY", + "ShapeOutline": "ShapeOutline", + "ShapeStartX": "ShapeStartX", + "ShapeStartY": "ShapeStartY", + "ShapeThickness": "ShapeThickness", + "StartLabelX": "StartLabelX", + "StartLabelY": "StartLabelY", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataAnnotationItemDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationItemDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationItemDescription()": "DataAnnotationItemDescription()", + "DataAnnotationItemDescription": "DataAnnotationItemDescription()", + "CenterLabelX": "CenterLabelX", + "CenterLabelY": "CenterLabelY", + "DataIndex": "DataIndex", + "EndLabelX": "EndLabelX", + "EndLabelY": "EndLabelY", + "ShapeBrush": "ShapeBrush", + "ShapeCenterX": "ShapeCenterX", + "ShapeCenterY": "ShapeCenterY", + "ShapeEndX": "ShapeEndX", + "ShapeEndY": "ShapeEndY", + "ShapeOutline": "ShapeOutline", + "ShapeStartX": "ShapeStartX", + "ShapeStartY": "ShapeStartY", + "ShapeThickness": "ShapeThickness", + "StartLabelX": "StartLabelX", + "StartLabelY": "StartLabelY", + "Type": "Type" + } + } + ], + "DataAnnotationItemDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationItemDescriptionMetadata()": "DataAnnotationItemDescriptionMetadata()", + "DataAnnotationItemDescriptionMetadata": "DataAnnotationItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationLineLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationLineLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationLineLayer()": "DataAnnotationLineLayer()", + "DataAnnotationLineLayer": "DataAnnotationLineLayer()" + } + } + ], + "DataAnnotationLineLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationLineLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationLineLayerDescription()": "DataAnnotationLineLayerDescription()", + "DataAnnotationLineLayerDescription": "DataAnnotationLineLayerDescription()", + "Type": "Type" + } + } + ], + "DataAnnotationLineLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationLineLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationLineLayerDescriptionMetadata()": "DataAnnotationLineLayerDescriptionMetadata()", + "DataAnnotationLineLayerDescriptionMetadata": "DataAnnotationLineLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationLineLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationLineLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationLineLayerDescriptionModule()": "DataAnnotationLineLayerDescriptionModule()", + "DataAnnotationLineLayerDescriptionModule": "DataAnnotationLineLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationPointLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationPointLayer", + "k": "class", + "s": "classes", + "m": { + "AnnotationBadgeBackgroundXMemberPath": "AnnotationBadgeBackgroundXMemberPath", + "AnnotationBadgeBackgroundXMemberPathProperty": "AnnotationBadgeBackgroundXMemberPathProperty", + "AnnotationBadgeBackgroundYMemberPath": "AnnotationBadgeBackgroundYMemberPath", + "AnnotationBadgeBackgroundYMemberPathProperty": "AnnotationBadgeBackgroundYMemberPathProperty", + "AnnotationBadgeEnabledXMemberPath": "AnnotationBadgeEnabledXMemberPath", + "AnnotationBadgeEnabledXMemberPathProperty": "AnnotationBadgeEnabledXMemberPathProperty", + "AnnotationBadgeEnabledYMemberPath": "AnnotationBadgeEnabledYMemberPath", + "AnnotationBadgeEnabledYMemberPathProperty": "AnnotationBadgeEnabledYMemberPathProperty", + "AnnotationBadgeImageXMemberPath": "AnnotationBadgeImageXMemberPath", + "AnnotationBadgeImageXMemberPathProperty": "AnnotationBadgeImageXMemberPathProperty", + "AnnotationBadgeImageYMemberPath": "AnnotationBadgeImageYMemberPath", + "AnnotationBadgeImageYMemberPathProperty": "AnnotationBadgeImageYMemberPathProperty", + "AnnotationBadgeOutlineXMemberPath": "AnnotationBadgeOutlineXMemberPath", + "AnnotationBadgeOutlineXMemberPathProperty": "AnnotationBadgeOutlineXMemberPathProperty", + "AnnotationBadgeOutlineYMemberPath": "AnnotationBadgeOutlineYMemberPath", + "AnnotationBadgeOutlineYMemberPathProperty": "AnnotationBadgeOutlineYMemberPathProperty", + "CenterLabelXDisplayMode": "CenterLabelXDisplayMode", + "CenterLabelXDisplayModeProperty": "CenterLabelXDisplayModeProperty", + "CenterLabelXMemberPath": "CenterLabelXMemberPath", + "CenterLabelXMemberPathProperty": "CenterLabelXMemberPathProperty", + "CenterLabelYDisplayMode": "CenterLabelYDisplayMode", + "CenterLabelYDisplayModeProperty": "CenterLabelYDisplayModeProperty", + "CenterLabelYMemberPath": "CenterLabelYMemberPath", + "CenterLabelYMemberPathProperty": "CenterLabelYMemberPathProperty", + "EndLabelXDisplayMode": "EndLabelXDisplayMode", + "EndLabelXDisplayModeProperty": "EndLabelXDisplayModeProperty", + "EndLabelXMemberPath": "EndLabelXMemberPath", + "EndLabelXMemberPathProperty": "EndLabelXMemberPathProperty", + "EndLabelYDisplayMode": "EndLabelYDisplayMode", + "EndLabelYDisplayModeProperty": "EndLabelYDisplayModeProperty", + "EndLabelYMemberPath": "EndLabelYMemberPath", + "EndLabelYMemberPathProperty": "EndLabelYMemberPathProperty", + "EndValueXMemberPath": "EndValueXMemberPath", + "EndValueXMemberPathProperty": "EndValueXMemberPathProperty", + "EndValueYMemberPath": "EndValueYMemberPath", + "EndValueYMemberPathProperty": "EndValueYMemberPathProperty", + "StartLabelXDisplayMode": "StartLabelXDisplayMode", + "StartLabelXDisplayModeProperty": "StartLabelXDisplayModeProperty", + "StartLabelXMemberPath": "StartLabelXMemberPath", + "StartLabelXMemberPathProperty": "StartLabelXMemberPathProperty", + "StartLabelYDisplayMode": "StartLabelYDisplayMode", + "StartLabelYDisplayModeProperty": "StartLabelYDisplayModeProperty", + "StartLabelYMemberPath": "StartLabelYMemberPath", + "StartLabelYMemberPathProperty": "StartLabelYMemberPathProperty", + "StartValueXMemberPath": "StartValueXMemberPath", + "StartValueXMemberPathProperty": "StartValueXMemberPathProperty", + "StartValueYMemberPath": "StartValueYMemberPath", + "StartValueYMemberPathProperty": "StartValueYMemberPathProperty" + } + } + ], + "DataAnnotationPointLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationPointLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationPointLayerDescription()": "DataAnnotationPointLayerDescription()", + "DataAnnotationPointLayerDescription": "DataAnnotationPointLayerDescription()", + "AnnotationBadgeBackgroundXMemberPath": "AnnotationBadgeBackgroundXMemberPath", + "AnnotationBadgeBackgroundYMemberPath": "AnnotationBadgeBackgroundYMemberPath", + "AnnotationBadgeEnabledXMemberPath": "AnnotationBadgeEnabledXMemberPath", + "AnnotationBadgeEnabledYMemberPath": "AnnotationBadgeEnabledYMemberPath", + "AnnotationBadgeImageXMemberPath": "AnnotationBadgeImageXMemberPath", + "AnnotationBadgeImageYMemberPath": "AnnotationBadgeImageYMemberPath", + "AnnotationBadgeOutlineXMemberPath": "AnnotationBadgeOutlineXMemberPath", + "AnnotationBadgeOutlineYMemberPath": "AnnotationBadgeOutlineYMemberPath", + "CenterLabelXDisplayMode": "CenterLabelXDisplayMode", + "CenterLabelXMemberPath": "CenterLabelXMemberPath", + "CenterLabelYDisplayMode": "CenterLabelYDisplayMode", + "CenterLabelYMemberPath": "CenterLabelYMemberPath", + "EndLabelXDisplayMode": "EndLabelXDisplayMode", + "EndLabelXMemberPath": "EndLabelXMemberPath", + "EndLabelYDisplayMode": "EndLabelYDisplayMode", + "EndLabelYMemberPath": "EndLabelYMemberPath", + "EndValueXMemberPath": "EndValueXMemberPath", + "EndValueYMemberPath": "EndValueYMemberPath", + "StartLabelXDisplayMode": "StartLabelXDisplayMode", + "StartLabelXMemberPath": "StartLabelXMemberPath", + "StartLabelYDisplayMode": "StartLabelYDisplayMode", + "StartLabelYMemberPath": "StartLabelYMemberPath", + "StartValueXMemberPath": "StartValueXMemberPath", + "StartValueYMemberPath": "StartValueYMemberPath", + "Type": "Type" + } + } + ], + "DataAnnotationPointLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationPointLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationPointLayerDescriptionMetadata()": "DataAnnotationPointLayerDescriptionMetadata()", + "DataAnnotationPointLayerDescriptionMetadata": "DataAnnotationPointLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationRangeLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationRangeLayer", + "k": "class", + "s": "classes", + "m": { + "CenterLabelBackground": "CenterLabelBackground", + "CenterLabelBackgroundProperty": "CenterLabelBackgroundProperty", + "CenterLabelBorderColor": "CenterLabelBorderColor", + "CenterLabelBorderColorProperty": "CenterLabelBorderColorProperty", + "CenterLabelTextColor": "CenterLabelTextColor", + "CenterLabelTextColorProperty": "CenterLabelTextColorProperty", + "EndLabelBackground": "EndLabelBackground", + "EndLabelBackgroundProperty": "EndLabelBackgroundProperty", + "EndLabelBorderColor": "EndLabelBorderColor", + "EndLabelBorderColorProperty": "EndLabelBorderColorProperty", + "EndLabelTextColor": "EndLabelTextColor", + "EndLabelTextColorProperty": "EndLabelTextColorProperty", + "StartLabelBackground": "StartLabelBackground", + "StartLabelBackgroundProperty": "StartLabelBackgroundProperty", + "StartLabelBorderColor": "StartLabelBorderColor", + "StartLabelBorderColorProperty": "StartLabelBorderColorProperty", + "StartLabelTextColor": "StartLabelTextColor", + "StartLabelTextColorProperty": "StartLabelTextColorProperty" + } + } + ], + "DataAnnotationRangeLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationRangeLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRangeLayerDescription()": "DataAnnotationRangeLayerDescription()", + "DataAnnotationRangeLayerDescription": "DataAnnotationRangeLayerDescription()", + "CenterLabelBackground": "CenterLabelBackground", + "CenterLabelBorderColor": "CenterLabelBorderColor", + "CenterLabelTextColor": "CenterLabelTextColor", + "EndLabelBackground": "EndLabelBackground", + "EndLabelBorderColor": "EndLabelBorderColor", + "EndLabelTextColor": "EndLabelTextColor", + "StartLabelBackground": "StartLabelBackground", + "StartLabelBorderColor": "StartLabelBorderColor", + "StartLabelTextColor": "StartLabelTextColor", + "Type": "Type" + } + } + ], + "DataAnnotationRangeLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationRangeLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRangeLayerDescriptionMetadata()": "DataAnnotationRangeLayerDescriptionMetadata()", + "DataAnnotationRangeLayerDescriptionMetadata": "DataAnnotationRangeLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationRectLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationRectLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRectLayer()": "DataAnnotationRectLayer()", + "DataAnnotationRectLayer": "DataAnnotationRectLayer()" + } + } + ], + "DataAnnotationRectLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationRectLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRectLayerDescription()": "DataAnnotationRectLayerDescription()", + "DataAnnotationRectLayerDescription": "DataAnnotationRectLayerDescription()", + "Type": "Type" + } + } + ], + "DataAnnotationRectLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationRectLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRectLayerDescriptionMetadata()": "DataAnnotationRectLayerDescriptionMetadata()", + "DataAnnotationRectLayerDescriptionMetadata": "DataAnnotationRectLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationRectLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationRectLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationRectLayerDescriptionModule()": "DataAnnotationRectLayerDescriptionModule()", + "DataAnnotationRectLayerDescriptionModule": "DataAnnotationRectLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationShapeLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationShapeLayer", + "k": "class", + "s": "classes", + "m": { + "AnnotationShapeVisible": "AnnotationShapeVisible", + "AnnotationShapeVisibleProperty": "AnnotationShapeVisibleProperty", + "FromWorld(Point)": "FromWorld(Point)", + "FromWorld": "FromWorld(Point)", + "FromWorldX(double)": "FromWorldX(double)", + "FromWorldX": "FromWorldX(double)", + "FromWorldY(double)": "FromWorldY(double)", + "FromWorldY": "FromWorldY(double)", + "IsTargetingHorizontalAxis": "IsTargetingHorizontalAxis", + "IsTargetingHorizontalAxisProperty": "IsTargetingHorizontalAxisProperty", + "ItemsUseWorldCoordinates": "ItemsUseWorldCoordinates", + "ItemsUseWorldCoordinatesProperty": "ItemsUseWorldCoordinatesProperty", + "OnStylingAxisAnnotation(DataAnnotationInfo)": "OnStylingAxisAnnotation(DataAnnotationInfo)", + "OnStylingAxisAnnotation": "OnStylingAxisAnnotation(DataAnnotationInfo)", + "OnStylingOverlayText(OverlayTextUpdatingEventArgs)": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnStylingOverlayText": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnStylingShapeAnnotation(DataAnnotationItem)": "OnStylingShapeAnnotation(DataAnnotationItem)", + "OnStylingShapeAnnotation": "OnStylingShapeAnnotation(DataAnnotationItem)", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextAngleProperty": "OverlayTextAngleProperty", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMatchLayerProperty": "OverlayTextBackgroundMatchLayerProperty", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundModeProperty": "OverlayTextBackgroundModeProperty", + "OverlayTextBackgroundProperty": "OverlayTextBackgroundProperty", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBackgroundShiftProperty": "OverlayTextBackgroundShiftProperty", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderColorProperty": "OverlayTextBorderColorProperty", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMatchLayerProperty": "OverlayTextBorderMatchLayerProperty", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderModeProperty": "OverlayTextBorderModeProperty", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderRadiusProperty": "OverlayTextBorderRadiusProperty", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderShiftProperty": "OverlayTextBorderShiftProperty", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextBorderThicknessProperty": "OverlayTextBorderThicknessProperty", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMatchLayerProperty": "OverlayTextColorMatchLayerProperty", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorModeProperty": "OverlayTextColorModeProperty", + "OverlayTextColorProperty": "OverlayTextColorProperty", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextColorShiftProperty": "OverlayTextColorShiftProperty", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontFamilyProperty": "OverlayTextFontFamilyProperty", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontSizeProperty": "OverlayTextFontSizeProperty", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontStyleProperty": "OverlayTextFontStyleProperty", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextFontWeightProperty": "OverlayTextFontWeightProperty", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalMarginProperty": "OverlayTextHorizontalMarginProperty", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextHorizontalPaddingProperty": "OverlayTextHorizontalPaddingProperty", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextLocationProperty": "OverlayTextLocationProperty", + "OverlayTextMemberPath": "OverlayTextMemberPath", + "OverlayTextMemberPathProperty": "OverlayTextMemberPathProperty", + "OverlayTextProperty": "OverlayTextProperty", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalMarginProperty": "OverlayTextVerticalMarginProperty", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVerticalPaddingProperty": "OverlayTextVerticalPaddingProperty", + "OverlayTextVisible": "OverlayTextVisible", + "OverlayTextVisibleProperty": "OverlayTextVisibleProperty", + "ToWorld(Point)": "ToWorld(Point)", + "ToWorld": "ToWorld(Point)", + "ToWorldX(double)": "ToWorldX(double)", + "ToWorldX": "ToWorldX(double)", + "ToWorldY(double)": "ToWorldY(double)", + "ToWorldY": "ToWorldY(double)" + } + } + ], + "DataAnnotationShapeLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationShapeLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationShapeLayerDescription()": "DataAnnotationShapeLayerDescription()", + "DataAnnotationShapeLayerDescription": "DataAnnotationShapeLayerDescription()", + "AnnotationShapeVisible": "AnnotationShapeVisible", + "IsTargetingHorizontalAxis": "IsTargetingHorizontalAxis", + "ItemsUseWorldCoordinates": "ItemsUseWorldCoordinates", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextMemberPath": "OverlayTextMemberPath", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "StylingAxisAnnotationRef": "StylingAxisAnnotationRef", + "StylingOverlayTextRef": "StylingOverlayTextRef", + "StylingShapeAnnotationRef": "StylingShapeAnnotationRef", + "Type": "Type" + } + } + ], + "DataAnnotationShapeLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationShapeLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationShapeLayerDescriptionMetadata()": "DataAnnotationShapeLayerDescriptionMetadata()", + "DataAnnotationShapeLayerDescriptionMetadata": "DataAnnotationShapeLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationSliceLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationSliceLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationSliceLayer()": "DataAnnotationSliceLayer()", + "DataAnnotationSliceLayer": "DataAnnotationSliceLayer()", + "AnnotationBadgeBackgroundMemberPath": "AnnotationBadgeBackgroundMemberPath", + "AnnotationBadgeBackgroundMemberPathProperty": "AnnotationBadgeBackgroundMemberPathProperty", + "AnnotationBadgeEnabledMemberPath": "AnnotationBadgeEnabledMemberPath", + "AnnotationBadgeEnabledMemberPathProperty": "AnnotationBadgeEnabledMemberPathProperty", + "AnnotationBadgeImageMemberPath": "AnnotationBadgeImageMemberPath", + "AnnotationBadgeImageMemberPathProperty": "AnnotationBadgeImageMemberPathProperty", + "AnnotationBadgeOutlineMemberPath": "AnnotationBadgeOutlineMemberPath", + "AnnotationBadgeOutlineMemberPathProperty": "AnnotationBadgeOutlineMemberPathProperty", + "AnnotationLabelMemberPath": "AnnotationLabelMemberPath", + "AnnotationLabelMemberPathProperty": "AnnotationLabelMemberPathProperty", + "AnnotationValueMemberPath": "AnnotationValueMemberPath", + "AnnotationValueMemberPathProperty": "AnnotationValueMemberPathProperty" + } + } + ], + "DataAnnotationSliceLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationSliceLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationSliceLayerDescription()": "DataAnnotationSliceLayerDescription()", + "DataAnnotationSliceLayerDescription": "DataAnnotationSliceLayerDescription()", + "AnnotationBadgeBackgroundMemberPath": "AnnotationBadgeBackgroundMemberPath", + "AnnotationBadgeEnabledMemberPath": "AnnotationBadgeEnabledMemberPath", + "AnnotationBadgeImageMemberPath": "AnnotationBadgeImageMemberPath", + "AnnotationBadgeOutlineMemberPath": "AnnotationBadgeOutlineMemberPath", + "AnnotationLabelMemberPath": "AnnotationLabelMemberPath", + "AnnotationValueMemberPath": "AnnotationValueMemberPath", + "Type": "Type" + } + } + ], + "DataAnnotationSliceLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationSliceLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationSliceLayerDescriptionMetadata()": "DataAnnotationSliceLayerDescriptionMetadata()", + "DataAnnotationSliceLayerDescriptionMetadata": "DataAnnotationSliceLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationSliceLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationSliceLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationSliceLayerDescriptionModule()": "DataAnnotationSliceLayerDescriptionModule()", + "DataAnnotationSliceLayerDescriptionModule": "DataAnnotationSliceLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationStripLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataAnnotationStripLayer", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStripLayer()": "DataAnnotationStripLayer()", + "DataAnnotationStripLayer": "DataAnnotationStripLayer()", + "AnnotationBadgeBackgroundMemberPath": "AnnotationBadgeBackgroundMemberPath", + "AnnotationBadgeBackgroundMemberPathProperty": "AnnotationBadgeBackgroundMemberPathProperty", + "AnnotationBadgeEnabledMemberPath": "AnnotationBadgeEnabledMemberPath", + "AnnotationBadgeEnabledMemberPathProperty": "AnnotationBadgeEnabledMemberPathProperty", + "AnnotationBadgeImageMemberPath": "AnnotationBadgeImageMemberPath", + "AnnotationBadgeImageMemberPathProperty": "AnnotationBadgeImageMemberPathProperty", + "AnnotationBadgeOutlineMemberPath": "AnnotationBadgeOutlineMemberPath", + "AnnotationBadgeOutlineMemberPathProperty": "AnnotationBadgeOutlineMemberPathProperty", + "CenterLabelDisplayMode": "CenterLabelDisplayMode", + "CenterLabelDisplayModeProperty": "CenterLabelDisplayModeProperty", + "CenterLabelMemberPath": "CenterLabelMemberPath", + "CenterLabelMemberPathProperty": "CenterLabelMemberPathProperty", + "EndLabelDisplayMode": "EndLabelDisplayMode", + "EndLabelDisplayModeProperty": "EndLabelDisplayModeProperty", + "EndLabelMemberPath": "EndLabelMemberPath", + "EndLabelMemberPathProperty": "EndLabelMemberPathProperty", + "EndValueMemberPath": "EndValueMemberPath", + "EndValueMemberPathProperty": "EndValueMemberPathProperty", + "StartLabelDisplayMode": "StartLabelDisplayMode", + "StartLabelDisplayModeProperty": "StartLabelDisplayModeProperty", + "StartLabelMemberPath": "StartLabelMemberPath", + "StartLabelMemberPathProperty": "StartLabelMemberPathProperty", + "StartValueMemberPath": "StartValueMemberPath", + "StartValueMemberPathProperty": "StartValueMemberPathProperty" + } + } + ], + "DataAnnotationStripLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationStripLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStripLayerDescription()": "DataAnnotationStripLayerDescription()", + "DataAnnotationStripLayerDescription": "DataAnnotationStripLayerDescription()", + "AnnotationBadgeBackgroundMemberPath": "AnnotationBadgeBackgroundMemberPath", + "AnnotationBadgeEnabledMemberPath": "AnnotationBadgeEnabledMemberPath", + "AnnotationBadgeImageMemberPath": "AnnotationBadgeImageMemberPath", + "AnnotationBadgeOutlineMemberPath": "AnnotationBadgeOutlineMemberPath", + "CenterLabelDisplayMode": "CenterLabelDisplayMode", + "CenterLabelMemberPath": "CenterLabelMemberPath", + "EndLabelDisplayMode": "EndLabelDisplayMode", + "EndLabelMemberPath": "EndLabelMemberPath", + "EndValueMemberPath": "EndValueMemberPath", + "StartLabelDisplayMode": "StartLabelDisplayMode", + "StartLabelMemberPath": "StartLabelMemberPath", + "StartValueMemberPath": "StartValueMemberPath", + "Type": "Type" + } + } + ], + "DataAnnotationStripLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationStripLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStripLayerDescriptionMetadata()": "DataAnnotationStripLayerDescriptionMetadata()", + "DataAnnotationStripLayerDescriptionMetadata": "DataAnnotationStripLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationStripLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationStripLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStripLayerDescriptionModule()": "DataAnnotationStripLayerDescriptionModule()", + "DataAnnotationStripLayerDescriptionModule": "DataAnnotationStripLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationStyleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationStyleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStyleEventArgsDescription()": "DataAnnotationStyleEventArgsDescription()", + "DataAnnotationStyleEventArgsDescription": "DataAnnotationStyleEventArgsDescription()", + "AnnotationVisible": "AnnotationVisible", + "LabelCenter": "LabelCenter", + "LabelEnd": "LabelEnd", + "LabelStart": "LabelStart", + "Overlay": "Overlay", + "ShapeBrush": "ShapeBrush", + "ShapeBrushOpacity": "ShapeBrushOpacity", + "ShapeOutline": "ShapeOutline", + "ShapeOutlineOpacity": "ShapeOutlineOpacity", + "ShapeThickness": "ShapeThickness", + "ShapeVisible": "ShapeVisible", + "Type": "Type" + } + } + ], + "DataAnnotationStyleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataAnnotationStyleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataAnnotationStyleEventArgsDescriptionMetadata()": "DataAnnotationStyleEventArgsDescriptionMetadata()", + "DataAnnotationStyleEventArgsDescriptionMetadata": "DataAnnotationStyleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataAnnotationTargetMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/DataAnnotationTargetMode", + "k": "enum", + "s": "enums" + } + ], + "DataBindingEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DataBindingEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataBindingEventArgs()": "DataBindingEventArgs()", + "DataBindingEventArgs": "DataBindingEventArgs()", + "CellInfo": "CellInfo", + "ResolvedValue": "ResolvedValue", + "RowObject": "RowObject", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataBindingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataBindingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataBindingEventArgsDescription()": "DataBindingEventArgsDescription()", + "DataBindingEventArgsDescription": "DataBindingEventArgsDescription()", + "ResolvedValueRef": "ResolvedValueRef", + "RowObjectRef": "RowObjectRef", + "Type": "Type" + } + } + ], + "DataBindingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataBindingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataBindingEventArgsDescriptionMetadata()": "DataBindingEventArgsDescriptionMetadata()", + "DataBindingEventArgsDescriptionMetadata": "DataBindingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartAnnotationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartAnnotationDescriptionModule()": "DataChartAnnotationDescriptionModule()", + "DataChartAnnotationDescriptionModule": "DataChartAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartCategoryCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartCategoryCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartCategoryCoreDescriptionModule()": "DataChartCategoryCoreDescriptionModule()", + "DataChartCategoryCoreDescriptionModule": "DataChartCategoryCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartCategoryDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartCategoryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartCategoryDescriptionModule()": "DataChartCategoryDescriptionModule()", + "DataChartCategoryDescriptionModule": "DataChartCategoryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartCategoryTrendLineDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartCategoryTrendLineDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartCategoryTrendLineDescriptionModule()": "DataChartCategoryTrendLineDescriptionModule()", + "DataChartCategoryTrendLineDescriptionModule": "DataChartCategoryTrendLineDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartCoreDescriptionModule()": "DataChartCoreDescriptionModule()", + "DataChartCoreDescriptionModule": "DataChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartDashboardTileDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartDashboardTileDescriptionModule()": "DataChartDashboardTileDescriptionModule()", + "DataChartDashboardTileDescriptionModule": "DataChartDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DataChartDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "DataChartDashboardTileFeature()": "DataChartDashboardTileFeature()", + "DataChartDashboardTileFeature": "DataChartDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "DataChartDefaultTooltipsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartDefaultTooltipsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataChartDefaultTooltipsDescriptionMetadata()": "DataChartDefaultTooltipsDescriptionMetadata()", + "DataChartDefaultTooltipsDescriptionMetadata": "DataChartDefaultTooltipsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartDefaultTooltipsExtendedDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartDefaultTooltipsExtendedDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataChartDefaultTooltipsExtendedDescriptionMetadata()": "DataChartDefaultTooltipsExtendedDescriptionMetadata()", + "DataChartDefaultTooltipsExtendedDescriptionMetadata": "DataChartDefaultTooltipsExtendedDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartDescription", + "k": "class", + "s": "classes", + "m": { + "DataChartDescription()": "DataChartDescription()", + "DataChartDescription": "DataChartDescription()", + "ActualPlotAreaMarginBottom": "ActualPlotAreaMarginBottom", + "ActualPlotAreaMarginLeft": "ActualPlotAreaMarginLeft", + "ActualPlotAreaMarginRight": "ActualPlotAreaMarginRight", + "ActualPlotAreaMarginTop": "ActualPlotAreaMarginTop", + "ActualWindowScaleHorizontal": "ActualWindowScaleHorizontal", + "ActualWindowScaleVertical": "ActualWindowScaleVertical", + "AlignsGridLinesToPixels": "AlignsGridLinesToPixels", + "AutoExpandMarginExtraPadding": "AutoExpandMarginExtraPadding", + "AutoExpandMarginMaximumValue": "AutoExpandMarginMaximumValue", + "AutoMarginAndAngleUpdateMode": "AutoMarginAndAngleUpdateMode", + "Axes": "Axes", + "ComputedPlotAreaMarginMode": "ComputedPlotAreaMarginMode", + "DefaultAxisMajorStroke": "DefaultAxisMajorStroke", + "DefaultAxisMinorStroke": "DefaultAxisMinorStroke", + "DefaultAxisStroke": "DefaultAxisStroke", + "FullAxes": "FullAxes", + "GridMode": "GridMode", + "Height": "Height", + "IsHorizontalZoomEnabled": "IsHorizontalZoomEnabled", + "IsSquare": "IsSquare", + "IsVerticalZoomEnabled": "IsVerticalZoomEnabled", + "PlotAreaMarginBottom": "PlotAreaMarginBottom", + "PlotAreaMarginLeft": "PlotAreaMarginLeft", + "PlotAreaMarginRight": "PlotAreaMarginRight", + "PlotAreaMarginTop": "PlotAreaMarginTop", + "SeriesPlotAreaMarginHorizontalMode": "SeriesPlotAreaMarginHorizontalMode", + "SeriesPlotAreaMarginVerticalMode": "SeriesPlotAreaMarginVerticalMode", + "ShouldAutoExpandMarginForInitialLabels": "ShouldAutoExpandMarginForInitialLabels", + "ShouldConsiderAutoRotationForInitialLabels": "ShouldConsiderAutoRotationForInitialLabels", + "ShouldSuppressAxisLabelTruncation": "ShouldSuppressAxisLabelTruncation", + "SuppressAutoMarginAndAngleRecalculation": "SuppressAutoMarginAndAngleRecalculation", + "Type": "Type", + "Width": "Width", + "WindowScaleHorizontal": "WindowScaleHorizontal", + "WindowScaleVertical": "WindowScaleVertical" + } + } + ], + "DataChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataChartDescriptionMetadata()": "DataChartDescriptionMetadata()", + "DataChartDescriptionMetadata": "DataChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartExtendedAxesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartExtendedAxesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartExtendedAxesDescriptionModule()": "DataChartExtendedAxesDescriptionModule()", + "DataChartExtendedAxesDescriptionModule": "DataChartExtendedAxesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartFinancialCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartFinancialCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartFinancialCoreDescriptionModule()": "DataChartFinancialCoreDescriptionModule()", + "DataChartFinancialCoreDescriptionModule": "DataChartFinancialCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartFinancialDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartFinancialDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartFinancialDescriptionModule()": "DataChartFinancialDescriptionModule()", + "DataChartFinancialDescriptionModule": "DataChartFinancialDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartFinancialIndicatorsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartFinancialIndicatorsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartFinancialIndicatorsDescriptionModule()": "DataChartFinancialIndicatorsDescriptionModule()", + "DataChartFinancialIndicatorsDescriptionModule": "DataChartFinancialIndicatorsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartFinancialOverlaysDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartFinancialOverlaysDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartFinancialOverlaysDescriptionModule()": "DataChartFinancialOverlaysDescriptionModule()", + "DataChartFinancialOverlaysDescriptionModule": "DataChartFinancialOverlaysDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartInteractivityDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartInteractivityDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartInteractivityDescriptionModule()": "DataChartInteractivityDescriptionModule()", + "DataChartInteractivityDescriptionModule": "DataChartInteractivityDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartMouseButtonEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartMouseButtonEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataChartMouseButtonEventArgsDescription()": "DataChartMouseButtonEventArgsDescription()", + "DataChartMouseButtonEventArgsDescription": "DataChartMouseButtonEventArgsDescription()", + "CancelSelection": "CancelSelection", + "Chart": "Chart", + "Handled": "Handled", + "ItemRef": "ItemRef", + "PlotAreaPosition": "PlotAreaPosition", + "Series": "Series", + "Type": "Type", + "WorldPosition": "WorldPosition" + } + } + ], + "DataChartMouseButtonEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartMouseButtonEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataChartMouseButtonEventArgsDescriptionMetadata()": "DataChartMouseButtonEventArgsDescriptionMetadata()", + "DataChartMouseButtonEventArgsDescriptionMetadata": "DataChartMouseButtonEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartPolarCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartPolarCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartPolarCoreDescriptionModule()": "DataChartPolarCoreDescriptionModule()", + "DataChartPolarCoreDescriptionModule": "DataChartPolarCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartPolarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartPolarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartPolarDescriptionModule()": "DataChartPolarDescriptionModule()", + "DataChartPolarDescriptionModule": "DataChartPolarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartRadialCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartRadialCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartRadialCoreDescriptionModule()": "DataChartRadialCoreDescriptionModule()", + "DataChartRadialCoreDescriptionModule": "DataChartRadialCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartRadialDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartRadialDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartRadialDescriptionModule()": "DataChartRadialDescriptionModule()", + "DataChartRadialDescriptionModule": "DataChartRadialDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartScatterCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartScatterCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartScatterCoreDescriptionModule()": "DataChartScatterCoreDescriptionModule()", + "DataChartScatterCoreDescriptionModule": "DataChartScatterCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartScatterDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartScatterDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartScatterDescriptionModule()": "DataChartScatterDescriptionModule()", + "DataChartScatterDescriptionModule": "DataChartScatterDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartShapeCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartShapeCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartShapeCoreDescriptionModule()": "DataChartShapeCoreDescriptionModule()", + "DataChartShapeCoreDescriptionModule": "DataChartShapeCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartShapeDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartShapeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartShapeDescriptionModule()": "DataChartShapeDescriptionModule()", + "DataChartShapeDescriptionModule": "DataChartShapeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartStackedDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartStackedDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartStackedDescriptionModule()": "DataChartStackedDescriptionModule()", + "DataChartStackedDescriptionModule": "DataChartStackedDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartToolbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartToolbarDescriptionModule()": "DataChartToolbarDescriptionModule()", + "DataChartToolbarDescriptionModule": "DataChartToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartToolbarIconsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartToolbarIconsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartToolbarIconsDescriptionModule()": "DataChartToolbarIconsDescriptionModule()", + "DataChartToolbarIconsDescriptionModule": "DataChartToolbarIconsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartVerticalCategoryCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartVerticalCategoryCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartVerticalCategoryCoreDescriptionModule()": "DataChartVerticalCategoryCoreDescriptionModule()", + "DataChartVerticalCategoryCoreDescriptionModule": "DataChartVerticalCategoryCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartVerticalCategoryDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartVerticalCategoryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartVerticalCategoryDescriptionModule()": "DataChartVerticalCategoryDescriptionModule()", + "DataChartVerticalCategoryDescriptionModule": "DataChartVerticalCategoryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataChartVisualDataDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataChartVisualDataDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataChartVisualDataDescriptionModule()": "DataChartVisualDataDescriptionModule()", + "DataChartVisualDataDescriptionModule": "DataChartVisualDataDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataContext": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataContext", + "k": "class", + "s": "classes", + "m": { + "DataContext()": "DataContext()", + "DataContext": "DataContext()", + "ActualItemBrush": "ActualItemBrush", + "Item": "Item", + "ItemBrush": "ItemBrush", + "ItemLabel": "ItemLabel", + "LegendLabel": "LegendLabel", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Opacity": "Opacity", + "Outline": "Outline", + "Series": "Series", + "Thickness": "Thickness", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataContextDescription", + "k": "class", + "s": "classes", + "m": { + "DataContextDescription()": "DataContextDescription()", + "DataContextDescription": "DataContextDescription()", + "ActualItemBrush": "ActualItemBrush", + "ItemBrush": "ItemBrush", + "ItemLabelRef": "ItemLabelRef", + "ItemRef": "ItemRef", + "LegendLabelRef": "LegendLabelRef", + "Outline": "Outline", + "Thickness": "Thickness", + "Type": "Type" + } + } + ], + "DataContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataContextDescriptionMetadata()": "DataContextDescriptionMetadata()", + "DataContextDescriptionMetadata": "DataContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridAllColumnsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridAllColumnsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridAllColumnsDescriptionModule()": "DataGridAllColumnsDescriptionModule()", + "DataGridAllColumnsDescriptionModule": "DataGridAllColumnsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridCellEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DataGridCellEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataGridCellEventArgs()": "DataGridCellEventArgs()", + "DataGridCellEventArgs": "DataGridCellEventArgs()", + "Button": "Button", + "CellInfo": "CellInfo", + "Grid": "Grid", + "IsDoubleClick": "IsDoubleClick", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridCellEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridCellEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridCellEventArgsDescription()": "DataGridCellEventArgsDescription()", + "DataGridCellEventArgsDescription": "DataGridCellEventArgsDescription()", + "Button": "Button", + "CellInfo": "CellInfo", + "Grid": "Grid", + "IsDoubleClick": "IsDoubleClick", + "Type": "Type" + } + } + ], + "DataGridCellEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridCellEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridCellEventArgsDescriptionMetadata()": "DataGridCellEventArgsDescriptionMetadata()", + "DataGridCellEventArgsDescriptionMetadata": "DataGridCellEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridColumn": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DataGridColumn", + "k": "class", + "s": "classes", + "m": { + "ActualColumnOptionsAccentColor": "ActualColumnOptionsAccentColor", + "ActualColumnOptionsAccentColorProperty": "ActualColumnOptionsAccentColorProperty", + "ActualColumnOptionsBackground": "ActualColumnOptionsBackground", + "ActualColumnOptionsBackgroundProperty": "ActualColumnOptionsBackgroundProperty", + "ActualColumnOptionsGroupHeaderBackground": "ActualColumnOptionsGroupHeaderBackground", + "ActualColumnOptionsGroupHeaderBackgroundProperty": "ActualColumnOptionsGroupHeaderBackgroundProperty", + "ActualColumnOptionsGroupHeaderTextColor": "ActualColumnOptionsGroupHeaderTextColor", + "ActualColumnOptionsGroupHeaderTextColorProperty": "ActualColumnOptionsGroupHeaderTextColorProperty", + "ActualColumnOptionsHighlightColor": "ActualColumnOptionsHighlightColor", + "ActualColumnOptionsHighlightColorProperty": "ActualColumnOptionsHighlightColorProperty", + "ActualColumnOptionsHoverBackgroundColor": "ActualColumnOptionsHoverBackgroundColor", + "ActualColumnOptionsHoverBackgroundColorProperty": "ActualColumnOptionsHoverBackgroundColorProperty", + "ActualColumnOptionsIconAlignment": "ActualColumnOptionsIconAlignment", + "ActualColumnOptionsIconAlignmentProperty": "ActualColumnOptionsIconAlignmentProperty", + "ActualColumnOptionsIconBehavior": "ActualColumnOptionsIconBehavior", + "ActualColumnOptionsIconBehaviorProperty": "ActualColumnOptionsIconBehaviorProperty", + "ActualColumnOptionsIconColor": "ActualColumnOptionsIconColor", + "ActualColumnOptionsIconColorProperty": "ActualColumnOptionsIconColorProperty", + "ActualColumnOptionsRowHeight": "ActualColumnOptionsRowHeight", + "ActualColumnOptionsRowHeightProperty": "ActualColumnOptionsRowHeightProperty", + "ActualColumnOptionsScrollbarActiveBackground": "ActualColumnOptionsScrollbarActiveBackground", + "ActualColumnOptionsScrollbarActiveBackgroundProperty": "ActualColumnOptionsScrollbarActiveBackgroundProperty", + "ActualColumnOptionsScrollbarBackground": "ActualColumnOptionsScrollbarBackground", + "ActualColumnOptionsScrollbarBackgroundProperty": "ActualColumnOptionsScrollbarBackgroundProperty", + "ActualColumnOptionsScrollbarHoverBackground": "ActualColumnOptionsScrollbarHoverBackground", + "ActualColumnOptionsScrollbarHoverBackgroundProperty": "ActualColumnOptionsScrollbarHoverBackgroundProperty", + "ActualColumnOptionsSeparatorColor": "ActualColumnOptionsSeparatorColor", + "ActualColumnOptionsSeparatorColorProperty": "ActualColumnOptionsSeparatorColorProperty", + "ActualColumnOptionsTextColor": "ActualColumnOptionsTextColor", + "ActualColumnOptionsTextColorProperty": "ActualColumnOptionsTextColorProperty", + "ActualColumnOptionsToolTipBackgroundColor": "ActualColumnOptionsToolTipBackgroundColor", + "ActualColumnOptionsToolTipBackgroundColorProperty": "ActualColumnOptionsToolTipBackgroundColorProperty", + "ActualColumnOptionsToolTipTextColor": "ActualColumnOptionsToolTipTextColor", + "ActualColumnOptionsToolTipTextColorProperty": "ActualColumnOptionsToolTipTextColorProperty", + "ActualDeletedTextColor": "ActualDeletedTextColor", + "ActualDeletedTextColorProperty": "ActualDeletedTextColorProperty", + "ActualEditOpacity": "ActualEditOpacity", + "ActualEditOpacityProperty": "ActualEditOpacityProperty", + "ActualHeaderText": "ActualHeaderText", + "ActualHeaderTextProperty": "ActualHeaderTextProperty", + "ActualHoverBackground": "ActualHoverBackground", + "ActualHoverBackgroundProperty": "ActualHoverBackgroundProperty", + "ActualIsColumnOptionsEnabled": "ActualIsColumnOptionsEnabled", + "ActualIsColumnOptionsEnabledProperty": "ActualIsColumnOptionsEnabledProperty", + "ActualIsColumnOptionsGroupingEnabled": "ActualIsColumnOptionsGroupingEnabled", + "ActualIsColumnOptionsGroupingEnabledProperty": "ActualIsColumnOptionsGroupingEnabledProperty", + "ActualIsColumnOptionsSummariesEnabled": "ActualIsColumnOptionsSummariesEnabled", + "ActualIsColumnOptionsSummariesEnabledProperty": "ActualIsColumnOptionsSummariesEnabledProperty", + "ActualMergedCellVerticalAlignment": "ActualMergedCellVerticalAlignment", + "ActualMergedCellVerticalAlignmentProperty": "ActualMergedCellVerticalAlignmentProperty", + "ActualRowHoverTextColor": "ActualRowHoverTextColor", + "ActualRowHoverTextColorProperty": "ActualRowHoverTextColorProperty", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedBackgroundProperty": "ActualSelectedBackgroundProperty", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ActualSelectedTextColorProperty": "ActualSelectedTextColorProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AnimationSettings": "AnimationSettings", + "AnimationSettingsProperty": "AnimationSettingsProperty", + "ApplyCustomFilter(string, int, object)": "ApplyCustomFilter(string, int, object)", + "ApplyCustomFilter": "ApplyCustomFilter(string, int, object)", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsAccentColorProperty": "ColumnOptionsAccentColorProperty", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsBackgroundProperty": "ColumnOptionsBackgroundProperty", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontFamilyProperty": "ColumnOptionsFontFamilyProperty", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontSizeProperty": "ColumnOptionsFontSizeProperty", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontStyleProperty": "ColumnOptionsFontStyleProperty", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsFontWeightProperty": "ColumnOptionsFontWeightProperty", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderBackgroundProperty": "ColumnOptionsGroupHeaderBackgroundProperty", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontFamilyProperty": "ColumnOptionsGroupHeaderFontFamilyProperty", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontSizeProperty": "ColumnOptionsGroupHeaderFontSizeProperty", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontStyleProperty": "ColumnOptionsGroupHeaderFontStyleProperty", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderFontWeightProperty": "ColumnOptionsGroupHeaderFontWeightProperty", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsGroupHeaderTextColorProperty": "ColumnOptionsGroupHeaderTextColorProperty", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHighlightColorProperty": "ColumnOptionsHighlightColorProperty", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsHoverBackgroundColorProperty": "ColumnOptionsHoverBackgroundColorProperty", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconAlignmentProperty": "ColumnOptionsIconAlignmentProperty", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconBehaviorProperty": "ColumnOptionsIconBehaviorProperty", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsIconColorProperty": "ColumnOptionsIconColorProperty", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsRowHeightProperty": "ColumnOptionsRowHeightProperty", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarActiveBackgroundProperty": "ColumnOptionsScrollbarActiveBackgroundProperty", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarBackgroundProperty": "ColumnOptionsScrollbarBackgroundProperty", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsScrollbarHoverBackgroundProperty": "ColumnOptionsScrollbarHoverBackgroundProperty", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsSeparatorColorProperty": "ColumnOptionsSeparatorColorProperty", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTextColorProperty": "ColumnOptionsTextColorProperty", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipBackgroundColorProperty": "ColumnOptionsToolTipBackgroundColorProperty", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "ColumnOptionsToolTipTextColorProperty": "ColumnOptionsToolTipTextColorProperty", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "DeletedTextColor": "DeletedTextColor", + "DeletedTextColorProperty": "DeletedTextColorProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "EditFontFamily": "EditFontFamily", + "EditFontFamilyProperty": "EditFontFamilyProperty", + "EditFontSize": "EditFontSize", + "EditFontSizeProperty": "EditFontSizeProperty", + "EditFontStyle": "EditFontStyle", + "EditFontStyleProperty": "EditFontStyleProperty", + "EditFontWeight": "EditFontWeight", + "EditFontWeightProperty": "EditFontWeightProperty", + "EditOpacity": "EditOpacity", + "EditOpacityProperty": "EditOpacityProperty", + "Field": "Field", + "FieldProperty": "FieldProperty", + "Filter": "Filter", + "FilterComparisonType": "FilterComparisonType", + "FilterComparisonTypeProperty": "FilterComparisonTypeProperty", + "FilterExpression": "FilterExpression", + "FilterExpressionProperty": "FilterExpressionProperty", + "FilterOperands": "FilterOperands", + "FilterProperty": "FilterProperty", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "GetNamedHeaderValue(string)": "GetNamedHeaderValue(string)", + "GetNamedHeaderValue": "GetNamedHeaderValue(string)", + "GetUniqueKey()": "GetUniqueKey()", + "GetUniqueKey": "GetUniqueKey()", + "GroupDirection": "GroupDirection", + "GroupDirectionProperty": "GroupDirectionProperty", + "GroupPosition": "GroupPosition", + "GroupPositionProperty": "GroupPositionProperty", + "HasNamedHeaderValue(string)": "HasNamedHeaderValue(string)", + "HasNamedHeaderValue": "HasNamedHeaderValue(string)", + "HasNamedHeaderValues()": "HasNamedHeaderValues()", + "HasNamedHeaderValues": "HasNamedHeaderValues()", + "Header": "Header", + "HeaderProperty": "HeaderProperty", + "HeaderText": "HeaderText", + "HeaderTextProperty": "HeaderTextProperty", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsAutoGenerated": "IsAutoGenerated", + "IsAutoGeneratedProperty": "IsAutoGeneratedProperty", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsEnabledProperty": "IsColumnOptionsEnabledProperty", + "IsColumnOptionsGroupingEnabled": "IsColumnOptionsGroupingEnabled", + "IsColumnOptionsGroupingEnabledProperty": "IsColumnOptionsGroupingEnabledProperty", + "IsColumnOptionsSummariesEnabled": "IsColumnOptionsSummariesEnabled", + "IsColumnOptionsSummariesEnabledProperty": "IsColumnOptionsSummariesEnabledProperty", + "IsEditable": "IsEditable", + "IsEditableProperty": "IsEditableProperty", + "IsFilteringEnabled": "IsFilteringEnabled", + "IsFilteringEnabledProperty": "IsFilteringEnabledProperty", + "IsHidden": "IsHidden", + "IsHiddenProperty": "IsHiddenProperty", + "IsResizingEnabled": "IsResizingEnabled", + "IsResizingEnabledProperty": "IsResizingEnabledProperty", + "IsSortingEnabled": "IsSortingEnabled", + "IsSortingEnabledProperty": "IsSortingEnabledProperty", + "MergedCellEvaluationCriteria": "MergedCellEvaluationCriteria", + "MergedCellEvaluationCriteriaProperty": "MergedCellEvaluationCriteriaProperty", + "MergedCellMode": "MergedCellMode", + "MergedCellModeProperty": "MergedCellModeProperty", + "MergedCellPaddingBottom": "MergedCellPaddingBottom", + "MergedCellPaddingBottomProperty": "MergedCellPaddingBottomProperty", + "MergedCellPaddingLeft": "MergedCellPaddingLeft", + "MergedCellPaddingLeftProperty": "MergedCellPaddingLeftProperty", + "MergedCellPaddingRight": "MergedCellPaddingRight", + "MergedCellPaddingRightProperty": "MergedCellPaddingRightProperty", + "MergedCellPaddingTop": "MergedCellPaddingTop", + "MergedCellPaddingTopProperty": "MergedCellPaddingTopProperty", + "MergedCellVerticalAlignment": "MergedCellVerticalAlignment", + "MergedCellVerticalAlignmentProperty": "MergedCellVerticalAlignmentProperty", + "MinWidth": "MinWidth", + "MinWidthProperty": "MinWidthProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnFormatCell(FormatCellEventArgs)": "OnFormatCell(FormatCellEventArgs)", + "OnFormatCell": "OnFormatCell(FormatCellEventArgs)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "Pinned": "Pinned", + "PinnedProperty": "PinnedProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveNamedHeaderValue(string)": "RemoveNamedHeaderValue(string)", + "RemoveNamedHeaderValue": "RemoveNamedHeaderValue(string)", + "RowHoverBackground": "RowHoverBackground", + "RowHoverBackgroundProperty": "RowHoverBackgroundProperty", + "RowHoverTextColor": "RowHoverTextColor", + "RowHoverTextColorProperty": "RowHoverTextColorProperty", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundProperty": "SelectedBackgroundProperty", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorProperty": "SelectedTextColorProperty", + "SetNamedHeaderValue(string, CellPropertyAnimationType, object)": "SetNamedHeaderValue(string, CellPropertyAnimationType, object)", + "SetNamedHeaderValue": "SetNamedHeaderValue(string, CellPropertyAnimationType, object)", + "ShouldRemoveWhenHidden": "ShouldRemoveWhenHidden", + "ShouldRemoveWhenHiddenProperty": "ShouldRemoveWhenHiddenProperty", + "SortDirection": "SortDirection", + "SortDirectionProperty": "SortDirectionProperty", + "SortPosition": "SortPosition", + "SortPositionProperty": "SortPositionProperty", + "SuffixIconCollectionName": "SuffixIconCollectionName", + "SuffixIconCollectionNameProperty": "SuffixIconCollectionNameProperty", + "SuffixIconFill": "SuffixIconFill", + "SuffixIconFillProperty": "SuffixIconFillProperty", + "SuffixIconName": "SuffixIconName", + "SuffixIconNameProperty": "SuffixIconNameProperty", + "SuffixIconStroke": "SuffixIconStroke", + "SuffixIconStrokeProperty": "SuffixIconStrokeProperty", + "SuffixIconViewBoxHeight": "SuffixIconViewBoxHeight", + "SuffixIconViewBoxHeightProperty": "SuffixIconViewBoxHeightProperty", + "SuffixIconViewBoxHeightPropertyName": "SuffixIconViewBoxHeightPropertyName", + "SuffixIconViewBoxLeft": "SuffixIconViewBoxLeft", + "SuffixIconViewBoxLeftProperty": "SuffixIconViewBoxLeftProperty", + "SuffixIconViewBoxLeftPropertyName": "SuffixIconViewBoxLeftPropertyName", + "SuffixIconViewBoxTop": "SuffixIconViewBoxTop", + "SuffixIconViewBoxTopProperty": "SuffixIconViewBoxTopProperty", + "SuffixIconViewBoxTopPropertyName": "SuffixIconViewBoxTopPropertyName", + "SuffixIconViewBoxWidth": "SuffixIconViewBoxWidth", + "SuffixIconViewBoxWidthProperty": "SuffixIconViewBoxWidthProperty", + "SuffixIconViewBoxWidthPropertyName": "SuffixIconViewBoxWidthPropertyName", + "SuffixMargin": "SuffixMargin", + "SuffixMarginProperty": "SuffixMarginProperty", + "SuffixMarginPropertyName": "SuffixMarginPropertyName", + "SuffixText": "SuffixText", + "SuffixTextColor": "SuffixTextColor", + "SuffixTextColorProperty": "SuffixTextColorProperty", + "SuffixTextFontFamily": "SuffixTextFontFamily", + "SuffixTextFontFamilyProperty": "SuffixTextFontFamilyProperty", + "SuffixTextFontSize": "SuffixTextFontSize", + "SuffixTextFontSizeProperty": "SuffixTextFontSizeProperty", + "SuffixTextFontStyle": "SuffixTextFontStyle", + "SuffixTextFontStyleProperty": "SuffixTextFontStyleProperty", + "SuffixTextFontWeight": "SuffixTextFontWeight", + "SuffixTextFontWeightProperty": "SuffixTextFontWeightProperty", + "SuffixTextProperty": "SuffixTextProperty", + "TextDecoration": "TextDecoration", + "TextDecorationProperty": "TextDecorationProperty", + "TextDecorationPropertyName": "TextDecorationPropertyName", + "Width": "Width", + "WidthProperty": "WidthProperty" + } + } + ], + "DataGridColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridColumnDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridColumnDescription()": "DataGridColumnDescription()", + "DataGridColumnDescription": "DataGridColumnDescription()", + "ActualColumnOptionsAccentColor": "ActualColumnOptionsAccentColor", + "ActualColumnOptionsBackground": "ActualColumnOptionsBackground", + "ActualColumnOptionsGroupHeaderBackground": "ActualColumnOptionsGroupHeaderBackground", + "ActualColumnOptionsGroupHeaderTextColor": "ActualColumnOptionsGroupHeaderTextColor", + "ActualColumnOptionsHighlightColor": "ActualColumnOptionsHighlightColor", + "ActualColumnOptionsHoverBackgroundColor": "ActualColumnOptionsHoverBackgroundColor", + "ActualColumnOptionsIconAlignment": "ActualColumnOptionsIconAlignment", + "ActualColumnOptionsIconBehavior": "ActualColumnOptionsIconBehavior", + "ActualColumnOptionsIconColor": "ActualColumnOptionsIconColor", + "ActualColumnOptionsRowHeight": "ActualColumnOptionsRowHeight", + "ActualColumnOptionsScrollbarActiveBackground": "ActualColumnOptionsScrollbarActiveBackground", + "ActualColumnOptionsScrollbarBackground": "ActualColumnOptionsScrollbarBackground", + "ActualColumnOptionsScrollbarHoverBackground": "ActualColumnOptionsScrollbarHoverBackground", + "ActualColumnOptionsSeparatorColor": "ActualColumnOptionsSeparatorColor", + "ActualColumnOptionsTextColor": "ActualColumnOptionsTextColor", + "ActualColumnOptionsToolTipBackgroundColor": "ActualColumnOptionsToolTipBackgroundColor", + "ActualColumnOptionsToolTipTextColor": "ActualColumnOptionsToolTipTextColor", + "ActualDeletedTextColor": "ActualDeletedTextColor", + "ActualEditOpacity": "ActualEditOpacity", + "ActualHeaderText": "ActualHeaderText", + "ActualHeaderTextChangeRef": "ActualHeaderTextChangeRef", + "ActualHoverBackground": "ActualHoverBackground", + "ActualIsColumnOptionsEnabled": "ActualIsColumnOptionsEnabled", + "ActualIsColumnOptionsGroupingEnabled": "ActualIsColumnOptionsGroupingEnabled", + "ActualIsColumnOptionsSummariesEnabled": "ActualIsColumnOptionsSummariesEnabled", + "ActualRowHoverTextColor": "ActualRowHoverTextColor", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "AnimationSettings": "AnimationSettings", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "DeletedTextColor": "DeletedTextColor", + "EditFontFamily": "EditFontFamily", + "EditFontSize": "EditFontSize", + "EditFontStyle": "EditFontStyle", + "EditFontWeight": "EditFontWeight", + "EditOpacity": "EditOpacity", + "Field": "Field", + "Filter": "Filter", + "FilterComparisonType": "FilterComparisonType", + "FilterExpression": "FilterExpression", + "FilterOperands": "FilterOperands", + "FormatCellRef": "FormatCellRef", + "GroupDirection": "GroupDirection", + "GroupPosition": "GroupPosition", + "Header": "Header", + "HeaderText": "HeaderText", + "IsAutoGenerated": "IsAutoGenerated", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsGroupingEnabled": "IsColumnOptionsGroupingEnabled", + "IsColumnOptionsSummariesEnabled": "IsColumnOptionsSummariesEnabled", + "IsEditable": "IsEditable", + "IsFilteringEnabled": "IsFilteringEnabled", + "IsFromMarkup": "IsFromMarkup", + "IsHidden": "IsHidden", + "IsResizingEnabled": "IsResizingEnabled", + "IsSortingEnabled": "IsSortingEnabled", + "MergedCellEvaluationCriteria": "MergedCellEvaluationCriteria", + "MergedCellMode": "MergedCellMode", + "MergedCellPaddingBottom": "MergedCellPaddingBottom", + "MergedCellPaddingLeft": "MergedCellPaddingLeft", + "MergedCellPaddingRight": "MergedCellPaddingRight", + "MergedCellPaddingTop": "MergedCellPaddingTop", + "MergedCellVerticalAlignment": "MergedCellVerticalAlignment", + "MinWidth": "MinWidth", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "Pinned": "Pinned", + "RowHoverBackground": "RowHoverBackground", + "RowHoverTextColor": "RowHoverTextColor", + "SelectedBackground": "SelectedBackground", + "SelectedTextColor": "SelectedTextColor", + "ShouldRemoveWhenHidden": "ShouldRemoveWhenHidden", + "SortDirection": "SortDirection", + "SortPosition": "SortPosition", + "SuffixIconCollectionName": "SuffixIconCollectionName", + "SuffixIconFill": "SuffixIconFill", + "SuffixIconName": "SuffixIconName", + "SuffixIconStroke": "SuffixIconStroke", + "SuffixIconViewBoxHeight": "SuffixIconViewBoxHeight", + "SuffixIconViewBoxLeft": "SuffixIconViewBoxLeft", + "SuffixIconViewBoxTop": "SuffixIconViewBoxTop", + "SuffixIconViewBoxWidth": "SuffixIconViewBoxWidth", + "SuffixMargin": "SuffixMargin", + "SuffixText": "SuffixText", + "SuffixTextColor": "SuffixTextColor", + "SuffixTextFontFamily": "SuffixTextFontFamily", + "SuffixTextFontSize": "SuffixTextFontSize", + "SuffixTextFontStyle": "SuffixTextFontStyle", + "SuffixTextFontWeight": "SuffixTextFontWeight", + "TextDecoration": "TextDecoration", + "Type": "Type", + "Width": "Width" + } + } + ], + "DataGridColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridColumnDescriptionMetadata()": "DataGridColumnDescriptionMetadata()", + "DataGridColumnDescriptionMetadata": "DataGridColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridComparisonOperatorSelector": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DataGridComparisonOperatorSelector", + "k": "class", + "s": "classes", + "m": { + "DataGridComparisonOperatorSelector()": "DataGridComparisonOperatorSelector()", + "DataGridComparisonOperatorSelector": "DataGridComparisonOperatorSelector()", + "AddCustomOperator(string, string, string, int)": "AddCustomOperator(string, string, string, int)", + "AddCustomOperator": "AddCustomOperator(string, string, string, int)", + "Background": "Background", + "ClearCustomOperators()": "ClearCustomOperators()", + "ClearCustomOperators": "ClearCustomOperators()", + "Close()": "Close()", + "Close": "Close()", + "CustomFilterID": "CustomFilterID", + "CustomFilterIndex": "CustomFilterIndex", + "DataType": "DataType", + "Dispose()": "Dispose()", + "Dispose": "Dispose()", + "GetDropdownHeight()": "GetDropdownHeight()", + "GetDropdownHeight": "GetDropdownHeight()", + "MaxHeight": "MaxHeight", + "OnClosing(OperatorSelectorClosingEventArgs)": "OnClosing(OperatorSelectorClosingEventArgs)", + "OnClosing": "OnClosing(OperatorSelectorClosingEventArgs)", + "OnOpened(OperatorSelectorOpeningEventArgs)": "OnOpened(OperatorSelectorOpeningEventArgs)", + "OnOpened": "OnOpened(OperatorSelectorOpeningEventArgs)", + "OnOpening(OperatorSelectorOpeningEventArgs)": "OnOpening(OperatorSelectorOpeningEventArgs)", + "OnOpening": "OnOpening(OperatorSelectorOpeningEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(OperatorSelectorValueChangedEventArgs)": "OnValueChanged(OperatorSelectorValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(OperatorSelectorValueChangedEventArgs)", + "OperatorCaptionBottom": "OperatorCaptionBottom", + "OperatorCaptionBottomPercentile": "OperatorCaptionBottomPercentile", + "OperatorCaptionContains": "OperatorCaptionContains", + "OperatorCaptionDoesNotContain": "OperatorCaptionDoesNotContain", + "OperatorCaptionDoesNotEndWith": "OperatorCaptionDoesNotEndWith", + "OperatorCaptionDoesNotStartWith": "OperatorCaptionDoesNotStartWith", + "OperatorCaptionEmpty": "OperatorCaptionEmpty", + "OperatorCaptionEndsWith": "OperatorCaptionEndsWith", + "OperatorCaptionEquals": "OperatorCaptionEquals", + "OperatorCaptionFalse": "OperatorCaptionFalse", + "OperatorCaptionGreaterThan": "OperatorCaptionGreaterThan", + "OperatorCaptionGreaterThanOrEqual": "OperatorCaptionGreaterThanOrEqual", + "OperatorCaptionLastMonth": "OperatorCaptionLastMonth", + "OperatorCaptionLastQuarter": "OperatorCaptionLastQuarter", + "OperatorCaptionLastWeek": "OperatorCaptionLastWeek", + "OperatorCaptionLastYear": "OperatorCaptionLastYear", + "OperatorCaptionLessThan": "OperatorCaptionLessThan", + "OperatorCaptionLessThanOrEqual": "OperatorCaptionLessThanOrEqual", + "OperatorCaptionMonth": "OperatorCaptionMonth", + "OperatorCaptionNextMonth": "OperatorCaptionNextMonth", + "OperatorCaptionNextQuarter": "OperatorCaptionNextQuarter", + "OperatorCaptionNextWeek": "OperatorCaptionNextWeek", + "OperatorCaptionNextYear": "OperatorCaptionNextYear", + "OperatorCaptionNotEmpty": "OperatorCaptionNotEmpty", + "OperatorCaptionNotEquals": "OperatorCaptionNotEquals", + "OperatorCaptionQ1": "OperatorCaptionQ1", + "OperatorCaptionQ2": "OperatorCaptionQ2", + "OperatorCaptionQ3": "OperatorCaptionQ3", + "OperatorCaptionQ4": "OperatorCaptionQ4", + "OperatorCaptionStartsWith": "OperatorCaptionStartsWith", + "OperatorCaptionThisMonth": "OperatorCaptionThisMonth", + "OperatorCaptionThisQuarter": "OperatorCaptionThisQuarter", + "OperatorCaptionThisWeek": "OperatorCaptionThisWeek", + "OperatorCaptionThisYear": "OperatorCaptionThisYear", + "OperatorCaptionToday": "OperatorCaptionToday", + "OperatorCaptionTomorrow": "OperatorCaptionTomorrow", + "OperatorCaptionTop": "OperatorCaptionTop", + "OperatorCaptionTopPercentile": "OperatorCaptionTopPercentile", + "OperatorCaptionTrue": "OperatorCaptionTrue", + "OperatorCaptionYear": "OperatorCaptionYear", + "OperatorCaptionYearToDate": "OperatorCaptionYearToDate", + "OperatorCaptionYesterday": "OperatorCaptionYesterday", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "SelectCustomFilter(string, int)": "SelectCustomFilter(string, int)", + "SelectCustomFilter": "SelectCustomFilter(string, int)", + "TextColor": "TextColor", + "Toggle()": "Toggle()", + "Toggle": "Toggle()", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridComparisonOperatorSelectorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridComparisonOperatorSelectorDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridComparisonOperatorSelectorDescription()": "DataGridComparisonOperatorSelectorDescription()", + "DataGridComparisonOperatorSelectorDescription": "DataGridComparisonOperatorSelectorDescription()", + "Background": "Background", + "ClosingRef": "ClosingRef", + "CustomFilterID": "CustomFilterID", + "CustomFilterIndex": "CustomFilterIndex", + "DataType": "DataType", + "MaxHeight": "MaxHeight", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef" + } + } + ], + "DataGridComparisonOperatorSelectorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridComparisonOperatorSelectorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridComparisonOperatorSelectorDescriptionMetadata()": "DataGridComparisonOperatorSelectorDescriptionMetadata()", + "DataGridComparisonOperatorSelectorDescriptionMetadata": "DataGridComparisonOperatorSelectorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridCoreDescriptionModule()": "DataGridCoreDescriptionModule()", + "DataGridCoreDescriptionModule": "DataGridCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridDescription()": "DataGridDescription()", + "DataGridDescription": "DataGridDescription()", + "ActivationMode": "ActivationMode", + "ActiveCell": "ActiveCell", + "ActiveCellChangedRef": "ActiveCellChangedRef", + "ActualBackground": "ActualBackground", + "ActualBorder": "ActualBorder", + "ActualColumns": "ActualColumns", + "ActualColumnsChangedRef": "ActualColumnsChangedRef", + "ActualHeaderHeight": "ActualHeaderHeight", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualPrimaryKeyChangeRef": "ActualPrimaryKeyChangeRef", + "ActualRowHeight": "ActualRowHeight", + "AllowCopyOperation": "AllowCopyOperation", + "AnimationSettings": "AnimationSettings", + "AutoAcceptEdits": "AutoAcceptEdits", + "AutoGenerateColumns": "AutoGenerateColumns", + "AutoGenerateDesiredProperties": "AutoGenerateDesiredProperties", + "Background": "Background", + "Border": "Border", + "BorderWidthBottom": "BorderWidthBottom", + "BorderWidthLeft": "BorderWidthLeft", + "BorderWidthRight": "BorderWidthRight", + "BorderWidthTop": "BorderWidthTop", + "CellBackground": "CellBackground", + "CellClickedRef": "CellClickedRef", + "CellDataLoadedAnimationMode": "CellDataLoadedAnimationMode", + "CellEditEndedRef": "CellEditEndedRef", + "CellEditStartedRef": "CellEditStartedRef", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "CellPointerDownRef": "CellPointerDownRef", + "CellPointerUpRef": "CellPointerUpRef", + "CellPreviewPointerDownRef": "CellPreviewPointerDownRef", + "CellPreviewPointerUpRef": "CellPreviewPointerUpRef", + "CellSelectedBackground": "CellSelectedBackground", + "CellSelectedTextColor": "CellSelectedTextColor", + "CellSelectionAnimationMode": "CellSelectionAnimationMode", + "CellTextColor": "CellTextColor", + "CellValueChangingRef": "CellValueChangingRef", + "ClearSelectionOnEscape": "ClearSelectionOnEscape", + "ColumnAddingAnimationMode": "ColumnAddingAnimationMode", + "ColumnExchangingAnimationMode": "ColumnExchangingAnimationMode", + "ColumnHiddenChangedRef": "ColumnHiddenChangedRef", + "ColumnHidingAnimationMode": "ColumnHidingAnimationMode", + "ColumnMovingAnimationMode": "ColumnMovingAnimationMode", + "ColumnMovingMode": "ColumnMovingMode", + "ColumnMovingSeparator": "ColumnMovingSeparator", + "ColumnMovingSeparatorBackground": "ColumnMovingSeparatorBackground", + "ColumnMovingSeparatorOpacity": "ColumnMovingSeparatorOpacity", + "ColumnMovingSeparatorWidth": "ColumnMovingSeparatorWidth", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "ColumnPinnedChangedRef": "ColumnPinnedChangedRef", + "ColumnPropertyUpdatingAnimationMode": "ColumnPropertyUpdatingAnimationMode", + "ColumnResizingAnimationMode": "ColumnResizingAnimationMode", + "ColumnResizingMode": "ColumnResizingMode", + "ColumnResizingSeparator": "ColumnResizingSeparator", + "ColumnResizingSeparatorBackground": "ColumnResizingSeparatorBackground", + "ColumnResizingSeparatorOpacity": "ColumnResizingSeparatorOpacity", + "ColumnResizingSeparatorWidth": "ColumnResizingSeparatorWidth", + "ColumnShowingAnimationMode": "ColumnShowingAnimationMode", + "ColumnWidthChangedRef": "ColumnWidthChangedRef", + "Columns": "Columns", + "ColumnsAutoGeneratedRef": "ColumnsAutoGeneratedRef", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CustomFilterRequestedRef": "CustomFilterRequestedRef", + "DataCommittedRef": "DataCommittedRef", + "DataCommittingRef": "DataCommittingRef", + "DataSource": "DataSource", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceRef": "DataSourceRef", + "DefaultColumnMinWidth": "DefaultColumnMinWidth", + "DeferEventForRowDragSelection": "DeferEventForRowDragSelection", + "DeletedTextColor": "DeletedTextColor", + "Density": "Density", + "EditFontFamily": "EditFontFamily", + "EditFontSize": "EditFontSize", + "EditFontStyle": "EditFontStyle", + "EditFontWeight": "EditFontWeight", + "EditMode": "EditMode", + "EditModeClickAction": "EditModeClickAction", + "EditOnKeyPress": "EditOnKeyPress", + "EditOpacity": "EditOpacity", + "EditRowBorder": "EditRowBorder", + "EditRowBorderWidthBottom": "EditRowBorderWidthBottom", + "EditRowBorderWidthLeft": "EditRowBorderWidthLeft", + "EditRowBorderWidthRight": "EditRowBorderWidthRight", + "EditRowBorderWidthTop": "EditRowBorderWidthTop", + "EnterBehavior": "EnterBehavior", + "EnterBehaviorAfterEdit": "EnterBehaviorAfterEdit", + "ExpandCollapseOnSectionHeaderClick": "ExpandCollapseOnSectionHeaderClick", + "FilterComparisonType": "FilterComparisonType", + "FilterExpressions": "FilterExpressions", + "FilterExpressionsChangedRef": "FilterExpressionsChangedRef", + "FilterExpressionsChangingRef": "FilterExpressionsChangingRef", + "FilterLogicalOperator": "FilterLogicalOperator", + "FilterRowDataBindingRef": "FilterRowDataBindingRef", + "FilterRowDataBoundRef": "FilterRowDataBoundRef", + "FilterUIType": "FilterUIType", + "GenericDataSource": "GenericDataSource", + "GroupDescriptions": "GroupDescriptions", + "GroupDescriptionsChangedRef": "GroupDescriptionsChangedRef", + "GroupHeaderDisplayMode": "GroupHeaderDisplayMode", + "GroupSummaryDisplayMode": "GroupSummaryDisplayMode", + "HeaderBackground": "HeaderBackground", + "HeaderClickAction": "HeaderClickAction", + "HeaderFontFamily": "HeaderFontFamily", + "HeaderFontSize": "HeaderFontSize", + "HeaderFontStyle": "HeaderFontStyle", + "HeaderFontWeight": "HeaderFontWeight", + "HeaderHeight": "HeaderHeight", + "HeaderRowSeparator": "HeaderRowSeparator", + "HeaderRowSeparatorBackground": "HeaderRowSeparatorBackground", + "HeaderSeparator": "HeaderSeparator", + "HeaderSeparatorBackground": "HeaderSeparatorBackground", + "HeaderSeparatorWidth": "HeaderSeparatorWidth", + "HeaderSortIndicatorColor": "HeaderSortIndicatorColor", + "HeaderSortIndicatorStyle": "HeaderSortIndicatorStyle", + "HeaderTextColor": "HeaderTextColor", + "Height": "Height", + "HyperlinkNavigationRequestedRef": "HyperlinkNavigationRequestedRef", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroups": "InitialGroups", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSummaries": "InitialSummaries", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "IsActiveCellStyleEnabled": "IsActiveCellStyleEnabled", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsGroupingEnabled": "IsColumnOptionsGroupingEnabled", + "IsColumnOptionsSummariesEnabled": "IsColumnOptionsSummariesEnabled", + "IsGroupByAreaVisible": "IsGroupByAreaVisible", + "IsGroupCollapsable": "IsGroupCollapsable", + "IsGroupExpandedDefault": "IsGroupExpandedDefault", + "IsGroupRowSticky": "IsGroupRowSticky", + "IsHeaderSeparatorVisible": "IsHeaderSeparatorVisible", + "IsPagerVisible": "IsPagerVisible", + "IsPlaceholderRenderingEnabled": "IsPlaceholderRenderingEnabled", + "IsRowHoverEnabled": "IsRowHoverEnabled", + "IsToolbarColumnChooserVisible": "IsToolbarColumnChooserVisible", + "IsToolbarColumnPinningVisible": "IsToolbarColumnPinningVisible", + "IsToolbarVisible": "IsToolbarVisible", + "LastStickyRowBackground": "LastStickyRowBackground", + "MaxSelectedCellRanges": "MaxSelectedCellRanges", + "MergedCellEvaluationCriteria": "MergedCellEvaluationCriteria", + "MergedCellMode": "MergedCellMode", + "MergedCellVerticalAlignment": "MergedCellVerticalAlignment", + "MouseDragSelectionEnabled": "MouseDragSelectionEnabled", + "NotifyOnAllSelectionChanges": "NotifyOnAllSelectionChanges", + "PageSize": "PageSize", + "PinnedAreaSeparator": "PinnedAreaSeparator", + "PinnedAreaSeparatorWidth": "PinnedAreaSeparatorWidth", + "PinnedItems": "PinnedItems", + "PinnedKeys": "PinnedKeys", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowOpacity": "PinnedRowOpacity", + "PreventDefaultNavigationColumnList": "PreventDefaultNavigationColumnList", + "PrimaryKey": "PrimaryKey", + "ReactsToFilterChanges": "ReactsToFilterChanges", + "ReactsToGroupChanges": "ReactsToGroupChanges", + "ReactsToSortChanges": "ReactsToSortChanges", + "ResponsiveStates": "ResponsiveStates", + "RootSummariesChangedRef": "RootSummariesChangedRef", + "RowEditEndedRef": "RowEditEndedRef", + "RowEditStartedRef": "RowEditStartedRef", + "RowHeight": "RowHeight", + "RowHoverAnimationMode": "RowHoverAnimationMode", + "RowHoverBackground": "RowHoverBackground", + "RowHoverTextColor": "RowHoverTextColor", + "RowSelectionAnimationMode": "RowSelectionAnimationMode", + "RowSeparator": "RowSeparator", + "RowSeparatorBackground": "RowSeparatorBackground", + "RowSeparatorHeight": "RowSeparatorHeight", + "RowSeparatorLastStickyRowBackground": "RowSeparatorLastStickyRowBackground", + "RowSeparatorPinnedRowBackground": "RowSeparatorPinnedRowBackground", + "RowSeparatorStickyRowBackground": "RowSeparatorStickyRowBackground", + "ScrollbarActiveBackground": "ScrollbarActiveBackground", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarHoverBackground": "ScrollbarHoverBackground", + "ScrollbarStyle": "ScrollbarStyle", + "SectionHeader": "SectionHeader", + "SectionHeaderBackground": "SectionHeaderBackground", + "SectionHeaderExpansionIndicatorIconColor": "SectionHeaderExpansionIndicatorIconColor", + "SectionHeaderFontFamily": "SectionHeaderFontFamily", + "SectionHeaderFontSize": "SectionHeaderFontSize", + "SectionHeaderFontStyle": "SectionHeaderFontStyle", + "SectionHeaderFontWeight": "SectionHeaderFontWeight", + "SectionHeaderSelectedBackground": "SectionHeaderSelectedBackground", + "SectionHeaderTextColor": "SectionHeaderTextColor", + "SelectedCellRanges": "SelectedCellRanges", + "SelectedCellRangesChangedRef": "SelectedCellRangesChangedRef", + "SelectedCells": "SelectedCells", + "SelectedCellsChangedRef": "SelectedCellsChangedRef", + "SelectedItems": "SelectedItems", + "SelectedItemsChangedRef": "SelectedItemsChangedRef", + "SelectedKeys": "SelectedKeys", + "SelectedKeysChangedRef": "SelectedKeysChangedRef", + "SelectionBehavior": "SelectionBehavior", + "SelectionChangedRef": "SelectionChangedRef", + "SelectionMode": "SelectionMode", + "ShiftSectionContent": "ShiftSectionContent", + "SizeChangedRef": "SizeChangedRef", + "SortDescriptions": "SortDescriptions", + "SortDescriptionsChangedRef": "SortDescriptionsChangedRef", + "StickyRowBackground": "StickyRowBackground", + "StopPropagation": "StopPropagation", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryDescriptionsChangedRef": "SummaryDescriptionsChangedRef", + "SummaryRootBackground": "SummaryRootBackground", + "SummaryRootLabelFontFamily": "SummaryRootLabelFontFamily", + "SummaryRootLabelFontSize": "SummaryRootLabelFontSize", + "SummaryRootLabelFontStyle": "SummaryRootLabelFontStyle", + "SummaryRootLabelFontWeight": "SummaryRootLabelFontWeight", + "SummaryRootLabelTextColor": "SummaryRootLabelTextColor", + "SummaryRootSelectedBackground": "SummaryRootSelectedBackground", + "SummaryRootValueFontFamily": "SummaryRootValueFontFamily", + "SummaryRootValueFontSize": "SummaryRootValueFontSize", + "SummaryRootValueFontStyle": "SummaryRootValueFontStyle", + "SummaryRootValueFontWeight": "SummaryRootValueFontWeight", + "SummaryRootValueTextColor": "SummaryRootValueTextColor", + "SummaryRowRoot": "SummaryRowRoot", + "SummaryRowSection": "SummaryRowSection", + "SummaryScope": "SummaryScope", + "SummarySectionBackground": "SummarySectionBackground", + "SummarySectionLabelFontFamily": "SummarySectionLabelFontFamily", + "SummarySectionLabelFontSize": "SummarySectionLabelFontSize", + "SummarySectionLabelFontStyle": "SummarySectionLabelFontStyle", + "SummarySectionLabelFontWeight": "SummarySectionLabelFontWeight", + "SummarySectionLabelTextColor": "SummarySectionLabelTextColor", + "SummarySectionSelectedBackground": "SummarySectionSelectedBackground", + "SummarySectionValueFontFamily": "SummarySectionValueFontFamily", + "SummarySectionValueFontSize": "SummarySectionValueFontSize", + "SummarySectionValueFontStyle": "SummarySectionValueFontStyle", + "SummarySectionValueFontWeight": "SummarySectionValueFontWeight", + "SummarySectionValueTextColor": "SummarySectionValueTextColor", + "Theme": "Theme", + "TodayOverride": "TodayOverride", + "ToolbarColumnChooserText": "ToolbarColumnChooserText", + "ToolbarColumnChooserTitle": "ToolbarColumnChooserTitle", + "ToolbarColumnPinningText": "ToolbarColumnPinningText", + "ToolbarColumnPinningTitle": "ToolbarColumnPinningTitle", + "ToolbarTitle": "ToolbarTitle", + "Type": "Type", + "UseNewerColumnOptionsMenu": "UseNewerColumnOptionsMenu", + "Width": "Width" + } + } + ], + "DataGridDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridDescriptionMetadata()": "DataGridDescriptionMetadata()", + "DataGridDescriptionMetadata": "DataGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridDescriptionModule()": "DataGridDescriptionModule()", + "DataGridDescriptionModule": "DataGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridExpansionIndicator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DataGridExpansionIndicator", + "k": "class", + "s": "classes", + "m": { + "DataGridExpansionIndicator()": "DataGridExpansionIndicator()", + "DataGridExpansionIndicator": "DataGridExpansionIndicator()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "ContainsElement(object)": "ContainsElement(object)", + "ContainsElement": "ContainsElement(object)", + "IconColor": "IconColor", + "IconColorProperty": "IconColorProperty", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsAnimationEnabledProperty": "IsAnimationEnabledProperty", + "IsExpanded": "IsExpanded", + "IsExpandedProperty": "IsExpandedProperty", + "NotifySizeChanged(double, double)": "NotifySizeChanged(double, double)", + "NotifySizeChanged": "NotifySizeChanged(double, double)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridExpansionIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridExpansionIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridExpansionIndicatorDescription()": "DataGridExpansionIndicatorDescription()", + "DataGridExpansionIndicatorDescription": "DataGridExpansionIndicatorDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "IconColor": "IconColor", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsExpanded": "IsExpanded", + "PixelScalingRatio": "PixelScalingRatio", + "Type": "Type" + } + } + ], + "DataGridExpansionIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridExpansionIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridExpansionIndicatorDescriptionMetadata()": "DataGridExpansionIndicatorDescriptionMetadata()", + "DataGridExpansionIndicatorDescriptionMetadata": "DataGridExpansionIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridFilterDialog": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DataGridFilterDialog", + "k": "class", + "s": "classes", + "m": { + "DataGridFilterDialog()": "DataGridFilterDialog()", + "DataGridFilterDialog": "DataGridFilterDialog()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsAccentColorProperty": "ColumnOptionsAccentColorProperty", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsBackgroundProperty": "ColumnOptionsBackgroundProperty", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontFamilyProperty": "ColumnOptionsFontFamilyProperty", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontSizeProperty": "ColumnOptionsFontSizeProperty", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontStyleProperty": "ColumnOptionsFontStyleProperty", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsFontWeightProperty": "ColumnOptionsFontWeightProperty", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderBackgroundProperty": "ColumnOptionsGroupHeaderBackgroundProperty", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontFamilyProperty": "ColumnOptionsGroupHeaderFontFamilyProperty", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontSizeProperty": "ColumnOptionsGroupHeaderFontSizeProperty", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontStyleProperty": "ColumnOptionsGroupHeaderFontStyleProperty", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderFontWeightProperty": "ColumnOptionsGroupHeaderFontWeightProperty", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsGroupHeaderTextColorProperty": "ColumnOptionsGroupHeaderTextColorProperty", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHighlightColorProperty": "ColumnOptionsHighlightColorProperty", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsHoverBackgroundColorProperty": "ColumnOptionsHoverBackgroundColorProperty", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsRowHeightProperty": "ColumnOptionsRowHeightProperty", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarActiveBackgroundProperty": "ColumnOptionsScrollbarActiveBackgroundProperty", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarBackgroundProperty": "ColumnOptionsScrollbarBackgroundProperty", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsScrollbarHoverBackgroundProperty": "ColumnOptionsScrollbarHoverBackgroundProperty", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsSeparatorColorProperty": "ColumnOptionsSeparatorColorProperty", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTextColorProperty": "ColumnOptionsTextColorProperty", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipBackgroundColorProperty": "ColumnOptionsToolTipBackgroundColorProperty", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "ColumnOptionsToolTipTextColorProperty": "ColumnOptionsToolTipTextColorProperty", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "ExecutionContext": "ExecutionContext", + "ExecutionContextProperty": "ExecutionContextProperty", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "HideIcon()": "HideIcon()", + "HideIcon": "HideIcon()", + "IconColor": "IconColor", + "IconColorProperty": "IconColorProperty", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsAnimationEnabledProperty": "IsAnimationEnabledProperty", + "IsOpen": "IsOpen", + "IsOpenProperty": "IsOpenProperty", + "NotifyCellSizeChanged()": "NotifyCellSizeChanged()", + "NotifyCellSizeChanged": "NotifyCellSizeChanged()", + "NotifySizeChanged(double, double)": "NotifySizeChanged(double, double)", + "NotifySizeChanged": "NotifySizeChanged(double, double)", + "OnDialogOpening(GridFilterDialogOpeningEventArgs)": "OnDialogOpening(GridFilterDialogOpeningEventArgs)", + "OnDialogOpening": "OnDialogOpening(GridFilterDialogOpeningEventArgs)", + "OnFilterChanged(GridFilterDialogFilterChangeEventArgs)": "OnFilterChanged(GridFilterDialogFilterChangeEventArgs)", + "OnFilterChanged": "OnFilterChanged(GridFilterDialogFilterChangeEventArgs)", + "OnFilterChanging(GridFilterDialogFilterChangeEventArgs)": "OnFilterChanging(GridFilterDialogFilterChangeEventArgs)", + "OnFilterChanging": "OnFilterChanging(GridFilterDialogFilterChangeEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRenderCompleted(FilterDialogRenderCompletedEventArgs)": "OnRenderCompleted(FilterDialogRenderCompletedEventArgs)", + "OnRenderCompleted": "OnRenderCompleted(FilterDialogRenderCompletedEventArgs)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "ShowIcon()": "ShowIcon()", + "ShowIcon": "ShowIcon()", + "ViewSize": "ViewSize", + "ViewSizeProperty": "ViewSizeProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridFilterDialogDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridFilterDialogDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridFilterDialogDescription()": "DataGridFilterDialogDescription()", + "DataGridFilterDialogDescription": "DataGridFilterDialogDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "CommandCompletedRef": "CommandCompletedRef", + "DialogOpeningRef": "DialogOpeningRef", + "FilterChangedRef": "FilterChangedRef", + "FilterChangingRef": "FilterChangingRef", + "IconColor": "IconColor", + "InvalidateActionsRef": "InvalidateActionsRef", + "IsAnimationEnabled": "IsAnimationEnabled", + "PixelScalingRatio": "PixelScalingRatio", + "RenderCompletedRef": "RenderCompletedRef", + "Type": "Type", + "ViewSize": "ViewSize" + } + } + ], + "DataGridFilterDialogDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridFilterDialogDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridFilterDialogDescriptionMetadata()": "DataGridFilterDialogDescriptionMetadata()", + "DataGridFilterDialogDescriptionMetadata": "DataGridFilterDialogDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridPager": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DataGridPager", + "k": "class", + "s": "classes", + "m": { + "DataGridPager()": "DataGridPager()", + "DataGridPager": "DataGridPager()", + "ActualBackground": "ActualBackground", + "ActualBorder": "ActualBorder", + "ActualDataSource": "ActualDataSource", + "Background": "Background", + "Border": "Border", + "CurrentPage": "CurrentPage", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FirstPage()": "FirstPage()", + "FirstPage": "FirstPage()", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "ItemsSource": "ItemsSource", + "LastPage()": "LastPage()", + "LastPage": "LastPage()", + "NextPage()": "NextPage()", + "NextPage": "NextPage()", + "OnPageChanged(PageChangedEventArgs)": "OnPageChanged(PageChangedEventArgs)", + "OnPageChanged": "OnPageChanged(PageChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PageCount": "PageCount", + "PageSize": "PageSize", + "PagerText": "PagerText", + "PreviousPage()": "PreviousPage()", + "PreviousPage": "PreviousPage()", + "TargetGrid": "TargetGrid", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridPagerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridPagerDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridPagerDescription()": "DataGridPagerDescription()", + "DataGridPagerDescription": "DataGridPagerDescription()", + "ActualBackground": "ActualBackground", + "ActualBorder": "ActualBorder", + "Background": "Background", + "Border": "Border", + "CurrentPage": "CurrentPage", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "PageChangedRef": "PageChangedRef", + "PageCount": "PageCount", + "PageSize": "PageSize", + "PagerText": "PagerText", + "Type": "Type" + } + } + ], + "DataGridPagerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridPagerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridPagerDescriptionMetadata()": "DataGridPagerDescriptionMetadata()", + "DataGridPagerDescriptionMetadata": "DataGridPagerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridPagerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridPagerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridPagerDescriptionModule()": "DataGridPagerDescriptionModule()", + "DataGridPagerDescriptionModule": "DataGridPagerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridSelectionMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/DataGridSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "DataGridSortIndicator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DataGridSortIndicator", + "k": "class", + "s": "classes", + "m": { + "DataGridSortIndicator()": "DataGridSortIndicator()", + "DataGridSortIndicator": "DataGridSortIndicator()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "GetDesiredScale()": "GetDesiredScale()", + "GetDesiredScale": "GetDesiredScale()", + "IconColor": "IconColor", + "IconColorProperty": "IconColorProperty", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsAnimationEnabledProperty": "IsAnimationEnabledProperty", + "IsHitTestVisible": "IsHitTestVisible", + "IsHitTestVisibleProperty": "IsHitTestVisibleProperty", + "NotifyCellSizeChanged()": "NotifyCellSizeChanged()", + "NotifyCellSizeChanged": "NotifyCellSizeChanged()", + "NotifySizeChanged(double, double)": "NotifySizeChanged(double, double)", + "NotifySizeChanged": "NotifySizeChanged(double, double)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRenderCompleted(SortIndicatorRenderCompletedEventArgs)": "OnRenderCompleted(SortIndicatorRenderCompletedEventArgs)", + "OnRenderCompleted": "OnRenderCompleted(SortIndicatorRenderCompletedEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "SortDirection": "SortDirection", + "SortDirectionProperty": "SortDirectionProperty", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortIndicatorStyleProperty": "SortIndicatorStyleProperty", + "SortOrderFontFamily": "SortOrderFontFamily", + "SortOrderFontFamilyProperty": "SortOrderFontFamilyProperty", + "SortOrderFontSize": "SortOrderFontSize", + "SortOrderFontSizeProperty": "SortOrderFontSizeProperty", + "SortOrderFontStyle": "SortOrderFontStyle", + "SortOrderFontStyleProperty": "SortOrderFontStyleProperty", + "SortOrderFontWeight": "SortOrderFontWeight", + "SortOrderFontWeightProperty": "SortOrderFontWeightProperty", + "SortOrderText": "SortOrderText", + "SortOrderTextProperty": "SortOrderTextProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataGridSortIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridSortIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridSortIndicatorDescription()": "DataGridSortIndicatorDescription()", + "DataGridSortIndicatorDescription": "DataGridSortIndicatorDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "IconColor": "IconColor", + "IsAnimationEnabled": "IsAnimationEnabled", + "IsHitTestVisible": "IsHitTestVisible", + "PixelScalingRatio": "PixelScalingRatio", + "RenderCompletedRef": "RenderCompletedRef", + "SortDirection": "SortDirection", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortOrderFontFamily": "SortOrderFontFamily", + "SortOrderFontSize": "SortOrderFontSize", + "SortOrderFontStyle": "SortOrderFontStyle", + "SortOrderFontWeight": "SortOrderFontWeight", + "SortOrderText": "SortOrderText", + "Type": "Type" + } + } + ], + "DataGridSortIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridSortIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridSortIndicatorDescriptionMetadata()": "DataGridSortIndicatorDescriptionMetadata()", + "DataGridSortIndicatorDescriptionMetadata": "DataGridSortIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridSummaryResultDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridSummaryResultDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridSummaryResultDescription()": "DataGridSummaryResultDescription()", + "DataGridSummaryResultDescription": "DataGridSummaryResultDescription()", + "GroupKeyRef": "GroupKeyRef", + "Operand": "Operand", + "PropertyName": "PropertyName", + "ShouldDisplay": "ShouldDisplay", + "SummaryIndex": "SummaryIndex", + "Type": "Type", + "Value": "Value" + } + } + ], + "DataGridSummaryResultDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridSummaryResultDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridSummaryResultDescriptionMetadata()": "DataGridSummaryResultDescriptionMetadata()", + "DataGridSummaryResultDescriptionMetadata": "DataGridSummaryResultDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridToolbarDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridToolbarDescription", + "k": "class", + "s": "classes", + "m": { + "DataGridToolbarDescription()": "DataGridToolbarDescription()", + "DataGridToolbarDescription": "DataGridToolbarDescription()", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderWidthBottom": "BorderWidthBottom", + "BorderWidthLeft": "BorderWidthLeft", + "BorderWidthRight": "BorderWidthRight", + "BorderWidthTop": "BorderWidthTop", + "ColumnChooser": "ColumnChooser", + "ColumnChooserText": "ColumnChooserText", + "ColumnChooserTitle": "ColumnChooserTitle", + "ColumnPinning": "ColumnPinning", + "ColumnPinningText": "ColumnPinningText", + "ColumnPinningTitle": "ColumnPinningTitle", + "Density": "Density", + "DialogBackgroundColor": "DialogBackgroundColor", + "TargetGridRef": "TargetGridRef", + "ToolbarTitle": "ToolbarTitle", + "ToolbarTitleColor": "ToolbarTitleColor", + "ToolbarTitleFontFamily": "ToolbarTitleFontFamily", + "ToolbarTitleFontSize": "ToolbarTitleFontSize", + "ToolbarTitleFontStyle": "ToolbarTitleFontStyle", + "ToolbarTitleFontWeight": "ToolbarTitleFontWeight", + "Type": "Type" + } + } + ], + "DataGridToolbarDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridToolbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataGridToolbarDescriptionMetadata()": "DataGridToolbarDescriptionMetadata()", + "DataGridToolbarDescriptionMetadata": "DataGridToolbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataGridToolbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataGridToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataGridToolbarDescriptionModule()": "DataGridToolbarDescriptionModule()", + "DataGridToolbarDescriptionModule": "DataGridToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataIntentAttribute": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataIntentAttribute", + "k": "class", + "s": "classes", + "m": { + "DataIntentAttribute(string)": "DataIntentAttribute(string)", + "DataIntentAttribute": "DataIntentAttribute(string)", + "Intent": "Intent" + } + } + ], + "DataLegendDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendDescription()": "DataLegendDescription()", + "DataLegendDescription": "DataLegendDescription()", + "ActualBackground": "ActualBackground", + "ActualBadgesVisible": "ActualBadgesVisible", + "ActualBorderBrush": "ActualBorderBrush", + "ActualBorderThicknessBottom": "ActualBorderThicknessBottom", + "ActualBorderThicknessLeft": "ActualBorderThicknessLeft", + "ActualBorderThicknessRight": "ActualBorderThicknessRight", + "ActualBorderThicknessTop": "ActualBorderThicknessTop", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeShape": "BadgeShape", + "CalculateColumnSummaryRef": "CalculateColumnSummaryRef", + "ContentBackground": "ContentBackground", + "ContentBorderBrush": "ContentBorderBrush", + "ContentBorderThickness": "ContentBorderThickness", + "ExcludedColumns": "ExcludedColumns", + "ExcludedSeries": "ExcludedSeries", + "GroupRowMarginBottom": "GroupRowMarginBottom", + "GroupRowMarginLeft": "GroupRowMarginLeft", + "GroupRowMarginRight": "GroupRowMarginRight", + "GroupRowMarginTop": "GroupRowMarginTop", + "GroupRowVisible": "GroupRowVisible", + "GroupTextColor": "GroupTextColor", + "GroupTextFontFamily": "GroupTextFontFamily", + "GroupTextFontSize": "GroupTextFontSize", + "GroupTextFontStyle": "GroupTextFontStyle", + "GroupTextFontWeight": "GroupTextFontWeight", + "GroupTextMarginBottom": "GroupTextMarginBottom", + "GroupTextMarginLeft": "GroupTextMarginLeft", + "GroupTextMarginRight": "GroupTextMarginRight", + "GroupTextMarginTop": "GroupTextMarginTop", + "HeaderFormatCulture": "HeaderFormatCulture", + "HeaderFormatDate": "HeaderFormatDate", + "HeaderFormatSpecifiers": "HeaderFormatSpecifiers", + "HeaderFormatString": "HeaderFormatString", + "HeaderFormatTime": "HeaderFormatTime", + "HeaderRowMarginBottom": "HeaderRowMarginBottom", + "HeaderRowMarginLeft": "HeaderRowMarginLeft", + "HeaderRowMarginRight": "HeaderRowMarginRight", + "HeaderRowMarginTop": "HeaderRowMarginTop", + "HeaderRowVisible": "HeaderRowVisible", + "HeaderText": "HeaderText", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextFontFamily": "HeaderTextFontFamily", + "HeaderTextFontSize": "HeaderTextFontSize", + "HeaderTextFontStyle": "HeaderTextFontStyle", + "HeaderTextFontWeight": "HeaderTextFontWeight", + "HeaderTextMarginBottom": "HeaderTextMarginBottom", + "HeaderTextMarginLeft": "HeaderTextMarginLeft", + "HeaderTextMarginRight": "HeaderTextMarginRight", + "HeaderTextMarginTop": "HeaderTextMarginTop", + "Height": "Height", + "IncludedColumns": "IncludedColumns", + "IncludedSeries": "IncludedSeries", + "IsEmbeddedInDataTooltip": "IsEmbeddedInDataTooltip", + "LabelDisplayMode": "LabelDisplayMode", + "LabelTextColor": "LabelTextColor", + "LabelTextFontFamily": "LabelTextFontFamily", + "LabelTextFontSize": "LabelTextFontSize", + "LabelTextFontStyle": "LabelTextFontStyle", + "LabelTextFontWeight": "LabelTextFontWeight", + "LabelTextMarginBottom": "LabelTextMarginBottom", + "LabelTextMarginLeft": "LabelTextMarginLeft", + "LabelTextMarginRight": "LabelTextMarginRight", + "LabelTextMarginTop": "LabelTextMarginTop", + "LayoutMode": "LayoutMode", + "PixelScalingRatio": "PixelScalingRatio", + "ShouldUpdateWhenSeriesDataChanges": "ShouldUpdateWhenSeriesDataChanges", + "StyleGroupRowRef": "StyleGroupRowRef", + "StyleHeaderRowRef": "StyleHeaderRowRef", + "StyleSeriesColumnRef": "StyleSeriesColumnRef", + "StyleSeriesRowRef": "StyleSeriesRowRef", + "StyleSummaryColumnRef": "StyleSummaryColumnRef", + "StyleSummaryRowRef": "StyleSummaryRowRef", + "SummaryLabelText": "SummaryLabelText", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextFontFamily": "SummaryLabelTextFontFamily", + "SummaryLabelTextFontSize": "SummaryLabelTextFontSize", + "SummaryLabelTextFontStyle": "SummaryLabelTextFontStyle", + "SummaryLabelTextFontWeight": "SummaryLabelTextFontWeight", + "SummaryRowMarginBottom": "SummaryRowMarginBottom", + "SummaryRowMarginLeft": "SummaryRowMarginLeft", + "SummaryRowMarginRight": "SummaryRowMarginRight", + "SummaryRowMarginTop": "SummaryRowMarginTop", + "SummaryTitleText": "SummaryTitleText", + "SummaryTitleTextColor": "SummaryTitleTextColor", + "SummaryTitleTextFontFamily": "SummaryTitleTextFontFamily", + "SummaryTitleTextFontSize": "SummaryTitleTextFontSize", + "SummaryTitleTextFontStyle": "SummaryTitleTextFontStyle", + "SummaryTitleTextFontWeight": "SummaryTitleTextFontWeight", + "SummaryTitleTextMarginBottom": "SummaryTitleTextMarginBottom", + "SummaryTitleTextMarginLeft": "SummaryTitleTextMarginLeft", + "SummaryTitleTextMarginRight": "SummaryTitleTextMarginRight", + "SummaryTitleTextMarginTop": "SummaryTitleTextMarginTop", + "SummaryType": "SummaryType", + "SummaryUnitsText": "SummaryUnitsText", + "SummaryUnitsTextColor": "SummaryUnitsTextColor", + "SummaryUnitsTextFontFamily": "SummaryUnitsTextFontFamily", + "SummaryUnitsTextFontSize": "SummaryUnitsTextFontSize", + "SummaryUnitsTextFontStyle": "SummaryUnitsTextFontStyle", + "SummaryUnitsTextFontWeight": "SummaryUnitsTextFontWeight", + "SummaryValueTextColor": "SummaryValueTextColor", + "SummaryValueTextFontFamily": "SummaryValueTextFontFamily", + "SummaryValueTextFontSize": "SummaryValueTextFontSize", + "SummaryValueTextFontStyle": "SummaryValueTextFontStyle", + "SummaryValueTextFontWeight": "SummaryValueTextFontWeight", + "TargetCursorPositionX": "TargetCursorPositionX", + "TargetCursorPositionY": "TargetCursorPositionY", + "TargetRef": "TargetRef", + "TitleTextColor": "TitleTextColor", + "TitleTextFontFamily": "TitleTextFontFamily", + "TitleTextFontSize": "TitleTextFontSize", + "TitleTextFontStyle": "TitleTextFontStyle", + "TitleTextFontWeight": "TitleTextFontWeight", + "TitleTextMarginBottom": "TitleTextMarginBottom", + "TitleTextMarginLeft": "TitleTextMarginLeft", + "TitleTextMarginRight": "TitleTextMarginRight", + "TitleTextMarginTop": "TitleTextMarginTop", + "Type": "Type", + "UnitsDisplayMode": "UnitsDisplayMode", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "UnitsTextFontFamily": "UnitsTextFontFamily", + "UnitsTextFontSize": "UnitsTextFontSize", + "UnitsTextFontStyle": "UnitsTextFontStyle", + "UnitsTextFontWeight": "UnitsTextFontWeight", + "UnitsTextMarginBottom": "UnitsTextMarginBottom", + "UnitsTextMarginLeft": "UnitsTextMarginLeft", + "UnitsTextMarginRight": "UnitsTextMarginRight", + "UnitsTextMarginTop": "UnitsTextMarginTop", + "ValueFormatAbbreviation": "ValueFormatAbbreviation", + "ValueFormatCulture": "ValueFormatCulture", + "ValueFormatCurrencyCode": "ValueFormatCurrencyCode", + "ValueFormatMaxFractions": "ValueFormatMaxFractions", + "ValueFormatMinFractions": "ValueFormatMinFractions", + "ValueFormatMode": "ValueFormatMode", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "ValueFormatString": "ValueFormatString", + "ValueFormatUseGrouping": "ValueFormatUseGrouping", + "ValueRowMarginBottom": "ValueRowMarginBottom", + "ValueRowMarginLeft": "ValueRowMarginLeft", + "ValueRowMarginRight": "ValueRowMarginRight", + "ValueRowMarginTop": "ValueRowMarginTop", + "ValueRowVisible": "ValueRowVisible", + "ValueTextColor": "ValueTextColor", + "ValueTextFontFamily": "ValueTextFontFamily", + "ValueTextFontSize": "ValueTextFontSize", + "ValueTextFontStyle": "ValueTextFontStyle", + "ValueTextFontWeight": "ValueTextFontWeight", + "ValueTextMarginBottom": "ValueTextMarginBottom", + "ValueTextMarginLeft": "ValueTextMarginLeft", + "ValueTextMarginRight": "ValueTextMarginRight", + "ValueTextMarginTop": "ValueTextMarginTop", + "ValueTextUseSeriesColors": "ValueTextUseSeriesColors", + "ValueTextWhenMissingData": "ValueTextWhenMissingData", + "Width": "Width" + } + } + ], + "DataLegendDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendDescriptionMetadata()": "DataLegendDescriptionMetadata()", + "DataLegendDescriptionMetadata": "DataLegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataLegendDescriptionModule()": "DataLegendDescriptionModule()", + "DataLegendDescriptionModule": "DataLegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendHeaderDateMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendHeaderDateMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendHeaderTimeMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendHeaderTimeMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendLabelMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendLabelMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendLayoutMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendLayoutMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendSeriesContext": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSeriesContext", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesContext()": "DataLegendSeriesContext()", + "DataLegendSeriesContext": "DataLegendSeriesContext()", + "GetSeriesValue(DataLegendSeriesValueType)": "GetSeriesValue(DataLegendSeriesValueType)", + "GetSeriesValue": "GetSeriesValue(DataLegendSeriesValueType)", + "GetSeriesValueInfo(DataLegendSeriesValueType)": "GetSeriesValueInfo(DataLegendSeriesValueType)", + "GetSeriesValueInfo": "GetSeriesValueInfo(DataLegendSeriesValueType)", + "GetSeriesValues()": "GetSeriesValues()", + "GetSeriesValues": "GetSeriesValues()", + "SeriesFamily": "SeriesFamily", + "SetSeriesValue(DataLegendSeriesValueType, double)": "SetSeriesValue(DataLegendSeriesValueType, double)", + "SetSeriesValue": "SetSeriesValue(DataLegendSeriesValueType, double)", + "SetSeriesValueInfo(DataLegendSeriesValueType, DataLegendSeriesValueInfo)": "SetSeriesValueInfo(DataLegendSeriesValueType, DataLegendSeriesValueInfo)", + "SetSeriesValueInfo": "SetSeriesValueInfo(DataLegendSeriesValueType, DataLegendSeriesValueInfo)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendSeriesContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSeriesContextDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesContextDescription()": "DataLegendSeriesContextDescription()", + "DataLegendSeriesContextDescription": "DataLegendSeriesContextDescription()", + "SeriesFamily": "SeriesFamily", + "Type": "Type" + } + } + ], + "DataLegendSeriesContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSeriesContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesContextDescriptionMetadata()": "DataLegendSeriesContextDescriptionMetadata()", + "DataLegendSeriesContextDescriptionMetadata": "DataLegendSeriesContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSeriesFamily": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendSeriesFamily", + "k": "enum", + "s": "enums" + } + ], + "DataLegendSeriesGroupInfo": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataLegendSeriesGroupInfo", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesGroupInfo()": "DataLegendSeriesGroupInfo()", + "DataLegendSeriesGroupInfo": "DataLegendSeriesGroupInfo()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendSeriesGroupInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSeriesGroupInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesGroupInfoDescription()": "DataLegendSeriesGroupInfoDescription()", + "DataLegendSeriesGroupInfoDescription": "DataLegendSeriesGroupInfoDescription()", + "Type": "Type" + } + } + ], + "DataLegendSeriesGroupInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSeriesGroupInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesGroupInfoDescriptionMetadata()": "DataLegendSeriesGroupInfoDescriptionMetadata()", + "DataLegendSeriesGroupInfoDescriptionMetadata": "DataLegendSeriesGroupInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSeriesValueInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSeriesValueInfo", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesValueInfo()": "DataLegendSeriesValueInfo()", + "DataLegendSeriesValueInfo": "DataLegendSeriesValueInfo()", + "AllowLabels": "AllowLabels", + "AllowUnits": "AllowUnits", + "FormatAllowAbbreviation": "FormatAllowAbbreviation", + "FormatAllowCurrency": "FormatAllowCurrency", + "FormatAllowDecimal": "FormatAllowDecimal", + "FormatAllowInteger": "FormatAllowInteger", + "FormatAllowPercent": "FormatAllowPercent", + "FormatMaxFractions": "FormatMaxFractions", + "FormatMinFractions": "FormatMinFractions", + "FormatUseNegativeColor": "FormatUseNegativeColor", + "FormatUsePositiveColor": "FormatUsePositiveColor", + "FormatWithSeriesColor": "FormatWithSeriesColor", + "Index": "Index", + "IsExcludeByDefault": "IsExcludeByDefault", + "MemberLabel": "MemberLabel", + "MemberPath": "MemberPath", + "MemberSymbol": "MemberSymbol", + "MemberUnit": "MemberUnit", + "OrderIndex": "OrderIndex", + "ToString()": "ToString()", + "ToString": "ToString()", + "Value": "Value", + "ValueNegativePrefix": "ValueNegativePrefix", + "ValueNegativeSuffix": "ValueNegativeSuffix", + "ValuePositivePrefix": "ValuePositivePrefix", + "ValuePositiveSuffix": "ValuePositiveSuffix", + "ValueType": "ValueType", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendSeriesValueInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSeriesValueInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesValueInfoDescription()": "DataLegendSeriesValueInfoDescription()", + "DataLegendSeriesValueInfoDescription": "DataLegendSeriesValueInfoDescription()", + "AllowLabels": "AllowLabels", + "AllowUnits": "AllowUnits", + "FormatAllowAbbreviation": "FormatAllowAbbreviation", + "FormatAllowCurrency": "FormatAllowCurrency", + "FormatAllowDecimal": "FormatAllowDecimal", + "FormatAllowInteger": "FormatAllowInteger", + "FormatAllowPercent": "FormatAllowPercent", + "FormatMaxFractions": "FormatMaxFractions", + "FormatMinFractions": "FormatMinFractions", + "FormatUseNegativeColor": "FormatUseNegativeColor", + "FormatUsePositiveColor": "FormatUsePositiveColor", + "FormatWithSeriesColor": "FormatWithSeriesColor", + "Index": "Index", + "IsExcludeByDefault": "IsExcludeByDefault", + "MemberLabel": "MemberLabel", + "MemberPath": "MemberPath", + "MemberSymbol": "MemberSymbol", + "MemberUnit": "MemberUnit", + "OrderIndex": "OrderIndex", + "Type": "Type", + "Value": "Value", + "ValueNegativePrefix": "ValueNegativePrefix", + "ValueNegativeSuffix": "ValueNegativeSuffix", + "ValuePositivePrefix": "ValuePositivePrefix", + "ValuePositiveSuffix": "ValuePositiveSuffix", + "ValueType": "ValueType" + } + } + ], + "DataLegendSeriesValueInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSeriesValueInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSeriesValueInfoDescriptionMetadata()": "DataLegendSeriesValueInfoDescriptionMetadata()", + "DataLegendSeriesValueInfoDescriptionMetadata": "DataLegendSeriesValueInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSeriesValueType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendSeriesValueType", + "k": "enum", + "s": "enums" + } + ], + "DataLegendStylingColumnEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataLegendStylingColumnEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingColumnEventArgs()": "DataLegendStylingColumnEventArgs()", + "DataLegendStylingColumnEventArgs": "DataLegendStylingColumnEventArgs()", + "ColumnIndex": "ColumnIndex", + "GroupName": "GroupName", + "LabelText": "LabelText", + "LabelTextColor": "LabelTextColor", + "SeriesIndex": "SeriesIndex", + "SeriesTitle": "SeriesTitle", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "ValueAbbreviation": "ValueAbbreviation", + "ValueMemberLabel": "ValueMemberLabel", + "ValueMemberPath": "ValueMemberPath", + "ValueOriginal": "ValueOriginal", + "ValueText": "ValueText", + "ValueTextColor": "ValueTextColor", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendStylingColumnEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendStylingColumnEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingColumnEventArgsDescription()": "DataLegendStylingColumnEventArgsDescription()", + "DataLegendStylingColumnEventArgsDescription": "DataLegendStylingColumnEventArgsDescription()", + "ColumnIndex": "ColumnIndex", + "GroupName": "GroupName", + "LabelText": "LabelText", + "LabelTextColor": "LabelTextColor", + "SeriesIndex": "SeriesIndex", + "SeriesTitle": "SeriesTitle", + "Type": "Type", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "ValueAbbreviation": "ValueAbbreviation", + "ValueMemberLabel": "ValueMemberLabel", + "ValueMemberPath": "ValueMemberPath", + "ValueOriginal": "ValueOriginal", + "ValueText": "ValueText", + "ValueTextColor": "ValueTextColor" + } + } + ], + "DataLegendStylingColumnEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendStylingColumnEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingColumnEventArgsDescriptionMetadata()": "DataLegendStylingColumnEventArgsDescriptionMetadata()", + "DataLegendStylingColumnEventArgsDescriptionMetadata": "DataLegendStylingColumnEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendStylingRowEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataLegendStylingRowEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingRowEventArgs()": "DataLegendStylingRowEventArgs()", + "DataLegendStylingRowEventArgs": "DataLegendStylingRowEventArgs()", + "BadgeShape": "BadgeShape", + "GroupName": "GroupName", + "IsBadgeVisible": "IsBadgeVisible", + "IsRowVisible": "IsRowVisible", + "SeriesIndex": "SeriesIndex", + "SeriesTitle": "SeriesTitle", + "TitleText": "TitleText", + "TitleTextColor": "TitleTextColor", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendStylingRowEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendStylingRowEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingRowEventArgsDescription()": "DataLegendStylingRowEventArgsDescription()", + "DataLegendStylingRowEventArgsDescription": "DataLegendStylingRowEventArgsDescription()", + "BadgeShape": "BadgeShape", + "GroupName": "GroupName", + "IsBadgeVisible": "IsBadgeVisible", + "IsRowVisible": "IsRowVisible", + "SeriesIndex": "SeriesIndex", + "SeriesTitle": "SeriesTitle", + "TitleText": "TitleText", + "TitleTextColor": "TitleTextColor", + "Type": "Type" + } + } + ], + "DataLegendStylingRowEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendStylingRowEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendStylingRowEventArgsDescriptionMetadata()": "DataLegendStylingRowEventArgsDescriptionMetadata()", + "DataLegendStylingRowEventArgsDescriptionMetadata": "DataLegendStylingRowEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSummaryColumn": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSummaryColumn", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryColumn()": "DataLegendSummaryColumn()", + "DataLegendSummaryColumn": "DataLegendSummaryColumn()", + "AddLabel(string)": "AddLabel(string)", + "AddLabel": "AddLabel(string)", + "AddUnits(string)": "AddUnits(string)", + "AddUnits": "AddUnits(string)", + "AddValue(double)": "AddValue(double)", + "AddValue": "AddValue(double)", + "SeriesLabels": "SeriesLabels", + "SeriesUnits": "SeriesUnits", + "SeriesValues": "SeriesValues" + } + } + ], + "DataLegendSummaryColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSummaryColumnDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryColumnDescription()": "DataLegendSummaryColumnDescription()", + "DataLegendSummaryColumnDescription": "DataLegendSummaryColumnDescription()", + "Type": "Type" + } + } + ], + "DataLegendSummaryColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSummaryColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryColumnDescriptionMetadata()": "DataLegendSummaryColumnDescriptionMetadata()", + "DataLegendSummaryColumnDescriptionMetadata": "DataLegendSummaryColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSummaryEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataLegendSummaryEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryEventArgs(double[], string)": "DataLegendSummaryEventArgs(double[], string)", + "DataLegendSummaryEventArgs": "DataLegendSummaryEventArgs(double[], string)", + "ColumnMemberPath": "ColumnMemberPath", + "ColumnValues": "ColumnValues", + "SummaryLabel": "SummaryLabel", + "SummaryUnits": "SummaryUnits", + "SummaryValue": "SummaryValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataLegendSummaryEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSummaryEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryEventArgsDescription()": "DataLegendSummaryEventArgsDescription()", + "DataLegendSummaryEventArgsDescription": "DataLegendSummaryEventArgsDescription()", + "ColumnMemberPath": "ColumnMemberPath", + "ColumnValues": "ColumnValues", + "SummaryLabel": "SummaryLabel", + "SummaryUnits": "SummaryUnits", + "SummaryValue": "SummaryValue", + "Type": "Type" + } + } + ], + "DataLegendSummaryEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataLegendSummaryEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataLegendSummaryEventArgsDescriptionMetadata()": "DataLegendSummaryEventArgsDescriptionMetadata()", + "DataLegendSummaryEventArgsDescriptionMetadata": "DataLegendSummaryEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataLegendSummaryType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendSummaryType", + "k": "enum", + "s": "enums" + } + ], + "DataLegendUnitsMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendUnitsMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendValueMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataLegendValueMode", + "k": "enum", + "s": "enums" + } + ], + "DataLegendVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataLegendVisualData", + "k": "class", + "s": "classes", + "m": { + "DataLegendVisualData()": "DataLegendVisualData()", + "DataLegendVisualData": "DataLegendVisualData()", + "Background": "Background", + "BorderBrush": "BorderBrush", + "BorderThicknessBottom": "BorderThicknessBottom", + "BorderThicknessLeft": "BorderThicknessLeft", + "BorderThicknessRight": "BorderThicknessRight", + "BorderThicknessTop": "BorderThicknessTop", + "Height": "Height", + "Rows": "Rows", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "DataLegendVisualDataColumn": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataLegendVisualDataColumn", + "k": "class", + "s": "classes", + "m": { + "DataLegendVisualDataColumn()": "DataLegendVisualDataColumn()", + "DataLegendVisualDataColumn": "DataLegendVisualDataColumn()", + "Bounds": "Bounds", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStretch": "FontStretch", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "MarginBottom": "MarginBottom", + "MarginLeft": "MarginLeft", + "MarginRight": "MarginRight", + "MarginTop": "MarginTop", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextColor": "TextColor" + } + } + ], + "DataLegendVisualDataRow": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataLegendVisualDataRow", + "k": "class", + "s": "classes", + "m": { + "DataLegendVisualDataRow()": "DataLegendVisualDataRow()", + "DataLegendVisualDataRow": "DataLegendVisualDataRow()", + "BadgeAppearance": "BadgeAppearance", + "BadgeBounds": "BadgeBounds", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeMarkerHeight": "BadgeMarkerHeight", + "BadgeMarkerWidth": "BadgeMarkerWidth", + "BadgeShape": "BadgeShape", + "Columns": "Columns", + "RowBounds": "RowBounds", + "RowMarginBottom": "RowMarginBottom", + "RowMarginLeft": "RowMarginLeft", + "RowMarginRight": "RowMarginRight", + "RowMarginTop": "RowMarginTop", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SeriesIndex": "SeriesIndex" + } + } + ], + "DataPieBaseChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataPieBaseChart", + "k": "class", + "s": "classes", + "m": { + "AngleAxisFavorLabellingScaleEnd": "AngleAxisFavorLabellingScaleEnd", + "AngleAxisFavorLabellingScaleEndProperty": "AngleAxisFavorLabellingScaleEndProperty", + "AngleAxisInterval": "AngleAxisInterval", + "AngleAxisIntervalProperty": "AngleAxisIntervalProperty", + "AngleAxisMinorInterval": "AngleAxisMinorInterval", + "AngleAxisMinorIntervalProperty": "AngleAxisMinorIntervalProperty", + "DarkSliceLabelColor": "DarkSliceLabelColor", + "DarkSliceLabelColorProperty": "DarkSliceLabelColorProperty", + "FireMouseLeaveOnManipulationStart": "FireMouseLeaveOnManipulationStart", + "FireMouseLeaveOnManipulationStartProperty": "FireMouseLeaveOnManipulationStartProperty", + "GetOthersContext()": "GetOthersContext()", + "GetOthersContext": "GetOthersContext()", + "InnerExtent": "InnerExtent", + "InnerExtentProperty": "InnerExtentProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendEmptyValuesModeProperty": "LegendEmptyValuesModeProperty", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendLabelMemberPathProperty": "LegendLabelMemberPathProperty", + "LegendOthersSliceLabelFormat": "LegendOthersSliceLabelFormat", + "LegendOthersSliceLabelFormatProperty": "LegendOthersSliceLabelFormatProperty", + "LegendOthersSliceLabelFormatSpecifiers": "LegendOthersSliceLabelFormatSpecifiers", + "LegendOthersSliceLabelFormatSpecifiersProperty": "LegendOthersSliceLabelFormatSpecifiersProperty", + "LegendSliceLabelContentMode": "LegendSliceLabelContentMode", + "LegendSliceLabelContentModeProperty": "LegendSliceLabelContentModeProperty", + "LegendSliceLabelFormat": "LegendSliceLabelFormat", + "LegendSliceLabelFormatProperty": "LegendSliceLabelFormatProperty", + "LegendSliceLabelFormatSpecifiers": "LegendSliceLabelFormatSpecifiers", + "LegendSliceLabelFormatSpecifiersProperty": "LegendSliceLabelFormatSpecifiersProperty", + "LightSliceLabelColor": "LightSliceLabelColor", + "LightSliceLabelColorProperty": "LightSliceLabelColorProperty", + "MarkerCollision": "MarkerCollision", + "MarkerCollisionProperty": "MarkerCollisionProperty", + "OthersCategoryBrush": "OthersCategoryBrush", + "OthersCategoryBrushProperty": "OthersCategoryBrushProperty", + "OthersCategoryOutline": "OthersCategoryOutline", + "OthersCategoryOutlineProperty": "OthersCategoryOutlineProperty", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryTextProperty": "OthersCategoryTextProperty", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryThresholdProperty": "OthersCategoryThresholdProperty", + "OthersCategoryType": "OthersCategoryType", + "OthersCategoryTypeProperty": "OthersCategoryTypeProperty", + "OthersSliceLabelFormat": "OthersSliceLabelFormat", + "OthersSliceLabelFormatProperty": "OthersSliceLabelFormatProperty", + "OthersSliceLabelFormatSpecifiers": "OthersSliceLabelFormatSpecifiers", + "OthersSliceLabelFormatSpecifiersProperty": "OthersSliceLabelFormatSpecifiersProperty", + "RadiusExtent": "RadiusExtent", + "RadiusExtentProperty": "RadiusExtentProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty", + "SelectionThickness": "SelectionThickness", + "SelectionThicknessProperty": "SelectionThicknessProperty", + "SliceLabelContentMode": "SliceLabelContentMode", + "SliceLabelContentModeProperty": "SliceLabelContentModeProperty", + "SliceLabelContentSeparator": "SliceLabelContentSeparator", + "SliceLabelContentSeparatorProperty": "SliceLabelContentSeparatorProperty", + "SliceLabelFormat": "SliceLabelFormat", + "SliceLabelFormatProperty": "SliceLabelFormatProperty", + "SliceLabelFormatSpecifiers": "SliceLabelFormatSpecifiers", + "SliceLabelFormatSpecifiersProperty": "SliceLabelFormatSpecifiersProperty", + "SliceLabelPositionMode": "SliceLabelPositionMode", + "SliceLabelPositionModeProperty": "SliceLabelPositionModeProperty", + "StartAngle": "StartAngle", + "StartAngleProperty": "StartAngleProperty", + "SweepDirection": "SweepDirection", + "SweepDirectionProperty": "SweepDirectionProperty", + "UseInsetOutlines": "UseInsetOutlines", + "UseInsetOutlinesProperty": "UseInsetOutlinesProperty", + "ValueAxisAbbreviateLargeNumbers": "ValueAxisAbbreviateLargeNumbers", + "ValueAxisAbbreviateLargeNumbersProperty": "ValueAxisAbbreviateLargeNumbersProperty", + "ValueAxisActualMaximum": "ValueAxisActualMaximum", + "ValueAxisActualMaximumProperty": "ValueAxisActualMaximumProperty", + "ValueAxisActualMinimum": "ValueAxisActualMinimum", + "ValueAxisActualMinimumProperty": "ValueAxisActualMinimumProperty", + "ValueAxisAutoRangeBufferMode": "ValueAxisAutoRangeBufferMode", + "ValueAxisAutoRangeBufferModeProperty": "ValueAxisAutoRangeBufferModeProperty", + "ValueAxisFavorLabellingScaleEnd": "ValueAxisFavorLabellingScaleEnd", + "ValueAxisFavorLabellingScaleEndProperty": "ValueAxisFavorLabellingScaleEndProperty", + "ValueAxisInterval": "ValueAxisInterval", + "ValueAxisIntervalProperty": "ValueAxisIntervalProperty", + "ValueAxisIsLogarithmic": "ValueAxisIsLogarithmic", + "ValueAxisIsLogarithmicProperty": "ValueAxisIsLogarithmicProperty", + "ValueAxisLogarithmBase": "ValueAxisLogarithmBase", + "ValueAxisLogarithmBaseProperty": "ValueAxisLogarithmBaseProperty", + "ValueAxisMaximumValue": "ValueAxisMaximumValue", + "ValueAxisMaximumValueProperty": "ValueAxisMaximumValueProperty", + "ValueAxisMinimumValue": "ValueAxisMinimumValue", + "ValueAxisMinimumValueProperty": "ValueAxisMinimumValueProperty", + "ValueAxisMinorInterval": "ValueAxisMinorInterval", + "ValueAxisMinorIntervalProperty": "ValueAxisMinorIntervalProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty" + } + } + ], + "DataPieBaseChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataPieBaseChartDescription", + "k": "class", + "s": "classes", + "m": { + "DataPieBaseChartDescription()": "DataPieBaseChartDescription()", + "DataPieBaseChartDescription": "DataPieBaseChartDescription()", + "AngleAxisFavorLabellingScaleEnd": "AngleAxisFavorLabellingScaleEnd", + "AngleAxisInterval": "AngleAxisInterval", + "AngleAxisMinorInterval": "AngleAxisMinorInterval", + "DarkSliceLabelColor": "DarkSliceLabelColor", + "FireMouseLeaveOnManipulationStart": "FireMouseLeaveOnManipulationStart", + "InnerExtent": "InnerExtent", + "LabelMemberPath": "LabelMemberPath", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendOthersSliceLabelFormat": "LegendOthersSliceLabelFormat", + "LegendOthersSliceLabelFormatSpecifiers": "LegendOthersSliceLabelFormatSpecifiers", + "LegendSliceLabelContentMode": "LegendSliceLabelContentMode", + "LegendSliceLabelFormat": "LegendSliceLabelFormat", + "LegendSliceLabelFormatSpecifiers": "LegendSliceLabelFormatSpecifiers", + "LightSliceLabelColor": "LightSliceLabelColor", + "MarkerCollision": "MarkerCollision", + "OthersCategoryBrush": "OthersCategoryBrush", + "OthersCategoryOutline": "OthersCategoryOutline", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryType": "OthersCategoryType", + "OthersSliceLabelFormat": "OthersSliceLabelFormat", + "OthersSliceLabelFormatSpecifiers": "OthersSliceLabelFormatSpecifiers", + "RadiusExtent": "RadiusExtent", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "SelectionThickness": "SelectionThickness", + "SliceLabelContentMode": "SliceLabelContentMode", + "SliceLabelContentSeparator": "SliceLabelContentSeparator", + "SliceLabelFormat": "SliceLabelFormat", + "SliceLabelFormatSpecifiers": "SliceLabelFormatSpecifiers", + "SliceLabelPositionMode": "SliceLabelPositionMode", + "StartAngle": "StartAngle", + "SweepDirection": "SweepDirection", + "Type": "Type", + "UseInsetOutlines": "UseInsetOutlines", + "ValueAxisAbbreviateLargeNumbers": "ValueAxisAbbreviateLargeNumbers", + "ValueAxisAutoRangeBufferMode": "ValueAxisAutoRangeBufferMode", + "ValueAxisFavorLabellingScaleEnd": "ValueAxisFavorLabellingScaleEnd", + "ValueAxisInterval": "ValueAxisInterval", + "ValueAxisIsLogarithmic": "ValueAxisIsLogarithmic", + "ValueAxisLogarithmBase": "ValueAxisLogarithmBase", + "ValueAxisMaximumValue": "ValueAxisMaximumValue", + "ValueAxisMinimumValue": "ValueAxisMinimumValue", + "ValueAxisMinorInterval": "ValueAxisMinorInterval", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "DataPieBaseChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataPieBaseChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataPieBaseChartDescriptionMetadata()": "DataPieBaseChartDescriptionMetadata()", + "DataPieBaseChartDescriptionMetadata": "DataPieBaseChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataPieChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataPieChartCoreDescriptionModule()": "DataPieChartCoreDescriptionModule()", + "DataPieChartCoreDescriptionModule": "DataPieChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataPieChartDescription", + "k": "class", + "s": "classes", + "m": { + "DataPieChartDescription()": "DataPieChartDescription()", + "DataPieChartDescription": "DataPieChartDescription()", + "Background": "Background", + "ChartType": "ChartType", + "Height": "Height", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "TooltipTemplateRef": "TooltipTemplateRef", + "TransitionInDuration": "TransitionInDuration", + "TransitionInEasingFunctionRef": "TransitionInEasingFunctionRef", + "TransitionInMode": "TransitionInMode", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutEasingFunctionRef": "TransitionOutEasingFunctionRef", + "Type": "Type", + "Width": "Width" + } + } + ], + "DataPieChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataPieChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataPieChartDescriptionMetadata()": "DataPieChartDescriptionMetadata()", + "DataPieChartDescriptionMetadata": "DataPieChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataPieChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataPieChartDescriptionModule()": "DataPieChartDescriptionModule()", + "DataPieChartDescriptionModule": "DataPieChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartToolbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataPieChartToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataPieChartToolbarDescriptionModule()": "DataPieChartToolbarDescriptionModule()", + "DataPieChartToolbarDescriptionModule": "DataPieChartToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataPieChartType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/DataPieChartType", + "k": "enum", + "s": "enums" + } + ], + "DataSeries": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeries", + "k": "class", + "s": "classes", + "m": { + "DataSeries()": "DataSeries()", + "DataSeries": "DataSeries()", + "AddMemberPathHint(DataSeriesMemberPathHint)": "AddMemberPathHint(DataSeriesMemberPathHint)", + "AddMemberPathHint": "AddMemberPathHint(DataSeriesMemberPathHint)", + "AddMemberPathHint(DataSeriesMemberPathHint, DataSeriesIntent)": "AddMemberPathHint(DataSeriesMemberPathHint, DataSeriesIntent)", + "AddMemberPathHint(string, DataSeriesIntent)": "AddMemberPathHint(string, DataSeriesIntent)", + "ClearMemberPathHints()": "ClearMemberPathHints()", + "ClearMemberPathHints": "ClearMemberPathHints()", + "Clone()": "Clone()", + "Clone": "Clone()", + "Data": "Data", + "DataPath": "DataPath", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "FindMatchingHint(DataSeriesIntent)": "FindMatchingHint(DataSeriesIntent)", + "FindMatchingHint": "FindMatchingHint(DataSeriesIntent)", + "GetMemberPathFor(DataSeriesIntent)": "GetMemberPathFor(DataSeriesIntent)", + "GetMemberPathFor": "GetMemberPathFor(DataSeriesIntent)", + "GetMemberPathHintAt(int)": "GetMemberPathHintAt(int)", + "GetMemberPathHintAt": "GetMemberPathHintAt(int)", + "GetMemberPathHintCount()": "GetMemberPathHintCount()", + "GetMemberPathHintCount": "GetMemberPathHintCount()", + "HasMatchingHint(DataSeriesIntent)": "HasMatchingHint(DataSeriesIntent)", + "HasMatchingHint": "HasMatchingHint(DataSeriesIntent)", + "HighlightedData": "HighlightedData", + "Index": "Index", + "IsMatch(object)": "IsMatch(object)", + "IsMatch": "IsMatch(object)", + "Name": "Name", + "Priority": "Priority", + "RemoveMemberPathHint(DataSeriesMemberPathHint)": "RemoveMemberPathHint(DataSeriesMemberPathHint)", + "RemoveMemberPathHint": "RemoveMemberPathHint(DataSeriesMemberPathHint)", + "SuggestedMarker": "SuggestedMarker", + "SuggestedPrimaryAxis": "SuggestedPrimaryAxis", + "SuggestedSecondaryAxis": "SuggestedSecondaryAxis", + "SuggestedSeries": "SuggestedSeries", + "Title": "Title", + "ToString()": "ToString()", + "ToString": "ToString()" + } + } + ], + "DataSeriesAdapter": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesAdapter", + "k": "class", + "s": "classes", + "m": { + "DataSeriesAdapter()": "DataSeriesAdapter()", + "DataSeriesAdapter": "DataSeriesAdapter()", + "AdjustPrioritiesBasedOnFitness": "AdjustPrioritiesBasedOnFitness", + "ExcludedProperties": "ExcludedProperties", + "FilterExpressions": "FilterExpressions", + "Flush()": "Flush()", + "Flush": "Flush()", + "GetDataProvider(object)": "GetDataProvider(object)", + "GetDataProvider": "GetDataProvider(object)", + "GetLocalDataSource(object)": "GetLocalDataSource(object)", + "GetLocalDataSource": "GetLocalDataSource(object)", + "GroupDescriptions": "GroupDescriptions", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "IncludedProperties": "IncludedProperties", + "ItemsSource": "ItemsSource", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRemovingDuplicates(DataSeriesAdapterRemovingDuplicatesEventArgs)": "OnRemovingDuplicates(DataSeriesAdapterRemovingDuplicatesEventArgs)", + "OnRemovingDuplicates": "OnRemovingDuplicates(DataSeriesAdapterRemovingDuplicatesEventArgs)", + "OnRemovingUnsupported(DataSeriesAdapterRunEventArgs)": "OnRemovingUnsupported(DataSeriesAdapterRunEventArgs)", + "OnRemovingUnsupported": "OnRemovingUnsupported(DataSeriesAdapterRunEventArgs)", + "PostSortDescriptions": "PostSortDescriptions", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SupportedSeriesTypes": "SupportedSeriesTypes", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSeriesAdapterRemovingDuplicatesEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesAdapterRemovingDuplicatesEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSeriesAdapterRemovingDuplicatesEventArgs()": "DataSeriesAdapterRemovingDuplicatesEventArgs()", + "DataSeriesAdapterRemovingDuplicatesEventArgs": "DataSeriesAdapterRemovingDuplicatesEventArgs()", + "DataSourcePath": "DataSourcePath", + "DuplicatePath": "DuplicatePath", + "Handled": "Handled", + "MatchingSeries": "MatchingSeries", + "RunContext": "RunContext", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSeriesAdapterRunContext": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesAdapterRunContext", + "k": "class", + "s": "classes", + "m": { + "AddDataSeries(DataSeries, IDataSeriesAdapterRule)": "AddDataSeries(DataSeries, IDataSeriesAdapterRule)", + "AddDataSeries": "AddDataSeries(DataSeries, IDataSeriesAdapterRule)", + "AdjustPrioritiesBasedOnFitness": "AdjustPrioritiesBasedOnFitness", + "Analyzer": "Analyzer", + "ClearDataSeries()": "ClearDataSeries()", + "ClearDataSeries": "ClearDataSeries()", + "ExcludedProperties": "ExcludedProperties", + "GetCurrentDataSource()": "GetCurrentDataSource()", + "GetCurrentDataSource": "GetCurrentDataSource()", + "GetCurrentHighlightingDataSource()": "GetCurrentHighlightingDataSource()", + "GetCurrentHighlightingDataSource": "GetCurrentHighlightingDataSource()", + "GetCurrentPath()": "GetCurrentPath()", + "GetCurrentPath": "GetCurrentPath()", + "GetCurrentPathSegment()": "GetCurrentPathSegment()", + "GetCurrentPathSegment": "GetCurrentPathSegment()", + "GetDataSeriesAt(int)": "GetDataSeriesAt(int)", + "GetDataSeriesAt": "GetDataSeriesAt(int)", + "GetDataSeriesCount()": "GetDataSeriesCount()", + "GetDataSeriesCount": "GetDataSeriesCount()", + "GetParentTitle()": "GetParentTitle()", + "GetParentTitle": "GetParentTitle()", + "GetSubProvider(object, string)": "GetSubProvider(object, string)", + "GetSubProvider": "GetSubProvider(object, string)", + "HasValidType(DataSeries)": "HasValidType(DataSeries)", + "HasValidType": "HasValidType(DataSeries)", + "IncludedProperties": "IncludedProperties", + "InsertDataSeries(int, DataSeries, IDataSeriesAdapterRule)": "InsertDataSeries(int, DataSeries, IDataSeriesAdapterRule)", + "InsertDataSeries": "InsertDataSeries(int, DataSeries, IDataSeriesAdapterRule)", + "PopDataSource()": "PopDataSource()", + "PopDataSource": "PopDataSource()", + "PopHighlightingDataSource()": "PopHighlightingDataSource()", + "PopHighlightingDataSource": "PopHighlightingDataSource()", + "PopParentTitle()": "PopParentTitle()", + "PopParentTitle": "PopParentTitle()", + "PopPath()": "PopPath()", + "PopPath": "PopPath()", + "PopSubProvider()": "PopSubProvider()", + "PopSubProvider": "PopSubProvider()", + "PushDataSource(IDataSourceLocalDataProvider)": "PushDataSource(IDataSourceLocalDataProvider)", + "PushDataSource": "PushDataSource(IDataSourceLocalDataProvider)", + "PushHighlightingDataSource(IDataSourceLocalDataProvider)": "PushHighlightingDataSource(IDataSourceLocalDataProvider)", + "PushHighlightingDataSource": "PushHighlightingDataSource(IDataSourceLocalDataProvider)", + "PushParentTitle(string)": "PushParentTitle(string)", + "PushParentTitle": "PushParentTitle(string)", + "PushPath(string)": "PushPath(string)", + "PushPath": "PushPath(string)", + "RecurseRules(object, string, bool)": "RecurseRules(object, string, bool)", + "RecurseRules": "RecurseRules(object, string, bool)", + "RemoveDataSeries(DataSeries)": "RemoveDataSeries(DataSeries)", + "RemoveDataSeries": "RemoveDataSeries(DataSeries)" + } + } + ], + "DataSeriesAdapterRunEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesAdapterRunEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSeriesAdapterRunEventArgs()": "DataSeriesAdapterRunEventArgs()", + "DataSeriesAdapterRunEventArgs": "DataSeriesAdapterRunEventArgs()", + "Handled": "Handled", + "RunContext": "RunContext", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSeriesAxisType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSeriesAxisType", + "k": "enum", + "s": "enums" + } + ], + "DataSeriesCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesCollection", + "k": "class", + "s": "classes", + "m": { + "DataSeriesCollection()": "DataSeriesCollection()", + "DataSeriesCollection": "DataSeriesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSeriesDataProviderAnalyzer": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesDataProviderAnalyzer", + "k": "class", + "s": "classes", + "m": { + "CoerceToDouble(object)": "CoerceToDouble(object)", + "CoerceToDouble": "CoerceToDouble(object)", + "ExcludedProperties": "ExcludedProperties", + "ExpandCamelCasedWords(string)": "ExpandCamelCasedWords(string)", + "ExpandCamelCasedWords": "ExpandCamelCasedWords(string)", + "GetAllCollectionProperties()": "GetAllCollectionProperties()", + "GetAllCollectionProperties": "GetAllCollectionProperties()", + "GetAllDateTimeProperties()": "GetAllDateTimeProperties()", + "GetAllDateTimeProperties": "GetAllDateTimeProperties()", + "GetAllDistinctMonotonicNumericProperties(int)": "GetAllDistinctMonotonicNumericProperties(int)", + "GetAllDistinctMonotonicNumericProperties": "GetAllDistinctMonotonicNumericProperties(int)", + "GetAllExcludedDateTimeProperties()": "GetAllExcludedDateTimeProperties()", + "GetAllExcludedDateTimeProperties": "GetAllExcludedDateTimeProperties()", + "GetAllExcludedDistinctMonotonicNumericProperties(int)": "GetAllExcludedDistinctMonotonicNumericProperties(int)", + "GetAllExcludedDistinctMonotonicNumericProperties": "GetAllExcludedDistinctMonotonicNumericProperties(int)", + "GetAllExcludedStringProperties()": "GetAllExcludedStringProperties()", + "GetAllExcludedStringProperties": "GetAllExcludedStringProperties()", + "GetAllNumericProperties()": "GetAllNumericProperties()", + "GetAllNumericProperties": "GetAllNumericProperties()", + "GetAllObjectProperties()": "GetAllObjectProperties()", + "GetAllObjectProperties": "GetAllObjectProperties()", + "GetAllPropertiesWithIntent(string)": "GetAllPropertiesWithIntent(string)", + "GetAllPropertiesWithIntent": "GetAllPropertiesWithIntent(string)", + "GetAllPropertiesWithName(string)": "GetAllPropertiesWithName(string)", + "GetAllPropertiesWithName": "GetAllPropertiesWithName(string)", + "GetAllPropertiesWithValuedIntent(string)": "GetAllPropertiesWithValuedIntent(string)", + "GetAllPropertiesWithValuedIntent": "GetAllPropertiesWithValuedIntent(string)", + "GetAllPropertiesWithValuelessIntent(string)": "GetAllPropertiesWithValuelessIntent(string)", + "GetAllPropertiesWithValuelessIntent": "GetAllPropertiesWithValuelessIntent(string)", + "GetAllStringProperties()": "GetAllStringProperties()", + "GetAllStringProperties": "GetAllStringProperties()", + "GetFirstDateTimeProperty()": "GetFirstDateTimeProperty()", + "GetFirstDateTimeProperty": "GetFirstDateTimeProperty()", + "GetFirstDistinctDateTimeProperty(int)": "GetFirstDistinctDateTimeProperty(int)", + "GetFirstDistinctDateTimeProperty": "GetFirstDistinctDateTimeProperty(int)", + "GetFirstDistinctMonotonicNumericProperty(int)": "GetFirstDistinctMonotonicNumericProperty(int)", + "GetFirstDistinctMonotonicNumericProperty": "GetFirstDistinctMonotonicNumericProperty(int)", + "GetFirstDistinctMonotonicNumericPropertyWithEvenSpacing(int)": "GetFirstDistinctMonotonicNumericPropertyWithEvenSpacing(int)", + "GetFirstDistinctMonotonicNumericPropertyWithEvenSpacing": "GetFirstDistinctMonotonicNumericPropertyWithEvenSpacing(int)", + "GetFirstDistinctNumericProperty(int)": "GetFirstDistinctNumericProperty(int)", + "GetFirstDistinctNumericProperty": "GetFirstDistinctNumericProperty(int)", + "GetFirstDistinctStringProperty(int)": "GetFirstDistinctStringProperty(int)", + "GetFirstDistinctStringProperty": "GetFirstDistinctStringProperty(int)", + "GetFirstNumericProperty()": "GetFirstNumericProperty()", + "GetFirstNumericProperty": "GetFirstNumericProperty()", + "GetFirstStringProperty()": "GetFirstStringProperty()", + "GetFirstStringProperty": "GetFirstStringProperty()", + "GetFirstStringPropertyPreferringDistinct(int)": "GetFirstStringPropertyPreferringDistinct(int)", + "GetFirstStringPropertyPreferringDistinct": "GetFirstStringPropertyPreferringDistinct(int)", + "GetNonNullPropertyValue(string)": "GetNonNullPropertyValue(string)", + "GetNonNullPropertyValue": "GetNonNullPropertyValue(string)", + "GetParentTitle()": "GetParentTitle()", + "GetParentTitle": "GetParentTitle()", + "GetPropertyIntentValue(string, string)": "GetPropertyIntentValue(string, string)", + "GetPropertyIntentValue": "GetPropertyIntentValue(string, string)", + "GetTitleString(object, string[])": "GetTitleString(object, string[])", + "GetTitleString": "GetTitleString(object, string[])", + "GetTitleStringWithSeparator(object, string[], string)": "GetTitleStringWithSeparator(object, string[], string)", + "GetTitleStringWithSeparator": "GetTitleStringWithSeparator(object, string[], string)", + "HasDateTimeProperties()": "HasDateTimeProperties()", + "HasDateTimeProperties": "HasDateTimeProperties()", + "HasNumericProperties()": "HasNumericProperties()", + "HasNumericProperties": "HasNumericProperties()", + "HasStringProperties()": "HasStringProperties()", + "HasStringProperties": "HasStringProperties()", + "IncludedProperties": "IncludedProperties", + "IsCollection(object)": "IsCollection(object)", + "IsCollection": "IsCollection(object)", + "IsEvenlySpaced(IDataSourceLocalDataProvider, string, int)": "IsEvenlySpaced(IDataSourceLocalDataProvider, string, int)", + "IsEvenlySpaced": "IsEvenlySpaced(IDataSourceLocalDataProvider, string, int)", + "IsMonotonic(IDataSourceLocalDataProvider, string, int)": "IsMonotonic(IDataSourceLocalDataProvider, string, int)", + "IsMonotonic": "IsMonotonic(IDataSourceLocalDataProvider, string, int)", + "NumericColumnHasDiverseValues(string)": "NumericColumnHasDiverseValues(string)", + "NumericColumnHasDiverseValues": "NumericColumnHasDiverseValues(string)", + "NumericColumnHasNoRange(IDataSourceLocalDataProvider, string, int)": "NumericColumnHasNoRange(IDataSourceLocalDataProvider, string, int)", + "NumericColumnHasNoRange": "NumericColumnHasNoRange(IDataSourceLocalDataProvider, string, int)", + "ShouldIncludeProperty(string, string)": "ShouldIncludeProperty(string, string)", + "ShouldIncludeProperty": "ShouldIncludeProperty(string, string)", + "ShouldUseLogarithmicScale(IDataSourceLocalDataProvider, string)": "ShouldUseLogarithmicScale(IDataSourceLocalDataProvider, string)", + "ShouldUseLogarithmicScale": "ShouldUseLogarithmicScale(IDataSourceLocalDataProvider, string)" + } + } + ], + "DataSeriesIntent": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSeriesIntent", + "k": "enum", + "s": "enums" + } + ], + "DataSeriesMarker": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSeriesMarker", + "k": "enum", + "s": "enums" + } + ], + "DataSeriesMemberIntentAttribute": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesMemberIntentAttribute", + "k": "class", + "s": "classes", + "m": { + "DataSeriesMemberIntentAttribute(DataSeriesIntent)": "DataSeriesMemberIntentAttribute(DataSeriesIntent)", + "DataSeriesMemberIntentAttribute": "DataSeriesMemberIntentAttribute(DataSeriesIntent)", + "MemberIntent": "MemberIntent" + } + } + ], + "DataSeriesMemberPathHint": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesMemberPathHint", + "k": "class", + "s": "classes", + "m": { + "DataSeriesMemberPathHint()": "DataSeriesMemberPathHint()", + "DataSeriesMemberPathHint": "DataSeriesMemberPathHint()", + "Clone()": "Clone()", + "Clone": "Clone()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "HasPath()": "HasPath()", + "HasPath": "HasPath()", + "Intent": "Intent", + "LogarithmicSuggested": "LogarithmicSuggested", + "Path": "Path", + "ToString()": "ToString()", + "ToString": "ToString()", + "Update(string, string)": "Update(string, string)", + "Update": "Update(string, string)", + "Update(string[], string)": "Update(string[], string)" + } + } + ], + "DataSeriesPropertyType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSeriesPropertyType", + "k": "enum", + "s": "enums" + } + ], + "DataSeriesTitleAttribute": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesTitleAttribute", + "k": "class", + "s": "classes", + "m": { + "DataSeriesTitleAttribute(string)": "DataSeriesTitleAttribute(string)", + "DataSeriesTitleAttribute": "DataSeriesTitleAttribute(string)", + "MemberIntent": "MemberIntent", + "Title": "Title" + } + } + ], + "DataSeriesToDescriptionAdapter": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DataSeriesToDescriptionAdapter", + "k": "class", + "s": "classes", + "m": { + "DataSeriesToDescriptionAdapter(DataSeriesToDescriptionAdapterSettings)": "DataSeriesToDescriptionAdapter(DataSeriesToDescriptionAdapterSettings)", + "DataSeriesToDescriptionAdapter": "DataSeriesToDescriptionAdapter(DataSeriesToDescriptionAdapterSettings)", + "GetDataGridContent(DataSeries[])": "GetDataGridContent(DataSeries[])", + "GetDataGridContent": "GetDataGridContent(DataSeries[])", + "GetEditorContent(DataSeries[])": "GetEditorContent(DataSeries[])", + "GetEditorContent": "GetEditorContent(DataSeries[])", + "GetLegendContent(DataSeries[])": "GetLegendContent(DataSeries[])", + "GetLegendContent": "GetLegendContent(DataSeries[])", + "GetMainContent(DataSeries[])": "GetMainContent(DataSeries[])", + "GetMainContent": "GetMainContent(DataSeries[])", + "GetToolbarContent(DataSeries[])": "GetToolbarContent(DataSeries[])", + "GetToolbarContent": "GetToolbarContent(DataSeries[])" + } + } + ], + "DataSeriesToDescriptionAdapterResult": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DataSeriesToDescriptionAdapterResult", + "k": "class", + "s": "classes", + "m": { + "Content": "Content", + "DescriptionType": "DescriptionType", + "MainRef": "MainRef", + "RefNames": "RefNames", + "RefValues": "RefValues" + } + } + ], + "DataSeriesToDescriptionAdapterSettings": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DataSeriesToDescriptionAdapterSettings", + "k": "class", + "s": "classes", + "m": { + "DataSeriesToDescriptionAdapterSettings()": "DataSeriesToDescriptionAdapterSettings()", + "DataSeriesToDescriptionAdapterSettings": "DataSeriesToDescriptionAdapterSettings()", + "AddCoercion(string, DataSeriesToDescriptionAdapterCoerceValue)": "AddCoercion(string, DataSeriesToDescriptionAdapterCoerceValue)", + "AddCoercion": "AddCoercion(string, DataSeriesToDescriptionAdapterCoerceValue)", + "Context": "Context", + "Customizations": "Customizations", + "GetSettingsValue(string)": "GetSettingsValue(string)", + "GetSettingsValue": "GetSettingsValue(string)", + "HasSettingsValue(string)": "HasSettingsValue(string)", + "HasSettingsValue": "HasSettingsValue(string)", + "OriginalData": "OriginalData", + "RefNamespace": "RefNamespace", + "SetSettingsValue(string, object)": "SetSettingsValue(string, object)", + "SetSettingsValue": "SetSettingsValue(string, object)", + "ShouldPreferRadialCategories": "ShouldPreferRadialCategories", + "ShouldStackCategories": "ShouldStackCategories" + } + } + ], + "DataSeriesToDescriptionCustomization": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSeriesToDescriptionCustomization", + "k": "class", + "s": "classes", + "m": { + "DataSeriesToDescriptionCustomization()": "DataSeriesToDescriptionCustomization()", + "DataSeriesToDescriptionCustomization": "DataSeriesToDescriptionCustomization()", + "CollectionIndex": "CollectionIndex", + "IsCollectionInsertionAtEnd": "IsCollectionInsertionAtEnd", + "IsCollectionInsertionAtIndex": "IsCollectionInsertionAtIndex", + "IsCollectionInsertionAtStart": "IsCollectionInsertionAtStart", + "IsCollectionRemovaltIndex": "IsCollectionRemovaltIndex", + "MatchParentIndex": "MatchParentIndex", + "MatchType": "MatchType", + "Order": "Order", + "Owner": "Owner", + "PendingDescription": "PendingDescription", + "PropertyName": "PropertyName", + "PropertyValue": "PropertyValue" + } + } + ], + "DataSeriesToDescriptionCustomizations": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/DataSeriesToDescriptionCustomizations", + "k": "class", + "s": "classes", + "m": { + "DataSeriesToDescriptionCustomizations(DataSeriesToDescriptionCustomization[])": "DataSeriesToDescriptionCustomizations(DataSeriesToDescriptionCustomization[])", + "DataSeriesToDescriptionCustomizations": "DataSeriesToDescriptionCustomizations(DataSeriesToDescriptionCustomization[])", + "AddOtherCustomizations(DataSeriesToDescriptionCustomizations)": "AddOtherCustomizations(DataSeriesToDescriptionCustomizations)", + "AddOtherCustomizations": "AddOtherCustomizations(DataSeriesToDescriptionCustomizations)", + "ClearOtherCustomizations()": "ClearOtherCustomizations()", + "ClearOtherCustomizations": "ClearOtherCustomizations()", + "GetCollectionModifiers(string)": "GetCollectionModifiers(string)", + "GetCollectionModifiers": "GetCollectionModifiers(string)", + "GetPropertyCustomizations(string)": "GetPropertyCustomizations(string)", + "GetPropertyCustomizations": "GetPropertyCustomizations(string)", + "HasCustomizationsFor(string)": "HasCustomizationsFor(string)", + "HasCustomizationsFor": "HasCustomizationsFor(string)" + } + } + ], + "DataSeriesType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSeriesType", + "k": "enum", + "s": "enums" + } + ], + "DataSourceAggregatedResult": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceAggregatedResult", + "k": "class", + "s": "classes", + "m": { + "DataSourceAggregatedResult()": "DataSourceAggregatedResult()", + "DataSourceAggregatedResult": "DataSourceAggregatedResult()", + "Item": "Item", + "Keys": "Keys", + "TransactionType": "TransactionType", + "Values": "Values" + } + } + ], + "DataSourceAggregatedResultDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceAggregatedResultDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceAggregatedResultDescription()": "DataSourceAggregatedResultDescription()", + "DataSourceAggregatedResultDescription": "DataSourceAggregatedResultDescription()", + "Item": "Item", + "Keys": "Keys", + "TransactionType": "TransactionType", + "Type": "Type", + "Values": "Values" + } + } + ], + "DataSourceAggregatedResultDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceAggregatedResultDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceAggregatedResultDescriptionMetadata()": "DataSourceAggregatedResultDescriptionMetadata()", + "DataSourceAggregatedResultDescriptionMetadata": "DataSourceAggregatedResultDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceBatchCompletedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceBatchCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceBatchCompletedEventArgs(bool, string[])": "DataSourceBatchCompletedEventArgs(bool, string[])", + "DataSourceBatchCompletedEventArgs": "DataSourceBatchCompletedEventArgs(bool, string[])", + "Messages": "Messages", + "Success": "Success" + } + } + ], + "DataSourceBatchStartedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceBatchStartedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceBatchStartedEventArgs(TransactionState[])": "DataSourceBatchStartedEventArgs(TransactionState[])", + "DataSourceBatchStartedEventArgs": "DataSourceBatchStartedEventArgs(TransactionState[])", + "Changes": "Changes" + } + } + ], + "DataSourceDataCommittedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceDataCommittedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceDataCommittedEventArgs(int, DataSourceAggregatedResult[])": "DataSourceDataCommittedEventArgs(int, DataSourceAggregatedResult[])", + "DataSourceDataCommittedEventArgs": "DataSourceDataCommittedEventArgs(int, DataSourceAggregatedResult[])", + "Changes": "Changes", + "CommitID": "CommitID" + } + } + ], + "DataSourceDataProviderSchemaChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceDataProviderSchemaChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceDataProviderSchemaChangedEventArgs(IDataSourceSchema, int)": "DataSourceDataProviderSchemaChangedEventArgs(IDataSourceSchema, int)", + "DataSourceDataProviderSchemaChangedEventArgs": "DataSourceDataProviderSchemaChangedEventArgs(IDataSourceSchema, int)", + "Count": "Count", + "Schema": "Schema" + } + } + ], + "DataSourceDataProviderSchemaChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceDataProviderSchemaChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceDataProviderSchemaChangedEventArgsDescription()": "DataSourceDataProviderSchemaChangedEventArgsDescription()", + "DataSourceDataProviderSchemaChangedEventArgsDescription": "DataSourceDataProviderSchemaChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata()": "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata()", + "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata": "DataSourceDataProviderSchemaChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceGroupDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescription()": "DataSourceGroupDescription()", + "DataSourceGroupDescription": "DataSourceGroupDescription()", + "DataSourceGroupDescription(string)": "DataSourceGroupDescription(string)", + "DataSourceGroupDescription(string, ListSortDirection)": "DataSourceGroupDescription(string, ListSortDirection)" + } + } + ], + "DataSourceGroupDescriptionCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceGroupDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescriptionCollection()": "DataSourceGroupDescriptionCollection()", + "DataSourceGroupDescriptionCollection": "DataSourceGroupDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceGroupDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceGroupDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescriptionDescription()": "DataSourceGroupDescriptionDescription()", + "DataSourceGroupDescriptionDescription": "DataSourceGroupDescriptionDescription()", + "Type": "Type" + } + } + ], + "DataSourceGroupDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceGroupDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescriptionDescriptionMetadata()": "DataSourceGroupDescriptionDescriptionMetadata()", + "DataSourceGroupDescriptionDescriptionMetadata": "DataSourceGroupDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceGroupDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceGroupDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataSourceGroupDescriptionDescriptionModule()": "DataSourceGroupDescriptionDescriptionModule()", + "DataSourceGroupDescriptionDescriptionModule": "DataSourceGroupDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceLocalDataProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceLocalDataProvider", + "k": "class", + "s": "classes", + "m": { + "DataSourceLocalDataProvider()": "DataSourceLocalDataProvider()", + "DataSourceLocalDataProvider": "DataSourceLocalDataProvider()", + "ActualCount": "ActualCount", + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "Clone()": "Clone()", + "Clone": "Clone()", + "DeferAutoRefresh": "DeferAutoRefresh", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GroupDescriptions": "GroupDescriptions", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsSortingSupported": "IsSortingSupported", + "ItemsSource": "ItemsSource", + "List": "List", + "MustSyncListWithChanges": "MustSyncListWithChanges", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "PropertiesRequested": "PropertiesRequested", + "PropertyUpdatedOverride(string, object, object)": "PropertyUpdatedOverride(string, object, object)", + "PropertyUpdatedOverride": "PropertyUpdatedOverride(string, object, object)", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "ReactToINPCNotifications": "ReactToINPCNotifications", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RefreshInternalOverride()": "RefreshInternalOverride()", + "RefreshInternalOverride": "RefreshInternalOverride()", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "SchemaHints": "SchemaHints", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SetItemValue(object, string, object)": "SetItemValue(object, string, object)", + "SetItemValue": "SetItemValue(object, string, object)", + "SetSchema(IDataSourceSchema)": "SetSchema(IDataSourceSchema)", + "SetSchema": "SetSchema(IDataSourceSchema)", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "DataSourcePageRequestPriority": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSourcePageRequestPriority", + "k": "enum", + "s": "enums" + } + ], + "DataSourcePropertiesRequestedChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourcePropertiesRequestedChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourcePropertiesRequestedChangedEventArgs()": "DataSourcePropertiesRequestedChangedEventArgs()", + "DataSourcePropertiesRequestedChangedEventArgs": "DataSourcePropertiesRequestedChangedEventArgs()" + } + } + ], + "DataSourcePropertiesRequestedChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourcePropertiesRequestedChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourcePropertiesRequestedChangedEventArgsDescription()": "DataSourcePropertiesRequestedChangedEventArgsDescription()", + "DataSourcePropertiesRequestedChangedEventArgsDescription": "DataSourcePropertiesRequestedChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata()": "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata()", + "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata": "DataSourcePropertiesRequestedChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceRootSummariesChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceRootSummariesChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceRootSummariesChangedEventArgs()": "DataSourceRootSummariesChangedEventArgs()", + "DataSourceRootSummariesChangedEventArgs": "DataSourceRootSummariesChangedEventArgs()" + } + } + ], + "DataSourceRootSummariesChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceRootSummariesChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceRootSummariesChangedEventArgsDescription()": "DataSourceRootSummariesChangedEventArgsDescription()", + "DataSourceRootSummariesChangedEventArgsDescription": "DataSourceRootSummariesChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourceRootSummariesChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceRootSummariesChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceRootSummariesChangedEventArgsDescriptionMetadata()": "DataSourceRootSummariesChangedEventArgsDescriptionMetadata()", + "DataSourceRootSummariesChangedEventArgsDescriptionMetadata": "DataSourceRootSummariesChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceRowExpansionChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceRowExpansionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceRowExpansionChangedEventArgs(int, bool, bool)": "DataSourceRowExpansionChangedEventArgs(int, bool, bool)", + "DataSourceRowExpansionChangedEventArgs": "DataSourceRowExpansionChangedEventArgs(int, bool, bool)", + "NewState": "NewState", + "OldState": "OldState", + "RowIndex": "RowIndex" + } + } + ], + "DataSourceRowExpansionChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceRowExpansionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceRowExpansionChangedEventArgsDescription()": "DataSourceRowExpansionChangedEventArgsDescription()", + "DataSourceRowExpansionChangedEventArgsDescription": "DataSourceRowExpansionChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourceRowExpansionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceRowExpansionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceRowExpansionChangedEventArgsDescriptionMetadata()": "DataSourceRowExpansionChangedEventArgsDescriptionMetadata()", + "DataSourceRowExpansionChangedEventArgsDescriptionMetadata": "DataSourceRowExpansionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceRowType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSourceRowType", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSchemaChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSchemaChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DataSourceSchemaChangedEventArgs(IDataSourceSchema, int)": "DataSourceSchemaChangedEventArgs(IDataSourceSchema, int)", + "DataSourceSchemaChangedEventArgs": "DataSourceSchemaChangedEventArgs(IDataSourceSchema, int)", + "Count": "Count", + "Schema": "Schema" + } + } + ], + "DataSourceSchemaChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSchemaChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSchemaChangedEventArgsDescription()": "DataSourceSchemaChangedEventArgsDescription()", + "DataSourceSchemaChangedEventArgsDescription": "DataSourceSchemaChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "DataSourceSchemaChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSchemaChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSchemaChangedEventArgsDescriptionMetadata()": "DataSourceSchemaChangedEventArgsDescriptionMetadata()", + "DataSourceSchemaChangedEventArgsDescriptionMetadata": "DataSourceSchemaChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSchemaPropertyType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSourceSchemaPropertyType", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSectionHeaderDisplayMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSourceSectionHeaderDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSortDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSortDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescription()": "DataSourceSortDescription()", + "DataSourceSortDescription": "DataSourceSortDescription()", + "DataSourceSortDescription(string)": "DataSourceSortDescription(string)", + "DataSourceSortDescription(string, ListSortDirection)": "DataSourceSortDescription(string, ListSortDirection)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "SortDirection": "SortDirection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceSortDescriptionCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescriptionCollection()": "DataSourceSortDescriptionCollection()", + "DataSourceSortDescriptionCollection": "DataSourceSortDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceSortDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSortDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescriptionDescription()": "DataSourceSortDescriptionDescription()", + "DataSourceSortDescriptionDescription": "DataSourceSortDescriptionDescription()", + "Field": "Field", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "DataSourceSortDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSortDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescriptionDescriptionMetadata()": "DataSourceSortDescriptionDescriptionMetadata()", + "DataSourceSortDescriptionDescriptionMetadata": "DataSourceSortDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSortDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSortDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataSourceSortDescriptionDescriptionModule()": "DataSourceSortDescriptionDescriptionModule()", + "DataSourceSortDescriptionDescriptionModule": "DataSourceSortDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSpecialRow": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSpecialRow", + "k": "class", + "s": "classes", + "m": { + "DataSourceSpecialRow()": "DataSourceSpecialRow()", + "DataSourceSpecialRow": "DataSourceSpecialRow()", + "GetValue(string)": "GetValue(string)", + "GetValue": "GetValue(string)", + "RowType": "RowType", + "SetValue(string, object)": "SetValue(string, object)", + "SetValue": "SetValue(string, object)" + } + } + ], + "DataSourceSpecialRowDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSpecialRowDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSpecialRowDescription()": "DataSourceSpecialRowDescription()", + "DataSourceSpecialRowDescription": "DataSourceSpecialRowDescription()", + "Keys": "Keys", + "Level": "Level", + "RowType": "RowType", + "SectionKeys": "SectionKeys", + "SectionValuesRef": "SectionValuesRef", + "SummaryResults": "SummaryResults", + "TargetRow": "TargetRow", + "Type": "Type", + "ValuesRef": "ValuesRef" + } + } + ], + "DataSourceSpecialRowDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSpecialRowDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSpecialRowDescriptionMetadata()": "DataSourceSpecialRowDescriptionMetadata()", + "DataSourceSpecialRowDescriptionMetadata": "DataSourceSpecialRowDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSummaryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSummaryDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescription()": "DataSourceSummaryDescription()", + "DataSourceSummaryDescription": "DataSourceSummaryDescription()", + "DataSourceSummaryDescription(string)": "DataSourceSummaryDescription(string)", + "DataSourceSummaryDescription(string, DataSourceSummaryOperand)": "DataSourceSummaryDescription(string, DataSourceSummaryOperand)", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Field": "Field", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "OnProvideCalculator(ProvideCalculatorEventArgs)": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "OnProvideCalculator": "OnProvideCalculator(ProvideCalculatorEventArgs)", + "Operand": "Operand", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceSummaryDescriptionCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescriptionCollection()": "DataSourceSummaryDescriptionCollection()", + "DataSourceSummaryDescriptionCollection": "DataSourceSummaryDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DataSourceSummaryDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSummaryDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescriptionDescription()": "DataSourceSummaryDescriptionDescription()", + "DataSourceSummaryDescriptionDescription": "DataSourceSummaryDescriptionDescription()", + "Alias": "Alias", + "CalculatorDisplayName": "CalculatorDisplayName", + "Field": "Field", + "Operand": "Operand", + "ProvideCalculatorRef": "ProvideCalculatorRef", + "Type": "Type" + } + } + ], + "DataSourceSummaryDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSummaryDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescriptionDescriptionMetadata()": "DataSourceSummaryDescriptionDescriptionMetadata()", + "DataSourceSummaryDescriptionDescriptionMetadata": "DataSourceSummaryDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSummaryDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSummaryDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataSourceSummaryDescriptionDescriptionModule()": "DataSourceSummaryDescriptionDescriptionModule()", + "DataSourceSummaryDescriptionDescriptionModule": "DataSourceSummaryDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataSourceSummaryOperand": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSourceSummaryOperand", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSummaryScope": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataSourceSummaryScope", + "k": "enum", + "s": "enums" + } + ], + "DataSourceSupportingCalculation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataSourceSupportingCalculation", + "k": "class", + "s": "classes", + "m": { + "DataSourceSupportingCalculation(ProvideColumnValuesStrategy)": "DataSourceSupportingCalculation(ProvideColumnValuesStrategy)", + "DataSourceSupportingCalculation": "DataSourceSupportingCalculation(ProvideColumnValuesStrategy)", + "DataSourceSupportingCalculation(ProvideColumnValuesStrategy, IList)": "DataSourceSupportingCalculation(ProvideColumnValuesStrategy, IList)" + } + } + ], + "DataSourceSupportingCalculationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSupportingCalculationDescription", + "k": "class", + "s": "classes", + "m": { + "DataSourceSupportingCalculationDescription()": "DataSourceSupportingCalculationDescription()", + "DataSourceSupportingCalculationDescription": "DataSourceSupportingCalculationDescription()", + "Type": "Type" + } + } + ], + "DataSourceSupportingCalculationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataSourceSupportingCalculationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataSourceSupportingCalculationDescriptionMetadata()": "DataSourceSupportingCalculationDescriptionMetadata()", + "DataSourceSupportingCalculationDescriptionMetadata": "DataSourceSupportingCalculationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataTemplate": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DataTemplate", + "k": "class", + "s": "classes", + "m": { + "DataTemplate()": "DataTemplate()", + "DataTemplate": "DataTemplate()", + "Measure": "Measure", + "PassCompleted": "PassCompleted", + "PassStarting": "PassStarting", + "Render": "Render" + } + } + ], + "DataTemplateMeasureInfo": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DataTemplateMeasureInfo", + "k": "class", + "s": "classes", + "m": { + "DataTemplateMeasureInfo()": "DataTemplateMeasureInfo()", + "DataTemplateMeasureInfo": "DataTemplateMeasureInfo()", + "Context": "Context", + "Data": "Data", + "Height": "Height", + "IsConstant": "IsConstant", + "PassInfo": "PassInfo", + "RenderContext": "RenderContext", + "RenderOffsetX": "RenderOffsetX", + "RenderOffsetY": "RenderOffsetY", + "Width": "Width" + } + } + ], + "DataTemplatePassInfo": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DataTemplatePassInfo", + "k": "class", + "s": "classes", + "m": { + "DataTemplatePassInfo()": "DataTemplatePassInfo()", + "DataTemplatePassInfo": "DataTemplatePassInfo()", + "Context": "Context", + "IsForDataLegend": "IsForDataLegend", + "IsHitTestRender": "IsHitTestRender", + "PassID": "PassID", + "RenderContext": "RenderContext", + "ViewportHeight": "ViewportHeight", + "ViewportLeft": "ViewportLeft", + "ViewportTop": "ViewportTop", + "ViewportWidth": "ViewportWidth" + } + } + ], + "DataTemplateRenderInfo": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DataTemplateRenderInfo", + "k": "class", + "s": "classes", + "m": { + "DataTemplateRenderInfo()": "DataTemplateRenderInfo()", + "DataTemplateRenderInfo": "DataTemplateRenderInfo()", + "AvailableHeight": "AvailableHeight", + "AvailableWidth": "AvailableWidth", + "Context": "Context", + "Data": "Data", + "IsHitTestRender": "IsHitTestRender", + "PassInfo": "PassInfo", + "RenderContext": "RenderContext", + "RenderOffsetX": "RenderOffsetX", + "RenderOffsetY": "RenderOffsetY", + "XPosition": "XPosition", + "YPosition": "YPosition" + } + } + ], + "DataTooltipConstraintMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/DataTooltipConstraintMode", + "k": "enum", + "s": "enums" + } + ], + "DataTooltipGroupedPositionX": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataTooltipGroupedPositionX", + "k": "enum", + "s": "enums" + } + ], + "DataTooltipGroupedPositionY": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataTooltipGroupedPositionY", + "k": "enum", + "s": "enums" + } + ], + "DataToolTipLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DataToolTipLayer", + "k": "class", + "s": "classes", + "m": { + "DataToolTipLayer()": "DataToolTipLayer()", + "DataToolTipLayer": "DataToolTipLayer()", + "ActualGroupedPositionModeX": "ActualGroupedPositionModeX", + "ActualGroupedPositionModeXProperty": "ActualGroupedPositionModeXProperty", + "ActualGroupedPositionModeY": "ActualGroupedPositionModeY", + "ActualGroupedPositionModeYProperty": "ActualGroupedPositionModeYProperty", + "ActualGroupingMode": "ActualGroupingMode", + "ActualGroupingModeProperty": "ActualGroupingModeProperty", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginBottomProperty": "BadgeMarginBottomProperty", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginLeftProperty": "BadgeMarginLeftProperty", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginRightProperty": "BadgeMarginRightProperty", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeMarginTopProperty": "BadgeMarginTopProperty", + "BadgeShape": "BadgeShape", + "BadgeShapeProperty": "BadgeShapeProperty", + "DefaultPositionOffsetX": "DefaultPositionOffsetX", + "DefaultPositionOffsetXProperty": "DefaultPositionOffsetXProperty", + "DefaultPositionOffsetY": "DefaultPositionOffsetY", + "DefaultPositionOffsetYProperty": "DefaultPositionOffsetYProperty", + "ExcludedColumns": "ExcludedColumns", + "ExcludedColumnsProperty": "ExcludedColumnsProperty", + "ExcludedSeries": "ExcludedSeries", + "ExcludedSeriesProperty": "ExcludedSeriesProperty", + "GroupRowMarginBottom": "GroupRowMarginBottom", + "GroupRowMarginBottomProperty": "GroupRowMarginBottomProperty", + "GroupRowMarginLeft": "GroupRowMarginLeft", + "GroupRowMarginLeftProperty": "GroupRowMarginLeftProperty", + "GroupRowMarginRight": "GroupRowMarginRight", + "GroupRowMarginRightProperty": "GroupRowMarginRightProperty", + "GroupRowMarginTop": "GroupRowMarginTop", + "GroupRowMarginTopProperty": "GroupRowMarginTopProperty", + "GroupRowVisible": "GroupRowVisible", + "GroupRowVisibleProperty": "GroupRowVisibleProperty", + "GroupTextColor": "GroupTextColor", + "GroupTextColorProperty": "GroupTextColorProperty", + "GroupTextFontFamily": "GroupTextFontFamily", + "GroupTextFontFamilyProperty": "GroupTextFontFamilyProperty", + "GroupTextFontSize": "GroupTextFontSize", + "GroupTextFontSizeProperty": "GroupTextFontSizeProperty", + "GroupTextFontStyle": "GroupTextFontStyle", + "GroupTextFontStyleProperty": "GroupTextFontStyleProperty", + "GroupTextFontWeight": "GroupTextFontWeight", + "GroupTextFontWeightProperty": "GroupTextFontWeightProperty", + "GroupTextMarginBottom": "GroupTextMarginBottom", + "GroupTextMarginBottomProperty": "GroupTextMarginBottomProperty", + "GroupTextMarginLeft": "GroupTextMarginLeft", + "GroupTextMarginLeftProperty": "GroupTextMarginLeftProperty", + "GroupTextMarginRight": "GroupTextMarginRight", + "GroupTextMarginRightProperty": "GroupTextMarginRightProperty", + "GroupTextMarginTop": "GroupTextMarginTop", + "GroupTextMarginTopProperty": "GroupTextMarginTopProperty", + "GroupedPositionModeX": "GroupedPositionModeX", + "GroupedPositionModeXProperty": "GroupedPositionModeXProperty", + "GroupedPositionModeY": "GroupedPositionModeY", + "GroupedPositionModeYProperty": "GroupedPositionModeYProperty", + "GroupingMode": "GroupingMode", + "GroupingModeProperty": "GroupingModeProperty", + "HeaderFormatCulture": "HeaderFormatCulture", + "HeaderFormatCultureProperty": "HeaderFormatCultureProperty", + "HeaderFormatDate": "HeaderFormatDate", + "HeaderFormatDateProperty": "HeaderFormatDateProperty", + "HeaderFormatSpecifiers": "HeaderFormatSpecifiers", + "HeaderFormatSpecifiersProperty": "HeaderFormatSpecifiersProperty", + "HeaderFormatString": "HeaderFormatString", + "HeaderFormatStringProperty": "HeaderFormatStringProperty", + "HeaderFormatTime": "HeaderFormatTime", + "HeaderFormatTimeProperty": "HeaderFormatTimeProperty", + "HeaderRowMarginBottom": "HeaderRowMarginBottom", + "HeaderRowMarginBottomProperty": "HeaderRowMarginBottomProperty", + "HeaderRowMarginLeft": "HeaderRowMarginLeft", + "HeaderRowMarginLeftProperty": "HeaderRowMarginLeftProperty", + "HeaderRowMarginRight": "HeaderRowMarginRight", + "HeaderRowMarginRightProperty": "HeaderRowMarginRightProperty", + "HeaderRowMarginTop": "HeaderRowMarginTop", + "HeaderRowMarginTopProperty": "HeaderRowMarginTopProperty", + "HeaderRowVisible": "HeaderRowVisible", + "HeaderRowVisibleProperty": "HeaderRowVisibleProperty", + "HeaderText": "HeaderText", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HeaderTextFontFamily": "HeaderTextFontFamily", + "HeaderTextFontFamilyProperty": "HeaderTextFontFamilyProperty", + "HeaderTextFontSize": "HeaderTextFontSize", + "HeaderTextFontSizeProperty": "HeaderTextFontSizeProperty", + "HeaderTextFontStyle": "HeaderTextFontStyle", + "HeaderTextFontStyleProperty": "HeaderTextFontStyleProperty", + "HeaderTextFontWeight": "HeaderTextFontWeight", + "HeaderTextFontWeightProperty": "HeaderTextFontWeightProperty", + "HeaderTextMarginBottom": "HeaderTextMarginBottom", + "HeaderTextMarginBottomProperty": "HeaderTextMarginBottomProperty", + "HeaderTextMarginLeft": "HeaderTextMarginLeft", + "HeaderTextMarginLeftProperty": "HeaderTextMarginLeftProperty", + "HeaderTextMarginRight": "HeaderTextMarginRight", + "HeaderTextMarginRightProperty": "HeaderTextMarginRightProperty", + "HeaderTextMarginTop": "HeaderTextMarginTop", + "HeaderTextMarginTopProperty": "HeaderTextMarginTopProperty", + "HeaderTextProperty": "HeaderTextProperty", + "IncludedColumns": "IncludedColumns", + "IncludedColumnsProperty": "IncludedColumnsProperty", + "IncludedSeries": "IncludedSeries", + "IncludedSeriesProperty": "IncludedSeriesProperty", + "LabelDisplayMode": "LabelDisplayMode", + "LabelDisplayModeProperty": "LabelDisplayModeProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "LabelTextFontFamily": "LabelTextFontFamily", + "LabelTextFontFamilyProperty": "LabelTextFontFamilyProperty", + "LabelTextFontSize": "LabelTextFontSize", + "LabelTextFontSizeProperty": "LabelTextFontSizeProperty", + "LabelTextFontStyle": "LabelTextFontStyle", + "LabelTextFontStyleProperty": "LabelTextFontStyleProperty", + "LabelTextFontWeight": "LabelTextFontWeight", + "LabelTextFontWeightProperty": "LabelTextFontWeightProperty", + "LabelTextMarginBottom": "LabelTextMarginBottom", + "LabelTextMarginBottomProperty": "LabelTextMarginBottomProperty", + "LabelTextMarginLeft": "LabelTextMarginLeft", + "LabelTextMarginLeftProperty": "LabelTextMarginLeftProperty", + "LabelTextMarginRight": "LabelTextMarginRight", + "LabelTextMarginRightProperty": "LabelTextMarginRightProperty", + "LabelTextMarginTop": "LabelTextMarginTop", + "LabelTextMarginTopProperty": "LabelTextMarginTopProperty", + "LayoutMode": "LayoutMode", + "LayoutModeProperty": "LayoutModeProperty", + "PositionOffsetX": "PositionOffsetX", + "PositionOffsetXProperty": "PositionOffsetXProperty", + "PositionOffsetY": "PositionOffsetY", + "PositionOffsetYProperty": "PositionOffsetYProperty", + "ShouldUpdateWhenSeriesDataChanges": "ShouldUpdateWhenSeriesDataChanges", + "ShouldUpdateWhenSeriesDataChangesProperty": "ShouldUpdateWhenSeriesDataChangesProperty", + "SummaryLabelText": "SummaryLabelText", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextColorProperty": "SummaryLabelTextColorProperty", + "SummaryLabelTextFontFamily": "SummaryLabelTextFontFamily", + "SummaryLabelTextFontFamilyProperty": "SummaryLabelTextFontFamilyProperty", + "SummaryLabelTextFontSize": "SummaryLabelTextFontSize", + "SummaryLabelTextFontSizeProperty": "SummaryLabelTextFontSizeProperty", + "SummaryLabelTextFontStyle": "SummaryLabelTextFontStyle", + "SummaryLabelTextFontStyleProperty": "SummaryLabelTextFontStyleProperty", + "SummaryLabelTextFontWeight": "SummaryLabelTextFontWeight", + "SummaryLabelTextFontWeightProperty": "SummaryLabelTextFontWeightProperty", + "SummaryLabelTextProperty": "SummaryLabelTextProperty", + "SummaryRowMarginBottom": "SummaryRowMarginBottom", + "SummaryRowMarginBottomProperty": "SummaryRowMarginBottomProperty", + "SummaryRowMarginLeft": "SummaryRowMarginLeft", + "SummaryRowMarginLeftProperty": "SummaryRowMarginLeftProperty", + "SummaryRowMarginRight": "SummaryRowMarginRight", + "SummaryRowMarginRightProperty": "SummaryRowMarginRightProperty", + "SummaryRowMarginTop": "SummaryRowMarginTop", + "SummaryRowMarginTopProperty": "SummaryRowMarginTopProperty", + "SummaryTitleText": "SummaryTitleText", + "SummaryTitleTextColor": "SummaryTitleTextColor", + "SummaryTitleTextColorProperty": "SummaryTitleTextColorProperty", + "SummaryTitleTextFontFamily": "SummaryTitleTextFontFamily", + "SummaryTitleTextFontFamilyProperty": "SummaryTitleTextFontFamilyProperty", + "SummaryTitleTextFontSize": "SummaryTitleTextFontSize", + "SummaryTitleTextFontSizeProperty": "SummaryTitleTextFontSizeProperty", + "SummaryTitleTextFontStyle": "SummaryTitleTextFontStyle", + "SummaryTitleTextFontStyleProperty": "SummaryTitleTextFontStyleProperty", + "SummaryTitleTextFontWeight": "SummaryTitleTextFontWeight", + "SummaryTitleTextFontWeightProperty": "SummaryTitleTextFontWeightProperty", + "SummaryTitleTextMarginBottom": "SummaryTitleTextMarginBottom", + "SummaryTitleTextMarginBottomProperty": "SummaryTitleTextMarginBottomProperty", + "SummaryTitleTextMarginLeft": "SummaryTitleTextMarginLeft", + "SummaryTitleTextMarginLeftProperty": "SummaryTitleTextMarginLeftProperty", + "SummaryTitleTextMarginRight": "SummaryTitleTextMarginRight", + "SummaryTitleTextMarginRightProperty": "SummaryTitleTextMarginRightProperty", + "SummaryTitleTextMarginTop": "SummaryTitleTextMarginTop", + "SummaryTitleTextMarginTopProperty": "SummaryTitleTextMarginTopProperty", + "SummaryTitleTextProperty": "SummaryTitleTextProperty", + "SummaryType": "SummaryType", + "SummaryTypeProperty": "SummaryTypeProperty", + "SummaryUnitsText": "SummaryUnitsText", + "SummaryUnitsTextColor": "SummaryUnitsTextColor", + "SummaryUnitsTextColorProperty": "SummaryUnitsTextColorProperty", + "SummaryUnitsTextFontFamily": "SummaryUnitsTextFontFamily", + "SummaryUnitsTextFontFamilyProperty": "SummaryUnitsTextFontFamilyProperty", + "SummaryUnitsTextFontSize": "SummaryUnitsTextFontSize", + "SummaryUnitsTextFontSizeProperty": "SummaryUnitsTextFontSizeProperty", + "SummaryUnitsTextFontStyle": "SummaryUnitsTextFontStyle", + "SummaryUnitsTextFontStyleProperty": "SummaryUnitsTextFontStyleProperty", + "SummaryUnitsTextFontWeight": "SummaryUnitsTextFontWeight", + "SummaryUnitsTextFontWeightProperty": "SummaryUnitsTextFontWeightProperty", + "SummaryUnitsTextProperty": "SummaryUnitsTextProperty", + "SummaryValueTextColor": "SummaryValueTextColor", + "SummaryValueTextColorProperty": "SummaryValueTextColorProperty", + "SummaryValueTextFontFamily": "SummaryValueTextFontFamily", + "SummaryValueTextFontFamilyProperty": "SummaryValueTextFontFamilyProperty", + "SummaryValueTextFontSize": "SummaryValueTextFontSize", + "SummaryValueTextFontSizeProperty": "SummaryValueTextFontSizeProperty", + "SummaryValueTextFontStyle": "SummaryValueTextFontStyle", + "SummaryValueTextFontStyleProperty": "SummaryValueTextFontStyleProperty", + "SummaryValueTextFontWeight": "SummaryValueTextFontWeight", + "SummaryValueTextFontWeightProperty": "SummaryValueTextFontWeightProperty", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTextFontFamily": "TitleTextFontFamily", + "TitleTextFontFamilyProperty": "TitleTextFontFamilyProperty", + "TitleTextFontSize": "TitleTextFontSize", + "TitleTextFontSizeProperty": "TitleTextFontSizeProperty", + "TitleTextFontStyle": "TitleTextFontStyle", + "TitleTextFontStyleProperty": "TitleTextFontStyleProperty", + "TitleTextFontWeight": "TitleTextFontWeight", + "TitleTextFontWeightProperty": "TitleTextFontWeightProperty", + "TitleTextMarginBottom": "TitleTextMarginBottom", + "TitleTextMarginBottomProperty": "TitleTextMarginBottomProperty", + "TitleTextMarginLeft": "TitleTextMarginLeft", + "TitleTextMarginLeftProperty": "TitleTextMarginLeftProperty", + "TitleTextMarginRight": "TitleTextMarginRight", + "TitleTextMarginRightProperty": "TitleTextMarginRightProperty", + "TitleTextMarginTop": "TitleTextMarginTop", + "TitleTextMarginTopProperty": "TitleTextMarginTopProperty", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBackgroundProperty": "ToolTipBackgroundProperty", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderBrushProperty": "ToolTipBorderBrushProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "UnitsDisplayMode": "UnitsDisplayMode", + "UnitsDisplayModeProperty": "UnitsDisplayModeProperty", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "UnitsTextColorProperty": "UnitsTextColorProperty", + "UnitsTextFontFamily": "UnitsTextFontFamily", + "UnitsTextFontFamilyProperty": "UnitsTextFontFamilyProperty", + "UnitsTextFontSize": "UnitsTextFontSize", + "UnitsTextFontSizeProperty": "UnitsTextFontSizeProperty", + "UnitsTextFontStyle": "UnitsTextFontStyle", + "UnitsTextFontStyleProperty": "UnitsTextFontStyleProperty", + "UnitsTextFontWeight": "UnitsTextFontWeight", + "UnitsTextFontWeightProperty": "UnitsTextFontWeightProperty", + "UnitsTextMarginBottom": "UnitsTextMarginBottom", + "UnitsTextMarginBottomProperty": "UnitsTextMarginBottomProperty", + "UnitsTextMarginLeft": "UnitsTextMarginLeft", + "UnitsTextMarginLeftProperty": "UnitsTextMarginLeftProperty", + "UnitsTextMarginRight": "UnitsTextMarginRight", + "UnitsTextMarginRightProperty": "UnitsTextMarginRightProperty", + "UnitsTextMarginTop": "UnitsTextMarginTop", + "UnitsTextMarginTopProperty": "UnitsTextMarginTopProperty", + "UnitsTextProperty": "UnitsTextProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty", + "ValueFormatAbbreviation": "ValueFormatAbbreviation", + "ValueFormatAbbreviationProperty": "ValueFormatAbbreviationProperty", + "ValueFormatCulture": "ValueFormatCulture", + "ValueFormatCultureProperty": "ValueFormatCultureProperty", + "ValueFormatMaxFractions": "ValueFormatMaxFractions", + "ValueFormatMaxFractionsProperty": "ValueFormatMaxFractionsProperty", + "ValueFormatMinFractions": "ValueFormatMinFractions", + "ValueFormatMinFractionsProperty": "ValueFormatMinFractionsProperty", + "ValueFormatMode": "ValueFormatMode", + "ValueFormatModeProperty": "ValueFormatModeProperty", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "ValueFormatSpecifiersProperty": "ValueFormatSpecifiersProperty", + "ValueFormatString": "ValueFormatString", + "ValueFormatStringProperty": "ValueFormatStringProperty", + "ValueFormatUseGrouping": "ValueFormatUseGrouping", + "ValueFormatUseGroupingProperty": "ValueFormatUseGroupingProperty", + "ValueRowMarginBottom": "ValueRowMarginBottom", + "ValueRowMarginBottomProperty": "ValueRowMarginBottomProperty", + "ValueRowMarginLeft": "ValueRowMarginLeft", + "ValueRowMarginLeftProperty": "ValueRowMarginLeftProperty", + "ValueRowMarginRight": "ValueRowMarginRight", + "ValueRowMarginRightProperty": "ValueRowMarginRightProperty", + "ValueRowMarginTop": "ValueRowMarginTop", + "ValueRowMarginTopProperty": "ValueRowMarginTopProperty", + "ValueRowVisible": "ValueRowVisible", + "ValueRowVisibleProperty": "ValueRowVisibleProperty", + "ValueTextColor": "ValueTextColor", + "ValueTextColorProperty": "ValueTextColorProperty", + "ValueTextFontFamily": "ValueTextFontFamily", + "ValueTextFontFamilyProperty": "ValueTextFontFamilyProperty", + "ValueTextFontSize": "ValueTextFontSize", + "ValueTextFontSizeProperty": "ValueTextFontSizeProperty", + "ValueTextFontStyle": "ValueTextFontStyle", + "ValueTextFontStyleProperty": "ValueTextFontStyleProperty", + "ValueTextFontWeight": "ValueTextFontWeight", + "ValueTextFontWeightProperty": "ValueTextFontWeightProperty", + "ValueTextMarginBottom": "ValueTextMarginBottom", + "ValueTextMarginBottomProperty": "ValueTextMarginBottomProperty", + "ValueTextMarginLeft": "ValueTextMarginLeft", + "ValueTextMarginLeftProperty": "ValueTextMarginLeftProperty", + "ValueTextMarginRight": "ValueTextMarginRight", + "ValueTextMarginRightProperty": "ValueTextMarginRightProperty", + "ValueTextMarginTop": "ValueTextMarginTop", + "ValueTextMarginTopProperty": "ValueTextMarginTopProperty", + "ValueTextUseSeriesColors": "ValueTextUseSeriesColors", + "ValueTextUseSeriesColorsProperty": "ValueTextUseSeriesColorsProperty", + "ValueTextWhenMissingData": "ValueTextWhenMissingData", + "ValueTextWhenMissingDataProperty": "ValueTextWhenMissingDataProperty" + } + } + ], + "DataToolTipLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataToolTipLayerDescription", + "k": "class", + "s": "classes", + "m": { + "DataToolTipLayerDescription()": "DataToolTipLayerDescription()", + "DataToolTipLayerDescription": "DataToolTipLayerDescription()", + "ActualGroupedPositionModeX": "ActualGroupedPositionModeX", + "ActualGroupedPositionModeY": "ActualGroupedPositionModeY", + "ActualGroupingMode": "ActualGroupingMode", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeShape": "BadgeShape", + "DefaultPositionOffsetX": "DefaultPositionOffsetX", + "DefaultPositionOffsetY": "DefaultPositionOffsetY", + "ExcludedColumns": "ExcludedColumns", + "ExcludedSeries": "ExcludedSeries", + "GroupRowMarginBottom": "GroupRowMarginBottom", + "GroupRowMarginLeft": "GroupRowMarginLeft", + "GroupRowMarginRight": "GroupRowMarginRight", + "GroupRowMarginTop": "GroupRowMarginTop", + "GroupRowVisible": "GroupRowVisible", + "GroupTextColor": "GroupTextColor", + "GroupTextFontFamily": "GroupTextFontFamily", + "GroupTextFontSize": "GroupTextFontSize", + "GroupTextFontStyle": "GroupTextFontStyle", + "GroupTextFontWeight": "GroupTextFontWeight", + "GroupTextMarginBottom": "GroupTextMarginBottom", + "GroupTextMarginLeft": "GroupTextMarginLeft", + "GroupTextMarginRight": "GroupTextMarginRight", + "GroupTextMarginTop": "GroupTextMarginTop", + "GroupedPositionModeX": "GroupedPositionModeX", + "GroupedPositionModeY": "GroupedPositionModeY", + "GroupingMode": "GroupingMode", + "HeaderFormatCulture": "HeaderFormatCulture", + "HeaderFormatDate": "HeaderFormatDate", + "HeaderFormatSpecifiers": "HeaderFormatSpecifiers", + "HeaderFormatString": "HeaderFormatString", + "HeaderFormatTime": "HeaderFormatTime", + "HeaderRowMarginBottom": "HeaderRowMarginBottom", + "HeaderRowMarginLeft": "HeaderRowMarginLeft", + "HeaderRowMarginRight": "HeaderRowMarginRight", + "HeaderRowMarginTop": "HeaderRowMarginTop", + "HeaderRowVisible": "HeaderRowVisible", + "HeaderText": "HeaderText", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextFontFamily": "HeaderTextFontFamily", + "HeaderTextFontSize": "HeaderTextFontSize", + "HeaderTextFontStyle": "HeaderTextFontStyle", + "HeaderTextFontWeight": "HeaderTextFontWeight", + "HeaderTextMarginBottom": "HeaderTextMarginBottom", + "HeaderTextMarginLeft": "HeaderTextMarginLeft", + "HeaderTextMarginRight": "HeaderTextMarginRight", + "HeaderTextMarginTop": "HeaderTextMarginTop", + "IncludedColumns": "IncludedColumns", + "IncludedSeries": "IncludedSeries", + "LabelDisplayMode": "LabelDisplayMode", + "LabelTextColor": "LabelTextColor", + "LabelTextFontFamily": "LabelTextFontFamily", + "LabelTextFontSize": "LabelTextFontSize", + "LabelTextFontStyle": "LabelTextFontStyle", + "LabelTextFontWeight": "LabelTextFontWeight", + "LabelTextMarginBottom": "LabelTextMarginBottom", + "LabelTextMarginLeft": "LabelTextMarginLeft", + "LabelTextMarginRight": "LabelTextMarginRight", + "LabelTextMarginTop": "LabelTextMarginTop", + "LayoutMode": "LayoutMode", + "PositionOffsetX": "PositionOffsetX", + "PositionOffsetY": "PositionOffsetY", + "ShouldUpdateWhenSeriesDataChanges": "ShouldUpdateWhenSeriesDataChanges", + "SummaryLabelText": "SummaryLabelText", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextFontFamily": "SummaryLabelTextFontFamily", + "SummaryLabelTextFontSize": "SummaryLabelTextFontSize", + "SummaryLabelTextFontStyle": "SummaryLabelTextFontStyle", + "SummaryLabelTextFontWeight": "SummaryLabelTextFontWeight", + "SummaryRowMarginBottom": "SummaryRowMarginBottom", + "SummaryRowMarginLeft": "SummaryRowMarginLeft", + "SummaryRowMarginRight": "SummaryRowMarginRight", + "SummaryRowMarginTop": "SummaryRowMarginTop", + "SummaryTitleText": "SummaryTitleText", + "SummaryTitleTextColor": "SummaryTitleTextColor", + "SummaryTitleTextFontFamily": "SummaryTitleTextFontFamily", + "SummaryTitleTextFontSize": "SummaryTitleTextFontSize", + "SummaryTitleTextFontStyle": "SummaryTitleTextFontStyle", + "SummaryTitleTextFontWeight": "SummaryTitleTextFontWeight", + "SummaryTitleTextMarginBottom": "SummaryTitleTextMarginBottom", + "SummaryTitleTextMarginLeft": "SummaryTitleTextMarginLeft", + "SummaryTitleTextMarginRight": "SummaryTitleTextMarginRight", + "SummaryTitleTextMarginTop": "SummaryTitleTextMarginTop", + "SummaryType": "SummaryType", + "SummaryUnitsText": "SummaryUnitsText", + "SummaryUnitsTextColor": "SummaryUnitsTextColor", + "SummaryUnitsTextFontFamily": "SummaryUnitsTextFontFamily", + "SummaryUnitsTextFontSize": "SummaryUnitsTextFontSize", + "SummaryUnitsTextFontStyle": "SummaryUnitsTextFontStyle", + "SummaryUnitsTextFontWeight": "SummaryUnitsTextFontWeight", + "SummaryValueTextColor": "SummaryValueTextColor", + "SummaryValueTextFontFamily": "SummaryValueTextFontFamily", + "SummaryValueTextFontSize": "SummaryValueTextFontSize", + "SummaryValueTextFontStyle": "SummaryValueTextFontStyle", + "SummaryValueTextFontWeight": "SummaryValueTextFontWeight", + "TargetAxisRef": "TargetAxisRef", + "TitleTextColor": "TitleTextColor", + "TitleTextFontFamily": "TitleTextFontFamily", + "TitleTextFontSize": "TitleTextFontSize", + "TitleTextFontStyle": "TitleTextFontStyle", + "TitleTextFontWeight": "TitleTextFontWeight", + "TitleTextMarginBottom": "TitleTextMarginBottom", + "TitleTextMarginLeft": "TitleTextMarginLeft", + "TitleTextMarginRight": "TitleTextMarginRight", + "TitleTextMarginTop": "TitleTextMarginTop", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "Type": "Type", + "UnitsDisplayMode": "UnitsDisplayMode", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "UnitsTextFontFamily": "UnitsTextFontFamily", + "UnitsTextFontSize": "UnitsTextFontSize", + "UnitsTextFontStyle": "UnitsTextFontStyle", + "UnitsTextFontWeight": "UnitsTextFontWeight", + "UnitsTextMarginBottom": "UnitsTextMarginBottom", + "UnitsTextMarginLeft": "UnitsTextMarginLeft", + "UnitsTextMarginRight": "UnitsTextMarginRight", + "UnitsTextMarginTop": "UnitsTextMarginTop", + "UseInterpolation": "UseInterpolation", + "ValueFormatAbbreviation": "ValueFormatAbbreviation", + "ValueFormatCulture": "ValueFormatCulture", + "ValueFormatMaxFractions": "ValueFormatMaxFractions", + "ValueFormatMinFractions": "ValueFormatMinFractions", + "ValueFormatMode": "ValueFormatMode", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "ValueFormatString": "ValueFormatString", + "ValueFormatUseGrouping": "ValueFormatUseGrouping", + "ValueRowMarginBottom": "ValueRowMarginBottom", + "ValueRowMarginLeft": "ValueRowMarginLeft", + "ValueRowMarginRight": "ValueRowMarginRight", + "ValueRowMarginTop": "ValueRowMarginTop", + "ValueRowVisible": "ValueRowVisible", + "ValueTextColor": "ValueTextColor", + "ValueTextFontFamily": "ValueTextFontFamily", + "ValueTextFontSize": "ValueTextFontSize", + "ValueTextFontStyle": "ValueTextFontStyle", + "ValueTextFontWeight": "ValueTextFontWeight", + "ValueTextMarginBottom": "ValueTextMarginBottom", + "ValueTextMarginLeft": "ValueTextMarginLeft", + "ValueTextMarginRight": "ValueTextMarginRight", + "ValueTextMarginTop": "ValueTextMarginTop", + "ValueTextUseSeriesColors": "ValueTextUseSeriesColors", + "ValueTextWhenMissingData": "ValueTextWhenMissingData" + } + } + ], + "DataToolTipLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataToolTipLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DataToolTipLayerDescriptionMetadata()": "DataToolTipLayerDescriptionMetadata()", + "DataToolTipLayerDescriptionMetadata": "DataToolTipLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataToolTipLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DataToolTipLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DataToolTipLayerDescriptionModule()": "DataToolTipLayerDescriptionModule()", + "DataToolTipLayerDescriptionModule": "DataToolTipLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DataToolTipLayerGroupingMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DataToolTipLayerGroupingMode", + "k": "enum", + "s": "enums" + } + ], + "DataToolTipLayerPosition": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/DataToolTipLayerPosition", + "k": "enum", + "s": "enums" + } + ], + "DatePartDeltasDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DatePartDeltasDescription", + "k": "class", + "s": "classes", + "m": { + "DatePartDeltasDescription()": "DatePartDeltasDescription()", + "DatePartDeltasDescription": "DatePartDeltasDescription()", + "Date": "Date", + "Hours": "Hours", + "Minutes": "Minutes", + "Month": "Month", + "Seconds": "Seconds", + "Type": "Type", + "Year": "Year" + } + } + ], + "DatePartDeltasDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DatePartDeltasDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DatePartDeltasDescriptionMetadata()": "DatePartDeltasDescriptionMetadata()", + "DatePartDeltasDescriptionMetadata": "DatePartDeltasDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DatePickerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DatePickerDescription", + "k": "class", + "s": "classes", + "m": { + "DatePickerDescription()": "DatePickerDescription()", + "DatePickerDescription": "DatePickerDescription()", + "AllowTextInput": "AllowTextInput", + "BaseTheme": "BaseTheme", + "ChangingRef": "ChangingRef", + "DateFormat": "DateFormat", + "Density": "Density", + "FirstDayOfWeek": "FirstDayOfWeek", + "FirstWeekOfYear": "FirstWeekOfYear", + "FormatString": "FormatString", + "GotFocusRef": "GotFocusRef", + "IconColor": "IconColor", + "IsDisabled": "IsDisabled", + "IsFixed": "IsFixed", + "KeyDownRef": "KeyDownRef", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelTextColor": "LabelTextColor", + "LostFocusRef": "LostFocusRef", + "MaxDate": "MaxDate", + "MinDate": "MinDate", + "OpenAsChild": "OpenAsChild", + "OpenOnFocus": "OpenOnFocus", + "Placeholder": "Placeholder", + "SelectedValueChangedRef": "SelectedValueChangedRef", + "ShowClearButton": "ShowClearButton", + "ShowTodayButton": "ShowTodayButton", + "ShowWeekNumbers": "ShowWeekNumbers", + "TextColor": "TextColor", + "TextFontFamily": "TextFontFamily", + "TextFontSize": "TextFontSize", + "TextFontStyle": "TextFontStyle", + "TextFontWeight": "TextFontWeight", + "Today": "Today", + "Type": "Type", + "UseTopLayer": "UseTopLayer", + "Value": "Value", + "ValueChangeRef": "ValueChangeRef" + } + } + ], + "DatePickerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DatePickerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DatePickerDescriptionMetadata()": "DatePickerDescriptionMetadata()", + "DatePickerDescriptionMetadata": "DatePickerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DatePickerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DatePickerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DatePickerDescriptionModule()": "DatePickerDescriptionModule()", + "DatePickerDescriptionModule": "DatePickerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateRangeDescriptorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateRangeDescriptorDescription", + "k": "class", + "s": "classes", + "m": { + "DateRangeDescriptorDescription()": "DateRangeDescriptorDescription()", + "DateRangeDescriptorDescription": "DateRangeDescriptorDescription()", + "DateRange": "DateRange", + "RangeType": "RangeType", + "Type": "Type" + } + } + ], + "DateRangeDescriptorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateRangeDescriptorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DateRangeDescriptorDescriptionMetadata()": "DateRangeDescriptorDescriptionMetadata()", + "DateRangeDescriptorDescriptionMetadata": "DateRangeDescriptorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DateTimeCellInfo", + "k": "class", + "s": "classes", + "m": { + "DateTimeCellInfo()": "DateTimeCellInfo()", + "DateTimeCellInfo": "DateTimeCellInfo()", + "DateTimeFormat": "DateTimeFormat", + "DateTimeFormatPropertyName": "DateTimeFormatPropertyName", + "DateTimeValue": "DateTimeValue", + "DateTimeValuePropertyName": "DateTimeValuePropertyName", + "FormatSpecifiers": "FormatSpecifiers", + "FormatSpecifiersPropertyName": "FormatSpecifiersPropertyName", + "FormatStringOverride": "FormatStringOverride", + "FormatStringOverridePropertyName": "FormatStringOverridePropertyName", + "IsOffsetValue": "IsOffsetValue", + "IsOffsetValuePropertyName": "IsOffsetValuePropertyName" + } + } + ], + "DateTimeCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DateTimeCellInfoDescription()": "DateTimeCellInfoDescription()", + "DateTimeCellInfoDescription": "DateTimeCellInfoDescription()", + "DateTimeFormat": "DateTimeFormat", + "DateTimeValue": "DateTimeValue", + "FormatOverrideRef": "FormatOverrideRef", + "FormatSpecifiers": "FormatSpecifiers", + "FormatStringOverride": "FormatStringOverride", + "IsOffsetValue": "IsOffsetValue", + "Type": "Type" + } + } + ], + "DateTimeCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DateTimeCellInfoDescriptionMetadata()": "DateTimeCellInfoDescriptionMetadata()", + "DateTimeCellInfoDescriptionMetadata": "DateTimeCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DateTimeCellModelExport", + "k": "class", + "s": "classes", + "m": { + "DateTimeCellModelExport()": "DateTimeCellModelExport()", + "DateTimeCellModelExport": "DateTimeCellModelExport()", + "DateTimeFormat": "DateTimeFormat", + "DateTimeValue": "DateTimeValue", + "IsOffsetValue": "IsOffsetValue", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "DateTimeColumn": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DateTimeColumn", + "k": "class", + "s": "classes", + "m": { + "DateTimeColumn()": "DateTimeColumn()", + "DateTimeColumn": "DateTimeColumn()", + "DateTimeFormat": "DateTimeFormat", + "DateTimeFormatProperty": "DateTimeFormatProperty", + "EditorFormatString": "EditorFormatString", + "EditorFormatStringProperty": "EditorFormatStringProperty", + "EditorItemsSource": "EditorItemsSource", + "EditorItemsSourceProperty": "EditorItemsSourceProperty", + "EditorTextField": "EditorTextField", + "EditorTextFieldProperty": "EditorTextFieldProperty", + "EditorType": "EditorType", + "EditorTypeProperty": "EditorTypeProperty", + "EditorValueField": "EditorValueField", + "EditorValueFieldProperty": "EditorValueFieldProperty", + "FormatSpecifiers": "FormatSpecifiers", + "FormatSpecifiersProperty": "FormatSpecifiersProperty", + "FormatString": "FormatString", + "FormatStringProperty": "FormatStringProperty", + "ShowTodayButton": "ShowTodayButton", + "ShowTodayButtonProperty": "ShowTodayButtonProperty" + } + } + ], + "DateTimeColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeColumnDescription", + "k": "class", + "s": "classes", + "m": { + "DateTimeColumnDescription()": "DateTimeColumnDescription()", + "DateTimeColumnDescription": "DateTimeColumnDescription()", + "DataSource": "DataSource", + "DateTimeFormat": "DateTimeFormat", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorFormatString": "EditorFormatString", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "FormatOverrideRef": "FormatOverrideRef", + "FormatSpecifiers": "FormatSpecifiers", + "FormatString": "FormatString", + "GenericDataSource": "GenericDataSource", + "ShowTodayButton": "ShowTodayButton", + "Type": "Type" + } + } + ], + "DateTimeColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DateTimeColumnDescriptionMetadata()": "DateTimeColumnDescriptionMetadata()", + "DateTimeColumnDescriptionMetadata": "DateTimeColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeColumnDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DateTimeColumnDescriptionModule()": "DateTimeColumnDescriptionModule()", + "DateTimeColumnDescriptionModule": "DateTimeColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeFormats": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/DateTimeFormats", + "k": "enum", + "s": "enums" + } + ], + "DateTimeFormatSpecifier": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeFormatSpecifier", + "k": "class", + "s": "classes", + "m": { + "DateTimeFormatSpecifier()": "DateTimeFormatSpecifier()", + "DateTimeFormatSpecifier": "DateTimeFormatSpecifier()", + "DateStyle": "DateStyle", + "Locale": "Locale", + "TimeStyle": "TimeStyle" + } + } + ], + "DateTimeFormatSpecifierDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeFormatSpecifierDescription", + "k": "class", + "s": "classes", + "m": { + "DateTimeFormatSpecifierDescription()": "DateTimeFormatSpecifierDescription()", + "DateTimeFormatSpecifierDescription": "DateTimeFormatSpecifierDescription()", + "Calendar": "Calendar", + "DateStyle": "DateStyle", + "Day": "Day", + "DayPeriod": "DayPeriod", + "Era": "Era", + "FormatMatcher": "FormatMatcher", + "FractionalSecondDigits": "FractionalSecondDigits", + "Hour": "Hour", + "Hour12": "Hour12", + "HourCycle": "HourCycle", + "Locale": "Locale", + "LocaleMatcher": "LocaleMatcher", + "Minute": "Minute", + "Month": "Month", + "NumberingSystem": "NumberingSystem", + "Second": "Second", + "TimeStyle": "TimeStyle", + "TimeZone": "TimeZone", + "TimeZoneName": "TimeZoneName", + "Type": "Type", + "WeekDay": "WeekDay", + "Year": "Year" + } + } + ], + "DateTimeFormatSpecifierDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeFormatSpecifierDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DateTimeFormatSpecifierDescriptionMetadata()": "DateTimeFormatSpecifierDescriptionMetadata()", + "DateTimeFormatSpecifierDescriptionMetadata": "DateTimeFormatSpecifierDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeFormatSpecifierDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DateTimeFormatSpecifierDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DateTimeFormatSpecifierDescriptionModule()": "DateTimeFormatSpecifierDescriptionModule()", + "DateTimeFormatSpecifierDescriptionModule": "DateTimeFormatSpecifierDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DateTimeRange": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DateTimeRange", + "k": "class", + "s": "classes", + "m": { + "DateTimeRange(DateTime, DateTime)": "DateTimeRange(DateTime, DateTime)", + "DateTimeRange": "DateTimeRange(DateTime, DateTime)", + "Contains(DateTime)": "Contains(DateTime)", + "Contains": "Contains(DateTime)", + "End": "End", + "IntersectsWith(DateTimeRange, bool)": "IntersectsWith(DateTimeRange, bool)", + "IntersectsWith": "IntersectsWith(DateTimeRange, bool)", + "IntersectsWith(DateTime, DateTime, bool)": "IntersectsWith(DateTime, DateTime, bool)", + "Start": "Start", + "ToString()": "ToString()", + "ToString": "ToString()" + } + } + ], + "DecimalConstantAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DecimalConstantAttribute", + "k": "class", + "s": "classes", + "m": { + "DecimalConstantAttribute(byte, byte, int, int, int)": "DecimalConstantAttribute(byte, byte, int, int, int)", + "DecimalConstantAttribute": "DecimalConstantAttribute(byte, byte, int, int, int)", + "DecimalConstantAttribute(byte, byte, uint, uint, uint)": "DecimalConstantAttribute(byte, byte, uint, uint, uint)", + "Value": "Value" + } + } + ], + "DefaultDataSourceSchema": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DefaultDataSourceSchema", + "k": "class", + "s": "classes", + "m": { + "DefaultDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[], string[][], IDataSourceSchema[])": "DefaultDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[], string[][], IDataSourceSchema[])", + "DefaultDataSourceSchema": "DefaultDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[], string[][], IDataSourceSchema[])", + "PrimaryKey": "PrimaryKey", + "PropertyDataIntents": "PropertyDataIntents", + "PropertyNames": "PropertyNames", + "PropertyTypes": "PropertyTypes", + "SubSchemas": "SubSchemas" + } + } + ], + "DefaultODataLiteralEmitter": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DefaultODataLiteralEmitter", + "k": "class", + "s": "classes", + "m": { + "DefaultODataLiteralEmitter()": "DefaultODataLiteralEmitter()", + "DefaultODataLiteralEmitter": "DefaultODataLiteralEmitter()", + "EmitLiteral(object, bool)": "EmitLiteral(object, bool)", + "EmitLiteral": "EmitLiteral(object, bool)" + } + } + ], + "DefaultOverloadOnNullCollisionAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DefaultOverloadOnNullCollisionAttribute", + "k": "class", + "s": "classes", + "m": { + "DefaultOverloadOnNullCollisionAttribute()": "DefaultOverloadOnNullCollisionAttribute()", + "DefaultOverloadOnNullCollisionAttribute": "DefaultOverloadOnNullCollisionAttribute()" + } + } + ], + "DefaultSectionInformation": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DefaultSectionInformation", + "k": "class", + "s": "classes", + "m": { + "DefaultSectionInformation(int, int, string[], object[], ISummaryResult[])": "DefaultSectionInformation(int, int, string[], object[], ISummaryResult[])", + "DefaultSectionInformation": "DefaultSectionInformation(int, int, string[], object[], ISummaryResult[])", + "EndIndex": "EndIndex", + "GroupKeyProperties": "GroupKeyProperties", + "GroupKeyValues": "GroupKeyValues", + "StartIndex": "StartIndex", + "SummaryResults": "SummaryResults" + } + } + ], + "DefaultSummaryResult": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DefaultSummaryResult", + "k": "class", + "s": "classes", + "m": { + "DefaultSummaryResult(string, DataSourceSummaryOperand, object)": "DefaultSummaryResult(string, DataSourceSummaryOperand, object)", + "DefaultSummaryResult": "DefaultSummaryResult(string, DataSourceSummaryOperand, object)", + "CreateWithDisplay(string, DataSourceSummaryOperand, object, bool)": "CreateWithDisplay(string, DataSourceSummaryOperand, object, bool)", + "CreateWithDisplay": "CreateWithDisplay(string, DataSourceSummaryOperand, object, bool)", + "GroupKey": "GroupKey", + "Operand": "Operand", + "PropertyName": "PropertyName", + "ShouldDisplay": "ShouldDisplay", + "SummaryIndex": "SummaryIndex", + "Value": "Value" + } + } + ], + "DefinitionBase": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/DefinitionBase", + "k": "class", + "s": "classes", + "m": { + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderBottomWidthProperty": "ActivationBorderBottomWidthProperty", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderLeftWidthProperty": "ActivationBorderLeftWidthProperty", + "ActivationBorderProperty": "ActivationBorderProperty", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderRightWidthProperty": "ActivationBorderRightWidthProperty", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationBorderTopWidthProperty": "ActivationBorderTopWidthProperty", + "ActualActivationBorder": "ActualActivationBorder", + "ActualActivationBorderProperty": "ActualActivationBorderProperty", + "ActualBackground": "ActualBackground", + "ActualBackgroundProperty": "ActualBackgroundProperty", + "ActualBarBackground": "ActualBarBackground", + "ActualBarBackgroundProperty": "ActualBarBackgroundProperty", + "ActualBarCornerRadius": "ActualBarCornerRadius", + "ActualBarCornerRadiusProperty": "ActualBarCornerRadiusProperty", + "ActualBarOutline": "ActualBarOutline", + "ActualBarOutlineProperty": "ActualBarOutlineProperty", + "ActualBarStrokeThickness": "ActualBarStrokeThickness", + "ActualBarStrokeThicknessProperty": "ActualBarStrokeThicknessProperty", + "ActualBorder": "ActualBorder", + "ActualBorderProperty": "ActualBorderProperty", + "ActualErrorBorder": "ActualErrorBorder", + "ActualErrorBorderProperty": "ActualErrorBorderProperty", + "ActualHorizontalAlignment": "ActualHorizontalAlignment", + "ActualHorizontalAlignmentProperty": "ActualHorizontalAlignmentProperty", + "ActualLastStickyRowBackground": "ActualLastStickyRowBackground", + "ActualLastStickyRowBackgroundProperty": "ActualLastStickyRowBackgroundProperty", + "ActualLineBreakMode": "ActualLineBreakMode", + "ActualLineBreakModeProperty": "ActualLineBreakModeProperty", + "ActualPinnedRowBackground": "ActualPinnedRowBackground", + "ActualPinnedRowBackgroundProperty": "ActualPinnedRowBackgroundProperty", + "ActualPinnedRowOpacity": "ActualPinnedRowOpacity", + "ActualPinnedRowOpacityProperty": "ActualPinnedRowOpacityProperty", + "ActualStickyRowBackground": "ActualStickyRowBackground", + "ActualStickyRowBackgroundProperty": "ActualStickyRowBackgroundProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualVerticalAlignment": "ActualVerticalAlignment", + "ActualVerticalAlignmentProperty": "ActualVerticalAlignmentProperty", + "Background": "Background", + "BackgroundProperty": "BackgroundProperty", + "BarBackground": "BarBackground", + "BarBackgroundProperty": "BarBackgroundProperty", + "BarCornerRadius": "BarCornerRadius", + "BarCornerRadiusProperty": "BarCornerRadiusProperty", + "BarOutline": "BarOutline", + "BarOutlineProperty": "BarOutlineProperty", + "BarStrokeThickness": "BarStrokeThickness", + "BarStrokeThicknessProperty": "BarStrokeThicknessProperty", + "Border": "Border", + "BorderBottomWidth": "BorderBottomWidth", + "BorderBottomWidthProperty": "BorderBottomWidthProperty", + "BorderLeftWidth": "BorderLeftWidth", + "BorderLeftWidthProperty": "BorderLeftWidthProperty", + "BorderProperty": "BorderProperty", + "BorderRightWidth": "BorderRightWidth", + "BorderRightWidthProperty": "BorderRightWidthProperty", + "BorderTopWidth": "BorderTopWidth", + "BorderTopWidthProperty": "BorderTopWidthProperty", + "ConditionalStyles": "ConditionalStyles", + "ContentOpacity": "ContentOpacity", + "ContentOpacityProperty": "ContentOpacityProperty", + "ErrorBorder": "ErrorBorder", + "ErrorBorderBottomWidth": "ErrorBorderBottomWidth", + "ErrorBorderBottomWidthProperty": "ErrorBorderBottomWidthProperty", + "ErrorBorderLeftWidth": "ErrorBorderLeftWidth", + "ErrorBorderLeftWidthProperty": "ErrorBorderLeftWidthProperty", + "ErrorBorderProperty": "ErrorBorderProperty", + "ErrorBorderRightWidth": "ErrorBorderRightWidth", + "ErrorBorderRightWidthProperty": "ErrorBorderRightWidthProperty", + "ErrorBorderTopWidth": "ErrorBorderTopWidth", + "ErrorBorderTopWidthProperty": "ErrorBorderTopWidthProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetNamedValue(string)": "GetNamedValue(string)", + "GetNamedValue": "GetNamedValue(string)", + "HasNamedValue(string)": "HasNamedValue(string)", + "HasNamedValue": "HasNamedValue(string)", + "HasNamedValues()": "HasNamedValues()", + "HasNamedValues": "HasNamedValues()", + "HorizontalAlignment": "HorizontalAlignment", + "HorizontalAlignmentProperty": "HorizontalAlignmentProperty", + "IsBarRequired": "IsBarRequired", + "IsBarRequiredProperty": "IsBarRequiredProperty", + "IsBarSupported": "IsBarSupported", + "IsBarSupportedProperty": "IsBarSupportedProperty", + "IsStyleTransitioningOut(GridConditionalStyle)": "IsStyleTransitioningOut(GridConditionalStyle)", + "IsStyleTransitioningOut": "IsStyleTransitioningOut(GridConditionalStyle)", + "LastStickyRowBackground": "LastStickyRowBackground", + "LastStickyRowBackgroundProperty": "LastStickyRowBackgroundProperty", + "LineBreakMode": "LineBreakMode", + "LineBreakModeProperty": "LineBreakModeProperty", + "OnCellStyleKeyRequested(CellStyleRequestedEventArgs)": "OnCellStyleKeyRequested(CellStyleRequestedEventArgs)", + "OnCellStyleKeyRequested": "OnCellStyleKeyRequested(CellStyleRequestedEventArgs)", + "OnDataBinding(DataBindingEventArgs)": "OnDataBinding(DataBindingEventArgs)", + "OnDataBinding": "OnDataBinding(DataBindingEventArgs)", + "OnDataBound(DataBindingEventArgs)": "OnDataBound(DataBindingEventArgs)", + "OnDataBound": "OnDataBound(DataBindingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowBackgroundProperty": "PinnedRowBackgroundProperty", + "PinnedRowOpacity": "PinnedRowOpacity", + "PinnedRowOpacityProperty": "PinnedRowOpacityProperty", + "RemoveNamedValue(string)": "RemoveNamedValue(string)", + "RemoveNamedValue": "RemoveNamedValue(string)", + "SetNamedValue(string, CellPropertyAnimationType, object)": "SetNamedValue(string, CellPropertyAnimationType, object)", + "SetNamedValue": "SetNamedValue(string, CellPropertyAnimationType, object)", + "StickyRowBackground": "StickyRowBackground", + "StickyRowBackgroundProperty": "StickyRowBackgroundProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TransitionStyleIn(GridConditionalStyle)": "TransitionStyleIn(GridConditionalStyle)", + "TransitionStyleIn": "TransitionStyleIn(GridConditionalStyle)", + "TransitionStyleOut(GridConditionalStyle)": "TransitionStyleOut(GridConditionalStyle)", + "TransitionStyleOut": "TransitionStyleOut(GridConditionalStyle)", + "VerticalAlignment": "VerticalAlignment", + "VerticalAlignmentProperty": "VerticalAlignmentProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DefinitionBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DefinitionBaseDescription", + "k": "class", + "s": "classes", + "m": { + "DefinitionBaseDescription()": "DefinitionBaseDescription()", + "DefinitionBaseDescription": "DefinitionBaseDescription()", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActualActivationBorder": "ActualActivationBorder", + "ActualBackground": "ActualBackground", + "ActualBarBackground": "ActualBarBackground", + "ActualBarCornerRadius": "ActualBarCornerRadius", + "ActualBarOutline": "ActualBarOutline", + "ActualBarStrokeThickness": "ActualBarStrokeThickness", + "ActualBorder": "ActualBorder", + "ActualErrorBorder": "ActualErrorBorder", + "ActualLastStickyRowBackground": "ActualLastStickyRowBackground", + "ActualLineBreakMode": "ActualLineBreakMode", + "ActualPinnedRowBackground": "ActualPinnedRowBackground", + "ActualPinnedRowOpacity": "ActualPinnedRowOpacity", + "ActualStickyRowBackground": "ActualStickyRowBackground", + "ActualTextColor": "ActualTextColor", + "Background": "Background", + "BarBackground": "BarBackground", + "BarCornerRadius": "BarCornerRadius", + "BarOutline": "BarOutline", + "BarStrokeThickness": "BarStrokeThickness", + "Border": "Border", + "BorderBottomWidth": "BorderBottomWidth", + "BorderLeftWidth": "BorderLeftWidth", + "BorderRightWidth": "BorderRightWidth", + "BorderTopWidth": "BorderTopWidth", + "CellStyleKeyRequestedRef": "CellStyleKeyRequestedRef", + "ConditionalStyles": "ConditionalStyles", + "ContentOpacity": "ContentOpacity", + "DataBindingRef": "DataBindingRef", + "DataBoundRef": "DataBoundRef", + "ErrorBorder": "ErrorBorder", + "ErrorBorderBottomWidth": "ErrorBorderBottomWidth", + "ErrorBorderLeftWidth": "ErrorBorderLeftWidth", + "ErrorBorderRightWidth": "ErrorBorderRightWidth", + "ErrorBorderTopWidth": "ErrorBorderTopWidth", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HorizontalAlignment": "HorizontalAlignment", + "IsBarSupported": "IsBarSupported", + "LastStickyRowBackground": "LastStickyRowBackground", + "LineBreakMode": "LineBreakMode", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowOpacity": "PinnedRowOpacity", + "StickyRowBackground": "StickyRowBackground", + "TextColor": "TextColor", + "Type": "Type", + "VerticalAlignment": "VerticalAlignment" + } + } + ], + "DefinitionBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DefinitionBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DefinitionBaseDescriptionMetadata()": "DefinitionBaseDescriptionMetadata()", + "DefinitionBaseDescriptionMetadata": "DefinitionBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DelayManager": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DelayManager", + "k": "class", + "s": "classes", + "m": { + "DelayManager(IExecutionContext)": "DelayManager(IExecutionContext)", + "DelayManager": "DelayManager(IExecutionContext)", + "Cancel(int)": "Cancel(int)", + "Cancel": "Cancel(int)", + "Start(ExecutionContextExecuteCallback, int)": "Start(ExecutionContextExecuteCallback, int)", + "Start": "Start(ExecutionContextExecuteCallback, int)" + } + } + ], + "Description": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Description", + "k": "class", + "s": "classes", + "m": { + "Description()": "Description()", + "Description": "Description()", + "ClearIsDescriptionModified()": "ClearIsDescriptionModified()", + "ClearIsDescriptionModified": "ClearIsDescriptionModified()", + "IsDescriptionModified()": "IsDescriptionModified()", + "IsDescriptionModified": "IsDescriptionModified()", + "IsDirty(string)": "IsDirty(string)", + "IsDirty": "IsDirty(string)", + "MarkDirty(string)": "MarkDirty(string)", + "MarkDirty": "MarkDirty(string)", + "Name": "Name" + } + } + ], + "DescriptionJsonValidator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionJsonValidator", + "k": "class", + "s": "classes", + "m": { + "DescriptionJsonValidator()": "DescriptionJsonValidator()", + "DescriptionJsonValidator": "DescriptionJsonValidator()", + "FromJson(string)": "FromJson(string)", + "FromJson": "FromJson(string)", + "GetContainingModules(string)": "GetContainingModules(string)", + "GetContainingModules": "GetContainingModules(string)", + "ToJson()": "ToJson()", + "ToJson": "ToJson()", + "Validate(string)": "Validate(string)", + "Validate": "Validate(string)" + } + } + ], + "DescriptionPath": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionPath", + "k": "class", + "s": "classes", + "m": { + "DescriptionPath()": "DescriptionPath()", + "DescriptionPath": "DescriptionPath()", + "Operator": "Operator", + "RootSegments": "RootSegments" + } + } + ], + "DescriptionPathEvaluator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionPathEvaluator", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathEvaluator()": "DescriptionPathEvaluator()", + "DescriptionPathEvaluator": "DescriptionPathEvaluator()", + "Evaluate(TypeDescriptionContext, Description, DescriptionPath)": "Evaluate(TypeDescriptionContext, Description, DescriptionPath)", + "Evaluate": "Evaluate(TypeDescriptionContext, Description, DescriptionPath)" + } + } + ], + "DescriptionPathEvaluatorResult": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionPathEvaluatorResult", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathEvaluatorResult()": "DescriptionPathEvaluatorResult()", + "DescriptionPathEvaluatorResult": "DescriptionPathEvaluatorResult()", + "Result": "Result" + } + } + ], + "DescriptionPathIndexer": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionPathIndexer", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathIndexer()": "DescriptionPathIndexer()", + "DescriptionPathIndexer": "DescriptionPathIndexer()", + "DescriptionType": "DescriptionType", + "Index": "Index", + "IsAny": "IsAny" + } + } + ], + "DescriptionPathOperatorType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/DescriptionPathOperatorType", + "k": "enum", + "s": "enums" + } + ], + "DescriptionPathParser": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionPathParser", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathParser()": "DescriptionPathParser()", + "DescriptionPathParser": "DescriptionPathParser()", + "Parse(string)": "Parse(string)", + "Parse": "Parse(string)" + } + } + ], + "DescriptionPathSegment": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionPathSegment", + "k": "class", + "s": "classes", + "m": { + "DescriptionPathSegment()": "DescriptionPathSegment()", + "DescriptionPathSegment": "DescriptionPathSegment()", + "ElementName": "ElementName", + "Indexers": "Indexers" + } + } + ], + "DescriptionRefTargetInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionRefTargetInfo", + "k": "class", + "s": "classes", + "m": { + "DescriptionRefTargetInfo()": "DescriptionRefTargetInfo()", + "DescriptionRefTargetInfo": "DescriptionRefTargetInfo()", + "Container": "Container", + "PropertyName": "PropertyName", + "Target": "Target" + } + } + ], + "DescriptionResult": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionResult", + "k": "class", + "s": "classes", + "m": { + "DescriptionResult()": "DescriptionResult()", + "DescriptionResult": "DescriptionResult()", + "Result": "Result", + "Warnings": "Warnings" + } + } + ], + "DescriptionSerializer": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionSerializer", + "k": "class", + "s": "classes", + "m": { + "DescriptionSerializer()": "DescriptionSerializer()", + "DescriptionSerializer": "DescriptionSerializer()", + "Deserialize(TypeDescriptionContext, string)": "Deserialize(TypeDescriptionContext, string)", + "Deserialize": "Deserialize(TypeDescriptionContext, string)", + "IsModified(TypeDescriptionContext, Description, bool)": "IsModified(TypeDescriptionContext, Description, bool)", + "IsModified": "IsModified(TypeDescriptionContext, Description, bool)", + "Serialize(TypeDescriptionContext, Description)": "Serialize(TypeDescriptionContext, Description)", + "Serialize": "Serialize(TypeDescriptionContext, Description)", + "ThrowOnMissingDescription": "ThrowOnMissingDescription" + } + } + ], + "DescriptionSerializerBuilder": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DescriptionSerializerBuilder", + "k": "class", + "s": "classes", + "m": { + "DescriptionSerializerBuilder()": "DescriptionSerializerBuilder()", + "DescriptionSerializerBuilder": "DescriptionSerializerBuilder()", + "Append(string)": "Append(string)", + "Append": "Append(string)", + "AppendLine(string)": "AppendLine(string)", + "AppendLine": "AppendLine(string)", + "DecreaseTabLevel()": "DecreaseTabLevel()", + "DecreaseTabLevel": "DecreaseTabLevel()", + "IncreaseTabLevel()": "IncreaseTabLevel()", + "IncreaseTabLevel": "IncreaseTabLevel()", + "ToString()": "ToString()", + "ToString": "ToString()" + } + } + ], + "DetrendedPriceOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DetrendedPriceOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "DetrendedPriceOscillatorIndicator()": "DetrendedPriceOscillatorIndicator()", + "DetrendedPriceOscillatorIndicator": "DetrendedPriceOscillatorIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "DetrendedPriceOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DetrendedPriceOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "DetrendedPriceOscillatorIndicatorDescription()": "DetrendedPriceOscillatorIndicatorDescription()", + "DetrendedPriceOscillatorIndicatorDescription": "DetrendedPriceOscillatorIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "DetrendedPriceOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DetrendedPriceOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DetrendedPriceOscillatorIndicatorDescriptionMetadata()": "DetrendedPriceOscillatorIndicatorDescriptionMetadata()", + "DetrendedPriceOscillatorIndicatorDescriptionMetadata": "DetrendedPriceOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DetrendedPriceOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DetrendedPriceOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DetrendedPriceOscillatorIndicatorDescriptionModule()": "DetrendedPriceOscillatorIndicatorDescriptionModule()", + "DetrendedPriceOscillatorIndicatorDescriptionModule": "DetrendedPriceOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DeviceInfo": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DeviceInfo", + "k": "class", + "s": "classes", + "m": { + "DeviceInfo()": "DeviceInfo()", + "DeviceInfo": "DeviceInfo()", + "PlatformType": "PlatformType" + } + } + ], + "DispatcherUtil": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DispatcherUtil", + "k": "class", + "s": "classes", + "m": { + "QueueSingleInvoke(Action)": "QueueSingleInvoke(Action)", + "QueueSingleInvoke": "QueueSingleInvoke(Action)" + } + } + ], + "DomainChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DomainChart", + "k": "class", + "s": "classes", + "m": { + "ActualBrushes": "ActualBrushes", + "ActualBrushesProperty": "ActualBrushesProperty", + "ActualHighlightedItemsSource": "ActualHighlightedItemsSource", + "ActualHighlightedItemsSourceProperty": "ActualHighlightedItemsSourceProperty", + "ActualItemsSource": "ActualItemsSource", + "ActualItemsSourceProperty": "ActualItemsSourceProperty", + "ActualOutlines": "ActualOutlines", + "ActualOutlinesProperty": "ActualOutlinesProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AlignsGridLinesToPixels": "AlignsGridLinesToPixels", + "AlignsGridLinesToPixelsProperty": "AlignsGridLinesToPixelsProperty", + "AnimateSeriesWhenAxisRangeChanges": "AnimateSeriesWhenAxisRangeChanges", + "AnimateSeriesWhenAxisRangeChangesProperty": "AnimateSeriesWhenAxisRangeChangesProperty", + "AreaFillOpacity": "AreaFillOpacity", + "AreaFillOpacityProperty": "AreaFillOpacityProperty", + "AutoCalloutsVisible": "AutoCalloutsVisible", + "AutoCalloutsVisibleProperty": "AutoCalloutsVisibleProperty", + "BottomMargin": "BottomMargin", + "BottomMarginProperty": "BottomMarginProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "CalloutCollisionMode": "CalloutCollisionMode", + "CalloutCollisionModeProperty": "CalloutCollisionModeProperty", + "CalloutStyleUpdatingEventEnabled": "CalloutStyleUpdatingEventEnabled", + "CalloutStyleUpdatingEventEnabledProperty": "CalloutStyleUpdatingEventEnabledProperty", + "CalloutsAllowedPositions": "CalloutsAllowedPositions", + "CalloutsAllowedPositionsProperty": "CalloutsAllowedPositionsProperty", + "CalloutsAutoLabelPrecision": "CalloutsAutoLabelPrecision", + "CalloutsAutoLabelPrecisionProperty": "CalloutsAutoLabelPrecisionProperty", + "CalloutsBackground": "CalloutsBackground", + "CalloutsBackgroundProperty": "CalloutsBackgroundProperty", + "CalloutsContentMemberPath": "CalloutsContentMemberPath", + "CalloutsContentMemberPathProperty": "CalloutsContentMemberPathProperty", + "CalloutsDarkTextColor": "CalloutsDarkTextColor", + "CalloutsDarkTextColorProperty": "CalloutsDarkTextColorProperty", + "CalloutsFontFamily": "CalloutsFontFamily", + "CalloutsFontFamilyProperty": "CalloutsFontFamilyProperty", + "CalloutsFontSize": "CalloutsFontSize", + "CalloutsFontSizeProperty": "CalloutsFontSizeProperty", + "CalloutsFontStyle": "CalloutsFontStyle", + "CalloutsFontStyleProperty": "CalloutsFontStyleProperty", + "CalloutsFontWeight": "CalloutsFontWeight", + "CalloutsFontWeightProperty": "CalloutsFontWeightProperty", + "CalloutsItemsSource": "CalloutsItemsSource", + "CalloutsItemsSourceProperty": "CalloutsItemsSourceProperty", + "CalloutsLabelMemberPath": "CalloutsLabelMemberPath", + "CalloutsLabelMemberPathProperty": "CalloutsLabelMemberPathProperty", + "CalloutsLeaderBrush": "CalloutsLeaderBrush", + "CalloutsLeaderBrushProperty": "CalloutsLeaderBrushProperty", + "CalloutsLightTextColor": "CalloutsLightTextColor", + "CalloutsLightTextColorProperty": "CalloutsLightTextColorProperty", + "CalloutsOutline": "CalloutsOutline", + "CalloutsOutlineProperty": "CalloutsOutlineProperty", + "CalloutsStrokeThickness": "CalloutsStrokeThickness", + "CalloutsStrokeThicknessProperty": "CalloutsStrokeThicknessProperty", + "CalloutsTextColor": "CalloutsTextColor", + "CalloutsTextColorProperty": "CalloutsTextColorProperty", + "CalloutsUseAutoContrastingLabelColors": "CalloutsUseAutoContrastingLabelColors", + "CalloutsUseAutoContrastingLabelColorsProperty": "CalloutsUseAutoContrastingLabelColorsProperty", + "CalloutsUseItemColorForFill": "CalloutsUseItemColorForFill", + "CalloutsUseItemColorForFillProperty": "CalloutsUseItemColorForFillProperty", + "CalloutsUseItemColorForOutline": "CalloutsUseItemColorForOutline", + "CalloutsUseItemColorForOutlineProperty": "CalloutsUseItemColorForOutlineProperty", + "CalloutsVisible": "CalloutsVisible", + "CalloutsVisibleProperty": "CalloutsVisibleProperty", + "CalloutsXMemberPath": "CalloutsXMemberPath", + "CalloutsXMemberPathProperty": "CalloutsXMemberPathProperty", + "CalloutsYMemberPath": "CalloutsYMemberPath", + "CalloutsYMemberPathProperty": "CalloutsYMemberPathProperty", + "CancelAnnotationFlow(string)": "CancelAnnotationFlow(string)", + "CancelAnnotationFlow": "CancelAnnotationFlow(string)", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "ComputedPlotAreaMarginMode": "ComputedPlotAreaMarginMode", + "ComputedPlotAreaMarginModeProperty": "ComputedPlotAreaMarginModeProperty", + "CrosshairsAnnotationEnabled": "CrosshairsAnnotationEnabled", + "CrosshairsAnnotationEnabledProperty": "CrosshairsAnnotationEnabledProperty", + "CrosshairsAnnotationXAxisBackground": "CrosshairsAnnotationXAxisBackground", + "CrosshairsAnnotationXAxisBackgroundProperty": "CrosshairsAnnotationXAxisBackgroundProperty", + "CrosshairsAnnotationXAxisPrecision": "CrosshairsAnnotationXAxisPrecision", + "CrosshairsAnnotationXAxisPrecisionProperty": "CrosshairsAnnotationXAxisPrecisionProperty", + "CrosshairsAnnotationXAxisTextColor": "CrosshairsAnnotationXAxisTextColor", + "CrosshairsAnnotationXAxisTextColorProperty": "CrosshairsAnnotationXAxisTextColorProperty", + "CrosshairsAnnotationYAxisBackground": "CrosshairsAnnotationYAxisBackground", + "CrosshairsAnnotationYAxisBackgroundProperty": "CrosshairsAnnotationYAxisBackgroundProperty", + "CrosshairsAnnotationYAxisPrecision": "CrosshairsAnnotationYAxisPrecision", + "CrosshairsAnnotationYAxisPrecisionProperty": "CrosshairsAnnotationYAxisPrecisionProperty", + "CrosshairsAnnotationYAxisTextColor": "CrosshairsAnnotationYAxisTextColor", + "CrosshairsAnnotationYAxisTextColorProperty": "CrosshairsAnnotationYAxisTextColorProperty", + "CrosshairsDisplayMode": "CrosshairsDisplayMode", + "CrosshairsDisplayModeProperty": "CrosshairsDisplayModeProperty", + "CrosshairsLineHorizontalStroke": "CrosshairsLineHorizontalStroke", + "CrosshairsLineHorizontalStrokeProperty": "CrosshairsLineHorizontalStrokeProperty", + "CrosshairsLineThickness": "CrosshairsLineThickness", + "CrosshairsLineThicknessProperty": "CrosshairsLineThicknessProperty", + "CrosshairsLineVerticalStroke": "CrosshairsLineVerticalStroke", + "CrosshairsLineVerticalStrokeProperty": "CrosshairsLineVerticalStrokeProperty", + "CrosshairsSkipInvalidData": "CrosshairsSkipInvalidData", + "CrosshairsSkipInvalidDataProperty": "CrosshairsSkipInvalidDataProperty", + "CrosshairsSkipZeroValueFragments": "CrosshairsSkipZeroValueFragments", + "CrosshairsSkipZeroValueFragmentsProperty": "CrosshairsSkipZeroValueFragmentsProperty", + "CrosshairsSnapToData": "CrosshairsSnapToData", + "CrosshairsSnapToDataProperty": "CrosshairsSnapToDataProperty", + "DataChartProperty": "DataChartProperty", + "DataToolTipBadgeMarginBottom": "DataToolTipBadgeMarginBottom", + "DataToolTipBadgeMarginBottomProperty": "DataToolTipBadgeMarginBottomProperty", + "DataToolTipBadgeMarginLeft": "DataToolTipBadgeMarginLeft", + "DataToolTipBadgeMarginLeftProperty": "DataToolTipBadgeMarginLeftProperty", + "DataToolTipBadgeMarginRight": "DataToolTipBadgeMarginRight", + "DataToolTipBadgeMarginRightProperty": "DataToolTipBadgeMarginRightProperty", + "DataToolTipBadgeMarginTop": "DataToolTipBadgeMarginTop", + "DataToolTipBadgeMarginTopProperty": "DataToolTipBadgeMarginTopProperty", + "DataToolTipBadgeShape": "DataToolTipBadgeShape", + "DataToolTipBadgeShapeProperty": "DataToolTipBadgeShapeProperty", + "DataToolTipDefaultPositionOffsetX": "DataToolTipDefaultPositionOffsetX", + "DataToolTipDefaultPositionOffsetXProperty": "DataToolTipDefaultPositionOffsetXProperty", + "DataToolTipDefaultPositionOffsetY": "DataToolTipDefaultPositionOffsetY", + "DataToolTipDefaultPositionOffsetYProperty": "DataToolTipDefaultPositionOffsetYProperty", + "DataToolTipExcludedColumns": "DataToolTipExcludedColumns", + "DataToolTipExcludedColumnsProperty": "DataToolTipExcludedColumnsProperty", + "DataToolTipExcludedSeries": "DataToolTipExcludedSeries", + "DataToolTipExcludedSeriesProperty": "DataToolTipExcludedSeriesProperty", + "DataToolTipGroupRowMarginBottom": "DataToolTipGroupRowMarginBottom", + "DataToolTipGroupRowMarginBottomProperty": "DataToolTipGroupRowMarginBottomProperty", + "DataToolTipGroupRowMarginLeft": "DataToolTipGroupRowMarginLeft", + "DataToolTipGroupRowMarginLeftProperty": "DataToolTipGroupRowMarginLeftProperty", + "DataToolTipGroupRowMarginRight": "DataToolTipGroupRowMarginRight", + "DataToolTipGroupRowMarginRightProperty": "DataToolTipGroupRowMarginRightProperty", + "DataToolTipGroupRowMarginTop": "DataToolTipGroupRowMarginTop", + "DataToolTipGroupRowMarginTopProperty": "DataToolTipGroupRowMarginTopProperty", + "DataToolTipGroupRowVisible": "DataToolTipGroupRowVisible", + "DataToolTipGroupRowVisibleProperty": "DataToolTipGroupRowVisibleProperty", + "DataToolTipGroupTextColor": "DataToolTipGroupTextColor", + "DataToolTipGroupTextColorProperty": "DataToolTipGroupTextColorProperty", + "DataToolTipGroupTextFontFamily": "DataToolTipGroupTextFontFamily", + "DataToolTipGroupTextFontFamilyProperty": "DataToolTipGroupTextFontFamilyProperty", + "DataToolTipGroupTextFontSize": "DataToolTipGroupTextFontSize", + "DataToolTipGroupTextFontSizeProperty": "DataToolTipGroupTextFontSizeProperty", + "DataToolTipGroupTextFontStyle": "DataToolTipGroupTextFontStyle", + "DataToolTipGroupTextFontStyleProperty": "DataToolTipGroupTextFontStyleProperty", + "DataToolTipGroupTextFontWeight": "DataToolTipGroupTextFontWeight", + "DataToolTipGroupTextFontWeightProperty": "DataToolTipGroupTextFontWeightProperty", + "DataToolTipGroupTextMarginBottom": "DataToolTipGroupTextMarginBottom", + "DataToolTipGroupTextMarginBottomProperty": "DataToolTipGroupTextMarginBottomProperty", + "DataToolTipGroupTextMarginLeft": "DataToolTipGroupTextMarginLeft", + "DataToolTipGroupTextMarginLeftProperty": "DataToolTipGroupTextMarginLeftProperty", + "DataToolTipGroupTextMarginRight": "DataToolTipGroupTextMarginRight", + "DataToolTipGroupTextMarginRightProperty": "DataToolTipGroupTextMarginRightProperty", + "DataToolTipGroupTextMarginTop": "DataToolTipGroupTextMarginTop", + "DataToolTipGroupTextMarginTopProperty": "DataToolTipGroupTextMarginTopProperty", + "DataToolTipGroupedPositionModeX": "DataToolTipGroupedPositionModeX", + "DataToolTipGroupedPositionModeXProperty": "DataToolTipGroupedPositionModeXProperty", + "DataToolTipGroupedPositionModeY": "DataToolTipGroupedPositionModeY", + "DataToolTipGroupedPositionModeYProperty": "DataToolTipGroupedPositionModeYProperty", + "DataToolTipGroupingMode": "DataToolTipGroupingMode", + "DataToolTipGroupingModeProperty": "DataToolTipGroupingModeProperty", + "DataToolTipHeaderFormatCulture": "DataToolTipHeaderFormatCulture", + "DataToolTipHeaderFormatCultureProperty": "DataToolTipHeaderFormatCultureProperty", + "DataToolTipHeaderFormatDate": "DataToolTipHeaderFormatDate", + "DataToolTipHeaderFormatDateProperty": "DataToolTipHeaderFormatDateProperty", + "DataToolTipHeaderFormatSpecifiers": "DataToolTipHeaderFormatSpecifiers", + "DataToolTipHeaderFormatSpecifiersProperty": "DataToolTipHeaderFormatSpecifiersProperty", + "DataToolTipHeaderFormatString": "DataToolTipHeaderFormatString", + "DataToolTipHeaderFormatStringProperty": "DataToolTipHeaderFormatStringProperty", + "DataToolTipHeaderFormatTime": "DataToolTipHeaderFormatTime", + "DataToolTipHeaderFormatTimeProperty": "DataToolTipHeaderFormatTimeProperty", + "DataToolTipHeaderRowMarginBottom": "DataToolTipHeaderRowMarginBottom", + "DataToolTipHeaderRowMarginBottomProperty": "DataToolTipHeaderRowMarginBottomProperty", + "DataToolTipHeaderRowMarginLeft": "DataToolTipHeaderRowMarginLeft", + "DataToolTipHeaderRowMarginLeftProperty": "DataToolTipHeaderRowMarginLeftProperty", + "DataToolTipHeaderRowMarginRight": "DataToolTipHeaderRowMarginRight", + "DataToolTipHeaderRowMarginRightProperty": "DataToolTipHeaderRowMarginRightProperty", + "DataToolTipHeaderRowMarginTop": "DataToolTipHeaderRowMarginTop", + "DataToolTipHeaderRowMarginTopProperty": "DataToolTipHeaderRowMarginTopProperty", + "DataToolTipHeaderRowVisible": "DataToolTipHeaderRowVisible", + "DataToolTipHeaderRowVisibleProperty": "DataToolTipHeaderRowVisibleProperty", + "DataToolTipHeaderText": "DataToolTipHeaderText", + "DataToolTipHeaderTextColor": "DataToolTipHeaderTextColor", + "DataToolTipHeaderTextColorProperty": "DataToolTipHeaderTextColorProperty", + "DataToolTipHeaderTextFontFamily": "DataToolTipHeaderTextFontFamily", + "DataToolTipHeaderTextFontFamilyProperty": "DataToolTipHeaderTextFontFamilyProperty", + "DataToolTipHeaderTextFontSize": "DataToolTipHeaderTextFontSize", + "DataToolTipHeaderTextFontSizeProperty": "DataToolTipHeaderTextFontSizeProperty", + "DataToolTipHeaderTextFontStyle": "DataToolTipHeaderTextFontStyle", + "DataToolTipHeaderTextFontStyleProperty": "DataToolTipHeaderTextFontStyleProperty", + "DataToolTipHeaderTextFontWeight": "DataToolTipHeaderTextFontWeight", + "DataToolTipHeaderTextFontWeightProperty": "DataToolTipHeaderTextFontWeightProperty", + "DataToolTipHeaderTextMarginBottom": "DataToolTipHeaderTextMarginBottom", + "DataToolTipHeaderTextMarginBottomProperty": "DataToolTipHeaderTextMarginBottomProperty", + "DataToolTipHeaderTextMarginLeft": "DataToolTipHeaderTextMarginLeft", + "DataToolTipHeaderTextMarginLeftProperty": "DataToolTipHeaderTextMarginLeftProperty", + "DataToolTipHeaderTextMarginRight": "DataToolTipHeaderTextMarginRight", + "DataToolTipHeaderTextMarginRightProperty": "DataToolTipHeaderTextMarginRightProperty", + "DataToolTipHeaderTextMarginTop": "DataToolTipHeaderTextMarginTop", + "DataToolTipHeaderTextMarginTopProperty": "DataToolTipHeaderTextMarginTopProperty", + "DataToolTipHeaderTextProperty": "DataToolTipHeaderTextProperty", + "DataToolTipIncludedColumns": "DataToolTipIncludedColumns", + "DataToolTipIncludedColumnsProperty": "DataToolTipIncludedColumnsProperty", + "DataToolTipIncludedSeries": "DataToolTipIncludedSeries", + "DataToolTipIncludedSeriesProperty": "DataToolTipIncludedSeriesProperty", + "DataToolTipLabelDisplayMode": "DataToolTipLabelDisplayMode", + "DataToolTipLabelDisplayModeProperty": "DataToolTipLabelDisplayModeProperty", + "DataToolTipLabelTextColor": "DataToolTipLabelTextColor", + "DataToolTipLabelTextColorProperty": "DataToolTipLabelTextColorProperty", + "DataToolTipLabelTextFontFamily": "DataToolTipLabelTextFontFamily", + "DataToolTipLabelTextFontFamilyProperty": "DataToolTipLabelTextFontFamilyProperty", + "DataToolTipLabelTextFontSize": "DataToolTipLabelTextFontSize", + "DataToolTipLabelTextFontSizeProperty": "DataToolTipLabelTextFontSizeProperty", + "DataToolTipLabelTextFontStyle": "DataToolTipLabelTextFontStyle", + "DataToolTipLabelTextFontStyleProperty": "DataToolTipLabelTextFontStyleProperty", + "DataToolTipLabelTextFontWeight": "DataToolTipLabelTextFontWeight", + "DataToolTipLabelTextFontWeightProperty": "DataToolTipLabelTextFontWeightProperty", + "DataToolTipLabelTextMarginBottom": "DataToolTipLabelTextMarginBottom", + "DataToolTipLabelTextMarginBottomProperty": "DataToolTipLabelTextMarginBottomProperty", + "DataToolTipLabelTextMarginLeft": "DataToolTipLabelTextMarginLeft", + "DataToolTipLabelTextMarginLeftProperty": "DataToolTipLabelTextMarginLeftProperty", + "DataToolTipLabelTextMarginRight": "DataToolTipLabelTextMarginRight", + "DataToolTipLabelTextMarginRightProperty": "DataToolTipLabelTextMarginRightProperty", + "DataToolTipLabelTextMarginTop": "DataToolTipLabelTextMarginTop", + "DataToolTipLabelTextMarginTopProperty": "DataToolTipLabelTextMarginTopProperty", + "DataToolTipPositionOffsetX": "DataToolTipPositionOffsetX", + "DataToolTipPositionOffsetXProperty": "DataToolTipPositionOffsetXProperty", + "DataToolTipPositionOffsetY": "DataToolTipPositionOffsetY", + "DataToolTipPositionOffsetYProperty": "DataToolTipPositionOffsetYProperty", + "DataToolTipShouldUpdateWhenSeriesDataChanges": "DataToolTipShouldUpdateWhenSeriesDataChanges", + "DataToolTipShouldUpdateWhenSeriesDataChangesProperty": "DataToolTipShouldUpdateWhenSeriesDataChangesProperty", + "DataToolTipSummaryLabelText": "DataToolTipSummaryLabelText", + "DataToolTipSummaryLabelTextColor": "DataToolTipSummaryLabelTextColor", + "DataToolTipSummaryLabelTextColorProperty": "DataToolTipSummaryLabelTextColorProperty", + "DataToolTipSummaryLabelTextFontFamily": "DataToolTipSummaryLabelTextFontFamily", + "DataToolTipSummaryLabelTextFontFamilyProperty": "DataToolTipSummaryLabelTextFontFamilyProperty", + "DataToolTipSummaryLabelTextFontSize": "DataToolTipSummaryLabelTextFontSize", + "DataToolTipSummaryLabelTextFontSizeProperty": "DataToolTipSummaryLabelTextFontSizeProperty", + "DataToolTipSummaryLabelTextFontStyle": "DataToolTipSummaryLabelTextFontStyle", + "DataToolTipSummaryLabelTextFontStyleProperty": "DataToolTipSummaryLabelTextFontStyleProperty", + "DataToolTipSummaryLabelTextFontWeight": "DataToolTipSummaryLabelTextFontWeight", + "DataToolTipSummaryLabelTextFontWeightProperty": "DataToolTipSummaryLabelTextFontWeightProperty", + "DataToolTipSummaryLabelTextProperty": "DataToolTipSummaryLabelTextProperty", + "DataToolTipSummaryRowMarginBottom": "DataToolTipSummaryRowMarginBottom", + "DataToolTipSummaryRowMarginBottomProperty": "DataToolTipSummaryRowMarginBottomProperty", + "DataToolTipSummaryRowMarginLeft": "DataToolTipSummaryRowMarginLeft", + "DataToolTipSummaryRowMarginLeftProperty": "DataToolTipSummaryRowMarginLeftProperty", + "DataToolTipSummaryRowMarginRight": "DataToolTipSummaryRowMarginRight", + "DataToolTipSummaryRowMarginRightProperty": "DataToolTipSummaryRowMarginRightProperty", + "DataToolTipSummaryRowMarginTop": "DataToolTipSummaryRowMarginTop", + "DataToolTipSummaryRowMarginTopProperty": "DataToolTipSummaryRowMarginTopProperty", + "DataToolTipSummaryTitleText": "DataToolTipSummaryTitleText", + "DataToolTipSummaryTitleTextColor": "DataToolTipSummaryTitleTextColor", + "DataToolTipSummaryTitleTextColorProperty": "DataToolTipSummaryTitleTextColorProperty", + "DataToolTipSummaryTitleTextFontFamily": "DataToolTipSummaryTitleTextFontFamily", + "DataToolTipSummaryTitleTextFontFamilyProperty": "DataToolTipSummaryTitleTextFontFamilyProperty", + "DataToolTipSummaryTitleTextFontSize": "DataToolTipSummaryTitleTextFontSize", + "DataToolTipSummaryTitleTextFontSizeProperty": "DataToolTipSummaryTitleTextFontSizeProperty", + "DataToolTipSummaryTitleTextFontStyle": "DataToolTipSummaryTitleTextFontStyle", + "DataToolTipSummaryTitleTextFontStyleProperty": "DataToolTipSummaryTitleTextFontStyleProperty", + "DataToolTipSummaryTitleTextFontWeight": "DataToolTipSummaryTitleTextFontWeight", + "DataToolTipSummaryTitleTextFontWeightProperty": "DataToolTipSummaryTitleTextFontWeightProperty", + "DataToolTipSummaryTitleTextMarginBottom": "DataToolTipSummaryTitleTextMarginBottom", + "DataToolTipSummaryTitleTextMarginBottomProperty": "DataToolTipSummaryTitleTextMarginBottomProperty", + "DataToolTipSummaryTitleTextMarginLeft": "DataToolTipSummaryTitleTextMarginLeft", + "DataToolTipSummaryTitleTextMarginLeftProperty": "DataToolTipSummaryTitleTextMarginLeftProperty", + "DataToolTipSummaryTitleTextMarginRight": "DataToolTipSummaryTitleTextMarginRight", + "DataToolTipSummaryTitleTextMarginRightProperty": "DataToolTipSummaryTitleTextMarginRightProperty", + "DataToolTipSummaryTitleTextMarginTop": "DataToolTipSummaryTitleTextMarginTop", + "DataToolTipSummaryTitleTextMarginTopProperty": "DataToolTipSummaryTitleTextMarginTopProperty", + "DataToolTipSummaryTitleTextProperty": "DataToolTipSummaryTitleTextProperty", + "DataToolTipSummaryType": "DataToolTipSummaryType", + "DataToolTipSummaryTypeProperty": "DataToolTipSummaryTypeProperty", + "DataToolTipSummaryUnitsText": "DataToolTipSummaryUnitsText", + "DataToolTipSummaryUnitsTextColor": "DataToolTipSummaryUnitsTextColor", + "DataToolTipSummaryUnitsTextColorProperty": "DataToolTipSummaryUnitsTextColorProperty", + "DataToolTipSummaryUnitsTextFontFamily": "DataToolTipSummaryUnitsTextFontFamily", + "DataToolTipSummaryUnitsTextFontFamilyProperty": "DataToolTipSummaryUnitsTextFontFamilyProperty", + "DataToolTipSummaryUnitsTextFontSize": "DataToolTipSummaryUnitsTextFontSize", + "DataToolTipSummaryUnitsTextFontSizeProperty": "DataToolTipSummaryUnitsTextFontSizeProperty", + "DataToolTipSummaryUnitsTextFontStyle": "DataToolTipSummaryUnitsTextFontStyle", + "DataToolTipSummaryUnitsTextFontStyleProperty": "DataToolTipSummaryUnitsTextFontStyleProperty", + "DataToolTipSummaryUnitsTextFontWeight": "DataToolTipSummaryUnitsTextFontWeight", + "DataToolTipSummaryUnitsTextFontWeightProperty": "DataToolTipSummaryUnitsTextFontWeightProperty", + "DataToolTipSummaryUnitsTextProperty": "DataToolTipSummaryUnitsTextProperty", + "DataToolTipSummaryValueTextColor": "DataToolTipSummaryValueTextColor", + "DataToolTipSummaryValueTextColorProperty": "DataToolTipSummaryValueTextColorProperty", + "DataToolTipSummaryValueTextFontFamily": "DataToolTipSummaryValueTextFontFamily", + "DataToolTipSummaryValueTextFontFamilyProperty": "DataToolTipSummaryValueTextFontFamilyProperty", + "DataToolTipSummaryValueTextFontSize": "DataToolTipSummaryValueTextFontSize", + "DataToolTipSummaryValueTextFontSizeProperty": "DataToolTipSummaryValueTextFontSizeProperty", + "DataToolTipSummaryValueTextFontStyle": "DataToolTipSummaryValueTextFontStyle", + "DataToolTipSummaryValueTextFontStyleProperty": "DataToolTipSummaryValueTextFontStyleProperty", + "DataToolTipSummaryValueTextFontWeight": "DataToolTipSummaryValueTextFontWeight", + "DataToolTipSummaryValueTextFontWeightProperty": "DataToolTipSummaryValueTextFontWeightProperty", + "DataToolTipTitleTextColor": "DataToolTipTitleTextColor", + "DataToolTipTitleTextColorProperty": "DataToolTipTitleTextColorProperty", + "DataToolTipTitleTextFontFamily": "DataToolTipTitleTextFontFamily", + "DataToolTipTitleTextFontFamilyProperty": "DataToolTipTitleTextFontFamilyProperty", + "DataToolTipTitleTextFontSize": "DataToolTipTitleTextFontSize", + "DataToolTipTitleTextFontSizeProperty": "DataToolTipTitleTextFontSizeProperty", + "DataToolTipTitleTextFontStyle": "DataToolTipTitleTextFontStyle", + "DataToolTipTitleTextFontStyleProperty": "DataToolTipTitleTextFontStyleProperty", + "DataToolTipTitleTextFontWeight": "DataToolTipTitleTextFontWeight", + "DataToolTipTitleTextFontWeightProperty": "DataToolTipTitleTextFontWeightProperty", + "DataToolTipTitleTextMarginBottom": "DataToolTipTitleTextMarginBottom", + "DataToolTipTitleTextMarginBottomProperty": "DataToolTipTitleTextMarginBottomProperty", + "DataToolTipTitleTextMarginLeft": "DataToolTipTitleTextMarginLeft", + "DataToolTipTitleTextMarginLeftProperty": "DataToolTipTitleTextMarginLeftProperty", + "DataToolTipTitleTextMarginRight": "DataToolTipTitleTextMarginRight", + "DataToolTipTitleTextMarginRightProperty": "DataToolTipTitleTextMarginRightProperty", + "DataToolTipTitleTextMarginTop": "DataToolTipTitleTextMarginTop", + "DataToolTipTitleTextMarginTopProperty": "DataToolTipTitleTextMarginTopProperty", + "DataToolTipUnitsDisplayMode": "DataToolTipUnitsDisplayMode", + "DataToolTipUnitsDisplayModeProperty": "DataToolTipUnitsDisplayModeProperty", + "DataToolTipUnitsText": "DataToolTipUnitsText", + "DataToolTipUnitsTextColor": "DataToolTipUnitsTextColor", + "DataToolTipUnitsTextColorProperty": "DataToolTipUnitsTextColorProperty", + "DataToolTipUnitsTextFontFamily": "DataToolTipUnitsTextFontFamily", + "DataToolTipUnitsTextFontFamilyProperty": "DataToolTipUnitsTextFontFamilyProperty", + "DataToolTipUnitsTextFontSize": "DataToolTipUnitsTextFontSize", + "DataToolTipUnitsTextFontSizeProperty": "DataToolTipUnitsTextFontSizeProperty", + "DataToolTipUnitsTextFontStyle": "DataToolTipUnitsTextFontStyle", + "DataToolTipUnitsTextFontStyleProperty": "DataToolTipUnitsTextFontStyleProperty", + "DataToolTipUnitsTextFontWeight": "DataToolTipUnitsTextFontWeight", + "DataToolTipUnitsTextFontWeightProperty": "DataToolTipUnitsTextFontWeightProperty", + "DataToolTipUnitsTextMarginBottom": "DataToolTipUnitsTextMarginBottom", + "DataToolTipUnitsTextMarginBottomProperty": "DataToolTipUnitsTextMarginBottomProperty", + "DataToolTipUnitsTextMarginLeft": "DataToolTipUnitsTextMarginLeft", + "DataToolTipUnitsTextMarginLeftProperty": "DataToolTipUnitsTextMarginLeftProperty", + "DataToolTipUnitsTextMarginRight": "DataToolTipUnitsTextMarginRight", + "DataToolTipUnitsTextMarginRightProperty": "DataToolTipUnitsTextMarginRightProperty", + "DataToolTipUnitsTextMarginTop": "DataToolTipUnitsTextMarginTop", + "DataToolTipUnitsTextMarginTopProperty": "DataToolTipUnitsTextMarginTopProperty", + "DataToolTipUnitsTextProperty": "DataToolTipUnitsTextProperty", + "DataToolTipValueFormatAbbreviation": "DataToolTipValueFormatAbbreviation", + "DataToolTipValueFormatAbbreviationProperty": "DataToolTipValueFormatAbbreviationProperty", + "DataToolTipValueFormatCulture": "DataToolTipValueFormatCulture", + "DataToolTipValueFormatCultureProperty": "DataToolTipValueFormatCultureProperty", + "DataToolTipValueFormatMaxFractions": "DataToolTipValueFormatMaxFractions", + "DataToolTipValueFormatMaxFractionsProperty": "DataToolTipValueFormatMaxFractionsProperty", + "DataToolTipValueFormatMinFractions": "DataToolTipValueFormatMinFractions", + "DataToolTipValueFormatMinFractionsProperty": "DataToolTipValueFormatMinFractionsProperty", + "DataToolTipValueFormatMode": "DataToolTipValueFormatMode", + "DataToolTipValueFormatModeProperty": "DataToolTipValueFormatModeProperty", + "DataToolTipValueFormatSpecifiers": "DataToolTipValueFormatSpecifiers", + "DataToolTipValueFormatSpecifiersProperty": "DataToolTipValueFormatSpecifiersProperty", + "DataToolTipValueFormatString": "DataToolTipValueFormatString", + "DataToolTipValueFormatStringProperty": "DataToolTipValueFormatStringProperty", + "DataToolTipValueFormatUseGrouping": "DataToolTipValueFormatUseGrouping", + "DataToolTipValueFormatUseGroupingProperty": "DataToolTipValueFormatUseGroupingProperty", + "DataToolTipValueRowMarginBottom": "DataToolTipValueRowMarginBottom", + "DataToolTipValueRowMarginBottomProperty": "DataToolTipValueRowMarginBottomProperty", + "DataToolTipValueRowMarginLeft": "DataToolTipValueRowMarginLeft", + "DataToolTipValueRowMarginLeftProperty": "DataToolTipValueRowMarginLeftProperty", + "DataToolTipValueRowMarginRight": "DataToolTipValueRowMarginRight", + "DataToolTipValueRowMarginRightProperty": "DataToolTipValueRowMarginRightProperty", + "DataToolTipValueRowMarginTop": "DataToolTipValueRowMarginTop", + "DataToolTipValueRowMarginTopProperty": "DataToolTipValueRowMarginTopProperty", + "DataToolTipValueRowVisible": "DataToolTipValueRowVisible", + "DataToolTipValueRowVisibleProperty": "DataToolTipValueRowVisibleProperty", + "DataToolTipValueTextColor": "DataToolTipValueTextColor", + "DataToolTipValueTextColorProperty": "DataToolTipValueTextColorProperty", + "DataToolTipValueTextFontFamily": "DataToolTipValueTextFontFamily", + "DataToolTipValueTextFontFamilyProperty": "DataToolTipValueTextFontFamilyProperty", + "DataToolTipValueTextFontSize": "DataToolTipValueTextFontSize", + "DataToolTipValueTextFontSizeProperty": "DataToolTipValueTextFontSizeProperty", + "DataToolTipValueTextFontStyle": "DataToolTipValueTextFontStyle", + "DataToolTipValueTextFontStyleProperty": "DataToolTipValueTextFontStyleProperty", + "DataToolTipValueTextFontWeight": "DataToolTipValueTextFontWeight", + "DataToolTipValueTextFontWeightProperty": "DataToolTipValueTextFontWeightProperty", + "DataToolTipValueTextMarginBottom": "DataToolTipValueTextMarginBottom", + "DataToolTipValueTextMarginBottomProperty": "DataToolTipValueTextMarginBottomProperty", + "DataToolTipValueTextMarginLeft": "DataToolTipValueTextMarginLeft", + "DataToolTipValueTextMarginLeftProperty": "DataToolTipValueTextMarginLeftProperty", + "DataToolTipValueTextMarginRight": "DataToolTipValueTextMarginRight", + "DataToolTipValueTextMarginRightProperty": "DataToolTipValueTextMarginRightProperty", + "DataToolTipValueTextMarginTop": "DataToolTipValueTextMarginTop", + "DataToolTipValueTextMarginTopProperty": "DataToolTipValueTextMarginTopProperty", + "DataToolTipValueTextUseSeriesColors": "DataToolTipValueTextUseSeriesColors", + "DataToolTipValueTextUseSeriesColorsProperty": "DataToolTipValueTextUseSeriesColorsProperty", + "DataToolTipValueTextWhenMissingData": "DataToolTipValueTextWhenMissingData", + "DataToolTipValueTextWhenMissingDataProperty": "DataToolTipValueTextWhenMissingDataProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "DomainType": "DomainType", + "DomainTypeProperty": "DomainTypeProperty", + "ExcludedProperties": "ExcludedProperties", + "ExcludedPropertiesProperty": "ExcludedPropertiesProperty", + "ExportDomainChartTestingInfo()": "ExportDomainChartTestingInfo()", + "ExportDomainChartTestingInfo": "ExportDomainChartTestingInfo()", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FilterExpressions": "FilterExpressions", + "FinalValueAnnotationsBackground": "FinalValueAnnotationsBackground", + "FinalValueAnnotationsBackgroundProperty": "FinalValueAnnotationsBackgroundProperty", + "FinalValueAnnotationsPrecision": "FinalValueAnnotationsPrecision", + "FinalValueAnnotationsPrecisionProperty": "FinalValueAnnotationsPrecisionProperty", + "FinalValueAnnotationsTextColor": "FinalValueAnnotationsTextColor", + "FinalValueAnnotationsTextColorProperty": "FinalValueAnnotationsTextColorProperty", + "FinalValueAnnotationsVisible": "FinalValueAnnotationsVisible", + "FinalValueAnnotationsVisibleProperty": "FinalValueAnnotationsVisibleProperty", + "FinishAnnotationFlow(UserAnnotationInformation)": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishAnnotationFlow": "FinishAnnotationFlow(UserAnnotationInformation)", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FocusBrush": "FocusBrush", + "FocusBrushProperty": "FocusBrushProperty", + "FocusDismissDelayMilliseconds": "FocusDismissDelayMilliseconds", + "FocusDismissDelayMillisecondsProperty": "FocusDismissDelayMillisecondsProperty", + "FocusMode": "FocusMode", + "FocusModeProperty": "FocusModeProperty", + "FocusTransitionDuration": "FocusTransitionDuration", + "FocusTransitionDurationProperty": "FocusTransitionDurationProperty", + "FocusedSeriesItems": "FocusedSeriesItems", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "GroupDescriptions": "GroupDescriptions", + "GroupSortDescriptions": "GroupSortDescriptions", + "GroupSorts": "GroupSorts", + "GroupSortsProperty": "GroupSortsProperty", + "HideToolTip()": "HideToolTip()", + "HideToolTip": "HideToolTip()", + "HideToolTipImmediate()": "HideToolTipImmediate()", + "HideToolTipImmediate": "HideToolTipImmediate()", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedLegendItemVisibility": "HighlightedLegendItemVisibility", + "HighlightedLegendItemVisibilityProperty": "HighlightedLegendItemVisibilityProperty", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "HighlightingBehavior": "HighlightingBehavior", + "HighlightingBehaviorProperty": "HighlightingBehaviorProperty", + "HighlightingDismissDelayMilliseconds": "HighlightingDismissDelayMilliseconds", + "HighlightingDismissDelayMillisecondsProperty": "HighlightingDismissDelayMillisecondsProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "HighlightingMode": "HighlightingMode", + "HighlightingModeProperty": "HighlightingModeProperty", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HighlightingTransitionDurationProperty": "HighlightingTransitionDurationProperty", + "HorizontalViewScrollbarCornerRadius": "HorizontalViewScrollbarCornerRadius", + "HorizontalViewScrollbarCornerRadiusProperty": "HorizontalViewScrollbarCornerRadiusProperty", + "HorizontalViewScrollbarFill": "HorizontalViewScrollbarFill", + "HorizontalViewScrollbarFillProperty": "HorizontalViewScrollbarFillProperty", + "HorizontalViewScrollbarHeight": "HorizontalViewScrollbarHeight", + "HorizontalViewScrollbarHeightProperty": "HorizontalViewScrollbarHeightProperty", + "HorizontalViewScrollbarInset": "HorizontalViewScrollbarInset", + "HorizontalViewScrollbarInsetProperty": "HorizontalViewScrollbarInsetProperty", + "HorizontalViewScrollbarMaxOpacity": "HorizontalViewScrollbarMaxOpacity", + "HorizontalViewScrollbarMaxOpacityProperty": "HorizontalViewScrollbarMaxOpacityProperty", + "HorizontalViewScrollbarMode": "HorizontalViewScrollbarMode", + "HorizontalViewScrollbarModeProperty": "HorizontalViewScrollbarModeProperty", + "HorizontalViewScrollbarOutline": "HorizontalViewScrollbarOutline", + "HorizontalViewScrollbarOutlineProperty": "HorizontalViewScrollbarOutlineProperty", + "HorizontalViewScrollbarPosition": "HorizontalViewScrollbarPosition", + "HorizontalViewScrollbarPositionProperty": "HorizontalViewScrollbarPositionProperty", + "HorizontalViewScrollbarShouldAddAutoTrackInsets": "HorizontalViewScrollbarShouldAddAutoTrackInsets", + "HorizontalViewScrollbarShouldAddAutoTrackInsetsProperty": "HorizontalViewScrollbarShouldAddAutoTrackInsetsProperty", + "HorizontalViewScrollbarStrokeThickness": "HorizontalViewScrollbarStrokeThickness", + "HorizontalViewScrollbarStrokeThicknessProperty": "HorizontalViewScrollbarStrokeThicknessProperty", + "HorizontalViewScrollbarTrackEndInset": "HorizontalViewScrollbarTrackEndInset", + "HorizontalViewScrollbarTrackEndInsetProperty": "HorizontalViewScrollbarTrackEndInsetProperty", + "HorizontalViewScrollbarTrackStartInset": "HorizontalViewScrollbarTrackStartInset", + "HorizontalViewScrollbarTrackStartInsetProperty": "HorizontalViewScrollbarTrackStartInsetProperty", + "IncludedProperties": "IncludedProperties", + "IncludedPropertiesProperty": "IncludedPropertiesProperty", + "InitialFilter": "InitialFilter", + "InitialFilterExpressions": "InitialFilterExpressions", + "InitialFilterProperty": "InitialFilterProperty", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroupSortDescriptions": "InitialGroupSortDescriptions", + "InitialGroups": "InitialGroups", + "InitialGroupsProperty": "InitialGroupsProperty", + "InitialHighlightFilter": "InitialHighlightFilter", + "InitialHighlightFilterExpressions": "InitialHighlightFilterExpressions", + "InitialHighlightFilterProperty": "InitialHighlightFilterProperty", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSortsProperty": "InitialSortsProperty", + "InitialSummaries": "InitialSummaries", + "InitialSummariesProperty": "InitialSummariesProperty", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsDetached": "IsDetached", + "IsDetachedProperty": "IsDetachedProperty", + "IsHorizontalZoomEnabled": "IsHorizontalZoomEnabled", + "IsHorizontalZoomEnabledProperty": "IsHorizontalZoomEnabledProperty", + "IsSeriesHighlightingEnabled": "IsSeriesHighlightingEnabled", + "IsSeriesHighlightingEnabledProperty": "IsSeriesHighlightingEnabledProperty", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsUserAnnotationsEnabledProperty": "IsUserAnnotationsEnabledProperty", + "IsVerticalZoomEnabled": "IsVerticalZoomEnabled", + "IsVerticalZoomEnabledProperty": "IsVerticalZoomEnabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LeftMargin": "LeftMargin", + "LeftMarginProperty": "LeftMarginProperty", + "Legend": "Legend", + "LegendHighlightingMode": "LegendHighlightingMode", + "LegendHighlightingModeProperty": "LegendHighlightingModeProperty", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeModeProperty": "LegendItemBadgeModeProperty", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeShapeProperty": "LegendItemBadgeShapeProperty", + "LegendItemVisibility": "LegendItemVisibility", + "LegendItemVisibilityProperty": "LegendItemVisibilityProperty", + "LegendProperty": "LegendProperty", + "LoadAnnotationsFromJson(string)": "LoadAnnotationsFromJson(string)", + "LoadAnnotationsFromJson": "LoadAnnotationsFromJson(string)", + "MarkerAutomaticBehavior": "MarkerAutomaticBehavior", + "MarkerAutomaticBehaviorProperty": "MarkerAutomaticBehaviorProperty", + "MarkerBrushes": "MarkerBrushes", + "MarkerBrushesProperty": "MarkerBrushesProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerFillOpacityProperty": "MarkerFillOpacityProperty", + "MarkerMaxCount": "MarkerMaxCount", + "MarkerMaxCountProperty": "MarkerMaxCountProperty", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlines": "MarkerOutlines", + "MarkerOutlinesProperty": "MarkerOutlinesProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerTypes": "MarkerTypes", + "MarkerTypesProperty": "MarkerTypesProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySeriesDataChanged()": "NotifySeriesDataChanged()", + "NotifySeriesDataChanged": "NotifySeriesDataChanged()", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "NotifyVisualPropertiesChanged()": "NotifyVisualPropertiesChanged()", + "NotifyVisualPropertiesChanged": "NotifyVisualPropertiesChanged()", + "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)": "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)", + "OnCalloutLabelUpdating": "OnCalloutLabelUpdating(CalloutLabelUpdatingEventArgs)", + "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)": "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)", + "OnCalloutRenderStyleUpdating": "OnCalloutRenderStyleUpdating(CalloutRenderStyleUpdatingEventArgs)", + "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)": "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)", + "OnCalloutStyleUpdating": "OnCalloutStyleUpdating(CalloutStyleUpdatingEventArgs)", + "OnDetach()": "OnDetach()", + "OnDetach": "OnDetach()", + "OnFilterStringErrorsParsing(FilterStringErrorsParsingEventArgs)": "OnFilterStringErrorsParsing(FilterStringErrorsParsingEventArgs)", + "OnFilterStringErrorsParsing": "OnFilterStringErrorsParsing(FilterStringErrorsParsingEventArgs)", + "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)": "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnFocusedSeriesItemsChanged": "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnPlotAreaPointerDown(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerDown(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerDown": "OnPlotAreaPointerDown(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerEnter(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerEnter(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerEnter": "OnPlotAreaPointerEnter(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerLeave(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerLeave(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerLeave": "OnPlotAreaPointerLeave(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerMove(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerMove(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerMove": "OnPlotAreaPointerMove(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerUp(DomainChartPlotAreaPointerEventArgs)": "OnPlotAreaPointerUp(DomainChartPlotAreaPointerEventArgs)", + "OnPlotAreaPointerUp": "OnPlotAreaPointerUp(DomainChartPlotAreaPointerEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)": "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnSelectedSeriesItemsChanged": "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnSeriesAdded(ChartSeriesEventArgs)": "OnSeriesAdded(ChartSeriesEventArgs)", + "OnSeriesAdded": "OnSeriesAdded(ChartSeriesEventArgs)", + "OnSeriesClick(DomainChartSeriesPointerEventArgs)": "OnSeriesClick(DomainChartSeriesPointerEventArgs)", + "OnSeriesClick": "OnSeriesClick(DomainChartSeriesPointerEventArgs)", + "OnSeriesDataChanged(PropertyChangedEventArgs)": "OnSeriesDataChanged(PropertyChangedEventArgs)", + "OnSeriesDataChanged": "OnSeriesDataChanged(PropertyChangedEventArgs)", + "OnSeriesPointerDown(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerDown(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerDown": "OnSeriesPointerDown(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerEnter(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerEnter(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerEnter": "OnSeriesPointerEnter(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerLeave(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerLeave(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerLeave": "OnSeriesPointerLeave(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerMove(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerMove(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerMove": "OnSeriesPointerMove(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerUp(DomainChartSeriesPointerEventArgs)": "OnSeriesPointerUp(DomainChartSeriesPointerEventArgs)", + "OnSeriesPointerUp": "OnSeriesPointerUp(DomainChartSeriesPointerEventArgs)", + "OnSeriesRemoved(ChartSeriesEventArgs)": "OnSeriesRemoved(ChartSeriesEventArgs)", + "OnSeriesRemoved": "OnSeriesRemoved(ChartSeriesEventArgs)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationInformationRequested": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnUserAnnotationToolTipContentUpdating": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OutlineMode": "OutlineMode", + "OutlineModeProperty": "OutlineModeProperty", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "PlotAreaMarginBottom": "PlotAreaMarginBottom", + "PlotAreaMarginBottomProperty": "PlotAreaMarginBottomProperty", + "PlotAreaMarginLeft": "PlotAreaMarginLeft", + "PlotAreaMarginLeftProperty": "PlotAreaMarginLeftProperty", + "PlotAreaMarginRight": "PlotAreaMarginRight", + "PlotAreaMarginRightProperty": "PlotAreaMarginRightProperty", + "PlotAreaMarginTop": "PlotAreaMarginTop", + "PlotAreaMarginTopProperty": "PlotAreaMarginTopProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "ReplayTransitionIn()": "ReplayTransitionIn()", + "ReplayTransitionIn": "ReplayTransitionIn()", + "ResetAnnotations()": "ResetAnnotations()", + "ResetAnnotations": "ResetAnnotations()", + "ResetZoom()": "ResetZoom()", + "ResetZoom": "ResetZoom()", + "Resolution": "Resolution", + "ResolutionProperty": "ResolutionProperty", + "RightMargin": "RightMargin", + "RightMarginProperty": "RightMarginProperty", + "SaveAnnotationsToJson()": "SaveAnnotationsToJson()", + "SaveAnnotationsToJson": "SaveAnnotationsToJson()", + "SelectedSeriesItems": "SelectedSeriesItems", + "SelectionBehavior": "SelectionBehavior", + "SelectionBehaviorProperty": "SelectionBehaviorProperty", + "SelectionBrush": "SelectionBrush", + "SelectionBrushProperty": "SelectionBrushProperty", + "SelectionDismissDelayMilliseconds": "SelectionDismissDelayMilliseconds", + "SelectionDismissDelayMillisecondsProperty": "SelectionDismissDelayMillisecondsProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "SelectionTransitionDuration": "SelectionTransitionDuration", + "SelectionTransitionDurationProperty": "SelectionTransitionDurationProperty", + "SeriesPlotAreaMarginHorizontalMode": "SeriesPlotAreaMarginHorizontalMode", + "SeriesPlotAreaMarginHorizontalModeProperty": "SeriesPlotAreaMarginHorizontalModeProperty", + "SeriesPlotAreaMarginVerticalMode": "SeriesPlotAreaMarginVerticalMode", + "SeriesPlotAreaMarginVerticalModeProperty": "SeriesPlotAreaMarginVerticalModeProperty", + "SeriesValueLayerUseLegend": "SeriesValueLayerUseLegend", + "SeriesValueLayerUseLegendProperty": "SeriesValueLayerUseLegendProperty", + "ShouldAvoidAxisAnnotationCollisions": "ShouldAvoidAxisAnnotationCollisions", + "ShouldAvoidAxisAnnotationCollisionsProperty": "ShouldAvoidAxisAnnotationCollisionsProperty", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldDisplayMockDataProperty": "ShouldDisplayMockDataProperty", + "ShouldPanOnMaximumZoom": "ShouldPanOnMaximumZoom", + "ShouldPanOnMaximumZoomProperty": "ShouldPanOnMaximumZoomProperty", + "ShouldSimulateHoverMoveCrosshairPoint": "ShouldSimulateHoverMoveCrosshairPoint", + "ShouldSimulateHoverMoveCrosshairPointProperty": "ShouldSimulateHoverMoveCrosshairPointProperty", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "ShouldUseSkeletonStyleForMockDataProperty": "ShouldUseSkeletonStyleForMockDataProperty", + "SimulateClick(Point)": "SimulateClick(Point)", + "SimulateClick": "SimulateClick(Point)", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "SimulatePlotPointerUp(Point)": "SimulatePlotPointerUp(Point)", + "SimulatePlotPointerUp": "SimulatePlotPointerUp(Point)", + "SimulatePressAndHold(Point)": "SimulatePressAndHold(Point)", + "SimulatePressAndHold": "SimulatePressAndHold(Point)", + "SortDescriptions": "SortDescriptions", + "StartCreatingAnnotation()": "StartCreatingAnnotation()", + "StartCreatingAnnotation": "StartCreatingAnnotation()", + "StartDeletingAnnotation()": "StartDeletingAnnotation()", + "StartDeletingAnnotation": "StartDeletingAnnotation()", + "Subtitle": "Subtitle", + "SubtitleAlignment": "SubtitleAlignment", + "SubtitleAlignmentProperty": "SubtitleAlignmentProperty", + "SubtitleBottomMargin": "SubtitleBottomMargin", + "SubtitleBottomMarginProperty": "SubtitleBottomMarginProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleLeftMargin": "SubtitleLeftMargin", + "SubtitleLeftMarginProperty": "SubtitleLeftMarginProperty", + "SubtitleProperty": "SubtitleProperty", + "SubtitleRightMargin": "SubtitleRightMargin", + "SubtitleRightMarginProperty": "SubtitleRightMarginProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "SubtitleTopMargin": "SubtitleTopMargin", + "SubtitleTopMarginProperty": "SubtitleTopMarginProperty", + "SummaryDescriptions": "SummaryDescriptions", + "Thickness": "Thickness", + "ThicknessProperty": "ThicknessProperty", + "Title": "Title", + "TitleAlignment": "TitleAlignment", + "TitleAlignmentProperty": "TitleAlignmentProperty", + "TitleBottomMargin": "TitleBottomMargin", + "TitleBottomMarginProperty": "TitleBottomMarginProperty", + "TitleFontFamily": "TitleFontFamily", + "TitleFontFamilyProperty": "TitleFontFamilyProperty", + "TitleFontSize": "TitleFontSize", + "TitleFontSizeProperty": "TitleFontSizeProperty", + "TitleFontStyle": "TitleFontStyle", + "TitleFontStyleProperty": "TitleFontStyleProperty", + "TitleFontWeight": "TitleFontWeight", + "TitleFontWeightProperty": "TitleFontWeightProperty", + "TitleLeftMargin": "TitleLeftMargin", + "TitleLeftMarginProperty": "TitleLeftMarginProperty", + "TitleProperty": "TitleProperty", + "TitleRightMargin": "TitleRightMargin", + "TitleRightMarginProperty": "TitleRightMarginProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTopMargin": "TitleTopMargin", + "TitleTopMarginProperty": "TitleTopMarginProperty", + "ToolTipType": "ToolTipType", + "ToolTipTypeProperty": "ToolTipTypeProperty", + "TooltipTemplate": "TooltipTemplate", + "TooltipTemplateProperty": "TooltipTemplateProperty", + "TooltipTemplates": "TooltipTemplates", + "TooltipTemplatesProperty": "TooltipTemplatesProperty", + "TopMargin": "TopMargin", + "TopMarginProperty": "TopMarginProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionEasingFunction": "TransitionEasingFunction", + "TransitionEasingFunctionProperty": "TransitionEasingFunctionProperty", + "TrendLineBrushes": "TrendLineBrushes", + "TrendLineBrushesProperty": "TrendLineBrushesProperty", + "TrendLineLayerUseLegend": "TrendLineLayerUseLegend", + "TrendLineLayerUseLegendProperty": "TrendLineLayerUseLegendProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "TrendLineTypes": "TrendLineTypes", + "TrendLineTypesProperty": "TrendLineTypesProperty", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty", + "UseValueForAutoCalloutLabels": "UseValueForAutoCalloutLabels", + "UseValueForAutoCalloutLabelsProperty": "UseValueForAutoCalloutLabelsProperty", + "ValueLines": "ValueLines", + "ValueLinesBrushes": "ValueLinesBrushes", + "ValueLinesBrushesProperty": "ValueLinesBrushesProperty", + "ValueLinesProperty": "ValueLinesProperty", + "ValueLinesThickness": "ValueLinesThickness", + "ValueLinesThicknessProperty": "ValueLinesThicknessProperty", + "VerticalViewScrollbarCornerRadius": "VerticalViewScrollbarCornerRadius", + "VerticalViewScrollbarCornerRadiusProperty": "VerticalViewScrollbarCornerRadiusProperty", + "VerticalViewScrollbarFill": "VerticalViewScrollbarFill", + "VerticalViewScrollbarFillProperty": "VerticalViewScrollbarFillProperty", + "VerticalViewScrollbarInset": "VerticalViewScrollbarInset", + "VerticalViewScrollbarInsetProperty": "VerticalViewScrollbarInsetProperty", + "VerticalViewScrollbarMaxOpacity": "VerticalViewScrollbarMaxOpacity", + "VerticalViewScrollbarMaxOpacityProperty": "VerticalViewScrollbarMaxOpacityProperty", + "VerticalViewScrollbarMode": "VerticalViewScrollbarMode", + "VerticalViewScrollbarModeProperty": "VerticalViewScrollbarModeProperty", + "VerticalViewScrollbarOutline": "VerticalViewScrollbarOutline", + "VerticalViewScrollbarOutlineProperty": "VerticalViewScrollbarOutlineProperty", + "VerticalViewScrollbarPosition": "VerticalViewScrollbarPosition", + "VerticalViewScrollbarPositionProperty": "VerticalViewScrollbarPositionProperty", + "VerticalViewScrollbarShouldAddAutoTrackInsets": "VerticalViewScrollbarShouldAddAutoTrackInsets", + "VerticalViewScrollbarShouldAddAutoTrackInsetsProperty": "VerticalViewScrollbarShouldAddAutoTrackInsetsProperty", + "VerticalViewScrollbarStrokeThickness": "VerticalViewScrollbarStrokeThickness", + "VerticalViewScrollbarStrokeThicknessProperty": "VerticalViewScrollbarStrokeThicknessProperty", + "VerticalViewScrollbarTrackEndInset": "VerticalViewScrollbarTrackEndInset", + "VerticalViewScrollbarTrackEndInsetProperty": "VerticalViewScrollbarTrackEndInsetProperty", + "VerticalViewScrollbarTrackStartInset": "VerticalViewScrollbarTrackStartInset", + "VerticalViewScrollbarTrackStartInsetProperty": "VerticalViewScrollbarTrackStartInsetProperty", + "VerticalViewScrollbarWidth": "VerticalViewScrollbarWidth", + "VerticalViewScrollbarWidthProperty": "VerticalViewScrollbarWidthProperty", + "Viewport": "Viewport", + "ViewportProperty": "ViewportProperty", + "WindowRect": "WindowRect", + "WindowRectMinHeight": "WindowRectMinHeight", + "WindowRectMinHeightProperty": "WindowRectMinHeightProperty", + "WindowRectMinWidth": "WindowRectMinWidth", + "WindowRectMinWidthProperty": "WindowRectMinWidthProperty", + "WindowRectProperty": "WindowRectProperty", + "WindowSizeMinHeight": "WindowSizeMinHeight", + "WindowSizeMinHeightProperty": "WindowSizeMinHeightProperty", + "WindowSizeMinWidth": "WindowSizeMinWidth", + "WindowSizeMinWidthProperty": "WindowSizeMinWidthProperty", + "ZoomIn(double)": "ZoomIn(double)", + "ZoomIn": "ZoomIn(double)", + "ZoomOut(double)": "ZoomOut(double)", + "ZoomOut": "ZoomOut(double)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DomainChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartDescription", + "k": "class", + "s": "classes", + "m": { + "DomainChartDescription()": "DomainChartDescription()", + "DomainChartDescription": "DomainChartDescription()", + "ActualBrushes": "ActualBrushes", + "ActualOutlines": "ActualOutlines", + "AlignsGridLinesToPixels": "AlignsGridLinesToPixels", + "AnimateSeriesWhenAxisRangeChanges": "AnimateSeriesWhenAxisRangeChanges", + "AreaFillOpacity": "AreaFillOpacity", + "AutoCalloutsVisible": "AutoCalloutsVisible", + "BottomMargin": "BottomMargin", + "Brushes": "Brushes", + "CalloutCollisionMode": "CalloutCollisionMode", + "CalloutLabelUpdatingRef": "CalloutLabelUpdatingRef", + "CalloutRenderStyleUpdatingRef": "CalloutRenderStyleUpdatingRef", + "CalloutStyleUpdatingEventEnabled": "CalloutStyleUpdatingEventEnabled", + "CalloutStyleUpdatingRef": "CalloutStyleUpdatingRef", + "CalloutsAllowedPositions": "CalloutsAllowedPositions", + "CalloutsAutoLabelPrecision": "CalloutsAutoLabelPrecision", + "CalloutsBackground": "CalloutsBackground", + "CalloutsContentMemberPath": "CalloutsContentMemberPath", + "CalloutsDarkTextColor": "CalloutsDarkTextColor", + "CalloutsDataSourceRef": "CalloutsDataSourceRef", + "CalloutsFontFamily": "CalloutsFontFamily", + "CalloutsFontSize": "CalloutsFontSize", + "CalloutsFontStyle": "CalloutsFontStyle", + "CalloutsFontWeight": "CalloutsFontWeight", + "CalloutsLabelMemberPath": "CalloutsLabelMemberPath", + "CalloutsLeaderBrush": "CalloutsLeaderBrush", + "CalloutsLightTextColor": "CalloutsLightTextColor", + "CalloutsOutline": "CalloutsOutline", + "CalloutsStrokeThickness": "CalloutsStrokeThickness", + "CalloutsTextColor": "CalloutsTextColor", + "CalloutsUseAutoContrastingLabelColors": "CalloutsUseAutoContrastingLabelColors", + "CalloutsUseItemColorForFill": "CalloutsUseItemColorForFill", + "CalloutsUseItemColorForOutline": "CalloutsUseItemColorForOutline", + "CalloutsVisible": "CalloutsVisible", + "CalloutsXMemberPath": "CalloutsXMemberPath", + "CalloutsYMemberPath": "CalloutsYMemberPath", + "ChartTitle": "ChartTitle", + "ComputedPlotAreaMarginMode": "ComputedPlotAreaMarginMode", + "CrosshairsAnnotationEnabled": "CrosshairsAnnotationEnabled", + "CrosshairsAnnotationXAxisBackground": "CrosshairsAnnotationXAxisBackground", + "CrosshairsAnnotationXAxisPrecision": "CrosshairsAnnotationXAxisPrecision", + "CrosshairsAnnotationXAxisTextColor": "CrosshairsAnnotationXAxisTextColor", + "CrosshairsAnnotationYAxisBackground": "CrosshairsAnnotationYAxisBackground", + "CrosshairsAnnotationYAxisPrecision": "CrosshairsAnnotationYAxisPrecision", + "CrosshairsAnnotationYAxisTextColor": "CrosshairsAnnotationYAxisTextColor", + "CrosshairsDisplayMode": "CrosshairsDisplayMode", + "CrosshairsLineHorizontalStroke": "CrosshairsLineHorizontalStroke", + "CrosshairsLineThickness": "CrosshairsLineThickness", + "CrosshairsLineVerticalStroke": "CrosshairsLineVerticalStroke", + "CrosshairsSkipInvalidData": "CrosshairsSkipInvalidData", + "CrosshairsSkipZeroValueFragments": "CrosshairsSkipZeroValueFragments", + "CrosshairsSnapToData": "CrosshairsSnapToData", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "DataToolTipBadgeMarginBottom": "DataToolTipBadgeMarginBottom", + "DataToolTipBadgeMarginLeft": "DataToolTipBadgeMarginLeft", + "DataToolTipBadgeMarginRight": "DataToolTipBadgeMarginRight", + "DataToolTipBadgeMarginTop": "DataToolTipBadgeMarginTop", + "DataToolTipBadgeShape": "DataToolTipBadgeShape", + "DataToolTipDefaultPositionOffsetX": "DataToolTipDefaultPositionOffsetX", + "DataToolTipDefaultPositionOffsetY": "DataToolTipDefaultPositionOffsetY", + "DataToolTipExcludedColumns": "DataToolTipExcludedColumns", + "DataToolTipExcludedSeries": "DataToolTipExcludedSeries", + "DataToolTipGroupRowMarginBottom": "DataToolTipGroupRowMarginBottom", + "DataToolTipGroupRowMarginLeft": "DataToolTipGroupRowMarginLeft", + "DataToolTipGroupRowMarginRight": "DataToolTipGroupRowMarginRight", + "DataToolTipGroupRowMarginTop": "DataToolTipGroupRowMarginTop", + "DataToolTipGroupRowVisible": "DataToolTipGroupRowVisible", + "DataToolTipGroupTextColor": "DataToolTipGroupTextColor", + "DataToolTipGroupTextFontFamily": "DataToolTipGroupTextFontFamily", + "DataToolTipGroupTextFontSize": "DataToolTipGroupTextFontSize", + "DataToolTipGroupTextFontStyle": "DataToolTipGroupTextFontStyle", + "DataToolTipGroupTextFontWeight": "DataToolTipGroupTextFontWeight", + "DataToolTipGroupTextMarginBottom": "DataToolTipGroupTextMarginBottom", + "DataToolTipGroupTextMarginLeft": "DataToolTipGroupTextMarginLeft", + "DataToolTipGroupTextMarginRight": "DataToolTipGroupTextMarginRight", + "DataToolTipGroupTextMarginTop": "DataToolTipGroupTextMarginTop", + "DataToolTipGroupedPositionModeX": "DataToolTipGroupedPositionModeX", + "DataToolTipGroupedPositionModeY": "DataToolTipGroupedPositionModeY", + "DataToolTipGroupingMode": "DataToolTipGroupingMode", + "DataToolTipHeaderFormatCulture": "DataToolTipHeaderFormatCulture", + "DataToolTipHeaderFormatDate": "DataToolTipHeaderFormatDate", + "DataToolTipHeaderFormatSpecifiers": "DataToolTipHeaderFormatSpecifiers", + "DataToolTipHeaderFormatString": "DataToolTipHeaderFormatString", + "DataToolTipHeaderFormatTime": "DataToolTipHeaderFormatTime", + "DataToolTipHeaderRowMarginBottom": "DataToolTipHeaderRowMarginBottom", + "DataToolTipHeaderRowMarginLeft": "DataToolTipHeaderRowMarginLeft", + "DataToolTipHeaderRowMarginRight": "DataToolTipHeaderRowMarginRight", + "DataToolTipHeaderRowMarginTop": "DataToolTipHeaderRowMarginTop", + "DataToolTipHeaderRowVisible": "DataToolTipHeaderRowVisible", + "DataToolTipHeaderText": "DataToolTipHeaderText", + "DataToolTipHeaderTextColor": "DataToolTipHeaderTextColor", + "DataToolTipHeaderTextFontFamily": "DataToolTipHeaderTextFontFamily", + "DataToolTipHeaderTextFontSize": "DataToolTipHeaderTextFontSize", + "DataToolTipHeaderTextFontStyle": "DataToolTipHeaderTextFontStyle", + "DataToolTipHeaderTextFontWeight": "DataToolTipHeaderTextFontWeight", + "DataToolTipHeaderTextMarginBottom": "DataToolTipHeaderTextMarginBottom", + "DataToolTipHeaderTextMarginLeft": "DataToolTipHeaderTextMarginLeft", + "DataToolTipHeaderTextMarginRight": "DataToolTipHeaderTextMarginRight", + "DataToolTipHeaderTextMarginTop": "DataToolTipHeaderTextMarginTop", + "DataToolTipIncludedColumns": "DataToolTipIncludedColumns", + "DataToolTipIncludedSeries": "DataToolTipIncludedSeries", + "DataToolTipLabelDisplayMode": "DataToolTipLabelDisplayMode", + "DataToolTipLabelTextColor": "DataToolTipLabelTextColor", + "DataToolTipLabelTextFontFamily": "DataToolTipLabelTextFontFamily", + "DataToolTipLabelTextFontSize": "DataToolTipLabelTextFontSize", + "DataToolTipLabelTextFontStyle": "DataToolTipLabelTextFontStyle", + "DataToolTipLabelTextFontWeight": "DataToolTipLabelTextFontWeight", + "DataToolTipLabelTextMarginBottom": "DataToolTipLabelTextMarginBottom", + "DataToolTipLabelTextMarginLeft": "DataToolTipLabelTextMarginLeft", + "DataToolTipLabelTextMarginRight": "DataToolTipLabelTextMarginRight", + "DataToolTipLabelTextMarginTop": "DataToolTipLabelTextMarginTop", + "DataToolTipPositionOffsetX": "DataToolTipPositionOffsetX", + "DataToolTipPositionOffsetY": "DataToolTipPositionOffsetY", + "DataToolTipShouldUpdateWhenSeriesDataChanges": "DataToolTipShouldUpdateWhenSeriesDataChanges", + "DataToolTipSummaryLabelText": "DataToolTipSummaryLabelText", + "DataToolTipSummaryLabelTextColor": "DataToolTipSummaryLabelTextColor", + "DataToolTipSummaryLabelTextFontFamily": "DataToolTipSummaryLabelTextFontFamily", + "DataToolTipSummaryLabelTextFontSize": "DataToolTipSummaryLabelTextFontSize", + "DataToolTipSummaryLabelTextFontStyle": "DataToolTipSummaryLabelTextFontStyle", + "DataToolTipSummaryLabelTextFontWeight": "DataToolTipSummaryLabelTextFontWeight", + "DataToolTipSummaryRowMarginBottom": "DataToolTipSummaryRowMarginBottom", + "DataToolTipSummaryRowMarginLeft": "DataToolTipSummaryRowMarginLeft", + "DataToolTipSummaryRowMarginRight": "DataToolTipSummaryRowMarginRight", + "DataToolTipSummaryRowMarginTop": "DataToolTipSummaryRowMarginTop", + "DataToolTipSummaryTitleText": "DataToolTipSummaryTitleText", + "DataToolTipSummaryTitleTextColor": "DataToolTipSummaryTitleTextColor", + "DataToolTipSummaryTitleTextFontFamily": "DataToolTipSummaryTitleTextFontFamily", + "DataToolTipSummaryTitleTextFontSize": "DataToolTipSummaryTitleTextFontSize", + "DataToolTipSummaryTitleTextFontStyle": "DataToolTipSummaryTitleTextFontStyle", + "DataToolTipSummaryTitleTextFontWeight": "DataToolTipSummaryTitleTextFontWeight", + "DataToolTipSummaryTitleTextMarginBottom": "DataToolTipSummaryTitleTextMarginBottom", + "DataToolTipSummaryTitleTextMarginLeft": "DataToolTipSummaryTitleTextMarginLeft", + "DataToolTipSummaryTitleTextMarginRight": "DataToolTipSummaryTitleTextMarginRight", + "DataToolTipSummaryTitleTextMarginTop": "DataToolTipSummaryTitleTextMarginTop", + "DataToolTipSummaryType": "DataToolTipSummaryType", + "DataToolTipSummaryUnitsText": "DataToolTipSummaryUnitsText", + "DataToolTipSummaryUnitsTextColor": "DataToolTipSummaryUnitsTextColor", + "DataToolTipSummaryUnitsTextFontFamily": "DataToolTipSummaryUnitsTextFontFamily", + "DataToolTipSummaryUnitsTextFontSize": "DataToolTipSummaryUnitsTextFontSize", + "DataToolTipSummaryUnitsTextFontStyle": "DataToolTipSummaryUnitsTextFontStyle", + "DataToolTipSummaryUnitsTextFontWeight": "DataToolTipSummaryUnitsTextFontWeight", + "DataToolTipSummaryValueTextColor": "DataToolTipSummaryValueTextColor", + "DataToolTipSummaryValueTextFontFamily": "DataToolTipSummaryValueTextFontFamily", + "DataToolTipSummaryValueTextFontSize": "DataToolTipSummaryValueTextFontSize", + "DataToolTipSummaryValueTextFontStyle": "DataToolTipSummaryValueTextFontStyle", + "DataToolTipSummaryValueTextFontWeight": "DataToolTipSummaryValueTextFontWeight", + "DataToolTipTitleTextColor": "DataToolTipTitleTextColor", + "DataToolTipTitleTextFontFamily": "DataToolTipTitleTextFontFamily", + "DataToolTipTitleTextFontSize": "DataToolTipTitleTextFontSize", + "DataToolTipTitleTextFontStyle": "DataToolTipTitleTextFontStyle", + "DataToolTipTitleTextFontWeight": "DataToolTipTitleTextFontWeight", + "DataToolTipTitleTextMarginBottom": "DataToolTipTitleTextMarginBottom", + "DataToolTipTitleTextMarginLeft": "DataToolTipTitleTextMarginLeft", + "DataToolTipTitleTextMarginRight": "DataToolTipTitleTextMarginRight", + "DataToolTipTitleTextMarginTop": "DataToolTipTitleTextMarginTop", + "DataToolTipUnitsDisplayMode": "DataToolTipUnitsDisplayMode", + "DataToolTipUnitsText": "DataToolTipUnitsText", + "DataToolTipUnitsTextColor": "DataToolTipUnitsTextColor", + "DataToolTipUnitsTextFontFamily": "DataToolTipUnitsTextFontFamily", + "DataToolTipUnitsTextFontSize": "DataToolTipUnitsTextFontSize", + "DataToolTipUnitsTextFontStyle": "DataToolTipUnitsTextFontStyle", + "DataToolTipUnitsTextFontWeight": "DataToolTipUnitsTextFontWeight", + "DataToolTipUnitsTextMarginBottom": "DataToolTipUnitsTextMarginBottom", + "DataToolTipUnitsTextMarginLeft": "DataToolTipUnitsTextMarginLeft", + "DataToolTipUnitsTextMarginRight": "DataToolTipUnitsTextMarginRight", + "DataToolTipUnitsTextMarginTop": "DataToolTipUnitsTextMarginTop", + "DataToolTipValueFormatAbbreviation": "DataToolTipValueFormatAbbreviation", + "DataToolTipValueFormatCulture": "DataToolTipValueFormatCulture", + "DataToolTipValueFormatMaxFractions": "DataToolTipValueFormatMaxFractions", + "DataToolTipValueFormatMinFractions": "DataToolTipValueFormatMinFractions", + "DataToolTipValueFormatMode": "DataToolTipValueFormatMode", + "DataToolTipValueFormatSpecifiers": "DataToolTipValueFormatSpecifiers", + "DataToolTipValueFormatString": "DataToolTipValueFormatString", + "DataToolTipValueFormatUseGrouping": "DataToolTipValueFormatUseGrouping", + "DataToolTipValueRowMarginBottom": "DataToolTipValueRowMarginBottom", + "DataToolTipValueRowMarginLeft": "DataToolTipValueRowMarginLeft", + "DataToolTipValueRowMarginRight": "DataToolTipValueRowMarginRight", + "DataToolTipValueRowMarginTop": "DataToolTipValueRowMarginTop", + "DataToolTipValueRowVisible": "DataToolTipValueRowVisible", + "DataToolTipValueTextColor": "DataToolTipValueTextColor", + "DataToolTipValueTextFontFamily": "DataToolTipValueTextFontFamily", + "DataToolTipValueTextFontSize": "DataToolTipValueTextFontSize", + "DataToolTipValueTextFontStyle": "DataToolTipValueTextFontStyle", + "DataToolTipValueTextFontWeight": "DataToolTipValueTextFontWeight", + "DataToolTipValueTextMarginBottom": "DataToolTipValueTextMarginBottom", + "DataToolTipValueTextMarginLeft": "DataToolTipValueTextMarginLeft", + "DataToolTipValueTextMarginRight": "DataToolTipValueTextMarginRight", + "DataToolTipValueTextMarginTop": "DataToolTipValueTextMarginTop", + "DataToolTipValueTextUseSeriesColors": "DataToolTipValueTextUseSeriesColors", + "DataToolTipValueTextWhenMissingData": "DataToolTipValueTextWhenMissingData", + "ExcludedProperties": "ExcludedProperties", + "FilterExpressions": "FilterExpressions", + "FilterStringErrorsParsingRef": "FilterStringErrorsParsingRef", + "FinalValueAnnotationsBackground": "FinalValueAnnotationsBackground", + "FinalValueAnnotationsPrecision": "FinalValueAnnotationsPrecision", + "FinalValueAnnotationsTextColor": "FinalValueAnnotationsTextColor", + "FinalValueAnnotationsVisible": "FinalValueAnnotationsVisible", + "FocusBrush": "FocusBrush", + "FocusDismissDelayMilliseconds": "FocusDismissDelayMilliseconds", + "FocusMode": "FocusMode", + "FocusTransitionDuration": "FocusTransitionDuration", + "FocusedSeriesItems": "FocusedSeriesItems", + "FocusedSeriesItemsChangedRef": "FocusedSeriesItemsChangedRef", + "GroupDescriptions": "GroupDescriptions", + "GroupSortDescriptions": "GroupSortDescriptions", + "GroupSorts": "GroupSorts", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "HighlightedDataSource": "HighlightedDataSource", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedLegendItemVisibility": "HighlightedLegendItemVisibility", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightingBehavior": "HighlightingBehavior", + "HighlightingDismissDelayMilliseconds": "HighlightingDismissDelayMilliseconds", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingMode": "HighlightingMode", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HorizontalViewScrollbarCornerRadius": "HorizontalViewScrollbarCornerRadius", + "HorizontalViewScrollbarFill": "HorizontalViewScrollbarFill", + "HorizontalViewScrollbarHeight": "HorizontalViewScrollbarHeight", + "HorizontalViewScrollbarInset": "HorizontalViewScrollbarInset", + "HorizontalViewScrollbarMaxOpacity": "HorizontalViewScrollbarMaxOpacity", + "HorizontalViewScrollbarMode": "HorizontalViewScrollbarMode", + "HorizontalViewScrollbarOutline": "HorizontalViewScrollbarOutline", + "HorizontalViewScrollbarPosition": "HorizontalViewScrollbarPosition", + "HorizontalViewScrollbarShouldAddAutoTrackInsets": "HorizontalViewScrollbarShouldAddAutoTrackInsets", + "HorizontalViewScrollbarStrokeThickness": "HorizontalViewScrollbarStrokeThickness", + "HorizontalViewScrollbarTrackEndInset": "HorizontalViewScrollbarTrackEndInset", + "HorizontalViewScrollbarTrackStartInset": "HorizontalViewScrollbarTrackStartInset", + "IncludedProperties": "IncludedProperties", + "InitialFilter": "InitialFilter", + "InitialFilterExpressions": "InitialFilterExpressions", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroupSortDescriptions": "InitialGroupSortDescriptions", + "InitialGroups": "InitialGroups", + "InitialHighlightFilter": "InitialHighlightFilter", + "InitialHighlightFilterExpressions": "InitialHighlightFilterExpressions", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSummaries": "InitialSummaries", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "IsHorizontalZoomEnabled": "IsHorizontalZoomEnabled", + "IsSeriesHighlightingEnabled": "IsSeriesHighlightingEnabled", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsVerticalZoomEnabled": "IsVerticalZoomEnabled", + "LeftMargin": "LeftMargin", + "LegendHighlightingMode": "LegendHighlightingMode", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemVisibility": "LegendItemVisibility", + "LegendRef": "LegendRef", + "MarkerAutomaticBehavior": "MarkerAutomaticBehavior", + "MarkerBrushes": "MarkerBrushes", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerMaxCount": "MarkerMaxCount", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlines": "MarkerOutlines", + "MarkerThickness": "MarkerThickness", + "MarkerTypes": "MarkerTypes", + "OutlineMode": "OutlineMode", + "Outlines": "Outlines", + "PixelScalingRatio": "PixelScalingRatio", + "PlotAreaMarginBottom": "PlotAreaMarginBottom", + "PlotAreaMarginLeft": "PlotAreaMarginLeft", + "PlotAreaMarginRight": "PlotAreaMarginRight", + "PlotAreaMarginTop": "PlotAreaMarginTop", + "PlotAreaPointerDownRef": "PlotAreaPointerDownRef", + "PlotAreaPointerEnterRef": "PlotAreaPointerEnterRef", + "PlotAreaPointerLeaveRef": "PlotAreaPointerLeaveRef", + "PlotAreaPointerMoveRef": "PlotAreaPointerMoveRef", + "PlotAreaPointerUpRef": "PlotAreaPointerUpRef", + "Resolution": "Resolution", + "RightMargin": "RightMargin", + "SelectedSeriesItems": "SelectedSeriesItems", + "SelectedSeriesItemsChangedRef": "SelectedSeriesItemsChangedRef", + "SelectionBehavior": "SelectionBehavior", + "SelectionBrush": "SelectionBrush", + "SelectionDismissDelayMilliseconds": "SelectionDismissDelayMilliseconds", + "SelectionMode": "SelectionMode", + "SelectionTransitionDuration": "SelectionTransitionDuration", + "SeriesAddedRef": "SeriesAddedRef", + "SeriesClickRef": "SeriesClickRef", + "SeriesPlotAreaMarginHorizontalMode": "SeriesPlotAreaMarginHorizontalMode", + "SeriesPlotAreaMarginVerticalMode": "SeriesPlotAreaMarginVerticalMode", + "SeriesPointerDownRef": "SeriesPointerDownRef", + "SeriesPointerEnterRef": "SeriesPointerEnterRef", + "SeriesPointerLeaveRef": "SeriesPointerLeaveRef", + "SeriesPointerMoveRef": "SeriesPointerMoveRef", + "SeriesPointerUpRef": "SeriesPointerUpRef", + "SeriesRemovedRef": "SeriesRemovedRef", + "SeriesValueLayerUseLegend": "SeriesValueLayerUseLegend", + "ShouldAvoidAxisAnnotationCollisions": "ShouldAvoidAxisAnnotationCollisions", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldPanOnMaximumZoom": "ShouldPanOnMaximumZoom", + "ShouldSimulateHoverMoveCrosshairPoint": "ShouldSimulateHoverMoveCrosshairPoint", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "SortDescriptions": "SortDescriptions", + "Subtitle": "Subtitle", + "SubtitleAlignment": "SubtitleAlignment", + "SubtitleBottomMargin": "SubtitleBottomMargin", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleLeftMargin": "SubtitleLeftMargin", + "SubtitleRightMargin": "SubtitleRightMargin", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextStyle": "SubtitleTextStyle", + "SubtitleTopMargin": "SubtitleTopMargin", + "SummaryDescriptions": "SummaryDescriptions", + "Thickness": "Thickness", + "TitleAlignment": "TitleAlignment", + "TitleBottomMargin": "TitleBottomMargin", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "TitleLeftMargin": "TitleLeftMargin", + "TitleRightMargin": "TitleRightMargin", + "TitleTextColor": "TitleTextColor", + "TitleTextStyle": "TitleTextStyle", + "TitleTopMargin": "TitleTopMargin", + "ToolTipType": "ToolTipType", + "TopMargin": "TopMargin", + "TransitionDuration": "TransitionDuration", + "TransitionEasingFunctionRef": "TransitionEasingFunctionRef", + "TrendLineBrushes": "TrendLineBrushes", + "TrendLineLayerUseLegend": "TrendLineLayerUseLegend", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "TrendLineTypes": "TrendLineTypes", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting", + "UseValueForAutoCalloutLabels": "UseValueForAutoCalloutLabels", + "UserAnnotationInformationRequestedRef": "UserAnnotationInformationRequestedRef", + "UserAnnotationToolTipContentUpdatingRef": "UserAnnotationToolTipContentUpdatingRef", + "ValueLines": "ValueLines", + "ValueLinesBrushes": "ValueLinesBrushes", + "ValueLinesThickness": "ValueLinesThickness", + "VerticalViewScrollbarCornerRadius": "VerticalViewScrollbarCornerRadius", + "VerticalViewScrollbarFill": "VerticalViewScrollbarFill", + "VerticalViewScrollbarInset": "VerticalViewScrollbarInset", + "VerticalViewScrollbarMaxOpacity": "VerticalViewScrollbarMaxOpacity", + "VerticalViewScrollbarMode": "VerticalViewScrollbarMode", + "VerticalViewScrollbarOutline": "VerticalViewScrollbarOutline", + "VerticalViewScrollbarPosition": "VerticalViewScrollbarPosition", + "VerticalViewScrollbarShouldAddAutoTrackInsets": "VerticalViewScrollbarShouldAddAutoTrackInsets", + "VerticalViewScrollbarStrokeThickness": "VerticalViewScrollbarStrokeThickness", + "VerticalViewScrollbarTrackEndInset": "VerticalViewScrollbarTrackEndInset", + "VerticalViewScrollbarTrackStartInset": "VerticalViewScrollbarTrackStartInset", + "VerticalViewScrollbarWidth": "VerticalViewScrollbarWidth", + "WindowRect": "WindowRect", + "WindowRectMinHeight": "WindowRectMinHeight", + "WindowRectMinWidth": "WindowRectMinWidth", + "WindowSizeMinHeight": "WindowSizeMinHeight", + "WindowSizeMinWidth": "WindowSizeMinWidth" + } + } + ], + "DomainChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DomainChartDescriptionMetadata()": "DomainChartDescriptionMetadata()", + "DomainChartDescriptionMetadata": "DomainChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainChartPlotAreaPointerEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DomainChartPlotAreaPointerEventArgs", + "k": "class", + "s": "classes", + "m": { + "ChartPosition": "ChartPosition", + "PlotAreaPosition": "PlotAreaPosition", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DomainChartPlotAreaPointerEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartPlotAreaPointerEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DomainChartPlotAreaPointerEventArgsDescription()": "DomainChartPlotAreaPointerEventArgsDescription()", + "DomainChartPlotAreaPointerEventArgsDescription": "DomainChartPlotAreaPointerEventArgsDescription()", + "PlotAreaPosition": "PlotAreaPosition", + "Type": "Type" + } + } + ], + "DomainChartPlotAreaPointerEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartPlotAreaPointerEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DomainChartPlotAreaPointerEventArgsDescriptionMetadata()": "DomainChartPlotAreaPointerEventArgsDescriptionMetadata()", + "DomainChartPlotAreaPointerEventArgsDescriptionMetadata": "DomainChartPlotAreaPointerEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainChartSeriesPointerEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DomainChartSeriesPointerEventArgs", + "k": "class", + "s": "classes", + "m": { + "CancelSelection": "CancelSelection", + "ChartPosition": "ChartPosition", + "Item": "Item", + "PlotAreaPosition": "PlotAreaPosition", + "Series": "Series", + "WorldPosition": "WorldPosition", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DomainChartSeriesPointerEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartSeriesPointerEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DomainChartSeriesPointerEventArgsDescription()": "DomainChartSeriesPointerEventArgsDescription()", + "DomainChartSeriesPointerEventArgsDescription": "DomainChartSeriesPointerEventArgsDescription()", + "CancelSelection": "CancelSelection", + "ItemRef": "ItemRef", + "PlotAreaPosition": "PlotAreaPosition", + "SeriesRef": "SeriesRef", + "Type": "Type", + "WorldPosition": "WorldPosition" + } + } + ], + "DomainChartSeriesPointerEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartSeriesPointerEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DomainChartSeriesPointerEventArgsDescriptionMetadata()": "DomainChartSeriesPointerEventArgsDescriptionMetadata()", + "DomainChartSeriesPointerEventArgsDescriptionMetadata": "DomainChartSeriesPointerEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainChartTestingInfo": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DomainChartTestingInfo", + "k": "class", + "s": "classes", + "m": { + "DomainChartTestingInfo()": "DomainChartTestingInfo()", + "DomainChartTestingInfo": "DomainChartTestingInfo()", + "MainDataChart": "MainDataChart", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DomainChartTestingInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartTestingInfoDescription", + "k": "class", + "s": "classes", + "m": { + "DomainChartTestingInfoDescription()": "DomainChartTestingInfoDescription()", + "DomainChartTestingInfoDescription": "DomainChartTestingInfoDescription()", + "MainDataChart": "MainDataChart", + "Type": "Type" + } + } + ], + "DomainChartTestingInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartTestingInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DomainChartTestingInfoDescriptionMetadata()": "DomainChartTestingInfoDescriptionMetadata()", + "DomainChartTestingInfoDescriptionMetadata": "DomainChartTestingInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainChartToolbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DomainChartToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DomainChartToolbarDescriptionModule()": "DomainChartToolbarDescriptionModule()", + "DomainChartToolbarDescriptionModule": "DomainChartToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DomainType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/DomainType", + "k": "enum", + "s": "enums" + } + ], + "DoubleCollection": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/DoubleCollection", + "k": "class", + "s": "classes", + "m": { + "DoubleCollection()": "DoubleCollection()", + "DoubleCollection": "DoubleCollection()" + } + } + ], + "DoubleColumn": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DoubleColumn", + "k": "class", + "s": "classes", + "m": { + "DoubleColumn()": "DoubleColumn()", + "DoubleColumn": "DoubleColumn()", + "SetValues(object)": "SetValues(object)", + "SetValues": "SetValues(object)", + "Values": "Values" + } + } + ], + "DoubleValueChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoubleValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "DoubleValueChangedEventArgs(double, double)": "DoubleValueChangedEventArgs(double, double)", + "DoubleValueChangedEventArgs": "DoubleValueChangedEventArgs(double, double)", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "DoubleValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoubleValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DoubleValueChangedEventArgsDescription()": "DoubleValueChangedEventArgsDescription()", + "DoubleValueChangedEventArgsDescription": "DoubleValueChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "DoubleValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoubleValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DoubleValueChangedEventArgsDescriptionMetadata()": "DoubleValueChangedEventArgsDescriptionMetadata()", + "DoubleValueChangedEventArgsDescriptionMetadata": "DoubleValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoughnutChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartCoreDescriptionModule()": "DoughnutChartCoreDescriptionModule()", + "DoughnutChartCoreDescriptionModule": "DoughnutChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartDefaultTooltipsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoughnutChartDefaultTooltipsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDefaultTooltipsDescriptionMetadata()": "DoughnutChartDefaultTooltipsDescriptionMetadata()", + "DoughnutChartDefaultTooltipsDescriptionMetadata": "DoughnutChartDefaultTooltipsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoughnutChartDefaultTooltipsExtendedDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata()": "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata()", + "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata": "DoughnutChartDefaultTooltipsExtendedDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoughnutChartDescription", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDescription()": "DoughnutChartDescription()", + "DoughnutChartDescription": "DoughnutChartDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AllowSliceExplosion": "AllowSliceExplosion", + "AllowSliceSelection": "AllowSliceSelection", + "Background": "Background", + "HoleDimensionsChangedRef": "HoleDimensionsChangedRef", + "InnerExtent": "InnerExtent", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "PixelScalingRatio": "PixelScalingRatio", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "Series": "Series", + "SliceClickRef": "SliceClickRef", + "Type": "Type" + } + } + ], + "DoughnutChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoughnutChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDescriptionMetadata()": "DoughnutChartDescriptionMetadata()", + "DoughnutChartDescriptionMetadata": "DoughnutChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoughnutChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartDescriptionModule()": "DoughnutChartDescriptionModule()", + "DoughnutChartDescriptionModule": "DoughnutChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartInteractivityDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DoughnutChartInteractivityDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartInteractivityDescriptionModule()": "DoughnutChartInteractivityDescriptionModule()", + "DoughnutChartInteractivityDescriptionModule": "DoughnutChartInteractivityDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DoughnutChartLabelVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DoughnutChartLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartLabelVisualData()": "DoughnutChartLabelVisualData()", + "DoughnutChartLabelVisualData": "DoughnutChartLabelVisualData()", + "LabelPosition": "LabelPosition", + "LabelSize": "LabelSize", + "LabelValue": "LabelValue", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "DoughnutChartVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/DoughnutChartVisualData", + "k": "class", + "s": "classes", + "m": { + "DoughnutChartVisualData()": "DoughnutChartVisualData()", + "DoughnutChartVisualData": "DoughnutChartVisualData()", + "DipScalingRatio": "DipScalingRatio", + "Height": "Height", + "HoleRadius": "HoleRadius", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Series": "Series", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "DownloadingMultiScaleImageEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DownloadingMultiScaleImageEventArgs", + "k": "class", + "s": "classes", + "m": { + "DownloadingMultiScaleImageEventArgs()": "DownloadingMultiScaleImageEventArgs()", + "DownloadingMultiScaleImageEventArgs": "DownloadingMultiScaleImageEventArgs()", + "AlternateDownloadHandler": "AlternateDownloadHandler", + "Uri": "Uri" + } + } + ], + "DownloadingMultiScaleImageEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DownloadingMultiScaleImageEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "DownloadingMultiScaleImageEventArgsDescription()": "DownloadingMultiScaleImageEventArgsDescription()", + "DownloadingMultiScaleImageEventArgsDescription": "DownloadingMultiScaleImageEventArgsDescription()", + "Type": "Type", + "Uri": "Uri" + } + } + ], + "DownloadingMultiScaleImageEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DownloadingMultiScaleImageEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "DownloadingMultiScaleImageEventArgsDescriptionMetadata()": "DownloadingMultiScaleImageEventArgsDescriptionMetadata()", + "DownloadingMultiScaleImageEventArgsDescriptionMetadata": "DownloadingMultiScaleImageEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "DVInteractivityDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/DVInteractivityDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "DVInteractivityDescriptionModule()": "DVInteractivityDescriptionModule()", + "DVInteractivityDescriptionModule": "DVInteractivityDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EaseOfMovementIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/EaseOfMovementIndicator", + "k": "class", + "s": "classes", + "m": { + "EaseOfMovementIndicator()": "EaseOfMovementIndicator()", + "EaseOfMovementIndicator": "EaseOfMovementIndicator()" + } + } + ], + "EaseOfMovementIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EaseOfMovementIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "EaseOfMovementIndicatorDescription()": "EaseOfMovementIndicatorDescription()", + "EaseOfMovementIndicatorDescription": "EaseOfMovementIndicatorDescription()", + "Type": "Type" + } + } + ], + "EaseOfMovementIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EaseOfMovementIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EaseOfMovementIndicatorDescriptionMetadata()": "EaseOfMovementIndicatorDescriptionMetadata()", + "EaseOfMovementIndicatorDescriptionMetadata": "EaseOfMovementIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EaseOfMovementIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EaseOfMovementIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "EaseOfMovementIndicatorDescriptionModule()": "EaseOfMovementIndicatorDescriptionModule()", + "EaseOfMovementIndicatorDescriptionModule": "EaseOfMovementIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EasingFunctions": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EasingFunctions", + "k": "class", + "s": "classes", + "m": { + "EasingFunctions()": "EasingFunctions()", + "EasingFunctions": "EasingFunctions()", + "CircleEase(double)": "CircleEase(double)", + "CircleEase": "CircleEase(double)", + "CubicEase(double)": "CubicEase(double)", + "CubicEase": "CubicEase(double)", + "ExponentialEase(double)": "ExponentialEase(double)", + "ExponentialEase": "ExponentialEase(double)" + } + } + ], + "EditModeClickAction": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/EditModeClickAction", + "k": "enum", + "s": "enums" + } + ], + "EditModeType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/EditModeType", + "k": "enum", + "s": "enums" + } + ], + "EditorCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/EditorCellInfo", + "k": "class", + "s": "classes", + "m": { + "EditorCellInfo()": "EditorCellInfo()", + "EditorCellInfo": "EditorCellInfo()", + "DataType": "DataType", + "DateFormatString": "DateFormatString", + "EditTarget": "EditTarget", + "EditValue": "EditValue", + "EditorItemsSource": "EditorItemsSource", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "ErrorMessage": "ErrorMessage", + "IsHidden": "IsHidden", + "ShowTodayButton": "ShowTodayButton", + "ShowTodayButtonPropertyName": "ShowTodayButtonPropertyName", + "TargetColumn": "TargetColumn", + "TargetRow": "TargetRow" + } + } + ], + "EditorCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditorCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "EditorCellInfoDescription()": "EditorCellInfoDescription()", + "EditorCellInfoDescription": "EditorCellInfoDescription()", + "DataType": "DataType", + "DateFormatString": "DateFormatString", + "EditTarget": "EditTarget", + "EditValueRef": "EditValueRef", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "ErrorMessage": "ErrorMessage", + "IsHidden": "IsHidden", + "ShowTodayButton": "ShowTodayButton", + "TargetColumn": "TargetColumn", + "TargetRow": "TargetRow", + "Type": "Type" + } + } + ], + "EditorCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditorCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EditorCellInfoDescriptionMetadata()": "EditorCellInfoDescriptionMetadata()", + "EditorCellInfoDescriptionMetadata": "EditorCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditorCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/EditorCellModelExport", + "k": "class", + "s": "classes", + "m": { + "EditorCellModelExport()": "EditorCellModelExport()", + "EditorCellModelExport": "EditorCellModelExport()", + "DataType": "DataType", + "EditValue": "EditValue", + "ErrorMessage": "ErrorMessage", + "IsHidden": "IsHidden", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "EditorDefinition": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/EditorDefinition", + "k": "class", + "s": "classes", + "m": { + "EditorDefinition()": "EditorDefinition()", + "EditorDefinition": "EditorDefinition()" + } + } + ], + "EditorDefinitionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditorDefinitionDescription", + "k": "class", + "s": "classes", + "m": { + "EditorDefinitionDescription()": "EditorDefinitionDescription()", + "EditorDefinitionDescription": "EditorDefinitionDescription()", + "Type": "Type" + } + } + ], + "EditorDefinitionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditorDefinitionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EditorDefinitionDescriptionMetadata()": "EditorDefinitionDescriptionMetadata()", + "EditorDefinitionDescriptionMetadata": "EditorDefinitionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditorDefinitionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditorDefinitionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "EditorDefinitionDescriptionModule()": "EditorDefinitionDescriptionModule()", + "EditorDefinitionDescriptionModule": "EditorDefinitionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditorRowCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/EditorRowCellInfo", + "k": "class", + "s": "classes", + "m": { + "EditorRowCellInfo()": "EditorRowCellInfo()", + "EditorRowCellInfo": "EditorRowCellInfo()" + } + } + ], + "EditorRowCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditorRowCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "EditorRowCellInfoDescription()": "EditorRowCellInfoDescription()", + "EditorRowCellInfoDescription": "EditorRowCellInfoDescription()", + "Type": "Type" + } + } + ], + "EditorRowCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditorRowCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EditorRowCellInfoDescriptionMetadata()": "EditorRowCellInfoDescriptionMetadata()", + "EditorRowCellInfoDescriptionMetadata": "EditorRowCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditorType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/EditorType", + "k": "enum", + "s": "enums" + } + ], + "EditRowDefinition": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/EditRowDefinition", + "k": "class", + "s": "classes", + "m": { + "EditRowDefinition()": "EditRowDefinition()", + "EditRowDefinition": "EditRowDefinition()" + } + } + ], + "EditRowDefinitionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditRowDefinitionDescription", + "k": "class", + "s": "classes", + "m": { + "EditRowDefinitionDescription()": "EditRowDefinitionDescription()", + "EditRowDefinitionDescription": "EditRowDefinitionDescription()", + "Type": "Type" + } + } + ], + "EditRowDefinitionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditRowDefinitionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "EditRowDefinitionDescriptionMetadata()": "EditRowDefinitionDescriptionMetadata()", + "EditRowDefinitionDescriptionMetadata": "EditRowDefinitionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "EditRowDefinitionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EditRowDefinitionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "EditRowDefinitionDescriptionModule()": "EditRowDefinitionDescriptionModule()", + "EditRowDefinitionDescriptionModule": "EditRowDefinitionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ElevationMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ElevationMode", + "k": "enum", + "s": "enums" + } + ], + "EllipseGeometryData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EllipseGeometryData", + "k": "class", + "s": "classes", + "m": { + "EllipseGeometryData()": "EllipseGeometryData()", + "EllipseGeometryData": "EllipseGeometryData()", + "CenterX": "CenterX", + "CenterY": "CenterY", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "EllipseVisualData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EllipseVisualData", + "k": "class", + "s": "classes", + "m": { + "EllipseVisualData()": "EllipseVisualData()", + "EllipseVisualData": "EllipseVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Height": "Height", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "Width": "Width" + } + } + ], + "EmbeddedRefDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/EmbeddedRefDescription", + "k": "class", + "s": "classes", + "m": { + "EmbeddedRefDescription()": "EmbeddedRefDescription()", + "EmbeddedRefDescription": "EmbeddedRefDescription()", + "RefType": "RefType", + "Type": "Type", + "Value": "Value" + } + } + ], + "EmitIgnoreAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/EmitIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "EmitIgnoreAttribute()": "EmitIgnoreAttribute()", + "EmitIgnoreAttribute": "EmitIgnoreAttribute()" + } + } + ], + "EmitIgnoreSpecificAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/EmitIgnoreSpecificAttribute", + "k": "class", + "s": "classes", + "m": { + "EmitIgnoreSpecificAttribute()": "EmitIgnoreSpecificAttribute()", + "EmitIgnoreSpecificAttribute": "EmitIgnoreSpecificAttribute()" + } + } + ], + "EmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/EmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "EmitIgnoreTypeAttribute()": "EmitIgnoreTypeAttribute()", + "EmitIgnoreTypeAttribute": "EmitIgnoreTypeAttribute()" + } + } + ], + "EncodingUtilities": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/EncodingUtilities", + "k": "class", + "s": "classes", + "m": { + "RegisterEncodingProvider()": "RegisterEncodingProvider()", + "RegisterEncodingProvider": "RegisterEncodingProvider()", + "SetRegistrationAction(Action)": "SetRegistrationAction(Action)", + "SetRegistrationAction": "SetRegistrationAction(Action)" + } + } + ], + "EnterKeyBehaviorAfterEdit": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/EnterKeyBehaviorAfterEdit", + "k": "enum", + "s": "enums" + } + ], + "EnterKeyBehaviors": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/EnterKeyBehaviors", + "k": "enum", + "s": "enums" + } + ], + "ExpansionPanelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ExpansionPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ExpansionPanelDescription()": "ExpansionPanelDescription()", + "ExpansionPanelDescription": "ExpansionPanelDescription()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualCaptionTextColor": "ActualCaptionTextColor", + "ActualDescriptionTextColor": "ActualDescriptionTextColor", + "ActualElevation": "ActualElevation", + "ActualHeaderBackgroundColor": "ActualHeaderBackgroundColor", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "Caption": "Caption", + "CaptionCollapsedTextColor": "CaptionCollapsedTextColor", + "CaptionExpandedTextColor": "CaptionExpandedTextColor", + "CaptionTextColor": "CaptionTextColor", + "DescriptionCollapsedTextColor": "DescriptionCollapsedTextColor", + "DescriptionExpandedTextColor": "DescriptionExpandedTextColor", + "DescriptionText": "DescriptionText", + "DescriptionTextColor": "DescriptionTextColor", + "Elevation": "Elevation", + "Expanded": "Expanded", + "HeaderBackgroundColor": "HeaderBackgroundColor", + "HeaderCollapsedBackgroundColor": "HeaderCollapsedBackgroundColor", + "HeaderExpandedBackgroundColor": "HeaderExpandedBackgroundColor", + "OnCollapsedRef": "OnCollapsedRef", + "OnExpandedRef": "OnExpandedRef", + "Type": "Type" + } + } + ], + "ExpansionPanelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ExpansionPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ExpansionPanelDescriptionMetadata()": "ExpansionPanelDescriptionMetadata()", + "ExpansionPanelDescriptionMetadata": "ExpansionPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ExpansionPanelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ExpansionPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ExpansionPanelDescriptionModule()": "ExpansionPanelDescriptionModule()", + "ExpansionPanelDescriptionModule": "ExpansionPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FastReflectionHelper": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FastReflectionHelper", + "k": "class", + "s": "classes", + "m": { + "FastReflectionHelper()": "FastReflectionHelper()", + "FastReflectionHelper": "FastReflectionHelper()", + "FastReflectionHelper(bool, string)": "FastReflectionHelper(bool, string)", + "GetPropertyValue(object)": "GetPropertyValue(object)", + "GetPropertyValue": "GetPropertyValue(object)", + "GetPropertyValue(Type, object)": "GetPropertyValue(Type, object)", + "Invalid": "Invalid", + "PropertyName": "PropertyName", + "SetPropertyValue(object, object)": "SetPropertyValue(object, object)", + "SetPropertyValue": "SetPropertyValue(object, object)", + "UseTraditionalReflection": "UseTraditionalReflection" + } + } + ], + "FastStochasticOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FastStochasticOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "FastStochasticOscillatorIndicator()": "FastStochasticOscillatorIndicator()", + "FastStochasticOscillatorIndicator": "FastStochasticOscillatorIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "FastStochasticOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FastStochasticOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "FastStochasticOscillatorIndicatorDescription()": "FastStochasticOscillatorIndicatorDescription()", + "FastStochasticOscillatorIndicatorDescription": "FastStochasticOscillatorIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "FastStochasticOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FastStochasticOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FastStochasticOscillatorIndicatorDescriptionMetadata()": "FastStochasticOscillatorIndicatorDescriptionMetadata()", + "FastStochasticOscillatorIndicatorDescriptionMetadata": "FastStochasticOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FastStochasticOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FastStochasticOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FastStochasticOscillatorIndicatorDescriptionModule()": "FastStochasticOscillatorIndicatorDescriptionModule()", + "FastStochasticOscillatorIndicatorDescriptionModule": "FastStochasticOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FeatureState": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/FeatureState", + "k": "enum", + "s": "enums" + } + ], + "FilterCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/FilterCellInfo", + "k": "class", + "s": "classes", + "m": { + "FilterCellInfo()": "FilterCellInfo()", + "FilterCellInfo": "FilterCellInfo()", + "ClearIconLeft": "ClearIconLeft", + "ClearIconTop": "ClearIconTop", + "DataType": "DataType", + "EditorLeft": "EditorLeft", + "EditorTop": "EditorTop", + "Filter": "Filter", + "FilterExpression": "FilterExpression", + "FilterOperands": "FilterOperands", + "FilterValue": "FilterValue", + "OperatorType": "OperatorType", + "SelectorLeft": "SelectorLeft", + "SelectorTop": "SelectorTop" + } + } + ], + "FilterCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "FilterCellInfoDescription()": "FilterCellInfoDescription()", + "FilterCellInfoDescription": "FilterCellInfoDescription()", + "ClearIconLeft": "ClearIconLeft", + "ClearIconTop": "ClearIconTop", + "DataType": "DataType", + "EditorLeft": "EditorLeft", + "EditorTop": "EditorTop", + "Filter": "Filter", + "FilterExpression": "FilterExpression", + "FilterOperands": "FilterOperands", + "FilterValueRef": "FilterValueRef", + "OperatorType": "OperatorType", + "SelectorLeft": "SelectorLeft", + "SelectorTop": "SelectorTop", + "Type": "Type" + } + } + ], + "FilterCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterCellInfoDescriptionMetadata()": "FilterCellInfoDescriptionMetadata()", + "FilterCellInfoDescriptionMetadata": "FilterCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/FilterCellModelExport", + "k": "class", + "s": "classes", + "m": { + "FilterCellModelExport()": "FilterCellModelExport()", + "FilterCellModelExport": "FilterCellModelExport()", + "ClearIconLeft": "ClearIconLeft", + "ClearIconTop": "ClearIconTop", + "DataType": "DataType", + "EditorLeft": "EditorLeft", + "EditorTop": "EditorTop", + "FilterValue": "FilterValue", + "IsEnabled": "IsEnabled", + "OperatorType": "OperatorType", + "SelectorLeft": "SelectorLeft", + "SelectorTop": "SelectorTop", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "FilterComparisonType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/FilterComparisonType", + "k": "enum", + "s": "enums" + } + ], + "FilterDialogRenderCompletedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/FilterDialogRenderCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "FilterDialogRenderCompletedEventArgs()": "FilterDialogRenderCompletedEventArgs()", + "FilterDialogRenderCompletedEventArgs": "FilterDialogRenderCompletedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FilterDialogRenderCompletedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterDialogRenderCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FilterDialogRenderCompletedEventArgsDescription()": "FilterDialogRenderCompletedEventArgsDescription()", + "FilterDialogRenderCompletedEventArgsDescription": "FilterDialogRenderCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "FilterDialogRenderCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterDialogRenderCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterDialogRenderCompletedEventArgsDescriptionMetadata()": "FilterDialogRenderCompletedEventArgsDescriptionMetadata()", + "FilterDialogRenderCompletedEventArgsDescriptionMetadata": "FilterDialogRenderCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterExpression", + "k": "class", + "s": "classes", + "m": { + "FilterExpression()": "FilterExpression()", + "FilterExpression": "FilterExpression()", + "Add(IFilterExpression)": "Add(IFilterExpression)", + "Add": "Add(IFilterExpression)", + "Add(object)": "Add(object)", + "And(IFilterExpression)": "And(IFilterExpression)", + "And": "And(IFilterExpression)", + "Cast(DataSourceSchemaPropertyType)": "Cast(DataSourceSchemaPropertyType)", + "Cast": "Cast(DataSourceSchemaPropertyType)", + "Cast(string)": "Cast(string)", + "Ceiling()": "Ceiling()", + "Ceiling": "Ceiling()", + "Concat(IFilterExpression)": "Concat(IFilterExpression)", + "Concat": "Concat(IFilterExpression)", + "Concat(string)": "Concat(string)", + "Contains(IFilterExpression)": "Contains(IFilterExpression)", + "Contains": "Contains(IFilterExpression)", + "Contains(string)": "Contains(string)", + "Date()": "Date()", + "Date": "Date()", + "Day()": "Day()", + "Day": "Day()", + "Divide(IFilterExpression)": "Divide(IFilterExpression)", + "Divide": "Divide(IFilterExpression)", + "Divide(object)": "Divide(object)", + "DividedBy(IFilterExpression)": "DividedBy(IFilterExpression)", + "DividedBy": "DividedBy(IFilterExpression)", + "DividedBy(object)": "DividedBy(object)", + "EndsWith(IFilterExpression)": "EndsWith(IFilterExpression)", + "EndsWith": "EndsWith(IFilterExpression)", + "EndsWith(string)": "EndsWith(string)", + "Env(string)": "Env(string)", + "Env": "Env(string)", + "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)": "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)", + "Evaluate": "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "Floor()": "Floor()", + "Floor": "Floor()", + "Function(FilterExpressionFunctionType, params IFilterExpression[])": "Function(FilterExpressionFunctionType, params IFilterExpression[])", + "Function": "Function(FilterExpressionFunctionType, params IFilterExpression[])", + "Group()": "Group()", + "Group": "Group()", + "Hour()": "Hour()", + "Hour": "Hour()", + "IndexOf(IFilterExpression)": "IndexOf(IFilterExpression)", + "IndexOf": "IndexOf(IFilterExpression)", + "IndexOf(string)": "IndexOf(string)", + "IsAutoGenerated": "IsAutoGenerated", + "IsEqualTo(IFilterExpression)": "IsEqualTo(IFilterExpression)", + "IsEqualTo": "IsEqualTo(IFilterExpression)", + "IsEqualTo(object)": "IsEqualTo(object)", + "IsFilterExpression(object)": "IsFilterExpression(object)", + "IsFilterExpression": "IsFilterExpression(object)", + "IsFunction": "IsFunction", + "IsGreaterThan(IFilterExpression)": "IsGreaterThan(IFilterExpression)", + "IsGreaterThan": "IsGreaterThan(IFilterExpression)", + "IsGreaterThan(object)": "IsGreaterThan(object)", + "IsGreaterThanOrEqualTo(IFilterExpression)": "IsGreaterThanOrEqualTo(IFilterExpression)", + "IsGreaterThanOrEqualTo": "IsGreaterThanOrEqualTo(IFilterExpression)", + "IsGreaterThanOrEqualTo(object)": "IsGreaterThanOrEqualTo(object)", + "IsLast30Days()": "IsLast30Days()", + "IsLast30Days": "IsLast30Days()", + "IsLast365Days()": "IsLast365Days()", + "IsLast365Days": "IsLast365Days()", + "IsLast7Days()": "IsLast7Days()", + "IsLast7Days": "IsLast7Days()", + "IsLastMonth()": "IsLastMonth()", + "IsLastMonth": "IsLastMonth()", + "IsLastQuarter()": "IsLastQuarter()", + "IsLastQuarter": "IsLastQuarter()", + "IsLastWeek()": "IsLastWeek()", + "IsLastWeek": "IsLastWeek()", + "IsLastYear()": "IsLastYear()", + "IsLastYear": "IsLastYear()", + "IsLessThan(IFilterExpression)": "IsLessThan(IFilterExpression)", + "IsLessThan": "IsLessThan(IFilterExpression)", + "IsLessThan(object)": "IsLessThan(object)", + "IsLessThanOrEqualTo(IFilterExpression)": "IsLessThanOrEqualTo(IFilterExpression)", + "IsLessThanOrEqualTo": "IsLessThanOrEqualTo(IFilterExpression)", + "IsLessThanOrEqualTo(object)": "IsLessThanOrEqualTo(object)", + "IsLiteral": "IsLiteral", + "IsMonthToDate()": "IsMonthToDate()", + "IsMonthToDate": "IsMonthToDate()", + "IsNextMonth()": "IsNextMonth()", + "IsNextMonth": "IsNextMonth()", + "IsNextQuarter()": "IsNextQuarter()", + "IsNextQuarter": "IsNextQuarter()", + "IsNextWeek()": "IsNextWeek()", + "IsNextWeek": "IsNextWeek()", + "IsNextYear()": "IsNextYear()", + "IsNextYear": "IsNextYear()", + "IsNotEqualTo(IFilterExpression)": "IsNotEqualTo(IFilterExpression)", + "IsNotEqualTo": "IsNotEqualTo(IFilterExpression)", + "IsNotEqualTo(object)": "IsNotEqualTo(object)", + "IsNull": "IsNull", + "IsOf(DataSourceSchemaPropertyType)": "IsOf(DataSourceSchemaPropertyType)", + "IsOf": "IsOf(DataSourceSchemaPropertyType)", + "IsOf(string)": "IsOf(string)", + "IsOperation": "IsOperation", + "IsPropertyReference": "IsPropertyReference", + "IsQ1()": "IsQ1()", + "IsQ1": "IsQ1()", + "IsQ2()": "IsQ2()", + "IsQ2": "IsQ2()", + "IsQ3()": "IsQ3()", + "IsQ3": "IsQ3()", + "IsQ4()": "IsQ4()", + "IsQ4": "IsQ4()", + "IsQuarterToDate()": "IsQuarterToDate()", + "IsQuarterToDate": "IsQuarterToDate()", + "IsSchemaType(object)": "IsSchemaType(object)", + "IsSchemaType": "IsSchemaType(object)", + "IsThisMonth()": "IsThisMonth()", + "IsThisMonth": "IsThisMonth()", + "IsThisQuarter()": "IsThisQuarter()", + "IsThisQuarter": "IsThisQuarter()", + "IsThisWeek()": "IsThisWeek()", + "IsThisWeek": "IsThisWeek()", + "IsThisYear()": "IsThisYear()", + "IsThisYear": "IsThisYear()", + "IsToday()": "IsToday()", + "IsToday": "IsToday()", + "IsTomorrow()": "IsTomorrow()", + "IsTomorrow": "IsTomorrow()", + "IsTrailingTwelveMonths()": "IsTrailingTwelveMonths()", + "IsTrailingTwelveMonths": "IsTrailingTwelveMonths()", + "IsWrapper": "IsWrapper", + "IsYearToDate()": "IsYearToDate()", + "IsYearToDate": "IsYearToDate()", + "IsYesterday()": "IsYesterday()", + "IsYesterday": "IsYesterday()", + "Length()": "Length()", + "Length": "Length()", + "Literal(object)": "Literal(object)", + "Literal": "Literal(object)", + "MarkAutoGenerated()": "MarkAutoGenerated()", + "MarkAutoGenerated": "MarkAutoGenerated()", + "Match(object, IDataSourceDataProvider, IDataSourceSchema)": "Match(object, IDataSourceDataProvider, IDataSourceSchema)", + "Match": "Match(object, IDataSourceDataProvider, IDataSourceSchema)", + "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "MatchWithEnvironment": "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "Minus(IFilterExpression)": "Minus(IFilterExpression)", + "Minus": "Minus(IFilterExpression)", + "Minus(object)": "Minus(object)", + "Minute()": "Minute()", + "Minute": "Minute()", + "Modulo(IFilterExpression)": "Modulo(IFilterExpression)", + "Modulo": "Modulo(IFilterExpression)", + "Modulo(object)": "Modulo(object)", + "Month()": "Month()", + "Month": "Month()", + "Multiply(IFilterExpression)": "Multiply(IFilterExpression)", + "Multiply": "Multiply(IFilterExpression)", + "Multiply(object)": "Multiply(object)", + "Not()": "Not()", + "Not": "Not()", + "Now()": "Now()", + "Now": "Now()", + "NullLiteral()": "NullLiteral()", + "NullLiteral": "NullLiteral()", + "Operation(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)": "Operation(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)", + "Operation": "Operation(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)", + "Operation(IFilterExpression, FilterExpressionOperatorType, object)": "Operation(IFilterExpression, FilterExpressionOperatorType, object)", + "Operation(string, FilterExpressionOperatorType, IFilterExpression)": "Operation(string, FilterExpressionOperatorType, IFilterExpression)", + "Operation(string, FilterExpressionOperatorType, object)": "Operation(string, FilterExpressionOperatorType, object)", + "Or(IFilterExpression)": "Or(IFilterExpression)", + "Or": "Or(IFilterExpression)", + "Plus(IFilterExpression)": "Plus(IFilterExpression)", + "Plus": "Plus(IFilterExpression)", + "Plus(object)": "Plus(object)", + "Precedence": "Precedence", + "Property(string)": "Property(string)", + "Property": "Property(string)", + "Replace(IFilterExpression, IFilterExpression)": "Replace(IFilterExpression, IFilterExpression)", + "Replace": "Replace(IFilterExpression, IFilterExpression)", + "Replace(IFilterExpression, string)": "Replace(IFilterExpression, string)", + "Replace(string, IFilterExpression)": "Replace(string, IFilterExpression)", + "Replace(string, string)": "Replace(string, string)", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()", + "Round()": "Round()", + "Round": "Round()", + "Second()": "Second()", + "Second": "Second()", + "StartsWith(IFilterExpression)": "StartsWith(IFilterExpression)", + "StartsWith": "StartsWith(IFilterExpression)", + "StartsWith(string)": "StartsWith(string)", + "Substring(IFilterExpression)": "Substring(IFilterExpression)", + "Substring": "Substring(IFilterExpression)", + "Substring(IFilterExpression, IFilterExpression)": "Substring(IFilterExpression, IFilterExpression)", + "Substring(IFilterExpression, int)": "Substring(IFilterExpression, int)", + "Substring(int)": "Substring(int)", + "Substring(int, IFilterExpression)": "Substring(int, IFilterExpression)", + "Substring(int, int)": "Substring(int, int)", + "Subtract(IFilterExpression)": "Subtract(IFilterExpression)", + "Subtract": "Subtract(IFilterExpression)", + "Subtract(object)": "Subtract(object)", + "Time()": "Time()", + "Time": "Time()", + "Times(IFilterExpression)": "Times(IFilterExpression)", + "Times": "Times(IFilterExpression)", + "Times(object)": "Times(object)", + "ToLower()": "ToLower()", + "ToLower": "ToLower()", + "ToUpper()": "ToUpper()", + "ToUpper": "ToUpper()", + "Trim()": "Trim()", + "Trim": "Trim()", + "UnquotedLiteral(string)": "UnquotedLiteral(string)", + "UnquotedLiteral": "UnquotedLiteral(string)", + "UpdateBooleanReturn()": "UpdateBooleanReturn()", + "UpdateBooleanReturn": "UpdateBooleanReturn()", + "Year()": "Year()", + "Year": "Year()" + } + } + ], + "FilterExpressionCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterExpressionCollection", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionCollection()": "FilterExpressionCollection()", + "FilterExpressionCollection": "FilterExpressionCollection()" + } + } + ], + "FilterExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionDescription()": "FilterExpressionDescription()", + "FilterExpressionDescription": "FilterExpressionDescription()", + "IsAutoGenerated": "IsAutoGenerated", + "IsFunction": "IsFunction", + "IsLiteral": "IsLiteral", + "IsNull": "IsNull", + "IsOperation": "IsOperation", + "IsPropertyReference": "IsPropertyReference", + "IsWrapper": "IsWrapper", + "Precedence": "Precedence", + "Type": "Type" + } + } + ], + "FilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionDescriptionMetadata()": "FilterExpressionDescriptionMetadata()", + "FilterExpressionDescriptionMetadata": "FilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterExpressionEnvironment": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterExpressionEnvironment", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionEnvironment()": "FilterExpressionEnvironment()", + "FilterExpressionEnvironment": "FilterExpressionEnvironment()", + "GetVariableValue(string)": "GetVariableValue(string)", + "GetVariableValue": "GetVariableValue(string)", + "HasVariable(string)": "HasVariable(string)", + "HasVariable": "HasVariable(string)", + "SetVariableValue(string, object)": "SetVariableValue(string, object)", + "SetVariableValue": "SetVariableValue(string, object)" + } + } + ], + "FilterExpressionFunctionType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/FilterExpressionFunctionType", + "k": "enum", + "s": "enums" + } + ], + "FilterExpressionOperatorType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/FilterExpressionOperatorType", + "k": "enum", + "s": "enums" + } + ], + "FilterExpressionParsingHelper": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterExpressionParsingHelper", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionParsingHelper()": "FilterExpressionParsingHelper()", + "FilterExpressionParsingHelper": "FilterExpressionParsingHelper()", + "GetFilterExpression(string)": "GetFilterExpression(string)", + "GetFilterExpression": "GetFilterExpression(string)" + } + } + ], + "FilterExpressionParsingResult": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterExpressionParsingResult", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionParsingResult()": "FilterExpressionParsingResult()", + "FilterExpressionParsingResult": "FilterExpressionParsingResult()", + "Errors": "Errors", + "Result": "Result" + } + } + ], + "FilterExpressionVisitor": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterExpressionVisitor", + "k": "class", + "s": "classes", + "m": { + "FilterExpressionVisitor()": "FilterExpressionVisitor()", + "FilterExpressionVisitor": "FilterExpressionVisitor()", + "Visit(IFilterExpression)": "Visit(IFilterExpression)", + "Visit": "Visit(IFilterExpression)", + "VisitFunctionExpression(IFunctionFilterExpression)": "VisitFunctionExpression(IFunctionFilterExpression)", + "VisitFunctionExpression": "VisitFunctionExpression(IFunctionFilterExpression)", + "VisitLiteralExpression(ILiteralFilterExpression)": "VisitLiteralExpression(ILiteralFilterExpression)", + "VisitLiteralExpression": "VisitLiteralExpression(ILiteralFilterExpression)", + "VisitOperationExpression(IOperationFilterExpression)": "VisitOperationExpression(IOperationFilterExpression)", + "VisitOperationExpression": "VisitOperationExpression(IOperationFilterExpression)", + "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)", + "VisitPropertyReferenceExpression": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)" + } + } + ], + "FilterExpressionWrapperType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/FilterExpressionWrapperType", + "k": "enum", + "s": "enums" + } + ], + "FilterFactory": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterFactory", + "k": "class", + "s": "classes", + "m": { + "FilterFactory()": "FilterFactory()", + "FilterFactory": "FilterFactory()", + "Add(IFilterExpression, IFilterExpression)": "Add(IFilterExpression, IFilterExpression)", + "Add": "Add(IFilterExpression, IFilterExpression)", + "And(IFilterExpression, IFilterExpression)": "And(IFilterExpression, IFilterExpression)", + "And": "And(IFilterExpression, IFilterExpression)", + "Build(DataSourceFilterBuilderBuildCallback)": "Build(DataSourceFilterBuilderBuildCallback)", + "Build": "Build(DataSourceFilterBuilderBuildCallback)", + "Cast(IFilterExpression, DataSourceSchemaPropertyType)": "Cast(IFilterExpression, DataSourceSchemaPropertyType)", + "Cast": "Cast(IFilterExpression, DataSourceSchemaPropertyType)", + "Ceiling(IFilterExpression)": "Ceiling(IFilterExpression)", + "Ceiling": "Ceiling(IFilterExpression)", + "Concat(IFilterExpression, IFilterExpression)": "Concat(IFilterExpression, IFilterExpression)", + "Concat": "Concat(IFilterExpression, IFilterExpression)", + "Concat(IFilterExpression, string)": "Concat(IFilterExpression, string)", + "Contains(IFilterExpression, IFilterExpression)": "Contains(IFilterExpression, IFilterExpression)", + "Contains": "Contains(IFilterExpression, IFilterExpression)", + "Contains(IFilterExpression, string)": "Contains(IFilterExpression, string)", + "Date(IFilterExpression)": "Date(IFilterExpression)", + "Date": "Date(IFilterExpression)", + "Day(IFilterExpression)": "Day(IFilterExpression)", + "Day": "Day(IFilterExpression)", + "Divide(IFilterExpression, IFilterExpression)": "Divide(IFilterExpression, IFilterExpression)", + "Divide": "Divide(IFilterExpression, IFilterExpression)", + "EndsWith(IFilterExpression, IFilterExpression)": "EndsWith(IFilterExpression, IFilterExpression)", + "EndsWith": "EndsWith(IFilterExpression, IFilterExpression)", + "EndsWith(IFilterExpression, string)": "EndsWith(IFilterExpression, string)", + "Env(IFilterExpression)": "Env(IFilterExpression)", + "Env": "Env(IFilterExpression)", + "Equal(IFilterExpression, IFilterExpression)": "Equal(IFilterExpression, IFilterExpression)", + "Equal": "Equal(IFilterExpression, IFilterExpression)", + "Floor(IFilterExpression)": "Floor(IFilterExpression)", + "Floor": "Floor(IFilterExpression)", + "GreaterThan(IFilterExpression, IFilterExpression)": "GreaterThan(IFilterExpression, IFilterExpression)", + "GreaterThan": "GreaterThan(IFilterExpression, IFilterExpression)", + "GreaterThanOrEqual(IFilterExpression, IFilterExpression)": "GreaterThanOrEqual(IFilterExpression, IFilterExpression)", + "GreaterThanOrEqual": "GreaterThanOrEqual(IFilterExpression, IFilterExpression)", + "Group(IFilterExpression)": "Group(IFilterExpression)", + "Group": "Group(IFilterExpression)", + "Hour(IFilterExpression)": "Hour(IFilterExpression)", + "Hour": "Hour(IFilterExpression)", + "IndexOf(IFilterExpression, IFilterExpression)": "IndexOf(IFilterExpression, IFilterExpression)", + "IndexOf": "IndexOf(IFilterExpression, IFilterExpression)", + "IndexOf(IFilterExpression, string)": "IndexOf(IFilterExpression, string)", + "Instance": "Instance", + "IsOf(IFilterExpression, DataSourceSchemaPropertyType)": "IsOf(IFilterExpression, DataSourceSchemaPropertyType)", + "IsOf": "IsOf(IFilterExpression, DataSourceSchemaPropertyType)", + "Length(IFilterExpression)": "Length(IFilterExpression)", + "Length": "Length(IFilterExpression)", + "LessThan(IFilterExpression, IFilterExpression)": "LessThan(IFilterExpression, IFilterExpression)", + "LessThan": "LessThan(IFilterExpression, IFilterExpression)", + "LessThanOrEqual(IFilterExpression, IFilterExpression)": "LessThanOrEqual(IFilterExpression, IFilterExpression)", + "LessThanOrEqual": "LessThanOrEqual(IFilterExpression, IFilterExpression)", + "Literal(object)": "Literal(object)", + "Literal": "Literal(object)", + "Minute(IFilterExpression)": "Minute(IFilterExpression)", + "Minute": "Minute(IFilterExpression)", + "Modulus(IFilterExpression, IFilterExpression)": "Modulus(IFilterExpression, IFilterExpression)", + "Modulus": "Modulus(IFilterExpression, IFilterExpression)", + "Month(IFilterExpression)": "Month(IFilterExpression)", + "Month": "Month(IFilterExpression)", + "Multiply(IFilterExpression, IFilterExpression)": "Multiply(IFilterExpression, IFilterExpression)", + "Multiply": "Multiply(IFilterExpression, IFilterExpression)", + "Not(IFilterExpression)": "Not(IFilterExpression)", + "Not": "Not(IFilterExpression)", + "NotEqual(IFilterExpression, IFilterExpression)": "NotEqual(IFilterExpression, IFilterExpression)", + "NotEqual": "NotEqual(IFilterExpression, IFilterExpression)", + "Now()": "Now()", + "Now": "Now()", + "Or(IFilterExpression, IFilterExpression)": "Or(IFilterExpression, IFilterExpression)", + "Or": "Or(IFilterExpression, IFilterExpression)", + "Property(string)": "Property(string)", + "Property": "Property(string)", + "Replace(IFilterExpression, IFilterExpression, IFilterExpression)": "Replace(IFilterExpression, IFilterExpression, IFilterExpression)", + "Replace": "Replace(IFilterExpression, IFilterExpression, IFilterExpression)", + "Replace(IFilterExpression, IFilterExpression, string)": "Replace(IFilterExpression, IFilterExpression, string)", + "Replace(IFilterExpression, string, IFilterExpression)": "Replace(IFilterExpression, string, IFilterExpression)", + "Replace(IFilterExpression, string, string)": "Replace(IFilterExpression, string, string)", + "Round(IFilterExpression)": "Round(IFilterExpression)", + "Round": "Round(IFilterExpression)", + "Second(IFilterExpression)": "Second(IFilterExpression)", + "Second": "Second(IFilterExpression)", + "StartsWith(IFilterExpression, IFilterExpression)": "StartsWith(IFilterExpression, IFilterExpression)", + "StartsWith": "StartsWith(IFilterExpression, IFilterExpression)", + "StartsWith(IFilterExpression, string)": "StartsWith(IFilterExpression, string)", + "Substring(IFilterExpression, IFilterExpression)": "Substring(IFilterExpression, IFilterExpression)", + "Substring": "Substring(IFilterExpression, IFilterExpression)", + "Substring(IFilterExpression, IFilterExpression, IFilterExpression)": "Substring(IFilterExpression, IFilterExpression, IFilterExpression)", + "Substring(IFilterExpression, IFilterExpression, int)": "Substring(IFilterExpression, IFilterExpression, int)", + "Substring(IFilterExpression, int)": "Substring(IFilterExpression, int)", + "Substring(IFilterExpression, int, IFilterExpression)": "Substring(IFilterExpression, int, IFilterExpression)", + "Substring(IFilterExpression, int, int)": "Substring(IFilterExpression, int, int)", + "Subtract(IFilterExpression, IFilterExpression)": "Subtract(IFilterExpression, IFilterExpression)", + "Subtract": "Subtract(IFilterExpression, IFilterExpression)", + "Time(IFilterExpression)": "Time(IFilterExpression)", + "Time": "Time(IFilterExpression)", + "ToLower(IFilterExpression)": "ToLower(IFilterExpression)", + "ToLower": "ToLower(IFilterExpression)", + "ToUpper(IFilterExpression)": "ToUpper(IFilterExpression)", + "ToUpper": "ToUpper(IFilterExpression)", + "TodayOverride": "TodayOverride", + "Trim(IFilterExpression)": "Trim(IFilterExpression)", + "Trim": "Trim(IFilterExpression)", + "Year(IFilterExpression)": "Year(IFilterExpression)", + "Year": "Year(IFilterExpression)" + } + } + ], + "FilterLogicalOperator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/FilterLogicalOperator", + "k": "enum", + "s": "enums" + } + ], + "FilterOperand": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/FilterOperand", + "k": "class", + "s": "classes", + "m": { + "FilterOperand()": "FilterOperand()", + "FilterOperand": "FilterOperand()", + "DisplayName": "DisplayName", + "EditorType": "EditorType", + "FilterFactory": "FilterFactory", + "ID": "ID", + "Icon": "Icon", + "IsInputRequired": "IsInputRequired", + "OnFilterRequested(GridCustomFilterRequestedEventArgs)": "OnFilterRequested(GridCustomFilterRequestedEventArgs)", + "OnFilterRequested": "OnFilterRequested(GridCustomFilterRequestedEventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FilterOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterOperandDescription", + "k": "class", + "s": "classes", + "m": { + "FilterOperandDescription()": "FilterOperandDescription()", + "FilterOperandDescription": "FilterOperandDescription()", + "DisplayName": "DisplayName", + "EditorType": "EditorType", + "FilterRequestedRef": "FilterRequestedRef", + "ID": "ID", + "Icon": "Icon", + "IsInputRequired": "IsInputRequired", + "Type": "Type" + } + } + ], + "FilterOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterOperandDescriptionMetadata()": "FilterOperandDescriptionMetadata()", + "FilterOperandDescriptionMetadata": "FilterOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterOperandDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterOperandDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FilterOperandDescriptionModule()": "FilterOperandDescriptionModule()", + "FilterOperandDescriptionModule": "FilterOperandDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterRowDefinition": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/FilterRowDefinition", + "k": "class", + "s": "classes", + "m": { + "FilterRowDefinition()": "FilterRowDefinition()", + "FilterRowDefinition": "FilterRowDefinition()", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty" + } + } + ], + "FilterRowDefinitionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterRowDefinitionDescription", + "k": "class", + "s": "classes", + "m": { + "FilterRowDefinitionDescription()": "FilterRowDefinitionDescription()", + "FilterRowDefinitionDescription": "FilterRowDefinitionDescription()", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "Type": "Type" + } + } + ], + "FilterRowDefinitionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterRowDefinitionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterRowDefinitionDescriptionMetadata()": "FilterRowDefinitionDescriptionMetadata()", + "FilterRowDefinitionDescriptionMetadata": "FilterRowDefinitionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterRowDefinitionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterRowDefinitionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FilterRowDefinitionDescriptionModule()": "FilterRowDefinitionDescriptionModule()", + "FilterRowDefinitionDescriptionModule": "FilterRowDefinitionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterStringErrorsParsingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FilterStringErrorsParsingEventArgs", + "k": "class", + "s": "classes", + "m": { + "Errors": "Errors", + "PropertyName": "PropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FilterStringErrorsParsingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterStringErrorsParsingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FilterStringErrorsParsingEventArgsDescription()": "FilterStringErrorsParsingEventArgsDescription()", + "FilterStringErrorsParsingEventArgsDescription": "FilterStringErrorsParsingEventArgsDescription()", + "Errors": "Errors", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "FilterStringErrorsParsingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FilterStringErrorsParsingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FilterStringErrorsParsingEventArgsDescriptionMetadata()": "FilterStringErrorsParsingEventArgsDescriptionMetadata()", + "FilterStringErrorsParsingEventArgsDescriptionMetadata": "FilterStringErrorsParsingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FilterUIType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/FilterUIType", + "k": "enum", + "s": "enums" + } + ], + "FinalValueLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FinalValueLayer", + "k": "class", + "s": "classes", + "m": { + "FinalValueLayer()": "FinalValueLayer()", + "FinalValueLayer": "FinalValueLayer()", + "AxisAnnotationBackground": "AxisAnnotationBackground", + "AxisAnnotationBackgroundCornerRadius": "AxisAnnotationBackgroundCornerRadius", + "AxisAnnotationBackgroundCornerRadiusProperty": "AxisAnnotationBackgroundCornerRadiusProperty", + "AxisAnnotationBackgroundProperty": "AxisAnnotationBackgroundProperty", + "AxisAnnotationInterpolatedValuePrecision": "AxisAnnotationInterpolatedValuePrecision", + "AxisAnnotationInterpolatedValuePrecisionProperty": "AxisAnnotationInterpolatedValuePrecisionProperty", + "AxisAnnotationOutline": "AxisAnnotationOutline", + "AxisAnnotationOutlineProperty": "AxisAnnotationOutlineProperty", + "AxisAnnotationPaddingBottom": "AxisAnnotationPaddingBottom", + "AxisAnnotationPaddingBottomProperty": "AxisAnnotationPaddingBottomProperty", + "AxisAnnotationPaddingLeft": "AxisAnnotationPaddingLeft", + "AxisAnnotationPaddingLeftProperty": "AxisAnnotationPaddingLeftProperty", + "AxisAnnotationPaddingRight": "AxisAnnotationPaddingRight", + "AxisAnnotationPaddingRightProperty": "AxisAnnotationPaddingRightProperty", + "AxisAnnotationPaddingTop": "AxisAnnotationPaddingTop", + "AxisAnnotationPaddingTopProperty": "AxisAnnotationPaddingTopProperty", + "AxisAnnotationStrokeThickness": "AxisAnnotationStrokeThickness", + "AxisAnnotationStrokeThicknessProperty": "AxisAnnotationStrokeThicknessProperty", + "AxisAnnotationTextColor": "AxisAnnotationTextColor", + "AxisAnnotationTextColorProperty": "AxisAnnotationTextColorProperty", + "FinalValueSelectionMode": "FinalValueSelectionMode", + "FinalValueSelectionModeProperty": "FinalValueSelectionModeProperty", + "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnAxisAnnotationFormatLabel": "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty" + } + } + ], + "FinalValueLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinalValueLayerDescription", + "k": "class", + "s": "classes", + "m": { + "FinalValueLayerDescription()": "FinalValueLayerDescription()", + "FinalValueLayerDescription": "FinalValueLayerDescription()", + "AxisAnnotationBackground": "AxisAnnotationBackground", + "AxisAnnotationBackgroundCornerRadius": "AxisAnnotationBackgroundCornerRadius", + "AxisAnnotationFormatLabelRef": "AxisAnnotationFormatLabelRef", + "AxisAnnotationInterpolatedValuePrecision": "AxisAnnotationInterpolatedValuePrecision", + "AxisAnnotationOutline": "AxisAnnotationOutline", + "AxisAnnotationPaddingBottom": "AxisAnnotationPaddingBottom", + "AxisAnnotationPaddingLeft": "AxisAnnotationPaddingLeft", + "AxisAnnotationPaddingRight": "AxisAnnotationPaddingRight", + "AxisAnnotationPaddingTop": "AxisAnnotationPaddingTop", + "AxisAnnotationStrokeThickness": "AxisAnnotationStrokeThickness", + "AxisAnnotationTextColor": "AxisAnnotationTextColor", + "FinalValueSelectionMode": "FinalValueSelectionMode", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type" + } + } + ], + "FinalValueLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinalValueLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinalValueLayerDescriptionMetadata()": "FinalValueLayerDescriptionMetadata()", + "FinalValueLayerDescriptionMetadata": "FinalValueLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinalValueLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinalValueLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinalValueLayerDescriptionModule()": "FinalValueLayerDescriptionModule()", + "FinalValueLayerDescriptionModule": "FinalValueLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinalValueSelectionMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/FinalValueSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "FinancialCalculationDataSource": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FinancialCalculationDataSource", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationDataSource()": "FinancialCalculationDataSource()", + "FinancialCalculationDataSource": "FinancialCalculationDataSource()", + "CalculateCount": "CalculateCount", + "CalculateFrom": "CalculateFrom", + "CloseColumn": "CloseColumn", + "Count": "Count", + "HighColumn": "HighColumn", + "IndicatorColumn": "IndicatorColumn", + "LongPeriod": "LongPeriod", + "LowColumn": "LowColumn", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Multiplier": "Multiplier", + "OpenColumn": "OpenColumn", + "Period": "Period", + "ShortPeriod": "ShortPeriod", + "SpecifiesRange": "SpecifiesRange", + "TrueLow": "TrueLow", + "TrueRange": "TrueRange", + "TypicalColumn": "TypicalColumn", + "VolumeColumn": "VolumeColumn" + } + } + ], + "FinancialCalculationDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialCalculationDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationDataSourceDescription()": "FinancialCalculationDataSourceDescription()", + "FinancialCalculationDataSourceDescription": "FinancialCalculationDataSourceDescription()", + "CalculateCount": "CalculateCount", + "CalculateFrom": "CalculateFrom", + "Count": "Count", + "LongPeriod": "LongPeriod", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Multiplier": "Multiplier", + "Period": "Period", + "ShortPeriod": "ShortPeriod", + "SpecifiesRange": "SpecifiesRange", + "TrueLow": "TrueLow", + "TrueRange": "TrueRange", + "Type": "Type", + "TypicalColumn": "TypicalColumn" + } + } + ], + "FinancialCalculationDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialCalculationDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationDataSourceDescriptionMetadata()": "FinancialCalculationDataSourceDescriptionMetadata()", + "FinancialCalculationDataSourceDescriptionMetadata": "FinancialCalculationDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialCalculationSupportingCalculations": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FinancialCalculationSupportingCalculations", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationSupportingCalculations()": "FinancialCalculationSupportingCalculations()", + "FinancialCalculationSupportingCalculations": "FinancialCalculationSupportingCalculations()", + "EMA": "EMA", + "LongPriceOscillatorAverage": "LongPriceOscillatorAverage", + "LongVolumeOscillatorAverage": "LongVolumeOscillatorAverage", + "MakeSafe": "MakeSafe", + "MovingSum": "MovingSum", + "SMA": "SMA", + "STDEV": "STDEV", + "ShortPriceOscillatorAverage": "ShortPriceOscillatorAverage", + "ShortVolumeOscillatorAverage": "ShortVolumeOscillatorAverage", + "ToEnumerable": "ToEnumerable", + "ToEnumerableRange": "ToEnumerableRange" + } + } + ], + "FinancialCalculationSupportingCalculationsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialCalculationSupportingCalculationsDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationSupportingCalculationsDescription()": "FinancialCalculationSupportingCalculationsDescription()", + "FinancialCalculationSupportingCalculationsDescription": "FinancialCalculationSupportingCalculationsDescription()", + "EMA": "EMA", + "LongPriceOscillatorAverage": "LongPriceOscillatorAverage", + "LongVolumeOscillatorAverage": "LongVolumeOscillatorAverage", + "MakeSafeRef": "MakeSafeRef", + "MovingSum": "MovingSum", + "SMA": "SMA", + "STDEV": "STDEV", + "ShortPriceOscillatorAverage": "ShortPriceOscillatorAverage", + "ShortVolumeOscillatorAverage": "ShortVolumeOscillatorAverage", + "Type": "Type" + } + } + ], + "FinancialCalculationSupportingCalculationsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialCalculationSupportingCalculationsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialCalculationSupportingCalculationsDescriptionMetadata()": "FinancialCalculationSupportingCalculationsDescriptionMetadata()", + "FinancialCalculationSupportingCalculationsDescriptionMetadata": "FinancialCalculationSupportingCalculationsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinancialChartCoreDescriptionModule()": "FinancialChartCoreDescriptionModule()", + "FinancialChartCoreDescriptionModule": "FinancialChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartCustomIndicatorArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialChartCustomIndicatorArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialChartCustomIndicatorArgsDescription()": "FinancialChartCustomIndicatorArgsDescription()", + "FinancialChartCustomIndicatorArgsDescription": "FinancialChartCustomIndicatorArgsDescription()", + "Index": "Index", + "Series": "Series", + "Type": "Type" + } + } + ], + "FinancialChartCustomIndicatorArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialChartCustomIndicatorArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialChartCustomIndicatorArgsDescriptionMetadata()": "FinancialChartCustomIndicatorArgsDescriptionMetadata()", + "FinancialChartCustomIndicatorArgsDescriptionMetadata": "FinancialChartCustomIndicatorArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartDefaultTemplatesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialChartDefaultTemplatesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDefaultTemplatesDescriptionMetadata()": "FinancialChartDefaultTemplatesDescriptionMetadata()", + "FinancialChartDefaultTemplatesDescriptionMetadata": "FinancialChartDefaultTemplatesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartDefaultTemplatesExtendedDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialChartDefaultTemplatesExtendedDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDefaultTemplatesExtendedDescriptionMetadata()": "FinancialChartDefaultTemplatesExtendedDescriptionMetadata()", + "FinancialChartDefaultTemplatesExtendedDescriptionMetadata": "FinancialChartDefaultTemplatesExtendedDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialChartDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDescription()": "FinancialChartDescription()", + "FinancialChartDescription": "FinancialChartDescription()", + "ApplyCustomIndicatorsRef": "ApplyCustomIndicatorsRef", + "Background": "Background", + "ChartType": "ChartType", + "CustomIndicatorNames": "CustomIndicatorNames", + "Height": "Height", + "IndicatorBrushes": "IndicatorBrushes", + "IndicatorDisplayTypes": "IndicatorDisplayTypes", + "IndicatorLongPeriod": "IndicatorLongPeriod", + "IndicatorMultiplier": "IndicatorMultiplier", + "IndicatorNegativeBrushes": "IndicatorNegativeBrushes", + "IndicatorPeriod": "IndicatorPeriod", + "IndicatorShortPeriod": "IndicatorShortPeriod", + "IndicatorSignalPeriod": "IndicatorSignalPeriod", + "IndicatorSmoothingPeriod": "IndicatorSmoothingPeriod", + "IndicatorThickness": "IndicatorThickness", + "IndicatorTypes": "IndicatorTypes", + "IsLegendVisible": "IsLegendVisible", + "IsToolbarVisible": "IsToolbarVisible", + "IsWindowSyncedToVisibleRange": "IsWindowSyncedToVisibleRange", + "NegativeBrushes": "NegativeBrushes", + "NegativeOutlines": "NegativeOutlines", + "OverlayBrushes": "OverlayBrushes", + "OverlayMultiplier": "OverlayMultiplier", + "OverlayOutlines": "OverlayOutlines", + "OverlayThickness": "OverlayThickness", + "OverlayTypes": "OverlayTypes", + "RangeSelectorOptions": "RangeSelectorOptions", + "ToolbarHeight": "ToolbarHeight", + "TooltipTemplateRef": "TooltipTemplateRef", + "Type": "Type", + "VolumeBrushes": "VolumeBrushes", + "VolumeOutlines": "VolumeOutlines", + "VolumeThickness": "VolumeThickness", + "VolumeType": "VolumeType", + "Width": "Width", + "XAxisBreaks": "XAxisBreaks", + "XAxisEnhancedIntervalPreferMoreCategoryLabels": "XAxisEnhancedIntervalPreferMoreCategoryLabels", + "XAxisMaximumValue": "XAxisMaximumValue", + "XAxisMinimumValue": "XAxisMinimumValue", + "XAxisMode": "XAxisMode", + "XAxisZoomMaximumCategoryRange": "XAxisZoomMaximumCategoryRange", + "XAxisZoomMaximumItemSpan": "XAxisZoomMaximumItemSpan", + "XAxisZoomToCategoryRange": "XAxisZoomToCategoryRange", + "XAxisZoomToCategoryStart": "XAxisZoomToCategoryStart", + "XAxisZoomToItemSpan": "XAxisZoomToItemSpan", + "YAxisAbbreviateLargeNumbers": "YAxisAbbreviateLargeNumbers", + "YAxisEnhancedIntervalPreferMoreCategoryLabels": "YAxisEnhancedIntervalPreferMoreCategoryLabels", + "YAxisInterval": "YAxisInterval", + "YAxisIsLogarithmic": "YAxisIsLogarithmic", + "YAxisLogarithmBase": "YAxisLogarithmBase", + "YAxisMaximumValue": "YAxisMaximumValue", + "YAxisMinimumValue": "YAxisMinimumValue", + "YAxisMinorInterval": "YAxisMinorInterval", + "YAxisMode": "YAxisMode", + "ZoomSliderType": "ZoomSliderType", + "ZoomSliderXAxisMajorStroke": "ZoomSliderXAxisMajorStroke", + "ZoomSliderXAxisMajorStrokeThickness": "ZoomSliderXAxisMajorStrokeThickness" + } + } + ], + "FinancialChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDescriptionMetadata()": "FinancialChartDescriptionMetadata()", + "FinancialChartDescriptionMetadata": "FinancialChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialChartDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinancialChartDescriptionModule()": "FinancialChartDescriptionModule()", + "FinancialChartDescriptionModule": "FinancialChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialEventArgsDescription()": "FinancialEventArgsDescription()", + "FinancialEventArgsDescription": "FinancialEventArgsDescription()", + "Count": "Count", + "DataSource": "DataSource", + "Position": "Position", + "SupportingCalculations": "SupportingCalculations", + "Type": "Type" + } + } + ], + "FinancialEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialEventArgsDescriptionMetadata()": "FinancialEventArgsDescriptionMetadata()", + "FinancialEventArgsDescriptionMetadata": "FinancialEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FinancialIndicator", + "k": "class", + "s": "classes", + "m": { + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "DefaultDisplayType": "DefaultDisplayType", + "DefaultDisplayTypeProperty": "DefaultDisplayTypeProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "IgnoreFirst": "IgnoreFirst", + "IgnoreFirstProperty": "IgnoreFirstProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty" + } + } + ], + "FinancialIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialIndicatorDescription()": "FinancialIndicatorDescription()", + "FinancialIndicatorDescription": "FinancialIndicatorDescription()", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "DisplayType": "DisplayType", + "IgnoreFirst": "IgnoreFirst", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "Type": "Type" + } + } + ], + "FinancialIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialIndicatorDescriptionMetadata()": "FinancialIndicatorDescriptionMetadata()", + "FinancialIndicatorDescriptionMetadata": "FinancialIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialLegend": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FinancialLegend", + "k": "class", + "s": "classes", + "m": { + "FinancialLegend()": "FinancialLegend()", + "FinancialLegend": "FinancialLegend()" + } + } + ], + "FinancialLegendDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialLegendDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialLegendDescription()": "FinancialLegendDescription()", + "FinancialLegendDescription": "FinancialLegendDescription()", + "Type": "Type" + } + } + ], + "FinancialLegendDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialLegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialLegendDescriptionMetadata()": "FinancialLegendDescriptionMetadata()", + "FinancialLegendDescriptionMetadata": "FinancialLegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialLegendDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialLegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinancialLegendDescriptionModule()": "FinancialLegendDescriptionModule()", + "FinancialLegendDescriptionModule": "FinancialLegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialOverlay": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FinancialOverlay", + "k": "class", + "s": "classes", + "m": { + "IgnoreFirst": "IgnoreFirst", + "IgnoreFirstProperty": "IgnoreFirstProperty" + } + } + ], + "FinancialOverlayDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialOverlayDescription()": "FinancialOverlayDescription()", + "FinancialOverlayDescription": "FinancialOverlayDescription()", + "IgnoreFirst": "IgnoreFirst", + "Type": "Type" + } + } + ], + "FinancialOverlayDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialOverlayDescriptionMetadata()": "FinancialOverlayDescriptionMetadata()", + "FinancialOverlayDescriptionMetadata": "FinancialOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialPriceSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FinancialPriceSeries", + "k": "class", + "s": "classes", + "m": { + "FinancialPriceSeries()": "FinancialPriceSeries()", + "FinancialPriceSeries": "FinancialPriceSeries()", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "CategoryCollisionMode": "CategoryCollisionMode", + "CategoryCollisionModeProperty": "CategoryCollisionModeProperty", + "CloseMemberAsLegendLabel": "CloseMemberAsLegendLabel", + "CloseMemberAsLegendLabelProperty": "CloseMemberAsLegendLabelProperty", + "CloseMemberAsLegendUnit": "CloseMemberAsLegendUnit", + "CloseMemberAsLegendUnitProperty": "CloseMemberAsLegendUnitProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendLabelProperty": "HighMemberAsLegendLabelProperty", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "HighMemberAsLegendUnitProperty": "HighMemberAsLegendUnitProperty", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendLabelProperty": "LowMemberAsLegendLabelProperty", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "LowMemberAsLegendUnitProperty": "LowMemberAsLegendUnitProperty", + "NegativeOutline": "NegativeOutline", + "NegativeOutlineProperty": "NegativeOutlineProperty", + "OpenMemberAsLegendLabel": "OpenMemberAsLegendLabel", + "OpenMemberAsLegendLabelProperty": "OpenMemberAsLegendLabelProperty", + "OpenMemberAsLegendUnit": "OpenMemberAsLegendUnit", + "OpenMemberAsLegendUnitProperty": "OpenMemberAsLegendUnitProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty" + } + } + ], + "FinancialPriceSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialPriceSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialPriceSeriesDescription()": "FinancialPriceSeriesDescription()", + "FinancialPriceSeriesDescription": "FinancialPriceSeriesDescription()", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "CategoryCollisionMode": "CategoryCollisionMode", + "CloseMemberAsLegendLabel": "CloseMemberAsLegendLabel", + "CloseMemberAsLegendUnit": "CloseMemberAsLegendUnit", + "DisplayType": "DisplayType", + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "NegativeOutline": "NegativeOutline", + "OpenMemberAsLegendLabel": "OpenMemberAsLegendLabel", + "OpenMemberAsLegendUnit": "OpenMemberAsLegendUnit", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "Type": "Type" + } + } + ], + "FinancialPriceSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialPriceSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialPriceSeriesDescriptionMetadata()": "FinancialPriceSeriesDescriptionMetadata()", + "FinancialPriceSeriesDescriptionMetadata": "FinancialPriceSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialPriceSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialPriceSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FinancialPriceSeriesDescriptionModule()": "FinancialPriceSeriesDescriptionModule()", + "FinancialPriceSeriesDescriptionModule": "FinancialPriceSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FinancialSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FinancialSeries", + "k": "class", + "s": "classes", + "m": { + "CloseMemberPath": "CloseMemberPath", + "CloseMemberPathProperty": "CloseMemberPathProperty", + "GetCategoryItems(int, int)": "GetCategoryItems(int, int)", + "GetCategoryItems": "GetCategoryItems(int, int)", + "GetCategoryWidth()": "GetCategoryWidth()", + "GetCategoryWidth": "GetCategoryWidth()", + "GetOffsetValue()": "GetOffsetValue()", + "GetOffsetValue": "GetOffsetValue()", + "GetSeriesCloseValue(Point, bool, bool)": "GetSeriesCloseValue(Point, bool, bool)", + "GetSeriesCloseValue": "GetSeriesCloseValue(Point, bool, bool)", + "GetSeriesCloseValuePosition(Point, bool, bool)": "GetSeriesCloseValuePosition(Point, bool, bool)", + "GetSeriesCloseValuePosition": "GetSeriesCloseValuePosition(Point, bool, bool)", + "GetSeriesOpenValue(Point, bool, bool)": "GetSeriesOpenValue(Point, bool, bool)", + "GetSeriesOpenValue": "GetSeriesOpenValue(Point, bool, bool)", + "GetSeriesOpenValuePosition(Point, bool, bool)": "GetSeriesOpenValuePosition(Point, bool, bool)", + "GetSeriesOpenValuePosition": "GetSeriesOpenValuePosition(Point, bool, bool)", + "GetSeriesVolumeValue(Point, bool, bool)": "GetSeriesVolumeValue(Point, bool, bool)", + "GetSeriesVolumeValue": "GetSeriesVolumeValue(Point, bool, bool)", + "GetSeriesVolumeValuePosition(Point, bool, bool)": "GetSeriesVolumeValuePosition(Point, bool, bool)", + "GetSeriesVolumeValuePosition": "GetSeriesVolumeValuePosition(Point, bool, bool)", + "HighMemberPath": "HighMemberPath", + "HighMemberPathProperty": "HighMemberPathProperty", + "HighlightedCloseMemberPath": "HighlightedCloseMemberPath", + "HighlightedCloseMemberPathProperty": "HighlightedCloseMemberPathProperty", + "HighlightedHighMemberPath": "HighlightedHighMemberPath", + "HighlightedHighMemberPathProperty": "HighlightedHighMemberPathProperty", + "HighlightedLowMemberPath": "HighlightedLowMemberPath", + "HighlightedLowMemberPathProperty": "HighlightedLowMemberPathProperty", + "HighlightedOpenMemberPath": "HighlightedOpenMemberPath", + "HighlightedOpenMemberPathProperty": "HighlightedOpenMemberPathProperty", + "HighlightedVolumeMemberPath": "HighlightedVolumeMemberPath", + "HighlightedVolumeMemberPathProperty": "HighlightedVolumeMemberPathProperty", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsCustomCategoryStyleAllowedProperty": "IsCustomCategoryStyleAllowedProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "LowMemberPath": "LowMemberPath", + "LowMemberPathProperty": "LowMemberPathProperty", + "NegativeBrush": "NegativeBrush", + "NegativeBrushProperty": "NegativeBrushProperty", + "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnAssigningCategoryStyle": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnTypical(FinancialEventArgs)": "OnTypical(FinancialEventArgs)", + "OnTypical": "OnTypical(FinancialEventArgs)", + "OnTypicalBasedOn(FinancialEventArgs)": "OnTypicalBasedOn(FinancialEventArgs)", + "OnTypicalBasedOn": "OnTypicalBasedOn(FinancialEventArgs)", + "OpenMemberPath": "OpenMemberPath", + "OpenMemberPathProperty": "OpenMemberPathProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "VolumeMemberPath": "VolumeMemberPath", + "VolumeMemberPathProperty": "VolumeMemberPathProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "FinancialSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "FinancialSeriesDescription()": "FinancialSeriesDescription()", + "FinancialSeriesDescription": "FinancialSeriesDescription()", + "AssigningCategoryStyleRef": "AssigningCategoryStyleRef", + "CloseMemberPath": "CloseMemberPath", + "HighMemberPath": "HighMemberPath", + "HighlightedCloseMemberPath": "HighlightedCloseMemberPath", + "HighlightedHighMemberPath": "HighlightedHighMemberPath", + "HighlightedLowMemberPath": "HighlightedLowMemberPath", + "HighlightedOpenMemberPath": "HighlightedOpenMemberPath", + "HighlightedVolumeMemberPath": "HighlightedVolumeMemberPath", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "LowMemberPath": "LowMemberPath", + "NegativeBrush": "NegativeBrush", + "OpenMemberPath": "OpenMemberPath", + "TransitionInMode": "TransitionInMode", + "Type": "Type", + "TypicalBasedOnRef": "TypicalBasedOnRef", + "TypicalRef": "TypicalRef", + "VolumeMemberPath": "VolumeMemberPath", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "FinancialSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FinancialSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FinancialSeriesDescriptionMetadata()": "FinancialSeriesDescriptionMetadata()", + "FinancialSeriesDescriptionMetadata": "FinancialSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FlatDataProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FlatDataProvider", + "k": "class", + "s": "classes", + "m": { + "FlatDataProvider()": "FlatDataProvider()", + "FlatDataProvider": "FlatDataProvider()", + "ActualCount": "ActualCount", + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "BroadcastChangesToRightDataSource": "BroadcastChangesToRightDataSource", + "Clone()": "Clone()", + "Clone": "Clone()", + "CreateDynamicItem()": "CreateDynamicItem()", + "CreateDynamicItem": "CreateDynamicItem()", + "DeferAutoRefresh": "DeferAutoRefresh", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GroupDescriptions": "GroupDescriptions", + "HasDynamicItemProperty(object, string)": "HasDynamicItemProperty(object, string)", + "HasDynamicItemProperty": "HasDynamicItemProperty(object, string)", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsSortingSupported": "IsSortingSupported", + "ItemsSource": "ItemsSource", + "JoinCollisionType": "JoinCollisionType", + "JoinType": "JoinType", + "LeftJoinProperty": "LeftJoinProperty", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "PropertiesRequested": "PropertiesRequested", + "PropertyUpdatedOverride(string, object, object)": "PropertyUpdatedOverride(string, object, object)", + "PropertyUpdatedOverride": "PropertyUpdatedOverride(string, object, object)", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RefreshInternalOverride()": "RefreshInternalOverride()", + "RefreshInternalOverride": "RefreshInternalOverride()", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "RightDataSource": "RightDataSource", + "RightJoinProperty": "RightJoinProperty", + "SchemaHints": "SchemaHints", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SetDynamicItemProperty(object, string, object)": "SetDynamicItemProperty(object, string, object)", + "SetDynamicItemProperty": "SetDynamicItemProperty(object, string, object)", + "SetItemValue(object, string, object)": "SetItemValue(object, string, object)", + "SetItemValue": "SetItemValue(object, string, object)", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "TargetDataSource": "TargetDataSource", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "FlatDataProviderJoinCollisionType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/FlatDataProviderJoinCollisionType", + "k": "enum", + "s": "enums" + } + ], + "FlatDataProviderJoinType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/FlatDataProviderJoinType", + "k": "enum", + "s": "enums" + } + ], + "FlattenerSettings": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FlattenerSettings", + "k": "class", + "s": "classes", + "m": { + "ChunkingAmount": "ChunkingAmount", + "Instance": "Instance" + } + } + ], + "FocusEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "FocusEventArgs()": "FocusEventArgs()", + "FocusEventArgs": "FocusEventArgs()", + "FromTarget": "FromTarget", + "Target": "Target" + } + } + ], + "FocusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FocusEventArgsDescription()": "FocusEventArgsDescription()", + "FocusEventArgsDescription": "FocusEventArgsDescription()", + "FromTargetRef": "FromTargetRef", + "TargetRef": "TargetRef", + "Type": "Type" + } + } + ], + "FocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FocusEventArgsDescriptionMetadata()": "FocusEventArgsDescriptionMetadata()", + "FocusEventArgsDescriptionMetadata": "FocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FocusOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FocusOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "FocusOptionsDescription()": "FocusOptionsDescription()", + "FocusOptionsDescription": "FocusOptionsDescription()", + "PreventScroll": "PreventScroll", + "Type": "Type" + } + } + ], + "FocusOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FocusOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FocusOptionsDescriptionMetadata()": "FocusOptionsDescriptionMetadata()", + "FocusOptionsDescriptionMetadata": "FocusOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FontRegistry": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FontRegistry", + "k": "class", + "s": "classes", + "m": { + "FontRegistry()": "FontRegistry()", + "FontRegistry": "FontRegistry()", + "GetFont(string)": "GetFont(string)", + "GetFont": "GetFont(string)", + "Instance": "Instance", + "RegisterFont(string, object)": "RegisterFont(string, object)", + "RegisterFont": "RegisterFont(string, object)", + "RemoveFont(string)": "RemoveFont(string)", + "RemoveFont": "RemoveFont(string)" + } + } + ], + "ForceIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ForceIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "ForceIndexIndicator()": "ForceIndexIndicator()", + "ForceIndexIndicator": "ForceIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "ForceIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ForceIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "ForceIndexIndicatorDescription()": "ForceIndexIndicatorDescription()", + "ForceIndexIndicatorDescription": "ForceIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "ForceIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ForceIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ForceIndexIndicatorDescriptionMetadata()": "ForceIndexIndicatorDescriptionMetadata()", + "ForceIndexIndicatorDescriptionMetadata": "ForceIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ForceIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ForceIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ForceIndexIndicatorDescriptionModule()": "ForceIndexIndicatorDescriptionModule()", + "ForceIndexIndicatorDescriptionModule": "ForceIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ForceWriteConstantValueAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/ForceWriteConstantValueAttribute", + "k": "class", + "s": "classes", + "m": { + "ForceWriteConstantValueAttribute()": "ForceWriteConstantValueAttribute()", + "ForceWriteConstantValueAttribute": "ForceWriteConstantValueAttribute()" + } + } + ], + "FormatCellEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/FormatCellEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatCellEventArgs()": "FormatCellEventArgs()", + "FormatCellEventArgs": "FormatCellEventArgs()", + "IsGroup": "IsGroup", + "IsSummary": "IsSummary", + "Item": "Item", + "Row": "Row", + "Text": "Text", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatCellEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatCellEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatCellEventArgsDescription()": "FormatCellEventArgsDescription()", + "FormatCellEventArgsDescription": "FormatCellEventArgsDescription()", + "IsGroup": "IsGroup", + "IsSummary": "IsSummary", + "ItemRef": "ItemRef", + "Row": "Row", + "Text": "Text", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "FormatCellEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatCellEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatCellEventArgsDescriptionMetadata()": "FormatCellEventArgsDescriptionMetadata()", + "FormatCellEventArgsDescriptionMetadata": "FormatCellEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatGroupTextEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/FormatGroupTextEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatGroupTextEventArgs()": "FormatGroupTextEventArgs()", + "FormatGroupTextEventArgs": "FormatGroupTextEventArgs()", + "FormattedText": "FormattedText", + "FormattedValue": "FormattedValue", + "GroupName": "GroupName", + "GroupValue": "GroupValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatGroupTextEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatGroupTextEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatGroupTextEventArgsDescription()": "FormatGroupTextEventArgsDescription()", + "FormatGroupTextEventArgsDescription": "FormatGroupTextEventArgsDescription()", + "FormattedText": "FormattedText", + "FormattedValue": "FormattedValue", + "GroupName": "GroupName", + "GroupValueRef": "GroupValueRef", + "Type": "Type" + } + } + ], + "FormatGroupTextEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatGroupTextEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatGroupTextEventArgsDescriptionMetadata()": "FormatGroupTextEventArgsDescriptionMetadata()", + "FormatGroupTextEventArgsDescriptionMetadata": "FormatGroupTextEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatLinearGraphLabelEventArgs": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/FormatLinearGraphLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatLinearGraphLabelEventArgs()": "FormatLinearGraphLabelEventArgs()", + "FormatLinearGraphLabelEventArgs": "FormatLinearGraphLabelEventArgs()", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMinimumValue": "ActualMinimumValue", + "Label": "Label", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatLinearGraphLabelEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatLinearGraphLabelEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatLinearGraphLabelEventArgsDescription()": "FormatLinearGraphLabelEventArgsDescription()", + "FormatLinearGraphLabelEventArgsDescription": "FormatLinearGraphLabelEventArgsDescription()", + "Type": "Type" + } + } + ], + "FormatLinearGraphLabelEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatLinearGraphLabelEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatLinearGraphLabelEventArgsDescriptionMetadata()": "FormatLinearGraphLabelEventArgsDescriptionMetadata()", + "FormatLinearGraphLabelEventArgsDescriptionMetadata": "FormatLinearGraphLabelEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatRadialGaugeLabelEventArgs": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/FormatRadialGaugeLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatRadialGaugeLabelEventArgs()": "FormatRadialGaugeLabelEventArgs()", + "FormatRadialGaugeLabelEventArgs": "FormatRadialGaugeLabelEventArgs()", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMinimumValue": "ActualMinimumValue", + "Angle": "Angle", + "EndAngle": "EndAngle", + "Extent": "Extent", + "Label": "Label", + "StartAngle": "StartAngle", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatRadialGaugeLabelEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatRadialGaugeLabelEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatRadialGaugeLabelEventArgsDescription()": "FormatRadialGaugeLabelEventArgsDescription()", + "FormatRadialGaugeLabelEventArgsDescription": "FormatRadialGaugeLabelEventArgsDescription()", + "Type": "Type" + } + } + ], + "FormatRadialGaugeLabelEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatRadialGaugeLabelEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatRadialGaugeLabelEventArgsDescriptionMetadata()": "FormatRadialGaugeLabelEventArgsDescriptionMetadata()", + "FormatRadialGaugeLabelEventArgsDescriptionMetadata": "FormatRadialGaugeLabelEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatSpecifier": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatSpecifier", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifier()": "FormatSpecifier()", + "FormatSpecifier": "FormatSpecifier()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatSpecifierCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatSpecifierCollection", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifierCollection()": "FormatSpecifierCollection()", + "FormatSpecifierCollection": "FormatSpecifierCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatSpecifierDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatSpecifierDescription", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifierDescription()": "FormatSpecifierDescription()", + "FormatSpecifierDescription": "FormatSpecifierDescription()", + "Type": "Type" + } + } + ], + "FormatSpecifierDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatSpecifierDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifierDescriptionMetadata()": "FormatSpecifierDescriptionMetadata()", + "FormatSpecifierDescriptionMetadata": "FormatSpecifierDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatSpecifierDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatSpecifierDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FormatSpecifierDescriptionModule()": "FormatSpecifierDescriptionModule()", + "FormatSpecifierDescriptionModule": "FormatSpecifierDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FormatSummaryTextEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/FormatSummaryTextEventArgs", + "k": "class", + "s": "classes", + "m": { + "FormatSummaryTextEventArgs()": "FormatSummaryTextEventArgs()", + "FormatSummaryTextEventArgs": "FormatSummaryTextEventArgs()", + "DisplayName": "DisplayName", + "Field": "Field", + "FormattedResult": "FormattedResult", + "FormattedText": "FormattedText", + "SummaryResult": "SummaryResult", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FormatSummaryTextEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatSummaryTextEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FormatSummaryTextEventArgsDescription()": "FormatSummaryTextEventArgsDescription()", + "FormatSummaryTextEventArgsDescription": "FormatSummaryTextEventArgsDescription()", + "DisplayName": "DisplayName", + "Field": "Field", + "FormattedResult": "FormattedResult", + "FormattedText": "FormattedText", + "SummaryResultRef": "SummaryResultRef", + "Type": "Type" + } + } + ], + "FormatSummaryTextEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FormatSummaryTextEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FormatSummaryTextEventArgsDescriptionMetadata()": "FormatSummaryTextEventArgsDescriptionMetadata()", + "FormatSummaryTextEventArgsDescriptionMetadata": "FormatSummaryTextEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FragmentBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FragmentBaseDescription", + "k": "class", + "s": "classes", + "m": { + "FragmentBaseDescription()": "FragmentBaseDescription()", + "FragmentBaseDescription": "FragmentBaseDescription()", + "Type": "Type" + } + } + ], + "FragmentBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FragmentBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FragmentBaseDescriptionMetadata()": "FragmentBaseDescriptionMetadata()", + "FragmentBaseDescriptionMetadata": "FragmentBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FullStochasticOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FullStochasticOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "FullStochasticOscillatorIndicator()": "FullStochasticOscillatorIndicator()", + "FullStochasticOscillatorIndicator": "FullStochasticOscillatorIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty", + "SmoothingPeriod": "SmoothingPeriod", + "SmoothingPeriodProperty": "SmoothingPeriodProperty", + "TriggerPeriod": "TriggerPeriod", + "TriggerPeriodProperty": "TriggerPeriodProperty" + } + } + ], + "FullStochasticOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FullStochasticOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "FullStochasticOscillatorIndicatorDescription()": "FullStochasticOscillatorIndicatorDescription()", + "FullStochasticOscillatorIndicatorDescription": "FullStochasticOscillatorIndicatorDescription()", + "Period": "Period", + "SmoothingPeriod": "SmoothingPeriod", + "TriggerPeriod": "TriggerPeriod", + "Type": "Type" + } + } + ], + "FullStochasticOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FullStochasticOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FullStochasticOscillatorIndicatorDescriptionMetadata()": "FullStochasticOscillatorIndicatorDescriptionMetadata()", + "FullStochasticOscillatorIndicatorDescriptionMetadata": "FullStochasticOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FullStochasticOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FullStochasticOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FullStochasticOscillatorIndicatorDescriptionModule()": "FullStochasticOscillatorIndicatorDescriptionModule()", + "FullStochasticOscillatorIndicatorDescriptionModule": "FullStochasticOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunctionFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunctionFilterExpression", + "k": "class", + "s": "classes", + "m": { + "FunctionFilterExpression()": "FunctionFilterExpression()", + "FunctionFilterExpression": "FunctionFilterExpression()", + "FunctionFilterExpression(FilterExpressionFunctionType, params IFilterExpression[])": "FunctionFilterExpression(FilterExpressionFunctionType, params IFilterExpression[])", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "FunctionArguments": "FunctionArguments", + "FunctionType": "FunctionType", + "HasFunctionArguments": "HasFunctionArguments", + "IsBooleanFunction": "IsBooleanFunction", + "IsFunction": "IsFunction", + "Precedence": "Precedence", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()" + } + } + ], + "FunctionFilterExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunctionFilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "FunctionFilterExpressionDescription()": "FunctionFilterExpressionDescription()", + "FunctionFilterExpressionDescription": "FunctionFilterExpressionDescription()", + "FunctionArguments": "FunctionArguments", + "FunctionType": "FunctionType", + "HasFunctionArguments": "HasFunctionArguments", + "Type": "Type" + } + } + ], + "FunctionFilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunctionFilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunctionFilterExpressionDescriptionMetadata()": "FunctionFilterExpressionDescriptionMetadata()", + "FunctionFilterExpressionDescriptionMetadata": "FunctionFilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FunnelChartCoreDescriptionModule()": "FunnelChartCoreDescriptionModule()", + "FunnelChartCoreDescriptionModule": "FunnelChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelChartDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelChartDescription()": "FunnelChartDescription()", + "FunnelChartDescription": "FunnelChartDescription()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "AllowSliceSelection": "AllowSliceSelection", + "BottomEdgeWidth": "BottomEdgeWidth", + "Brushes": "Brushes", + "DataSourceRef": "DataSourceRef", + "FormatInnerLabelRef": "FormatInnerLabelRef", + "FormatOuterLabelRef": "FormatOuterLabelRef", + "FunnelSliceDisplay": "FunnelSliceDisplay", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "InnerLabelMemberPath": "InnerLabelMemberPath", + "InnerLabelVisibility": "InnerLabelVisibility", + "IsInverted": "IsInverted", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "OuterLabelAlignment": "OuterLabelAlignment", + "OuterLabelMemberPath": "OuterLabelMemberPath", + "OuterLabelTextColor": "OuterLabelTextColor", + "OuterLabelTextStyle": "OuterLabelTextStyle", + "OuterLabelVisibility": "OuterLabelVisibility", + "OutlineThickness": "OutlineThickness", + "Outlines": "Outlines", + "PixelScalingRatio": "PixelScalingRatio", + "SelectedItems": "SelectedItems", + "SelectedItemsChangedRef": "SelectedItemsChangedRef", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SliceClickedRef": "SliceClickedRef", + "SliceEnterRef": "SliceEnterRef", + "SliceHoverRef": "SliceHoverRef", + "SliceLeaveRef": "SliceLeaveRef", + "TextColor": "TextColor", + "TextStyle": "TextStyle", + "TransitionDuration": "TransitionDuration", + "Type": "Type", + "UnselectedSliceFill": "UnselectedSliceFill", + "UnselectedSliceOpacity": "UnselectedSliceOpacity", + "UnselectedSliceStroke": "UnselectedSliceStroke", + "UnselectedSliceStrokeThickness": "UnselectedSliceStrokeThickness", + "UseBezierCurve": "UseBezierCurve", + "UseOuterLabelsForLegend": "UseOuterLabelsForLegend", + "UseUnselectedStyle": "UseUnselectedStyle", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "FunnelChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelChartDescriptionMetadata()": "FunnelChartDescriptionMetadata()", + "FunnelChartDescriptionMetadata": "FunnelChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "FunnelChartDescriptionModule()": "FunnelChartDescriptionModule()", + "FunnelChartDescriptionModule": "FunnelChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartSelectedItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelChartSelectedItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelChartSelectedItemsChangedEventArgsDescription()": "FunnelChartSelectedItemsChangedEventArgsDescription()", + "FunnelChartSelectedItemsChangedEventArgsDescription": "FunnelChartSelectedItemsChangedEventArgsDescription()", + "CurrentItems": "CurrentItems", + "NewItems": "NewItems", + "OldItems": "OldItems", + "Type": "Type" + } + } + ], + "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata()": "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata()", + "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata": "FunnelChartSelectedItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelChartSelectedItemsCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FunnelChartSelectedItemsCollection", + "k": "class", + "s": "classes", + "m": { + "FunnelChartSelectedItemsCollection()": "FunnelChartSelectedItemsCollection()", + "FunnelChartSelectedItemsCollection": "FunnelChartSelectedItemsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FunnelChartVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FunnelChartVisualData", + "k": "class", + "s": "classes", + "m": { + "FunnelChartVisualData()": "FunnelChartVisualData()", + "FunnelChartVisualData": "FunnelChartVisualData()", + "BackgroundColor": "BackgroundColor", + "BorderBrush": "BorderBrush", + "DipScalingRatio": "DipScalingRatio", + "ForegroundColor": "ForegroundColor", + "IsInverted": "IsInverted", + "Name": "Name", + "Opacity": "Opacity", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "SelectedItems": "SelectedItems", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Slices": "Slices", + "Viewport": "Viewport" + } + } + ], + "FunnelDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FunnelDataContext", + "k": "class", + "s": "classes", + "m": { + "FunnelDataContext()": "FunnelDataContext()", + "FunnelDataContext": "FunnelDataContext()", + "Index": "Index", + "Item": "Item", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FunnelDataContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelDataContextDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelDataContextDescription()": "FunnelDataContextDescription()", + "FunnelDataContextDescription": "FunnelDataContextDescription()", + "Index": "Index", + "ItemRef": "ItemRef", + "Type": "Type" + } + } + ], + "FunnelDataContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelDataContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelDataContextDescriptionMetadata()": "FunnelDataContextDescriptionMetadata()", + "FunnelDataContextDescriptionMetadata": "FunnelDataContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelSliceClickedEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FunnelSliceClickedEventArgs", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceClickedEventArgs()": "FunnelSliceClickedEventArgs()", + "FunnelSliceClickedEventArgs": "FunnelSliceClickedEventArgs()", + "Bounds": "Bounds", + "Index": "Index", + "Item": "Item", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FunnelSliceClickedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelSliceClickedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceClickedEventArgsDescription()": "FunnelSliceClickedEventArgsDescription()", + "FunnelSliceClickedEventArgsDescription": "FunnelSliceClickedEventArgsDescription()", + "Bounds": "Bounds", + "Index": "Index", + "ItemRef": "ItemRef", + "Type": "Type" + } + } + ], + "FunnelSliceClickedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelSliceClickedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceClickedEventArgsDescriptionMetadata()": "FunnelSliceClickedEventArgsDescriptionMetadata()", + "FunnelSliceClickedEventArgsDescriptionMetadata": "FunnelSliceClickedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelSliceDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FunnelSliceDataContext", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceDataContext()": "FunnelSliceDataContext()", + "FunnelSliceDataContext": "FunnelSliceDataContext()", + "ItemOutline": "ItemOutline" + } + } + ], + "FunnelSliceDataContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelSliceDataContextDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceDataContextDescription()": "FunnelSliceDataContextDescription()", + "FunnelSliceDataContextDescription": "FunnelSliceDataContextDescription()", + "ItemOutline": "ItemOutline", + "Type": "Type" + } + } + ], + "FunnelSliceDataContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelSliceDataContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceDataContextDescriptionMetadata()": "FunnelSliceDataContextDescriptionMetadata()", + "FunnelSliceDataContextDescriptionMetadata": "FunnelSliceDataContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelSliceDisplay": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/FunnelSliceDisplay", + "k": "enum", + "s": "enums" + } + ], + "FunnelSliceEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FunnelSliceEventArgs", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceEventArgs()": "FunnelSliceEventArgs()", + "FunnelSliceEventArgs": "FunnelSliceEventArgs()", + "Bounds": "Bounds", + "Index": "Index", + "Item": "Item", + "Position": "Position", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "FunnelSliceEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelSliceEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceEventArgsDescription()": "FunnelSliceEventArgsDescription()", + "FunnelSliceEventArgsDescription": "FunnelSliceEventArgsDescription()", + "Bounds": "Bounds", + "Index": "Index", + "ItemRef": "ItemRef", + "Position": "Position", + "Type": "Type" + } + } + ], + "FunnelSliceEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/FunnelSliceEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceEventArgsDescriptionMetadata()": "FunnelSliceEventArgsDescriptionMetadata()", + "FunnelSliceEventArgsDescriptionMetadata": "FunnelSliceEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "FunnelSliceVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FunnelSliceVisualData", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceVisualData()": "FunnelSliceVisualData()", + "FunnelSliceVisualData": "FunnelSliceVisualData()", + "Appearance": "Appearance", + "Bottom": "Bottom", + "Height": "Height", + "Index": "Index", + "InnerLabel": "InnerLabel", + "InnerLabelAppearance": "InnerLabelAppearance", + "InnerLabelBounds": "InnerLabelBounds", + "InnerLabelPosition": "InnerLabelPosition", + "IsSelected": "IsSelected", + "IsVisibile": "IsVisibile", + "LowerLeft": "LowerLeft", + "LowerRight": "LowerRight", + "LowerWidth": "LowerWidth", + "OuterLabel": "OuterLabel", + "OuterLabelAppearance": "OuterLabelAppearance", + "OuterLabelBounds": "OuterLabelBounds", + "OuterLabelPosition": "OuterLabelPosition", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SliceBorderBrush": "SliceBorderBrush", + "SliceBorderThickness": "SliceBorderThickness", + "SliceCenterPoint": "SliceCenterPoint", + "SlicePoints": "SlicePoints", + "Top": "Top", + "UpperLeft": "UpperLeft", + "UpperRight": "UpperRight", + "UpperWidth": "UpperWidth" + } + } + ], + "FunnelSliceVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/FunnelSliceVisualDataList", + "k": "class", + "s": "classes", + "m": { + "FunnelSliceVisualDataList()": "FunnelSliceVisualDataList()", + "FunnelSliceVisualDataList": "FunnelSliceVisualDataList()" + } + } + ], + "GaugeVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/GaugeVisualData", + "k": "class", + "s": "classes", + "m": { + "GaugeVisualData()": "GaugeVisualData()", + "GaugeVisualData": "GaugeVisualData()", + "BackingPath": "BackingPath", + "HighlightLabels": "HighlightLabels", + "HighlightNeedle": "HighlightNeedle", + "HighlightNeedlePath": "HighlightNeedlePath", + "Name": "Name", + "Needle": "Needle", + "NeedlePath": "NeedlePath", + "OverlayPath": "OverlayPath", + "Ranges": "Ranges", + "Scale": "Scale", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleLabels": "ScaleLabels", + "ScalePath": "ScalePath", + "ScaleTickmarks": "ScaleTickmarks", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SubtitleLabels": "SubtitleLabels", + "TitleLabels": "TitleLabels", + "UnderlayPath": "UnderlayPath", + "Viewport": "Viewport" + } + } + ], + "GenericDataSourceSchemaPropertyType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/GenericDataSourceSchemaPropertyType", + "k": "enum", + "s": "enums" + } + ], + "GenericInternalVirtualDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GenericInternalVirtualDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "GenericInternalVirtualDataSourceDescription()": "GenericInternalVirtualDataSourceDescription()", + "GenericInternalVirtualDataSourceDescription": "GenericInternalVirtualDataSourceDescription()", + "DataSourceId": "DataSourceId", + "IsAggregationSupported": "IsAggregationSupported", + "IsClone": "IsClone", + "PageRequestedRef": "PageRequestedRef", + "Type": "Type" + } + } + ], + "GenericInternalVirtualDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GenericInternalVirtualDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GenericInternalVirtualDataSourceDescriptionMetadata()": "GenericInternalVirtualDataSourceDescriptionMetadata()", + "GenericInternalVirtualDataSourceDescriptionMetadata": "GenericInternalVirtualDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GenericVirtualDataSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GenericVirtualDataSource", + "k": "class", + "s": "classes", + "m": { + "GenericVirtualDataSource()": "GenericVirtualDataSource()", + "GenericVirtualDataSource": "GenericVirtualDataSource()", + "AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)": "AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)", + "AddSchemaProperty": "AddSchemaProperty(string, GenericDataSourceSchemaPropertyType)", + "AddSummaryDate(string, DataSourceSummaryOperand, DateTime)": "AddSummaryDate(string, DataSourceSummaryOperand, DateTime)", + "AddSummaryDate": "AddSummaryDate(string, DataSourceSummaryOperand, DateTime)", + "AddSummaryDouble(string, DataSourceSummaryOperand, double)": "AddSummaryDouble(string, DataSourceSummaryOperand, double)", + "AddSummaryDouble": "AddSummaryDouble(string, DataSourceSummaryOperand, double)", + "AddSummaryInt(string, DataSourceSummaryOperand, int)": "AddSummaryInt(string, DataSourceSummaryOperand, int)", + "AddSummaryInt": "AddSummaryInt(string, DataSourceSummaryOperand, int)", + "AddSummaryString(string, DataSourceSummaryOperand, string)": "AddSummaryString(string, DataSourceSummaryOperand, string)", + "AddSummaryString": "AddSummaryString(string, DataSourceSummaryOperand, string)", + "FillColumnBool(string, bool[])": "FillColumnBool(string, bool[])", + "FillColumnBool": "FillColumnBool(string, bool[])", + "FillColumnDate(string, DateTime[])": "FillColumnDate(string, DateTime[])", + "FillColumnDate": "FillColumnDate(string, DateTime[])", + "FillColumnDouble(string, double[])": "FillColumnDouble(string, double[])", + "FillColumnDouble": "FillColumnDouble(string, double[])", + "FillColumnInt(string, int[])": "FillColumnInt(string, int[])", + "FillColumnInt": "FillColumnInt(string, int[])", + "FillColumnString(string, string[])": "FillColumnString(string, string[])", + "FillColumnString": "FillColumnString(string, string[])", + "FillCount(int)": "FillCount(int)", + "FillCount": "FillCount(int)", + "FillGroupEnd()": "FillGroupEnd()", + "FillGroupEnd": "FillGroupEnd()", + "FillGroupStart(int, int)": "FillGroupStart(int, int)", + "FillGroupStart": "FillGroupStart(int, int)", + "FillGroupValueDate(string, DateTime)": "FillGroupValueDate(string, DateTime)", + "FillGroupValueDate": "FillGroupValueDate(string, DateTime)", + "FillGroupValueDouble(string, double)": "FillGroupValueDouble(string, double)", + "FillGroupValueDouble": "FillGroupValueDouble(string, double)", + "FillGroupValueInt(string, int)": "FillGroupValueInt(string, int)", + "FillGroupValueInt": "FillGroupValueInt(string, int)", + "FillGroupValueString(string, string)": "FillGroupValueString(string, string)", + "FillGroupValueString": "FillGroupValueString(string, string)", + "FillPageEnd()": "FillPageEnd()", + "FillPageEnd": "FillPageEnd()", + "FillPageStart(int)": "FillPageStart(int)", + "FillPageStart": "FillPageStart(int)", + "FillPageStartForSource(int, int)": "FillPageStartForSource(int, int)", + "FillPageStartForSource": "FillPageStartForSource(int, int)", + "OnPageRequested(PageRequestedEventArgs)": "OnPageRequested(PageRequestedEventArgs)", + "OnPageRequested": "OnPageRequested(PageRequestedEventArgs)", + "PageSizeRequested": "PageSizeRequested" + } + } + ], + "GenericVirtualDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GenericVirtualDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "GenericVirtualDataSourceDescription()": "GenericVirtualDataSourceDescription()", + "GenericVirtualDataSourceDescription": "GenericVirtualDataSourceDescription()", + "PageRequestedRef": "PageRequestedRef", + "PageSizeRequested": "PageSizeRequested", + "Type": "Type" + } + } + ], + "GenericVirtualDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GenericVirtualDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GenericVirtualDataSourceDescriptionMetadata()": "GenericVirtualDataSourceDescriptionMetadata()", + "GenericVirtualDataSourceDescriptionMetadata": "GenericVirtualDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GenericVirtualDataSourceDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GenericVirtualDataSourceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GenericVirtualDataSourceDescriptionModule()": "GenericVirtualDataSourceDescriptionModule()", + "GenericVirtualDataSourceDescriptionModule": "GenericVirtualDataSourceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicContourLineSeries": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicContourLineSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicContourLineSeries()": "GeographicContourLineSeries()", + "GeographicContourLineSeries": "GeographicContourLineSeries()", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "OnTriangulationStatusChanged(TriangulationStatusEventArgs)": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "OnTriangulationStatusChanged": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "ValueResolver": "ValueResolver", + "ValueResolverProperty": "ValueResolverProperty" + } + } + ], + "GeographicContourLineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicContourLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicContourLineSeriesDescription()": "GeographicContourLineSeriesDescription()", + "GeographicContourLineSeriesDescription": "GeographicContourLineSeriesDescription()", + "ActualFillScale": "ActualFillScale", + "FillScale": "FillScale", + "TriangulationStatusChangedRef": "TriangulationStatusChangedRef", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath", + "ValueResolver": "ValueResolver" + } + } + ], + "GeographicContourLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicContourLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicContourLineSeriesDescriptionMetadata()": "GeographicContourLineSeriesDescriptionMetadata()", + "GeographicContourLineSeriesDescriptionMetadata": "GeographicContourLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicContourLineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicContourLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicContourLineSeriesDescriptionModule()": "GeographicContourLineSeriesDescriptionModule()", + "GeographicContourLineSeriesDescriptionModule": "GeographicContourLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicHighDensityScatterSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicHighDensityScatterSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicHighDensityScatterSeriesDescription()": "GeographicHighDensityScatterSeriesDescription()", + "GeographicHighDensityScatterSeriesDescription": "GeographicHighDensityScatterSeriesDescription()", + "HeatMaximum": "HeatMaximum", + "HeatMaximumColor": "HeatMaximumColor", + "HeatMinimum": "HeatMinimum", + "HeatMinimumColor": "HeatMinimumColor", + "LatitudeMemberPath": "LatitudeMemberPath", + "LongitudeMemberPath": "LongitudeMemberPath", + "PointExtent": "PointExtent", + "ProgressiveLoad": "ProgressiveLoad", + "ProgressiveLoadStatusChangedRef": "ProgressiveLoadStatusChangedRef", + "ProgressiveStatus": "ProgressiveStatus", + "Type": "Type", + "UseBruteForce": "UseBruteForce" + } + } + ], + "GeographicHighDensityScatterSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicHighDensityScatterSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicHighDensityScatterSeriesDescriptionMetadata()": "GeographicHighDensityScatterSeriesDescriptionMetadata()", + "GeographicHighDensityScatterSeriesDescriptionMetadata": "GeographicHighDensityScatterSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicHighDensityScatterSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicHighDensityScatterSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicHighDensityScatterSeriesDescriptionModule()": "GeographicHighDensityScatterSeriesDescriptionModule()", + "GeographicHighDensityScatterSeriesDescriptionModule": "GeographicHighDensityScatterSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicMapCoreDescriptionModule()": "GeographicMapCoreDescriptionModule()", + "GeographicMapCoreDescriptionModule": "GeographicMapCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapDashboardTileDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDashboardTileDescriptionModule()": "GeographicMapDashboardTileDescriptionModule()", + "GeographicMapDashboardTileDescriptionModule": "GeographicMapDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/GeographicMapDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDashboardTileFeature()": "GeographicMapDashboardTileFeature()", + "GeographicMapDashboardTileFeature": "GeographicMapDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "GeographicMapDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDescription()": "GeographicMapDescription()", + "GeographicMapDescription": "GeographicMapDescription()", + "ActualWindowScale": "ActualWindowScale", + "ActualWorldRect": "ActualWorldRect", + "BackgroundContent": "BackgroundContent", + "BackgroundTilingMode": "BackgroundTilingMode", + "Height": "Height", + "ImageTilesReadyRef": "ImageTilesReadyRef", + "IsHorizontalWrappingEnabled": "IsHorizontalWrappingEnabled", + "ResizeBehavior": "ResizeBehavior", + "SuppressZoomResetOnWorldRectChange": "SuppressZoomResetOnWorldRectChange", + "Type": "Type", + "UseWorldRectForZoomBounds": "UseWorldRectForZoomBounds", + "Width": "Width", + "WindowScale": "WindowScale", + "WorldRect": "WorldRect", + "Zoomable": "Zoomable" + } + } + ], + "GeographicMapDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDescriptionMetadata()": "GeographicMapDescriptionMetadata()", + "GeographicMapDescriptionMetadata": "GeographicMapDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicMapDescriptionModule()": "GeographicMapDescriptionModule()", + "GeographicMapDescriptionModule": "GeographicMapDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapImagery": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicMapImagery", + "k": "class", + "s": "classes", + "m": { + "ClearTileCache()": "ClearTileCache()", + "ClearTileCache": "ClearTileCache()", + "GeographicMap": "GeographicMap", + "IsHorizontalWrappingEnabled": "IsHorizontalWrappingEnabled", + "OnCancellingImage(CancellingMultiScaleImageEventArgs)": "OnCancellingImage(CancellingMultiScaleImageEventArgs)", + "OnCancellingImage": "OnCancellingImage(CancellingMultiScaleImageEventArgs)", + "OnDownloadingImage(DownloadingMultiScaleImageEventArgs)": "OnDownloadingImage(DownloadingMultiScaleImageEventArgs)", + "OnDownloadingImage": "OnDownloadingImage(DownloadingMultiScaleImageEventArgs)", + "OnImageTilesReady(EventArgs)": "OnImageTilesReady(EventArgs)", + "OnImageTilesReady": "OnImageTilesReady(EventArgs)", + "OnImagesChanged(EventArgs)": "OnImagesChanged(EventArgs)", + "OnImagesChanged": "OnImagesChanged(EventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Referer": "Referer", + "UserAgent": "UserAgent", + "WindowRect": "WindowRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GeographicMapImageryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMapImageryDescription()": "GeographicMapImageryDescription()", + "GeographicMapImageryDescription": "GeographicMapImageryDescription()", + "CancellingImageRef": "CancellingImageRef", + "DownloadingImageRef": "DownloadingImageRef", + "ImageTilesReadyRef": "ImageTilesReadyRef", + "ImagesChangedRef": "ImagesChangedRef", + "IsHorizontalWrappingEnabled": "IsHorizontalWrappingEnabled", + "Opacity": "Opacity", + "Referer": "Referer", + "Type": "Type", + "UserAgent": "UserAgent", + "WindowRect": "WindowRect" + } + } + ], + "GeographicMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMapImageryDescriptionMetadata()": "GeographicMapImageryDescriptionMetadata()", + "GeographicMapImageryDescriptionMetadata": "GeographicMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMapSeriesHost": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicMapSeriesHost", + "k": "class", + "s": "classes", + "m": { + "VisibleFromScale": "VisibleFromScale", + "VisibleFromScaleProperty": "VisibleFromScaleProperty" + } + } + ], + "GeographicMapSeriesHostDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapSeriesHostDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMapSeriesHostDescription()": "GeographicMapSeriesHostDescription()", + "GeographicMapSeriesHostDescription": "GeographicMapSeriesHostDescription()", + "Type": "Type", + "VisibleFromScale": "VisibleFromScale" + } + } + ], + "GeographicMapSeriesHostDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMapSeriesHostDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMapSeriesHostDescriptionMetadata()": "GeographicMapSeriesHostDescriptionMetadata()", + "GeographicMapSeriesHostDescriptionMetadata": "GeographicMapSeriesHostDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMarkerSeries": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicMarkerSeries", + "k": "class", + "s": "classes", + "m": { + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerTemplate": "MarkerTemplate", + "MarkerTemplateProperty": "MarkerTemplateProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "MaximumMarkers": "MaximumMarkers", + "MaximumMarkersProperty": "MaximumMarkersProperty" + } + } + ], + "GeographicMarkerSeriesBase": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicMarkerSeriesBase", + "k": "class", + "s": "classes" + } + ], + "GeographicMarkerSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMarkerSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMarkerSeriesBaseDescription()": "GeographicMarkerSeriesBaseDescription()", + "GeographicMarkerSeriesBaseDescription": "GeographicMarkerSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicMarkerSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMarkerSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMarkerSeriesBaseDescriptionMetadata()": "GeographicMarkerSeriesBaseDescriptionMetadata()", + "GeographicMarkerSeriesBaseDescriptionMetadata": "GeographicMarkerSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicMarkerSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMarkerSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicMarkerSeriesDescription()": "GeographicMarkerSeriesDescription()", + "GeographicMarkerSeriesDescription": "GeographicMarkerSeriesDescription()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "MarkerBrush": "MarkerBrush", + "MarkerFillMode": "MarkerFillMode", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "MaximumMarkers": "MaximumMarkers", + "Type": "Type" + } + } + ], + "GeographicMarkerSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicMarkerSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicMarkerSeriesDescriptionMetadata()": "GeographicMarkerSeriesDescriptionMetadata()", + "GeographicMarkerSeriesDescriptionMetadata": "GeographicMarkerSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicPolylineSeries": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicPolylineSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicPolylineSeries()": "GeographicPolylineSeries()", + "GeographicPolylineSeries": "GeographicPolylineSeries()", + "ShapeFill": "ShapeFill", + "ShapeFillProperty": "ShapeFillProperty", + "ShapeOpacity": "ShapeOpacity", + "ShapeOpacityProperty": "ShapeOpacityProperty", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeProperty": "ShapeStrokeProperty", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "ShapeStrokeThicknessProperty": "ShapeStrokeThicknessProperty", + "ShapeStyleSelector": "ShapeStyleSelector", + "ShapeStyleSelectorProperty": "ShapeStyleSelectorProperty" + } + } + ], + "GeographicPolylineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicPolylineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicPolylineSeriesDescription()": "GeographicPolylineSeriesDescription()", + "GeographicPolylineSeriesDescription": "GeographicPolylineSeriesDescription()", + "ShapeFill": "ShapeFill", + "ShapeOpacity": "ShapeOpacity", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "ShapeStyleSelectorRef": "ShapeStyleSelectorRef", + "StyleShapeRef": "StyleShapeRef", + "Type": "Type" + } + } + ], + "GeographicPolylineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicPolylineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicPolylineSeriesDescriptionMetadata()": "GeographicPolylineSeriesDescriptionMetadata()", + "GeographicPolylineSeriesDescriptionMetadata": "GeographicPolylineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicPolylineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicPolylineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicPolylineSeriesDescriptionModule()": "GeographicPolylineSeriesDescriptionModule()", + "GeographicPolylineSeriesDescriptionModule": "GeographicPolylineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicProportionalSymbolSeries": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicProportionalSymbolSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeries()": "GeographicProportionalSymbolSeries()", + "GeographicProportionalSymbolSeries": "GeographicProportionalSymbolSeries()", + "FillMemberPath": "FillMemberPath", + "FillMemberPathProperty": "FillMemberPathProperty", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "FillScaleUseGlobalValuesProperty": "FillScaleUseGlobalValuesProperty", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterMarkerStyleAllowedProperty": "IsCustomScatterMarkerStyleAllowedProperty", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "IsCustomScatterStyleAllowedProperty": "IsCustomScatterStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LatitudeMemberPath": "LatitudeMemberPath", + "LatitudeMemberPathProperty": "LatitudeMemberPathProperty", + "LongitudeMemberPath": "LongitudeMemberPath", + "LongitudeMemberPathProperty": "LongitudeMemberPathProperty", + "MarkerBrushBrightness": "MarkerBrushBrightness", + "MarkerBrushBrightnessProperty": "MarkerBrushBrightnessProperty", + "MarkerOutlineBrightness": "MarkerOutlineBrightness", + "MarkerOutlineBrightnessProperty": "MarkerOutlineBrightnessProperty", + "MarkerOutlineUsesFillScale": "MarkerOutlineUsesFillScale", + "MarkerOutlineUsesFillScaleProperty": "MarkerOutlineUsesFillScaleProperty", + "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterMarkerStyle": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "OnAssigningScatterStyle": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusMemberPathProperty": "RadiusMemberPathProperty", + "RadiusScale": "RadiusScale", + "RadiusScaleProperty": "RadiusScaleProperty", + "RadiusScaleUseGlobalValues": "RadiusScaleUseGlobalValues", + "RadiusScaleUseGlobalValuesProperty": "RadiusScaleUseGlobalValuesProperty" + } + } + ], + "GeographicProportionalSymbolSeriesBase": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicProportionalSymbolSeriesBase", + "k": "class", + "s": "classes" + } + ], + "GeographicProportionalSymbolSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesBaseDescription()": "GeographicProportionalSymbolSeriesBaseDescription()", + "GeographicProportionalSymbolSeriesBaseDescription": "GeographicProportionalSymbolSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicProportionalSymbolSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesBaseDescriptionMetadata()": "GeographicProportionalSymbolSeriesBaseDescriptionMetadata()", + "GeographicProportionalSymbolSeriesBaseDescriptionMetadata": "GeographicProportionalSymbolSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicProportionalSymbolSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesDescription()": "GeographicProportionalSymbolSeriesDescription()", + "GeographicProportionalSymbolSeriesDescription": "GeographicProportionalSymbolSeriesDescription()", + "AssigningScatterMarkerStyleRef": "AssigningScatterMarkerStyleRef", + "AssigningScatterStyleRef": "AssigningScatterStyleRef", + "FillMemberPath": "FillMemberPath", + "FillScale": "FillScale", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchThreshold": "ItemSearchThreshold", + "LabelMemberPath": "LabelMemberPath", + "LatitudeMemberPath": "LatitudeMemberPath", + "LongitudeMemberPath": "LongitudeMemberPath", + "MarkerBrushBrightness": "MarkerBrushBrightness", + "MarkerOutlineBrightness": "MarkerOutlineBrightness", + "MarkerOutlineUsesFillScale": "MarkerOutlineUsesFillScale", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusScale": "RadiusScale", + "RadiusScaleUseGlobalValues": "RadiusScaleUseGlobalValues", + "Type": "Type" + } + } + ], + "GeographicProportionalSymbolSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesDescriptionMetadata()": "GeographicProportionalSymbolSeriesDescriptionMetadata()", + "GeographicProportionalSymbolSeriesDescriptionMetadata": "GeographicProportionalSymbolSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicProportionalSymbolSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicProportionalSymbolSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicProportionalSymbolSeriesDescriptionModule()": "GeographicProportionalSymbolSeriesDescriptionModule()", + "GeographicProportionalSymbolSeriesDescriptionModule": "GeographicProportionalSymbolSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicScatterAreaSeries": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicScatterAreaSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicScatterAreaSeries()": "GeographicScatterAreaSeries()", + "GeographicScatterAreaSeries": "GeographicScatterAreaSeries()", + "ColorMemberPath": "ColorMemberPath", + "ColorMemberPathProperty": "ColorMemberPathProperty", + "ColorScale": "ColorScale", + "ColorScaleProperty": "ColorScaleProperty", + "OnTriangulationStatusChanged(TriangulationStatusEventArgs)": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "OnTriangulationStatusChanged": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "UpdateActualColorScale()": "UpdateActualColorScale()", + "UpdateActualColorScale": "UpdateActualColorScale()" + } + } + ], + "GeographicScatterAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicScatterAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicScatterAreaSeriesDescription()": "GeographicScatterAreaSeriesDescription()", + "GeographicScatterAreaSeriesDescription": "GeographicScatterAreaSeriesDescription()", + "ActualColorScale": "ActualColorScale", + "ColorMemberPath": "ColorMemberPath", + "ColorScale": "ColorScale", + "TriangulationStatusChangedRef": "TriangulationStatusChangedRef", + "Type": "Type" + } + } + ], + "GeographicScatterAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicScatterAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicScatterAreaSeriesDescriptionMetadata()": "GeographicScatterAreaSeriesDescriptionMetadata()", + "GeographicScatterAreaSeriesDescriptionMetadata": "GeographicScatterAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicScatterAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicScatterAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicScatterAreaSeriesDescriptionModule()": "GeographicScatterAreaSeriesDescriptionModule()", + "GeographicScatterAreaSeriesDescriptionModule": "GeographicScatterAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicShapeSeries": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicShapeSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeries()": "GeographicShapeSeries()", + "GeographicShapeSeries": "GeographicShapeSeries()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerTemplate": "MarkerTemplate", + "MarkerTemplateProperty": "MarkerTemplateProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "ShapeFill": "ShapeFill", + "ShapeFillProperty": "ShapeFillProperty", + "ShapeOpacity": "ShapeOpacity", + "ShapeOpacityProperty": "ShapeOpacityProperty", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeProperty": "ShapeStrokeProperty", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "ShapeStrokeThicknessProperty": "ShapeStrokeThicknessProperty", + "ShapeStyleSelector": "ShapeStyleSelector", + "ShapeStyleSelectorProperty": "ShapeStyleSelectorProperty" + } + } + ], + "GeographicShapeSeriesBase": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicShapeSeriesBase", + "k": "class", + "s": "classes", + "m": { + "FillMemberPath": "FillMemberPath", + "FillMemberPathProperty": "FillMemberPathProperty", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "FillScaleUseGlobalValuesProperty": "FillScaleUseGlobalValuesProperty", + "IsCustomShapeMarkerStyleAllowed": "IsCustomShapeMarkerStyleAllowed", + "IsCustomShapeMarkerStyleAllowedProperty": "IsCustomShapeMarkerStyleAllowedProperty", + "IsCustomShapeStyleAllowed": "IsCustomShapeStyleAllowed", + "IsCustomShapeStyleAllowedProperty": "IsCustomShapeStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchPointsThreshold": "ItemSearchPointsThreshold", + "ItemSearchPointsThresholdProperty": "ItemSearchPointsThresholdProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)": "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)", + "OnAssigningShapeMarkerStyle": "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)", + "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)": "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)", + "OnAssigningShapeStyle": "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)", + "ShapeFilterResolution": "ShapeFilterResolution", + "ShapeFilterResolutionProperty": "ShapeFilterResolutionProperty", + "ShapeMemberPath": "ShapeMemberPath", + "ShapeMemberPathProperty": "ShapeMemberPathProperty", + "ShapefileDataSource": "ShapefileDataSource", + "ShapefileDataSourceProperty": "ShapefileDataSourceProperty" + } + } + ], + "GeographicShapeSeriesBaseBase": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicShapeSeriesBaseBase", + "k": "class", + "s": "classes" + } + ], + "GeographicShapeSeriesBaseBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicShapeSeriesBaseBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesBaseBaseDescription()": "GeographicShapeSeriesBaseBaseDescription()", + "GeographicShapeSeriesBaseBaseDescription": "GeographicShapeSeriesBaseBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicShapeSeriesBaseBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicShapeSeriesBaseBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesBaseBaseDescriptionMetadata()": "GeographicShapeSeriesBaseBaseDescriptionMetadata()", + "GeographicShapeSeriesBaseBaseDescriptionMetadata": "GeographicShapeSeriesBaseBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicShapeSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicShapeSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesBaseDescription()": "GeographicShapeSeriesBaseDescription()", + "GeographicShapeSeriesBaseDescription": "GeographicShapeSeriesBaseDescription()", + "AssigningShapeMarkerStyleRef": "AssigningShapeMarkerStyleRef", + "AssigningShapeStyleRef": "AssigningShapeStyleRef", + "FillMemberPath": "FillMemberPath", + "FillScale": "FillScale", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "IsCustomShapeMarkerStyleAllowed": "IsCustomShapeMarkerStyleAllowed", + "IsCustomShapeStyleAllowed": "IsCustomShapeStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchPointsThreshold": "ItemSearchPointsThreshold", + "ItemSearchThreshold": "ItemSearchThreshold", + "ShapeFilterResolution": "ShapeFilterResolution", + "ShapeMemberPath": "ShapeMemberPath", + "ShapefileDataSource": "ShapefileDataSource", + "Type": "Type" + } + } + ], + "GeographicShapeSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicShapeSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesBaseDescriptionMetadata()": "GeographicShapeSeriesBaseDescriptionMetadata()", + "GeographicShapeSeriesBaseDescriptionMetadata": "GeographicShapeSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicShapeSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicShapeSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesDescription()": "GeographicShapeSeriesDescription()", + "GeographicShapeSeriesDescription": "GeographicShapeSeriesDescription()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "MarkerBrush": "MarkerBrush", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerFillMode": "MarkerFillMode", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "ShapeFill": "ShapeFill", + "ShapeOpacity": "ShapeOpacity", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "ShapeStyleSelectorRef": "ShapeStyleSelectorRef", + "StyleShapeRef": "StyleShapeRef", + "Type": "Type" + } + } + ], + "GeographicShapeSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicShapeSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesDescriptionMetadata()": "GeographicShapeSeriesDescriptionMetadata()", + "GeographicShapeSeriesDescriptionMetadata": "GeographicShapeSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicShapeSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicShapeSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicShapeSeriesDescriptionModule()": "GeographicShapeSeriesDescriptionModule()", + "GeographicShapeSeriesDescriptionModule": "GeographicShapeSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicSymbolSeries": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicSymbolSeries", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeries()": "GeographicSymbolSeries()", + "GeographicSymbolSeries": "GeographicSymbolSeries()", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterMarkerStyleAllowedProperty": "IsCustomScatterMarkerStyleAllowedProperty", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "IsCustomScatterStyleAllowedProperty": "IsCustomScatterStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "LatitudeMemberPath": "LatitudeMemberPath", + "LatitudeMemberPathProperty": "LatitudeMemberPathProperty", + "LongitudeMemberPath": "LongitudeMemberPath", + "LongitudeMemberPathProperty": "LongitudeMemberPathProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterMarkerStyle": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "OnAssigningScatterStyle": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)" + } + } + ], + "GeographicSymbolSeriesBase": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicSymbolSeriesBase", + "k": "class", + "s": "classes" + } + ], + "GeographicSymbolSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicSymbolSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesBaseDescription()": "GeographicSymbolSeriesBaseDescription()", + "GeographicSymbolSeriesBaseDescription": "GeographicSymbolSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicSymbolSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicSymbolSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesBaseDescriptionMetadata()": "GeographicSymbolSeriesBaseDescriptionMetadata()", + "GeographicSymbolSeriesBaseDescriptionMetadata": "GeographicSymbolSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicSymbolSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicSymbolSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesDescription()": "GeographicSymbolSeriesDescription()", + "GeographicSymbolSeriesDescription": "GeographicSymbolSeriesDescription()", + "AssigningScatterMarkerStyleRef": "AssigningScatterMarkerStyleRef", + "AssigningScatterStyleRef": "AssigningScatterStyleRef", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchThreshold": "ItemSearchThreshold", + "LatitudeMemberPath": "LatitudeMemberPath", + "LongitudeMemberPath": "LongitudeMemberPath", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "Type": "Type" + } + } + ], + "GeographicSymbolSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicSymbolSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesDescriptionMetadata()": "GeographicSymbolSeriesDescriptionMetadata()", + "GeographicSymbolSeriesDescriptionMetadata": "GeographicSymbolSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicSymbolSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicSymbolSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicSymbolSeriesDescriptionModule()": "GeographicSymbolSeriesDescriptionModule()", + "GeographicSymbolSeriesDescriptionModule": "GeographicSymbolSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicTileSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicTileSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicTileSeriesDescription()": "GeographicTileSeriesDescription()", + "GeographicTileSeriesDescription": "GeographicTileSeriesDescription()", + "ImageTilesReadyRef": "ImageTilesReadyRef", + "TileImagery": "TileImagery", + "Type": "Type" + } + } + ], + "GeographicTileSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicTileSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicTileSeriesDescriptionMetadata()": "GeographicTileSeriesDescriptionMetadata()", + "GeographicTileSeriesDescriptionMetadata": "GeographicTileSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicTileSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicTileSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GeographicTileSeriesDescriptionModule()": "GeographicTileSeriesDescriptionModule()", + "GeographicTileSeriesDescriptionModule": "GeographicTileSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicXYTriangulatingSeries": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicXYTriangulatingSeries", + "k": "class", + "s": "classes", + "m": { + "LatitudeMemberPath": "LatitudeMemberPath", + "LatitudeMemberPathProperty": "LatitudeMemberPathProperty", + "LongitudeMemberPath": "LongitudeMemberPath", + "LongitudeMemberPathProperty": "LongitudeMemberPathProperty", + "TriangleVertexMemberPath1": "TriangleVertexMemberPath1", + "TriangleVertexMemberPath1Property": "TriangleVertexMemberPath1Property", + "TriangleVertexMemberPath2": "TriangleVertexMemberPath2", + "TriangleVertexMemberPath2Property": "TriangleVertexMemberPath2Property", + "TriangleVertexMemberPath3": "TriangleVertexMemberPath3", + "TriangleVertexMemberPath3Property": "TriangleVertexMemberPath3Property", + "TrianglesSource": "TrianglesSource", + "TrianglesSourceProperty": "TrianglesSourceProperty" + } + } + ], + "GeographicXYTriangulatingSeriesBase": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/GeographicXYTriangulatingSeriesBase", + "k": "class", + "s": "classes" + } + ], + "GeographicXYTriangulatingSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicXYTriangulatingSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicXYTriangulatingSeriesBaseDescription()": "GeographicXYTriangulatingSeriesBaseDescription()", + "GeographicXYTriangulatingSeriesBaseDescription": "GeographicXYTriangulatingSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "GeographicXYTriangulatingSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicXYTriangulatingSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicXYTriangulatingSeriesBaseDescriptionMetadata()": "GeographicXYTriangulatingSeriesBaseDescriptionMetadata()", + "GeographicXYTriangulatingSeriesBaseDescriptionMetadata": "GeographicXYTriangulatingSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeographicXYTriangulatingSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicXYTriangulatingSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "GeographicXYTriangulatingSeriesDescription()": "GeographicXYTriangulatingSeriesDescription()", + "GeographicXYTriangulatingSeriesDescription": "GeographicXYTriangulatingSeriesDescription()", + "LatitudeMemberPath": "LatitudeMemberPath", + "LongitudeMemberPath": "LongitudeMemberPath", + "TriangleVertexMemberPath1": "TriangleVertexMemberPath1", + "TriangleVertexMemberPath2": "TriangleVertexMemberPath2", + "TriangleVertexMemberPath3": "TriangleVertexMemberPath3", + "TrianglesSourceRef": "TrianglesSourceRef", + "Type": "Type" + } + } + ], + "GeographicXYTriangulatingSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeographicXYTriangulatingSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GeographicXYTriangulatingSeriesDescriptionMetadata()": "GeographicXYTriangulatingSeriesDescriptionMetadata()", + "GeographicXYTriangulatingSeriesDescriptionMetadata": "GeographicXYTriangulatingSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GeometryData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GeometryData", + "k": "class", + "s": "classes", + "m": { + "GeometryData()": "GeometryData()", + "GeometryData": "GeometryData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "GetPointsSettings": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GetPointsSettings", + "k": "class", + "s": "classes", + "m": { + "GetPointsSettings()": "GetPointsSettings()", + "GetPointsSettings": "GetPointsSettings()", + "IgnoreFigureStartPoint": "IgnoreFigureStartPoint" + } + } + ], + "GetTileImageUriArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GetTileImageUriArgs", + "k": "class", + "s": "classes", + "m": { + "GetTileImageUriArgs(int, int, int)": "GetTileImageUriArgs(int, int, int)", + "GetTileImageUriArgs": "GetTileImageUriArgs(int, int, int)", + "TileImageUri": "TileImageUri", + "TileLevel": "TileLevel", + "TilePositionX": "TilePositionX", + "TilePositionY": "TilePositionY", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GetTileImageUriArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GetTileImageUriArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GetTileImageUriArgsDescription()": "GetTileImageUriArgsDescription()", + "GetTileImageUriArgsDescription": "GetTileImageUriArgsDescription()", + "TileImageUri": "TileImageUri", + "TileLevel": "TileLevel", + "TilePositionX": "TilePositionX", + "TilePositionY": "TilePositionY", + "Type": "Type" + } + } + ], + "GetTileImageUriArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GetTileImageUriArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GetTileImageUriArgsDescriptionMetadata()": "GetTileImageUriArgsDescriptionMetadata()", + "GetTileImageUriArgsDescriptionMetadata": "GetTileImageUriArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GlobalAnimationState": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GlobalAnimationState", + "k": "class", + "s": "classes", + "m": { + "GetAnimationIdleVersionNumber()": "GetAnimationIdleVersionNumber()", + "GetAnimationIdleVersionNumber": "GetAnimationIdleVersionNumber()", + "Instance": "Instance", + "IsAnimationActive()": "IsAnimationActive()", + "IsAnimationActive": "IsAnimationActive()", + "NotifyAnimationEnd()": "NotifyAnimationEnd()", + "NotifyAnimationEnd": "NotifyAnimationEnd()", + "NotifyAnimationStart()": "NotifyAnimationStart()", + "NotifyAnimationStart": "NotifyAnimationStart()", + "QueueForAnimationIdle(Action, int)": "QueueForAnimationIdle(Action, int)", + "QueueForAnimationIdle": "QueueForAnimationIdle(Action, int)", + "QueueForAnimationIdleWithTimeout(Action, int, int)": "QueueForAnimationIdleWithTimeout(Action, int, int)", + "QueueForAnimationIdleWithTimeout": "QueueForAnimationIdleWithTimeout(Action, int, int)", + "SetExecutionContext(IExecutionContext)": "SetExecutionContext(IExecutionContext)", + "SetExecutionContext": "SetExecutionContext(IExecutionContext)" + } + } + ], + "GlobalMemberAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/GlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "GlobalMemberAttribute()": "GlobalMemberAttribute()", + "GlobalMemberAttribute": "GlobalMemberAttribute()" + } + } + ], + "GlobalStaticResources": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/GlobalStaticResources", + "k": "class", + "s": "classes", + "m": { + "GlobalStaticResources()": "GlobalStaticResources()", + "GlobalStaticResources": "GlobalStaticResources()", + "Initialize()": "Initialize()", + "Initialize": "Initialize()", + "RegisterDefaultStyles()": "RegisterDefaultStyles()", + "RegisterDefaultStyles": "RegisterDefaultStyles()", + "RegisterResourceDictionariesBySource()": "RegisterResourceDictionariesBySource()", + "RegisterResourceDictionariesBySource": "RegisterResourceDictionariesBySource()", + "RegisterResourceDictionariesBySourceLocal()": "RegisterResourceDictionariesBySourceLocal()", + "RegisterResourceDictionariesBySourceLocal": "RegisterResourceDictionariesBySourceLocal()" + } + } + ], + "GotFocusEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GotFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "GotFocusEventArgs()": "GotFocusEventArgs()", + "GotFocusEventArgs": "GotFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GotFocusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GotFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GotFocusEventArgsDescription()": "GotFocusEventArgsDescription()", + "GotFocusEventArgsDescription": "GotFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "GotFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GotFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GotFocusEventArgsDescriptionMetadata()": "GotFocusEventArgsDescriptionMetadata()", + "GotFocusEventArgsDescriptionMetadata": "GotFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GradientStop": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/GradientStop", + "k": "class", + "s": "classes", + "m": { + "GradientStop()": "GradientStop()", + "GradientStop": "GradientStop()", + "Color": "Color", + "Offset": "Offset" + } + } + ], + "GradientStopAppearanceData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GradientStopAppearanceData", + "k": "class", + "s": "classes", + "m": { + "GradientStopAppearanceData()": "GradientStopAppearanceData()", + "GradientStopAppearanceData": "GradientStopAppearanceData()", + "ColorValue": "ColorValue", + "Offset": "Offset", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "GradientStopCollection": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/GradientStopCollection", + "k": "class", + "s": "classes", + "m": { + "GradientStopCollection()": "GradientStopCollection()", + "GradientStopCollection": "GradientStopCollection()" + } + } + ], + "GridActivationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/GridActivationMode", + "k": "enum", + "s": "enums" + } + ], + "GridActiveCellChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridActiveCellChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridActiveCellChangedEventArgs()": "GridActiveCellChangedEventArgs()", + "GridActiveCellChangedEventArgs": "GridActiveCellChangedEventArgs()", + "NewActiveCell": "NewActiveCell", + "OldActiveCell": "OldActiveCell", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridActiveCellChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridActiveCellChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridActiveCellChangedEventArgsDescription()": "GridActiveCellChangedEventArgsDescription()", + "GridActiveCellChangedEventArgsDescription": "GridActiveCellChangedEventArgsDescription()", + "NewActiveCell": "NewActiveCell", + "OldActiveCell": "OldActiveCell", + "Type": "Type" + } + } + ], + "GridActiveCellChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridActiveCellChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridActiveCellChangedEventArgsDescriptionMetadata()": "GridActiveCellChangedEventArgsDescriptionMetadata()", + "GridActiveCellChangedEventArgsDescriptionMetadata": "GridActiveCellChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridAnimationPhaseSettings": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridAnimationPhaseSettings", + "k": "class", + "s": "classes", + "m": { + "GridAnimationPhaseSettings()": "GridAnimationPhaseSettings()", + "GridAnimationPhaseSettings": "GridAnimationPhaseSettings()", + "DesiredSubItemDurationMilliseconds": "DesiredSubItemDurationMilliseconds", + "DurationMilliseconds": "DurationMilliseconds", + "EasingFunctionType": "EasingFunctionType", + "HoldInitialMilliseconds": "HoldInitialMilliseconds", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PerItemDelayMilliseconds": "PerItemDelayMilliseconds", + "ShouldItemsFinishSimultaneously": "ShouldItemsFinishSimultaneously", + "SubItemDurationMilliseconds": "SubItemDurationMilliseconds", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridAnimationPhaseSettingsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridAnimationPhaseSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "GridAnimationPhaseSettingsDescription()": "GridAnimationPhaseSettingsDescription()", + "GridAnimationPhaseSettingsDescription": "GridAnimationPhaseSettingsDescription()", + "DesiredSubItemDurationMilliseconds": "DesiredSubItemDurationMilliseconds", + "DurationMilliseconds": "DurationMilliseconds", + "EasingFunctionType": "EasingFunctionType", + "HoldInitialMilliseconds": "HoldInitialMilliseconds", + "PerItemDelayMilliseconds": "PerItemDelayMilliseconds", + "ShouldItemsFinishSimultaneously": "ShouldItemsFinishSimultaneously", + "SubItemDurationMilliseconds": "SubItemDurationMilliseconds", + "Type": "Type" + } + } + ], + "GridAnimationPhaseSettingsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridAnimationPhaseSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridAnimationPhaseSettingsDescriptionMetadata()": "GridAnimationPhaseSettingsDescriptionMetadata()", + "GridAnimationPhaseSettingsDescriptionMetadata": "GridAnimationPhaseSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridAnimationSettings": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridAnimationSettings", + "k": "class", + "s": "classes", + "m": { + "GridAnimationSettings()": "GridAnimationSettings()", + "GridAnimationSettings": "GridAnimationSettings()", + "CellActivationMainPhase": "CellActivationMainPhase", + "CellActivationMainPhaseProperty": "CellActivationMainPhaseProperty", + "CellDataLoadedMainPhase": "CellDataLoadedMainPhase", + "CellDataLoadedMainPhaseProperty": "CellDataLoadedMainPhaseProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "RowHoverMainPhase": "RowHoverMainPhase", + "RowHoverMainPhaseProperty": "RowHoverMainPhaseProperty", + "RowSelectionMainPhase": "RowSelectionMainPhase", + "RowSelectionMainPhaseProperty": "RowSelectionMainPhaseProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridAnimationSettingsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridAnimationSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "GridAnimationSettingsDescription()": "GridAnimationSettingsDescription()", + "GridAnimationSettingsDescription": "GridAnimationSettingsDescription()", + "Type": "Type" + } + } + ], + "GridAnimationSettingsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridAnimationSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridAnimationSettingsDescriptionMetadata()": "GridAnimationSettingsDescriptionMetadata()", + "GridAnimationSettingsDescriptionMetadata": "GridAnimationSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellEditEndedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridCellEditEndedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridCellEditEndedEventArgs()": "GridCellEditEndedEventArgs()", + "GridCellEditEndedEventArgs": "GridCellEditEndedEventArgs()", + "Column": "Column", + "Item": "Item", + "Row": "Row", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCellEditEndedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellEditEndedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellEditEndedEventArgsDescription()": "GridCellEditEndedEventArgsDescription()", + "GridCellEditEndedEventArgsDescription": "GridCellEditEndedEventArgsDescription()", + "Column": "Column", + "Item": "Item", + "Row": "Row", + "Type": "Type" + } + } + ], + "GridCellEditEndedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellEditEndedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellEditEndedEventArgsDescriptionMetadata()": "GridCellEditEndedEventArgsDescriptionMetadata()", + "GridCellEditEndedEventArgsDescriptionMetadata": "GridCellEditEndedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellEditStartedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridCellEditStartedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridCellEditStartedEventArgs()": "GridCellEditStartedEventArgs()", + "GridCellEditStartedEventArgs": "GridCellEditStartedEventArgs()", + "Column": "Column", + "Item": "Item", + "Row": "Row", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCellEditStartedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellEditStartedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellEditStartedEventArgsDescription()": "GridCellEditStartedEventArgsDescription()", + "GridCellEditStartedEventArgsDescription": "GridCellEditStartedEventArgsDescription()", + "Column": "Column", + "Item": "Item", + "Row": "Row", + "Type": "Type" + } + } + ], + "GridCellEditStartedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellEditStartedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellEditStartedEventArgsDescriptionMetadata()": "GridCellEditStartedEventArgsDescriptionMetadata()", + "GridCellEditStartedEventArgsDescriptionMetadata": "GridCellEditStartedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellEventArgsDescription()": "GridCellEventArgsDescription()", + "GridCellEventArgsDescription": "GridCellEventArgsDescription()", + "Button": "Button", + "CellInfo": "CellInfo", + "Grid": "Grid", + "IsDoubleClick": "IsDoubleClick", + "Type": "Type" + } + } + ], + "GridCellEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellEventArgsDescriptionMetadata()": "GridCellEventArgsDescriptionMetadata()", + "GridCellEventArgsDescriptionMetadata": "GridCellEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellPosition": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridCellPosition", + "k": "class", + "s": "classes", + "m": { + "GridCellPosition()": "GridCellPosition()", + "GridCellPosition": "GridCellPosition()", + "ColumnUniqueKey": "ColumnUniqueKey", + "RowIndex": "RowIndex", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCellPositionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellPositionDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellPositionDescription()": "GridCellPositionDescription()", + "GridCellPositionDescription": "GridCellPositionDescription()", + "ColumnUniqueKey": "ColumnUniqueKey", + "RowIndex": "RowIndex", + "Type": "Type" + } + } + ], + "GridCellPositionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellPositionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellPositionDescriptionMetadata()": "GridCellPositionDescriptionMetadata()", + "GridCellPositionDescriptionMetadata": "GridCellPositionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellPositionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellPositionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridCellPositionDescriptionModule()": "GridCellPositionDescriptionModule()", + "GridCellPositionDescriptionModule": "GridCellPositionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCellValueChangingEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridCellValueChangingEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridCellValueChangingEventArgs()": "GridCellValueChangingEventArgs()", + "GridCellValueChangingEventArgs": "GridCellValueChangingEventArgs()", + "CellInfo": "CellInfo", + "Column": "Column", + "EditID": "EditID", + "Item": "Item", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCellValueChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellValueChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCellValueChangingEventArgsDescription()": "GridCellValueChangingEventArgsDescription()", + "GridCellValueChangingEventArgsDescription": "GridCellValueChangingEventArgsDescription()", + "CellInfo": "CellInfo", + "ColumnRef": "ColumnRef", + "EditID": "EditID", + "Item": "Item", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "GridCellValueChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCellValueChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCellValueChangingEventArgsDescriptionMetadata()": "GridCellValueChangingEventArgsDescriptionMetadata()", + "GridCellValueChangingEventArgsDescriptionMetadata": "GridCellValueChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnAnimationSettings": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridColumnAnimationSettings", + "k": "class", + "s": "classes", + "m": { + "GridColumnAnimationSettings()": "GridColumnAnimationSettings()", + "GridColumnAnimationSettings": "GridColumnAnimationSettings()", + "ColumnAddingMainPhase": "ColumnAddingMainPhase", + "ColumnAddingPrePhase": "ColumnAddingPrePhase", + "ColumnExchangingCleanupPhase": "ColumnExchangingCleanupPhase", + "ColumnExchangingMainPhase": "ColumnExchangingMainPhase", + "ColumnHidingMainPhase": "ColumnHidingMainPhase", + "ColumnHidingPostPhase": "ColumnHidingPostPhase", + "ColumnMovingMainPhase": "ColumnMovingMainPhase", + "ColumnMovingPrePhase": "ColumnMovingPrePhase", + "ColumnPropertyUpdatingMainPhase": "ColumnPropertyUpdatingMainPhase", + "ColumnResizingMainPhase": "ColumnResizingMainPhase", + "ColumnShowingMainPhase": "ColumnShowingMainPhase", + "ColumnShowingPrePhase": "ColumnShowingPrePhase", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnAnimationSettingsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnAnimationSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnAnimationSettingsDescription()": "GridColumnAnimationSettingsDescription()", + "GridColumnAnimationSettingsDescription": "GridColumnAnimationSettingsDescription()", + "Type": "Type" + } + } + ], + "GridColumnAnimationSettingsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnAnimationSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnAnimationSettingsDescriptionMetadata()": "GridColumnAnimationSettingsDescriptionMetadata()", + "GridColumnAnimationSettingsDescriptionMetadata": "GridColumnAnimationSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnButtonOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnButtonOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnButtonOptionsDescription()": "GridColumnButtonOptionsDescription()", + "GridColumnButtonOptionsDescription": "GridColumnButtonOptionsDescription()", + "ApplyButtonCaption": "ApplyButtonCaption", + "ApplyButtonClickRef": "ApplyButtonClickRef", + "CancelButtonCaption": "CancelButtonCaption", + "CancelButtonClickRef": "CancelButtonClickRef", + "Type": "Type" + } + } + ], + "GridColumnButtonOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnButtonOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnButtonOptionsDescriptionMetadata()": "GridColumnButtonOptionsDescriptionMetadata()", + "GridColumnButtonOptionsDescriptionMetadata": "GridColumnButtonOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnButtonOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnButtonOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnButtonOptionsDescriptionModule()": "GridColumnButtonOptionsDescriptionModule()", + "GridColumnButtonOptionsDescriptionModule": "GridColumnButtonOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridColumnCollection", + "k": "class", + "s": "classes", + "m": { + "GridColumnCollection()": "GridColumnCollection()", + "GridColumnCollection": "GridColumnCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnFilterOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnFilterOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnFilterOptionsDescription()": "GridColumnFilterOptionsDescription()", + "GridColumnFilterOptionsDescription": "GridColumnFilterOptionsDescription()", + "ActualFilterListDensity": "ActualFilterListDensity", + "ClearColumnFiltersCaption": "ClearColumnFiltersCaption", + "FilterListDensity": "FilterListDensity", + "FilterListPlaceholderText": "FilterListPlaceholderText", + "TextFilterCaption": "TextFilterCaption", + "Type": "Type" + } + } + ], + "GridColumnFilterOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnFilterOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnFilterOptionsDescriptionMetadata()": "GridColumnFilterOptionsDescriptionMetadata()", + "GridColumnFilterOptionsDescriptionMetadata": "GridColumnFilterOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnFilterOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnFilterOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnFilterOptionsDescriptionModule()": "GridColumnFilterOptionsDescriptionModule()", + "GridColumnFilterOptionsDescriptionModule": "GridColumnFilterOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnGroupOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnGroupOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnGroupOptionsDescription()": "GridColumnGroupOptionsDescription()", + "GridColumnGroupOptionsDescription": "GridColumnGroupOptionsDescription()", + "Type": "Type" + } + } + ], + "GridColumnGroupOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnGroupOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnGroupOptionsDescriptionMetadata()": "GridColumnGroupOptionsDescriptionMetadata()", + "GridColumnGroupOptionsDescriptionMetadata": "GridColumnGroupOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnGroupOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnGroupOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnGroupOptionsDescriptionModule()": "GridColumnGroupOptionsDescriptionModule()", + "GridColumnGroupOptionsDescriptionModule": "GridColumnGroupOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnHideOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnHideOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnHideOptionsDescription()": "GridColumnHideOptionsDescription()", + "GridColumnHideOptionsDescription": "GridColumnHideOptionsDescription()", + "Type": "Type" + } + } + ], + "GridColumnHideOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnHideOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnHideOptionsDescriptionMetadata()": "GridColumnHideOptionsDescriptionMetadata()", + "GridColumnHideOptionsDescriptionMetadata": "GridColumnHideOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnHideOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnHideOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnHideOptionsDescriptionModule()": "GridColumnHideOptionsDescriptionModule()", + "GridColumnHideOptionsDescriptionModule": "GridColumnHideOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnMoveOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnMoveOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnMoveOptionsDescription()": "GridColumnMoveOptionsDescription()", + "GridColumnMoveOptionsDescription": "GridColumnMoveOptionsDescription()", + "MoveLeftCaption": "MoveLeftCaption", + "MoveRightCaption": "MoveRightCaption", + "Type": "Type" + } + } + ], + "GridColumnMoveOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnMoveOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnMoveOptionsDescriptionMetadata()": "GridColumnMoveOptionsDescriptionMetadata()", + "GridColumnMoveOptionsDescriptionMetadata": "GridColumnMoveOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnMoveOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnMoveOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnMoveOptionsDescriptionModule()": "GridColumnMoveOptionsDescriptionModule()", + "GridColumnMoveOptionsDescriptionModule": "GridColumnMoveOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsBaseDescription()": "GridColumnOptionsBaseDescription()", + "GridColumnOptionsBaseDescription": "GridColumnOptionsBaseDescription()", + "ActualBaseTheme": "ActualBaseTheme", + "ActualButtonDensity": "ActualButtonDensity", + "ActualDensity": "ActualDensity", + "AutoSize": "AutoSize", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "ButtonDensity": "ButtonDensity", + "ButtonFontFamily": "ButtonFontFamily", + "ButtonFontSize": "ButtonFontSize", + "ButtonFontStyle": "ButtonFontStyle", + "ButtonFontWeight": "ButtonFontWeight", + "Column": "Column", + "Density": "Density", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "TextColor": "TextColor", + "Type": "Type" + } + } + ], + "GridColumnOptionsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsBaseDescriptionMetadata()": "GridColumnOptionsBaseDescriptionMetadata()", + "GridColumnOptionsBaseDescriptionMetadata": "GridColumnOptionsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsDescription()": "GridColumnOptionsDescription()", + "GridColumnOptionsDescription": "GridColumnOptionsDescription()", + "ActualFilterListDensity": "ActualFilterListDensity", + "ActualSummaryListDensity": "ActualSummaryListDensity", + "ApplyButtonClickRef": "ApplyButtonClickRef", + "ApplyFiltersButtonCaption": "ApplyFiltersButtonCaption", + "CancelButtonClickRef": "CancelButtonClickRef", + "CancelFiltersButtonCaption": "CancelFiltersButtonCaption", + "ClearColumnFiltersCaption": "ClearColumnFiltersCaption", + "ColumnNameFontFamily": "ColumnNameFontFamily", + "ColumnNameFontSize": "ColumnNameFontSize", + "ColumnNameFontStyle": "ColumnNameFontStyle", + "ColumnNameFontWeight": "ColumnNameFontWeight", + "FilterListDensity": "FilterListDensity", + "FilterListPlaceholderText": "FilterListPlaceholderText", + "FilterOptionsVisible": "FilterOptionsVisible", + "GroupOptionsVisible": "GroupOptionsVisible", + "HeaderVisible": "HeaderVisible", + "HideOptionsVisible": "HideOptionsVisible", + "MoveHeaderCaption": "MoveHeaderCaption", + "MoveLeftCaption": "MoveLeftCaption", + "MoveOptionsVisible": "MoveOptionsVisible", + "MoveRightCaption": "MoveRightCaption", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "PinHeaderCaption": "PinHeaderCaption", + "PinLeftCaption": "PinLeftCaption", + "PinOptionsVisible": "PinOptionsVisible", + "PinRightCaption": "PinRightCaption", + "SortAscendingCaption": "SortAscendingCaption", + "SortDescendingCaption": "SortDescendingCaption", + "SortHeaderCaption": "SortHeaderCaption", + "SortOptionsVisible": "SortOptionsVisible", + "SummaryListBackground": "SummaryListBackground", + "SummaryListDensity": "SummaryListDensity", + "SummaryListTextColor": "SummaryListTextColor", + "SummaryOptionsVisible": "SummaryOptionsVisible", + "Type": "Type" + } + } + ], + "GridColumnOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsDescriptionMetadata()": "GridColumnOptionsDescriptionMetadata()", + "GridColumnOptionsDescriptionMetadata": "GridColumnOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsDescriptionModule()": "GridColumnOptionsDescriptionModule()", + "GridColumnOptionsDescriptionModule": "GridColumnOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsSectionBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsSectionBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsSectionBaseDescription()": "GridColumnOptionsSectionBaseDescription()", + "GridColumnOptionsSectionBaseDescription": "GridColumnOptionsSectionBaseDescription()", + "Type": "Type" + } + } + ], + "GridColumnOptionsSectionBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsSectionBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsSectionBaseDescriptionMetadata()": "GridColumnOptionsSectionBaseDescriptionMetadata()", + "GridColumnOptionsSectionBaseDescriptionMetadata": "GridColumnOptionsSectionBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnOptionsSimpleSectionBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsSimpleSectionBaseDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsSimpleSectionBaseDescription()": "GridColumnOptionsSimpleSectionBaseDescription()", + "GridColumnOptionsSimpleSectionBaseDescription": "GridColumnOptionsSimpleSectionBaseDescription()", + "Caption": "Caption", + "ShowCaption": "ShowCaption", + "Type": "Type" + } + } + ], + "GridColumnOptionsSimpleSectionBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnOptionsSimpleSectionBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnOptionsSimpleSectionBaseDescriptionMetadata()": "GridColumnOptionsSimpleSectionBaseDescriptionMetadata()", + "GridColumnOptionsSimpleSectionBaseDescriptionMetadata": "GridColumnOptionsSimpleSectionBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnPinOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnPinOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnPinOptionsDescription()": "GridColumnPinOptionsDescription()", + "GridColumnPinOptionsDescription": "GridColumnPinOptionsDescription()", + "PinLeftCaption": "PinLeftCaption", + "PinRightCaption": "PinRightCaption", + "Type": "Type" + } + } + ], + "GridColumnPinOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnPinOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnPinOptionsDescriptionMetadata()": "GridColumnPinOptionsDescriptionMetadata()", + "GridColumnPinOptionsDescriptionMetadata": "GridColumnPinOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnPinOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnPinOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnPinOptionsDescriptionModule()": "GridColumnPinOptionsDescriptionModule()", + "GridColumnPinOptionsDescriptionModule": "GridColumnPinOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnsAutoGeneratedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridColumnsAutoGeneratedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridColumnsAutoGeneratedEventArgs()": "GridColumnsAutoGeneratedEventArgs()", + "GridColumnsAutoGeneratedEventArgs": "GridColumnsAutoGeneratedEventArgs()", + "Columns": "Columns", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnsAutoGeneratedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnsAutoGeneratedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnsAutoGeneratedEventArgsDescription()": "GridColumnsAutoGeneratedEventArgsDescription()", + "GridColumnsAutoGeneratedEventArgsDescription": "GridColumnsAutoGeneratedEventArgsDescription()", + "Columns": "Columns", + "Type": "Type" + } + } + ], + "GridColumnsAutoGeneratedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnsAutoGeneratedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnsAutoGeneratedEventArgsDescriptionMetadata()": "GridColumnsAutoGeneratedEventArgsDescriptionMetadata()", + "GridColumnsAutoGeneratedEventArgsDescriptionMetadata": "GridColumnsAutoGeneratedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnsChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridColumnsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridColumnsChangedEventArgs()": "GridColumnsChangedEventArgs()", + "GridColumnsChangedEventArgs": "GridColumnsChangedEventArgs()", + "Columns": "Columns", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnsChangedEventArgsDescription()": "GridColumnsChangedEventArgsDescription()", + "GridColumnsChangedEventArgsDescription": "GridColumnsChangedEventArgsDescription()", + "Columns": "Columns", + "Type": "Type" + } + } + ], + "GridColumnsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnsChangedEventArgsDescriptionMetadata()": "GridColumnsChangedEventArgsDescriptionMetadata()", + "GridColumnsChangedEventArgsDescriptionMetadata": "GridColumnsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnSortOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnSortOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnSortOptionsDescription()": "GridColumnSortOptionsDescription()", + "GridColumnSortOptionsDescription": "GridColumnSortOptionsDescription()", + "AscendingCaption": "AscendingCaption", + "DescendingCaption": "DescendingCaption", + "SortDirection": "SortDirection", + "Type": "Type" + } + } + ], + "GridColumnSortOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnSortOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnSortOptionsDescriptionMetadata()": "GridColumnSortOptionsDescriptionMetadata()", + "GridColumnSortOptionsDescriptionMetadata": "GridColumnSortOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnSortOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnSortOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnSortOptionsDescriptionModule()": "GridColumnSortOptionsDescriptionModule()", + "GridColumnSortOptionsDescriptionModule": "GridColumnSortOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnSummaryOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnSummaryOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnSummaryOptionsDescription()": "GridColumnSummaryOptionsDescription()", + "GridColumnSummaryOptionsDescription": "GridColumnSummaryOptionsDescription()", + "ActiveCount": "ActiveCount", + "ActualSummaryListDensity": "ActualSummaryListDensity", + "SummaryCaption": "SummaryCaption", + "SummaryListBackground": "SummaryListBackground", + "SummaryListDensity": "SummaryListDensity", + "SummaryListTextColor": "SummaryListTextColor", + "Type": "Type" + } + } + ], + "GridColumnSummaryOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnSummaryOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnSummaryOptionsDescriptionMetadata()": "GridColumnSummaryOptionsDescriptionMetadata()", + "GridColumnSummaryOptionsDescriptionMetadata": "GridColumnSummaryOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnSummaryOptionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnSummaryOptionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridColumnSummaryOptionsDescriptionModule()": "GridColumnSummaryOptionsDescriptionModule()", + "GridColumnSummaryOptionsDescriptionModule": "GridColumnSummaryOptionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridColumnWidthChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridColumnWidthChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridColumnWidthChangedEventArgs()": "GridColumnWidthChangedEventArgs()", + "GridColumnWidthChangedEventArgs": "GridColumnWidthChangedEventArgs()", + "Column": "Column", + "NewWidth": "NewWidth", + "OldWidth": "OldWidth", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridColumnWidthChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnWidthChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridColumnWidthChangedEventArgsDescription()": "GridColumnWidthChangedEventArgsDescription()", + "GridColumnWidthChangedEventArgsDescription": "GridColumnWidthChangedEventArgsDescription()", + "ColumnRef": "ColumnRef", + "NewWidth": "NewWidth", + "OldWidth": "OldWidth", + "Type": "Type" + } + } + ], + "GridColumnWidthChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridColumnWidthChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridColumnWidthChangedEventArgsDescriptionMetadata()": "GridColumnWidthChangedEventArgsDescriptionMetadata()", + "GridColumnWidthChangedEventArgsDescriptionMetadata": "GridColumnWidthChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCompoundConditionalStyle": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridCompoundConditionalStyle", + "k": "class", + "s": "classes", + "m": { + "GetSubStyles()": "GetSubStyles()", + "GetSubStyles": "GetSubStyles()" + } + } + ], + "GridCompoundConditionalStyleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCompoundConditionalStyleDescription", + "k": "class", + "s": "classes", + "m": { + "GridCompoundConditionalStyleDescription()": "GridCompoundConditionalStyleDescription()", + "GridCompoundConditionalStyleDescription": "GridCompoundConditionalStyleDescription()", + "Type": "Type" + } + } + ], + "GridCompoundConditionalStyleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCompoundConditionalStyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCompoundConditionalStyleDescriptionMetadata()": "GridCompoundConditionalStyleDescriptionMetadata()", + "GridCompoundConditionalStyleDescriptionMetadata": "GridCompoundConditionalStyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyle": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridConditionalStyle", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyle()": "GridConditionalStyle()", + "GridConditionalStyle": "GridConditionalStyle()", + "ActualNeedsFieldMaximum()": "ActualNeedsFieldMaximum()", + "ActualNeedsFieldMaximum": "ActualNeedsFieldMaximum()", + "ActualNeedsFieldMinimum()": "ActualNeedsFieldMinimum()", + "ActualNeedsFieldMinimum": "ActualNeedsFieldMinimum()", + "ActualNeedsFieldSum()": "ActualNeedsFieldSum()", + "ActualNeedsFieldSum": "ActualNeedsFieldSum()", + "Condition": "Condition", + "ConditionString": "ConditionString", + "IsCompound": "IsCompound", + "IsFieldMaximumNeeded": "IsFieldMaximumNeeded", + "IsFieldMinimumNeeded": "IsFieldMinimumNeeded", + "IsFieldSumNeeded": "IsFieldSumNeeded", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)": "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)", + "OnFilterStringErrorsParsing": "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "Properties": "Properties", + "RequiresGlobalValues()": "RequiresGlobalValues()", + "RequiresGlobalValues": "RequiresGlobalValues()", + "StyleKey": "StyleKey", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStyleBoundType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/GridConditionalStyleBoundType", + "k": "enum", + "s": "enums" + } + ], + "GridConditionalStyleCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridConditionalStyleCollection", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleCollection()": "GridConditionalStyleCollection()", + "GridConditionalStyleCollection": "GridConditionalStyleCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStyleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStyleDescription", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleDescription()": "GridConditionalStyleDescription()", + "GridConditionalStyleDescription": "GridConditionalStyleDescription()", + "Condition": "Condition", + "ConditionString": "ConditionString", + "FilterStringErrorsParsingRef": "FilterStringErrorsParsingRef", + "IsFieldMaximumNeeded": "IsFieldMaximumNeeded", + "IsFieldMinimumNeeded": "IsFieldMinimumNeeded", + "IsFieldSumNeeded": "IsFieldSumNeeded", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "Properties": "Properties", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "StyleKey": "StyleKey", + "Type": "Type" + } + } + ], + "GridConditionalStyleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleDescriptionMetadata()": "GridConditionalStyleDescriptionMetadata()", + "GridConditionalStyleDescriptionMetadata": "GridConditionalStyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStyleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleDescriptionModule()": "GridConditionalStyleDescriptionModule()", + "GridConditionalStyleDescriptionModule": "GridConditionalStyleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyleFontInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridConditionalStyleFontInfo", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleFontInfo()": "GridConditionalStyleFontInfo()", + "GridConditionalStyleFontInfo": "GridConditionalStyleFontInfo()", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStyleFontInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStyleFontInfoDescription", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleFontInfoDescription()": "GridConditionalStyleFontInfoDescription()", + "GridConditionalStyleFontInfoDescription": "GridConditionalStyleFontInfoDescription()", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "Type": "Type" + } + } + ], + "GridConditionalStyleFontInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStyleFontInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleFontInfoDescriptionMetadata()": "GridConditionalStyleFontInfoDescriptionMetadata()", + "GridConditionalStyleFontInfoDescriptionMetadata": "GridConditionalStyleFontInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyleFontInfoDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStyleFontInfoDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleFontInfoDescriptionModule()": "GridConditionalStyleFontInfoDescriptionModule()", + "GridConditionalStyleFontInfoDescriptionModule": "GridConditionalStyleFontInfoDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStyleProperty": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridConditionalStyleProperty", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStyleProperty()": "GridConditionalStyleProperty()", + "GridConditionalStyleProperty": "GridConditionalStyleProperty()", + "ActualInputValueExpression": "ActualInputValueExpression", + "ActualMaximumInputValueExpression": "ActualMaximumInputValueExpression", + "ActualMinimumInputValueExpression": "ActualMinimumInputValueExpression", + "ActualSumInputValueExpression": "ActualSumInputValueExpression", + "BoolValue": "BoolValue", + "BrushValue": "BrushValue", + "ColorCollection": "ColorCollection", + "DateValue": "DateValue", + "DoubleValue": "DoubleValue", + "FontValue": "FontValue", + "InputValueExpression": "InputValueExpression", + "InputValueExpressionString": "InputValueExpressionString", + "IntValue": "IntValue", + "MaximumColor": "MaximumColor", + "MaximumInputValue": "MaximumInputValue", + "MaximumInputValueExpression": "MaximumInputValueExpression", + "MaximumInputValueExpressionString": "MaximumInputValueExpressionString", + "MaximumType": "MaximumType", + "MinimumColor": "MinimumColor", + "MinimumInputValue": "MinimumInputValue", + "MinimumInputValueExpression": "MinimumInputValueExpression", + "MinimumInputValueExpressionString": "MinimumInputValueExpressionString", + "MinimumType": "MinimumType", + "NeedsGlobalMaximum": "NeedsGlobalMaximum", + "NeedsGlobalMinimum": "NeedsGlobalMinimum", + "NeedsGlobalSum": "NeedsGlobalSum", + "ObjectValue": "ObjectValue", + "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)": "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)", + "OnFilterStringErrorsParsing": "OnFilterStringErrorsParsing(GridConditionFilterStringErrorsParsingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PropertyName": "PropertyName", + "RequiresGlobalValues": "RequiresGlobalValues", + "ShouldSetValue": "ShouldSetValue", + "StringValue": "StringValue", + "StylingType": "StylingType", + "SumInputValue": "SumInputValue", + "SumInputValueExpression": "SumInputValueExpression", + "SumInputValueExpressionString": "SumInputValueExpressionString", + "ValueCollection": "ValueCollection", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStylePropertyCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridConditionalStylePropertyCollection", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStylePropertyCollection()": "GridConditionalStylePropertyCollection()", + "GridConditionalStylePropertyCollection": "GridConditionalStylePropertyCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionalStylePropertyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStylePropertyDescription", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStylePropertyDescription()": "GridConditionalStylePropertyDescription()", + "GridConditionalStylePropertyDescription": "GridConditionalStylePropertyDescription()", + "ActualInputValueExpression": "ActualInputValueExpression", + "ActualMaximumInputValueExpression": "ActualMaximumInputValueExpression", + "ActualMinimumInputValueExpression": "ActualMinimumInputValueExpression", + "ActualSumInputValueExpression": "ActualSumInputValueExpression", + "BoolValue": "BoolValue", + "BrushValue": "BrushValue", + "ColorCollection": "ColorCollection", + "DateValue": "DateValue", + "DoubleValue": "DoubleValue", + "FilterStringErrorsParsingRef": "FilterStringErrorsParsingRef", + "FontValue": "FontValue", + "InputValueExpression": "InputValueExpression", + "InputValueExpressionString": "InputValueExpressionString", + "IntValue": "IntValue", + "MaximumColor": "MaximumColor", + "MaximumInputValueExpression": "MaximumInputValueExpression", + "MaximumInputValueExpressionString": "MaximumInputValueExpressionString", + "MaximumInputValueRef": "MaximumInputValueRef", + "MaximumType": "MaximumType", + "MinimumColor": "MinimumColor", + "MinimumInputValueExpression": "MinimumInputValueExpression", + "MinimumInputValueExpressionString": "MinimumInputValueExpressionString", + "MinimumInputValueRef": "MinimumInputValueRef", + "MinimumType": "MinimumType", + "ObjectValue": "ObjectValue", + "PropertyName": "PropertyName", + "ShouldSetValue": "ShouldSetValue", + "StringValue": "StringValue", + "StylingType": "StylingType", + "SumInputValueExpression": "SumInputValueExpression", + "SumInputValueExpressionString": "SumInputValueExpressionString", + "SumInputValueRef": "SumInputValueRef", + "Type": "Type", + "ValueCollectionRef": "ValueCollectionRef" + } + } + ], + "GridConditionalStylePropertyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStylePropertyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStylePropertyDescriptionMetadata()": "GridConditionalStylePropertyDescriptionMetadata()", + "GridConditionalStylePropertyDescriptionMetadata": "GridConditionalStylePropertyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStylePropertyDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionalStylePropertyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "GridConditionalStylePropertyDescriptionModule()": "GridConditionalStylePropertyDescriptionModule()", + "GridConditionalStylePropertyDescriptionModule": "GridConditionalStylePropertyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridConditionalStylePropertyStylingType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/GridConditionalStylePropertyStylingType", + "k": "enum", + "s": "enums" + } + ], + "GridConditionFilterStringErrorsParsingEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridConditionFilterStringErrorsParsingEventArgs", + "k": "class", + "s": "classes", + "m": { + "Errors": "Errors", + "PropertyName": "PropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridConditionFilterStringErrorsParsingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionFilterStringErrorsParsingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridConditionFilterStringErrorsParsingEventArgsDescription()": "GridConditionFilterStringErrorsParsingEventArgsDescription()", + "GridConditionFilterStringErrorsParsingEventArgsDescription": "GridConditionFilterStringErrorsParsingEventArgsDescription()", + "Errors": "Errors", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata()": "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata()", + "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata": "GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridCustomFilterRequestedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridCustomFilterRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridCustomFilterRequestedEventArgs()": "GridCustomFilterRequestedEventArgs()", + "GridCustomFilterRequestedEventArgs": "GridCustomFilterRequestedEventArgs()", + "Column": "Column", + "Expression": "Expression", + "Filter": "Filter", + "FilterFactory": "FilterFactory", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridCustomFilterRequestedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCustomFilterRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridCustomFilterRequestedEventArgsDescription()": "GridCustomFilterRequestedEventArgsDescription()", + "GridCustomFilterRequestedEventArgsDescription": "GridCustomFilterRequestedEventArgsDescription()", + "Column": "Column", + "Expression": "Expression", + "Filter": "Filter", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "GridCustomFilterRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridCustomFilterRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridCustomFilterRequestedEventArgsDescriptionMetadata()": "GridCustomFilterRequestedEventArgsDescriptionMetadata()", + "GridCustomFilterRequestedEventArgsDescriptionMetadata": "GridCustomFilterRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridDataCommittedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridDataCommittedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittedEventArgs(int, DataSourceAggregatedResult[])": "GridDataCommittedEventArgs(int, DataSourceAggregatedResult[])", + "GridDataCommittedEventArgs": "GridDataCommittedEventArgs(int, DataSourceAggregatedResult[])", + "Changes": "Changes", + "CommitID": "CommitID", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridDataCommittedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridDataCommittedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittedEventArgsDescription()": "GridDataCommittedEventArgsDescription()", + "GridDataCommittedEventArgsDescription": "GridDataCommittedEventArgsDescription()", + "Changes": "Changes", + "CommitID": "CommitID", + "Type": "Type" + } + } + ], + "GridDataCommittedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridDataCommittedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittedEventArgsDescriptionMetadata()": "GridDataCommittedEventArgsDescriptionMetadata()", + "GridDataCommittedEventArgsDescriptionMetadata": "GridDataCommittedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridDataCommittingEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridDataCommittingEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittingEventArgs(int, DataSourceAggregatedResult[])": "GridDataCommittingEventArgs(int, DataSourceAggregatedResult[])", + "GridDataCommittingEventArgs": "GridDataCommittingEventArgs(int, DataSourceAggregatedResult[])", + "Changes": "Changes", + "CommitID": "CommitID", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridDataCommittingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridDataCommittingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittingEventArgsDescription()": "GridDataCommittingEventArgsDescription()", + "GridDataCommittingEventArgsDescription": "GridDataCommittingEventArgsDescription()", + "Changes": "Changes", + "CommitID": "CommitID", + "Type": "Type" + } + } + ], + "GridDataCommittingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridDataCommittingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridDataCommittingEventArgsDescriptionMetadata()": "GridDataCommittingEventArgsDescriptionMetadata()", + "GridDataCommittingEventArgsDescriptionMetadata": "GridDataCommittingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridEasingFunctionType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/GridEasingFunctionType", + "k": "enum", + "s": "enums" + } + ], + "GridFilterDialogFilterChangeEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterDialogFilterChangeEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogFilterChangeEventArgs()": "GridFilterDialogFilterChangeEventArgs()", + "GridFilterDialogFilterChangeEventArgs": "GridFilterDialogFilterChangeEventArgs()", + "Filter": "Filter", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogFilterChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogFilterChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogFilterChangeEventArgsDescription()": "GridFilterDialogFilterChangeEventArgsDescription()", + "GridFilterDialogFilterChangeEventArgsDescription": "GridFilterDialogFilterChangeEventArgsDescription()", + "Filter": "Filter", + "Type": "Type" + } + } + ], + "GridFilterDialogFilterChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogFilterChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogFilterChangeEventArgsDescriptionMetadata()": "GridFilterDialogFilterChangeEventArgsDescriptionMetadata()", + "GridFilterDialogFilterChangeEventArgsDescriptionMetadata": "GridFilterDialogFilterChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterDialogOpeningEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterDialogOpeningEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogOpeningEventArgs()": "GridFilterDialogOpeningEventArgs()", + "GridFilterDialogOpeningEventArgs": "GridFilterDialogOpeningEventArgs()", + "Column": "Column", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogOpeningEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogOpeningEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogOpeningEventArgsDescription()": "GridFilterDialogOpeningEventArgsDescription()", + "GridFilterDialogOpeningEventArgsDescription": "GridFilterDialogOpeningEventArgsDescription()", + "Column": "Column", + "Type": "Type" + } + } + ], + "GridFilterDialogOpeningEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogOpeningEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogOpeningEventArgsDescriptionMetadata()": "GridFilterDialogOpeningEventArgsDescriptionMetadata()", + "GridFilterDialogOpeningEventArgsDescriptionMetadata": "GridFilterDialogOpeningEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterDialogViewModel": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterDialogViewModel", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModel()": "GridFilterDialogViewModel()", + "GridFilterDialogViewModel": "GridFilterDialogViewModel()", + "AddNewRow()": "AddNewRow()", + "AddNewRow": "AddNewRow()", + "CanGroupRange(int, int)": "CanGroupRange(int, int)", + "CanGroupRange": "CanGroupRange(int, int)", + "GroupRange(int, int, bool)": "GroupRange(int, int, bool)", + "GroupRange": "GroupRange(int, int, bool)", + "GroupingLevels": "GroupingLevels", + "IsTopLevelOr": "IsTopLevelOr", + "MaxGroupingLevels": "MaxGroupingLevels", + "PropertyType": "PropertyType", + "Rows": "Rows", + "TargetingRange(int, int)": "TargetingRange(int, int)", + "TargetingRange": "TargetingRange(int, int)", + "ToggleRange(int, int)": "ToggleRange(int, int)", + "ToggleRange": "ToggleRange(int, int)", + "UngroupRange(int, int)": "UngroupRange(int, int)", + "UngroupRange": "UngroupRange(int, int)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogViewModelDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelDescription()": "GridFilterDialogViewModelDescription()", + "GridFilterDialogViewModelDescription": "GridFilterDialogViewModelDescription()", + "IsTopLevelOr": "IsTopLevelOr", + "MaxGroupingLevels": "MaxGroupingLevels", + "PropertyType": "PropertyType", + "Rows": "Rows", + "Type": "Type" + } + } + ], + "GridFilterDialogViewModelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogViewModelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelDescriptionMetadata()": "GridFilterDialogViewModelDescriptionMetadata()", + "GridFilterDialogViewModelDescriptionMetadata": "GridFilterDialogViewModelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterDialogViewModelGrouping": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterDialogViewModelGrouping", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGrouping()": "GridFilterDialogViewModelGrouping()", + "GridFilterDialogViewModelGrouping": "GridFilterDialogViewModelGrouping()", + "EndIndex": "EndIndex", + "IsOrGrouping": "IsOrGrouping", + "StartIndex": "StartIndex", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelGroupingDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogViewModelGroupingDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGroupingDescription()": "GridFilterDialogViewModelGroupingDescription()", + "GridFilterDialogViewModelGroupingDescription": "GridFilterDialogViewModelGroupingDescription()", + "EndIndex": "EndIndex", + "IsOrGrouping": "IsOrGrouping", + "StartIndex": "StartIndex", + "Type": "Type" + } + } + ], + "GridFilterDialogViewModelGroupingDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogViewModelGroupingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGroupingDescriptionMetadata()": "GridFilterDialogViewModelGroupingDescriptionMetadata()", + "GridFilterDialogViewModelGroupingDescriptionMetadata": "GridFilterDialogViewModelGroupingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterDialogViewModelGroupingLevel": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterDialogViewModelGroupingLevel", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGroupingLevel()": "GridFilterDialogViewModelGroupingLevel()", + "GridFilterDialogViewModelGroupingLevel": "GridFilterDialogViewModelGroupingLevel()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelGroupingLevelCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterDialogViewModelGroupingLevelCollection", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelGroupingLevelCollection()": "GridFilterDialogViewModelGroupingLevelCollection()", + "GridFilterDialogViewModelGroupingLevelCollection": "GridFilterDialogViewModelGroupingLevelCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelRow": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterDialogViewModelRow", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelRow()": "GridFilterDialogViewModelRow()", + "GridFilterDialogViewModelRow": "GridFilterDialogViewModelRow()", + "CurrentOperator": "CurrentOperator", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Operand1": "Operand1", + "Operand2": "Operand2", + "OperandNumber": "OperandNumber", + "OperatorTypes": "OperatorTypes", + "Operators": "Operators", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelRowCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterDialogViewModelRowCollection", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelRowCollection()": "GridFilterDialogViewModelRowCollection()", + "GridFilterDialogViewModelRowCollection": "GridFilterDialogViewModelRowCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterDialogViewModelRowDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogViewModelRowDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelRowDescription()": "GridFilterDialogViewModelRowDescription()", + "GridFilterDialogViewModelRowDescription": "GridFilterDialogViewModelRowDescription()", + "CurrentOperator": "CurrentOperator", + "Operand1Ref": "Operand1Ref", + "Operand2Ref": "Operand2Ref", + "OperandNumber": "OperandNumber", + "Operators": "Operators", + "Type": "Type" + } + } + ], + "GridFilterDialogViewModelRowDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterDialogViewModelRowDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterDialogViewModelRowDescriptionMetadata()": "GridFilterDialogViewModelRowDescriptionMetadata()", + "GridFilterDialogViewModelRowDescriptionMetadata": "GridFilterDialogViewModelRowDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterExpressionsEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterExpressionsEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridFilterExpressionsEventArgs()": "GridFilterExpressionsEventArgs()", + "GridFilterExpressionsEventArgs": "GridFilterExpressionsEventArgs()", + "FilterExpressions": "FilterExpressions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridFilterExpressionsEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterExpressionsEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridFilterExpressionsEventArgsDescription()": "GridFilterExpressionsEventArgsDescription()", + "GridFilterExpressionsEventArgsDescription": "GridFilterExpressionsEventArgsDescription()", + "FilterExpressions": "FilterExpressions", + "Type": "Type" + } + } + ], + "GridFilterExpressionsEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridFilterExpressionsEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridFilterExpressionsEventArgsDescriptionMetadata()": "GridFilterExpressionsEventArgsDescriptionMetadata()", + "GridFilterExpressionsEventArgsDescriptionMetadata": "GridFilterExpressionsEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridFilterOperandsCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridFilterOperandsCollection", + "k": "class", + "s": "classes", + "m": { + "GridFilterOperandsCollection()": "GridFilterOperandsCollection()", + "GridFilterOperandsCollection": "GridFilterOperandsCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridGroupDescriptionsChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridGroupDescriptionsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridGroupDescriptionsChangedEventArgs()": "GridGroupDescriptionsChangedEventArgs()", + "GridGroupDescriptionsChangedEventArgs": "GridGroupDescriptionsChangedEventArgs()", + "GroupDescriptions": "GroupDescriptions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridGroupDescriptionsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridGroupDescriptionsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridGroupDescriptionsChangedEventArgsDescription()": "GridGroupDescriptionsChangedEventArgsDescription()", + "GridGroupDescriptionsChangedEventArgsDescription": "GridGroupDescriptionsChangedEventArgsDescription()", + "GroupDescriptions": "GroupDescriptions", + "Type": "Type" + } + } + ], + "GridGroupDescriptionsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridGroupDescriptionsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridGroupDescriptionsChangedEventArgsDescriptionMetadata()": "GridGroupDescriptionsChangedEventArgsDescriptionMetadata()", + "GridGroupDescriptionsChangedEventArgsDescriptionMetadata": "GridGroupDescriptionsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridHyperlinkNavigationRequestedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridHyperlinkNavigationRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridHyperlinkNavigationRequestedEventArgs()": "GridHyperlinkNavigationRequestedEventArgs()", + "GridHyperlinkNavigationRequestedEventArgs": "GridHyperlinkNavigationRequestedEventArgs()", + "Column": "Column", + "DisplayText": "DisplayText", + "Item": "Item", + "NavigateUri": "NavigateUri", + "OriginalValue": "OriginalValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridHyperlinkNavigationRequestedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridHyperlinkNavigationRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridHyperlinkNavigationRequestedEventArgsDescription()": "GridHyperlinkNavigationRequestedEventArgsDescription()", + "GridHyperlinkNavigationRequestedEventArgsDescription": "GridHyperlinkNavigationRequestedEventArgsDescription()", + "Column": "Column", + "DisplayText": "DisplayText", + "Item": "Item", + "NavigateUri": "NavigateUri", + "OriginalValue": "OriginalValue", + "Type": "Type" + } + } + ], + "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata()": "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata()", + "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata": "GridHyperlinkNavigationRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridLayerExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridLayerExport", + "k": "class", + "s": "classes", + "m": { + "GridLayerExport(string)": "GridLayerExport(string)", + "GridLayerExport": "GridLayerExport(string)", + "Add(CellModelExport)": "Add(CellModelExport)", + "Add": "Add(CellModelExport)", + "Cells": "Cells", + "Clear()": "Clear()", + "Clear": "Clear()", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "GridLayoutSizeDefinition": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridLayoutSizeDefinition", + "k": "class", + "s": "classes", + "m": { + "GridLayoutSizeDefinition()": "GridLayoutSizeDefinition()", + "GridLayoutSizeDefinition": "GridLayoutSizeDefinition()", + "GridLayoutSizeDefinition(GridLayoutSizeType, double)": "GridLayoutSizeDefinition(GridLayoutSizeType, double)", + "SizeType": "SizeType", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridLayoutSizeType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/GridLayoutSizeType", + "k": "enum", + "s": "enums" + } + ], + "GridMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/GridMode", + "k": "enum", + "s": "enums" + } + ], + "GridRowEditEndedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridRowEditEndedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridRowEditEndedEventArgs()": "GridRowEditEndedEventArgs()", + "GridRowEditEndedEventArgs": "GridRowEditEndedEventArgs()", + "Item": "Item", + "Row": "Row", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridRowEditEndedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridRowEditEndedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridRowEditEndedEventArgsDescription()": "GridRowEditEndedEventArgsDescription()", + "GridRowEditEndedEventArgsDescription": "GridRowEditEndedEventArgsDescription()", + "Item": "Item", + "Row": "Row", + "Type": "Type" + } + } + ], + "GridRowEditEndedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridRowEditEndedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridRowEditEndedEventArgsDescriptionMetadata()": "GridRowEditEndedEventArgsDescriptionMetadata()", + "GridRowEditEndedEventArgsDescriptionMetadata": "GridRowEditEndedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridRowEditStartedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridRowEditStartedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridRowEditStartedEventArgs()": "GridRowEditStartedEventArgs()", + "GridRowEditStartedEventArgs": "GridRowEditStartedEventArgs()", + "Item": "Item", + "Row": "Row", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridRowEditStartedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridRowEditStartedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridRowEditStartedEventArgsDescription()": "GridRowEditStartedEventArgsDescription()", + "GridRowEditStartedEventArgsDescription": "GridRowEditStartedEventArgsDescription()", + "Item": "Item", + "Row": "Row", + "Type": "Type" + } + } + ], + "GridRowEditStartedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridRowEditStartedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridRowEditStartedEventArgsDescriptionMetadata()": "GridRowEditStartedEventArgsDescriptionMetadata()", + "GridRowEditStartedEventArgsDescriptionMetadata": "GridRowEditStartedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedCellRangesChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectedCellRangesChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellRangesChangedEventArgs()": "GridSelectedCellRangesChangedEventArgs()", + "GridSelectedCellRangesChangedEventArgs": "GridSelectedCellRangesChangedEventArgs()", + "AddedRanges": "AddedRanges", + "CurrentRanges": "CurrentRanges", + "RemovedRanges": "RemovedRanges", + "UpdatedRanges": "UpdatedRanges", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedCellRangesChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectedCellRangesChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellRangesChangedEventArgsDescription()": "GridSelectedCellRangesChangedEventArgsDescription()", + "GridSelectedCellRangesChangedEventArgsDescription": "GridSelectedCellRangesChangedEventArgsDescription()", + "AddedRanges": "AddedRanges", + "CurrentRanges": "CurrentRanges", + "RemovedRanges": "RemovedRanges", + "Type": "Type", + "UpdatedRanges": "UpdatedRanges" + } + } + ], + "GridSelectedCellRangesChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectedCellRangesChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellRangesChangedEventArgsDescriptionMetadata()": "GridSelectedCellRangesChangedEventArgsDescriptionMetadata()", + "GridSelectedCellRangesChangedEventArgsDescriptionMetadata": "GridSelectedCellRangesChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedCellRangesCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectedCellRangesCollection", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellRangesCollection()": "GridSelectedCellRangesCollection()", + "GridSelectedCellRangesCollection": "GridSelectedCellRangesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedCellsChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectedCellsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellsChangedEventArgs()": "GridSelectedCellsChangedEventArgs()", + "GridSelectedCellsChangedEventArgs": "GridSelectedCellsChangedEventArgs()", + "AddedCells": "AddedCells", + "CurrentCells": "CurrentCells", + "RemovedCells": "RemovedCells", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedCellsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectedCellsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellsChangedEventArgsDescription()": "GridSelectedCellsChangedEventArgsDescription()", + "GridSelectedCellsChangedEventArgsDescription": "GridSelectedCellsChangedEventArgsDescription()", + "AddedCells": "AddedCells", + "CurrentCells": "CurrentCells", + "RemovedCells": "RemovedCells", + "Type": "Type" + } + } + ], + "GridSelectedCellsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectedCellsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellsChangedEventArgsDescriptionMetadata()": "GridSelectedCellsChangedEventArgsDescriptionMetadata()", + "GridSelectedCellsChangedEventArgsDescriptionMetadata": "GridSelectedCellsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedCellsCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectedCellsCollection", + "k": "class", + "s": "classes", + "m": { + "GridSelectedCellsCollection()": "GridSelectedCellsCollection()", + "GridSelectedCellsCollection": "GridSelectedCellsCollection()", + "AddCell(PrimaryKeyValue, DataGridColumn)": "AddCell(PrimaryKeyValue, DataGridColumn)", + "AddCell": "AddCell(PrimaryKeyValue, DataGridColumn)", + "AddCell(PrimaryKeyValue, string)": "AddCell(PrimaryKeyValue, string)", + "AddCell(object, DataGridColumn)": "AddCell(object, DataGridColumn)", + "AddCell(object, string)": "AddCell(object, string)", + "RemoveCell(PrimaryKeyValue, long)": "RemoveCell(PrimaryKeyValue, long)", + "RemoveCell": "RemoveCell(PrimaryKeyValue, long)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedItemsChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectedItemsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectedItemsChangedEventArgs()": "GridSelectedItemsChangedEventArgs()", + "GridSelectedItemsChangedEventArgs": "GridSelectedItemsChangedEventArgs()", + "AddedItems": "AddedItems", + "CurrentItems": "CurrentItems", + "RemovedItems": "RemovedItems", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectedItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectedItemsChangedEventArgsDescription()": "GridSelectedItemsChangedEventArgsDescription()", + "GridSelectedItemsChangedEventArgsDescription": "GridSelectedItemsChangedEventArgsDescription()", + "AddedItems": "AddedItems", + "CurrentItems": "CurrentItems", + "RemovedItems": "RemovedItems", + "Type": "Type" + } + } + ], + "GridSelectedItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectedItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectedItemsChangedEventArgsDescriptionMetadata()": "GridSelectedItemsChangedEventArgsDescriptionMetadata()", + "GridSelectedItemsChangedEventArgsDescriptionMetadata": "GridSelectedItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedItemsCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectedItemsCollection", + "k": "class", + "s": "classes", + "m": { + "GridSelectedItemsCollection()": "GridSelectedItemsCollection()", + "GridSelectedItemsCollection": "GridSelectedItemsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedKeysChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectedKeysChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectedKeysChangedEventArgs()": "GridSelectedKeysChangedEventArgs()", + "GridSelectedKeysChangedEventArgs": "GridSelectedKeysChangedEventArgs()", + "AddedKeys": "AddedKeys", + "CurrentKeys": "CurrentKeys", + "RemovedKeys": "RemovedKeys", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectedKeysChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectedKeysChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectedKeysChangedEventArgsDescription()": "GridSelectedKeysChangedEventArgsDescription()", + "GridSelectedKeysChangedEventArgsDescription": "GridSelectedKeysChangedEventArgsDescription()", + "AddedKeys": "AddedKeys", + "CurrentKeys": "CurrentKeys", + "RemovedKeys": "RemovedKeys", + "Type": "Type" + } + } + ], + "GridSelectedKeysChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectedKeysChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectedKeysChangedEventArgsDescriptionMetadata()": "GridSelectedKeysChangedEventArgsDescriptionMetadata()", + "GridSelectedKeysChangedEventArgsDescriptionMetadata": "GridSelectedKeysChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSelectedKeysCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectedKeysCollection", + "k": "class", + "s": "classes", + "m": { + "GridSelectedKeysCollection()": "GridSelectedKeysCollection()", + "GridSelectedKeysCollection": "GridSelectedKeysCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectionBehavior": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/GridSelectionBehavior", + "k": "enum", + "s": "enums" + } + ], + "GridSelectionChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSelectionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSelectionChangedEventArgs()": "GridSelectionChangedEventArgs()", + "GridSelectionChangedEventArgs": "GridSelectionChangedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSelectionChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSelectionChangedEventArgsDescription()": "GridSelectionChangedEventArgsDescription()", + "GridSelectionChangedEventArgsDescription": "GridSelectionChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "GridSelectionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSelectionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSelectionChangedEventArgsDescriptionMetadata()": "GridSelectionChangedEventArgsDescriptionMetadata()", + "GridSelectionChangedEventArgsDescriptionMetadata": "GridSelectionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSizeChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSizeChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSizeChangedEventArgs()": "GridSizeChangedEventArgs()", + "GridSizeChangedEventArgs": "GridSizeChangedEventArgs()", + "Height": "Height", + "Width": "Width", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSizeChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSizeChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSizeChangedEventArgsDescription()": "GridSizeChangedEventArgsDescription()", + "GridSizeChangedEventArgsDescription": "GridSizeChangedEventArgsDescription()", + "Height": "Height", + "Type": "Type", + "Width": "Width" + } + } + ], + "GridSizeChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSizeChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSizeChangedEventArgsDescriptionMetadata()": "GridSizeChangedEventArgsDescriptionMetadata()", + "GridSizeChangedEventArgsDescriptionMetadata": "GridSizeChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSortDescriptionsChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSortDescriptionsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSortDescriptionsChangedEventArgs()": "GridSortDescriptionsChangedEventArgs()", + "GridSortDescriptionsChangedEventArgs": "GridSortDescriptionsChangedEventArgs()", + "SortDescriptions": "SortDescriptions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSortDescriptionsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSortDescriptionsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSortDescriptionsChangedEventArgsDescription()": "GridSortDescriptionsChangedEventArgsDescription()", + "GridSortDescriptionsChangedEventArgsDescription": "GridSortDescriptionsChangedEventArgsDescription()", + "SortDescriptions": "SortDescriptions", + "Type": "Type" + } + } + ], + "GridSortDescriptionsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSortDescriptionsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSortDescriptionsChangedEventArgsDescriptionMetadata()": "GridSortDescriptionsChangedEventArgsDescriptionMetadata()", + "GridSortDescriptionsChangedEventArgsDescriptionMetadata": "GridSortDescriptionsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridSummaryDescriptionsChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GridSummaryDescriptionsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "GridSummaryDescriptionsChangedEventArgs()": "GridSummaryDescriptionsChangedEventArgs()", + "GridSummaryDescriptionsChangedEventArgs": "GridSummaryDescriptionsChangedEventArgs()", + "SummaryDescriptions": "SummaryDescriptions", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "GridSummaryDescriptionsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSummaryDescriptionsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "GridSummaryDescriptionsChangedEventArgsDescription()": "GridSummaryDescriptionsChangedEventArgsDescription()", + "GridSummaryDescriptionsChangedEventArgsDescription": "GridSummaryDescriptionsChangedEventArgsDescription()", + "SummaryDescriptions": "SummaryDescriptions", + "Type": "Type" + } + } + ], + "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridSummaryDescriptionsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata()": "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata()", + "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata": "GridSummaryDescriptionsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GridVisualModelExport": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GridVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "GridVisualModelExport()": "GridVisualModelExport()", + "GridVisualModelExport": "GridVisualModelExport()", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Width": "Width" + } + } + ], + "GroupData": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/GroupData", + "k": "class", + "s": "classes", + "m": { + "GroupData()": "GroupData()", + "GroupData": "GroupData()", + "FormattedText": "FormattedText", + "GroupName": "GroupName", + "GroupValue": "GroupValue" + } + } + ], + "GroupDataDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GroupDataDescription", + "k": "class", + "s": "classes", + "m": { + "GroupDataDescription()": "GroupDataDescription()", + "GroupDataDescription": "GroupDataDescription()", + "FormattedText": "FormattedText", + "GroupName": "GroupName", + "GroupValueRef": "GroupValueRef", + "Type": "Type" + } + } + ], + "GroupDataDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/GroupDataDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "GroupDataDescriptionMetadata()": "GroupDataDescriptionMetadata()", + "GroupDataDescriptionMetadata": "GroupDataDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "GroupHeaderDisplayMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/GroupHeaderDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "GroupSummaryDisplayMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/GroupSummaryDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "Header": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Header", + "k": "class", + "s": "classes", + "m": { + "Header()": "Header()", + "Header": "Header()", + "Bounds": "Bounds", + "ShapeType": "ShapeType", + "XYMax": "XYMax", + "XYMin": "XYMin", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + }, + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/Header", + "k": "class", + "s": "classes", + "m": { + "ActualSortIndicatorColor": "ActualSortIndicatorColor", + "ActualSortIndicatorColorProperty": "ActualSortIndicatorColorProperty", + "ActualSortIndicatorStyle": "ActualSortIndicatorStyle", + "ActualSortIndicatorStyleProperty": "ActualSortIndicatorStyleProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "SortIndicatorColor": "SortIndicatorColor", + "SortIndicatorColorProperty": "SortIndicatorColorProperty", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortIndicatorStyleProperty": "SortIndicatorStyleProperty" + } + } + ], + "HeaderClickAction": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/HeaderClickAction", + "k": "enum", + "s": "enums" + } + ], + "HeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeaderDescription", + "k": "class", + "s": "classes", + "m": { + "HeaderDescription()": "HeaderDescription()", + "HeaderDescription": "HeaderDescription()", + "ActualSortIndicatorColor": "ActualSortIndicatorColor", + "ActualSortIndicatorStyle": "ActualSortIndicatorStyle", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "SortIndicatorColor": "SortIndicatorColor", + "SortIndicatorStyle": "SortIndicatorStyle", + "Type": "Type" + } + } + ], + "HeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HeaderDescriptionMetadata()": "HeaderDescriptionMetadata()", + "HeaderDescriptionMetadata": "HeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeaderRowSeparator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/HeaderRowSeparator", + "k": "class", + "s": "classes", + "m": { + "HeaderRowSeparator()": "HeaderRowSeparator()", + "HeaderRowSeparator": "HeaderRowSeparator()" + } + } + ], + "HeaderRowSeparatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeaderRowSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "HeaderRowSeparatorDescription()": "HeaderRowSeparatorDescription()", + "HeaderRowSeparatorDescription": "HeaderRowSeparatorDescription()", + "Type": "Type" + } + } + ], + "HeaderRowSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeaderRowSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HeaderRowSeparatorDescriptionMetadata()": "HeaderRowSeparatorDescriptionMetadata()", + "HeaderRowSeparatorDescriptionMetadata": "HeaderRowSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeaderRowSeparatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeaderRowSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HeaderRowSeparatorDescriptionModule()": "HeaderRowSeparatorDescriptionModule()", + "HeaderRowSeparatorDescriptionModule": "HeaderRowSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeaderSeparator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/HeaderSeparator", + "k": "class", + "s": "classes", + "m": { + "HeaderSeparator()": "HeaderSeparator()", + "HeaderSeparator": "HeaderSeparator()" + } + } + ], + "HeaderSeparatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeaderSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "HeaderSeparatorDescription()": "HeaderSeparatorDescription()", + "HeaderSeparatorDescription": "HeaderSeparatorDescription()", + "Type": "Type" + } + } + ], + "HeaderSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeaderSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HeaderSeparatorDescriptionMetadata()": "HeaderSeparatorDescriptionMetadata()", + "HeaderSeparatorDescriptionMetadata": "HeaderSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeaderSeparatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeaderSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HeaderSeparatorDescriptionModule()": "HeaderSeparatorDescriptionModule()", + "HeaderSeparatorDescriptionModule": "HeaderSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeatTileGenerator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeatTileGenerator", + "k": "class", + "s": "classes", + "m": { + "HeatTileGenerator()": "HeatTileGenerator()", + "HeatTileGenerator": "HeatTileGenerator()", + "BlurRadius": "BlurRadius", + "CancelTile(int, int, int)": "CancelTile(int, int, int)", + "CancelTile": "CancelTile(int, int, int)", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)": "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)", + "GetTile": "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)", + "LogarithmBase": "LogarithmBase", + "MaxBlurRadius": "MaxBlurRadius", + "MaximumColor": "MaximumColor", + "MaximumValue": "MaximumValue", + "MinimumColor": "MinimumColor", + "MinimumValue": "MinimumValue", + "ScaleColorOffsets": "ScaleColorOffsets", + "ScaleColors": "ScaleColors", + "UseBlurRadiusAdjustedForZoom": "UseBlurRadiusAdjustedForZoom", + "UseGlobalMinMax": "UseGlobalMinMax", + "UseGlobalMinMaxAdjustedForZoom": "UseGlobalMinMaxAdjustedForZoom", + "UseLogarithmicScale": "UseLogarithmicScale", + "Values": "Values", + "XValues": "XValues", + "YValues": "YValues", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "HeatTileGeneratorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeatTileGeneratorDescription", + "k": "class", + "s": "classes", + "m": { + "HeatTileGeneratorDescription()": "HeatTileGeneratorDescription()", + "HeatTileGeneratorDescription": "HeatTileGeneratorDescription()", + "BlurRadius": "BlurRadius", + "LogarithmBase": "LogarithmBase", + "MaxBlurRadius": "MaxBlurRadius", + "MaximumColor": "MaximumColor", + "MaximumValue": "MaximumValue", + "MinimumColor": "MinimumColor", + "MinimumValue": "MinimumValue", + "ScaleColorOffsets": "ScaleColorOffsets", + "ScaleColors": "ScaleColors", + "Type": "Type", + "UseBlurRadiusAdjustedForZoom": "UseBlurRadiusAdjustedForZoom", + "UseGlobalMinMax": "UseGlobalMinMax", + "UseGlobalMinMaxAdjustedForZoom": "UseGlobalMinMaxAdjustedForZoom", + "UseLogarithmicScale": "UseLogarithmicScale", + "UseWebWorkers": "UseWebWorkers", + "Values": "Values", + "WebWorkerInstanceRef": "WebWorkerInstanceRef", + "WebWorkerScriptPath": "WebWorkerScriptPath", + "XValues": "XValues", + "YValues": "YValues" + } + } + ], + "HeatTileGeneratorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeatTileGeneratorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HeatTileGeneratorDescriptionMetadata()": "HeatTileGeneratorDescriptionMetadata()", + "HeatTileGeneratorDescriptionMetadata": "HeatTileGeneratorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeatTileGeneratorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeatTileGeneratorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HeatTileGeneratorDescriptionModule()": "HeatTileGeneratorDescriptionModule()", + "HeatTileGeneratorDescriptionModule": "HeatTileGeneratorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HeatTileImageCreatedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HeatTileImageCreatedEventArgs", + "k": "class", + "s": "classes", + "m": { + "HeatTileImageCreatedEventArgs()": "HeatTileImageCreatedEventArgs()", + "HeatTileImageCreatedEventArgs": "HeatTileImageCreatedEventArgs()", + "GlobalMaximumValue": "GlobalMaximumValue", + "GlobalMaximumValueLatitude": "GlobalMaximumValueLatitude", + "GlobalMaximumValueLongitude": "GlobalMaximumValueLongitude", + "GlobalMinimumValue": "GlobalMinimumValue", + "GlobalMinimumValueLatitude": "GlobalMinimumValueLatitude", + "GlobalMinimumValueLongitude": "GlobalMinimumValueLongitude" + } + } + ], + "HideAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/HideAttribute", + "k": "class", + "s": "classes", + "m": { + "HideAttribute()": "HideAttribute()", + "HideAttribute": "HideAttribute()" + } + } + ], + "HierarchicalRingSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HierarchicalRingSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "HierarchicalRingSeriesDescription()": "HierarchicalRingSeriesDescription()", + "HierarchicalRingSeriesDescription": "HierarchicalRingSeriesDescription()", + "ChildrenMemberPath": "ChildrenMemberPath", + "Type": "Type" + } + } + ], + "HierarchicalRingSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HierarchicalRingSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HierarchicalRingSeriesDescriptionMetadata()": "HierarchicalRingSeriesDescriptionMetadata()", + "HierarchicalRingSeriesDescriptionMetadata": "HierarchicalRingSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HierarchicalRingSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HierarchicalRingSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HierarchicalRingSeriesDescriptionModule()": "HierarchicalRingSeriesDescriptionModule()", + "HierarchicalRingSeriesDescriptionModule": "HierarchicalRingSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HighDensityScatterSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HighDensityScatterSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "HighDensityScatterSeriesDescription()": "HighDensityScatterSeriesDescription()", + "HighDensityScatterSeriesDescription": "HighDensityScatterSeriesDescription()", + "HeatMaximum": "HeatMaximum", + "HeatMaximumColor": "HeatMaximumColor", + "HeatMinimum": "HeatMinimum", + "HeatMinimumColor": "HeatMinimumColor", + "PointExtent": "PointExtent", + "ProgressiveLoad": "ProgressiveLoad", + "ProgressiveLoadStatusChangedRef": "ProgressiveLoadStatusChangedRef", + "ProgressiveStatus": "ProgressiveStatus", + "Type": "Type", + "UseBruteForce": "UseBruteForce", + "XAxisRef": "XAxisRef", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberPath": "XMemberPath", + "YAxisRef": "YAxisRef", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberPath": "YMemberPath" + } + } + ], + "HighDensityScatterSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HighDensityScatterSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HighDensityScatterSeriesDescriptionMetadata()": "HighDensityScatterSeriesDescriptionMetadata()", + "HighDensityScatterSeriesDescriptionMetadata": "HighDensityScatterSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HighDensityScatterSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HighDensityScatterSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HighDensityScatterSeriesDescriptionModule()": "HighDensityScatterSeriesDescriptionModule()", + "HighDensityScatterSeriesDescriptionModule": "HighDensityScatterSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HighlightedValueDisplayMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/HighlightedValueDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "HighlightedValueLabelMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/HighlightedValueLabelMode", + "k": "enum", + "s": "enums" + } + ], + "HighlightingInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HighlightingInfo", + "k": "class", + "s": "classes", + "m": { + "HighlightingInfo()": "HighlightingInfo()", + "HighlightingInfo": "HighlightingInfo()", + "Context": "Context", + "EndIndex": "EndIndex", + "IsExclusive": "IsExclusive", + "IsFullRange": "IsFullRange", + "IsMarker": "IsMarker", + "Progress": "Progress", + "StartIndex": "StartIndex", + "State": "State", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "HighlightingInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HighlightingInfoDescription", + "k": "class", + "s": "classes", + "m": { + "HighlightingInfoDescription()": "HighlightingInfoDescription()", + "HighlightingInfoDescription": "HighlightingInfoDescription()", + "ContextRef": "ContextRef", + "EndIndex": "EndIndex", + "IsExclusive": "IsExclusive", + "IsFullRange": "IsFullRange", + "IsMarker": "IsMarker", + "Progress": "Progress", + "StartIndex": "StartIndex", + "State": "State", + "Type": "Type" + } + } + ], + "HighlightingInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HighlightingInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HighlightingInfoDescriptionMetadata()": "HighlightingInfoDescriptionMetadata()", + "HighlightingInfoDescriptionMetadata": "HighlightingInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HighlightingState": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/HighlightingState", + "k": "enum", + "s": "enums" + } + ], + "HoleDimensionsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HoleDimensionsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "HoleDimensionsChangedEventArgsDescription()": "HoleDimensionsChangedEventArgsDescription()", + "HoleDimensionsChangedEventArgsDescription": "HoleDimensionsChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "HoleDimensionsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HoleDimensionsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HoleDimensionsChangedEventArgsDescriptionMetadata()": "HoleDimensionsChangedEventArgsDescriptionMetadata()", + "HoleDimensionsChangedEventArgsDescriptionMetadata": "HoleDimensionsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalAlignment": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/enums/HorizontalAlignment", + "k": "enum", + "s": "enums" + } + ], + "HorizontalAnchoredCategorySeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/HorizontalAnchoredCategorySeries", + "k": "class", + "s": "classes", + "m": { + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "HorizontalAnchoredCategorySeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HorizontalAnchoredCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "HorizontalAnchoredCategorySeriesDescription()": "HorizontalAnchoredCategorySeriesDescription()", + "HorizontalAnchoredCategorySeriesDescription": "HorizontalAnchoredCategorySeriesDescription()", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "HorizontalAnchoredCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HorizontalAnchoredCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HorizontalAnchoredCategorySeriesDescriptionMetadata()": "HorizontalAnchoredCategorySeriesDescriptionMetadata()", + "HorizontalAnchoredCategorySeriesDescriptionMetadata": "HorizontalAnchoredCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalAnchoredCategorySeriesProxyDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HorizontalAnchoredCategorySeriesProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HorizontalAnchoredCategorySeriesProxyDescriptionModule()": "HorizontalAnchoredCategorySeriesProxyDescriptionModule()", + "HorizontalAnchoredCategorySeriesProxyDescriptionModule": "HorizontalAnchoredCategorySeriesProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalRangeCategorySeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/HorizontalRangeCategorySeries", + "k": "class", + "s": "classes", + "m": { + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendLabelProperty": "HighMemberAsLegendLabelProperty", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "HighMemberAsLegendUnitProperty": "HighMemberAsLegendUnitProperty", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendLabelProperty": "LowMemberAsLegendLabelProperty", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "LowMemberAsLegendUnitProperty": "LowMemberAsLegendUnitProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "HorizontalRangeCategorySeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HorizontalRangeCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "HorizontalRangeCategorySeriesDescription()": "HorizontalRangeCategorySeriesDescription()", + "HorizontalRangeCategorySeriesDescription": "HorizontalRangeCategorySeriesDescription()", + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "HorizontalRangeCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HorizontalRangeCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HorizontalRangeCategorySeriesDescriptionMetadata()": "HorizontalRangeCategorySeriesDescriptionMetadata()", + "HorizontalRangeCategorySeriesDescriptionMetadata": "HorizontalRangeCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalRangeCategorySeriesProxyDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HorizontalRangeCategorySeriesProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HorizontalRangeCategorySeriesProxyDescriptionModule()": "HorizontalRangeCategorySeriesProxyDescriptionModule()", + "HorizontalRangeCategorySeriesProxyDescriptionModule": "HorizontalRangeCategorySeriesProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HorizontalStackedSeriesBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/HorizontalStackedSeriesBase", + "k": "class", + "s": "classes", + "m": { + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "HorizontalStackedSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HorizontalStackedSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "HorizontalStackedSeriesBaseDescription()": "HorizontalStackedSeriesBaseDescription()", + "HorizontalStackedSeriesBaseDescription": "HorizontalStackedSeriesBaseDescription()", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "HorizontalStackedSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HorizontalStackedSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HorizontalStackedSeriesBaseDescriptionMetadata()": "HorizontalStackedSeriesBaseDescriptionMetadata()", + "HorizontalStackedSeriesBaseDescriptionMetadata": "HorizontalStackedSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HyperlinkCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/HyperlinkCellInfo", + "k": "class", + "s": "classes", + "m": { + "HyperlinkCellInfo()": "HyperlinkCellInfo()", + "HyperlinkCellInfo": "HyperlinkCellInfo()", + "IsVisited": "IsVisited", + "IsVisitedPropertyName": "IsVisitedPropertyName", + "NavigationUri": "NavigationUri", + "NavigationUriPropertyName": "NavigationUriPropertyName", + "VisitedTextColor": "VisitedTextColor", + "VisitedTextColorPropertyName": "VisitedTextColorPropertyName" + } + } + ], + "HyperlinkCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HyperlinkCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "HyperlinkCellInfoDescription()": "HyperlinkCellInfoDescription()", + "HyperlinkCellInfoDescription": "HyperlinkCellInfoDescription()", + "IsVisited": "IsVisited", + "NavigationUri": "NavigationUri", + "Type": "Type", + "VisitedTextColor": "VisitedTextColor" + } + } + ], + "HyperlinkCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HyperlinkCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HyperlinkCellInfoDescriptionMetadata()": "HyperlinkCellInfoDescriptionMetadata()", + "HyperlinkCellInfoDescriptionMetadata": "HyperlinkCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HyperlinkColumn": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/HyperlinkColumn", + "k": "class", + "s": "classes", + "m": { + "HyperlinkColumn()": "HyperlinkColumn()", + "HyperlinkColumn": "HyperlinkColumn()", + "ActualVisitedTextColor": "ActualVisitedTextColor", + "ActualVisitedTextColorProperty": "ActualVisitedTextColorProperty", + "BaseUri": "BaseUri", + "BaseUriProperty": "BaseUriProperty", + "DisplayMemberPath": "DisplayMemberPath", + "DisplayMemberPathProperty": "DisplayMemberPathProperty", + "DisplayText": "DisplayText", + "DisplayTextProperty": "DisplayTextProperty", + "PreventDefaultNavigation": "PreventDefaultNavigation", + "PreventDefaultNavigationProperty": "PreventDefaultNavigationProperty", + "VisitedTextColor": "VisitedTextColor", + "VisitedTextColorProperty": "VisitedTextColorProperty" + } + } + ], + "HyperlinkColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HyperlinkColumnDescription", + "k": "class", + "s": "classes", + "m": { + "HyperlinkColumnDescription()": "HyperlinkColumnDescription()", + "HyperlinkColumnDescription": "HyperlinkColumnDescription()", + "ActualVisitedTextColor": "ActualVisitedTextColor", + "BaseUri": "BaseUri", + "DisplayMemberPath": "DisplayMemberPath", + "DisplayText": "DisplayText", + "PreventDefaultNavigation": "PreventDefaultNavigation", + "Type": "Type", + "VisitedTextColor": "VisitedTextColor" + } + } + ], + "HyperlinkColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HyperlinkColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "HyperlinkColumnDescriptionMetadata()": "HyperlinkColumnDescriptionMetadata()", + "HyperlinkColumnDescriptionMetadata": "HyperlinkColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "HyperlinkColumnDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/HyperlinkColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "HyperlinkColumnDescriptionModule()": "HyperlinkColumnDescriptionModule()", + "HyperlinkColumnDescriptionModule": "HyperlinkColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "IAcceptsDataSeriesToDescriptionCustomizations": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IAcceptsDataSeriesToDescriptionCustomizations", + "k": "interface", + "s": "interfaces", + "m": { + "OnCustomizationsChanged(DataSeriesToDescriptionCustomization[])": "OnCustomizationsChanged(DataSeriesToDescriptionCustomization[])", + "OnCustomizationsChanged": "OnCustomizationsChanged(DataSeriesToDescriptionCustomization[])" + } + } + ], + "ICellActionManager": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/interfaces/ICellActionManager", + "k": "interface", + "s": "interfaces", + "m": { + "ApplyCustomFilter(string, int, object)": "ApplyCustomFilter(string, int, object)", + "ApplyCustomFilter": "ApplyCustomFilter(string, int, object)", + "ApplyFilter(ColumnComparisonConditionOperatorType, object)": "ApplyFilter(ColumnComparisonConditionOperatorType, object)", + "ApplyFilter": "ApplyFilter(ColumnComparisonConditionOperatorType, object)", + "CancelEditMode(bool)": "CancelEditMode(bool)", + "CancelEditMode": "CancelEditMode(bool)", + "ClearFilter()": "ClearFilter()", + "ClearFilter": "ClearFilter()", + "ClickCell(MouseButton)": "ClickCell(MouseButton)", + "ClickCell": "ClickCell(MouseButton)", + "ClickExpansionIndicator()": "ClickExpansionIndicator()", + "ClickExpansionIndicator": "ClickExpansionIndicator()", + "ColumnFilterChanged(ColumnFilterCondition)": "ColumnFilterChanged(ColumnFilterCondition)", + "ColumnFilterChanged": "ColumnFilterChanged(ColumnFilterCondition)", + "ColumnFilterChanging(ColumnFilterCondition)": "ColumnFilterChanging(ColumnFilterCondition)", + "ColumnFilterChanging": "ColumnFilterChanging(ColumnFilterCondition)", + "DisableKeyInput()": "DisableKeyInput()", + "DisableKeyInput": "DisableKeyInput()", + "DoubleClicked(MouseButton)": "DoubleClicked(MouseButton)", + "DoubleClicked": "DoubleClicked(MouseButton)", + "DragStarted()": "DragStarted()", + "DragStarted": "DragStarted()", + "EditorCellLostFocus()": "EditorCellLostFocus()", + "EditorCellLostFocus": "EditorCellLostFocus()", + "EnableKeyInput()": "EnableKeyInput()", + "EnableKeyInput": "EnableKeyInput()", + "GetColumnFilterCondition()": "GetColumnFilterCondition()", + "GetColumnFilterCondition": "GetColumnFilterCondition()", + "GetColumnPropertyType()": "GetColumnPropertyType()", + "GetColumnPropertyType": "GetColumnPropertyType()", + "IsCellDown()": "IsCellDown()", + "IsCellDown": "IsCellDown()", + "IsClickActionDesired": "IsClickActionDesired", + "IsControlPressed": "IsControlPressed", + "IsDrag": "IsDrag", + "IsEditRefocusDesired": "IsEditRefocusDesired", + "IsEnterActionDesired": "IsEnterActionDesired", + "IsGridDragging": "IsGridDragging", + "IsHandlingNavigationUris()": "IsHandlingNavigationUris()", + "IsHandlingNavigationUris": "IsHandlingNavigationUris()", + "IsHoverActionDesired": "IsHoverActionDesired", + "IsLeaveActionDesired": "IsLeaveActionDesired", + "IsMouseDown": "IsMouseDown", + "IsPointerDownActionDesired": "IsPointerDownActionDesired", + "IsPointerUpActionDesired": "IsPointerUpActionDesired", + "IsPreviewPointerDownActionDesired": "IsPreviewPointerDownActionDesired", + "IsPreviewPointerUpActionDesired": "IsPreviewPointerUpActionDesired", + "IsShiftPressed": "IsShiftPressed", + "MouseDownCell(double, double)": "MouseDownCell(double, double)", + "MouseDownCell": "MouseDownCell(double, double)", + "MouseEnterCell(double, double)": "MouseEnterCell(double, double)", + "MouseEnterCell": "MouseEnterCell(double, double)", + "MouseIsOver(double, double)": "MouseIsOver(double, double)", + "MouseIsOver": "MouseIsOver(double, double)", + "MouseLeaveCell(double, double)": "MouseLeaveCell(double, double)", + "MouseLeaveCell": "MouseLeaveCell(double, double)", + "MousePosition": "MousePosition", + "MouseUpCell(double, double)": "MouseUpCell(double, double)", + "MouseUpCell": "MouseUpCell(double, double)", + "NavigationRequested()": "NavigationRequested()", + "NavigationRequested": "NavigationRequested()", + "PassCellClone(object)": "PassCellClone(object)", + "PassCellClone": "PassCellClone(object)", + "PointerDownCell()": "PointerDownCell()", + "PointerDownCell": "PointerDownCell()", + "PointerUpCell()": "PointerUpCell()", + "PointerUpCell": "PointerUpCell()", + "PreviewMouseDownCell(bool, bool, MouseButton)": "PreviewMouseDownCell(bool, bool, MouseButton)", + "PreviewMouseDownCell": "PreviewMouseDownCell(bool, bool, MouseButton)", + "PreviewMouseUpCell(bool, bool, MouseButton)": "PreviewMouseUpCell(bool, bool, MouseButton)", + "PreviewMouseUpCell": "PreviewMouseUpCell(bool, bool, MouseButton)", + "PreviewPointerDownCell()": "PreviewPointerDownCell()", + "PreviewPointerDownCell": "PreviewPointerDownCell()", + "PreviewPointerUpCell()": "PreviewPointerUpCell()", + "PreviewPointerUpCell": "PreviewPointerUpCell()", + "ShouldSkipFocusRetain()": "ShouldSkipFocusRetain()", + "ShouldSkipFocusRetain": "ShouldSkipFocusRetain()", + "StartEditMode()": "StartEditMode()", + "StartEditMode": "StartEditMode()", + "UpdateCellEditValue(object)": "UpdateCellEditValue(object)", + "UpdateCellEditValue": "UpdateCellEditValue(object)" + } + } + ], + "ICodeGenerationRendererTemplate": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ICodeGenerationRendererTemplate", + "k": "interface", + "s": "interfaces", + "m": { + "Execute(CodeGeneratingRendererResult)": "Execute(CodeGeneratingRendererResult)", + "Execute": "Execute(CodeGeneratingRendererResult)" + } + } + ], + "ICommandAvailabilityListener": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ICommandAvailabilityListener", + "k": "interface", + "s": "interfaces" + } + ], + "ICommandStateChangedListener": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ICommandStateChangedListener", + "k": "interface", + "s": "interfaces", + "m": { + "OnCommandStateChanged(string, ToolCommandStateType, object)": "OnCommandStateChanged(string, ToolCommandStateType, object)", + "OnCommandStateChanged": "OnCommandStateChanged(string, ToolCommandStateType, object)" + } + } + ], + "IComponentRendererSerializationProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IComponentRendererSerializationProvider", + "k": "interface", + "s": "interfaces", + "m": { + "CanSerializeRef(string, object)": "CanSerializeRef(string, object)", + "CanSerializeRef": "CanSerializeRef(string, object)", + "SerializeRef(DescriptionSerializerBuilder, string, object)": "SerializeRef(DescriptionSerializerBuilder, string, object)", + "SerializeRef": "SerializeRef(DescriptionSerializerBuilder, string, object)" + } + } + ], + "IconDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/IconDescription", + "k": "class", + "s": "classes", + "m": { + "IconDescription()": "IconDescription()", + "IconDescription": "IconDescription()", + "ActualFill": "ActualFill", + "ActualStroke": "ActualStroke", + "ActualStrokeWidth": "ActualStrokeWidth", + "ActualTextColor": "ActualTextColor", + "ActualViewBoxHeight": "ActualViewBoxHeight", + "ActualViewBoxLeft": "ActualViewBoxLeft", + "ActualViewBoxTop": "ActualViewBoxTop", + "ActualViewBoxWidth": "ActualViewBoxWidth", + "AriaLabel": "AriaLabel", + "BaseTheme": "BaseTheme", + "DataURL": "DataURL", + "Disabled": "Disabled", + "Fill": "Fill", + "FillColors": "FillColors", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "Height": "Height", + "HoverFill": "HoverFill", + "HoverStroke": "HoverStroke", + "HoverStrokeThickness": "HoverStrokeThickness", + "HoverTextColor": "HoverTextColor", + "Id": "Id", + "IsHover": "IsHover", + "Opacity": "Opacity", + "PrimaryFillColor": "PrimaryFillColor", + "PrimaryStrokeColor": "PrimaryStrokeColor", + "SVGPaths": "SVGPaths", + "SecondaryFillColor": "SecondaryFillColor", + "SecondaryStrokeColor": "SecondaryStrokeColor", + "SourceRef": "SourceRef", + "Stroke": "Stroke", + "StrokeColors": "StrokeColors", + "StrokeWidth": "StrokeWidth", + "Svg": "Svg", + "SvgPath": "SvgPath", + "TabIndex": "TabIndex", + "TextColor": "TextColor", + "Type": "Type", + "ViewBoxHeight": "ViewBoxHeight", + "ViewBoxLeft": "ViewBoxLeft", + "ViewBoxTop": "ViewBoxTop", + "ViewBoxWidth": "ViewBoxWidth", + "Width": "Width" + } + } + ], + "IconDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/IconDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "IconDescriptionMetadata()": "IconDescriptionMetadata()", + "IconDescriptionMetadata": "IconDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "IconDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/IconDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "IconDescriptionModule()": "IconDescriptionModule()", + "IconDescriptionModule": "IconDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "IconVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/IconVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "IconVisualModelExport()": "IconVisualModelExport()", + "IconVisualModelExport": "IconVisualModelExport()", + "ActualFill": "ActualFill", + "ActualStroke": "ActualStroke", + "ActualStrokeThickness": "ActualStrokeThickness", + "ActualTextColor": "ActualTextColor", + "DataURL": "DataURL", + "Height": "Height", + "Left": "Left", + "SVG": "SVG", + "SVGPath": "SVGPath", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Shapes": "Shapes", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Width": "Width" + } + } + ], + "IDataIntentAttribute": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataIntentAttribute", + "k": "interface", + "s": "interfaces", + "m": { + "Intent": "Intent" + } + } + ], + "IDataSeriesAdapterRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSeriesAdapterRule", + "k": "interface", + "s": "interfaces", + "m": { + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "IDataSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSource", + "k": "interface", + "s": "interfaces", + "m": { + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualSchema": "ActualSchema", + "ClearPinnedRows()": "ClearPinnedRows()", + "ClearPinnedRows": "ClearPinnedRows()", + "Clone()": "Clone()", + "Clone": "Clone()", + "DeferAutoRefresh": "DeferAutoRefresh", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FirstVisibleIndexRequested": "FirstVisibleIndexRequested", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetIsRowExpandedAtIndex(int)": "GetIsRowExpandedAtIndex(int)", + "GetIsRowExpandedAtIndex": "GetIsRowExpandedAtIndex(int)", + "GetItemProperty(object, string)": "GetItemProperty(object, string)", + "GetItemProperty": "GetItemProperty(object, string)", + "GetItemPropertyAtIndex(int, string)": "GetItemPropertyAtIndex(int, string)", + "GetItemPropertyAtIndex": "GetItemPropertyAtIndex(int, string)", + "GetMainValuePath(DataSourceRowType)": "GetMainValuePath(DataSourceRowType)", + "GetMainValuePath": "GetMainValuePath(DataSourceRowType)", + "GetRootSummaryResults()": "GetRootSummaryResults()", + "GetRootSummaryResults": "GetRootSummaryResults()", + "GetRootSummaryRowCount()": "GetRootSummaryRowCount()", + "GetRootSummaryRowCount": "GetRootSummaryRowCount()", + "GetRowLevel(int)": "GetRowLevel(int)", + "GetRowLevel": "GetRowLevel(int)", + "GetRowType(int)": "GetRowType(int)", + "GetRowType": "GetRowType(int)", + "GetSectionSummaryResults(int)": "GetSectionSummaryResults(int)", + "GetSectionSummaryResults": "GetSectionSummaryResults(int)", + "GetStickyRowPriority(int)": "GetStickyRowPriority(int)", + "GetStickyRowPriority": "GetStickyRowPriority(int)", + "GetStickyRows()": "GetStickyRows()", + "GetStickyRows": "GetStickyRows()", + "GetStickyRowsInRange(int, int)": "GetStickyRowsInRange(int, int)", + "GetStickyRowsInRange": "GetStickyRowsInRange(int, int)", + "GroupDescriptions": "GroupDescriptions", + "IncludeSummaryRowsInSection": "IncludeSummaryRowsInSection", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsExclusivelySticky(int)": "IsExclusivelySticky(int)", + "IsExclusivelySticky": "IsExclusivelySticky(int)", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsPlaceholderItem(int)": "IsPlaceholderItem(int)", + "IsPlaceholderItem": "IsPlaceholderItem(int)", + "IsRowPinned(int)": "IsRowPinned(int)", + "IsRowPinned": "IsRowPinned(int)", + "IsRowSpanning(DataSourceRowType)": "IsRowSpanning(DataSourceRowType)", + "IsRowSpanning": "IsRowSpanning(DataSourceRowType)", + "IsSectionCollapsable": "IsSectionCollapsable", + "IsSectionContentVisible": "IsSectionContentVisible", + "IsSectionExpandedDefault": "IsSectionExpandedDefault", + "IsSectionHeaderNormalRow": "IsSectionHeaderNormalRow", + "IsSectionSummaryRowsAtBottom": "IsSectionSummaryRowsAtBottom", + "IsSortingSupported": "IsSortingSupported", + "IsVirtual": "IsVirtual", + "LastVisibleIndexRequested": "LastVisibleIndexRequested", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "PinRow(object[])": "PinRow(object[])", + "PinRow": "PinRow(object[])", + "PrimaryKey": "PrimaryKey", + "PropertiesRequested": "PropertiesRequested", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "ResolvedDataProvider": "ResolvedDataProvider", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SectionHeaderDisplayMode": "SectionHeaderDisplayMode", + "SetIsRowExpandedAtIndex(int, bool)": "SetIsRowExpandedAtIndex(int, bool)", + "SetIsRowExpandedAtIndex": "SetIsRowExpandedAtIndex(int, bool)", + "ShouldEmitSectionFooters": "ShouldEmitSectionFooters", + "ShouldEmitSectionHeaders": "ShouldEmitSectionHeaders", + "ShouldEmitShiftedRows": "ShouldEmitShiftedRows", + "ShouldEmitSummaryRows": "ShouldEmitSummaryRows", + "SortDescriptions": "SortDescriptions", + "SourceName": "SourceName", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "UnpinRow(object[])": "UnpinRow(object[])", + "UnpinRow": "UnpinRow(object[])", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "IDataSourceClonableDataProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceClonableDataProvider", + "k": "interface", + "s": "interfaces", + "m": { + "Clone()": "Clone()", + "Clone": "Clone()" + } + } + ], + "IDataSourceDataProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceDataProvider", + "k": "interface", + "s": "interfaces", + "m": { + "ActualSchema": "ActualSchema", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "DeferAutoRefresh": "DeferAutoRefresh", + "ExecutionContext": "ExecutionContext", + "FilterExpressions": "FilterExpressions", + "FlushAutoRefresh()": "FlushAutoRefresh()", + "FlushAutoRefresh": "FlushAutoRefresh()", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GroupDescriptions": "GroupDescriptions", + "IndexOfItem(object)": "IndexOfItem(object)", + "IndexOfItem": "IndexOfItem(object)", + "IndexOfKey(object[])": "IndexOfKey(object[])", + "IndexOfKey": "IndexOfKey(object[])", + "IsFilteringSupported": "IsFilteringSupported", + "IsGroupingSupported": "IsGroupingSupported", + "IsItemIndexLookupSupported": "IsItemIndexLookupSupported", + "IsKeyIndexLookupSupported": "IsKeyIndexLookupSupported", + "IsSortingSupported": "IsSortingSupported", + "NotifyUsingSourceIndexes": "NotifyUsingSourceIndexes", + "PropertiesRequested": "PropertiesRequested", + "QueueAutoRefresh()": "QueueAutoRefresh()", + "QueueAutoRefresh": "QueueAutoRefresh()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "ResolveSchemaPropertyType(string)": "ResolveSchemaPropertyType(string)", + "ResolveSchemaPropertyType": "ResolveSchemaPropertyType(string)", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SetItemValue(object, string, object)": "SetItemValue(object, string, object)", + "SetItemValue": "SetItemValue(object, string, object)", + "SortDescriptions": "SortDescriptions", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "UpdateNotifier": "UpdateNotifier" + } + } + ], + "IDataSourceDataProviderUpdateNotifier": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceDataProviderUpdateNotifier", + "k": "interface", + "s": "interfaces" + } + ], + "IDataSourceExecutionContext": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceExecutionContext", + "k": "interface", + "s": "interfaces", + "m": { + "EnqueueAction(DataSourceExecutionContextExecuteCallback)": "EnqueueAction(DataSourceExecutionContextExecuteCallback)", + "EnqueueAction": "EnqueueAction(DataSourceExecutionContextExecuteCallback)", + "Execute(DataSourceExecutionContextExecuteCallback)": "Execute(DataSourceExecutionContextExecuteCallback)", + "Execute": "Execute(DataSourceExecutionContextExecuteCallback)", + "ExecuteDelayed(DataSourceExecutionContextExecuteCallback, int)": "ExecuteDelayed(DataSourceExecutionContextExecuteCallback, int)", + "ExecuteDelayed": "ExecuteDelayed(DataSourceExecutionContextExecuteCallback, int)" + } + } + ], + "IDataSourceLocalDataProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceLocalDataProvider", + "k": "interface", + "s": "interfaces", + "m": { + "ItemsSource": "ItemsSource" + } + } + ], + "IDataSourcePage": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourcePage", + "k": "interface", + "s": "interfaces", + "m": { + "Count()": "Count()", + "Count": "Count()", + "GetGroupInformation()": "GetGroupInformation()", + "GetGroupInformation": "GetGroupInformation()", + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)", + "GetItemValueAtIndex(int, string)": "GetItemValueAtIndex(int, string)", + "GetItemValueAtIndex": "GetItemValueAtIndex(int, string)", + "GetSummaryInformation()": "GetSummaryInformation()", + "GetSummaryInformation": "GetSummaryInformation()", + "PageIndex()": "PageIndex()", + "PageIndex": "PageIndex()", + "Schema()": "Schema()", + "Schema": "Schema()" + } + } + ], + "IDataSourceSchema": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceSchema", + "k": "interface", + "s": "interfaces", + "m": { + "PrimaryKey": "PrimaryKey", + "PropertyDataIntents": "PropertyDataIntents", + "PropertyNames": "PropertyNames", + "PropertyTypes": "PropertyTypes", + "SubSchemas": "SubSchemas" + } + } + ], + "IDataSourceSupportsCount": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceSupportsCount", + "k": "interface", + "s": "interfaces", + "m": { + "ActualCount": "ActualCount" + } + } + ], + "IDataSourceSupportsIndexedAccess": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceSupportsIndexedAccess", + "k": "interface", + "s": "interfaces", + "m": { + "GetItemAtIndex(int)": "GetItemAtIndex(int)", + "GetItemAtIndex": "GetItemAtIndex(int)" + } + } + ], + "IDataSourceUpdateNotifier": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceUpdateNotifier", + "k": "interface", + "s": "interfaces", + "m": { + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "RangeActualized(int, int)": "RangeActualized(int, int)", + "RangeActualized": "RangeActualized(int, int)" + } + } + ], + "IDataSourceVirtualDataProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IDataSourceVirtualDataProvider", + "k": "interface", + "s": "interfaces", + "m": { + "AddPageRequest(int, DataSourcePageRequestPriority)": "AddPageRequest(int, DataSourcePageRequestPriority)", + "AddPageRequest": "AddPageRequest(int, DataSourcePageRequestPriority)", + "BatchCompleted": "BatchCompleted", + "Close()": "Close()", + "Close": "Close()", + "CreateBatchRequest(TransactionState[])": "CreateBatchRequest(TransactionState[])", + "CreateBatchRequest": "CreateBatchRequest(TransactionState[])", + "PageLoaded": "PageLoaded", + "PageSizeRequested": "PageSizeRequested", + "RemoveAllPageRequests()": "RemoveAllPageRequests()", + "RemoveAllPageRequests": "RemoveAllPageRequests()", + "RemovePageRequest(int)": "RemovePageRequest(int)", + "RemovePageRequest": "RemovePageRequest(int)" + } + } + ], + "IEditableDataSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IEditableDataSource", + "k": "interface", + "s": "interfaces", + "m": { + "AcceptPendingCommit(int)": "AcceptPendingCommit(int)", + "AcceptPendingCommit": "AcceptPendingCommit(int)", + "AcceptPendingTransaction(int)": "AcceptPendingTransaction(int)", + "AcceptPendingTransaction": "AcceptPendingTransaction(int)", + "AddItem(object)": "AddItem(object)", + "AddItem": "AddItem(object)", + "CanCommit": "CanCommit", + "CanRedo": "CanRedo", + "CanUndo": "CanUndo", + "CancelEdits()": "CancelEdits()", + "CancelEdits": "CancelEdits()", + "CommitEdits(bool)": "CommitEdits(bool)", + "CommitEdits": "CommitEdits(bool)", + "GetAggregatedChanges(int)": "GetAggregatedChanges(int)", + "GetAggregatedChanges": "GetAggregatedChanges(int)", + "GetTransactionErrorByID(int)": "GetTransactionErrorByID(int)", + "GetTransactionErrorByID": "GetTransactionErrorByID(int)", + "GetTransactionErrorByKey(object[], string)": "GetTransactionErrorByKey(object[], string)", + "GetTransactionErrorByKey": "GetTransactionErrorByKey(object[], string)", + "GetTransactionID(object[], string)": "GetTransactionID(object[], string)", + "GetTransactionID": "GetTransactionID(object[], string)", + "HasAdd(object)": "HasAdd(object)", + "HasAdd": "HasAdd(object)", + "HasDelete(object[])": "HasDelete(object[])", + "HasDelete": "HasDelete(object[])", + "HasEdit(object[], string)": "HasEdit(object[], string)", + "HasEdit": "HasEdit(object[], string)", + "IsBatchingEnabled": "IsBatchingEnabled", + "IsPendingCommit(int)": "IsPendingCommit(int)", + "IsPendingCommit": "IsPendingCommit(int)", + "IsPendingTransaction(int)": "IsPendingTransaction(int)", + "IsPendingTransaction": "IsPendingTransaction(int)", + "IsReadOnly": "IsReadOnly", + "Redo()": "Redo()", + "Redo": "Redo()", + "RejectPendingCommit(int)": "RejectPendingCommit(int)", + "RejectPendingCommit": "RejectPendingCommit(int)", + "RejectPendingTransaction(int)": "RejectPendingTransaction(int)", + "RejectPendingTransaction": "RejectPendingTransaction(int)", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "RemoveItemByKey(object[])": "RemoveItemByKey(object[])", + "RemoveItemByKey": "RemoveItemByKey(object[])", + "SetTransactionError(int, string)": "SetTransactionError(int, string)", + "SetTransactionError": "SetTransactionError(int, string)", + "Undo()": "Undo()", + "Undo": "Undo()", + "UpdatePropertyAtKey(object[], string, object, bool)": "UpdatePropertyAtKey(object[], string, object, bool)", + "UpdatePropertyAtKey": "UpdatePropertyAtKey(object[], string, object, bool)" + } + } + ], + "IExecutionContext": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IExecutionContext", + "k": "interface", + "s": "interfaces", + "m": { + "EnqueueAction(ExecutionContextExecuteCallback)": "EnqueueAction(ExecutionContextExecuteCallback)", + "EnqueueAction": "EnqueueAction(ExecutionContextExecuteCallback)", + "EnqueueAnimationAction(ExecutionContextExecuteCallback)": "EnqueueAnimationAction(ExecutionContextExecuteCallback)", + "EnqueueAnimationAction": "EnqueueAnimationAction(ExecutionContextExecuteCallback)", + "Execute(ExecutionContextExecuteCallback)": "Execute(ExecutionContextExecuteCallback)", + "Execute": "Execute(ExecutionContextExecuteCallback)", + "ExecuteDelayed(ExecutionContextExecuteCallback, int)": "ExecuteDelayed(ExecutionContextExecuteCallback, int)", + "ExecuteDelayed": "ExecuteDelayed(ExecutionContextExecuteCallback, int)", + "GetCurrentRelativeTime()": "GetCurrentRelativeTime()", + "GetCurrentRelativeTime": "GetCurrentRelativeTime()" + } + } + ], + "IExternalDataSeriesAdapter": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IExternalDataSeriesAdapter", + "k": "interface", + "s": "interfaces", + "m": { + "GetDataProvider(object)": "GetDataProvider(object)", + "GetDataProvider": "GetDataProvider(object)", + "GetLocalDataSource(object)": "GetLocalDataSource(object)", + "GetLocalDataSource": "GetLocalDataSource(object)" + } + } + ], + "IExternalizable": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IExternalizable", + "k": "interface", + "s": "interfaces", + "m": { + "ToExternalObject()": "ToExternalObject()", + "ToExternalObject": "ToExternalObject()" + } + } + ], + "IFastItemColumn": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IFastItemColumn", + "k": "interface", + "s": "interfaces", + "m": { + "Maximum": "Maximum", + "MayContainUnknowns": "MayContainUnknowns", + "Minimum": "Minimum" + } + } + ], + "IFastItemColumnPropertyName": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IFastItemColumnPropertyName", + "k": "interface", + "s": "interfaces", + "m": { + "PropertyName": "PropertyName" + } + } + ], + "IFastItemsSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IFastItemsSource", + "k": "interface", + "s": "interfaces", + "m": { + "ContentsAsIList()": "ContentsAsIList()", + "ContentsAsIList": "ContentsAsIList()", + "Count": "Count", + "DeregisterColumn(IFastItemColumnPropertyName)": "DeregisterColumn(IFastItemColumnPropertyName)", + "DeregisterColumn": "DeregisterColumn(IFastItemColumnPropertyName)", + "HandleCollectionChanged(NotifyCollectionChangedEventArgs)": "HandleCollectionChanged(NotifyCollectionChangedEventArgs)", + "HandleCollectionChanged": "HandleCollectionChanged(NotifyCollectionChangedEventArgs)", + "IndexOf(object)": "IndexOf(object)", + "IndexOf": "IndexOf(object)", + "this[int]": "this[int]", + "RegisterColumn(string)": "RegisterColumn(string)", + "RegisterColumn": "RegisterColumn(string)", + "RegisterColumnDateTime(string)": "RegisterColumnDateTime(string)", + "RegisterColumnDateTime": "RegisterColumnDateTime(string)", + "RegisterColumnInt(string)": "RegisterColumnInt(string)", + "RegisterColumnInt": "RegisterColumnInt(string)", + "RegisterColumnObject(string)": "RegisterColumnObject(string)", + "RegisterColumnObject": "RegisterColumnObject(string)" + } + } + ], + "IFastItemsSourceProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IFastItemsSourceProvider", + "k": "interface", + "s": "interfaces", + "m": { + "GetFastItemsSource(IEnumerable)": "GetFastItemsSource(IEnumerable)", + "GetFastItemsSource": "GetFastItemsSource(IEnumerable)", + "ReleaseFastItemsSource(IEnumerable)": "ReleaseFastItemsSource(IEnumerable)", + "ReleaseFastItemsSource": "ReleaseFastItemsSource(IEnumerable)" + } + } + ], + "IFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)": "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)", + "Evaluate": "Evaluate(object, IDataSourceDataProvider, IDataSourceSchema)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "IsAutoGenerated": "IsAutoGenerated", + "IsFunction": "IsFunction", + "IsLiteral": "IsLiteral", + "IsNull": "IsNull", + "IsOperation": "IsOperation", + "IsPropertyReference": "IsPropertyReference", + "IsWrapper": "IsWrapper", + "MarkAutoGenerated()": "MarkAutoGenerated()", + "MarkAutoGenerated": "MarkAutoGenerated()", + "Match(object, IDataSourceDataProvider, IDataSourceSchema)": "Match(object, IDataSourceDataProvider, IDataSourceSchema)", + "Match": "Match(object, IDataSourceDataProvider, IDataSourceSchema)", + "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "MatchWithEnvironment": "MatchWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "Precedence": "Precedence" + } + } + ], + "IFilterExpressionEnvironment": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IFilterExpressionEnvironment", + "k": "interface", + "s": "interfaces", + "m": { + "GetVariableValue(string)": "GetVariableValue(string)", + "GetVariableValue": "GetVariableValue(string)", + "HasVariable(string)": "HasVariable(string)", + "HasVariable": "HasVariable(string)", + "SetVariableValue(string, object)": "SetVariableValue(string, object)", + "SetVariableValue": "SetVariableValue(string, object)" + } + } + ], + "IFunctionFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IFunctionFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "FunctionArguments": "FunctionArguments", + "FunctionType": "FunctionType", + "HasFunctionArguments": "HasFunctionArguments" + } + } + ], + "IGBaseView": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/IGBaseView", + "k": "class", + "s": "classes", + "m": { + "IGBaseView()": "IGBaseView()", + "IGBaseView": "IGBaseView()", + "DisableEventProxyInputCapture()": "DisableEventProxyInputCapture()", + "DisableEventProxyInputCapture": "DisableEventProxyInputCapture()", + "FlushAcrossContextsAsync(Action)": "FlushAcrossContextsAsync(Action)", + "FlushAcrossContextsAsync": "FlushAcrossContextsAsync(Action)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "ResolveDesiredPixelScalingRatio()": "ResolveDesiredPixelScalingRatio()", + "ResolveDesiredPixelScalingRatio": "ResolveDesiredPixelScalingRatio()" + } + } + ], + "IGetItemAtIndex": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IGetItemAtIndex", + "k": "interface", + "s": "interfaces", + "m": { + "GetItem(int)": "GetItem(int)", + "GetItem": "GetItem(int)" + } + } + ], + "IgnoreAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/IgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "IgnoreAttribute()": "IgnoreAttribute()", + "IgnoreAttribute": "IgnoreAttribute()" + } + } + ], + "IgQueue": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/IgQueue", + "k": "class", + "s": "classes", + "m": { + "IgQueue()": "IgQueue()", + "IgQueue": "IgQueue()", + "Count": "Count", + "Dequeue(out T)": "Dequeue(out T)", + "Dequeue": "Dequeue(out T)", + "Enqueue(T)": "Enqueue(T)", + "Enqueue": "Enqueue(T)", + "empty": "empty" + } + } + ], + "ILiteralFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ILiteralFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "LeaveUnquoted": "LeaveUnquoted", + "LiteralValue": "LiteralValue" + } + } + ], + "ImageCapturedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageCapturedEventArgs", + "k": "class", + "s": "classes", + "m": { + "Base64Data": "Base64Data", + "Settings": "Settings", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ImageCapturedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageCapturedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ImageCapturedEventArgsDescription()": "ImageCapturedEventArgsDescription()", + "ImageCapturedEventArgsDescription": "ImageCapturedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ImageCapturedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageCapturedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageCapturedEventArgsDescriptionMetadata()": "ImageCapturedEventArgsDescriptionMetadata()", + "ImageCapturedEventArgsDescriptionMetadata": "ImageCapturedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ImageCellInfo", + "k": "class", + "s": "classes", + "m": { + "ImageCellInfo()": "ImageCellInfo()", + "ImageCellInfo": "ImageCellInfo()", + "ImagePath": "ImagePath", + "ImagePathPropertyName": "ImagePathPropertyName", + "ImageResourceType": "ImageResourceType", + "ImageResourceTypePropertyName": "ImageResourceTypePropertyName", + "ImageStretchOption": "ImageStretchOption", + "ImageStretchOptionPropertyName": "ImageStretchOptionPropertyName" + } + } + ], + "ImageCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ImageCellInfoDescription()": "ImageCellInfoDescription()", + "ImageCellInfoDescription": "ImageCellInfoDescription()", + "ImagePath": "ImagePath", + "ImageResourceType": "ImageResourceType", + "ImageStretchOption": "ImageStretchOption", + "Type": "Type" + } + } + ], + "ImageCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageCellInfoDescriptionMetadata()": "ImageCellInfoDescriptionMetadata()", + "ImageCellInfoDescriptionMetadata": "ImageCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ImageCellModelExport", + "k": "class", + "s": "classes", + "m": { + "ImageCellModelExport()": "ImageCellModelExport()", + "ImageCellModelExport": "ImageCellModelExport()", + "ImagePath": "ImagePath", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "ImageColumn": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ImageColumn", + "k": "class", + "s": "classes", + "m": { + "ImageColumn()": "ImageColumn()", + "ImageColumn": "ImageColumn()", + "EditorItemsSource": "EditorItemsSource", + "EditorItemsSourceProperty": "EditorItemsSourceProperty", + "EditorTextField": "EditorTextField", + "EditorTextFieldProperty": "EditorTextFieldProperty", + "EditorType": "EditorType", + "EditorTypeProperty": "EditorTypeProperty", + "EditorValueField": "EditorValueField", + "EditorValueFieldProperty": "EditorValueFieldProperty", + "ImageResourceType": "ImageResourceType", + "ImageResourceTypeProperty": "ImageResourceTypeProperty", + "ImageStretchOption": "ImageStretchOption", + "ImageStretchOptionProperty": "ImageStretchOptionProperty" + } + } + ], + "ImageColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageColumnDescription", + "k": "class", + "s": "classes", + "m": { + "ImageColumnDescription()": "ImageColumnDescription()", + "ImageColumnDescription": "ImageColumnDescription()", + "DataSource": "DataSource", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "GenericDataSource": "GenericDataSource", + "ImageStretchOption": "ImageStretchOption", + "Type": "Type" + } + } + ], + "ImageColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageColumnDescriptionMetadata()": "ImageColumnDescriptionMetadata()", + "ImageColumnDescriptionMetadata": "ImageColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageColumnDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ImageColumnDescriptionModule()": "ImageColumnDescriptionModule()", + "ImageColumnDescriptionModule": "ImageColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageHelper": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/ImageHelper", + "k": "class", + "s": "classes" + } + ], + "ImageLoadEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageLoadEventArgs", + "k": "class", + "s": "classes", + "m": { + "Data": "Data", + "Error": "Error", + "Path": "Path", + "Status": "Status", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ImageLoadEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageLoadEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ImageLoadEventArgsDescription()": "ImageLoadEventArgsDescription()", + "ImageLoadEventArgsDescription": "ImageLoadEventArgsDescription()", + "DataRef": "DataRef", + "Error": "Error", + "Path": "Path", + "Status": "Status", + "Type": "Type" + } + } + ], + "ImageLoadEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageLoadEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageLoadEventArgsDescriptionMetadata()": "ImageLoadEventArgsDescriptionMetadata()", + "ImageLoadEventArgsDescriptionMetadata": "ImageLoadEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageLoadStatus": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ImageLoadStatus", + "k": "enum", + "s": "enums" + } + ], + "ImageResourceType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ImageResourceType", + "k": "enum", + "s": "enums" + } + ], + "ImageryMetadata": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/ImageryMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageryMetadata()": "ImageryMetadata()", + "ImageryMetadata": "ImageryMetadata()", + "ImageUrl": "ImageUrl", + "ImageUrlSubdomains": "ImageUrlSubdomains" + } + } + ], + "ImagesChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImagesChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ImagesChangedEventArgsDescription()": "ImagesChangedEventArgsDescription()", + "ImagesChangedEventArgsDescription": "ImagesChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ImagesChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImagesChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImagesChangedEventArgsDescriptionMetadata()": "ImagesChangedEventArgsDescriptionMetadata()", + "ImagesChangedEventArgsDescriptionMetadata": "ImagesChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageStretchOptions": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/ImageStretchOptions", + "k": "enum", + "s": "enums" + } + ], + "ImageTilesReadyEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageTilesReadyEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ImageTilesReadyEventArgsDescription()": "ImageTilesReadyEventArgsDescription()", + "ImageTilesReadyEventArgsDescription": "ImageTilesReadyEventArgsDescription()", + "Type": "Type" + } + } + ], + "ImageTilesReadyEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ImageTilesReadyEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ImageTilesReadyEventArgsDescriptionMetadata()": "ImageTilesReadyEventArgsDescriptionMetadata()", + "ImageTilesReadyEventArgsDescriptionMetadata": "ImageTilesReadyEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ImageType": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/enums/ImageType", + "k": "enum", + "s": "enums" + } + ], + "ImageWrapper": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/ImageWrapper", + "k": "class", + "s": "classes", + "m": { + "ImageWrapper(string)": "ImageWrapper(string)", + "ImageWrapper": "ImageWrapper(string)", + "IsEquivalent(ImageWrapper)": "IsEquivalent(ImageWrapper)", + "IsEquivalent": "IsEquivalent(ImageWrapper)" + } + } + ], + "IndexCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/IndexCollection", + "k": "class", + "s": "classes", + "m": { + "IndexCollection()": "IndexCollection()", + "IndexCollection": "IndexCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "IndicatorDisplayType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/IndicatorDisplayType", + "k": "enum", + "s": "enums" + } + ], + "IndicatorProxyDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/IndicatorProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "IndicatorProxyDescriptionModule()": "IndicatorProxyDescriptionModule()", + "IndicatorProxyDescriptionModule": "IndicatorProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "IndicatorsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/IndicatorsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "IndicatorsDescriptionModule()": "IndicatorsDescriptionModule()", + "IndicatorsDescriptionModule": "IndicatorsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InlineItemAccessAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/InlineItemAccessAttribute", + "k": "class", + "s": "classes", + "m": { + "InlineItemAccessAttribute()": "InlineItemAccessAttribute()", + "InlineItemAccessAttribute": "InlineItemAccessAttribute()", + "InlineItemAccessAttribute(string)": "InlineItemAccessAttribute(string)" + } + } + ], + "InlinePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/InlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "InlinePropertyAttribute()": "InlinePropertyAttribute()", + "InlinePropertyAttribute": "InlinePropertyAttribute()" + } + } + ], + "InputChangeEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/InputChangeEventArgs", + "k": "class", + "s": "classes", + "m": { + "InputChangeEventArgs()": "InputChangeEventArgs()", + "InputChangeEventArgs": "InputChangeEventArgs()", + "IsCompositionInProgress": "IsCompositionInProgress", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "InputChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "InputChangeEventArgsDescription()": "InputChangeEventArgsDescription()", + "InputChangeEventArgsDescription": "InputChangeEventArgsDescription()", + "IsCompositionInProgress": "IsCompositionInProgress", + "Type": "Type", + "Value": "Value" + } + } + ], + "InputChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "InputChangeEventArgsDescriptionMetadata()": "InputChangeEventArgsDescriptionMetadata()", + "InputChangeEventArgsDescriptionMetadata": "InputChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputDescription", + "k": "class", + "s": "classes", + "m": { + "InputDescription()": "InputDescription()", + "InputDescription": "InputDescription()", + "ActualDensity": "ActualDensity", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualTextColor": "ActualTextColor", + "AriaLabel": "AriaLabel", + "BaseTheme": "BaseTheme", + "ChangeRef": "ChangeRef", + "ChangingRef": "ChangingRef", + "CompositionEndRef": "CompositionEndRef", + "Density": "Density", + "Disabled": "Disabled", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "For": "For", + "HoverTextColor": "HoverTextColor", + "Id": "Id", + "IncludeLiterals": "IncludeLiterals", + "InputType": "InputType", + "IsHover": "IsHover", + "KeyDownRef": "KeyDownRef", + "KeyPressRef": "KeyPressRef", + "KeyUpRef": "KeyUpRef", + "Mask": "Mask", + "Placeholder": "Placeholder", + "PromptChar": "PromptChar", + "Readonly": "Readonly", + "SelectionEnd": "SelectionEnd", + "SelectionStart": "SelectionStart", + "ShowSpinner": "ShowSpinner", + "TabIndex": "TabIndex", + "TextAlignment": "TextAlignment", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value" + } + } + ], + "InputDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "InputDescriptionMetadata()": "InputDescriptionMetadata()", + "InputDescriptionMetadata": "InputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "InputDescriptionModule()": "InputDescriptionModule()", + "InputDescriptionModule": "InputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputGroupDescription", + "k": "class", + "s": "classes", + "m": { + "InputGroupDescription()": "InputGroupDescription()", + "InputGroupDescription": "InputGroupDescription()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualDensity": "ActualDensity", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualIsExpanded": "ActualIsExpanded", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderColor": "BorderColor", + "BorderTypeBackgroundColor": "BorderTypeBackgroundColor", + "BorderTypeBorderColor": "BorderTypeBorderColor", + "BorderTypeBorderWidth": "BorderTypeBorderWidth", + "BorderTypeContentPaddingBottom": "BorderTypeContentPaddingBottom", + "BorderTypeContentPaddingLeft": "BorderTypeContentPaddingLeft", + "BorderTypeContentPaddingRight": "BorderTypeContentPaddingRight", + "BorderTypeContentPaddingTop": "BorderTypeContentPaddingTop", + "BorderTypeCornerRadiusBottomLeft": "BorderTypeCornerRadiusBottomLeft", + "BorderTypeCornerRadiusBottomRight": "BorderTypeCornerRadiusBottomRight", + "BorderTypeCornerRadiusTopLeft": "BorderTypeCornerRadiusTopLeft", + "BorderTypeCornerRadiusTopRight": "BorderTypeCornerRadiusTopRight", + "BorderTypeFocusBorderColor": "BorderTypeFocusBorderColor", + "BorderTypeFocusBorderWidth": "BorderTypeFocusBorderWidth", + "BorderTypeFocusUnderlineColor": "BorderTypeFocusUnderlineColor", + "BorderTypeFocusUnderlineOpacity": "BorderTypeFocusUnderlineOpacity", + "BorderTypeFocusUnderlineRippleOpacity": "BorderTypeFocusUnderlineRippleOpacity", + "BorderTypeHoverUnderlineColor": "BorderTypeHoverUnderlineColor", + "BorderTypeHoverUnderlineOpacity": "BorderTypeHoverUnderlineOpacity", + "BorderTypeHoverUnderlineWidth": "BorderTypeHoverUnderlineWidth", + "BorderTypeUnderlineColor": "BorderTypeUnderlineColor", + "BorderTypeUnderlineOpacity": "BorderTypeUnderlineOpacity", + "BorderTypeUnderlineRippleColor": "BorderTypeUnderlineRippleColor", + "BorderTypeUnderlineRippleOpacity": "BorderTypeUnderlineRippleOpacity", + "BorderTypeUnderlineRippleWidth": "BorderTypeUnderlineRippleWidth", + "BorderTypeUnderlineWidth": "BorderTypeUnderlineWidth", + "BorderWidth": "BorderWidth", + "BoxTypeBackgroundColor": "BoxTypeBackgroundColor", + "BoxTypeBorderColor": "BoxTypeBorderColor", + "BoxTypeBorderWidth": "BoxTypeBorderWidth", + "BoxTypeContentPaddingBottom": "BoxTypeContentPaddingBottom", + "BoxTypeContentPaddingLeft": "BoxTypeContentPaddingLeft", + "BoxTypeContentPaddingRight": "BoxTypeContentPaddingRight", + "BoxTypeContentPaddingTop": "BoxTypeContentPaddingTop", + "BoxTypeCornerRadiusBottomLeft": "BoxTypeCornerRadiusBottomLeft", + "BoxTypeCornerRadiusBottomRight": "BoxTypeCornerRadiusBottomRight", + "BoxTypeCornerRadiusTopLeft": "BoxTypeCornerRadiusTopLeft", + "BoxTypeCornerRadiusTopRight": "BoxTypeCornerRadiusTopRight", + "BoxTypeFocusBorderColor": "BoxTypeFocusBorderColor", + "BoxTypeFocusBorderWidth": "BoxTypeFocusBorderWidth", + "BoxTypeFocusUnderlineColor": "BoxTypeFocusUnderlineColor", + "BoxTypeFocusUnderlineOpacity": "BoxTypeFocusUnderlineOpacity", + "BoxTypeFocusUnderlineRippleOpacity": "BoxTypeFocusUnderlineRippleOpacity", + "BoxTypeHoverUnderlineColor": "BoxTypeHoverUnderlineColor", + "BoxTypeHoverUnderlineOpacity": "BoxTypeHoverUnderlineOpacity", + "BoxTypeHoverUnderlineWidth": "BoxTypeHoverUnderlineWidth", + "BoxTypeUnderlineColor": "BoxTypeUnderlineColor", + "BoxTypeUnderlineOpacity": "BoxTypeUnderlineOpacity", + "BoxTypeUnderlineRippleColor": "BoxTypeUnderlineRippleColor", + "BoxTypeUnderlineRippleOpacity": "BoxTypeUnderlineRippleOpacity", + "BoxTypeUnderlineRippleWidth": "BoxTypeUnderlineRippleWidth", + "BoxTypeUnderlineWidth": "BoxTypeUnderlineWidth", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "Density": "Density", + "Disabled": "Disabled", + "DisplayType": "DisplayType", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderWidth": "FocusBorderWidth", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "Id": "Id", + "Inputs": "Inputs", + "IsExpanded": "IsExpanded", + "IsFocused": "IsFocused", + "IsHovered": "IsHovered", + "LineTypeBackgroundColor": "LineTypeBackgroundColor", + "LineTypeBorderColor": "LineTypeBorderColor", + "LineTypeBorderWidth": "LineTypeBorderWidth", + "LineTypeContentPaddingBottom": "LineTypeContentPaddingBottom", + "LineTypeContentPaddingLeft": "LineTypeContentPaddingLeft", + "LineTypeContentPaddingRight": "LineTypeContentPaddingRight", + "LineTypeContentPaddingTop": "LineTypeContentPaddingTop", + "LineTypeCornerRadiusBottomLeft": "LineTypeCornerRadiusBottomLeft", + "LineTypeCornerRadiusBottomRight": "LineTypeCornerRadiusBottomRight", + "LineTypeCornerRadiusTopLeft": "LineTypeCornerRadiusTopLeft", + "LineTypeCornerRadiusTopRight": "LineTypeCornerRadiusTopRight", + "LineTypeFocusBorderColor": "LineTypeFocusBorderColor", + "LineTypeFocusBorderWidth": "LineTypeFocusBorderWidth", + "LineTypeFocusUnderlineColor": "LineTypeFocusUnderlineColor", + "LineTypeFocusUnderlineOpacity": "LineTypeFocusUnderlineOpacity", + "LineTypeFocusUnderlineRippleOpacity": "LineTypeFocusUnderlineRippleOpacity", + "LineTypeHoverUnderlineColor": "LineTypeHoverUnderlineColor", + "LineTypeHoverUnderlineOpacity": "LineTypeHoverUnderlineOpacity", + "LineTypeHoverUnderlineWidth": "LineTypeHoverUnderlineWidth", + "LineTypeUnderlineColor": "LineTypeUnderlineColor", + "LineTypeUnderlineOpacity": "LineTypeUnderlineOpacity", + "LineTypeUnderlineRippleColor": "LineTypeUnderlineRippleColor", + "LineTypeUnderlineRippleOpacity": "LineTypeUnderlineRippleOpacity", + "LineTypeUnderlineRippleWidth": "LineTypeUnderlineRippleWidth", + "LineTypeUnderlineWidth": "LineTypeUnderlineWidth", + "SearchTypeBackgroundColor": "SearchTypeBackgroundColor", + "SearchTypeBorderColor": "SearchTypeBorderColor", + "SearchTypeBorderWidth": "SearchTypeBorderWidth", + "SearchTypeContentPaddingBottom": "SearchTypeContentPaddingBottom", + "SearchTypeContentPaddingLeft": "SearchTypeContentPaddingLeft", + "SearchTypeContentPaddingRight": "SearchTypeContentPaddingRight", + "SearchTypeContentPaddingTop": "SearchTypeContentPaddingTop", + "SearchTypeCornerRadiusBottomLeft": "SearchTypeCornerRadiusBottomLeft", + "SearchTypeCornerRadiusBottomRight": "SearchTypeCornerRadiusBottomRight", + "SearchTypeCornerRadiusTopLeft": "SearchTypeCornerRadiusTopLeft", + "SearchTypeCornerRadiusTopRight": "SearchTypeCornerRadiusTopRight", + "SearchTypeFocusBorderColor": "SearchTypeFocusBorderColor", + "SearchTypeFocusBorderWidth": "SearchTypeFocusBorderWidth", + "SearchTypeFocusUnderlineColor": "SearchTypeFocusUnderlineColor", + "SearchTypeFocusUnderlineOpacity": "SearchTypeFocusUnderlineOpacity", + "SearchTypeFocusUnderlineRippleOpacity": "SearchTypeFocusUnderlineRippleOpacity", + "SearchTypeHoverUnderlineColor": "SearchTypeHoverUnderlineColor", + "SearchTypeHoverUnderlineOpacity": "SearchTypeHoverUnderlineOpacity", + "SearchTypeHoverUnderlineWidth": "SearchTypeHoverUnderlineWidth", + "SearchTypeUnderlineColor": "SearchTypeUnderlineColor", + "SearchTypeUnderlineOpacity": "SearchTypeUnderlineOpacity", + "SearchTypeUnderlineRippleColor": "SearchTypeUnderlineRippleColor", + "SearchTypeUnderlineRippleOpacity": "SearchTypeUnderlineRippleOpacity", + "SearchTypeUnderlineRippleWidth": "SearchTypeUnderlineRippleWidth", + "SearchTypeUnderlineWidth": "SearchTypeUnderlineWidth", + "Type": "Type", + "UnderlineColor": "UnderlineColor", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineWidth": "UnderlineWidth" + } + } + ], + "InputGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "InputGroupDescriptionMetadata()": "InputGroupDescriptionMetadata()", + "InputGroupDescriptionMetadata": "InputGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "InputGroupDescriptionModule()": "InputGroupDescriptionModule()", + "InputGroupDescriptionModule": "InputGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputGroupDisplayType": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/InputGroupDisplayType", + "k": "enum", + "s": "enums" + } + ], + "InputGroupInputCollection": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/InputGroupInputCollection", + "k": "class", + "s": "classes", + "m": { + "InputGroupInputCollection()": "InputGroupInputCollection()", + "InputGroupInputCollection": "InputGroupInputCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "InputGroupItemDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputGroupItemDescription", + "k": "class", + "s": "classes", + "m": { + "InputGroupItemDescription()": "InputGroupItemDescription()", + "InputGroupItemDescription": "InputGroupItemDescription()", + "Type": "Type" + } + } + ], + "InputGroupItemDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/InputGroupItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "InputGroupItemDescriptionMetadata()": "InputGroupItemDescriptionMetadata()", + "InputGroupItemDescriptionMetadata": "InputGroupItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "InputGroupVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/InputGroupVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "InputGroupVisualModelExport()": "InputGroupVisualModelExport()", + "InputGroupVisualModelExport": "InputGroupVisualModelExport()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualIsExpanded": "ActualIsExpanded", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "InputModels": "InputModels", + "IsDisabled": "IsDisabled", + "IsFocused": "IsFocused", + "IsHovered": "IsHovered", + "LabelModels": "LabelModels", + "PrefixModels": "PrefixModels", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SuffixModels": "SuffixModels" + } + } + ], + "InputShiftType": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/InputShiftType", + "k": "enum", + "s": "enums" + } + ], + "InputVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/InputVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "InputVisualModelExport()": "InputVisualModelExport()", + "InputVisualModelExport": "InputVisualModelExport()", + "ActualTextColor": "ActualTextColor", + "Height": "Height", + "IncludeLiterals": "IncludeLiterals", + "InputType": "InputType", + "IsHover": "IsHover", + "Left": "Left", + "Mask": "Mask", + "Name": "Name", + "Placeholder": "Placeholder", + "PromptChar": "PromptChar", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Value": "Value", + "Width": "Width" + } + } + ], + "IntColumn": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/IntColumn", + "k": "class", + "s": "classes", + "m": { + "IntColumn()": "IntColumn()", + "IntColumn": "IntColumn()", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "Populate(int)": "Populate(int)", + "Populate": "Populate(int)", + "Sort(IntColumnComparison)": "Sort(IntColumnComparison)", + "Sort": "Sort(IntColumnComparison)", + "Values": "Values" + } + } + ], + "InteractionState": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/InteractionState", + "k": "enum", + "s": "enums" + } + ], + "InterpolationMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/InterpolationMode", + "k": "enum", + "s": "enums" + } + ], + "IODataLiteralEmitter": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IODataLiteralEmitter", + "k": "interface", + "s": "interfaces", + "m": { + "EmitLiteral(object, bool)": "EmitLiteral(object, bool)", + "EmitLiteral": "EmitLiteral(object, bool)" + } + } + ], + "IOperationFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IOperationFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "Left": "Left", + "Operator": "Operator", + "Right": "Right" + } + } + ], + "IPlatformAppPackageLoader": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/interfaces/IPlatformAppPackageLoader", + "k": "interface", + "s": "interfaces", + "m": { + "CanHandle(Uri)": "CanHandle(Uri)", + "CanHandle": "CanHandle(Uri)", + "LoadAsync(Uri, Action, Action)": "LoadAsync(Uri, Action, Action)", + "LoadAsync": "LoadAsync(Uri, Action, Action)" + } + } + ], + "IPlatformBitmapUtilities": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/interfaces/IPlatformBitmapUtilities", + "k": "interface", + "s": "interfaces", + "m": { + "GetPixelAt(object, int, int)": "GetPixelAt(object, int, int)", + "GetPixelAt": "GetPixelAt(object, int, int)" + } + } + ], + "IPlatformPixelScaler": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/interfaces/IPlatformPixelScaler", + "k": "interface", + "s": "interfaces", + "m": { + "ClampPixelScalingRatio(double)": "ClampPixelScalingRatio(double)", + "ClampPixelScalingRatio": "ClampPixelScalingRatio(double)", + "ToFontPixelUnits(double)": "ToFontPixelUnits(double)", + "ToFontPixelUnits": "ToFontPixelUnits(double)", + "ToNativePixelUnits(double)": "ToNativePixelUnits(double)", + "ToNativePixelUnits": "ToNativePixelUnits(double)", + "ToPixelUnits(double)": "ToPixelUnits(double)", + "ToPixelUnits": "ToPixelUnits(double)" + } + } + ], + "IPlatformTextMetrics": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/interfaces/IPlatformTextMetrics", + "k": "interface", + "s": "interfaces", + "m": { + "ExecuteWithDispatcher(Action)": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher(Action, object)": "ExecuteWithDispatcher(Action, object)", + "MeasureText(string, string, float, bool, bool, bool, ref Rect)": "MeasureText(string, string, float, bool, bool, bool, ref Rect)", + "MeasureText": "MeasureText(string, string, float, bool, bool, bool, ref Rect)" + } + } + ], + "IPlatformUtilities": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/interfaces/IPlatformUtilities", + "k": "interface", + "s": "interfaces", + "m": { + "CreateCultureFromID(int, string)": "CreateCultureFromID(int, string)", + "CreateCultureFromID": "CreateCultureFromID(int, string)", + "GetAppWindow(object)": "GetAppWindow(object)", + "GetAppWindow": "GetAppWindow(object)", + "GetCurrentDispatchContext()": "GetCurrentDispatchContext()", + "GetCurrentDispatchContext": "GetCurrentDispatchContext()", + "InvokeOnMainThread(object, Action)": "InvokeOnMainThread(object, Action)", + "InvokeOnMainThread": "InvokeOnMainThread(object, Action)", + "InvokeOnMainThreadAfter(object, Action, long)": "InvokeOnMainThreadAfter(object, Action, long)", + "InvokeOnMainThreadAfter": "InvokeOnMainThreadAfter(object, Action, long)" + } + } + ], + "IPropertyReferenceFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IPropertyReferenceFilterExpression", + "k": "interface", + "s": "interfaces", + "m": { + "PropertyReference": "PropertyReference" + } + } + ], + "IRandomnessGenerator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IRandomnessGenerator", + "k": "interface", + "s": "interfaces", + "m": { + "Next(int, int)": "Next(int, int)", + "Next": "Next(int, int)", + "NextDouble()": "NextDouble()", + "NextDouble": "NextDouble()" + } + } + ], + "IRandomnessSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IRandomnessSource", + "k": "interface", + "s": "interfaces", + "m": { + "GetGenerator(string)": "GetGenerator(string)", + "GetGenerator": "GetGenerator(string)" + } + } + ], + "ISectionInformation": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ISectionInformation", + "k": "interface", + "s": "interfaces", + "m": { + "EndIndex": "EndIndex", + "GroupKeyProperties": "GroupKeyProperties", + "GroupKeyValues": "GroupKeyValues", + "StartIndex": "StartIndex", + "SummaryResults": "SummaryResults" + } + } + ], + "ISummaryResult": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ISummaryResult", + "k": "interface", + "s": "interfaces", + "m": { + "GroupKey": "GroupKey", + "Operand": "Operand", + "PropertyName": "PropertyName", + "ShouldDisplay": "ShouldDisplay", + "SummaryIndex": "SummaryIndex", + "Value": "Value" + } + } + ], + "ISupportsDataChangeNotifications": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ISupportsDataChangeNotifications", + "k": "interface", + "s": "interfaces", + "m": { + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)" + } + } + ], + "ISupportsExpansionChangeNotifications": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ISupportsExpansionChangeNotifications", + "k": "interface", + "s": "interfaces", + "m": { + "NotifyRowExpansionChanged(int, bool, bool)": "NotifyRowExpansionChanged(int, bool, bool)", + "NotifyRowExpansionChanged": "NotifyRowExpansionChanged(int, bool, bool)" + } + } + ], + "ItemLegend": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ItemLegend", + "k": "class", + "s": "classes", + "m": { + "ItemLegend()": "ItemLegend()", + "ItemLegend": "ItemLegend()", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty" + } + } + ], + "ItemLegendDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItemLegendDescription", + "k": "class", + "s": "classes", + "m": { + "ItemLegendDescription()": "ItemLegendDescription()", + "ItemLegendDescription": "ItemLegendDescription()", + "Height": "Height", + "Orientation": "Orientation", + "TextColor": "TextColor", + "TextStyle": "TextStyle", + "Type": "Type", + "Width": "Width" + } + } + ], + "ItemLegendDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItemLegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ItemLegendDescriptionMetadata()": "ItemLegendDescriptionMetadata()", + "ItemLegendDescriptionMetadata": "ItemLegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItemLegendDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItemLegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ItemLegendDescriptionModule()": "ItemLegendDescriptionModule()", + "ItemLegendDescriptionModule": "ItemLegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItemsSourceAction": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ItemsSourceAction", + "k": "enum", + "s": "enums" + } + ], + "ItemToolTipLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ItemToolTipLayer", + "k": "class", + "s": "classes", + "m": { + "ItemToolTipLayer()": "ItemToolTipLayer()", + "ItemToolTipLayer": "ItemToolTipLayer()", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBackgroundProperty": "ToolTipBackgroundProperty", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderBrushProperty": "ToolTipBorderBrushProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty" + } + } + ], + "ItemToolTipLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItemToolTipLayerDescription", + "k": "class", + "s": "classes", + "m": { + "ItemToolTipLayerDescription()": "ItemToolTipLayerDescription()", + "ItemToolTipLayerDescription": "ItemToolTipLayerDescription()", + "SkipUnknownValues": "SkipUnknownValues", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "ToolTipBackground": "ToolTipBackground", + "ToolTipBorderBrush": "ToolTipBorderBrush", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "Type": "Type", + "UseInterpolation": "UseInterpolation" + } + } + ], + "ItemToolTipLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItemToolTipLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ItemToolTipLayerDescriptionMetadata()": "ItemToolTipLayerDescriptionMetadata()", + "ItemToolTipLayerDescriptionMetadata": "ItemToolTipLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItemToolTipLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItemToolTipLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ItemToolTipLayerDescriptionModule()": "ItemToolTipLayerDescriptionModule()", + "ItemToolTipLayerDescriptionModule": "ItemToolTipLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItemwiseStrategyBasedIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ItemwiseStrategyBasedIndicator", + "k": "class", + "s": "classes", + "m": { + "ResolveIsItemwise()": "ResolveIsItemwise()", + "ResolveIsItemwise": "ResolveIsItemwise()" + } + } + ], + "ItemwiseStrategyBasedIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItemwiseStrategyBasedIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "ItemwiseStrategyBasedIndicatorDescription()": "ItemwiseStrategyBasedIndicatorDescription()", + "ItemwiseStrategyBasedIndicatorDescription": "ItemwiseStrategyBasedIndicatorDescription()", + "Type": "Type" + } + } + ], + "ItemwiseStrategyBasedIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItemwiseStrategyBasedIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ItemwiseStrategyBasedIndicatorDescriptionMetadata()": "ItemwiseStrategyBasedIndicatorDescriptionMetadata()", + "ItemwiseStrategyBasedIndicatorDescriptionMetadata": "ItemwiseStrategyBasedIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ItfConverter": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ItfConverter", + "k": "class", + "s": "classes", + "m": { + "ItfConverter()": "ItfConverter()", + "ItfConverter": "ItfConverter()", + "OnImportCompleted(AsyncCompletedEventArgs)": "OnImportCompleted(AsyncCompletedEventArgs)", + "OnImportCompleted": "OnImportCompleted(AsyncCompletedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Source": "Source", + "TriangulationSource": "TriangulationSource", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ITickProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ITickProvider", + "k": "interface", + "s": "interfaces", + "m": { + "RequestFrame(int)": "RequestFrame(int)", + "RequestFrame": "RequestFrame(int)", + "SetupTicking(Action)": "SetupTicking(Action)", + "SetupTicking": "SetupTicking(Action)", + "TeardownTicking(int)": "TeardownTicking(int)", + "TeardownTicking": "TeardownTicking(int)" + } + } + ], + "ITileGenerator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/ITileGenerator", + "k": "interface", + "s": "interfaces", + "m": { + "CancelTile(int, int, int)": "CancelTile(int, int, int)", + "CancelTile": "CancelTile(int, int, int)", + "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)": "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)", + "GetTile": "GetTile(int, int, int, TileImageCreated, TileImageCreating, TileImageZoomChanging)" + } + } + ], + "IToolbarContextAccessor": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IToolbarContextAccessor", + "k": "interface", + "s": "interfaces", + "m": { + "GetContextValue(string, ToolContextValueType)": "GetContextValue(string, ToolContextValueType)", + "GetContextValue": "GetContextValue(string, ToolContextValueType)", + "GetInternalAccessor()": "GetInternalAccessor()", + "GetInternalAccessor": "GetInternalAccessor()", + "SetContextValue(string, ToolContextValueType, object)": "SetContextValue(string, ToolContextValueType, object)", + "SetContextValue": "SetContextValue(string, ToolContextValueType, object)" + } + } + ], + "IToolbarTarget": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IToolbarTarget", + "k": "interface", + "s": "interfaces", + "m": { + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "CommandCompleted": "CommandCompleted", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "InvalidateActions": "InvalidateActions", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)" + } + } + ], + "IToolbarVisualModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/interfaces/IToolbarVisualModelExport", + "k": "interface", + "s": "interfaces", + "m": { + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "IVisualData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/interfaces/IVisualData", + "k": "interface", + "s": "interfaces", + "m": { + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "JAVADefaultOverloadOnNullCollisionAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVADefaultOverloadOnNullCollisionAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVADefaultOverloadOnNullCollisionAttribute()": "JAVADefaultOverloadOnNullCollisionAttribute()", + "JAVADefaultOverloadOnNullCollisionAttribute": "JAVADefaultOverloadOnNullCollisionAttribute()" + } + } + ], + "JAVAEmitIgnoreAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVAEmitIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAEmitIgnoreAttribute()": "JAVAEmitIgnoreAttribute()", + "JAVAEmitIgnoreAttribute": "JAVAEmitIgnoreAttribute()" + } + } + ], + "JAVAEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVAEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAEmitIgnoreTypeAttribute()": "JAVAEmitIgnoreTypeAttribute()", + "JAVAEmitIgnoreTypeAttribute": "JAVAEmitIgnoreTypeAttribute()" + } + } + ], + "JAVAGlobalMemberAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVAGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAGlobalMemberAttribute()": "JAVAGlobalMemberAttribute()", + "JAVAGlobalMemberAttribute": "JAVAGlobalMemberAttribute()" + } + } + ], + "JAVAIgnoreAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVAIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAIgnoreAttribute()": "JAVAIgnoreAttribute()", + "JAVAIgnoreAttribute": "JAVAIgnoreAttribute()" + } + } + ], + "JAVAInlineItemAccessAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVAInlineItemAccessAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAInlineItemAccessAttribute()": "JAVAInlineItemAccessAttribute()", + "JAVAInlineItemAccessAttribute": "JAVAInlineItemAccessAttribute()", + "JAVAInlineItemAccessAttribute(string)": "JAVAInlineItemAccessAttribute(string)" + } + } + ], + "JAVAInlinePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVAInlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAInlinePropertyAttribute()": "JAVAInlinePropertyAttribute()", + "JAVAInlinePropertyAttribute": "JAVAInlinePropertyAttribute()" + } + } + ], + "JAVAKeepOriginalNameAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVAKeepOriginalNameAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAKeepOriginalNameAttribute()": "JAVAKeepOriginalNameAttribute()", + "JAVAKeepOriginalNameAttribute": "JAVAKeepOriginalNameAttribute()" + } + } + ], + "JAVALiteralStringAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVALiteralStringAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVALiteralStringAttribute()": "JAVALiteralStringAttribute()", + "JAVALiteralStringAttribute": "JAVALiteralStringAttribute()" + } + } + ], + "JAVANativeMethodAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVANativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVANativeMethodAttribute(string)": "JAVANativeMethodAttribute(string)", + "JAVANativeMethodAttribute": "JAVANativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "JAVANativePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVANativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVANativePropertyAttribute()": "JAVANativePropertyAttribute()", + "JAVANativePropertyAttribute": "JAVANativePropertyAttribute()" + } + } + ], + "JAVANativeTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVANativeTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVANativeTypeAttribute()": "JAVANativeTypeAttribute()", + "JAVANativeTypeAttribute": "JAVANativeTypeAttribute()" + } + } + ], + "JAVAReadOnlyStreamAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVAReadOnlyStreamAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVAReadOnlyStreamAttribute()": "JAVAReadOnlyStreamAttribute()", + "JAVAReadOnlyStreamAttribute": "JAVAReadOnlyStreamAttribute()" + } + } + ], + "JAVASubstituteTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVASubstituteTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVASubstituteTypeAttribute(Type)": "JAVASubstituteTypeAttribute(Type)", + "JAVASubstituteTypeAttribute": "JAVASubstituteTypeAttribute(Type)", + "Type": "Type" + } + } + ], + "JAVASubstituteValueAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JAVASubstituteValueAttribute", + "k": "class", + "s": "classes", + "m": { + "JAVASubstituteValueAttribute(object)": "JAVASubstituteValueAttribute(object)", + "JAVASubstituteValueAttribute": "JAVASubstituteValueAttribute(object)", + "AllowCaseLabels": "AllowCaseLabels", + "Value": "Value" + } + } + ], + "JSDefaultOverloadOnNullCollisionAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSDefaultOverloadOnNullCollisionAttribute", + "k": "class", + "s": "classes", + "m": { + "JSDefaultOverloadOnNullCollisionAttribute()": "JSDefaultOverloadOnNullCollisionAttribute()", + "JSDefaultOverloadOnNullCollisionAttribute": "JSDefaultOverloadOnNullCollisionAttribute()" + } + } + ], + "JSEmitIgnoreAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSEmitIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "JSEmitIgnoreAttribute()": "JSEmitIgnoreAttribute()", + "JSEmitIgnoreAttribute": "JSEmitIgnoreAttribute()" + } + } + ], + "JSEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JSEmitIgnoreTypeAttribute()": "JSEmitIgnoreTypeAttribute()", + "JSEmitIgnoreTypeAttribute": "JSEmitIgnoreTypeAttribute()" + } + } + ], + "JSForceWriteConstantValueAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSForceWriteConstantValueAttribute", + "k": "class", + "s": "classes", + "m": { + "JSForceWriteConstantValueAttribute()": "JSForceWriteConstantValueAttribute()", + "JSForceWriteConstantValueAttribute": "JSForceWriteConstantValueAttribute()" + } + } + ], + "JSGlobalMemberAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "JSGlobalMemberAttribute()": "JSGlobalMemberAttribute()", + "JSGlobalMemberAttribute": "JSGlobalMemberAttribute()" + } + } + ], + "JSIgnoreAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "JSIgnoreAttribute()": "JSIgnoreAttribute()", + "JSIgnoreAttribute": "JSIgnoreAttribute()" + } + } + ], + "JSInlineItemAccessAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSInlineItemAccessAttribute", + "k": "class", + "s": "classes", + "m": { + "JSInlineItemAccessAttribute()": "JSInlineItemAccessAttribute()", + "JSInlineItemAccessAttribute": "JSInlineItemAccessAttribute()", + "JSInlineItemAccessAttribute(string)": "JSInlineItemAccessAttribute(string)" + } + } + ], + "JSInlinePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSInlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "JSInlinePropertyAttribute()": "JSInlinePropertyAttribute()", + "JSInlinePropertyAttribute": "JSInlinePropertyAttribute()" + } + } + ], + "JSKeepOriginalNameAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSKeepOriginalNameAttribute", + "k": "class", + "s": "classes", + "m": { + "JSKeepOriginalNameAttribute()": "JSKeepOriginalNameAttribute()", + "JSKeepOriginalNameAttribute": "JSKeepOriginalNameAttribute()" + } + } + ], + "JSLiteralStringAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSLiteralStringAttribute", + "k": "class", + "s": "classes", + "m": { + "JSLiteralStringAttribute()": "JSLiteralStringAttribute()", + "JSLiteralStringAttribute": "JSLiteralStringAttribute()" + } + } + ], + "JSNativeMethodAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSNativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "JSNativeMethodAttribute(string)": "JSNativeMethodAttribute(string)", + "JSNativeMethodAttribute": "JSNativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "JSNativePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSNativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "JSNativePropertyAttribute()": "JSNativePropertyAttribute()", + "JSNativePropertyAttribute": "JSNativePropertyAttribute()" + } + } + ], + "JSNativeTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSNativeTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JSNativeTypeAttribute()": "JSNativeTypeAttribute()", + "JSNativeTypeAttribute": "JSNativeTypeAttribute()" + } + } + ], + "JSReadOnlyStreamAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSReadOnlyStreamAttribute", + "k": "class", + "s": "classes", + "m": { + "JSReadOnlyStreamAttribute()": "JSReadOnlyStreamAttribute()", + "JSReadOnlyStreamAttribute": "JSReadOnlyStreamAttribute()" + } + } + ], + "JSSubstituteTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSSubstituteTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "JSSubstituteTypeAttribute(Type)": "JSSubstituteTypeAttribute(Type)", + "JSSubstituteTypeAttribute": "JSSubstituteTypeAttribute(Type)", + "Type": "Type" + } + } + ], + "JSSubstituteValueAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/JSSubstituteValueAttribute", + "k": "class", + "s": "classes", + "m": { + "JSSubstituteValueAttribute(object)": "JSSubstituteValueAttribute(object)", + "JSSubstituteValueAttribute": "JSSubstituteValueAttribute(object)", + "AllowCaseLabels": "AllowCaseLabels", + "Value": "Value" + } + } + ], + "KeepOriginalNameAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/KeepOriginalNameAttribute", + "k": "class", + "s": "classes", + "m": { + "KeepOriginalNameAttribute()": "KeepOriginalNameAttribute()", + "KeepOriginalNameAttribute": "KeepOriginalNameAttribute()" + } + } + ], + "KeyEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/KeyEventArgs", + "k": "class", + "s": "classes", + "m": { + "KeyEventArgs(int, bool, bool, bool, object)": "KeyEventArgs(int, bool, bool, bool, object)", + "KeyEventArgs": "KeyEventArgs(int, bool, bool, bool, object)", + "Alt": "Alt", + "Ctrl": "Ctrl", + "DefaultPrevented": "DefaultPrevented", + "KeyCode": "KeyCode", + "OriginalEvent": "OriginalEvent", + "PreventDefault()": "PreventDefault()", + "PreventDefault": "PreventDefault()", + "Shift": "Shift", + "StopPropagation()": "StopPropagation()", + "StopPropagation": "StopPropagation()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "KeyEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/KeyEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "KeyEventArgsDescription()": "KeyEventArgsDescription()", + "KeyEventArgsDescription": "KeyEventArgsDescription()", + "Type": "Type" + } + } + ], + "KeyEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/KeyEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "KeyEventArgsDescriptionMetadata()": "KeyEventArgsDescriptionMetadata()", + "KeyEventArgsDescriptionMetadata": "KeyEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "KotlinEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/KotlinEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "KotlinEmitIgnoreTypeAttribute()": "KotlinEmitIgnoreTypeAttribute()", + "KotlinEmitIgnoreTypeAttribute": "KotlinEmitIgnoreTypeAttribute()" + } + } + ], + "KotlinInlinePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/KotlinInlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "KotlinInlinePropertyAttribute()": "KotlinInlinePropertyAttribute()", + "KotlinInlinePropertyAttribute": "KotlinInlinePropertyAttribute()" + } + } + ], + "KotlinLiteralUnwrapAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/KotlinLiteralUnwrapAttribute", + "k": "class", + "s": "classes", + "m": { + "KotlinLiteralUnwrapAttribute()": "KotlinLiteralUnwrapAttribute()", + "KotlinLiteralUnwrapAttribute": "KotlinLiteralUnwrapAttribute()" + } + } + ], + "LabelAppearanceData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelAppearanceData", + "k": "class", + "s": "classes", + "m": { + "LabelAppearanceData()": "LabelAppearanceData()", + "LabelAppearanceData": "LabelAppearanceData()", + "Angle": "Angle", + "Font": "Font", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStretch": "FontStretch", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HorizontalAlignment": "HorizontalAlignment", + "LabelBrush": "LabelBrush", + "LabelBrushExtended": "LabelBrushExtended", + "MarginBottom": "MarginBottom", + "MarginLeft": "MarginLeft", + "MarginRight": "MarginRight", + "MarginTop": "MarginTop", + "Opacity": "Opacity", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextAlignment": "TextAlignment", + "TextPosition": "TextPosition", + "TextWrapping": "TextWrapping", + "VerticalAlignment": "VerticalAlignment", + "Visibility": "Visibility" + } + } + ], + "LabelAppearanceDataList": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelAppearanceDataList", + "k": "class", + "s": "classes", + "m": { + "LabelAppearanceDataList()": "LabelAppearanceDataList()", + "LabelAppearanceDataList": "LabelAppearanceDataList()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "LabelClickEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LabelClickEventArgsDescription()": "LabelClickEventArgsDescription()", + "LabelClickEventArgsDescription": "LabelClickEventArgsDescription()", + "AllowSliceClick": "AllowSliceClick", + "Type": "Type" + } + } + ], + "LabelClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LabelClickEventArgsDescriptionMetadata()": "LabelClickEventArgsDescriptionMetadata()", + "LabelClickEventArgsDescriptionMetadata": "LabelClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LabelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelDescription", + "k": "class", + "s": "classes", + "m": { + "LabelDescription()": "LabelDescription()", + "LabelDescription": "LabelDescription()", + "ActualDensity": "ActualDensity", + "ActualHighlightTextColor": "ActualHighlightTextColor", + "ActualHoverHighlightTextColor": "ActualHoverHighlightTextColor", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualTextColor": "ActualTextColor", + "AlignItems": "AlignItems", + "AlignSelf": "AlignSelf", + "AriaLabel": "AriaLabel", + "BaseTheme": "BaseTheme", + "Density": "Density", + "Disabled": "Disabled", + "Display": "Display", + "FlexDirection": "FlexDirection", + "FlexGrow": "FlexGrow", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "For": "For", + "HighlightTextColor": "HighlightTextColor", + "HoverHighlightTextColor": "HoverHighlightTextColor", + "HoverTextColor": "HoverTextColor", + "Id": "Id", + "IsHover": "IsHover", + "TabIndex": "TabIndex", + "Text": "Text", + "TextColor": "TextColor", + "Type": "Type", + "Value": "Value" + } + } + ], + "LabelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LabelDescriptionMetadata()": "LabelDescriptionMetadata()", + "LabelDescriptionMetadata": "LabelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LabelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LabelDescriptionModule()": "LabelDescriptionModule()", + "LabelDescriptionModule": "LabelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LabelFormatOverrideEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LabelFormatOverrideEventArgs", + "k": "class", + "s": "classes", + "m": { + "LabelFormatOverrideEventArgs()": "LabelFormatOverrideEventArgs()", + "LabelFormatOverrideEventArgs": "LabelFormatOverrideEventArgs()", + "DateTime": "DateTime", + "Format": "Format", + "Label": "Label", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LabelFormatOverrideEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelFormatOverrideEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LabelFormatOverrideEventArgsDescription()": "LabelFormatOverrideEventArgsDescription()", + "LabelFormatOverrideEventArgsDescription": "LabelFormatOverrideEventArgsDescription()", + "DateTime": "DateTime", + "Format": "Format", + "Label": "Label", + "Type": "Type" + } + } + ], + "LabelFormatOverrideEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelFormatOverrideEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LabelFormatOverrideEventArgsDescriptionMetadata()": "LabelFormatOverrideEventArgsDescriptionMetadata()", + "LabelFormatOverrideEventArgsDescriptionMetadata": "LabelFormatOverrideEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LabelShiftType": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/LabelShiftType", + "k": "enum", + "s": "enums" + } + ], + "LabelsPosition": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/LabelsPosition", + "k": "enum", + "s": "enums" + } + ], + "LabelVisualModelExport": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LabelVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "LabelVisualModelExport()": "LabelVisualModelExport()", + "LabelVisualModelExport": "LabelVisualModelExport()", + "Height": "Height", + "IsWrapEnabled": "IsWrapEnabled", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "Top": "Top", + "Width": "Width" + } + }, + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/LabelVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "LabelVisualModelExport()": "LabelVisualModelExport()", + "LabelVisualModelExport": "LabelVisualModelExport()", + "ActualTextColor": "ActualTextColor", + "AlignItems": "AlignItems", + "Display": "Display", + "FlexDirection": "FlexDirection", + "FlexGrow": "FlexGrow", + "IsDisabled": "IsDisabled", + "IsHover": "IsHover", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Value": "Value" + } + } + ], + "LastMonthExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastMonthExpression", + "k": "class", + "s": "classes", + "m": { + "LastMonthExpression(FilterExpression)": "LastMonthExpression(FilterExpression)", + "LastMonthExpression": "LastMonthExpression(FilterExpression)", + "LastMonthExpression(string)": "LastMonthExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastMonthExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastMonthExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastMonthExpressionDescription()": "LastMonthExpressionDescription()", + "LastMonthExpressionDescription": "LastMonthExpressionDescription()", + "Type": "Type" + } + } + ], + "LastMonthExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastMonthExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastMonthExpressionDescriptionMetadata()": "LastMonthExpressionDescriptionMetadata()", + "LastMonthExpressionDescriptionMetadata": "LastMonthExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastQuarterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastQuarterExpression", + "k": "class", + "s": "classes", + "m": { + "LastQuarterExpression(FilterExpression)": "LastQuarterExpression(FilterExpression)", + "LastQuarterExpression": "LastQuarterExpression(FilterExpression)", + "LastQuarterExpression(string)": "LastQuarterExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastQuarterExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastQuarterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastQuarterExpressionDescription()": "LastQuarterExpressionDescription()", + "LastQuarterExpressionDescription": "LastQuarterExpressionDescription()", + "Type": "Type" + } + } + ], + "LastQuarterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastQuarterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastQuarterExpressionDescriptionMetadata()": "LastQuarterExpressionDescriptionMetadata()", + "LastQuarterExpressionDescriptionMetadata": "LastQuarterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastSevenDaysExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastSevenDaysExpression", + "k": "class", + "s": "classes", + "m": { + "LastSevenDaysExpression(FilterExpression)": "LastSevenDaysExpression(FilterExpression)", + "LastSevenDaysExpression": "LastSevenDaysExpression(FilterExpression)", + "LastSevenDaysExpression(string)": "LastSevenDaysExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastSevenDaysExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastSevenDaysExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastSevenDaysExpressionDescription()": "LastSevenDaysExpressionDescription()", + "LastSevenDaysExpressionDescription": "LastSevenDaysExpressionDescription()", + "Type": "Type" + } + } + ], + "LastSevenDaysExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastSevenDaysExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastSevenDaysExpressionDescriptionMetadata()": "LastSevenDaysExpressionDescriptionMetadata()", + "LastSevenDaysExpressionDescriptionMetadata": "LastSevenDaysExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastThirtyDaysExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastThirtyDaysExpression", + "k": "class", + "s": "classes", + "m": { + "LastThirtyDaysExpression(FilterExpression)": "LastThirtyDaysExpression(FilterExpression)", + "LastThirtyDaysExpression": "LastThirtyDaysExpression(FilterExpression)", + "LastThirtyDaysExpression(string)": "LastThirtyDaysExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastThirtyDaysExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastThirtyDaysExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastThirtyDaysExpressionDescription()": "LastThirtyDaysExpressionDescription()", + "LastThirtyDaysExpressionDescription": "LastThirtyDaysExpressionDescription()", + "Type": "Type" + } + } + ], + "LastThirtyDaysExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastThirtyDaysExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastThirtyDaysExpressionDescriptionMetadata()": "LastThirtyDaysExpressionDescriptionMetadata()", + "LastThirtyDaysExpressionDescriptionMetadata": "LastThirtyDaysExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastThreeSixtyFiveDaysExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastThreeSixtyFiveDaysExpression", + "k": "class", + "s": "classes", + "m": { + "LastThreeSixtyFiveDaysExpression(FilterExpression)": "LastThreeSixtyFiveDaysExpression(FilterExpression)", + "LastThreeSixtyFiveDaysExpression": "LastThreeSixtyFiveDaysExpression(FilterExpression)", + "LastThreeSixtyFiveDaysExpression(string)": "LastThreeSixtyFiveDaysExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastThreeSixtyFiveDaysExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastThreeSixtyFiveDaysExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastThreeSixtyFiveDaysExpressionDescription()": "LastThreeSixtyFiveDaysExpressionDescription()", + "LastThreeSixtyFiveDaysExpressionDescription": "LastThreeSixtyFiveDaysExpressionDescription()", + "Type": "Type" + } + } + ], + "LastThreeSixtyFiveDaysExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastThreeSixtyFiveDaysExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastThreeSixtyFiveDaysExpressionDescriptionMetadata()": "LastThreeSixtyFiveDaysExpressionDescriptionMetadata()", + "LastThreeSixtyFiveDaysExpressionDescriptionMetadata": "LastThreeSixtyFiveDaysExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastWeekExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastWeekExpression", + "k": "class", + "s": "classes", + "m": { + "LastWeekExpression(FilterExpression)": "LastWeekExpression(FilterExpression)", + "LastWeekExpression": "LastWeekExpression(FilterExpression)", + "LastWeekExpression(string)": "LastWeekExpression(string)", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastWeekExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastWeekExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastWeekExpressionDescription()": "LastWeekExpressionDescription()", + "LastWeekExpressionDescription": "LastWeekExpressionDescription()", + "Type": "Type" + } + } + ], + "LastWeekExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastWeekExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastWeekExpressionDescriptionMetadata()": "LastWeekExpressionDescriptionMetadata()", + "LastWeekExpressionDescriptionMetadata": "LastWeekExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LastYearExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastYearExpression", + "k": "class", + "s": "classes", + "m": { + "LastYearExpression(FilterExpression)": "LastYearExpression(FilterExpression)", + "LastYearExpression": "LastYearExpression(FilterExpression)", + "LastYearExpression(string)": "LastYearExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "LastYearExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastYearExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LastYearExpressionDescription()": "LastYearExpressionDescription()", + "LastYearExpressionDescription": "LastYearExpressionDescription()", + "Type": "Type" + } + } + ], + "LastYearExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LastYearExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LastYearExpressionDescriptionMetadata()": "LastYearExpressionDescriptionMetadata()", + "LastYearExpressionDescriptionMetadata": "LastYearExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LayoutAction": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/LayoutAction", + "k": "enum", + "s": "enums" + } + ], + "LayoutPrimaryKeyValue": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/LayoutPrimaryKeyValue", + "k": "class", + "s": "classes", + "m": { + "LayoutPrimaryKeyValue(object)": "LayoutPrimaryKeyValue(object)", + "LayoutPrimaryKeyValue": "LayoutPrimaryKeyValue(object)", + "LayoutPrimaryKeyValue(object[])": "LayoutPrimaryKeyValue(object[])", + "LayoutPrimaryKeyValue(string[], object[])": "LayoutPrimaryKeyValue(string[], object[])", + "CreateIdentityKey(object)": "CreateIdentityKey(object)", + "CreateIdentityKey": "CreateIdentityKey(object)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Key": "Key", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LayoutPrimaryKeyValueDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LayoutPrimaryKeyValueDescription", + "k": "class", + "s": "classes", + "m": { + "LayoutPrimaryKeyValueDescription()": "LayoutPrimaryKeyValueDescription()", + "LayoutPrimaryKeyValueDescription": "LayoutPrimaryKeyValueDescription()", + "Key": "Key", + "Type": "Type", + "Value": "Value" + } + } + ], + "LayoutPrimaryKeyValueDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LayoutPrimaryKeyValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LayoutPrimaryKeyValueDescriptionMetadata()": "LayoutPrimaryKeyValueDescriptionMetadata()", + "LayoutPrimaryKeyValueDescriptionMetadata": "LayoutPrimaryKeyValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LayoutPrimaryKeyValueDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LayoutPrimaryKeyValueDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LayoutPrimaryKeyValueDescriptionModule()": "LayoutPrimaryKeyValueDescriptionModule()", + "LayoutPrimaryKeyValueDescriptionModule": "LayoutPrimaryKeyValueDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LayoutSelectedItemsCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/LayoutSelectedItemsCollection", + "k": "class", + "s": "classes", + "m": { + "LayoutSelectedItemsCollection()": "LayoutSelectedItemsCollection()", + "LayoutSelectedItemsCollection": "LayoutSelectedItemsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LayoutSelectedKeysCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/LayoutSelectedKeysCollection", + "k": "class", + "s": "classes", + "m": { + "LayoutSelectedKeysCollection()": "LayoutSelectedKeysCollection()", + "LayoutSelectedKeysCollection": "LayoutSelectedKeysCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LeaderLineType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/LeaderLineType", + "k": "enum", + "s": "enums" + } + ], + "Legend": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Legend", + "k": "class", + "s": "classes", + "m": { + "Legend()": "Legend()", + "Legend": "Legend()", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty" + } + } + ], + "LegendBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LegendBase", + "k": "class", + "s": "classes", + "m": { + "ChartOwner": "ChartOwner", + "ChartOwnerProperty": "ChartOwnerProperty", + "CustomLegendContainer": "CustomLegendContainer", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FlushTextContentChangedCheck()": "FlushTextContentChangedCheck()", + "FlushTextContentChangedCheck": "FlushTextContentChangedCheck()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "IsFinancial": "IsFinancial", + "IsHorizontal": "IsHorizontal", + "IsItemwise": "IsItemwise", + "IsItemwiseProperty": "IsItemwiseProperty", + "IsScale": "IsScale", + "IsScaleProperty": "IsScaleProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "SeriesOwner": "SeriesOwner", + "SeriesOwnerProperty": "SeriesOwnerProperty", + "SimulateClick(Point)": "SimulateClick(Point)", + "SimulateClick": "SimulateClick(Point)", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "SimulateMouseLeave()": "SimulateMouseLeave()", + "SimulateMouseLeave": "SimulateMouseLeave()", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LegendBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendBaseDescription", + "k": "class", + "s": "classes", + "m": { + "LegendBaseDescription()": "LegendBaseDescription()", + "LegendBaseDescription": "LegendBaseDescription()", + "Background": "Background", + "LegendItemMouseEnterRef": "LegendItemMouseEnterRef", + "LegendItemMouseLeaveRef": "LegendItemMouseLeaveRef", + "LegendItemMouseLeftButtonDownRef": "LegendItemMouseLeftButtonDownRef", + "LegendItemMouseLeftButtonUpRef": "LegendItemMouseLeftButtonUpRef", + "LegendItemMouseMoveRef": "LegendItemMouseMoveRef", + "LegendTextContentChangedRef": "LegendTextContentChangedRef", + "Type": "Type" + } + } + ], + "LegendBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendBaseDescriptionMetadata()": "LegendBaseDescriptionMetadata()", + "LegendBaseDescriptionMetadata": "LegendBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendDescription", + "k": "class", + "s": "classes", + "m": { + "LegendDescription()": "LegendDescription()", + "LegendDescription": "LegendDescription()", + "Height": "Height", + "Orientation": "Orientation", + "TextColor": "TextColor", + "TextStyle": "TextStyle", + "Type": "Type", + "Width": "Width" + } + } + ], + "LegendDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendDescriptionMetadata()": "LegendDescriptionMetadata()", + "LegendDescriptionMetadata": "LegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LegendDescriptionModule()": "LegendDescriptionModule()", + "LegendDescriptionModule": "LegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendEmptyValuesMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/LegendEmptyValuesMode", + "k": "enum", + "s": "enums" + } + ], + "LegendHighlightingMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/LegendHighlightingMode", + "k": "enum", + "s": "enums" + } + ], + "LegendItemAdapter": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LegendItemAdapter", + "k": "class", + "s": "classes", + "m": { + "LegendItemAdapter()": "LegendItemAdapter()", + "LegendItemAdapter": "LegendItemAdapter()", + "GetView(DataContext, FrameworkElement, CustomContentUpdateInfo)": "GetView(DataContext, FrameworkElement, CustomContentUpdateInfo)", + "GetView": "GetView(DataContext, FrameworkElement, CustomContentUpdateInfo)", + "GetVisualDataForKey(string)": "GetVisualDataForKey(string)", + "GetVisualDataForKey": "GetVisualDataForKey(string)" + } + } + ], + "LegendItemBadgeMarkerSizeScaling": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/LegendItemBadgeMarkerSizeScaling", + "k": "enum", + "s": "enums" + } + ], + "LegendItemBadgeMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/LegendItemBadgeMode", + "k": "enum", + "s": "enums" + } + ], + "LegendItemBadgeShape": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/LegendItemBadgeShape", + "k": "enum", + "s": "enums" + } + ], + "LegendItemVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LegendItemVisualData", + "k": "class", + "s": "classes", + "m": { + "LegendItemVisualData()": "LegendItemVisualData()", + "LegendItemVisualData": "LegendItemVisualData()", + "Appearance": "Appearance", + "BadgeBounds": "BadgeBounds", + "Bounds": "Bounds", + "Label": "Label", + "LabelAppearance": "LabelAppearance", + "LabelBounds": "LabelBounds", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "LegendMouseButtonEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendMouseButtonEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LegendMouseButtonEventArgsDescription()": "LegendMouseButtonEventArgsDescription()", + "LegendMouseButtonEventArgsDescription": "LegendMouseButtonEventArgsDescription()", + "Handled": "Handled", + "ItemRef": "ItemRef", + "LegendItemRef": "LegendItemRef", + "Type": "Type" + } + } + ], + "LegendMouseButtonEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendMouseButtonEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendMouseButtonEventArgsDescriptionMetadata()": "LegendMouseButtonEventArgsDescriptionMetadata()", + "LegendMouseButtonEventArgsDescriptionMetadata": "LegendMouseButtonEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendMouseEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendMouseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LegendMouseEventArgsDescription()": "LegendMouseEventArgsDescription()", + "LegendMouseEventArgsDescription": "LegendMouseEventArgsDescription()", + "ItemRef": "ItemRef", + "LegendItemRef": "LegendItemRef", + "Type": "Type" + } + } + ], + "LegendMouseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendMouseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendMouseEventArgsDescriptionMetadata()": "LegendMouseEventArgsDescriptionMetadata()", + "LegendMouseEventArgsDescriptionMetadata": "LegendMouseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendOrientation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/LegendOrientation", + "k": "enum", + "s": "enums" + } + ], + "LegendSettings": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LegendSettings", + "k": "class", + "s": "classes", + "m": { + "LegendSettings()": "LegendSettings()", + "LegendSettings": "LegendSettings()", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "IsDirty": "IsDirty", + "IsHorizontal": "IsHorizontal", + "TextColor": "TextColor" + } + } + ], + "LegendTextContentChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendTextContentChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LegendTextContentChangedEventArgsDescription()": "LegendTextContentChangedEventArgsDescription()", + "LegendTextContentChangedEventArgsDescription": "LegendTextContentChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "LegendTextContentChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LegendTextContentChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LegendTextContentChangedEventArgsDescriptionMetadata()": "LegendTextContentChangedEventArgsDescriptionMetadata()", + "LegendTextContentChangedEventArgsDescriptionMetadata": "LegendTextContentChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LegendVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LegendVisualData", + "k": "class", + "s": "classes", + "m": { + "LegendVisualData()": "LegendVisualData()", + "LegendVisualData": "LegendVisualData()", + "Height": "Height", + "Items": "Items", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "LegendVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LegendVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LegendVisualDataList()": "LegendVisualDataList()", + "LegendVisualDataList": "LegendVisualDataList()" + } + } + ], + "LevelOfDetailResponseModel": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/LevelOfDetailResponseModel", + "k": "class", + "s": "classes", + "m": { + "LevelOfDetailResponseModel()": "LevelOfDetailResponseModel()", + "LevelOfDetailResponseModel": "LevelOfDetailResponseModel()", + "Level": "Level", + "Resolution": "Resolution", + "Scale": "Scale" + } + } + ], + "LinearContourValueResolver": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LinearContourValueResolver", + "k": "class", + "s": "classes", + "m": { + "LinearContourValueResolver()": "LinearContourValueResolver()", + "LinearContourValueResolver": "LinearContourValueResolver()", + "ValueCount": "ValueCount" + } + } + ], + "LinearContourValueResolverDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearContourValueResolverDescription", + "k": "class", + "s": "classes", + "m": { + "LinearContourValueResolverDescription()": "LinearContourValueResolverDescription()", + "LinearContourValueResolverDescription": "LinearContourValueResolverDescription()", + "Type": "Type", + "ValueCount": "ValueCount" + } + } + ], + "LinearContourValueResolverDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearContourValueResolverDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LinearContourValueResolverDescriptionMetadata()": "LinearContourValueResolverDescriptionMetadata()", + "LinearContourValueResolverDescriptionMetadata": "LinearContourValueResolverDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearContourValueResolverDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearContourValueResolverDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearContourValueResolverDescriptionModule()": "LinearContourValueResolverDescriptionModule()", + "LinearContourValueResolverDescriptionModule": "LinearContourValueResolverDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGaugeCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeCoreDescriptionModule()": "LinearGaugeCoreDescriptionModule()", + "LinearGaugeCoreDescriptionModule": "LinearGaugeCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeDashboardTileDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGaugeDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDashboardTileDescriptionModule()": "LinearGaugeDashboardTileDescriptionModule()", + "LinearGaugeDashboardTileDescriptionModule": "LinearGaugeDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/LinearGaugeDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDashboardTileFeature()": "LinearGaugeDashboardTileFeature()", + "LinearGaugeDashboardTileFeature": "LinearGaugeDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "LinearGaugeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGaugeDescription", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDescription()": "LinearGaugeDescription()", + "LinearGaugeDescription": "LinearGaugeDescription()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AlignLabelRef": "AlignLabelRef", + "Background": "Background", + "BackingBrush": "BackingBrush", + "BackingInnerExtent": "BackingInnerExtent", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOutline": "BackingOutline", + "BackingStrokeThickness": "BackingStrokeThickness", + "Font": "Font", + "FontBrush": "FontBrush", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "Height": "Height", + "HighlightValue": "HighlightValue", + "HighlightValueChangedRef": "HighlightValueChangedRef", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueOpacity": "HighlightValueOpacity", + "Interval": "Interval", + "IsHighlightNeedleDraggingEnabled": "IsHighlightNeedleDraggingEnabled", + "IsNeedleDraggingEnabled": "IsNeedleDraggingEnabled", + "IsScaleInverted": "IsScaleInverted", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInterval": "LabelInterval", + "LabelsPostInitial": "LabelsPostInitial", + "LabelsPreTerminal": "LabelsPreTerminal", + "LabelsVisible": "LabelsVisible", + "MaximumValue": "MaximumValue", + "MergeViewports": "MergeViewports", + "MinimumValue": "MinimumValue", + "MinorTickBrush": "MinorTickBrush", + "MinorTickCount": "MinorTickCount", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "NeedleBreadth": "NeedleBreadth", + "NeedleBrush": "NeedleBrush", + "NeedleInnerBaseWidth": "NeedleInnerBaseWidth", + "NeedleInnerExtent": "NeedleInnerExtent", + "NeedleInnerPointExtent": "NeedleInnerPointExtent", + "NeedleInnerPointWidth": "NeedleInnerPointWidth", + "NeedleName": "NeedleName", + "NeedleOuterBaseWidth": "NeedleOuterBaseWidth", + "NeedleOuterExtent": "NeedleOuterExtent", + "NeedleOuterPointExtent": "NeedleOuterPointExtent", + "NeedleOuterPointWidth": "NeedleOuterPointWidth", + "NeedleOutline": "NeedleOutline", + "NeedleShape": "NeedleShape", + "NeedleStrokeThickness": "NeedleStrokeThickness", + "Orientation": "Orientation", + "PixelScalingRatio": "PixelScalingRatio", + "RangeBrushes": "RangeBrushes", + "RangeInnerExtent": "RangeInnerExtent", + "RangeOuterExtent": "RangeOuterExtent", + "RangeOutlines": "RangeOutlines", + "Ranges": "Ranges", + "ScaleBrush": "ScaleBrush", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleInnerExtent": "ScaleInnerExtent", + "ScaleOuterExtent": "ScaleOuterExtent", + "ScaleOutline": "ScaleOutline", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleStrokeThickness": "ScaleStrokeThickness", + "ShowToolTip": "ShowToolTip", + "ShowToolTipTimeout": "ShowToolTipTimeout", + "TickBrush": "TickBrush", + "TickEndExtent": "TickEndExtent", + "TickStartExtent": "TickStartExtent", + "TickStrokeThickness": "TickStrokeThickness", + "TicksPostInitial": "TicksPostInitial", + "TicksPreTerminal": "TicksPreTerminal", + "TransitionDuration": "TransitionDuration", + "TransitionProgress": "TransitionProgress", + "Type": "Type", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef", + "Width": "Width" + } + } + ], + "LinearGaugeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGaugeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDescriptionMetadata()": "LinearGaugeDescriptionMetadata()", + "LinearGaugeDescriptionMetadata": "LinearGaugeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGaugeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeDescriptionModule()": "LinearGaugeDescriptionModule()", + "LinearGaugeDescriptionModule": "LinearGaugeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGaugeVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGaugeVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGaugeVisualData()": "LinearGaugeVisualData()", + "LinearGaugeVisualData": "LinearGaugeVisualData()", + "HighlightNeedle": "HighlightNeedle", + "HighlightNeedlePath": "HighlightNeedlePath", + "Needle": "Needle", + "NeedlePath": "NeedlePath", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "LinearGradientBrush": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/LinearGradientBrush", + "k": "class", + "s": "classes", + "m": { + "LinearGradientBrush()": "LinearGradientBrush()", + "LinearGradientBrush": "LinearGradientBrush()", + "EndX": "EndX", + "EndY": "EndY", + "GradientStops": "GradientStops", + "StartX": "StartX", + "StartY": "StartY" + } + } + ], + "LinearGradientBrushAppearanceData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGradientBrushAppearanceData", + "k": "class", + "s": "classes", + "m": { + "LinearGradientBrushAppearanceData()": "LinearGradientBrushAppearanceData()", + "LinearGradientBrushAppearanceData": "LinearGradientBrushAppearanceData()", + "EndX": "EndX", + "EndY": "EndY", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "StartX": "StartX", + "StartY": "StartY", + "Stops": "Stops", + "Type": "Type" + } + } + ], + "LinearGraphNeedleShape": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/enums/LinearGraphNeedleShape", + "k": "enum", + "s": "enums" + } + ], + "LinearGraphRange": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphRange", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRange()": "LinearGraphRange()", + "LinearGraphRange": "LinearGraphRange()", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "EndInset": "EndInset", + "EndInsetProperty": "EndInsetProperty", + "EndValue": "EndValue", + "EndValueProperty": "EndValueProperty", + "InnerEndExtent": "InnerEndExtent", + "InnerEndExtentProperty": "InnerEndExtentProperty", + "InnerStartExtent": "InnerStartExtent", + "InnerStartExtentProperty": "InnerStartExtentProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OuterEndExtent": "OuterEndExtent", + "OuterEndExtentProperty": "OuterEndExtentProperty", + "OuterStartExtent": "OuterStartExtent", + "OuterStartExtentProperty": "OuterStartExtentProperty", + "Outline": "Outline", + "OutlineProperty": "OutlineProperty", + "StartInset": "StartInset", + "StartInsetProperty": "StartInsetProperty", + "StartValue": "StartValue", + "StartValueProperty": "StartValueProperty", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LinearGraphRangeCollection": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphRangeCollection", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeCollection()": "LinearGraphRangeCollection()", + "LinearGraphRangeCollection": "LinearGraphRangeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LinearGraphRangeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGraphRangeDescription", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeDescription()": "LinearGraphRangeDescription()", + "LinearGraphRangeDescription": "LinearGraphRangeDescription()", + "Brush": "Brush", + "EndInset": "EndInset", + "EndValue": "EndValue", + "InnerEndExtent": "InnerEndExtent", + "InnerStartExtent": "InnerStartExtent", + "OuterEndExtent": "OuterEndExtent", + "OuterStartExtent": "OuterStartExtent", + "Outline": "Outline", + "StartInset": "StartInset", + "StartValue": "StartValue", + "StrokeThickness": "StrokeThickness", + "Type": "Type" + } + } + ], + "LinearGraphRangeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGraphRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeDescriptionMetadata()": "LinearGraphRangeDescriptionMetadata()", + "LinearGraphRangeDescriptionMetadata": "LinearGraphRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGraphRangeDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LinearGraphRangeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeDescriptionModule()": "LinearGraphRangeDescriptionModule()", + "LinearGraphRangeDescriptionModule": "LinearGraphRangeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LinearGraphRangeVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphRangeVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeVisualData()": "LinearGraphRangeVisualData()", + "LinearGraphRangeVisualData": "LinearGraphRangeVisualData()", + "RangePath": "RangePath", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type" + } + } + ], + "LinearGraphRangeVisualDataList": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphRangeVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LinearGraphRangeVisualDataList()": "LinearGraphRangeVisualDataList()", + "LinearGraphRangeVisualDataList": "LinearGraphRangeVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "LinearGraphScaleLabelVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphScaleLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphScaleLabelVisualData()": "LinearGraphScaleLabelVisualData()", + "LinearGraphScaleLabelVisualData": "LinearGraphScaleLabelVisualData()", + "Appearance": "Appearance", + "LabelPosition": "LabelPosition", + "LabelSize": "LabelSize", + "LabelValue": "LabelValue", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "LinearGraphScaleLabelVisualDataList": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphScaleLabelVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LinearGraphScaleLabelVisualDataList()": "LinearGraphScaleLabelVisualDataList()", + "LinearGraphScaleLabelVisualDataList": "LinearGraphScaleLabelVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "LinearGraphScaleTickmarkVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphScaleTickmarkVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphScaleTickmarkVisualData()": "LinearGraphScaleTickmarkVisualData()", + "LinearGraphScaleTickmarkVisualData": "LinearGraphScaleTickmarkVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TickPath": "TickPath" + } + } + ], + "LinearGraphScaleTickmarkVisualDataList": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphScaleTickmarkVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LinearGraphScaleTickmarkVisualDataList()": "LinearGraphScaleTickmarkVisualDataList()", + "LinearGraphScaleTickmarkVisualDataList": "LinearGraphScaleTickmarkVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "LinearGraphToolTipVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphToolTipVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphToolTipVisualData()": "LinearGraphToolTipVisualData()", + "LinearGraphToolTipVisualData": "LinearGraphToolTipVisualData()", + "Item": "Item", + "ItemBrush": "ItemBrush", + "Outline": "Outline", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Thickness": "Thickness" + } + } + ], + "LinearGraphVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearGraphVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearGraphVisualData()": "LinearGraphVisualData()", + "LinearGraphVisualData": "LinearGraphVisualData()", + "BackingPath": "BackingPath", + "Name": "Name", + "OverlayPath": "OverlayPath", + "Ranges": "Ranges", + "Scale": "Scale", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleLabels": "ScaleLabels", + "ScalePath": "ScalePath", + "ScaleTickmarks": "ScaleTickmarks", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "ToolTip": "ToolTip", + "UnderlayPath": "UnderlayPath", + "Viewport": "Viewport" + } + } + ], + "LinearNeedleVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearNeedleVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearNeedleVisualData()": "LinearNeedleVisualData()", + "LinearNeedleVisualData": "LinearNeedleVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type", + "Value": "Value" + } + } + ], + "LinearNeedleVisualDataList": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearNeedleVisualDataList", + "k": "class", + "s": "classes", + "m": { + "LinearNeedleVisualDataList()": "LinearNeedleVisualDataList()", + "LinearNeedleVisualDataList": "LinearNeedleVisualDataList()" + } + } + ], + "LinearScaleOrientation": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/enums/LinearScaleOrientation", + "k": "enum", + "s": "enums" + } + ], + "LinearScaleVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/LinearScaleVisualData", + "k": "class", + "s": "classes", + "m": { + "LinearScaleVisualData()": "LinearScaleVisualData()", + "LinearScaleVisualData": "LinearScaleVisualData()" + } + } + ], + "LineFragmentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "LineFragmentDescription()": "LineFragmentDescription()", + "LineFragmentDescription": "LineFragmentDescription()", + "Type": "Type" + } + } + ], + "LineFragmentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LineFragmentDescriptionMetadata()": "LineFragmentDescriptionMetadata()", + "LineFragmentDescriptionMetadata": "LineFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LineFragmentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LineFragmentDescriptionModule()": "LineFragmentDescriptionModule()", + "LineFragmentDescriptionModule": "LineFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LineGeometryData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineGeometryData", + "k": "class", + "s": "classes", + "m": { + "LineGeometryData()": "LineGeometryData()", + "LineGeometryData": "LineGeometryData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "X1": "X1", + "X2": "X2", + "Y1": "Y1", + "Y2": "Y2" + } + } + ], + "LineSegmentData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineSegmentData", + "k": "class", + "s": "classes", + "m": { + "LineSegmentData()": "LineSegmentData()", + "LineSegmentData": "LineSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "Point": "Point", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "LineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/LineSeries", + "k": "class", + "s": "classes", + "m": { + "LineSeries()": "LineSeries()", + "LineSeries": "LineSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "LineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "LineSeriesDescription()": "LineSeriesDescription()", + "LineSeriesDescription": "LineSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "LineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LineSeriesDescriptionMetadata()": "LineSeriesDescriptionMetadata()", + "LineSeriesDescriptionMetadata": "LineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LineSeriesDescriptionModule()": "LineSeriesDescriptionModule()", + "LineSeriesDescriptionModule": "LineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LineVisualData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LineVisualData", + "k": "class", + "s": "classes", + "m": { + "LineVisualData()": "LineVisualData()", + "LineVisualData": "LineVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "X1": "X1", + "X2": "X2", + "Y1": "Y1", + "Y2": "Y2" + } + } + ], + "ListPanelActivationMode": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ListPanelActivationMode", + "k": "enum", + "s": "enums" + } + ], + "ListPanelActiveRowChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelActiveRowChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelActiveRowChangedEventArgs()": "ListPanelActiveRowChangedEventArgs()", + "ListPanelActiveRowChangedEventArgs": "ListPanelActiveRowChangedEventArgs()", + "NewActiveRow": "NewActiveRow", + "OldActiveRow": "OldActiveRow", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelActiveRowChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelActiveRowChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelActiveRowChangedEventArgsDescription()": "ListPanelActiveRowChangedEventArgsDescription()", + "ListPanelActiveRowChangedEventArgsDescription": "ListPanelActiveRowChangedEventArgsDescription()", + "NewActiveRow": "NewActiveRow", + "OldActiveRow": "OldActiveRow", + "Type": "Type" + } + } + ], + "ListPanelActiveRowChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelActiveRowChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelActiveRowChangedEventArgsDescriptionMetadata()": "ListPanelActiveRowChangedEventArgsDescriptionMetadata()", + "ListPanelActiveRowChangedEventArgsDescriptionMetadata": "ListPanelActiveRowChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelContentRebindEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelContentRebindEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRebindEventArgs()": "ListPanelContentRebindEventArgs()", + "ListPanelContentRebindEventArgs": "ListPanelContentRebindEventArgs()", + "RowObject": "RowObject", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelContentRebindEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelContentRebindEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRebindEventArgsDescription()": "ListPanelContentRebindEventArgsDescription()", + "ListPanelContentRebindEventArgsDescription": "ListPanelContentRebindEventArgsDescription()", + "RowObjectRef": "RowObjectRef", + "Type": "Type" + } + } + ], + "ListPanelContentRebindEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelContentRebindEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRebindEventArgsDescriptionMetadata()": "ListPanelContentRebindEventArgsDescriptionMetadata()", + "ListPanelContentRebindEventArgsDescriptionMetadata": "ListPanelContentRebindEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelContentRecycledEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelContentRecycledEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRecycledEventArgs()": "ListPanelContentRecycledEventArgs()", + "ListPanelContentRecycledEventArgs": "ListPanelContentRecycledEventArgs()", + "RowObject": "RowObject", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelContentRecycledEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelContentRecycledEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRecycledEventArgsDescription()": "ListPanelContentRecycledEventArgsDescription()", + "ListPanelContentRecycledEventArgsDescription": "ListPanelContentRecycledEventArgsDescription()", + "RowObjectRef": "RowObjectRef", + "Type": "Type" + } + } + ], + "ListPanelContentRecycledEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelContentRecycledEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRecycledEventArgsDescriptionMetadata()": "ListPanelContentRecycledEventArgsDescriptionMetadata()", + "ListPanelContentRecycledEventArgsDescriptionMetadata": "ListPanelContentRecycledEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelContentRefreshedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelContentRefreshedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRefreshedEventArgs()": "ListPanelContentRefreshedEventArgs()", + "ListPanelContentRefreshedEventArgs": "ListPanelContentRefreshedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelContentRefreshedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelContentRefreshedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRefreshedEventArgsDescription()": "ListPanelContentRefreshedEventArgsDescription()", + "ListPanelContentRefreshedEventArgsDescription": "ListPanelContentRefreshedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ListPanelContentRefreshedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelContentRefreshedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelContentRefreshedEventArgsDescriptionMetadata()": "ListPanelContentRefreshedEventArgsDescriptionMetadata()", + "ListPanelContentRefreshedEventArgsDescriptionMetadata": "ListPanelContentRefreshedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelDescription()": "ListPanelDescription()", + "ListPanelDescription": "ListPanelDescription()", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationMode": "ActivationMode", + "ActiveRow": "ActiveRow", + "ActiveRowChangedRef": "ActiveRowChangedRef", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualPrimaryKeyChangeRef": "ActualPrimaryKeyChangeRef", + "ActualRowHeight": "ActualRowHeight", + "BackgroundColor": "BackgroundColor", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "ContentRefreshedRef": "ContentRefreshedRef", + "DataSource": "DataSource", + "DataSourceRef": "DataSourceRef", + "IsActiveRowStyleEnabled": "IsActiveRowStyleEnabled", + "IsCustomRowHeightEnabled": "IsCustomRowHeightEnabled", + "ItemClickedRef": "ItemClickedRef", + "ItemHeightRequestedRef": "ItemHeightRequestedRef", + "ItemRebindRef": "ItemRebindRef", + "ItemRecycledRef": "ItemRecycledRef", + "ItemSpacing": "ItemSpacing", + "ItemWidthRequestedRef": "ItemWidthRequestedRef", + "NormalBackground": "NormalBackground", + "NotifyOnAllSelectionChanges": "NotifyOnAllSelectionChanges", + "Orientation": "Orientation", + "PrimaryKey": "PrimaryKey", + "RowHeight": "RowHeight", + "RowUpdatingRef": "RowUpdatingRef", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarStyle": "ScrollbarStyle", + "SelectedBackground": "SelectedBackground", + "SelectedItems": "SelectedItems", + "SelectedItemsChangedRef": "SelectedItemsChangedRef", + "SelectedKeys": "SelectedKeys", + "SelectedKeysChangedRef": "SelectedKeysChangedRef", + "SelectionBehavior": "SelectionBehavior", + "SelectionChangedRef": "SelectionChangedRef", + "SelectionMode": "SelectionMode", + "TextColor": "TextColor", + "Type": "Type" + } + } + ], + "ListPanelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelDescriptionMetadata()": "ListPanelDescriptionMetadata()", + "ListPanelDescriptionMetadata": "ListPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ListPanelDescriptionModule()": "ListPanelDescriptionModule()", + "ListPanelDescriptionModule": "ListPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelItemEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelItemEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemEventArgs()": "ListPanelItemEventArgs()", + "ListPanelItemEventArgs": "ListPanelItemEventArgs()", + "IsDoubleClick": "IsDoubleClick", + "IsLeftButton": "IsLeftButton", + "ItemInfo": "ItemInfo", + "ListPanel": "ListPanel", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelItemEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelItemEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemEventArgsDescription()": "ListPanelItemEventArgsDescription()", + "ListPanelItemEventArgsDescription": "ListPanelItemEventArgsDescription()", + "IsDoubleClick": "IsDoubleClick", + "IsLeftButton": "IsLeftButton", + "ItemInfo": "ItemInfo", + "ListPanel": "ListPanel", + "Type": "Type" + } + } + ], + "ListPanelItemEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelItemEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemEventArgsDescriptionMetadata()": "ListPanelItemEventArgsDescriptionMetadata()", + "ListPanelItemEventArgsDescriptionMetadata": "ListPanelItemEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelItemModel": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelItemModel", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemModel()": "ListPanelItemModel()", + "ListPanelItemModel": "ListPanelItemModel()", + "DataRow": "DataRow", + "IsActivated": "IsActivated", + "IsActivationSupported": "IsActivationSupported", + "IsModelDirty": "IsModelDirty", + "IsSelected": "IsSelected", + "Left": "Left", + "RowHeight": "RowHeight", + "RowObject": "RowObject", + "Top": "Top", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelItemModelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelItemModelDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemModelDescription()": "ListPanelItemModelDescription()", + "ListPanelItemModelDescription": "ListPanelItemModelDescription()", + "DataRow": "DataRow", + "IsActivated": "IsActivated", + "IsActivationSupported": "IsActivationSupported", + "IsModelDirty": "IsModelDirty", + "IsSelected": "IsSelected", + "Left": "Left", + "RowHeight": "RowHeight", + "RowObjectRef": "RowObjectRef", + "Top": "Top", + "Type": "Type" + } + } + ], + "ListPanelItemModelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelItemModelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemModelDescriptionMetadata()": "ListPanelItemModelDescriptionMetadata()", + "ListPanelItemModelDescriptionMetadata": "ListPanelItemModelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelItemVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelItemVisualData", + "k": "class", + "s": "classes", + "m": { + "ListPanelItemVisualData()": "ListPanelItemVisualData()", + "ListPanelItemVisualData": "ListPanelItemVisualData()", + "DataRow": "DataRow", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "Top": "Top", + "Width": "Width" + } + } + ], + "ListPanelOrientation": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ListPanelOrientation", + "k": "enum", + "s": "enums" + } + ], + "ListPanelPrimaryKeyValue": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelPrimaryKeyValue", + "k": "class", + "s": "classes", + "m": { + "ListPanelPrimaryKeyValue(object)": "ListPanelPrimaryKeyValue(object)", + "ListPanelPrimaryKeyValue": "ListPanelPrimaryKeyValue(object)", + "ListPanelPrimaryKeyValue(object[])": "ListPanelPrimaryKeyValue(object[])", + "ListPanelPrimaryKeyValue(string[], object[])": "ListPanelPrimaryKeyValue(string[], object[])", + "CreateIdentityKey(object)": "CreateIdentityKey(object)", + "CreateIdentityKey": "CreateIdentityKey(object)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Key": "Key", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelPrimaryKeyValueDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelPrimaryKeyValueDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelPrimaryKeyValueDescription()": "ListPanelPrimaryKeyValueDescription()", + "ListPanelPrimaryKeyValueDescription": "ListPanelPrimaryKeyValueDescription()", + "Key": "Key", + "Type": "Type", + "Value": "Value" + } + } + ], + "ListPanelPrimaryKeyValueDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelPrimaryKeyValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelPrimaryKeyValueDescriptionMetadata()": "ListPanelPrimaryKeyValueDescriptionMetadata()", + "ListPanelPrimaryKeyValueDescriptionMetadata": "ListPanelPrimaryKeyValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelPrimaryKeyValueDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelPrimaryKeyValueDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ListPanelPrimaryKeyValueDescriptionModule()": "ListPanelPrimaryKeyValueDescriptionModule()", + "ListPanelPrimaryKeyValueDescriptionModule": "ListPanelPrimaryKeyValueDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelSelectedItemsChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelSelectedItemsChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedItemsChangedEventArgs()": "ListPanelSelectedItemsChangedEventArgs()", + "ListPanelSelectedItemsChangedEventArgs": "ListPanelSelectedItemsChangedEventArgs()", + "AddedItems": "AddedItems", + "CurrentItems": "CurrentItems", + "RemovedItems": "RemovedItems", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectedItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelSelectedItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedItemsChangedEventArgsDescription()": "ListPanelSelectedItemsChangedEventArgsDescription()", + "ListPanelSelectedItemsChangedEventArgsDescription": "ListPanelSelectedItemsChangedEventArgsDescription()", + "AddedItems": "AddedItems", + "CurrentItems": "CurrentItems", + "RemovedItems": "RemovedItems", + "Type": "Type" + } + } + ], + "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelSelectedItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata()": "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata()", + "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata": "ListPanelSelectedItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelSelectedItemsCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelSelectedItemsCollection", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedItemsCollection()": "ListPanelSelectedItemsCollection()", + "ListPanelSelectedItemsCollection": "ListPanelSelectedItemsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectedKeysChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelSelectedKeysChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedKeysChangedEventArgs()": "ListPanelSelectedKeysChangedEventArgs()", + "ListPanelSelectedKeysChangedEventArgs": "ListPanelSelectedKeysChangedEventArgs()", + "AddedKeys": "AddedKeys", + "CurrentKeys": "CurrentKeys", + "RemovedKeys": "RemovedKeys", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectedKeysChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelSelectedKeysChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedKeysChangedEventArgsDescription()": "ListPanelSelectedKeysChangedEventArgsDescription()", + "ListPanelSelectedKeysChangedEventArgsDescription": "ListPanelSelectedKeysChangedEventArgsDescription()", + "AddedKeys": "AddedKeys", + "CurrentKeys": "CurrentKeys", + "RemovedKeys": "RemovedKeys", + "Type": "Type" + } + } + ], + "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelSelectedKeysChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata()": "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata()", + "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata": "ListPanelSelectedKeysChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelSelectedKeysCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelSelectedKeysCollection", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectedKeysCollection()": "ListPanelSelectedKeysCollection()", + "ListPanelSelectedKeysCollection": "ListPanelSelectedKeysCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectionBehavior": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ListPanelSelectionBehavior", + "k": "enum", + "s": "enums" + } + ], + "ListPanelSelectionChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelSelectionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectionChangedEventArgs()": "ListPanelSelectionChangedEventArgs()", + "ListPanelSelectionChangedEventArgs": "ListPanelSelectionChangedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelSelectionChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelSelectionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectionChangedEventArgsDescription()": "ListPanelSelectionChangedEventArgsDescription()", + "ListPanelSelectionChangedEventArgsDescription": "ListPanelSelectionChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ListPanelSelectionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelSelectionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelSelectionChangedEventArgsDescriptionMetadata()": "ListPanelSelectionChangedEventArgsDescriptionMetadata()", + "ListPanelSelectionChangedEventArgsDescriptionMetadata": "ListPanelSelectionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelSelectionMode": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ListPanelSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "ListPanelTemplateHeightRequestedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelTemplateHeightRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateHeightRequestedEventArgs()": "ListPanelTemplateHeightRequestedEventArgs()", + "ListPanelTemplateHeightRequestedEventArgs": "ListPanelTemplateHeightRequestedEventArgs()", + "DataItem": "DataItem", + "DataRow": "DataRow", + "Height": "Height", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelTemplateHeightRequestedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelTemplateHeightRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateHeightRequestedEventArgsDescription()": "ListPanelTemplateHeightRequestedEventArgsDescription()", + "ListPanelTemplateHeightRequestedEventArgsDescription": "ListPanelTemplateHeightRequestedEventArgsDescription()", + "DataItemRef": "DataItemRef", + "DataRow": "DataRow", + "Height": "Height", + "Type": "Type" + } + } + ], + "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata()": "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata()", + "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata": "ListPanelTemplateHeightRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelTemplateItemUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelTemplateItemUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateItemUpdatingEventArgs()": "ListPanelTemplateItemUpdatingEventArgs()", + "ListPanelTemplateItemUpdatingEventArgs": "ListPanelTemplateItemUpdatingEventArgs()", + "AvailableWidth": "AvailableWidth", + "Content": "Content", + "Model": "Model", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelTemplateItemUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelTemplateItemUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateItemUpdatingEventArgsDescription()": "ListPanelTemplateItemUpdatingEventArgsDescription()", + "ListPanelTemplateItemUpdatingEventArgsDescription": "ListPanelTemplateItemUpdatingEventArgsDescription()", + "AvailableWidth": "AvailableWidth", + "ContentRef": "ContentRef", + "Model": "Model", + "Type": "Type" + } + } + ], + "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata()": "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata()", + "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata": "ListPanelTemplateItemUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelTemplateWidthRequestedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelTemplateWidthRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateWidthRequestedEventArgs()": "ListPanelTemplateWidthRequestedEventArgs()", + "ListPanelTemplateWidthRequestedEventArgs": "ListPanelTemplateWidthRequestedEventArgs()", + "DataItem": "DataItem", + "DataRow": "DataRow", + "Width": "Width", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ListPanelTemplateWidthRequestedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelTemplateWidthRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateWidthRequestedEventArgsDescription()": "ListPanelTemplateWidthRequestedEventArgsDescription()", + "ListPanelTemplateWidthRequestedEventArgsDescription": "ListPanelTemplateWidthRequestedEventArgsDescription()", + "DataItemRef": "DataItemRef", + "DataRow": "DataRow", + "Type": "Type", + "Width": "Width" + } + } + ], + "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata()": "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata()", + "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata": "ListPanelTemplateWidthRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ListPanelVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ListPanelVisualData", + "k": "class", + "s": "classes", + "m": { + "ListPanelVisualData()": "ListPanelVisualData()", + "ListPanelVisualData": "ListPanelVisualData()", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "VisibleItems": "VisibleItems", + "Width": "Width" + } + } + ], + "ListSortDirection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ListSortDirection", + "k": "enum", + "s": "enums" + } + ], + "LiteralFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LiteralFilterExpression", + "k": "class", + "s": "classes", + "m": { + "LiteralFilterExpression()": "LiteralFilterExpression()", + "LiteralFilterExpression": "LiteralFilterExpression()", + "LiteralFilterExpression(object)": "LiteralFilterExpression(object)", + "LiteralFilterExpression(string, bool)": "LiteralFilterExpression(string, bool)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "IsLiteral": "IsLiteral", + "IsNull": "IsNull", + "LeaveUnquoted": "LeaveUnquoted", + "LiteralValue": "LiteralValue", + "Precedence": "Precedence", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()" + } + } + ], + "LiteralFilterExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LiteralFilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "LiteralFilterExpressionDescription()": "LiteralFilterExpressionDescription()", + "LiteralFilterExpressionDescription": "LiteralFilterExpressionDescription()", + "LeaveUnquoted": "LeaveUnquoted", + "LiteralValue": "LiteralValue", + "Type": "Type" + } + } + ], + "LiteralFilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LiteralFilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LiteralFilterExpressionDescriptionMetadata()": "LiteralFilterExpressionDescriptionMetadata()", + "LiteralFilterExpressionDescriptionMetadata": "LiteralFilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LiteralStringAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/LiteralStringAttribute", + "k": "class", + "s": "classes", + "m": { + "LiteralStringAttribute()": "LiteralStringAttribute()", + "LiteralStringAttribute": "LiteralStringAttribute()" + } + } + ], + "LocalDataSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LocalDataSource", + "k": "class", + "s": "classes", + "m": { + "LocalDataSource()": "LocalDataSource()", + "LocalDataSource": "LocalDataSource()", + "ActualDataProvider": "ActualDataProvider", + "Clone()": "Clone()", + "Clone": "Clone()", + "DataProvider": "DataProvider", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "ItemsSource": "ItemsSource", + "ResolveDataProvider()": "ResolveDataProvider()", + "ResolveDataProvider": "ResolveDataProvider()" + } + } + ], + "LocalDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LocalDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "LocalDataSourceDescription()": "LocalDataSourceDescription()", + "LocalDataSourceDescription": "LocalDataSourceDescription()", + "DataSourceRef": "DataSourceRef", + "Type": "Type" + } + } + ], + "LocalDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LocalDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LocalDataSourceDescriptionMetadata()": "LocalDataSourceDescriptionMetadata()", + "LocalDataSourceDescriptionMetadata": "LocalDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LocalDataSourceDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LocalDataSourceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "LocalDataSourceDescriptionModule()": "LocalDataSourceDescriptionModule()", + "LocalDataSourceDescriptionModule": "LocalDataSourceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "LostFocusEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/LostFocusEventArgs", + "k": "class", + "s": "classes", + "m": { + "LostFocusEventArgs()": "LostFocusEventArgs()", + "LostFocusEventArgs": "LostFocusEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "LostFocusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LostFocusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "LostFocusEventArgsDescription()": "LostFocusEventArgsDescription()", + "LostFocusEventArgsDescription": "LostFocusEventArgsDescription()", + "Type": "Type" + } + } + ], + "LostFocusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/LostFocusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "LostFocusEventArgsDescriptionMetadata()": "LostFocusEventArgsDescriptionMetadata()", + "LostFocusEventArgsDescriptionMetadata": "LostFocusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MapBackgroundTilingMode": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/enums/MapBackgroundTilingMode", + "k": "enum", + "s": "enums" + } + ], + "MapResizeBehavior": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/enums/MapResizeBehavior", + "k": "enum", + "s": "enums" + } + ], + "MapServerResponseModel": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/MapServerResponseModel", + "k": "class", + "s": "classes", + "m": { + "MapServerResponseModel()": "MapServerResponseModel()", + "MapServerResponseModel": "MapServerResponseModel()", + "Name": "Name", + "TileInfo": "TileInfo" + } + } + ], + "MapTileSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MapTileSource", + "k": "class", + "s": "classes", + "m": { + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MarkerAutomaticBehavior": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/MarkerAutomaticBehavior", + "k": "enum", + "s": "enums" + } + ], + "MarkerFillMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/MarkerFillMode", + "k": "enum", + "s": "enums" + } + ], + "MarkerOutlineMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/MarkerOutlineMode", + "k": "enum", + "s": "enums" + } + ], + "MarkerSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MarkerSeries", + "k": "class", + "s": "classes", + "m": { + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "ActualMarkerType": "ActualMarkerType", + "ActualMarkerTypeProperty": "ActualMarkerTypeProperty", + "EffectiveIsMarkerCircular": "EffectiveIsMarkerCircular", + "EffectiveIsMarkerCircularProperty": "EffectiveIsMarkerCircularProperty", + "IsCustomMarkerCircular": "IsCustomMarkerCircular", + "IsCustomMarkerCircularProperty": "IsCustomMarkerCircularProperty", + "LegendItemBadgeMarkerSizeScaling": "LegendItemBadgeMarkerSizeScaling", + "LegendItemBadgeMarkerSizeScalingProperty": "LegendItemBadgeMarkerSizeScalingProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerSize": "MarkerSize", + "MarkerSizeProperty": "MarkerSizeProperty", + "MarkerTemplate": "MarkerTemplate", + "MarkerTemplateProperty": "MarkerTemplateProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty" + } + } + ], + "MarkerSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MarkerSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "MarkerSeriesDescription()": "MarkerSeriesDescription()", + "MarkerSeriesDescription": "MarkerSeriesDescription()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "ActualMarkerType": "ActualMarkerType", + "IsCustomMarkerCircular": "IsCustomMarkerCircular", + "LegendItemBadgeMarkerSizeScaling": "LegendItemBadgeMarkerSizeScaling", + "MarkerBrush": "MarkerBrush", + "MarkerFillMode": "MarkerFillMode", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerSize": "MarkerSize", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "Type": "Type" + } + } + ], + "MarkerSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MarkerSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MarkerSeriesDescriptionMetadata()": "MarkerSeriesDescriptionMetadata()", + "MarkerSeriesDescriptionMetadata": "MarkerSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MarkerType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/MarkerType", + "k": "enum", + "s": "enums" + } + ], + "MarkerTypeCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MarkerTypeCollection", + "k": "class", + "s": "classes", + "m": { + "MarkerTypeCollection()": "MarkerTypeCollection()", + "MarkerTypeCollection": "MarkerTypeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MarkerTypeCollectionHelper": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MarkerTypeCollectionHelper", + "k": "class", + "s": "classes", + "m": { + "MarkerTypeCollectionHelper()": "MarkerTypeCollectionHelper()", + "MarkerTypeCollectionHelper": "MarkerTypeCollectionHelper()", + "CreateFromString(string)": "CreateFromString(string)", + "CreateFromString": "CreateFromString(string)" + } + } + ], + "MarkerVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MarkerVisualData", + "k": "class", + "s": "classes", + "m": { + "MarkerVisualData()": "MarkerVisualData()", + "MarkerVisualData": "MarkerVisualData()", + "Bounds": "Bounds", + "ContentTemplate": "ContentTemplate", + "Index": "Index", + "IsVisible": "IsVisible", + "MarkerAppearance": "MarkerAppearance", + "MarkerType": "MarkerType", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "X": "X", + "Y": "Y" + } + } + ], + "MarkerVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MarkerVisualDataList", + "k": "class", + "s": "classes", + "m": { + "MarkerVisualDataList()": "MarkerVisualDataList()", + "MarkerVisualDataList": "MarkerVisualDataList()" + } + } + ], + "MarketFacilitationIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MarketFacilitationIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "MarketFacilitationIndexIndicator()": "MarketFacilitationIndexIndicator()", + "MarketFacilitationIndexIndicator": "MarketFacilitationIndexIndicator()" + } + } + ], + "MarketFacilitationIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MarketFacilitationIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MarketFacilitationIndexIndicatorDescription()": "MarketFacilitationIndexIndicatorDescription()", + "MarketFacilitationIndexIndicatorDescription": "MarketFacilitationIndexIndicatorDescription()", + "Type": "Type" + } + } + ], + "MarketFacilitationIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MarketFacilitationIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MarketFacilitationIndexIndicatorDescriptionMetadata()": "MarketFacilitationIndexIndicatorDescriptionMetadata()", + "MarketFacilitationIndexIndicatorDescriptionMetadata": "MarketFacilitationIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MarketFacilitationIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MarketFacilitationIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MarketFacilitationIndexIndicatorDescriptionModule()": "MarketFacilitationIndexIndicatorDescriptionModule()", + "MarketFacilitationIndexIndicatorDescriptionModule": "MarketFacilitationIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MassIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MassIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "MassIndexIndicator()": "MassIndexIndicator()", + "MassIndexIndicator": "MassIndexIndicator()" + } + } + ], + "MassIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MassIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MassIndexIndicatorDescription()": "MassIndexIndicatorDescription()", + "MassIndexIndicatorDescription": "MassIndexIndicatorDescription()", + "Type": "Type" + } + } + ], + "MassIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MassIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MassIndexIndicatorDescriptionMetadata()": "MassIndexIndicatorDescriptionMetadata()", + "MassIndexIndicatorDescriptionMetadata": "MassIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MassIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MassIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MassIndexIndicatorDescriptionModule()": "MassIndexIndicatorDescriptionModule()", + "MassIndexIndicatorDescriptionModule": "MassIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MathUtil": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MathUtil", + "k": "class", + "s": "classes", + "m": { + "Asinh(double)": "Asinh(double)", + "Asinh": "Asinh(double)", + "AverageArray(double[])": "AverageArray(double[])", + "AverageArray": "AverageArray(double[])", + "Clamp(double, double, double)": "Clamp(double, double, double)", + "Clamp": "Clamp(double, double, double)", + "CloseEnough(double, double)": "CloseEnough(double, double)", + "CloseEnough": "CloseEnough(double, double)", + "DegreeAsRadian": "DegreeAsRadian", + "Degrees(double)": "Degrees(double)", + "Degrees": "Degrees(double)", + "Hypot(double, double)": "Hypot(double, double)", + "Hypot": "Hypot(double, double)", + "IsPlotable(double)": "IsPlotable(double)", + "IsPlotable": "IsPlotable(double)", + "Max(params double[])": "Max(params double[])", + "Max": "Max(params double[])", + "Max3(double, double, double)": "Max3(double, double, double)", + "Max3": "Max3(double, double, double)", + "MaxArray(double[])": "MaxArray(double[])", + "MaxArray": "MaxArray(double[])", + "Min(params double[])": "Min(params double[])", + "Min": "Min(params double[])", + "Min3(double, double, double)": "Min3(double, double, double)", + "Min3": "Min3(double, double, double)", + "MinArray(double[])": "MinArray(double[])", + "MinArray": "MinArray(double[])", + "NumberToMinDecimalsString(double)": "NumberToMinDecimalsString(double)", + "NumberToMinDecimalsString": "NumberToMinDecimalsString(double)", + "PHI": "PHI", + "Radians(double)": "Radians(double)", + "Radians": "Radians(double)", + "SQRT2": "SQRT2", + "Sqr(double)": "Sqr(double)", + "Sqr": "Sqr(double)", + "SumArray(double[])": "SumArray(double[])", + "SumArray": "SumArray(double[])" + } + } + ], + "MathUtilExtended": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MathUtilExtended", + "k": "class", + "s": "classes", + "m": { + "GammaLn(double)": "GammaLn(double)", + "GammaLn": "GammaLn(double)", + "NiceCeiling(double)": "NiceCeiling(double)", + "NiceCeiling": "NiceCeiling(double)", + "NiceFloor(double)": "NiceFloor(double)", + "NiceFloor": "NiceFloor(double)", + "NiceRound(double)": "NiceRound(double)", + "NiceRound": "NiceRound(double)", + "Noise(double, double, double)": "Noise(double, double, double)", + "Noise": "Noise(double, double, double)" + } + } + ], + "MaxSummaryCalculator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MaxSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "MaxSummaryCalculator()": "MaxSummaryCalculator()", + "MaxSummaryCalculator": "MaxSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "MedianPriceIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MedianPriceIndicator", + "k": "class", + "s": "classes", + "m": { + "MedianPriceIndicator()": "MedianPriceIndicator()", + "MedianPriceIndicator": "MedianPriceIndicator()" + } + } + ], + "MedianPriceIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MedianPriceIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MedianPriceIndicatorDescription()": "MedianPriceIndicatorDescription()", + "MedianPriceIndicatorDescription": "MedianPriceIndicatorDescription()", + "Type": "Type" + } + } + ], + "MedianPriceIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MedianPriceIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MedianPriceIndicatorDescriptionMetadata()": "MedianPriceIndicatorDescriptionMetadata()", + "MedianPriceIndicatorDescriptionMetadata": "MedianPriceIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MedianPriceIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MedianPriceIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MedianPriceIndicatorDescriptionModule()": "MedianPriceIndicatorDescriptionModule()", + "MedianPriceIndicatorDescriptionModule": "MedianPriceIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MergedCellEvaluationCriteria": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/MergedCellEvaluationCriteria", + "k": "enum", + "s": "enums" + } + ], + "MergedCellMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/MergedCellMode", + "k": "enum", + "s": "enums" + } + ], + "MinSummaryCalculator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MinSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "MinSummaryCalculator()": "MinSummaryCalculator()", + "MinSummaryCalculator": "MinSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "MockComparer": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/MockComparer", + "k": "class", + "s": "classes", + "m": { + "MockComparer(SortDescriptionCollection)": "MockComparer(SortDescriptionCollection)", + "MockComparer": "MockComparer(SortDescriptionCollection)", + "Compare(object, object)": "Compare(object, object)", + "Compare": "Compare(object, object)" + } + } + ], + "MockDataItem": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/MockDataItem", + "k": "class", + "s": "classes", + "m": { + "MockDataItem(string, int, DateTime)": "MockDataItem(string, int, DateTime)", + "MockDataItem": "MockDataItem(string, int, DateTime)", + "Key": "Key", + "Mock2": "Mock2", + "Mock3": "Mock3" + } + } + ], + "MockRowItem": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/MockRowItem", + "k": "class", + "s": "classes", + "m": { + "MockRowItem()": "MockRowItem()", + "MockRowItem": "MockRowItem()", + "Values": "Values", + "canPush": "canPush", + "dataItem": "dataItem", + "pinnedPriorty": "pinnedPriorty", + "rowType": "rowType" + } + } + ], + "MockView": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/MockView", + "k": "class", + "s": "classes", + "m": { + "MockView()": "MockView()", + "MockView": "MockView()", + "MockData": "MockData" + } + } + ], + "MoneyFlowIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MoneyFlowIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "MoneyFlowIndexIndicator()": "MoneyFlowIndexIndicator()", + "MoneyFlowIndexIndicator": "MoneyFlowIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "MoneyFlowIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MoneyFlowIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MoneyFlowIndexIndicatorDescription()": "MoneyFlowIndexIndicatorDescription()", + "MoneyFlowIndexIndicatorDescription": "MoneyFlowIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "MoneyFlowIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MoneyFlowIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MoneyFlowIndexIndicatorDescriptionMetadata()": "MoneyFlowIndexIndicatorDescriptionMetadata()", + "MoneyFlowIndexIndicatorDescriptionMetadata": "MoneyFlowIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MoneyFlowIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MoneyFlowIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MoneyFlowIndexIndicatorDescriptionModule()": "MoneyFlowIndexIndicatorDescriptionModule()", + "MoneyFlowIndexIndicatorDescriptionModule": "MoneyFlowIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MonthToDateExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MonthToDateExpression", + "k": "class", + "s": "classes", + "m": { + "MonthToDateExpression(FilterExpression)": "MonthToDateExpression(FilterExpression)", + "MonthToDateExpression": "MonthToDateExpression(FilterExpression)", + "MonthToDateExpression(string)": "MonthToDateExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "MonthToDateExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MonthToDateExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "MonthToDateExpressionDescription()": "MonthToDateExpressionDescription()", + "MonthToDateExpressionDescription": "MonthToDateExpressionDescription()", + "Type": "Type" + } + } + ], + "MonthToDateExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MonthToDateExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MonthToDateExpressionDescriptionMetadata()": "MonthToDateExpressionDescriptionMetadata()", + "MonthToDateExpressionDescriptionMetadata": "MonthToDateExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MouseButton": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/MouseButton", + "k": "enum", + "s": "enums" + } + ], + "MouseButtonEventArgs": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/MouseButtonEventArgs", + "k": "class", + "s": "classes", + "m": { + "MouseButtonEventArgs()": "MouseButtonEventArgs()", + "MouseButtonEventArgs": "MouseButtonEventArgs()", + "Handled": "Handled" + } + } + ], + "MouseEventArgs": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/MouseEventArgs", + "k": "class", + "s": "classes", + "m": { + "MouseEventArgs()": "MouseEventArgs()", + "MouseEventArgs": "MouseEventArgs()", + "GetPosition(object)": "GetPosition(object)", + "GetPosition": "GetPosition(object)", + "OriginalSource": "OriginalSource", + "Position": "Position" + } + } + ], + "MovingAverageConvergenceDivergenceIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/MovingAverageConvergenceDivergenceIndicator", + "k": "class", + "s": "classes", + "m": { + "MovingAverageConvergenceDivergenceIndicator()": "MovingAverageConvergenceDivergenceIndicator()", + "MovingAverageConvergenceDivergenceIndicator": "MovingAverageConvergenceDivergenceIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty", + "SignalPeriod": "SignalPeriod", + "SignalPeriodProperty": "SignalPeriodProperty" + } + } + ], + "MovingAverageConvergenceDivergenceIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MovingAverageConvergenceDivergenceIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "MovingAverageConvergenceDivergenceIndicatorDescription()": "MovingAverageConvergenceDivergenceIndicatorDescription()", + "MovingAverageConvergenceDivergenceIndicatorDescription": "MovingAverageConvergenceDivergenceIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "SignalPeriod": "SignalPeriod", + "Type": "Type" + } + } + ], + "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata()": "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata()", + "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata": "MovingAverageConvergenceDivergenceIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MovingAverageConvergenceDivergenceIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MovingAverageConvergenceDivergenceIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MovingAverageConvergenceDivergenceIndicatorDescriptionModule()": "MovingAverageConvergenceDivergenceIndicatorDescriptionModule()", + "MovingAverageConvergenceDivergenceIndicatorDescriptionModule": "MovingAverageConvergenceDivergenceIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboBoxDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiColumnComboBoxDescription", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxDescription()": "MultiColumnComboBoxDescription()", + "MultiColumnComboBoxDescription": "MultiColumnComboBoxDescription()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBaseTheme": "ActualBaseTheme", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualDensity": "ActualDensity", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelVisible": "ActualLabelVisible", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualTextColor": "ActualTextColor", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualValueField": "ActualValueField", + "AllowFilter": "AllowFilter", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "BorderColor": "BorderColor", + "BorderWidth": "BorderWidth", + "ChangeRef": "ChangeRef", + "ChangingRef": "ChangingRef", + "ColumnHeadersVisible": "ColumnHeadersVisible", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceRef": "DataSourceRef", + "DefaultColumnWidth": "DefaultColumnWidth", + "Density": "Density", + "DropDownButtonVisible": "DropDownButtonVisible", + "Fields": "Fields", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderWidth": "FocusBorderWidth", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "GotFocusRef": "GotFocusRef", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "IsFixed": "IsFixed", + "KeyDownRef": "KeyDownRef", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStyle": "LabelFontStyle", + "LabelFontWeight": "LabelFontWeight", + "LabelTextColor": "LabelTextColor", + "LostFocusRef": "LostFocusRef", + "NoMatchesFoundLabel": "NoMatchesFoundLabel", + "NoMatchesFoundLabelBackgroundColor": "NoMatchesFoundLabelBackgroundColor", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "NoMatchesFoundLabelTextColor": "NoMatchesFoundLabelTextColor", + "OpenAsChild": "OpenAsChild", + "Placeholder": "Placeholder", + "RowSeparatorsVisible": "RowSeparatorsVisible", + "SelectedValueChangedRef": "SelectedValueChangedRef", + "ShowClearButton": "ShowClearButton", + "SortMode": "SortMode", + "Text": "Text", + "TextChangeRef": "TextChangeRef", + "TextColor": "TextColor", + "TextField": "TextField", + "TextValueChangedRef": "TextValueChangedRef", + "Type": "Type", + "UnderlineColor": "UnderlineColor", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineWidth": "UnderlineWidth", + "UseTopLayer": "UseTopLayer", + "Value": "Value", + "ValueChangeRef": "ValueChangeRef", + "ValueField": "ValueField" + } + } + ], + "MultiColumnComboBoxDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiColumnComboBoxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxDescriptionMetadata()": "MultiColumnComboBoxDescriptionMetadata()", + "MultiColumnComboBoxDescriptionMetadata": "MultiColumnComboBoxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboBoxDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiColumnComboBoxDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxDescriptionModule()": "MultiColumnComboBoxDescriptionModule()", + "MultiColumnComboBoxDescriptionModule": "MultiColumnComboBoxDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboBoxSelectedItemChangeType": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/MultiColumnComboBoxSelectedItemChangeType", + "k": "enum", + "s": "enums" + } + ], + "MultiColumnComboBoxTextChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/MultiColumnComboBoxTextChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxTextChangedEventArgs(string, string)": "MultiColumnComboBoxTextChangedEventArgs(string, string)", + "MultiColumnComboBoxTextChangedEventArgs": "MultiColumnComboBoxTextChangedEventArgs(string, string)", + "NewText": "NewText", + "OldText": "OldText", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiColumnComboBoxTextChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiColumnComboBoxTextChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxTextChangedEventArgsDescription()": "MultiColumnComboBoxTextChangedEventArgsDescription()", + "MultiColumnComboBoxTextChangedEventArgsDescription": "MultiColumnComboBoxTextChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata()": "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata()", + "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata": "MultiColumnComboBoxTextChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboBoxValueChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/MultiColumnComboBoxValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxValueChangedEventArgs(object, object)": "MultiColumnComboBoxValueChangedEventArgs(object, object)", + "MultiColumnComboBoxValueChangedEventArgs": "MultiColumnComboBoxValueChangedEventArgs(object, object)", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiColumnComboBoxValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiColumnComboBoxValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxValueChangedEventArgsDescription()": "MultiColumnComboBoxValueChangedEventArgsDescription()", + "MultiColumnComboBoxValueChangedEventArgsDescription": "MultiColumnComboBoxValueChangedEventArgsDescription()", + "Type": "Type" + } + } + ], + "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata()": "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata()", + "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata": "MultiColumnComboBoxValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiColumnComboVisualModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/MultiColumnComboVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "MultiColumnComboVisualModelExport()": "MultiColumnComboVisualModelExport()", + "MultiColumnComboVisualModelExport": "MultiColumnComboVisualModelExport()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderWidth": "ActualBorderWidth", + "ActualContentPadding": "ActualContentPadding", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelVisible": "ActualLabelVisible", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualTextColor": "ActualTextColor", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ColumnHeadersVisible": "ColumnHeadersVisible", + "DropDownButtonVisible": "DropDownButtonVisible", + "Grid": "Grid", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontSize": "LabelFontSize", + "LabelFontStretch": "LabelFontStretch", + "LabelFontStyle": "LabelFontStyle", + "LabelFontVariant": "LabelFontVariant", + "LabelFontWeight": "LabelFontWeight", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontStretch": "NoMatchesFoundLabelFontStretch", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontVariant": "NoMatchesFoundLabelFontVariant", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "Placeholder": "Placeholder", + "RowSeparatorsVisible": "RowSeparatorsVisible", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Value": "Value" + } + } + ], + "MultiSliderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderDescription()": "MultiSliderDescription()", + "MultiSliderDescription": "MultiSliderDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AreThumbCalloutsEnabled": "AreThumbCalloutsEnabled", + "BarBrush": "BarBrush", + "BarExtent": "BarExtent", + "BarOutline": "BarOutline", + "BarStrokeThickness": "BarStrokeThickness", + "CalloutBrush": "CalloutBrush", + "CalloutOutline": "CalloutOutline", + "CalloutStrokeThickness": "CalloutStrokeThickness", + "CalloutTextColor": "CalloutTextColor", + "EndInset": "EndInset", + "Max": "Max", + "Min": "Min", + "Orientation": "Orientation", + "PixelScalingRatio": "PixelScalingRatio", + "RangeThumbBrush": "RangeThumbBrush", + "RangeThumbOutline": "RangeThumbOutline", + "RangeThumbRidgesBrush": "RangeThumbRidgesBrush", + "RangeThumbStrokeThickness": "RangeThumbStrokeThickness", + "ResolvingToolTipValueRef": "ResolvingToolTipValueRef", + "StartInset": "StartInset", + "Step": "Step", + "ThumbBrush": "ThumbBrush", + "ThumbCalloutFontFamily": "ThumbCalloutFontFamily", + "ThumbCalloutFontSize": "ThumbCalloutFontSize", + "ThumbCalloutFontStyle": "ThumbCalloutFontStyle", + "ThumbCalloutFontWeight": "ThumbCalloutFontWeight", + "ThumbHeight": "ThumbHeight", + "ThumbOutline": "ThumbOutline", + "ThumbRidgesBrush": "ThumbRidgesBrush", + "ThumbStrokeThickness": "ThumbStrokeThickness", + "ThumbValueChangedRef": "ThumbValueChangedRef", + "ThumbValueChangingRef": "ThumbValueChangingRef", + "ThumbWidth": "ThumbWidth", + "Thumbs": "Thumbs", + "TrackEndInset": "TrackEndInset", + "TrackStartInset": "TrackStartInset", + "Type": "Type", + "WindowRect": "WindowRect", + "YMax": "YMax", + "YMin": "YMin", + "YStep": "YStep", + "YTrackEndInset": "YTrackEndInset", + "YTrackStartInset": "YTrackStartInset", + "YValue": "YValue", + "YValueChangedRef": "YValueChangedRef", + "YValueChangingRef": "YValueChangingRef" + } + } + ], + "MultiSliderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderDescriptionMetadata()": "MultiSliderDescriptionMetadata()", + "MultiSliderDescriptionMetadata": "MultiSliderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MultiSliderDescriptionModule()": "MultiSliderDescriptionModule()", + "MultiSliderDescriptionModule": "MultiSliderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderOrientation": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/MultiSliderOrientation", + "k": "enum", + "s": "enums" + } + ], + "MultiSliderResolvingToolTipValueEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/MultiSliderResolvingToolTipValueEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiSliderResolvingToolTipValueEventArgs()": "MultiSliderResolvingToolTipValueEventArgs()", + "MultiSliderResolvingToolTipValueEventArgs": "MultiSliderResolvingToolTipValueEventArgs()", + "Position": "Position", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderResolvingToolTipValueEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderResolvingToolTipValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderResolvingToolTipValueEventArgsDescription()": "MultiSliderResolvingToolTipValueEventArgsDescription()", + "MultiSliderResolvingToolTipValueEventArgsDescription": "MultiSliderResolvingToolTipValueEventArgsDescription()", + "Position": "Position", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata()": "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata()", + "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata": "MultiSliderResolvingToolTipValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderThumb": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/MultiSliderThumb", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumb()": "MultiSliderThumb()", + "MultiSliderThumb": "MultiSliderThumb()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "Push(double)": "Push(double)", + "Push": "Push(double)", + "Range": "Range", + "RangePosition": "RangePosition", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderThumbCollection": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/MultiSliderThumbCollection", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbCollection()": "MultiSliderThumbCollection()", + "MultiSliderThumbCollection": "MultiSliderThumbCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderThumbDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderThumbDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbDescription()": "MultiSliderThumbDescription()", + "MultiSliderThumbDescription": "MultiSliderThumbDescription()", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "RangePosition": "RangePosition", + "RangeRef": "RangeRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "MultiSliderThumbDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderThumbDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbDescriptionMetadata()": "MultiSliderThumbDescriptionMetadata()", + "MultiSliderThumbDescriptionMetadata": "MultiSliderThumbDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderThumbDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderThumbDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbDescriptionModule()": "MultiSliderThumbDescriptionModule()", + "MultiSliderThumbDescriptionModule": "MultiSliderThumbDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderThumbRangePosition": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/MultiSliderThumbRangePosition", + "k": "enum", + "s": "enums" + } + ], + "MultiSliderThumbValueChangingEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/MultiSliderThumbValueChangingEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbValueChangingEventArgs()": "MultiSliderThumbValueChangingEventArgs()", + "MultiSliderThumbValueChangingEventArgs": "MultiSliderThumbValueChangingEventArgs()", + "Thumb": "Thumb", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderThumbValueChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderThumbValueChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbValueChangingEventArgsDescription()": "MultiSliderThumbValueChangingEventArgsDescription()", + "MultiSliderThumbValueChangingEventArgsDescription": "MultiSliderThumbValueChangingEventArgsDescription()", + "Thumb": "Thumb", + "Type": "Type", + "Value": "Value" + } + } + ], + "MultiSliderThumbValueChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderThumbValueChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderThumbValueChangingEventArgsDescriptionMetadata()": "MultiSliderThumbValueChangingEventArgsDescriptionMetadata()", + "MultiSliderThumbValueChangingEventArgsDescriptionMetadata": "MultiSliderThumbValueChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderTrackThumbRange": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/MultiSliderTrackThumbRange", + "k": "class", + "s": "classes", + "m": { + "MultiSliderTrackThumbRange()": "MultiSliderTrackThumbRange()", + "MultiSliderTrackThumbRange": "MultiSliderTrackThumbRange()", + "HigherThumb": "HigherThumb", + "LowerThumb": "LowerThumb", + "MaxWidth": "MaxWidth", + "MinWidth": "MinWidth", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Position": "Position", + "Width": "Width", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderTrackThumbRangeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderTrackThumbRangeDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderTrackThumbRangeDescription()": "MultiSliderTrackThumbRangeDescription()", + "MultiSliderTrackThumbRangeDescription": "MultiSliderTrackThumbRangeDescription()", + "HigherThumb": "HigherThumb", + "LowerThumb": "LowerThumb", + "MaxWidth": "MaxWidth", + "MinWidth": "MinWidth", + "Position": "Position", + "Type": "Type", + "Width": "Width" + } + } + ], + "MultiSliderTrackThumbRangeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderTrackThumbRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderTrackThumbRangeDescriptionMetadata()": "MultiSliderTrackThumbRangeDescriptionMetadata()", + "MultiSliderTrackThumbRangeDescriptionMetadata": "MultiSliderTrackThumbRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "MultiSliderYValueChangingEventArgs": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/MultiSliderYValueChangingEventArgs", + "k": "class", + "s": "classes", + "m": { + "MultiSliderYValueChangingEventArgs()": "MultiSliderYValueChangingEventArgs()", + "MultiSliderYValueChangingEventArgs": "MultiSliderYValueChangingEventArgs()", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "MultiSliderYValueChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderYValueChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "MultiSliderYValueChangingEventArgsDescription()": "MultiSliderYValueChangingEventArgsDescription()", + "MultiSliderYValueChangingEventArgsDescription": "MultiSliderYValueChangingEventArgsDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "MultiSliderYValueChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/MultiSliderYValueChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "MultiSliderYValueChangingEventArgsDescriptionMetadata()": "MultiSliderYValueChangingEventArgsDescriptionMetadata()", + "MultiSliderYValueChangingEventArgsDescriptionMetadata": "MultiSliderYValueChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NativeMethodAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/NativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "NativeMethodAttribute(string)": "NativeMethodAttribute(string)", + "NativeMethodAttribute": "NativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "NativePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/NativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "NativePropertyAttribute()": "NativePropertyAttribute()", + "NativePropertyAttribute": "NativePropertyAttribute()" + } + } + ], + "NativeTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/NativeTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "NativeTypeAttribute()": "NativeTypeAttribute()", + "NativeTypeAttribute": "NativeTypeAttribute()" + } + } + ], + "NativeUICoreFactory": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NativeUICoreFactory", + "k": "class", + "s": "classes", + "m": { + "NativeUICoreFactory()": "NativeUICoreFactory()", + "NativeUICoreFactory": "NativeUICoreFactory()", + "Instance": "Instance", + "Register()": "Register()", + "Register": "Register()", + "Register(NativeUIElementFactoryFlavor)": "Register(NativeUIElementFactoryFlavor)" + } + } + ], + "NativeUIElementFactoryFlavor": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/NativeUIElementFactoryFlavor", + "k": "enum", + "s": "enums" + } + ], + "NativeUIGridFactory": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/NativeUIGridFactory", + "k": "class", + "s": "classes", + "m": { + "NativeUIGridFactory()": "NativeUIGridFactory()", + "NativeUIGridFactory": "NativeUIGridFactory()", + "Instance": "Instance", + "Register()": "Register()", + "Register": "Register()", + "Register(NativeUIElementFactoryFlavor)": "Register(NativeUIElementFactoryFlavor)" + } + } + ], + "NativeUIInputsFactory": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/NativeUIInputsFactory", + "k": "class", + "s": "classes", + "m": { + "NativeUIInputsFactory()": "NativeUIInputsFactory()", + "NativeUIInputsFactory": "NativeUIInputsFactory()", + "Instance": "Instance", + "Register()": "Register()", + "Register": "Register()", + "Register(NativeUIElementFactoryFlavor)": "Register(NativeUIElementFactoryFlavor)" + } + } + ], + "NativeUILayoutsFactory": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/NativeUILayoutsFactory", + "k": "class", + "s": "classes", + "m": { + "NativeUILayoutsFactory()": "NativeUILayoutsFactory()", + "NativeUILayoutsFactory": "NativeUILayoutsFactory()", + "Instance": "Instance", + "Register()": "Register()", + "Register": "Register()", + "Register(NativeUIElementFactoryFlavor)": "Register(NativeUIElementFactoryFlavor)" + } + } + ], + "NeedleVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/NeedleVisualData", + "k": "class", + "s": "classes", + "m": { + "NeedleVisualData()": "NeedleVisualData()", + "NeedleVisualData": "NeedleVisualData()", + "Angle": "Angle", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "NegativeVolumeIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/NegativeVolumeIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "NegativeVolumeIndexIndicator()": "NegativeVolumeIndexIndicator()", + "NegativeVolumeIndexIndicator": "NegativeVolumeIndexIndicator()" + } + } + ], + "NegativeVolumeIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NegativeVolumeIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "NegativeVolumeIndexIndicatorDescription()": "NegativeVolumeIndexIndicatorDescription()", + "NegativeVolumeIndexIndicatorDescription": "NegativeVolumeIndexIndicatorDescription()", + "Type": "Type" + } + } + ], + "NegativeVolumeIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NegativeVolumeIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NegativeVolumeIndexIndicatorDescriptionMetadata()": "NegativeVolumeIndexIndicatorDescriptionMetadata()", + "NegativeVolumeIndexIndicatorDescriptionMetadata": "NegativeVolumeIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NegativeVolumeIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NegativeVolumeIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NegativeVolumeIndexIndicatorDescriptionModule()": "NegativeVolumeIndexIndicatorDescriptionModule()", + "NegativeVolumeIndexIndicatorDescriptionModule": "NegativeVolumeIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NestedActionMode": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/NestedActionMode", + "k": "enum", + "s": "enums" + } + ], + "NextMonthExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextMonthExpression", + "k": "class", + "s": "classes", + "m": { + "NextMonthExpression(FilterExpression)": "NextMonthExpression(FilterExpression)", + "NextMonthExpression": "NextMonthExpression(FilterExpression)", + "NextMonthExpression(string)": "NextMonthExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "NextMonthExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextMonthExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "NextMonthExpressionDescription()": "NextMonthExpressionDescription()", + "NextMonthExpressionDescription": "NextMonthExpressionDescription()", + "Type": "Type" + } + } + ], + "NextMonthExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextMonthExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NextMonthExpressionDescriptionMetadata()": "NextMonthExpressionDescriptionMetadata()", + "NextMonthExpressionDescriptionMetadata": "NextMonthExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NextQuarterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextQuarterExpression", + "k": "class", + "s": "classes", + "m": { + "NextQuarterExpression(FilterExpression)": "NextQuarterExpression(FilterExpression)", + "NextQuarterExpression": "NextQuarterExpression(FilterExpression)", + "NextQuarterExpression(string)": "NextQuarterExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "NextQuarterExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextQuarterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "NextQuarterExpressionDescription()": "NextQuarterExpressionDescription()", + "NextQuarterExpressionDescription": "NextQuarterExpressionDescription()", + "Type": "Type" + } + } + ], + "NextQuarterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextQuarterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NextQuarterExpressionDescriptionMetadata()": "NextQuarterExpressionDescriptionMetadata()", + "NextQuarterExpressionDescriptionMetadata": "NextQuarterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NextWeekExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextWeekExpression", + "k": "class", + "s": "classes", + "m": { + "NextWeekExpression(FilterExpression)": "NextWeekExpression(FilterExpression)", + "NextWeekExpression": "NextWeekExpression(FilterExpression)", + "NextWeekExpression(string)": "NextWeekExpression(string)", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "NextWeekExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextWeekExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "NextWeekExpressionDescription()": "NextWeekExpressionDescription()", + "NextWeekExpressionDescription": "NextWeekExpressionDescription()", + "Type": "Type" + } + } + ], + "NextWeekExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextWeekExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NextWeekExpressionDescriptionMetadata()": "NextWeekExpressionDescriptionMetadata()", + "NextWeekExpressionDescriptionMetadata": "NextWeekExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NextYearExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextYearExpression", + "k": "class", + "s": "classes", + "m": { + "NextYearExpression(FilterExpression)": "NextYearExpression(FilterExpression)", + "NextYearExpression": "NextYearExpression(FilterExpression)", + "NextYearExpression(string)": "NextYearExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "NextYearExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextYearExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "NextYearExpressionDescription()": "NextYearExpressionDescription()", + "NextYearExpressionDescription": "NextYearExpressionDescription()", + "Type": "Type" + } + } + ], + "NextYearExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NextYearExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NextYearExpressionDescriptionMetadata()": "NextYearExpressionDescriptionMetadata()", + "NextYearExpressionDescriptionMetadata": "NextYearExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumberAbbreviatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumberAbbreviatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumberAbbreviatorDescriptionModule()": "NumberAbbreviatorDescriptionModule()", + "NumberAbbreviatorDescriptionModule": "NumberAbbreviatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumberDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumberDescription", + "k": "class", + "s": "classes", + "m": { + "NumberDescription()": "NumberDescription()", + "NumberDescription": "NumberDescription()", + "Value": "Value" + } + } + ], + "NumberFormatSpecifier": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumberFormatSpecifier", + "k": "class", + "s": "classes", + "m": { + "NumberFormatSpecifier()": "NumberFormatSpecifier()", + "NumberFormatSpecifier": "NumberFormatSpecifier()", + "Locale": "Locale", + "MaximumFractionDigits": "MaximumFractionDigits", + "MinimumFractionDigits": "MinimumFractionDigits", + "MinimumIntegerDigits": "MinimumIntegerDigits", + "Notation": "Notation", + "SignDisplay": "SignDisplay", + "Style": "Style", + "UseGrouping": "UseGrouping" + } + } + ], + "NumberFormatSpecifierDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumberFormatSpecifierDescription", + "k": "class", + "s": "classes", + "m": { + "NumberFormatSpecifierDescription()": "NumberFormatSpecifierDescription()", + "NumberFormatSpecifierDescription": "NumberFormatSpecifierDescription()", + "CompactDisplay": "CompactDisplay", + "Currency": "Currency", + "CurrencyCode": "CurrencyCode", + "CurrencyDisplay": "CurrencyDisplay", + "CurrencySign": "CurrencySign", + "Locale": "Locale", + "LocaleMatcher": "LocaleMatcher", + "MaximumFractionDigits": "MaximumFractionDigits", + "MaximumSignificantDigits": "MaximumSignificantDigits", + "MinimumFractionDigits": "MinimumFractionDigits", + "MinimumIntegerDigits": "MinimumIntegerDigits", + "MinimumSignificantDigits": "MinimumSignificantDigits", + "Notation": "Notation", + "NumberingSystem": "NumberingSystem", + "SignDisplay": "SignDisplay", + "Style": "Style", + "Type": "Type", + "Unit": "Unit", + "UnitDisplay": "UnitDisplay", + "UseGrouping": "UseGrouping" + } + } + ], + "NumberFormatSpecifierDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumberFormatSpecifierDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumberFormatSpecifierDescriptionMetadata()": "NumberFormatSpecifierDescriptionMetadata()", + "NumberFormatSpecifierDescriptionMetadata": "NumberFormatSpecifierDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumberFormatSpecifierDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumberFormatSpecifierDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumberFormatSpecifierDescriptionModule()": "NumberFormatSpecifierDescriptionModule()", + "NumberFormatSpecifierDescriptionModule": "NumberFormatSpecifierDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericAngleAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/NumericAngleAxis", + "k": "class", + "s": "classes", + "m": { + "NumericAngleAxis()": "NumericAngleAxis()", + "NumericAngleAxis": "NumericAngleAxis()", + "CompanionAxisLabelMode": "CompanionAxisLabelMode", + "CompanionAxisLabelModeProperty": "CompanionAxisLabelModeProperty", + "CompanionAxisStartAngleOffset": "CompanionAxisStartAngleOffset", + "CompanionAxisStartAngleOffsetProperty": "CompanionAxisStartAngleOffsetProperty", + "GetScaledAngle(double)": "GetScaledAngle(double)", + "GetScaledAngle": "GetScaledAngle(double)", + "GetUnscaledAngle(double)": "GetUnscaledAngle(double)", + "GetUnscaledAngle": "GetUnscaledAngle(double)", + "LabelMode": "LabelMode", + "LabelModeProperty": "LabelModeProperty", + "StartAngleOffset": "StartAngleOffset", + "StartAngleOffsetProperty": "StartAngleOffsetProperty" + } + } + ], + "NumericAngleAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericAngleAxisDescription", + "k": "class", + "s": "classes", + "m": { + "NumericAngleAxisDescription()": "NumericAngleAxisDescription()", + "NumericAngleAxisDescription": "NumericAngleAxisDescription()", + "CompanionAxisLabelMode": "CompanionAxisLabelMode", + "CompanionAxisStartAngleOffset": "CompanionAxisStartAngleOffset", + "LabelMode": "LabelMode", + "StartAngleOffset": "StartAngleOffset", + "Type": "Type" + } + } + ], + "NumericAngleAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericAngleAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericAngleAxisDescriptionMetadata()": "NumericAngleAxisDescriptionMetadata()", + "NumericAngleAxisDescriptionMetadata": "NumericAngleAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericAngleAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericAngleAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericAngleAxisDescriptionModule()": "NumericAngleAxisDescriptionModule()", + "NumericAngleAxisDescriptionModule": "NumericAngleAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericAxisBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/NumericAxisBase", + "k": "class", + "s": "classes", + "m": { + "AbbreviateLargeNumbers": "AbbreviateLargeNumbers", + "AbbreviateLargeNumbersProperty": "AbbreviateLargeNumbersProperty", + "AbbreviatedLabelFormat": "AbbreviatedLabelFormat", + "AbbreviatedLabelFormatProperty": "AbbreviatedLabelFormatProperty", + "AbbreviatedLabelFormatSpecifiers": "AbbreviatedLabelFormatSpecifiers", + "AbbreviatedLabelFormatSpecifiersProperty": "AbbreviatedLabelFormatSpecifiersProperty", + "ActualInterval": "ActualInterval", + "ActualIntervalProperty": "ActualIntervalProperty", + "ActualIsLogarithmic": "ActualIsLogarithmic", + "ActualIsLogarithmicProperty": "ActualIsLogarithmicProperty", + "ActualMaxPrecision": "ActualMaxPrecision", + "ActualMaxPrecisionProperty": "ActualMaxPrecisionProperty", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalProperty": "ActualMinorIntervalProperty", + "ActualVisibleMaximumValue": "ActualVisibleMaximumValue", + "ActualVisibleMaximumValueProperty": "ActualVisibleMaximumValueProperty", + "ActualVisibleMinimumValue": "ActualVisibleMinimumValue", + "ActualVisibleMinimumValueProperty": "ActualVisibleMinimumValueProperty", + "AutoRangeBufferMode": "AutoRangeBufferMode", + "AutoRangeBufferModeProperty": "AutoRangeBufferModeProperty", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIntervalProperty": "CompanionAxisIntervalProperty", + "CompanionAxisIsLogarithmic": "CompanionAxisIsLogarithmic", + "CompanionAxisIsLogarithmicProperty": "CompanionAxisIsLogarithmicProperty", + "CompanionAxisLogarithmBase": "CompanionAxisLogarithmBase", + "CompanionAxisLogarithmBaseProperty": "CompanionAxisLogarithmBaseProperty", + "CompanionAxisMaximumValue": "CompanionAxisMaximumValue", + "CompanionAxisMaximumValueProperty": "CompanionAxisMaximumValueProperty", + "CompanionAxisMinimumValue": "CompanionAxisMinimumValue", + "CompanionAxisMinimumValueProperty": "CompanionAxisMinimumValueProperty", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "CompanionAxisMinorIntervalProperty": "CompanionAxisMinorIntervalProperty", + "FavorLabellingScaleEnd": "FavorLabellingScaleEnd", + "FavorLabellingScaleEndProperty": "FavorLabellingScaleEndProperty", + "HasUserMaximum": "HasUserMaximum", + "HasUserMaximumProperty": "HasUserMaximumProperty", + "HasUserMinimum": "HasUserMinimum", + "HasUserMinimumProperty": "HasUserMinimumProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "IsFormattingAbbreviatedLargeNumber": "IsFormattingAbbreviatedLargeNumber", + "IsFormattingAbbreviatedLargeNumberProperty": "IsFormattingAbbreviatedLargeNumberProperty", + "IsLogarithmic": "IsLogarithmic", + "IsLogarithmicProperty": "IsLogarithmicProperty", + "LogarithmBase": "LogarithmBase", + "LogarithmBaseProperty": "LogarithmBaseProperty", + "MaxPrecision": "MaxPrecision", + "MaxPrecisionProperty": "MaxPrecisionProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "MinorInterval": "MinorInterval", + "MinorIntervalProperty": "MinorIntervalProperty", + "OnFormatAbbreviatedLabel(AxisFormatLabelEventArgs)": "OnFormatAbbreviatedLabel(AxisFormatLabelEventArgs)", + "OnFormatAbbreviatedLabel": "OnFormatAbbreviatedLabel(AxisFormatLabelEventArgs)", + "ReferenceValue": "ReferenceValue", + "ReferenceValueProperty": "ReferenceValueProperty", + "ShouldApplyMaxPrecisionWhenZoomed": "ShouldApplyMaxPrecisionWhenZoomed", + "ShouldApplyMaxPrecisionWhenZoomedProperty": "ShouldApplyMaxPrecisionWhenZoomedProperty", + "UnscaleValue(double)": "UnscaleValue(double)", + "UnscaleValue": "UnscaleValue(double)" + } + } + ], + "NumericAxisBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericAxisBaseDescription", + "k": "class", + "s": "classes", + "m": { + "NumericAxisBaseDescription()": "NumericAxisBaseDescription()", + "NumericAxisBaseDescription": "NumericAxisBaseDescription()", + "AbbreviateLargeNumbers": "AbbreviateLargeNumbers", + "AbbreviatedLabelFormat": "AbbreviatedLabelFormat", + "AbbreviatedLabelFormatSpecifiers": "AbbreviatedLabelFormatSpecifiers", + "ActualInterval": "ActualInterval", + "ActualIntervalChangeRef": "ActualIntervalChangeRef", + "ActualIsLogarithmic": "ActualIsLogarithmic", + "ActualMaxPrecision": "ActualMaxPrecision", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "ActualMinorInterval": "ActualMinorInterval", + "ActualMinorIntervalChangeRef": "ActualMinorIntervalChangeRef", + "ActualVisibleMaximumValue": "ActualVisibleMaximumValue", + "ActualVisibleMinimumValue": "ActualVisibleMinimumValue", + "AutoRangeBufferMode": "AutoRangeBufferMode", + "CompanionAxisInterval": "CompanionAxisInterval", + "CompanionAxisIsLogarithmic": "CompanionAxisIsLogarithmic", + "CompanionAxisLogarithmBase": "CompanionAxisLogarithmBase", + "CompanionAxisMaximumValue": "CompanionAxisMaximumValue", + "CompanionAxisMinimumValue": "CompanionAxisMinimumValue", + "CompanionAxisMinorInterval": "CompanionAxisMinorInterval", + "FavorLabellingScaleEnd": "FavorLabellingScaleEnd", + "FormatAbbreviatedLabelRef": "FormatAbbreviatedLabelRef", + "Interval": "Interval", + "IsFormattingAbbreviatedLargeNumber": "IsFormattingAbbreviatedLargeNumber", + "IsLogarithmic": "IsLogarithmic", + "LogarithmBase": "LogarithmBase", + "MaxPrecision": "MaxPrecision", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "MinorInterval": "MinorInterval", + "ReferenceValue": "ReferenceValue", + "ShouldApplyMaxPrecisionWhenZoomed": "ShouldApplyMaxPrecisionWhenZoomed", + "Type": "Type" + } + } + ], + "NumericAxisBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericAxisBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericAxisBaseDescriptionMetadata()": "NumericAxisBaseDescriptionMetadata()", + "NumericAxisBaseDescriptionMetadata": "NumericAxisBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/NumericCellInfo", + "k": "class", + "s": "classes", + "m": { + "NumericCellInfo()": "NumericCellInfo()", + "NumericCellInfo": "NumericCellInfo()", + "DecimalNumericValue": "DecimalNumericValue", + "DecimalNumericValuePropertyName": "DecimalNumericValuePropertyName", + "FormatSpecifiers": "FormatSpecifiers", + "FormatSpecifiersPropertyName": "FormatSpecifiersPropertyName", + "FormatStringOverride": "FormatStringOverride", + "FormatStringOverridePropertyName": "FormatStringOverridePropertyName", + "HasDecimalValue": "HasDecimalValue", + "HasDecimalValuePropertyName": "HasDecimalValuePropertyName", + "IsPercent": "IsPercent", + "IsPercentPropertyName": "IsPercentPropertyName", + "MaxFractionDigits": "MaxFractionDigits", + "MaxFractionDigitsPropertyName": "MaxFractionDigitsPropertyName", + "MinFractionDigits": "MinFractionDigits", + "MinFractionDigitsPropertyName": "MinFractionDigitsPropertyName", + "MinIntegerDigits": "MinIntegerDigits", + "MinIntegerDigitsPropertyName": "MinIntegerDigitsPropertyName", + "NegativePrefix": "NegativePrefix", + "NegativePrefixPropertyName": "NegativePrefixPropertyName", + "NegativeSuffix": "NegativeSuffix", + "NegativeSuffixPropertyName": "NegativeSuffixPropertyName", + "NumericValue": "NumericValue", + "NumericValuePropertyName": "NumericValuePropertyName", + "PositivePrefix": "PositivePrefix", + "PositivePrefixPropertyName": "PositivePrefixPropertyName", + "PositiveSuffix": "PositiveSuffix", + "PositiveSuffixPropertyName": "PositiveSuffixPropertyName", + "ShowGroupingSeparator": "ShowGroupingSeparator", + "ShowGroupingSeparatorPropertyName": "ShowGroupingSeparatorPropertyName" + } + } + ], + "NumericCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "NumericCellInfoDescription()": "NumericCellInfoDescription()", + "NumericCellInfoDescription": "NumericCellInfoDescription()", + "FormatOverrideRef": "FormatOverrideRef", + "FormatSpecifiers": "FormatSpecifiers", + "FormatStringOverride": "FormatStringOverride", + "HasDecimalValue": "HasDecimalValue", + "IsPercent": "IsPercent", + "MaxFractionDigits": "MaxFractionDigits", + "MinFractionDigits": "MinFractionDigits", + "MinIntegerDigits": "MinIntegerDigits", + "NegativePrefix": "NegativePrefix", + "NegativeSuffix": "NegativeSuffix", + "NumericValue": "NumericValue", + "PositivePrefix": "PositivePrefix", + "PositiveSuffix": "PositiveSuffix", + "ShowGroupingSeparator": "ShowGroupingSeparator", + "Type": "Type" + } + } + ], + "NumericCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericCellInfoDescriptionMetadata()": "NumericCellInfoDescriptionMetadata()", + "NumericCellInfoDescriptionMetadata": "NumericCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/NumericCellModelExport", + "k": "class", + "s": "classes", + "m": { + "NumericCellModelExport()": "NumericCellModelExport()", + "NumericCellModelExport": "NumericCellModelExport()", + "MaxDecimalPlaces": "MaxDecimalPlaces", + "MinDecimalPlaces": "MinDecimalPlaces", + "NumericValue": "NumericValue", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "NumericColumn": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/NumericColumn", + "k": "class", + "s": "classes", + "m": { + "NumericColumn()": "NumericColumn()", + "NumericColumn": "NumericColumn()", + "EditorItemsSource": "EditorItemsSource", + "EditorItemsSourceProperty": "EditorItemsSourceProperty", + "EditorTextField": "EditorTextField", + "EditorTextFieldProperty": "EditorTextFieldProperty", + "EditorType": "EditorType", + "EditorTypeProperty": "EditorTypeProperty", + "EditorValueField": "EditorValueField", + "EditorValueFieldProperty": "EditorValueFieldProperty", + "FormatSpecifiers": "FormatSpecifiers", + "FormatSpecifiersProperty": "FormatSpecifiersProperty", + "FormatString": "FormatString", + "FormatStringProperty": "FormatStringProperty", + "IsPercent": "IsPercent", + "IsPercentProperty": "IsPercentProperty", + "MaxFractionDigits": "MaxFractionDigits", + "MaxFractionDigitsProperty": "MaxFractionDigitsProperty", + "MinFractionDigits": "MinFractionDigits", + "MinFractionDigitsProperty": "MinFractionDigitsProperty", + "MinIntegerDigits": "MinIntegerDigits", + "MinIntegerDigitsProperty": "MinIntegerDigitsProperty", + "NegativePrefix": "NegativePrefix", + "NegativePrefixProperty": "NegativePrefixProperty", + "NegativeSuffix": "NegativeSuffix", + "NegativeSuffixProperty": "NegativeSuffixProperty", + "PositivePrefix": "PositivePrefix", + "PositivePrefixProperty": "PositivePrefixProperty", + "PositiveSuffix": "PositiveSuffix", + "PositiveSuffixProperty": "PositiveSuffixProperty", + "ShowGroupingSeparator": "ShowGroupingSeparator", + "ShowGroupingSeparatorProperty": "ShowGroupingSeparatorProperty" + } + } + ], + "NumericColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericColumnDescription", + "k": "class", + "s": "classes", + "m": { + "NumericColumnDescription()": "NumericColumnDescription()", + "NumericColumnDescription": "NumericColumnDescription()", + "DataSource": "DataSource", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "FormatOverrideRef": "FormatOverrideRef", + "FormatSpecifiers": "FormatSpecifiers", + "FormatString": "FormatString", + "GenericDataSource": "GenericDataSource", + "IsPercent": "IsPercent", + "MaxFractionDigits": "MaxFractionDigits", + "MinFractionDigits": "MinFractionDigits", + "MinIntegerDigits": "MinIntegerDigits", + "NegativePrefix": "NegativePrefix", + "NegativeSuffix": "NegativeSuffix", + "PositivePrefix": "PositivePrefix", + "PositiveSuffix": "PositiveSuffix", + "ShowGroupingSeparator": "ShowGroupingSeparator", + "Type": "Type" + } + } + ], + "NumericColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericColumnDescriptionMetadata()": "NumericColumnDescriptionMetadata()", + "NumericColumnDescriptionMetadata": "NumericColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericColumnDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericColumnDescriptionModule()": "NumericColumnDescriptionModule()", + "NumericColumnDescriptionModule": "NumericColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericRadiusAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/NumericRadiusAxis", + "k": "class", + "s": "classes", + "m": { + "NumericRadiusAxis()": "NumericRadiusAxis()", + "NumericRadiusAxis": "NumericRadiusAxis()", + "GetScaledValue(double)": "GetScaledValue(double)", + "GetScaledValue": "GetScaledValue(double)", + "GetUnscaledValue(double)": "GetUnscaledValue(double)", + "GetUnscaledValue": "GetUnscaledValue(double)", + "InnerRadiusExtentScale": "InnerRadiusExtentScale", + "InnerRadiusExtentScaleProperty": "InnerRadiusExtentScaleProperty", + "RadiusExtentScale": "RadiusExtentScale", + "RadiusExtentScaleProperty": "RadiusExtentScaleProperty" + } + } + ], + "NumericRadiusAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericRadiusAxisDescription", + "k": "class", + "s": "classes", + "m": { + "NumericRadiusAxisDescription()": "NumericRadiusAxisDescription()", + "NumericRadiusAxisDescription": "NumericRadiusAxisDescription()", + "InnerRadiusExtentScale": "InnerRadiusExtentScale", + "RadiusExtentScale": "RadiusExtentScale", + "Type": "Type" + } + } + ], + "NumericRadiusAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericRadiusAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericRadiusAxisDescriptionMetadata()": "NumericRadiusAxisDescriptionMetadata()", + "NumericRadiusAxisDescriptionMetadata": "NumericRadiusAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericRadiusAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericRadiusAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericRadiusAxisDescriptionModule()": "NumericRadiusAxisDescriptionModule()", + "NumericRadiusAxisDescriptionModule": "NumericRadiusAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericScaleMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/NumericScaleMode", + "k": "enum", + "s": "enums" + } + ], + "NumericXAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/NumericXAxis", + "k": "class", + "s": "classes", + "m": { + "NumericXAxis()": "NumericXAxis()", + "NumericXAxis": "NumericXAxis()", + "ScrollRangeIntoView(double, double)": "ScrollRangeIntoView(double, double)", + "ScrollRangeIntoView": "ScrollRangeIntoView(double, double)" + } + } + ], + "NumericXAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "NumericXAxisDescription()": "NumericXAxisDescription()", + "NumericXAxisDescription": "NumericXAxisDescription()", + "Type": "Type" + } + } + ], + "NumericXAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericXAxisDescriptionMetadata()": "NumericXAxisDescriptionMetadata()", + "NumericXAxisDescriptionMetadata": "NumericXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericXAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericXAxisDescriptionModule()": "NumericXAxisDescriptionModule()", + "NumericXAxisDescriptionModule": "NumericXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericYAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/NumericYAxis", + "k": "class", + "s": "classes", + "m": { + "NumericYAxis()": "NumericYAxis()", + "NumericYAxis": "NumericYAxis()", + "ScrollRangeIntoView(double, double)": "ScrollRangeIntoView(double, double)", + "ScrollRangeIntoView": "ScrollRangeIntoView(double, double)" + } + } + ], + "NumericYAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericYAxisDescription", + "k": "class", + "s": "classes", + "m": { + "NumericYAxisDescription()": "NumericYAxisDescription()", + "NumericYAxisDescription": "NumericYAxisDescription()", + "Type": "Type" + } + } + ], + "NumericYAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericYAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "NumericYAxisDescriptionMetadata()": "NumericYAxisDescriptionMetadata()", + "NumericYAxisDescriptionMetadata": "NumericYAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "NumericYAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/NumericYAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "NumericYAxisDescriptionModule()": "NumericYAxisDescriptionModule()", + "NumericYAxisDescriptionModule": "NumericYAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OBJCDefaultOverloadOnNullCollisionAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCDefaultOverloadOnNullCollisionAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCDefaultOverloadOnNullCollisionAttribute()": "OBJCDefaultOverloadOnNullCollisionAttribute()", + "OBJCDefaultOverloadOnNullCollisionAttribute": "OBJCDefaultOverloadOnNullCollisionAttribute()" + } + } + ], + "OBJCEmitIgnoreAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCEmitIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCEmitIgnoreAttribute()": "OBJCEmitIgnoreAttribute()", + "OBJCEmitIgnoreAttribute": "OBJCEmitIgnoreAttribute()" + } + } + ], + "OBJCEmitIgnoreTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCEmitIgnoreTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCEmitIgnoreTypeAttribute()": "OBJCEmitIgnoreTypeAttribute()", + "OBJCEmitIgnoreTypeAttribute": "OBJCEmitIgnoreTypeAttribute()" + } + } + ], + "OBJCGlobalMemberAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCGlobalMemberAttribute()": "OBJCGlobalMemberAttribute()", + "OBJCGlobalMemberAttribute": "OBJCGlobalMemberAttribute()" + } + } + ], + "OBJCIgnoreAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCIgnoreAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCIgnoreAttribute()": "OBJCIgnoreAttribute()", + "OBJCIgnoreAttribute": "OBJCIgnoreAttribute()" + } + } + ], + "OBJCInlineItemAccessAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCInlineItemAccessAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCInlineItemAccessAttribute()": "OBJCInlineItemAccessAttribute()", + "OBJCInlineItemAccessAttribute": "OBJCInlineItemAccessAttribute()", + "OBJCInlineItemAccessAttribute(string)": "OBJCInlineItemAccessAttribute(string)" + } + } + ], + "OBJCInlinePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCInlinePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCInlinePropertyAttribute()": "OBJCInlinePropertyAttribute()", + "OBJCInlinePropertyAttribute": "OBJCInlinePropertyAttribute()" + } + } + ], + "OBJCKeepOriginalNameAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCKeepOriginalNameAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCKeepOriginalNameAttribute()": "OBJCKeepOriginalNameAttribute()", + "OBJCKeepOriginalNameAttribute": "OBJCKeepOriginalNameAttribute()" + } + } + ], + "OBJCLiteralStringAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCLiteralStringAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCLiteralStringAttribute()": "OBJCLiteralStringAttribute()", + "OBJCLiteralStringAttribute": "OBJCLiteralStringAttribute()" + } + } + ], + "OBJCNativeMethodAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCNativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCNativeMethodAttribute(string)": "OBJCNativeMethodAttribute(string)", + "OBJCNativeMethodAttribute": "OBJCNativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "OBJCNativePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCNativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCNativePropertyAttribute()": "OBJCNativePropertyAttribute()", + "OBJCNativePropertyAttribute": "OBJCNativePropertyAttribute()" + } + } + ], + "OBJCNativeTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCNativeTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCNativeTypeAttribute()": "OBJCNativeTypeAttribute()", + "OBJCNativeTypeAttribute": "OBJCNativeTypeAttribute()" + } + } + ], + "OBJCReadOnlyStreamAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCReadOnlyStreamAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCReadOnlyStreamAttribute()": "OBJCReadOnlyStreamAttribute()", + "OBJCReadOnlyStreamAttribute": "OBJCReadOnlyStreamAttribute()" + } + } + ], + "OBJCSubstituteTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCSubstituteTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCSubstituteTypeAttribute(Type)": "OBJCSubstituteTypeAttribute(Type)", + "OBJCSubstituteTypeAttribute": "OBJCSubstituteTypeAttribute(Type)", + "Type": "Type" + } + } + ], + "OBJCSubstituteValueAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OBJCSubstituteValueAttribute", + "k": "class", + "s": "classes", + "m": { + "OBJCSubstituteValueAttribute(object)": "OBJCSubstituteValueAttribute(object)", + "OBJCSubstituteValueAttribute": "OBJCSubstituteValueAttribute(object)", + "AllowCaseLabels": "AllowCaseLabels", + "Value": "Value" + } + } + ], + "ObjectColumn": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ObjectColumn", + "k": "class", + "s": "classes", + "m": { + "ObjectColumn()": "ObjectColumn()", + "ObjectColumn": "ObjectColumn()", + "SetValues(object)": "SetValues(object)", + "SetValues": "SetValues(object)", + "Values": "Values" + } + } + ], + "ObservableCollectionWrapper": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/ObservableCollectionWrapper", + "k": "class", + "s": "classes", + "m": { + "ObservableCollectionWrapper(IList)": "ObservableCollectionWrapper(IList)", + "ObservableCollectionWrapper": "ObservableCollectionWrapper(IList)", + "ShouldDetachOnTargetChange": "ShouldDetachOnTargetChange" + } + } + ], + "ODataDataSourceFilterExpressionVisitor": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ODataDataSourceFilterExpressionVisitor", + "k": "class", + "s": "classes", + "m": { + "ODataDataSourceFilterExpressionVisitor()": "ODataDataSourceFilterExpressionVisitor()", + "ODataDataSourceFilterExpressionVisitor": "ODataDataSourceFilterExpressionVisitor()", + "ODataDataSourceFilterExpressionVisitor(IODataLiteralEmitter)": "ODataDataSourceFilterExpressionVisitor(IODataLiteralEmitter)", + "ToString()": "ToString()", + "ToString": "ToString()", + "VisitFunctionExpression(IFunctionFilterExpression)": "VisitFunctionExpression(IFunctionFilterExpression)", + "VisitFunctionExpression": "VisitFunctionExpression(IFunctionFilterExpression)", + "VisitLiteralExpression(ILiteralFilterExpression)": "VisitLiteralExpression(ILiteralFilterExpression)", + "VisitLiteralExpression": "VisitLiteralExpression(ILiteralFilterExpression)", + "VisitOperationExpression(IOperationFilterExpression)": "VisitOperationExpression(IOperationFilterExpression)", + "VisitOperationExpression": "VisitOperationExpression(IOperationFilterExpression)", + "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)", + "VisitPropertyReferenceExpression": "VisitPropertyReferenceExpression(IPropertyReferenceFilterExpression)" + } + } + ], + "ODataDataSourceSchema": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ODataDataSourceSchema", + "k": "class", + "s": "classes", + "m": { + "ODataDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[])": "ODataDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[])", + "ODataDataSourceSchema": "ODataDataSourceSchema(string[], DataSourceSchemaPropertyType[], string[])", + "PrimaryKey": "PrimaryKey", + "PropertyDataIntents": "PropertyDataIntents", + "PropertyNames": "PropertyNames", + "PropertyTypes": "PropertyTypes", + "SubSchemas": "SubSchemas" + } + } + ], + "ODataSchemaProvider": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ODataSchemaProvider", + "k": "class", + "s": "classes", + "m": { + "ODataSchemaProvider(string)": "ODataSchemaProvider(string)", + "ODataSchemaProvider": "ODataSchemaProvider(string)", + "GetODataDataSourceSchema(string)": "GetODataDataSourceSchema(string)", + "GetODataDataSourceSchema": "GetODataDataSourceSchema(string)" + } + } + ], + "OffsettableWeekExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OffsettableWeekExpression", + "k": "class", + "s": "classes", + "m": { + "OffsettableWeekExpression(FilterExpression)": "OffsettableWeekExpression(FilterExpression)", + "OffsettableWeekExpression": "OffsettableWeekExpression(FilterExpression)", + "OffsettableWeekExpression(string)": "OffsettableWeekExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "Offset": "Offset" + } + } + ], + "OffsettableWeekExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OffsettableWeekExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "OffsettableWeekExpressionDescription()": "OffsettableWeekExpressionDescription()", + "OffsettableWeekExpressionDescription": "OffsettableWeekExpressionDescription()", + "Type": "Type" + } + } + ], + "OffsettableWeekExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OffsettableWeekExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OffsettableWeekExpressionDescriptionMetadata()": "OffsettableWeekExpressionDescriptionMetadata()", + "OffsettableWeekExpressionDescriptionMetadata": "OffsettableWeekExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OmitFromTypeMarkingAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/OmitFromTypeMarkingAttribute", + "k": "class", + "s": "classes", + "m": { + "OmitFromTypeMarkingAttribute()": "OmitFromTypeMarkingAttribute()", + "OmitFromTypeMarkingAttribute": "OmitFromTypeMarkingAttribute()" + } + } + ], + "OnBalanceVolumeIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/OnBalanceVolumeIndicator", + "k": "class", + "s": "classes", + "m": { + "OnBalanceVolumeIndicator()": "OnBalanceVolumeIndicator()", + "OnBalanceVolumeIndicator": "OnBalanceVolumeIndicator()" + } + } + ], + "OnBalanceVolumeIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnBalanceVolumeIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "OnBalanceVolumeIndicatorDescription()": "OnBalanceVolumeIndicatorDescription()", + "OnBalanceVolumeIndicatorDescription": "OnBalanceVolumeIndicatorDescription()", + "Type": "Type" + } + } + ], + "OnBalanceVolumeIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnBalanceVolumeIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnBalanceVolumeIndicatorDescriptionMetadata()": "OnBalanceVolumeIndicatorDescriptionMetadata()", + "OnBalanceVolumeIndicatorDescriptionMetadata": "OnBalanceVolumeIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnBalanceVolumeIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnBalanceVolumeIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OnBalanceVolumeIndicatorDescriptionModule()": "OnBalanceVolumeIndicatorDescriptionModule()", + "OnBalanceVolumeIndicatorDescriptionModule": "OnBalanceVolumeIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnClosedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnClosedEventArgs", + "k": "class", + "s": "classes", + "m": { + "OnClosedEventArgs()": "OnClosedEventArgs()", + "OnClosedEventArgs": "OnClosedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OnClosedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnClosedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OnClosedEventArgsDescription()": "OnClosedEventArgsDescription()", + "OnClosedEventArgsDescription": "OnClosedEventArgsDescription()", + "Type": "Type" + } + } + ], + "OnClosedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnClosedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnClosedEventArgsDescriptionMetadata()": "OnClosedEventArgsDescriptionMetadata()", + "OnClosedEventArgsDescriptionMetadata": "OnClosedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnCollapsedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/OnCollapsedEventArgs", + "k": "class", + "s": "classes", + "m": { + "OnCollapsedEventArgs()": "OnCollapsedEventArgs()", + "OnCollapsedEventArgs": "OnCollapsedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OnCollapsedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnCollapsedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OnCollapsedEventArgsDescription()": "OnCollapsedEventArgsDescription()", + "OnCollapsedEventArgsDescription": "OnCollapsedEventArgsDescription()", + "Type": "Type" + } + } + ], + "OnCollapsedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnCollapsedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnCollapsedEventArgsDescriptionMetadata()": "OnCollapsedEventArgsDescriptionMetadata()", + "OnCollapsedEventArgsDescriptionMetadata": "OnCollapsedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnExpandedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/OnExpandedEventArgs", + "k": "class", + "s": "classes", + "m": { + "OnExpandedEventArgs()": "OnExpandedEventArgs()", + "OnExpandedEventArgs": "OnExpandedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OnExpandedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnExpandedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OnExpandedEventArgsDescription()": "OnExpandedEventArgsDescription()", + "OnExpandedEventArgsDescription": "OnExpandedEventArgsDescription()", + "Type": "Type" + } + } + ], + "OnExpandedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnExpandedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnExpandedEventArgsDescriptionMetadata()": "OnExpandedEventArgsDescriptionMetadata()", + "OnExpandedEventArgsDescriptionMetadata": "OnExpandedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OnPopupEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnPopupEventArgs", + "k": "class", + "s": "classes", + "m": { + "OnPopupEventArgs()": "OnPopupEventArgs()", + "OnPopupEventArgs": "OnPopupEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OnPopupEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnPopupEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OnPopupEventArgsDescription()": "OnPopupEventArgsDescription()", + "OnPopupEventArgsDescription": "OnPopupEventArgsDescription()", + "Type": "Type" + } + } + ], + "OnPopupEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OnPopupEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OnPopupEventArgsDescriptionMetadata()": "OnPopupEventArgsDescriptionMetadata()", + "OnPopupEventArgsDescriptionMetadata": "OnPopupEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OpenStreetMapImagery": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/OpenStreetMapImagery", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapImagery()": "OpenStreetMapImagery()", + "OpenStreetMapImagery": "OpenStreetMapImagery()", + "TilePath": "TilePath" + } + } + ], + "OpenStreetMapImageryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OpenStreetMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapImageryDescription()": "OpenStreetMapImageryDescription()", + "OpenStreetMapImageryDescription": "OpenStreetMapImageryDescription()", + "TilePath": "TilePath", + "Type": "Type" + } + } + ], + "OpenStreetMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OpenStreetMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapImageryDescriptionMetadata()": "OpenStreetMapImageryDescriptionMetadata()", + "OpenStreetMapImageryDescriptionMetadata": "OpenStreetMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OpenStreetMapImageryDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OpenStreetMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapImageryDescriptionModule()": "OpenStreetMapImageryDescriptionModule()", + "OpenStreetMapImageryDescriptionModule": "OpenStreetMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OpenStreetMapTileSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OpenStreetMapTileSource", + "k": "class", + "s": "classes", + "m": { + "OpenStreetMapTileSource()": "OpenStreetMapTileSource()", + "OpenStreetMapTileSource": "OpenStreetMapTileSource()", + "SetTilePathUrl(string)": "SetTilePathUrl(string)", + "SetTilePathUrl": "SetTilePathUrl(string)" + } + } + ], + "OperationFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperationFilterExpression", + "k": "class", + "s": "classes", + "m": { + "OperationFilterExpression()": "OperationFilterExpression()", + "OperationFilterExpression": "OperationFilterExpression()", + "OperationFilterExpression(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)": "OperationFilterExpression(IFilterExpression, FilterExpressionOperatorType, IFilterExpression)", + "OperationFilterExpression(IFilterExpression, FilterExpressionOperatorType, object)": "OperationFilterExpression(IFilterExpression, FilterExpressionOperatorType, object)", + "OperationFilterExpression(string, FilterExpressionOperatorType, IFilterExpression)": "OperationFilterExpression(string, FilterExpressionOperatorType, IFilterExpression)", + "OperationFilterExpression(string, FilterExpressionOperatorType, object)": "OperationFilterExpression(string, FilterExpressionOperatorType, object)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "HasLeft": "HasLeft", + "HasOperator": "HasOperator", + "HasPropertyName": "HasPropertyName", + "HasRight": "HasRight", + "HasValue": "HasValue", + "IsBooleanOperation": "IsBooleanOperation", + "IsComparisonOperation": "IsComparisonOperation", + "IsOperation": "IsOperation", + "Left": "Left", + "Operator": "Operator", + "Precedence": "Precedence", + "PropertyName": "PropertyName", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()", + "Right": "Right", + "Value": "Value" + } + } + ], + "OperationFilterExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperationFilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "OperationFilterExpressionDescription()": "OperationFilterExpressionDescription()", + "OperationFilterExpressionDescription": "OperationFilterExpressionDescription()", + "HasLeft": "HasLeft", + "HasOperator": "HasOperator", + "HasPropertyName": "HasPropertyName", + "HasRight": "HasRight", + "HasValue": "HasValue", + "IsComparisonOperation": "IsComparisonOperation", + "Left": "Left", + "Operator": "Operator", + "PropertyName": "PropertyName", + "Right": "Right", + "Type": "Type" + } + } + ], + "OperationFilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperationFilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OperationFilterExpressionDescriptionMetadata()": "OperationFilterExpressionDescriptionMetadata()", + "OperationFilterExpressionDescriptionMetadata": "OperationFilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OperatorSelectorClosingEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/OperatorSelectorClosingEventArgs", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorClosingEventArgs()": "OperatorSelectorClosingEventArgs()", + "OperatorSelectorClosingEventArgs": "OperatorSelectorClosingEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OperatorSelectorClosingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperatorSelectorClosingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorClosingEventArgsDescription()": "OperatorSelectorClosingEventArgsDescription()", + "OperatorSelectorClosingEventArgsDescription": "OperatorSelectorClosingEventArgsDescription()", + "Type": "Type" + } + } + ], + "OperatorSelectorClosingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperatorSelectorClosingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorClosingEventArgsDescriptionMetadata()": "OperatorSelectorClosingEventArgsDescriptionMetadata()", + "OperatorSelectorClosingEventArgsDescriptionMetadata": "OperatorSelectorClosingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OperatorSelectorOpeningEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/OperatorSelectorOpeningEventArgs", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorOpeningEventArgs()": "OperatorSelectorOpeningEventArgs()", + "OperatorSelectorOpeningEventArgs": "OperatorSelectorOpeningEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OperatorSelectorOpeningEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperatorSelectorOpeningEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorOpeningEventArgsDescription()": "OperatorSelectorOpeningEventArgsDescription()", + "OperatorSelectorOpeningEventArgsDescription": "OperatorSelectorOpeningEventArgsDescription()", + "Type": "Type" + } + } + ], + "OperatorSelectorOpeningEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperatorSelectorOpeningEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorOpeningEventArgsDescriptionMetadata()": "OperatorSelectorOpeningEventArgsDescriptionMetadata()", + "OperatorSelectorOpeningEventArgsDescriptionMetadata": "OperatorSelectorOpeningEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OperatorSelectorValueChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/OperatorSelectorValueChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorValueChangedEventArgs()": "OperatorSelectorValueChangedEventArgs()", + "OperatorSelectorValueChangedEventArgs": "OperatorSelectorValueChangedEventArgs()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OperatorSelectorValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperatorSelectorValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorValueChangedEventArgsDescription()": "OperatorSelectorValueChangedEventArgsDescription()", + "OperatorSelectorValueChangedEventArgsDescription": "OperatorSelectorValueChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "OperatorSelectorValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OperatorSelectorValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OperatorSelectorValueChangedEventArgsDescriptionMetadata()": "OperatorSelectorValueChangedEventArgsDescriptionMetadata()", + "OperatorSelectorValueChangedEventArgsDescriptionMetadata": "OperatorSelectorValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OrdinalTimeXAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/OrdinalTimeXAxis", + "k": "class", + "s": "classes", + "m": { + "OrdinalTimeXAxis()": "OrdinalTimeXAxis()", + "OrdinalTimeXAxis": "OrdinalTimeXAxis()", + "DateTimeMemberPath": "DateTimeMemberPath", + "DateTimeMemberPathProperty": "DateTimeMemberPathProperty", + "LabelFormats": "LabelFormats", + "LabelFormatsProperty": "LabelFormatsProperty", + "LabellingMode": "LabellingMode", + "LabellingModeProperty": "LabellingModeProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "OnVisibleRangeChanged(EventArgs)": "OnVisibleRangeChanged(EventArgs)", + "OnVisibleRangeChanged": "OnVisibleRangeChanged(EventArgs)" + } + } + ], + "OrdinalTimeXAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OrdinalTimeXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "OrdinalTimeXAxisDescription()": "OrdinalTimeXAxisDescription()", + "OrdinalTimeXAxisDescription": "OrdinalTimeXAxisDescription()", + "DateTimeMemberPath": "DateTimeMemberPath", + "LabelFormats": "LabelFormats", + "LabellingMode": "LabellingMode", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Type": "Type" + } + } + ], + "OrdinalTimeXAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OrdinalTimeXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OrdinalTimeXAxisDescriptionMetadata()": "OrdinalTimeXAxisDescriptionMetadata()", + "OrdinalTimeXAxisDescriptionMetadata": "OrdinalTimeXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OrdinalTimeXAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OrdinalTimeXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OrdinalTimeXAxisDescriptionModule()": "OrdinalTimeXAxisDescriptionModule()", + "OrdinalTimeXAxisDescriptionModule": "OrdinalTimeXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OthersCategoryContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/OthersCategoryContext", + "k": "class", + "s": "classes", + "m": { + "OthersCategoryContext()": "OthersCategoryContext()", + "OthersCategoryContext": "OthersCategoryContext()", + "Items": "Items", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OthersCategoryContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OthersCategoryContextDescription", + "k": "class", + "s": "classes", + "m": { + "OthersCategoryContextDescription()": "OthersCategoryContextDescription()", + "OthersCategoryContextDescription": "OthersCategoryContextDescription()", + "ItemsRef": "ItemsRef", + "Type": "Type" + } + } + ], + "OthersCategoryContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OthersCategoryContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OthersCategoryContextDescriptionMetadata()": "OthersCategoryContextDescriptionMetadata()", + "OthersCategoryContextDescriptionMetadata": "OthersCategoryContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OthersCategoryContextDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OthersCategoryContextDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OthersCategoryContextDescriptionModule()": "OthersCategoryContextDescriptionModule()", + "OthersCategoryContextDescriptionModule": "OthersCategoryContextDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OthersCategoryType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/OthersCategoryType", + "k": "enum", + "s": "enums" + } + ], + "OuterLabelAlignment": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/OuterLabelAlignment", + "k": "enum", + "s": "enums" + } + ], + "OverlayProxyDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OverlayProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OverlayProxyDescriptionModule()": "OverlayProxyDescriptionModule()", + "OverlayProxyDescriptionModule": "OverlayProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OverlaysDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OverlaysDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "OverlaysDescriptionModule()": "OverlaysDescriptionModule()", + "OverlaysDescriptionModule": "OverlaysDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OverlayTextInfo": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/OverlayTextInfo", + "k": "class", + "s": "classes", + "m": { + "OverlayTextInfo()": "OverlayTextInfo()", + "OverlayTextInfo": "OverlayTextInfo()", + "Background": "Background", + "BackgroundMode": "BackgroundMode", + "BackgroundShift": "BackgroundShift", + "BorderMode": "BorderMode", + "BorderRadius": "BorderRadius", + "BorderShift": "BorderShift", + "BorderStroke": "BorderStroke", + "BorderThickness": "BorderThickness", + "HorizontalMargin": "HorizontalMargin", + "HorizontalPadding": "HorizontalPadding", + "ShapeBrush": "ShapeBrush", + "ShapeOutline": "ShapeOutline", + "TextAngle": "TextAngle", + "TextColor": "TextColor", + "TextColorMode": "TextColorMode", + "TextColorShift": "TextColorShift", + "TextContent": "TextContent", + "TextLocation": "TextLocation", + "TextVisible": "TextVisible", + "VerticalMargin": "VerticalMargin", + "VerticalPadding": "VerticalPadding", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "OverlayTextInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OverlayTextInfoDescription", + "k": "class", + "s": "classes", + "m": { + "OverlayTextInfoDescription()": "OverlayTextInfoDescription()", + "OverlayTextInfoDescription": "OverlayTextInfoDescription()", + "Background": "Background", + "BackgroundMode": "BackgroundMode", + "BackgroundShift": "BackgroundShift", + "BorderMode": "BorderMode", + "BorderRadius": "BorderRadius", + "BorderShift": "BorderShift", + "BorderStroke": "BorderStroke", + "BorderThickness": "BorderThickness", + "HorizontalMargin": "HorizontalMargin", + "HorizontalPadding": "HorizontalPadding", + "ShapeBrush": "ShapeBrush", + "ShapeOutline": "ShapeOutline", + "TextAngle": "TextAngle", + "TextColor": "TextColor", + "TextColorMode": "TextColorMode", + "TextColorShift": "TextColorShift", + "TextContent": "TextContent", + "TextLocation": "TextLocation", + "TextVisible": "TextVisible", + "Type": "Type", + "VerticalMargin": "VerticalMargin", + "VerticalPadding": "VerticalPadding" + } + } + ], + "OverlayTextInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OverlayTextInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OverlayTextInfoDescriptionMetadata()": "OverlayTextInfoDescriptionMetadata()", + "OverlayTextInfoDescriptionMetadata": "OverlayTextInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "OverlayTextLocation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/OverlayTextLocation", + "k": "enum", + "s": "enums" + } + ], + "OverlayTextUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OverlayTextUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "OverlayTextUpdatingEventArgsDescription()": "OverlayTextUpdatingEventArgsDescription()", + "OverlayTextUpdatingEventArgsDescription": "OverlayTextUpdatingEventArgsDescription()", + "Background": "Background", + "BackgroundMode": "BackgroundMode", + "BackgroundShift": "BackgroundShift", + "BorderMode": "BorderMode", + "BorderRadius": "BorderRadius", + "BorderShift": "BorderShift", + "BorderStroke": "BorderStroke", + "BorderThickness": "BorderThickness", + "DataIndex": "DataIndex", + "HorizontalMargin": "HorizontalMargin", + "HorizontalPadding": "HorizontalPadding", + "ShapeBrush": "ShapeBrush", + "ShapeOutline": "ShapeOutline", + "TextAngle": "TextAngle", + "TextColor": "TextColor", + "TextColorMode": "TextColorMode", + "TextColorShift": "TextColorShift", + "TextContent": "TextContent", + "TextEmpty": "TextEmpty", + "TextLocation": "TextLocation", + "TextVisible": "TextVisible", + "Type": "Type", + "VerticalMargin": "VerticalMargin", + "VerticalPadding": "VerticalPadding" + } + } + ], + "OverlayTextUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/OverlayTextUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "OverlayTextUpdatingEventArgsDescriptionMetadata()": "OverlayTextUpdatingEventArgsDescriptionMetadata()", + "OverlayTextUpdatingEventArgsDescriptionMetadata": "OverlayTextUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PageChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/PageChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "PageChangedEventArgs()": "PageChangedEventArgs()", + "PageChangedEventArgs": "PageChangedEventArgs()", + "Data": "Data", + "Page": "Page", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PageChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PageChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PageChangedEventArgsDescription()": "PageChangedEventArgsDescription()", + "PageChangedEventArgsDescription": "PageChangedEventArgsDescription()", + "DataRef": "DataRef", + "Page": "Page", + "Type": "Type" + } + } + ], + "PageChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PageChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PageChangedEventArgsDescriptionMetadata()": "PageChangedEventArgsDescriptionMetadata()", + "PageChangedEventArgsDescriptionMetadata": "PageChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PagedDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PagedDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "PagedDataSourceDescription()": "PagedDataSourceDescription()", + "PagedDataSourceDescription": "PagedDataSourceDescription()", + "Type": "Type" + } + } + ], + "PagedDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PagedDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PagedDataSourceDescriptionMetadata()": "PagedDataSourceDescriptionMetadata()", + "PagedDataSourceDescriptionMetadata": "PagedDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PageRequestedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PageRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "PageRequestedEventArgs()": "PageRequestedEventArgs()", + "PageRequestedEventArgs": "PageRequestedEventArgs()", + "DataSourceId": "DataSourceId", + "FilterExpressions": "FilterExpressions", + "GroupDescriptions": "GroupDescriptions", + "IsFilterExpressionsDirty": "IsFilterExpressionsDirty", + "IsGroupDescriptionsDirty": "IsGroupDescriptionsDirty", + "IsSchemaRequest": "IsSchemaRequest", + "IsSortDescriptionsDirty": "IsSortDescriptionsDirty", + "IsSummaryDescriptionsDirty": "IsSummaryDescriptionsDirty", + "IsSummaryScopeDirty": "IsSummaryScopeDirty", + "PageIndex": "PageIndex", + "PageSize": "PageSize", + "RequestId": "RequestId", + "SortDescriptions": "SortDescriptions", + "SourceName": "SourceName", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PageRequestedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PageRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PageRequestedEventArgsDescription()": "PageRequestedEventArgsDescription()", + "PageRequestedEventArgsDescription": "PageRequestedEventArgsDescription()", + "DataSourceId": "DataSourceId", + "FilterExpressions": "FilterExpressions", + "GroupDescriptions": "GroupDescriptions", + "IsFilterExpressionsDirty": "IsFilterExpressionsDirty", + "IsGroupDescriptionsDirty": "IsGroupDescriptionsDirty", + "IsSchemaRequest": "IsSchemaRequest", + "IsSortDescriptionsDirty": "IsSortDescriptionsDirty", + "IsSummaryDescriptionsDirty": "IsSummaryDescriptionsDirty", + "IsSummaryScopeDirty": "IsSummaryScopeDirty", + "PageIndex": "PageIndex", + "PageSize": "PageSize", + "RequestId": "RequestId", + "SortDescriptions": "SortDescriptions", + "SourceName": "SourceName", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryScope": "SummaryScope", + "Type": "Type" + } + } + ], + "PageRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PageRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PageRequestedEventArgsDescriptionMetadata()": "PageRequestedEventArgsDescriptionMetadata()", + "PageRequestedEventArgsDescriptionMetadata": "PageRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PagerVisualModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/PagerVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "PagerVisualModelExport()": "PagerVisualModelExport()", + "PagerVisualModelExport": "PagerVisualModelExport()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBorderColor": "ActualBorderColor", + "CurrentPage": "CurrentPage", + "FirstPageButton": "FirstPageButton", + "LastPageButton": "LastPageButton", + "NextPageButton": "NextPageButton", + "PageCount": "PageCount", + "PreviousPageButton": "PreviousPageButton", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight" + } + } + ], + "PathFigureData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PathFigureData", + "k": "class", + "s": "classes", + "m": { + "PathFigureData()": "PathFigureData()", + "PathFigureData": "PathFigureData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Segments": "Segments", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "StartPoint": "StartPoint" + } + } + ], + "PathGeometryData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PathGeometryData", + "k": "class", + "s": "classes", + "m": { + "PathGeometryData()": "PathGeometryData()", + "PathGeometryData": "PathGeometryData()", + "Figures": "Figures", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PathVisualData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PathVisualData", + "k": "class", + "s": "classes", + "m": { + "PathVisualData()": "PathVisualData()", + "PathVisualData": "PathVisualData()", + "Data": "Data", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PenLineCap": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/enums/PenLineCap", + "k": "enum", + "s": "enums" + } + ], + "PenLineJoin": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/enums/PenLineJoin", + "k": "enum", + "s": "enums" + } + ], + "PercentagePriceOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PercentagePriceOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "PercentagePriceOscillatorIndicator()": "PercentagePriceOscillatorIndicator()", + "PercentagePriceOscillatorIndicator": "PercentagePriceOscillatorIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty" + } + } + ], + "PercentagePriceOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentagePriceOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "PercentagePriceOscillatorIndicatorDescription()": "PercentagePriceOscillatorIndicatorDescription()", + "PercentagePriceOscillatorIndicatorDescription": "PercentagePriceOscillatorIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "Type": "Type" + } + } + ], + "PercentagePriceOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentagePriceOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PercentagePriceOscillatorIndicatorDescriptionMetadata()": "PercentagePriceOscillatorIndicatorDescriptionMetadata()", + "PercentagePriceOscillatorIndicatorDescriptionMetadata": "PercentagePriceOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentagePriceOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentagePriceOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PercentagePriceOscillatorIndicatorDescriptionModule()": "PercentagePriceOscillatorIndicatorDescriptionModule()", + "PercentagePriceOscillatorIndicatorDescriptionModule": "PercentagePriceOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentageVolumeOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PercentageVolumeOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "PercentageVolumeOscillatorIndicator()": "PercentageVolumeOscillatorIndicator()", + "PercentageVolumeOscillatorIndicator": "PercentageVolumeOscillatorIndicator()", + "LongPeriod": "LongPeriod", + "LongPeriodProperty": "LongPeriodProperty", + "ShortPeriod": "ShortPeriod", + "ShortPeriodProperty": "ShortPeriodProperty" + } + } + ], + "PercentageVolumeOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentageVolumeOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "PercentageVolumeOscillatorIndicatorDescription()": "PercentageVolumeOscillatorIndicatorDescription()", + "PercentageVolumeOscillatorIndicatorDescription": "PercentageVolumeOscillatorIndicatorDescription()", + "LongPeriod": "LongPeriod", + "ShortPeriod": "ShortPeriod", + "Type": "Type" + } + } + ], + "PercentageVolumeOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentageVolumeOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PercentageVolumeOscillatorIndicatorDescriptionMetadata()": "PercentageVolumeOscillatorIndicatorDescriptionMetadata()", + "PercentageVolumeOscillatorIndicatorDescriptionMetadata": "PercentageVolumeOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentageVolumeOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentageVolumeOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PercentageVolumeOscillatorIndicatorDescriptionModule()": "PercentageVolumeOscillatorIndicatorDescriptionModule()", + "PercentageVolumeOscillatorIndicatorDescriptionModule": "PercentageVolumeOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentChangeYAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PercentChangeYAxis", + "k": "class", + "s": "classes", + "m": { + "PercentChangeYAxis()": "PercentChangeYAxis()", + "PercentChangeYAxis": "PercentChangeYAxis()" + } + } + ], + "PercentChangeYAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentChangeYAxisDescription", + "k": "class", + "s": "classes", + "m": { + "PercentChangeYAxisDescription()": "PercentChangeYAxisDescription()", + "PercentChangeYAxisDescription": "PercentChangeYAxisDescription()", + "Type": "Type" + } + } + ], + "PercentChangeYAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentChangeYAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PercentChangeYAxisDescriptionMetadata()": "PercentChangeYAxisDescriptionMetadata()", + "PercentChangeYAxisDescriptionMetadata": "PercentChangeYAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PercentChangeYAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PercentChangeYAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PercentChangeYAxisDescriptionModule()": "PercentChangeYAxisDescriptionModule()", + "PercentChangeYAxisDescriptionModule": "PercentChangeYAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PieChartBase", + "k": "class", + "s": "classes", + "m": { + "ActualBrushes": "ActualBrushes", + "ActualBrushesProperty": "ActualBrushesProperty", + "ActualItemsSource": "ActualItemsSource", + "ActualItemsSourceProperty": "ActualItemsSourceProperty", + "ActualLabelInnerColor": "ActualLabelInnerColor", + "ActualLabelInnerColorProperty": "ActualLabelInnerColorProperty", + "ActualLabelOuterColor": "ActualLabelOuterColor", + "ActualLabelOuterColorProperty": "ActualLabelOuterColorProperty", + "ActualOutlines": "ActualOutlines", + "ActualOutlinesProperty": "ActualOutlinesProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "AllowSliceExplosion": "AllowSliceExplosion", + "AllowSliceExplosionProperty": "AllowSliceExplosionProperty", + "AllowSliceSelection": "AllowSliceSelection", + "AllowSliceSelectionProperty": "AllowSliceSelectionProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "ExplodedRadius": "ExplodedRadius", + "ExplodedRadiusProperty": "ExplodedRadiusProperty", + "ExplodedSlices": "ExplodedSlices", + "ExplodedSlicesProperty": "ExplodedSlicesProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "InnerExtent": "InnerExtent", + "InnerExtentProperty": "InnerExtentProperty", + "IsDragInteractionEnabled": "IsDragInteractionEnabled", + "IsDragInteractionEnabledProperty": "IsDragInteractionEnabledProperty", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsSurfaceInteractionDisabledProperty": "IsSurfaceInteractionDisabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInnerColor": "LabelInnerColor", + "LabelInnerColorProperty": "LabelInnerColorProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LabelOuterColor": "LabelOuterColor", + "LabelOuterColorProperty": "LabelOuterColorProperty", + "LabelsPosition": "LabelsPosition", + "LabelsPositionProperty": "LabelsPositionProperty", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineMarginProperty": "LeaderLineMarginProperty", + "LeaderLineOpacity": "LeaderLineOpacity", + "LeaderLineOpacityProperty": "LeaderLineOpacityProperty", + "LeaderLineStroke": "LeaderLineStroke", + "LeaderLineStrokeProperty": "LeaderLineStrokeProperty", + "LeaderLineStrokeThickness": "LeaderLineStrokeThickness", + "LeaderLineStrokeThicknessProperty": "LeaderLineStrokeThicknessProperty", + "LeaderLineType": "LeaderLineType", + "LeaderLineTypeProperty": "LeaderLineTypeProperty", + "LeaderLineVisibility": "LeaderLineVisibility", + "LeaderLineVisibilityProperty": "LeaderLineVisibilityProperty", + "Legend": "Legend", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendEmptyValuesModeProperty": "LegendEmptyValuesModeProperty", + "LegendLabelFormat": "LegendLabelFormat", + "LegendLabelFormatProperty": "LegendLabelFormatProperty", + "LegendLabelFormatSpecifiers": "LegendLabelFormatSpecifiers", + "LegendLabelFormatSpecifiersProperty": "LegendLabelFormatSpecifiersProperty", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendLabelMemberPathProperty": "LegendLabelMemberPathProperty", + "LegendOthersLabelFormat": "LegendOthersLabelFormat", + "LegendOthersLabelFormatProperty": "LegendOthersLabelFormatProperty", + "LegendOthersLabelFormatSpecifiers": "LegendOthersLabelFormatSpecifiers", + "LegendOthersLabelFormatSpecifiersProperty": "LegendOthersLabelFormatSpecifiersProperty", + "LegendProperty": "LegendProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "OnFormatLabel(PieChartFormatLabelEventArgs)": "OnFormatLabel(PieChartFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(PieChartFormatLabelEventArgs)", + "OnFormatLegendLabel(PieChartFormatLabelEventArgs)": "OnFormatLegendLabel(PieChartFormatLabelEventArgs)", + "OnFormatLegendLabel": "OnFormatLegendLabel(PieChartFormatLabelEventArgs)", + "OnLabelClick(LabelClickEventArgs)": "OnLabelClick(LabelClickEventArgs)", + "OnLabelClick": "OnLabelClick(LabelClickEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectedItemChanged(SelectedItemChangedEventArgs)": "OnSelectedItemChanged(SelectedItemChangedEventArgs)", + "OnSelectedItemChanged": "OnSelectedItemChanged(SelectedItemChangedEventArgs)", + "OnSelectedItemChanging(SelectedItemChangingEventArgs)": "OnSelectedItemChanging(SelectedItemChangingEventArgs)", + "OnSelectedItemChanging": "OnSelectedItemChanging(SelectedItemChangingEventArgs)", + "OnSelectedItemsChanged(SelectedItemsChangedEventArgs)": "OnSelectedItemsChanged(SelectedItemsChangedEventArgs)", + "OnSelectedItemsChanged": "OnSelectedItemsChanged(SelectedItemsChangedEventArgs)", + "OnSelectedItemsChanging(SelectedItemsChangingEventArgs)": "OnSelectedItemsChanging(SelectedItemsChangingEventArgs)", + "OnSelectedItemsChanging": "OnSelectedItemsChanging(SelectedItemsChangingEventArgs)", + "OnSliceClick(SliceClickEventArgs)": "OnSliceClick(SliceClickEventArgs)", + "OnSliceClick": "OnSliceClick(SliceClickEventArgs)", + "OnSliceEnter(SliceEventArgs)": "OnSliceEnter(SliceEventArgs)", + "OnSliceEnter": "OnSliceEnter(SliceEventArgs)", + "OnSliceHover(SliceEventArgs)": "OnSliceHover(SliceEventArgs)", + "OnSliceHover": "OnSliceHover(SliceEventArgs)", + "OnSliceLeave(SliceEventArgs)": "OnSliceLeave(SliceEventArgs)", + "OnSliceLeave": "OnSliceLeave(SliceEventArgs)", + "OthersCategoryFill": "OthersCategoryFill", + "OthersCategoryFillProperty": "OthersCategoryFillProperty", + "OthersCategoryOpacity": "OthersCategoryOpacity", + "OthersCategoryOpacityProperty": "OthersCategoryOpacityProperty", + "OthersCategoryStroke": "OthersCategoryStroke", + "OthersCategoryStrokeProperty": "OthersCategoryStrokeProperty", + "OthersCategoryStrokeThickness": "OthersCategoryStrokeThickness", + "OthersCategoryStrokeThicknessProperty": "OthersCategoryStrokeThicknessProperty", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryTextProperty": "OthersCategoryTextProperty", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryThresholdProperty": "OthersCategoryThresholdProperty", + "OthersCategoryType": "OthersCategoryType", + "OthersCategoryTypeProperty": "OthersCategoryTypeProperty", + "OthersLabelFormat": "OthersLabelFormat", + "OthersLabelFormatProperty": "OthersLabelFormatProperty", + "OthersLabelFormatSpecifiers": "OthersLabelFormatSpecifiers", + "OthersLabelFormatSpecifiersProperty": "OthersLabelFormatSpecifiersProperty", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RadiusFactor": "RadiusFactor", + "RadiusFactorProperty": "RadiusFactorProperty", + "SelectedItem": "SelectedItem", + "SelectedItemProperty": "SelectedItemProperty", + "SelectedItems": "SelectedItems", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceFillProperty": "SelectedSliceFillProperty", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceOpacityProperty": "SelectedSliceOpacityProperty", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeProperty": "SelectedSliceStrokeProperty", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectedSliceStrokeThicknessProperty": "SelectedSliceStrokeThicknessProperty", + "SelectedSlices": "SelectedSlices", + "SelectedSlicesProperty": "SelectedSlicesProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldDisplayMockDataProperty": "ShouldDisplayMockDataProperty", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "ShouldUseSkeletonStyleForMockDataProperty": "ShouldUseSkeletonStyleForMockDataProperty", + "SimulateLeftClick(Point)": "SimulateLeftClick(Point)", + "SimulateLeftClick": "SimulateLeftClick(Point)", + "StartAngle": "StartAngle", + "StartAngleProperty": "StartAngleProperty", + "SweepDirection": "SweepDirection", + "SweepDirectionProperty": "SweepDirectionProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PieChartBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieChartBaseDescription", + "k": "class", + "s": "classes", + "m": { + "PieChartBaseDescription()": "PieChartBaseDescription()", + "PieChartBaseDescription": "PieChartBaseDescription()", + "ActualBrushes": "ActualBrushes", + "ActualLabelInnerColor": "ActualLabelInnerColor", + "ActualLabelOuterColor": "ActualLabelOuterColor", + "ActualLegendItemBadgeTemplateRef": "ActualLegendItemBadgeTemplateRef", + "ActualOutlines": "ActualOutlines", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AllowSliceExplosion": "AllowSliceExplosion", + "AllowSliceSelection": "AllowSliceSelection", + "Brushes": "Brushes", + "DataSourceRef": "DataSourceRef", + "ExplodedRadius": "ExplodedRadius", + "ExplodedSlices": "ExplodedSlices", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "FormatLegendLabelRef": "FormatLegendLabelRef", + "InnerExtent": "InnerExtent", + "IsDragInteractionEnabled": "IsDragInteractionEnabled", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "LabelClickRef": "LabelClickRef", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInnerColor": "LabelInnerColor", + "LabelMemberPath": "LabelMemberPath", + "LabelOuterColor": "LabelOuterColor", + "LabelsPosition": "LabelsPosition", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineType": "LeaderLineType", + "LeaderLineVisibility": "LeaderLineVisibility", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "LegendItemTemplateRef": "LegendItemTemplateRef", + "LegendLabelFormat": "LegendLabelFormat", + "LegendLabelFormatSpecifiers": "LegendLabelFormatSpecifiers", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendOthersLabelFormat": "LegendOthersLabelFormat", + "LegendOthersLabelFormatSpecifiers": "LegendOthersLabelFormatSpecifiers", + "LegendRef": "LegendRef", + "OthersCategoryFill": "OthersCategoryFill", + "OthersCategoryOpacity": "OthersCategoryOpacity", + "OthersCategoryStroke": "OthersCategoryStroke", + "OthersCategoryStrokeThickness": "OthersCategoryStrokeThickness", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryType": "OthersCategoryType", + "OthersLabelFormat": "OthersLabelFormat", + "OthersLabelFormatSpecifiers": "OthersLabelFormatSpecifiers", + "Outlines": "Outlines", + "PixelScalingRatio": "PixelScalingRatio", + "RadiusFactor": "RadiusFactor", + "SelectedItem": "SelectedItem", + "SelectedItemChangedRef": "SelectedItemChangedRef", + "SelectedItemChangingRef": "SelectedItemChangingRef", + "SelectedItems": "SelectedItems", + "SelectedItemsChangedRef": "SelectedItemsChangedRef", + "SelectedItemsChangingRef": "SelectedItemsChangingRef", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectionMode": "SelectionMode", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "SliceClickRef": "SliceClickRef", + "SliceEnterRef": "SliceEnterRef", + "SliceHoverRef": "SliceHoverRef", + "SliceLeaveRef": "SliceLeaveRef", + "StartAngle": "StartAngle", + "SweepDirection": "SweepDirection", + "TextStyle": "TextStyle", + "TooltipTemplateRef": "TooltipTemplateRef", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "PieChartBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieChartBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PieChartBaseDescriptionMetadata()": "PieChartBaseDescriptionMetadata()", + "PieChartBaseDescriptionMetadata": "PieChartBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieChartCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PieChartCoreDescriptionModule()": "PieChartCoreDescriptionModule()", + "PieChartCoreDescriptionModule": "PieChartCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartDashboardTileDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieChartDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PieChartDashboardTileDescriptionModule()": "PieChartDashboardTileDescriptionModule()", + "PieChartDashboardTileDescriptionModule": "PieChartDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/PieChartDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "PieChartDashboardTileFeature()": "PieChartDashboardTileFeature()", + "PieChartDashboardTileFeature": "PieChartDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "PieChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieChartDescription", + "k": "class", + "s": "classes", + "m": { + "PieChartDescription()": "PieChartDescription()", + "PieChartDescription": "PieChartDescription()", + "Background": "Background", + "Height": "Height", + "Type": "Type", + "Width": "Width" + } + } + ], + "PieChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PieChartDescriptionMetadata()": "PieChartDescriptionMetadata()", + "PieChartDescriptionMetadata": "PieChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieChartDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PieChartDescriptionModule()": "PieChartDescriptionModule()", + "PieChartDescriptionModule": "PieChartDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieChartFormatLabelEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PieChartFormatLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "PieChartFormatLabelEventArgs()": "PieChartFormatLabelEventArgs()", + "PieChartFormatLabelEventArgs": "PieChartFormatLabelEventArgs()", + "Item": "Item", + "Label": "Label", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PieChartMockDataItem": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PieChartMockDataItem", + "k": "class", + "s": "classes", + "m": { + "PieChartMockDataItem()": "PieChartMockDataItem()", + "PieChartMockDataItem": "PieChartMockDataItem()", + "Label": "Label", + "Value": "Value" + } + } + ], + "PieChartSweepDirection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/PieChartSweepDirection", + "k": "enum", + "s": "enums" + } + ], + "PieChartVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PieChartVisualData", + "k": "class", + "s": "classes", + "m": { + "PieChartVisualData()": "PieChartVisualData()", + "PieChartVisualData": "PieChartVisualData()", + "DipScalingRatio": "DipScalingRatio", + "Height": "Height", + "IsViewportScaled": "IsViewportScaled", + "LeaderLineMargin": "LeaderLineMargin", + "Name": "Name", + "Others": "Others", + "OthersSlice": "OthersSlice", + "RadiusFactor": "RadiusFactor", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Slices": "Slices", + "Viewport": "Viewport", + "Width": "Width" + } + } + ], + "PieSliceCollisionGeometry": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieSliceCollisionGeometry", + "k": "class", + "s": "classes", + "m": { + "PieSliceCollisionGeometry(double, double, double, double, double, double)": "PieSliceCollisionGeometry(double, double, double, double, double, double)", + "PieSliceCollisionGeometry": "PieSliceCollisionGeometry(double, double, double, double, double, double)", + "BoundingBox": "BoundingBox", + "CenterX": "CenterX", + "CenterY": "CenterY", + "CollidesWithCore(CollisionRect)": "CollidesWithCore(CollisionRect)", + "CollidesWithCore": "CollidesWithCore(CollisionRect)", + "CollidesWithCoreHeavy(CollisionRect)": "CollidesWithCoreHeavy(CollisionRect)", + "CollidesWithCoreHeavy": "CollidesWithCoreHeavy(CollisionRect)", + "CollidesWithHeavy(CollisionRect)": "CollidesWithHeavy(CollisionRect)", + "CollidesWithHeavy": "CollidesWithHeavy(CollisionRect)", + "EndAngle": "EndAngle", + "InnerRadius": "InnerRadius", + "Radius": "Radius", + "StartAngle": "StartAngle", + "Type": "Type" + } + } + ], + "PieSliceDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PieSliceDataContext", + "k": "class", + "s": "classes", + "m": { + "PieSliceDataContext()": "PieSliceDataContext()", + "PieSliceDataContext": "PieSliceDataContext()", + "IsOthersSlice": "IsOthersSlice", + "PercentValue": "PercentValue" + } + } + ], + "PieSliceDataContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieSliceDataContextDescription", + "k": "class", + "s": "classes", + "m": { + "PieSliceDataContextDescription()": "PieSliceDataContextDescription()", + "PieSliceDataContextDescription": "PieSliceDataContextDescription()", + "IsOthersSlice": "IsOthersSlice", + "PercentValue": "PercentValue", + "Type": "Type" + } + } + ], + "PieSliceDataContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieSliceDataContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PieSliceDataContextDescriptionMetadata()": "PieSliceDataContextDescriptionMetadata()", + "PieSliceDataContextDescriptionMetadata": "PieSliceDataContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieSliceOthersContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PieSliceOthersContext", + "k": "class", + "s": "classes", + "m": { + "PieSliceOthersContext()": "PieSliceOthersContext()", + "PieSliceOthersContext": "PieSliceOthersContext()", + "Data": "Data", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PieSliceOthersContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieSliceOthersContextDescription", + "k": "class", + "s": "classes", + "m": { + "PieSliceOthersContextDescription()": "PieSliceOthersContextDescription()", + "PieSliceOthersContextDescription": "PieSliceOthersContextDescription()", + "Type": "Type" + } + } + ], + "PieSliceOthersContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PieSliceOthersContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PieSliceOthersContextDescriptionMetadata()": "PieSliceOthersContextDescriptionMetadata()", + "PieSliceOthersContextDescriptionMetadata": "PieSliceOthersContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PieSliceVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PieSliceVisualData", + "k": "class", + "s": "classes", + "m": { + "PieSliceVisualData()": "PieSliceVisualData()", + "PieSliceVisualData": "PieSliceVisualData()", + "Appearance": "Appearance", + "EndAngle": "EndAngle", + "ExplodedOrigin": "ExplodedOrigin", + "ExplodedRadius": "ExplodedRadius", + "Index": "Index", + "InnerExtentEnd": "InnerExtentEnd", + "InnerExtentStart": "InnerExtentStart", + "IsExploded": "IsExploded", + "IsOthersSlice": "IsOthersSlice", + "IsSelected": "IsSelected", + "Label": "Label", + "LabelAngle": "LabelAngle", + "LabelAppearance": "LabelAppearance", + "LabelBounds": "LabelBounds", + "LeaderLineAppearance": "LeaderLineAppearance", + "LeaderLinePath": "LeaderLinePath", + "Origin": "Origin", + "Radius": "Radius", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SlicePath": "SlicePath", + "StartAngle": "StartAngle" + } + } + ], + "PieSliceVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PieSliceVisualDataList", + "k": "class", + "s": "classes", + "m": { + "PieSliceVisualDataList()": "PieSliceVisualDataList()", + "PieSliceVisualDataList": "PieSliceVisualDataList()" + } + } + ], + "PinnedAreaSeparator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/PinnedAreaSeparator", + "k": "class", + "s": "classes", + "m": { + "PinnedAreaSeparator()": "PinnedAreaSeparator()", + "PinnedAreaSeparator": "PinnedAreaSeparator()" + } + } + ], + "PinnedAreaSeparatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PinnedAreaSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "PinnedAreaSeparatorDescription()": "PinnedAreaSeparatorDescription()", + "PinnedAreaSeparatorDescription": "PinnedAreaSeparatorDescription()", + "Type": "Type" + } + } + ], + "PinnedAreaSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PinnedAreaSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PinnedAreaSeparatorDescriptionMetadata()": "PinnedAreaSeparatorDescriptionMetadata()", + "PinnedAreaSeparatorDescriptionMetadata": "PinnedAreaSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PinnedAreaSeparatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PinnedAreaSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PinnedAreaSeparatorDescriptionModule()": "PinnedAreaSeparatorDescriptionModule()", + "PinnedAreaSeparatorDescriptionModule": "PinnedAreaSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PinnedPositions": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/PinnedPositions", + "k": "enum", + "s": "enums" + } + ], + "PlatformPixelScaler": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/PlatformPixelScaler", + "k": "class", + "s": "classes", + "m": { + "ClampPixelScalingRatio(double)": "ClampPixelScalingRatio(double)", + "ClampPixelScalingRatio": "ClampPixelScalingRatio(double)", + "ToFontPixelUnits(double)": "ToFontPixelUnits(double)", + "ToFontPixelUnits": "ToFontPixelUnits(double)", + "ToNativePixelUnits(double)": "ToNativePixelUnits(double)", + "ToNativePixelUnits": "ToNativePixelUnits(double)", + "ToPixelUnits(double)": "ToPixelUnits(double)", + "ToPixelUnits": "ToPixelUnits(double)" + } + } + ], + "PlatformServices": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/PlatformServices", + "k": "class", + "s": "classes", + "m": { + "AppPackageLoader": "AppPackageLoader", + "BitmapUtilities": "BitmapUtilities", + "PixelScaler": "PixelScaler", + "PlatformType": "PlatformType", + "RegisterAppPackageLoader(IPlatformAppPackageLoader)": "RegisterAppPackageLoader(IPlatformAppPackageLoader)", + "RegisterAppPackageLoader": "RegisterAppPackageLoader(IPlatformAppPackageLoader)", + "RegisterBitmapUtilities(IPlatformBitmapUtilities)": "RegisterBitmapUtilities(IPlatformBitmapUtilities)", + "RegisterBitmapUtilities": "RegisterBitmapUtilities(IPlatformBitmapUtilities)", + "RegisterPixelScaler(IPlatformPixelScaler)": "RegisterPixelScaler(IPlatformPixelScaler)", + "RegisterPixelScaler": "RegisterPixelScaler(IPlatformPixelScaler)", + "RegisterPlatformType(PlatformType)": "RegisterPlatformType(PlatformType)", + "RegisterPlatformType": "RegisterPlatformType(PlatformType)", + "RegisterTextMetrics(IPlatformTextMetrics)": "RegisterTextMetrics(IPlatformTextMetrics)", + "RegisterTextMetrics": "RegisterTextMetrics(IPlatformTextMetrics)", + "RegisterUtilities(IPlatformUtilities)": "RegisterUtilities(IPlatformUtilities)", + "RegisterUtilities": "RegisterUtilities(IPlatformUtilities)", + "TextMetrics": "TextMetrics", + "Utilities": "Utilities" + } + } + ], + "PlatformType": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/enums/PlatformType", + "k": "enum", + "s": "enums" + } + ], + "PlotAreaMouseButtonEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PlotAreaMouseButtonEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PlotAreaMouseButtonEventArgsDescription()": "PlotAreaMouseButtonEventArgsDescription()", + "PlotAreaMouseButtonEventArgsDescription": "PlotAreaMouseButtonEventArgsDescription()", + "ChartPosition": "ChartPosition", + "ManipulationOccurred": "ManipulationOccurred", + "PlotAreaPosition": "PlotAreaPosition", + "Type": "Type", + "Viewer": "Viewer" + } + } + ], + "PlotAreaMouseButtonEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PlotAreaMouseButtonEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PlotAreaMouseButtonEventArgsDescriptionMetadata()": "PlotAreaMouseButtonEventArgsDescriptionMetadata()", + "PlotAreaMouseButtonEventArgsDescriptionMetadata": "PlotAreaMouseButtonEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PlotAreaMouseEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PlotAreaMouseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PlotAreaMouseEventArgsDescription()": "PlotAreaMouseEventArgsDescription()", + "PlotAreaMouseEventArgsDescription": "PlotAreaMouseEventArgsDescription()", + "ChartPosition": "ChartPosition", + "IsDuringManipulation": "IsDuringManipulation", + "PlotAreaPosition": "PlotAreaPosition", + "Type": "Type", + "Viewer": "Viewer" + } + } + ], + "PlotAreaMouseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PlotAreaMouseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PlotAreaMouseEventArgsDescriptionMetadata()": "PlotAreaMouseEventArgsDescriptionMetadata()", + "PlotAreaMouseEventArgsDescriptionMetadata": "PlotAreaMouseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PointData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PointData", + "k": "class", + "s": "classes", + "m": { + "PointData(double, double)": "PointData(double, double)", + "PointData": "PointData(double, double)", + "Empty": "Empty", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "X": "X", + "Y": "Y" + } + } + ], + "PointDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PointDescription", + "k": "class", + "s": "classes", + "m": { + "PointDescription()": "PointDescription()", + "PointDescription": "PointDescription()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "X": "X", + "Y": "Y" + } + } + ], + "PointerTooltipVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PointerTooltipVisualData", + "k": "class", + "s": "classes", + "m": { + "PointerTooltipVisualData()": "PointerTooltipVisualData()", + "PointerTooltipVisualData": "PointerTooltipVisualData()", + "BoxShape": "BoxShape", + "CategoryNames": "CategoryNames", + "Content": "Content", + "OffsetX": "OffsetX", + "OffsetY": "OffsetY", + "PointerFillShape": "PointerFillShape", + "PointerOutlineShape": "PointerOutlineShape", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Viewport": "Viewport" + } + } + ], + "PointerTooltipVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PointerTooltipVisualDataList", + "k": "class", + "s": "classes", + "m": { + "PointerTooltipVisualDataList()": "PointerTooltipVisualDataList()", + "PointerTooltipVisualDataList": "PointerTooltipVisualDataList()" + } + } + ], + "PointSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PointSeries", + "k": "class", + "s": "classes", + "m": { + "PointSeries()": "PointSeries()", + "PointSeries": "PointSeries()" + } + } + ], + "PointSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PointSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PointSeriesDescription()": "PointSeriesDescription()", + "PointSeriesDescription": "PointSeriesDescription()", + "Type": "Type" + } + } + ], + "PointSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PointSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PointSeriesDescriptionMetadata()": "PointSeriesDescriptionMetadata()", + "PointSeriesDescriptionMetadata": "PointSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PointSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PointSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PointSeriesDescriptionModule()": "PointSeriesDescriptionModule()", + "PointSeriesDescriptionModule": "PointSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PolarAreaSeries", + "k": "class", + "s": "classes", + "m": { + "PolarAreaSeries()": "PolarAreaSeries()", + "PolarAreaSeries": "PolarAreaSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "PolarAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarAreaSeriesDescription()": "PolarAreaSeriesDescription()", + "PolarAreaSeriesDescription": "PolarAreaSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "PolarAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarAreaSeriesDescriptionMetadata()": "PolarAreaSeriesDescriptionMetadata()", + "PolarAreaSeriesDescriptionMetadata": "PolarAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarAreaSeriesDescriptionModule()": "PolarAreaSeriesDescriptionModule()", + "PolarAreaSeriesDescriptionModule": "PolarAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PolarBase", + "k": "class", + "s": "classes", + "m": { + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualItemSearchModeProperty": "ActualItemSearchModeProperty", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "AngleAxis": "AngleAxis", + "AngleAxisProperty": "AngleAxisProperty", + "AngleMemberAsLegendLabel": "AngleMemberAsLegendLabel", + "AngleMemberAsLegendLabelProperty": "AngleMemberAsLegendLabelProperty", + "AngleMemberAsLegendUnit": "AngleMemberAsLegendUnit", + "AngleMemberAsLegendUnitProperty": "AngleMemberAsLegendUnitProperty", + "AngleMemberPath": "AngleMemberPath", + "AngleMemberPathProperty": "AngleMemberPathProperty", + "GetPolarItems(int, int)": "GetPolarItems(int, int)", + "GetPolarItems": "GetPolarItems(int, int)", + "HighlightedAngleMemberPath": "HighlightedAngleMemberPath", + "HighlightedAngleMemberPathProperty": "HighlightedAngleMemberPathProperty", + "HighlightedRadiusMemberPath": "HighlightedRadiusMemberPath", + "HighlightedRadiusMemberPathProperty": "HighlightedRadiusMemberPathProperty", + "IsCustomPolarMarkerStyleAllowed": "IsCustomPolarMarkerStyleAllowed", + "IsCustomPolarMarkerStyleAllowedProperty": "IsCustomPolarMarkerStyleAllowedProperty", + "IsCustomPolarStyleAllowed": "IsCustomPolarStyleAllowed", + "IsCustomPolarStyleAllowedProperty": "IsCustomPolarStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "MaximumMarkers": "MaximumMarkers", + "MaximumMarkersProperty": "MaximumMarkersProperty", + "OnAssigningPolarMarkerStyle(AssigningPolarMarkerStyleEventArgs)": "OnAssigningPolarMarkerStyle(AssigningPolarMarkerStyleEventArgs)", + "OnAssigningPolarMarkerStyle": "OnAssigningPolarMarkerStyle(AssigningPolarMarkerStyleEventArgs)", + "OnAssigningPolarStyle(AssigningPolarStyleEventArgs)": "OnAssigningPolarStyle(AssigningPolarStyleEventArgs)", + "OnAssigningPolarStyle": "OnAssigningPolarStyle(AssigningPolarStyleEventArgs)", + "RadiusAxis": "RadiusAxis", + "RadiusAxisProperty": "RadiusAxisProperty", + "RadiusMemberAsLegendLabel": "RadiusMemberAsLegendLabel", + "RadiusMemberAsLegendLabelProperty": "RadiusMemberAsLegendLabelProperty", + "RadiusMemberAsLegendUnit": "RadiusMemberAsLegendUnit", + "RadiusMemberAsLegendUnitProperty": "RadiusMemberAsLegendUnitProperty", + "RadiusMemberPath": "RadiusMemberPath", + "RadiusMemberPathProperty": "RadiusMemberPathProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "UseCartesianInterpolation": "UseCartesianInterpolation", + "UseCartesianInterpolationProperty": "UseCartesianInterpolationProperty" + } + } + ], + "PolarBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarBaseDescription", + "k": "class", + "s": "classes", + "m": { + "PolarBaseDescription()": "PolarBaseDescription()", + "PolarBaseDescription": "PolarBaseDescription()", + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "AngleAxisRef": "AngleAxisRef", + "AngleMemberAsLegendLabel": "AngleMemberAsLegendLabel", + "AngleMemberAsLegendUnit": "AngleMemberAsLegendUnit", + "AngleMemberPath": "AngleMemberPath", + "AssigningPolarMarkerStyleRef": "AssigningPolarMarkerStyleRef", + "AssigningPolarStyleRef": "AssigningPolarStyleRef", + "ClipSeriesToBounds": "ClipSeriesToBounds", + "HighlightedAngleMemberPath": "HighlightedAngleMemberPath", + "HighlightedRadiusMemberPath": "HighlightedRadiusMemberPath", + "IsCustomPolarMarkerStyleAllowed": "IsCustomPolarMarkerStyleAllowed", + "IsCustomPolarStyleAllowed": "IsCustomPolarStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchThreshold": "ItemSearchThreshold", + "MaximumMarkers": "MaximumMarkers", + "RadiusAxisRef": "RadiusAxisRef", + "RadiusMemberAsLegendLabel": "RadiusMemberAsLegendLabel", + "RadiusMemberAsLegendUnit": "RadiusMemberAsLegendUnit", + "RadiusMemberPath": "RadiusMemberPath", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "TrendLineZIndex": "TrendLineZIndex", + "Type": "Type", + "UseCartesianInterpolation": "UseCartesianInterpolation" + } + } + ], + "PolarBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarBaseDescriptionMetadata()": "PolarBaseDescriptionMetadata()", + "PolarBaseDescriptionMetadata": "PolarBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarLineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PolarLineSeries", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeries()": "PolarLineSeries()", + "PolarLineSeries": "PolarLineSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "PolarLineSeriesBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PolarLineSeriesBase", + "k": "class", + "s": "classes" + } + ], + "PolarLineSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarLineSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesBaseDescription()": "PolarLineSeriesBaseDescription()", + "PolarLineSeriesBaseDescription": "PolarLineSeriesBaseDescription()", + "Type": "Type" + } + } + ], + "PolarLineSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarLineSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesBaseDescriptionMetadata()": "PolarLineSeriesBaseDescriptionMetadata()", + "PolarLineSeriesBaseDescriptionMetadata": "PolarLineSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarLineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesDescription()": "PolarLineSeriesDescription()", + "PolarLineSeriesDescription": "PolarLineSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "PolarLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesDescriptionMetadata()": "PolarLineSeriesDescriptionMetadata()", + "PolarLineSeriesDescriptionMetadata": "PolarLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarLineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarLineSeriesDescriptionModule()": "PolarLineSeriesDescriptionModule()", + "PolarLineSeriesDescriptionModule": "PolarLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarScatterSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PolarScatterSeries", + "k": "class", + "s": "classes", + "m": { + "PolarScatterSeries()": "PolarScatterSeries()", + "PolarScatterSeries": "PolarScatterSeries()" + } + } + ], + "PolarScatterSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarScatterSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarScatterSeriesDescription()": "PolarScatterSeriesDescription()", + "PolarScatterSeriesDescription": "PolarScatterSeriesDescription()", + "Type": "Type" + } + } + ], + "PolarScatterSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarScatterSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarScatterSeriesDescriptionMetadata()": "PolarScatterSeriesDescriptionMetadata()", + "PolarScatterSeriesDescriptionMetadata": "PolarScatterSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarScatterSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarScatterSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarScatterSeriesDescriptionModule()": "PolarScatterSeriesDescriptionModule()", + "PolarScatterSeriesDescriptionModule": "PolarScatterSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarSplineAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PolarSplineAreaSeries", + "k": "class", + "s": "classes", + "m": { + "PolarSplineAreaSeries()": "PolarSplineAreaSeries()", + "PolarSplineAreaSeries": "PolarSplineAreaSeries()", + "Stiffness": "Stiffness", + "StiffnessProperty": "StiffnessProperty" + } + } + ], + "PolarSplineAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarSplineAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarSplineAreaSeriesDescription()": "PolarSplineAreaSeriesDescription()", + "PolarSplineAreaSeriesDescription": "PolarSplineAreaSeriesDescription()", + "Stiffness": "Stiffness", + "Type": "Type" + } + } + ], + "PolarSplineAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarSplineAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarSplineAreaSeriesDescriptionMetadata()": "PolarSplineAreaSeriesDescriptionMetadata()", + "PolarSplineAreaSeriesDescriptionMetadata": "PolarSplineAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarSplineAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarSplineAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarSplineAreaSeriesDescriptionModule()": "PolarSplineAreaSeriesDescriptionModule()", + "PolarSplineAreaSeriesDescriptionModule": "PolarSplineAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarSplineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PolarSplineSeries", + "k": "class", + "s": "classes", + "m": { + "PolarSplineSeries()": "PolarSplineSeries()", + "PolarSplineSeries": "PolarSplineSeries()", + "Stiffness": "Stiffness", + "StiffnessProperty": "StiffnessProperty" + } + } + ], + "PolarSplineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarSplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "PolarSplineSeriesDescription()": "PolarSplineSeriesDescription()", + "PolarSplineSeriesDescription": "PolarSplineSeriesDescription()", + "Stiffness": "Stiffness", + "Type": "Type" + } + } + ], + "PolarSplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarSplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PolarSplineSeriesDescriptionMetadata()": "PolarSplineSeriesDescriptionMetadata()", + "PolarSplineSeriesDescriptionMetadata": "PolarSplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolarSplineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolarSplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PolarSplineSeriesDescriptionModule()": "PolarSplineSeriesDescriptionModule()", + "PolarSplineSeriesDescriptionModule": "PolarSplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PolyBezierSegmentData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolyBezierSegmentData", + "k": "class", + "s": "classes", + "m": { + "PolyBezierSegmentData()": "PolyBezierSegmentData()", + "PolyBezierSegmentData": "PolyBezierSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PolygonVisualData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolygonVisualData", + "k": "class", + "s": "classes", + "m": { + "PolygonVisualData()": "PolygonVisualData()", + "PolygonVisualData": "PolygonVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PolylineSegmentData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolylineSegmentData", + "k": "class", + "s": "classes", + "m": { + "PolylineSegmentData()": "PolylineSegmentData()", + "PolylineSegmentData": "PolylineSegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PolyLineVisualData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolyLineVisualData", + "k": "class", + "s": "classes", + "m": { + "PolyLineVisualData()": "PolyLineVisualData()", + "PolyLineVisualData": "PolyLineVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Points": "Points", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "PolySimplification": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PolySimplification", + "k": "class", + "s": "classes", + "m": { + "VertexReduction(Tuple, double)": "VertexReduction(Tuple, double)", + "VertexReduction": "VertexReduction(Tuple, double)" + } + } + ], + "PopupAlignment": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/PopupAlignment", + "k": "enum", + "s": "enums" + } + ], + "PopupAnimationType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/PopupAnimationType", + "k": "enum", + "s": "enums" + } + ], + "PopupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PopupDescription", + "k": "class", + "s": "classes", + "m": { + "PopupDescription()": "PopupDescription()", + "PopupDescription": "PopupDescription()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualElevation": "ActualElevation", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "AnimationDuration": "AnimationDuration", + "AnimationEnabled": "AnimationEnabled", + "AnimationType": "AnimationType", + "Background": "Background", + "CornerRadius": "CornerRadius", + "DisableHitTestDuringAnimation": "DisableHitTestDuringAnimation", + "Elevation": "Elevation", + "IsClosing": "IsClosing", + "IsFixed": "IsFixed", + "IsFocusable": "IsFocusable", + "IsHitTestVisible": "IsHitTestVisible", + "IsPointerEnabled": "IsPointerEnabled", + "IsShowing": "IsShowing", + "MeasuringContentSizeRef": "MeasuringContentSizeRef", + "OnClosedRef": "OnClosedRef", + "OnPopupRef": "OnPopupRef", + "PointerBackground": "PointerBackground", + "PointerPosition": "PointerPosition", + "PointerSize": "PointerSize", + "PopupGotFocusRef": "PopupGotFocusRef", + "PopupLostFocusRef": "PopupLostFocusRef", + "Type": "Type", + "UseTopLayer": "UseTopLayer" + } + } + ], + "PopupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PopupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PopupDescriptionMetadata()": "PopupDescriptionMetadata()", + "PopupDescriptionMetadata": "PopupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PopupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PopupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PopupDescriptionModule()": "PopupDescriptionModule()", + "PopupDescriptionModule": "PopupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PopupDirection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/PopupDirection", + "k": "enum", + "s": "enums" + } + ], + "PopupMeasuringContentSizeEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PopupMeasuringContentSizeEventArgs", + "k": "class", + "s": "classes", + "m": { + "PopupMeasuringContentSizeEventArgs()": "PopupMeasuringContentSizeEventArgs()", + "PopupMeasuringContentSizeEventArgs": "PopupMeasuringContentSizeEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PopupMeasuringContentSizeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PopupMeasuringContentSizeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PopupMeasuringContentSizeEventArgsDescription()": "PopupMeasuringContentSizeEventArgsDescription()", + "PopupMeasuringContentSizeEventArgsDescription": "PopupMeasuringContentSizeEventArgsDescription()", + "Type": "Type" + } + } + ], + "PopupMeasuringContentSizeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PopupMeasuringContentSizeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PopupMeasuringContentSizeEventArgsDescriptionMetadata()": "PopupMeasuringContentSizeEventArgsDescriptionMetadata()", + "PopupMeasuringContentSizeEventArgsDescriptionMetadata": "PopupMeasuringContentSizeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PopupPointerPosition": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/PopupPointerPosition", + "k": "enum", + "s": "enums" + } + ], + "PopupVisualModelExport": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PopupVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "PopupVisualModelExport()": "PopupVisualModelExport()", + "PopupVisualModelExport": "PopupVisualModelExport()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualElevation": "ActualElevation", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "IsShown": "IsShown", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "PositiveVolumeIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PositiveVolumeIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "PositiveVolumeIndexIndicator()": "PositiveVolumeIndexIndicator()", + "PositiveVolumeIndexIndicator": "PositiveVolumeIndexIndicator()" + } + } + ], + "PositiveVolumeIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PositiveVolumeIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "PositiveVolumeIndexIndicatorDescription()": "PositiveVolumeIndexIndicatorDescription()", + "PositiveVolumeIndexIndicatorDescription": "PositiveVolumeIndexIndicatorDescription()", + "Type": "Type" + } + } + ], + "PositiveVolumeIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PositiveVolumeIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PositiveVolumeIndexIndicatorDescriptionMetadata()": "PositiveVolumeIndexIndicatorDescriptionMetadata()", + "PositiveVolumeIndexIndicatorDescriptionMetadata": "PositiveVolumeIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PositiveVolumeIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PositiveVolumeIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PositiveVolumeIndexIndicatorDescriptionModule()": "PositiveVolumeIndexIndicatorDescriptionModule()", + "PositiveVolumeIndexIndicatorDescriptionModule": "PositiveVolumeIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrefixDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrefixDescription", + "k": "class", + "s": "classes", + "m": { + "PrefixDescription()": "PrefixDescription()", + "PrefixDescription": "PrefixDescription()", + "AriaLabel": "AriaLabel", + "Disabled": "Disabled", + "Id": "Id", + "IsHover": "IsHover", + "Type": "Type" + } + } + ], + "PrefixDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrefixDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PrefixDescriptionMetadata()": "PrefixDescriptionMetadata()", + "PrefixDescriptionMetadata": "PrefixDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrefixDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrefixDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PrefixDescriptionModule()": "PrefixDescriptionModule()", + "PrefixDescriptionModule": "PrefixDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrefixShiftType": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/PrefixShiftType", + "k": "enum", + "s": "enums" + } + ], + "PrefixVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/PrefixVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "PrefixVisualModelExport()": "PrefixVisualModelExport()", + "PrefixVisualModelExport": "PrefixVisualModelExport()", + "IsDisabled": "IsDisabled", + "IsHover": "IsHover", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "PreserveAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/PreserveAttribute", + "k": "class", + "s": "classes", + "m": { + "PreserveAttribute()": "PreserveAttribute()", + "PreserveAttribute": "PreserveAttribute()", + "AllMembers": "AllMembers", + "Conditional": "Conditional" + } + } + ], + "PriceChannelOverlay": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PriceChannelOverlay", + "k": "class", + "s": "classes", + "m": { + "PriceChannelOverlay()": "PriceChannelOverlay()", + "PriceChannelOverlay": "PriceChannelOverlay()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "PriceChannelOverlayDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PriceChannelOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "PriceChannelOverlayDescription()": "PriceChannelOverlayDescription()", + "PriceChannelOverlayDescription": "PriceChannelOverlayDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "PriceChannelOverlayDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PriceChannelOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PriceChannelOverlayDescriptionMetadata()": "PriceChannelOverlayDescriptionMetadata()", + "PriceChannelOverlayDescriptionMetadata": "PriceChannelOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PriceChannelOverlayDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PriceChannelOverlayDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PriceChannelOverlayDescriptionModule()": "PriceChannelOverlayDescriptionModule()", + "PriceChannelOverlayDescriptionModule": "PriceChannelOverlayDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PriceDisplayType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/PriceDisplayType", + "k": "enum", + "s": "enums" + } + ], + "PriceVolumeTrendIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/PriceVolumeTrendIndicator", + "k": "class", + "s": "classes", + "m": { + "PriceVolumeTrendIndicator()": "PriceVolumeTrendIndicator()", + "PriceVolumeTrendIndicator": "PriceVolumeTrendIndicator()" + } + } + ], + "PriceVolumeTrendIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PriceVolumeTrendIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "PriceVolumeTrendIndicatorDescription()": "PriceVolumeTrendIndicatorDescription()", + "PriceVolumeTrendIndicatorDescription": "PriceVolumeTrendIndicatorDescription()", + "Type": "Type" + } + } + ], + "PriceVolumeTrendIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PriceVolumeTrendIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PriceVolumeTrendIndicatorDescriptionMetadata()": "PriceVolumeTrendIndicatorDescriptionMetadata()", + "PriceVolumeTrendIndicatorDescriptionMetadata": "PriceVolumeTrendIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PriceVolumeTrendIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PriceVolumeTrendIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PriceVolumeTrendIndicatorDescriptionModule()": "PriceVolumeTrendIndicatorDescriptionModule()", + "PriceVolumeTrendIndicatorDescriptionModule": "PriceVolumeTrendIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrimaryKeyValue": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/PrimaryKeyValue", + "k": "class", + "s": "classes", + "m": { + "PrimaryKeyValue(object)": "PrimaryKeyValue(object)", + "PrimaryKeyValue": "PrimaryKeyValue(object)", + "PrimaryKeyValue(object[])": "PrimaryKeyValue(object[])", + "PrimaryKeyValue(string[], object[])": "PrimaryKeyValue(string[], object[])", + "CreateIdentityKey(object)": "CreateIdentityKey(object)", + "CreateIdentityKey": "CreateIdentityKey(object)", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Key": "Key", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PrimaryKeyValueDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrimaryKeyValueDescription", + "k": "class", + "s": "classes", + "m": { + "PrimaryKeyValueDescription()": "PrimaryKeyValueDescription()", + "PrimaryKeyValueDescription": "PrimaryKeyValueDescription()", + "Key": "Key", + "Type": "Type", + "Value": "Value" + } + } + ], + "PrimaryKeyValueDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrimaryKeyValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PrimaryKeyValueDescriptionMetadata()": "PrimaryKeyValueDescriptionMetadata()", + "PrimaryKeyValueDescriptionMetadata": "PrimaryKeyValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrimaryKeyValueDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrimaryKeyValueDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PrimaryKeyValueDescriptionModule()": "PrimaryKeyValueDescriptionModule()", + "PrimaryKeyValueDescriptionModule": "PrimaryKeyValueDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PrimitiveAppearanceData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrimitiveAppearanceData", + "k": "class", + "s": "classes", + "m": { + "PrimitiveAppearanceData()": "PrimitiveAppearanceData()", + "PrimitiveAppearanceData": "PrimitiveAppearanceData()", + "CanvaZIndex": "CanvaZIndex", + "CanvasLeft": "CanvasLeft", + "CanvasTop": "CanvasTop", + "DashArray": "DashArray", + "DashCap": "DashCap", + "Fill": "Fill", + "FillExtended": "FillExtended", + "IsVisible": "IsVisible", + "Opacity": "Opacity", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Stroke": "Stroke", + "StrokeExtended": "StrokeExtended", + "StrokeThickness": "StrokeThickness" + } + } + ], + "PrimitiveVisualData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrimitiveVisualData", + "k": "class", + "s": "classes", + "m": { + "PrimitiveVisualData()": "PrimitiveVisualData()", + "PrimitiveVisualData": "PrimitiveVisualData()", + "PrimitiveVisualData(string)": "PrimitiveVisualData(string)", + "Appearance": "Appearance", + "GetPoints(GetPointsSettings)": "GetPoints(GetPointsSettings)", + "GetPoints": "GetPoints(GetPointsSettings)", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Name": "Name", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Tags": "Tags", + "Type": "Type" + } + } + ], + "PrimitiveVisualDataList": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PrimitiveVisualDataList", + "k": "class", + "s": "classes", + "m": { + "PrimitiveVisualDataList()": "PrimitiveVisualDataList()", + "PrimitiveVisualDataList": "PrimitiveVisualDataList()", + "ContainingTag(string)": "ContainingTag(string)", + "ContainingTag": "ContainingTag(string)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "PriorityDataRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PriorityDataRule", + "k": "class", + "s": "classes", + "m": { + "PriorityDataRule()": "PriorityDataRule()", + "PriorityDataRule": "PriorityDataRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "ProgressiveLoadStatusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ProgressiveLoadStatusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ProgressiveLoadStatusEventArgsDescription()": "ProgressiveLoadStatusEventArgsDescription()", + "ProgressiveLoadStatusEventArgsDescription": "ProgressiveLoadStatusEventArgsDescription()", + "CurrentStatus": "CurrentStatus", + "Type": "Type" + } + } + ], + "ProgressiveLoadStatusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ProgressiveLoadStatusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ProgressiveLoadStatusEventArgsDescriptionMetadata()": "ProgressiveLoadStatusEventArgsDescriptionMetadata()", + "ProgressiveLoadStatusEventArgsDescriptionMetadata": "ProgressiveLoadStatusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorDataSource": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorDataSource", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDataSource()": "PropertyEditorDataSource()", + "PropertyEditorDataSource": "PropertyEditorDataSource()", + "Context": "Context", + "DescriptionType": "DescriptionType", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDataSourceDescription()": "PropertyEditorDataSourceDescription()", + "PropertyEditorDataSourceDescription": "PropertyEditorDataSourceDescription()", + "ContextRef": "ContextRef", + "DescriptionType": "DescriptionType", + "Type": "Type" + } + } + ], + "PropertyEditorDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDataSourceDescriptionMetadata()": "PropertyEditorDataSourceDescriptionMetadata()", + "PropertyEditorDataSourceDescriptionMetadata": "PropertyEditorDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescription()": "PropertyEditorDescription()", + "PropertyEditorDescription": "PropertyEditorDescription()", + "ActualDataSource": "ActualDataSource", + "Background": "Background", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "ComponentRendererRef": "ComponentRendererRef", + "Density": "Density", + "DescriptionContextRef": "DescriptionContextRef", + "DescriptionType": "DescriptionType", + "FilterPlaceholderText": "FilterPlaceholderText", + "Height": "Height", + "IsHorizontal": "IsHorizontal", + "IsIndirectModeEnabled": "IsIndirectModeEnabled", + "IsWrappingEnabled": "IsWrappingEnabled", + "Properties": "Properties", + "RowHeight": "RowHeight", + "SearchInputType": "SearchInputType", + "TargetRef": "TargetRef", + "TextColor": "TextColor", + "Type": "Type", + "Width": "Width" + } + } + ], + "PropertyEditorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionMetadata()": "PropertyEditorDescriptionMetadata()", + "PropertyEditorDescriptionMetadata": "PropertyEditorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionModule()": "PropertyEditorDescriptionModule()", + "PropertyEditorDescriptionModule": "PropertyEditorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorDescriptionObject": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorDescriptionObject", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionObject()": "PropertyEditorDescriptionObject()", + "PropertyEditorDescriptionObject": "PropertyEditorDescriptionObject()", + "DescriptionType": "DescriptionType", + "Properties": "Properties", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorDescriptionObjectCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorDescriptionObjectCollection", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionObjectCollection()": "PropertyEditorDescriptionObjectCollection()", + "PropertyEditorDescriptionObjectCollection": "PropertyEditorDescriptionObjectCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorDescriptionObjectDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorDescriptionObjectDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionObjectDescription()": "PropertyEditorDescriptionObjectDescription()", + "PropertyEditorDescriptionObjectDescription": "PropertyEditorDescriptionObjectDescription()", + "DescriptionType": "DescriptionType", + "Properties": "Properties", + "Type": "Type" + } + } + ], + "PropertyEditorDescriptionObjectDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorDescriptionObjectDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorDescriptionObjectDescriptionMetadata()": "PropertyEditorDescriptionObjectDescriptionMetadata()", + "PropertyEditorDescriptionObjectDescriptionMetadata": "PropertyEditorDescriptionObjectDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPanelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPanelDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPanelDescription()": "PropertyEditorPanelDescription()", + "PropertyEditorPanelDescription": "PropertyEditorPanelDescription()", + "ActualDataSource": "ActualDataSource", + "ActualRowHeight": "ActualRowHeight", + "Background": "Background", + "BackgroundColor": "BackgroundColor", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "ComponentRendererRef": "ComponentRendererRef", + "DescriptionContextRef": "DescriptionContextRef", + "DescriptionType": "DescriptionType", + "Height": "Height", + "IsHorizontal": "IsHorizontal", + "IsIndirectModeEnabled": "IsIndirectModeEnabled", + "IsWrappingEnabled": "IsWrappingEnabled", + "Properties": "Properties", + "RowHeight": "RowHeight", + "TargetRef": "TargetRef", + "TextColor": "TextColor", + "Type": "Type", + "UpdateMode": "UpdateMode", + "Width": "Width" + } + } + ], + "PropertyEditorPanelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPanelDescriptionMetadata()": "PropertyEditorPanelDescriptionMetadata()", + "PropertyEditorPanelDescriptionMetadata": "PropertyEditorPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPanelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPanelDescriptionModule()": "PropertyEditorPanelDescriptionModule()", + "PropertyEditorPanelDescriptionModule": "PropertyEditorPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPanelUpdateMode": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/PropertyEditorPanelUpdateMode", + "k": "enum", + "s": "enums" + } + ], + "PropertyEditorPropertyDescription": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorPropertyDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescription()": "PropertyEditorPropertyDescription()", + "PropertyEditorPropertyDescription": "PropertyEditorPropertyDescription()", + "CoercedComplexValue": "CoercedComplexValue", + "CoercedComplexValueProperty": "CoercedComplexValueProperty", + "CoercedComplexValues": "CoercedComplexValues", + "CoercedComplexValuesProperty": "CoercedComplexValuesProperty", + "CoercedPrimitiveValue": "CoercedPrimitiveValue", + "CoercedPrimitiveValueProperty": "CoercedPrimitiveValueProperty", + "CoercedValueType": "CoercedValueType", + "CoercedValueTypeProperty": "CoercedValueTypeProperty", + "ComplexValue": "ComplexValue", + "ComplexValueProperty": "ComplexValueProperty", + "ComplexValues": "ComplexValues", + "ComplexValuesProperty": "ComplexValuesProperty", + "DropDownNames": "DropDownNames", + "DropDownNamesProperty": "DropDownNamesProperty", + "DropDownValues": "DropDownValues", + "DropDownValuesProperty": "DropDownValuesProperty", + "EditorWidth": "EditorWidth", + "EditorWidthProperty": "EditorWidthProperty", + "ElementDescriptionType": "ElementDescriptionType", + "ElementDescriptionTypeProperty": "ElementDescriptionTypeProperty", + "Label": "Label", + "LabelProperty": "LabelProperty", + "LabelWidth": "LabelWidth", + "LabelWidthProperty": "LabelWidthProperty", + "Max": "Max", + "MaxProperty": "MaxProperty", + "Min": "Min", + "MinProperty": "MinProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnButtonClicked(PropertyEditorPropertyDescriptionButtonClickEventArgs)": "OnButtonClicked(PropertyEditorPropertyDescriptionButtonClickEventArgs)", + "OnButtonClicked": "OnButtonClicked(PropertyEditorPropertyDescriptionButtonClickEventArgs)", + "OnChanged(PropertyEditorPropertyDescriptionChangedEventArgs)": "OnChanged(PropertyEditorPropertyDescriptionChangedEventArgs)", + "OnChanged": "OnChanged(PropertyEditorPropertyDescriptionChangedEventArgs)", + "OnCoercingValue(PropertyEditorPropertyDescriptionCoercingValueEventArgs)": "OnCoercingValue(PropertyEditorPropertyDescriptionCoercingValueEventArgs)", + "OnCoercingValue": "OnCoercingValue(PropertyEditorPropertyDescriptionCoercingValueEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnTargetPropertyUpdating(PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs)": "OnTargetPropertyUpdating(PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs)", + "OnTargetPropertyUpdating": "OnTargetPropertyUpdating(PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs)", + "PrimitiveValue": "PrimitiveValue", + "PrimitiveValueProperty": "PrimitiveValueProperty", + "Properties": "Properties", + "PropertiesProperty": "PropertiesProperty", + "PropertyDescriptionType": "PropertyDescriptionType", + "PropertyDescriptionTypeProperty": "PropertyDescriptionTypeProperty", + "PropertyPath": "PropertyPath", + "PropertyPathProperty": "PropertyPathProperty", + "ShouldOverrideDefaultEditor": "ShouldOverrideDefaultEditor", + "ShouldOverrideDefaultEditorProperty": "ShouldOverrideDefaultEditorProperty", + "Step": "Step", + "StepProperty": "StepProperty", + "Subtitle": "Subtitle", + "SubtitleProperty": "SubtitleProperty", + "UseCoercedValue": "UseCoercedValue", + "UseCoercedValueProperty": "UseCoercedValueProperty", + "ValueType": "ValueType", + "ValueTypeProperty": "ValueTypeProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionButtonClickEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorPropertyDescriptionButtonClickEventArgs", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionButtonClickEventArgs()": "PropertyEditorPropertyDescriptionButtonClickEventArgs()", + "PropertyEditorPropertyDescriptionButtonClickEventArgs": "PropertyEditorPropertyDescriptionButtonClickEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionButtonClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription()": "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription()", + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription": "PropertyEditorPropertyDescriptionButtonClickEventArgsDescription()", + "Type": "Type" + } + } + ], + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata()": "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata()", + "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata": "PropertyEditorPropertyDescriptionButtonClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorPropertyDescriptionChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionChangedEventArgs()": "PropertyEditorPropertyDescriptionChangedEventArgs()", + "PropertyEditorPropertyDescriptionChangedEventArgs": "PropertyEditorPropertyDescriptionChangedEventArgs()", + "NewValue": "NewValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionChangedEventArgsDescription()": "PropertyEditorPropertyDescriptionChangedEventArgsDescription()", + "PropertyEditorPropertyDescriptionChangedEventArgsDescription": "PropertyEditorPropertyDescriptionChangedEventArgsDescription()", + "NewValue": "NewValue", + "Type": "Type" + } + } + ], + "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata()": "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata()", + "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata": "PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionCoercingValueEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorPropertyDescriptionCoercingValueEventArgs", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionCoercingValueEventArgs()": "PropertyEditorPropertyDescriptionCoercingValueEventArgs()", + "PropertyEditorPropertyDescriptionCoercingValueEventArgs": "PropertyEditorPropertyDescriptionCoercingValueEventArgs()", + "ComplexValue": "ComplexValue", + "ComplexValues": "ComplexValues", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription()": "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription()", + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription": "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescription()", + "ComplexValue": "ComplexValue", + "ComplexValues": "ComplexValues", + "Type": "Type", + "Value": "Value" + } + } + ], + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata()": "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata()", + "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata": "PropertyEditorPropertyDescriptionCoercingValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorPropertyDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionCollection()": "PropertyEditorPropertyDescriptionCollection()", + "PropertyEditorPropertyDescriptionCollection": "PropertyEditorPropertyDescriptionCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionDescription()": "PropertyEditorPropertyDescriptionDescription()", + "PropertyEditorPropertyDescriptionDescription": "PropertyEditorPropertyDescriptionDescription()", + "ButtonClickedRef": "ButtonClickedRef", + "ChangedRef": "ChangedRef", + "CoercedComplexValue": "CoercedComplexValue", + "CoercedComplexValues": "CoercedComplexValues", + "CoercedPrimitiveValue": "CoercedPrimitiveValue", + "CoercedValueType": "CoercedValueType", + "CoercingValueRef": "CoercingValueRef", + "ComplexValue": "ComplexValue", + "ComplexValues": "ComplexValues", + "DropDownNames": "DropDownNames", + "DropDownValues": "DropDownValues", + "EditorWidth": "EditorWidth", + "ElementDescriptionType": "ElementDescriptionType", + "Label": "Label", + "LabelWidth": "LabelWidth", + "Max": "Max", + "Min": "Min", + "PrimitiveValue": "PrimitiveValue", + "Properties": "Properties", + "PropertyDescriptionType": "PropertyDescriptionType", + "PropertyPath": "PropertyPath", + "ShouldOverrideDefaultEditor": "ShouldOverrideDefaultEditor", + "Step": "Step", + "Subtitle": "Subtitle", + "TargetPropertyUpdatingRef": "TargetPropertyUpdatingRef", + "Type": "Type", + "UseCoercedValue": "UseCoercedValue", + "ValueType": "ValueType" + } + } + ], + "PropertyEditorPropertyDescriptionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionDescriptionMetadata()": "PropertyEditorPropertyDescriptionDescriptionMetadata()", + "PropertyEditorPropertyDescriptionDescriptionMetadata": "PropertyEditorPropertyDescriptionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionDescriptionModule()": "PropertyEditorPropertyDescriptionDescriptionModule()", + "PropertyEditorPropertyDescriptionDescriptionModule": "PropertyEditorPropertyDescriptionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()", + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs()", + "PropertyPath": "PropertyPath", + "Target": "Target", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription()": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription()", + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescription()", + "PropertyPath": "PropertyPath", + "TargetRef": "TargetRef", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata()": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata()", + "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata": "PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyEditorValueType": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/PropertyEditorValueType", + "k": "enum", + "s": "enums" + } + ], + "PropertyReferenceFilterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyReferenceFilterExpression", + "k": "class", + "s": "classes", + "m": { + "PropertyReferenceFilterExpression()": "PropertyReferenceFilterExpression()", + "PropertyReferenceFilterExpression": "PropertyReferenceFilterExpression()", + "PropertyReferenceFilterExpression(string)": "PropertyReferenceFilterExpression(string)", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "IsPropertyReference": "IsPropertyReference", + "Precedence": "Precedence", + "PropertyReference": "PropertyReference", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()" + } + } + ], + "PropertyReferenceFilterExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyReferenceFilterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyReferenceFilterExpressionDescription()": "PropertyReferenceFilterExpressionDescription()", + "PropertyReferenceFilterExpressionDescription": "PropertyReferenceFilterExpressionDescription()", + "PropertyReference": "PropertyReference", + "Type": "Type" + } + } + ], + "PropertyReferenceFilterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyReferenceFilterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyReferenceFilterExpressionDescriptionMetadata()": "PropertyReferenceFilterExpressionDescriptionMetadata()", + "PropertyReferenceFilterExpressionDescriptionMetadata": "PropertyReferenceFilterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PropertyUpdatedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyUpdatedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "PropertyUpdatedEventArgsDescription()": "PropertyUpdatedEventArgsDescription()", + "PropertyUpdatedEventArgsDescription": "PropertyUpdatedEventArgsDescription()", + "NewValueRef": "NewValueRef", + "OldValueRef": "OldValueRef", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "PropertyUpdatedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PropertyUpdatedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "PropertyUpdatedEventArgsDescriptionMetadata()": "PropertyUpdatedEventArgsDescriptionMetadata()", + "PropertyUpdatedEventArgsDescriptionMetadata": "PropertyUpdatedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ProportionalCategoryAngleAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ProportionalCategoryAngleAxis", + "k": "class", + "s": "classes", + "m": { + "ProportionalCategoryAngleAxis()": "ProportionalCategoryAngleAxis()", + "ProportionalCategoryAngleAxis": "ProportionalCategoryAngleAxis()", + "GetNormalizingValueAtIndex(int, double)": "GetNormalizingValueAtIndex(int, double)", + "GetNormalizingValueAtIndex": "GetNormalizingValueAtIndex(int, double)", + "GetPercentageValue(int)": "GetPercentageValue(int)", + "GetPercentageValue": "GetPercentageValue(int)", + "HasOthersCategory": "HasOthersCategory", + "HasOthersCategoryProperty": "HasOthersCategoryProperty", + "IsOthersValue(int)": "IsOthersValue(int)", + "IsOthersValue": "IsOthersValue(int)", + "NormalizationMayContainUnknowns": "NormalizationMayContainUnknowns", + "NormalizationMayContainUnknownsProperty": "NormalizationMayContainUnknownsProperty", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryTextProperty": "OthersCategoryTextProperty", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryThresholdProperty": "OthersCategoryThresholdProperty", + "OthersCategoryType": "OthersCategoryType", + "OthersCategoryTypeProperty": "OthersCategoryTypeProperty", + "OthersIndex": "OthersIndex", + "OthersIndexProperty": "OthersIndexProperty", + "OthersValue": "OthersValue", + "OthersValueProperty": "OthersValueProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty" + } + } + ], + "ProportionalCategoryAngleAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ProportionalCategoryAngleAxisDescription", + "k": "class", + "s": "classes", + "m": { + "ProportionalCategoryAngleAxisDescription()": "ProportionalCategoryAngleAxisDescription()", + "ProportionalCategoryAngleAxisDescription": "ProportionalCategoryAngleAxisDescription()", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryType": "OthersCategoryType", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "ProportionalCategoryAngleAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ProportionalCategoryAngleAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ProportionalCategoryAngleAxisDescriptionMetadata()": "ProportionalCategoryAngleAxisDescriptionMetadata()", + "ProportionalCategoryAngleAxisDescriptionMetadata": "ProportionalCategoryAngleAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ProportionalCategoryAngleAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ProportionalCategoryAngleAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ProportionalCategoryAngleAxisDescriptionModule()": "ProportionalCategoryAngleAxisDescriptionModule()", + "ProportionalCategoryAngleAxisDescriptionModule": "ProportionalCategoryAngleAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ProportionalRadialLabelContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ProportionalRadialLabelContext", + "k": "class", + "s": "classes", + "m": { + "ProportionalRadialLabelContext()": "ProportionalRadialLabelContext()", + "ProportionalRadialLabelContext": "ProportionalRadialLabelContext()", + "Item": "Item", + "Label": "Label", + "Percent": "Percent", + "Value": "Value" + } + } + ], + "ProvideCalculatorEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ProvideCalculatorEventArgs", + "k": "class", + "s": "classes", + "m": { + "ProvideCalculatorEventArgs()": "ProvideCalculatorEventArgs()", + "ProvideCalculatorEventArgs": "ProvideCalculatorEventArgs()", + "Calculator": "Calculator" + } + } + ], + "ProvideCalculatorEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ProvideCalculatorEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ProvideCalculatorEventArgsDescription()": "ProvideCalculatorEventArgsDescription()", + "ProvideCalculatorEventArgsDescription": "ProvideCalculatorEventArgsDescription()", + "Type": "Type" + } + } + ], + "ProvideCalculatorEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ProvideCalculatorEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ProvideCalculatorEventArgsDescriptionMetadata()": "ProvideCalculatorEventArgsDescriptionMetadata()", + "ProvideCalculatorEventArgsDescriptionMetadata": "ProvideCalculatorEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "PublicPointCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/PublicPointCollection", + "k": "class", + "s": "classes", + "m": { + "Add(Point)": "Add(Point)", + "Add": "Add(Point)", + "Clear()": "Clear()", + "Clear": "Clear()", + "Contains(Point)": "Contains(Point)", + "Contains": "Contains(Point)", + "CopyTo(Point[], int)": "CopyTo(Point[], int)", + "CopyTo": "CopyTo(Point[], int)", + "Count": "Count", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "IndexOf(Point)": "IndexOf(Point)", + "IndexOf": "IndexOf(Point)", + "Insert(int, Point)": "Insert(int, Point)", + "Insert": "Insert(int, Point)", + "IsReadOnly": "IsReadOnly", + "this[int]": "this[int]", + "Remove(Point)": "Remove(Point)", + "Remove": "Remove(Point)", + "RemoveAt(int)": "RemoveAt(int)", + "RemoveAt": "RemoveAt(int)" + } + } + ], + "Q1Expression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q1Expression", + "k": "class", + "s": "classes", + "m": { + "Q1Expression(FilterExpression)": "Q1Expression(FilterExpression)", + "Q1Expression": "Q1Expression(FilterExpression)", + "Q1Expression(string)": "Q1Expression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "Q1ExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q1ExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "Q1ExpressionDescription()": "Q1ExpressionDescription()", + "Q1ExpressionDescription": "Q1ExpressionDescription()", + "Type": "Type" + } + } + ], + "Q1ExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q1ExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Q1ExpressionDescriptionMetadata()": "Q1ExpressionDescriptionMetadata()", + "Q1ExpressionDescriptionMetadata": "Q1ExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Q2Expression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q2Expression", + "k": "class", + "s": "classes", + "m": { + "Q2Expression(FilterExpression)": "Q2Expression(FilterExpression)", + "Q2Expression": "Q2Expression(FilterExpression)", + "Q2Expression(string)": "Q2Expression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "Q2ExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q2ExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "Q2ExpressionDescription()": "Q2ExpressionDescription()", + "Q2ExpressionDescription": "Q2ExpressionDescription()", + "Type": "Type" + } + } + ], + "Q2ExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q2ExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Q2ExpressionDescriptionMetadata()": "Q2ExpressionDescriptionMetadata()", + "Q2ExpressionDescriptionMetadata": "Q2ExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Q3Expression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q3Expression", + "k": "class", + "s": "classes", + "m": { + "Q3Expression(FilterExpression)": "Q3Expression(FilterExpression)", + "Q3Expression": "Q3Expression(FilterExpression)", + "Q3Expression(string)": "Q3Expression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "Q3ExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q3ExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "Q3ExpressionDescription()": "Q3ExpressionDescription()", + "Q3ExpressionDescription": "Q3ExpressionDescription()", + "Type": "Type" + } + } + ], + "Q3ExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q3ExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Q3ExpressionDescriptionMetadata()": "Q3ExpressionDescriptionMetadata()", + "Q3ExpressionDescriptionMetadata": "Q3ExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Q4Expression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q4Expression", + "k": "class", + "s": "classes", + "m": { + "Q4Expression(FilterExpression)": "Q4Expression(FilterExpression)", + "Q4Expression": "Q4Expression(FilterExpression)", + "Q4Expression(string)": "Q4Expression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "Q4ExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q4ExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "Q4ExpressionDescription()": "Q4ExpressionDescription()", + "Q4ExpressionDescription": "Q4ExpressionDescription()", + "Type": "Type" + } + } + ], + "Q4ExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Q4ExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Q4ExpressionDescriptionMetadata()": "Q4ExpressionDescriptionMetadata()", + "Q4ExpressionDescriptionMetadata": "Q4ExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "QuarterToDateExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/QuarterToDateExpression", + "k": "class", + "s": "classes", + "m": { + "QuarterToDateExpression(FilterExpression)": "QuarterToDateExpression(FilterExpression)", + "QuarterToDateExpression": "QuarterToDateExpression(FilterExpression)", + "QuarterToDateExpression(string)": "QuarterToDateExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "QuarterToDateExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/QuarterToDateExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "QuarterToDateExpressionDescription()": "QuarterToDateExpressionDescription()", + "QuarterToDateExpressionDescription": "QuarterToDateExpressionDescription()", + "Type": "Type" + } + } + ], + "QuarterToDateExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/QuarterToDateExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "QuarterToDateExpressionDescriptionMetadata()": "QuarterToDateExpressionDescriptionMetadata()", + "QuarterToDateExpressionDescriptionMetadata": "QuarterToDateExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RadialAreaSeries", + "k": "class", + "s": "classes", + "m": { + "RadialAreaSeries()": "RadialAreaSeries()", + "RadialAreaSeries": "RadialAreaSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "RadialAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RadialAreaSeriesDescription()": "RadialAreaSeriesDescription()", + "RadialAreaSeriesDescription": "RadialAreaSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "RadialAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialAreaSeriesDescriptionMetadata()": "RadialAreaSeriesDescriptionMetadata()", + "RadialAreaSeriesDescriptionMetadata": "RadialAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialAreaSeriesDescriptionModule()": "RadialAreaSeriesDescriptionModule()", + "RadialAreaSeriesDescriptionModule": "RadialAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RadialBase", + "k": "class", + "s": "classes", + "m": { + "AngleAxis": "AngleAxis", + "AngleAxisProperty": "AngleAxisProperty", + "AutoCalloutLabelPrecision": "AutoCalloutLabelPrecision", + "AutoCalloutLabelPrecisionProperty": "AutoCalloutLabelPrecisionProperty", + "AutoCalloutLabelValueSeparator": "AutoCalloutLabelValueSeparator", + "AutoCalloutLabelValueSeparatorProperty": "AutoCalloutLabelValueSeparatorProperty", + "AutoCalloutOthersLabelFormat": "AutoCalloutOthersLabelFormat", + "AutoCalloutOthersLabelFormatProperty": "AutoCalloutOthersLabelFormatProperty", + "AutoCalloutOthersLabelFormatSpecifiers": "AutoCalloutOthersLabelFormatSpecifiers", + "AutoCalloutOthersLabelFormatSpecifiersProperty": "AutoCalloutOthersLabelFormatSpecifiersProperty", + "AutoCalloutPercentagePrecision": "AutoCalloutPercentagePrecision", + "AutoCalloutPercentagePrecisionProperty": "AutoCalloutPercentagePrecisionProperty", + "AutoCalloutRadialLabelMode": "AutoCalloutRadialLabelMode", + "AutoCalloutRadialLabelModeProperty": "AutoCalloutRadialLabelModeProperty", + "CategoryCollisionMode": "CategoryCollisionMode", + "CategoryCollisionModeProperty": "CategoryCollisionModeProperty", + "GetAngleFromWorld(Point)": "GetAngleFromWorld(Point)", + "GetAngleFromWorld": "GetAngleFromWorld(Point)", + "GetCategoryItems(int, int)": "GetCategoryItems(int, int)", + "GetCategoryItems": "GetCategoryItems(int, int)", + "GetCategoryWidth()": "GetCategoryWidth()", + "GetCategoryWidth": "GetCategoryWidth()", + "GetOffsetValue()": "GetOffsetValue()", + "GetOffsetValue": "GetOffsetValue()", + "IsCustomRadialMarkerStyleAllowed": "IsCustomRadialMarkerStyleAllowed", + "IsCustomRadialMarkerStyleAllowedProperty": "IsCustomRadialMarkerStyleAllowedProperty", + "IsCustomRadialStyleAllowed": "IsCustomRadialStyleAllowed", + "IsCustomRadialStyleAllowedProperty": "IsCustomRadialStyleAllowedProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "LegendProportionalRadialLabelFormat": "LegendProportionalRadialLabelFormat", + "LegendProportionalRadialLabelFormatProperty": "LegendProportionalRadialLabelFormatProperty", + "LegendProportionalRadialLabelFormatSpecifiers": "LegendProportionalRadialLabelFormatSpecifiers", + "LegendProportionalRadialLabelFormatSpecifiersProperty": "LegendProportionalRadialLabelFormatSpecifiersProperty", + "LegendRadialLabelMode": "LegendRadialLabelMode", + "LegendRadialLabelModeProperty": "LegendRadialLabelModeProperty", + "OnAssigningRadialMarkerStyle(AssigningRadialMarkerStyleEventArgs)": "OnAssigningRadialMarkerStyle(AssigningRadialMarkerStyleEventArgs)", + "OnAssigningRadialMarkerStyle": "OnAssigningRadialMarkerStyle(AssigningRadialMarkerStyleEventArgs)", + "OnAssigningRadialStyle(AssigningRadialStyleEventArgs)": "OnAssigningRadialStyle(AssigningRadialStyleEventArgs)", + "OnAssigningRadialStyle": "OnAssigningRadialStyle(AssigningRadialStyleEventArgs)", + "OthersCategoryBrush": "OthersCategoryBrush", + "OthersCategoryBrushProperty": "OthersCategoryBrushProperty", + "OthersCategoryOutline": "OthersCategoryOutline", + "OthersCategoryOutlineProperty": "OthersCategoryOutlineProperty", + "OthersLegendProportionalRadialLabelFormat": "OthersLegendProportionalRadialLabelFormat", + "OthersLegendProportionalRadialLabelFormatProperty": "OthersLegendProportionalRadialLabelFormatProperty", + "OthersLegendProportionalRadialLabelFormatSpecifiers": "OthersLegendProportionalRadialLabelFormatSpecifiers", + "OthersLegendProportionalRadialLabelFormatSpecifiersProperty": "OthersLegendProportionalRadialLabelFormatSpecifiersProperty", + "OthersProportionalRadialLabelFormat": "OthersProportionalRadialLabelFormat", + "OthersProportionalRadialLabelFormatProperty": "OthersProportionalRadialLabelFormatProperty", + "OthersProportionalRadialLabelFormatSpecifiers": "OthersProportionalRadialLabelFormatSpecifiers", + "OthersProportionalRadialLabelFormatSpecifiersProperty": "OthersProportionalRadialLabelFormatSpecifiersProperty", + "ProportionalRadialLabelFormat": "ProportionalRadialLabelFormat", + "ProportionalRadialLabelFormatProperty": "ProportionalRadialLabelFormatProperty", + "ProportionalRadialLabelFormatSpecifiers": "ProportionalRadialLabelFormatSpecifiers", + "ProportionalRadialLabelFormatSpecifiersProperty": "ProportionalRadialLabelFormatSpecifiersProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "ValueAxis": "ValueAxis", + "ValueAxisProperty": "ValueAxisProperty" + } + } + ], + "RadialBaseChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RadialBaseChart", + "k": "class", + "s": "classes", + "m": { + "ActualAngleAxisLabelTextColor": "ActualAngleAxisLabelTextColor", + "ActualAngleAxisLabelTextColorProperty": "ActualAngleAxisLabelTextColorProperty", + "ActualValueAxisLabelTextColor": "ActualValueAxisLabelTextColor", + "ActualValueAxisLabelTextColorProperty": "ActualValueAxisLabelTextColorProperty", + "AngleAxisExtent": "AngleAxisExtent", + "AngleAxisExtentProperty": "AngleAxisExtentProperty", + "AngleAxisInverted": "AngleAxisInverted", + "AngleAxisInvertedProperty": "AngleAxisInvertedProperty", + "AngleAxisLabel": "AngleAxisLabel", + "AngleAxisLabelAngle": "AngleAxisLabelAngle", + "AngleAxisLabelAngleProperty": "AngleAxisLabelAngleProperty", + "AngleAxisLabelBottomMargin": "AngleAxisLabelBottomMargin", + "AngleAxisLabelBottomMarginProperty": "AngleAxisLabelBottomMarginProperty", + "AngleAxisLabelFontFamily": "AngleAxisLabelFontFamily", + "AngleAxisLabelFontFamilyProperty": "AngleAxisLabelFontFamilyProperty", + "AngleAxisLabelFontSize": "AngleAxisLabelFontSize", + "AngleAxisLabelFontSizeProperty": "AngleAxisLabelFontSizeProperty", + "AngleAxisLabelFontStyle": "AngleAxisLabelFontStyle", + "AngleAxisLabelFontStyleProperty": "AngleAxisLabelFontStyleProperty", + "AngleAxisLabelFontWeight": "AngleAxisLabelFontWeight", + "AngleAxisLabelFontWeightProperty": "AngleAxisLabelFontWeightProperty", + "AngleAxisLabelFormat": "AngleAxisLabelFormat", + "AngleAxisLabelFormatProperty": "AngleAxisLabelFormatProperty", + "AngleAxisLabelFormatSpecifiers": "AngleAxisLabelFormatSpecifiers", + "AngleAxisLabelFormatSpecifiersProperty": "AngleAxisLabelFormatSpecifiersProperty", + "AngleAxisLabelHorizontalAlignment": "AngleAxisLabelHorizontalAlignment", + "AngleAxisLabelHorizontalAlignmentProperty": "AngleAxisLabelHorizontalAlignmentProperty", + "AngleAxisLabelLeftMargin": "AngleAxisLabelLeftMargin", + "AngleAxisLabelLeftMarginProperty": "AngleAxisLabelLeftMarginProperty", + "AngleAxisLabelLocation": "AngleAxisLabelLocation", + "AngleAxisLabelLocationProperty": "AngleAxisLabelLocationProperty", + "AngleAxisLabelProperty": "AngleAxisLabelProperty", + "AngleAxisLabelRightMargin": "AngleAxisLabelRightMargin", + "AngleAxisLabelRightMarginProperty": "AngleAxisLabelRightMarginProperty", + "AngleAxisLabelTextColor": "AngleAxisLabelTextColor", + "AngleAxisLabelTextColorProperty": "AngleAxisLabelTextColorProperty", + "AngleAxisLabelTopMargin": "AngleAxisLabelTopMargin", + "AngleAxisLabelTopMarginProperty": "AngleAxisLabelTopMarginProperty", + "AngleAxisLabelVerticalAlignment": "AngleAxisLabelVerticalAlignment", + "AngleAxisLabelVerticalAlignmentProperty": "AngleAxisLabelVerticalAlignmentProperty", + "AngleAxisLabelVisibility": "AngleAxisLabelVisibility", + "AngleAxisLabelVisibilityProperty": "AngleAxisLabelVisibilityProperty", + "AngleAxisMajorStroke": "AngleAxisMajorStroke", + "AngleAxisMajorStrokeProperty": "AngleAxisMajorStrokeProperty", + "AngleAxisMajorStrokeThickness": "AngleAxisMajorStrokeThickness", + "AngleAxisMajorStrokeThicknessProperty": "AngleAxisMajorStrokeThicknessProperty", + "AngleAxisMaximumExtent": "AngleAxisMaximumExtent", + "AngleAxisMaximumExtentPercentage": "AngleAxisMaximumExtentPercentage", + "AngleAxisMaximumExtentPercentageProperty": "AngleAxisMaximumExtentPercentageProperty", + "AngleAxisMaximumExtentProperty": "AngleAxisMaximumExtentProperty", + "AngleAxisMinorStroke": "AngleAxisMinorStroke", + "AngleAxisMinorStrokeProperty": "AngleAxisMinorStrokeProperty", + "AngleAxisMinorStrokeThickness": "AngleAxisMinorStrokeThickness", + "AngleAxisMinorStrokeThicknessProperty": "AngleAxisMinorStrokeThicknessProperty", + "AngleAxisStrip": "AngleAxisStrip", + "AngleAxisStripProperty": "AngleAxisStripProperty", + "AngleAxisStroke": "AngleAxisStroke", + "AngleAxisStrokeProperty": "AngleAxisStrokeProperty", + "AngleAxisStrokeThickness": "AngleAxisStrokeThickness", + "AngleAxisStrokeThicknessProperty": "AngleAxisStrokeThicknessProperty", + "AngleAxisTickLength": "AngleAxisTickLength", + "AngleAxisTickLengthProperty": "AngleAxisTickLengthProperty", + "AngleAxisTickStroke": "AngleAxisTickStroke", + "AngleAxisTickStrokeProperty": "AngleAxisTickStrokeProperty", + "AngleAxisTickStrokeThickness": "AngleAxisTickStrokeThickness", + "AngleAxisTickStrokeThicknessProperty": "AngleAxisTickStrokeThicknessProperty", + "AngleAxisTitle": "AngleAxisTitle", + "AngleAxisTitleAlignment": "AngleAxisTitleAlignment", + "AngleAxisTitleAlignmentProperty": "AngleAxisTitleAlignmentProperty", + "AngleAxisTitleAngle": "AngleAxisTitleAngle", + "AngleAxisTitleAngleProperty": "AngleAxisTitleAngleProperty", + "AngleAxisTitleBottomMargin": "AngleAxisTitleBottomMargin", + "AngleAxisTitleBottomMarginProperty": "AngleAxisTitleBottomMarginProperty", + "AngleAxisTitleFontFamily": "AngleAxisTitleFontFamily", + "AngleAxisTitleFontFamilyProperty": "AngleAxisTitleFontFamilyProperty", + "AngleAxisTitleFontSize": "AngleAxisTitleFontSize", + "AngleAxisTitleFontSizeProperty": "AngleAxisTitleFontSizeProperty", + "AngleAxisTitleFontStyle": "AngleAxisTitleFontStyle", + "AngleAxisTitleFontStyleProperty": "AngleAxisTitleFontStyleProperty", + "AngleAxisTitleFontWeight": "AngleAxisTitleFontWeight", + "AngleAxisTitleFontWeightProperty": "AngleAxisTitleFontWeightProperty", + "AngleAxisTitleLeftMargin": "AngleAxisTitleLeftMargin", + "AngleAxisTitleLeftMarginProperty": "AngleAxisTitleLeftMarginProperty", + "AngleAxisTitleMargin": "AngleAxisTitleMargin", + "AngleAxisTitleMarginProperty": "AngleAxisTitleMarginProperty", + "AngleAxisTitleProperty": "AngleAxisTitleProperty", + "AngleAxisTitleRightMargin": "AngleAxisTitleRightMargin", + "AngleAxisTitleRightMarginProperty": "AngleAxisTitleRightMarginProperty", + "AngleAxisTitleTextColor": "AngleAxisTitleTextColor", + "AngleAxisTitleTextColorProperty": "AngleAxisTitleTextColorProperty", + "AngleAxisTitleTopMargin": "AngleAxisTitleTopMargin", + "AngleAxisTitleTopMarginProperty": "AngleAxisTitleTopMarginProperty", + "GetScaledAngle(double)": "GetScaledAngle(double)", + "GetScaledAngle": "GetScaledAngle(double)", + "GetScaledValue(double)": "GetScaledValue(double)", + "GetScaledValue": "GetScaledValue(double)", + "GetUnscaledAngle(double)": "GetUnscaledAngle(double)", + "GetUnscaledAngle": "GetUnscaledAngle(double)", + "GetUnscaledValue(double)": "GetUnscaledValue(double)", + "GetUnscaledValue": "GetUnscaledValue(double)", + "OnAngleAxisFormatLabel(AxisFormatLabelEventArgs)": "OnAngleAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnAngleAxisFormatLabel": "OnAngleAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnValueAxisFormatLabel(AxisFormatLabelEventArgs)": "OnValueAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnValueAxisFormatLabel": "OnValueAxisFormatLabel(AxisFormatLabelEventArgs)", + "ValueAxisExtent": "ValueAxisExtent", + "ValueAxisExtentProperty": "ValueAxisExtentProperty", + "ValueAxisInverted": "ValueAxisInverted", + "ValueAxisInvertedProperty": "ValueAxisInvertedProperty", + "ValueAxisLabel": "ValueAxisLabel", + "ValueAxisLabelAngle": "ValueAxisLabelAngle", + "ValueAxisLabelAngleProperty": "ValueAxisLabelAngleProperty", + "ValueAxisLabelBottomMargin": "ValueAxisLabelBottomMargin", + "ValueAxisLabelBottomMarginProperty": "ValueAxisLabelBottomMarginProperty", + "ValueAxisLabelFontFamily": "ValueAxisLabelFontFamily", + "ValueAxisLabelFontFamilyProperty": "ValueAxisLabelFontFamilyProperty", + "ValueAxisLabelFontSize": "ValueAxisLabelFontSize", + "ValueAxisLabelFontSizeProperty": "ValueAxisLabelFontSizeProperty", + "ValueAxisLabelFontStyle": "ValueAxisLabelFontStyle", + "ValueAxisLabelFontStyleProperty": "ValueAxisLabelFontStyleProperty", + "ValueAxisLabelFontWeight": "ValueAxisLabelFontWeight", + "ValueAxisLabelFontWeightProperty": "ValueAxisLabelFontWeightProperty", + "ValueAxisLabelFormat": "ValueAxisLabelFormat", + "ValueAxisLabelFormatProperty": "ValueAxisLabelFormatProperty", + "ValueAxisLabelFormatSpecifiers": "ValueAxisLabelFormatSpecifiers", + "ValueAxisLabelFormatSpecifiersProperty": "ValueAxisLabelFormatSpecifiersProperty", + "ValueAxisLabelHorizontalAlignment": "ValueAxisLabelHorizontalAlignment", + "ValueAxisLabelHorizontalAlignmentProperty": "ValueAxisLabelHorizontalAlignmentProperty", + "ValueAxisLabelLeftMargin": "ValueAxisLabelLeftMargin", + "ValueAxisLabelLeftMarginProperty": "ValueAxisLabelLeftMarginProperty", + "ValueAxisLabelLocation": "ValueAxisLabelLocation", + "ValueAxisLabelLocationProperty": "ValueAxisLabelLocationProperty", + "ValueAxisLabelProperty": "ValueAxisLabelProperty", + "ValueAxisLabelRightMargin": "ValueAxisLabelRightMargin", + "ValueAxisLabelRightMarginProperty": "ValueAxisLabelRightMarginProperty", + "ValueAxisLabelTextColor": "ValueAxisLabelTextColor", + "ValueAxisLabelTextColorProperty": "ValueAxisLabelTextColorProperty", + "ValueAxisLabelTopMargin": "ValueAxisLabelTopMargin", + "ValueAxisLabelTopMarginProperty": "ValueAxisLabelTopMarginProperty", + "ValueAxisLabelVerticalAlignment": "ValueAxisLabelVerticalAlignment", + "ValueAxisLabelVerticalAlignmentProperty": "ValueAxisLabelVerticalAlignmentProperty", + "ValueAxisLabelVisibility": "ValueAxisLabelVisibility", + "ValueAxisLabelVisibilityProperty": "ValueAxisLabelVisibilityProperty", + "ValueAxisMajorStroke": "ValueAxisMajorStroke", + "ValueAxisMajorStrokeProperty": "ValueAxisMajorStrokeProperty", + "ValueAxisMajorStrokeThickness": "ValueAxisMajorStrokeThickness", + "ValueAxisMajorStrokeThicknessProperty": "ValueAxisMajorStrokeThicknessProperty", + "ValueAxisMaximumExtent": "ValueAxisMaximumExtent", + "ValueAxisMaximumExtentPercentage": "ValueAxisMaximumExtentPercentage", + "ValueAxisMaximumExtentPercentageProperty": "ValueAxisMaximumExtentPercentageProperty", + "ValueAxisMaximumExtentProperty": "ValueAxisMaximumExtentProperty", + "ValueAxisMinorStroke": "ValueAxisMinorStroke", + "ValueAxisMinorStrokeProperty": "ValueAxisMinorStrokeProperty", + "ValueAxisMinorStrokeThickness": "ValueAxisMinorStrokeThickness", + "ValueAxisMinorStrokeThicknessProperty": "ValueAxisMinorStrokeThicknessProperty", + "ValueAxisStrip": "ValueAxisStrip", + "ValueAxisStripProperty": "ValueAxisStripProperty", + "ValueAxisStroke": "ValueAxisStroke", + "ValueAxisStrokeProperty": "ValueAxisStrokeProperty", + "ValueAxisStrokeThickness": "ValueAxisStrokeThickness", + "ValueAxisStrokeThicknessProperty": "ValueAxisStrokeThicknessProperty", + "ValueAxisTickLength": "ValueAxisTickLength", + "ValueAxisTickLengthProperty": "ValueAxisTickLengthProperty", + "ValueAxisTickStroke": "ValueAxisTickStroke", + "ValueAxisTickStrokeProperty": "ValueAxisTickStrokeProperty", + "ValueAxisTickStrokeThickness": "ValueAxisTickStrokeThickness", + "ValueAxisTickStrokeThicknessProperty": "ValueAxisTickStrokeThicknessProperty", + "ValueAxisTitle": "ValueAxisTitle", + "ValueAxisTitleAlignment": "ValueAxisTitleAlignment", + "ValueAxisTitleAlignmentProperty": "ValueAxisTitleAlignmentProperty", + "ValueAxisTitleAngle": "ValueAxisTitleAngle", + "ValueAxisTitleAngleProperty": "ValueAxisTitleAngleProperty", + "ValueAxisTitleBottomMargin": "ValueAxisTitleBottomMargin", + "ValueAxisTitleBottomMarginProperty": "ValueAxisTitleBottomMarginProperty", + "ValueAxisTitleFontFamily": "ValueAxisTitleFontFamily", + "ValueAxisTitleFontFamilyProperty": "ValueAxisTitleFontFamilyProperty", + "ValueAxisTitleFontSize": "ValueAxisTitleFontSize", + "ValueAxisTitleFontSizeProperty": "ValueAxisTitleFontSizeProperty", + "ValueAxisTitleFontStyle": "ValueAxisTitleFontStyle", + "ValueAxisTitleFontStyleProperty": "ValueAxisTitleFontStyleProperty", + "ValueAxisTitleFontWeight": "ValueAxisTitleFontWeight", + "ValueAxisTitleFontWeightProperty": "ValueAxisTitleFontWeightProperty", + "ValueAxisTitleLeftMargin": "ValueAxisTitleLeftMargin", + "ValueAxisTitleLeftMarginProperty": "ValueAxisTitleLeftMarginProperty", + "ValueAxisTitleMargin": "ValueAxisTitleMargin", + "ValueAxisTitleMarginProperty": "ValueAxisTitleMarginProperty", + "ValueAxisTitleProperty": "ValueAxisTitleProperty", + "ValueAxisTitleRightMargin": "ValueAxisTitleRightMargin", + "ValueAxisTitleRightMarginProperty": "ValueAxisTitleRightMarginProperty", + "ValueAxisTitleTextColor": "ValueAxisTitleTextColor", + "ValueAxisTitleTextColorProperty": "ValueAxisTitleTextColorProperty", + "ValueAxisTitleTopMargin": "ValueAxisTitleTopMargin", + "ValueAxisTitleTopMarginProperty": "ValueAxisTitleTopMarginProperty" + } + } + ], + "RadialBaseChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialBaseChartDescription", + "k": "class", + "s": "classes", + "m": { + "RadialBaseChartDescription()": "RadialBaseChartDescription()", + "RadialBaseChartDescription": "RadialBaseChartDescription()", + "ActualAngleAxisLabelTextColor": "ActualAngleAxisLabelTextColor", + "ActualValueAxisLabelTextColor": "ActualValueAxisLabelTextColor", + "AngleAxisExtent": "AngleAxisExtent", + "AngleAxisFormatLabelRef": "AngleAxisFormatLabelRef", + "AngleAxisInverted": "AngleAxisInverted", + "AngleAxisLabelAngle": "AngleAxisLabelAngle", + "AngleAxisLabelBottomMargin": "AngleAxisLabelBottomMargin", + "AngleAxisLabelFormat": "AngleAxisLabelFormat", + "AngleAxisLabelFormatSpecifiers": "AngleAxisLabelFormatSpecifiers", + "AngleAxisLabelHorizontalAlignment": "AngleAxisLabelHorizontalAlignment", + "AngleAxisLabelLeftMargin": "AngleAxisLabelLeftMargin", + "AngleAxisLabelLocation": "AngleAxisLabelLocation", + "AngleAxisLabelRef": "AngleAxisLabelRef", + "AngleAxisLabelRightMargin": "AngleAxisLabelRightMargin", + "AngleAxisLabelTextColor": "AngleAxisLabelTextColor", + "AngleAxisLabelTextStyle": "AngleAxisLabelTextStyle", + "AngleAxisLabelTopMargin": "AngleAxisLabelTopMargin", + "AngleAxisLabelVerticalAlignment": "AngleAxisLabelVerticalAlignment", + "AngleAxisLabelVisibility": "AngleAxisLabelVisibility", + "AngleAxisMajorStroke": "AngleAxisMajorStroke", + "AngleAxisMajorStrokeThickness": "AngleAxisMajorStrokeThickness", + "AngleAxisMaximumExtent": "AngleAxisMaximumExtent", + "AngleAxisMaximumExtentPercentage": "AngleAxisMaximumExtentPercentage", + "AngleAxisMinorStroke": "AngleAxisMinorStroke", + "AngleAxisMinorStrokeThickness": "AngleAxisMinorStrokeThickness", + "AngleAxisStrip": "AngleAxisStrip", + "AngleAxisStroke": "AngleAxisStroke", + "AngleAxisStrokeThickness": "AngleAxisStrokeThickness", + "AngleAxisTickLength": "AngleAxisTickLength", + "AngleAxisTickStroke": "AngleAxisTickStroke", + "AngleAxisTickStrokeThickness": "AngleAxisTickStrokeThickness", + "AngleAxisTitle": "AngleAxisTitle", + "AngleAxisTitleAlignment": "AngleAxisTitleAlignment", + "AngleAxisTitleAngle": "AngleAxisTitleAngle", + "AngleAxisTitleBottomMargin": "AngleAxisTitleBottomMargin", + "AngleAxisTitleLeftMargin": "AngleAxisTitleLeftMargin", + "AngleAxisTitleMargin": "AngleAxisTitleMargin", + "AngleAxisTitleRightMargin": "AngleAxisTitleRightMargin", + "AngleAxisTitleTextColor": "AngleAxisTitleTextColor", + "AngleAxisTitleTextStyle": "AngleAxisTitleTextStyle", + "AngleAxisTitleTopMargin": "AngleAxisTitleTopMargin", + "Type": "Type", + "ValueAxisExtent": "ValueAxisExtent", + "ValueAxisFormatLabelRef": "ValueAxisFormatLabelRef", + "ValueAxisInverted": "ValueAxisInverted", + "ValueAxisLabelAngle": "ValueAxisLabelAngle", + "ValueAxisLabelBottomMargin": "ValueAxisLabelBottomMargin", + "ValueAxisLabelFormat": "ValueAxisLabelFormat", + "ValueAxisLabelFormatSpecifiers": "ValueAxisLabelFormatSpecifiers", + "ValueAxisLabelHorizontalAlignment": "ValueAxisLabelHorizontalAlignment", + "ValueAxisLabelLeftMargin": "ValueAxisLabelLeftMargin", + "ValueAxisLabelLocation": "ValueAxisLabelLocation", + "ValueAxisLabelRef": "ValueAxisLabelRef", + "ValueAxisLabelRightMargin": "ValueAxisLabelRightMargin", + "ValueAxisLabelTextColor": "ValueAxisLabelTextColor", + "ValueAxisLabelTextStyle": "ValueAxisLabelTextStyle", + "ValueAxisLabelTopMargin": "ValueAxisLabelTopMargin", + "ValueAxisLabelVerticalAlignment": "ValueAxisLabelVerticalAlignment", + "ValueAxisLabelVisibility": "ValueAxisLabelVisibility", + "ValueAxisMajorStroke": "ValueAxisMajorStroke", + "ValueAxisMajorStrokeThickness": "ValueAxisMajorStrokeThickness", + "ValueAxisMaximumExtent": "ValueAxisMaximumExtent", + "ValueAxisMaximumExtentPercentage": "ValueAxisMaximumExtentPercentage", + "ValueAxisMinorStroke": "ValueAxisMinorStroke", + "ValueAxisMinorStrokeThickness": "ValueAxisMinorStrokeThickness", + "ValueAxisStrip": "ValueAxisStrip", + "ValueAxisStroke": "ValueAxisStroke", + "ValueAxisStrokeThickness": "ValueAxisStrokeThickness", + "ValueAxisTickLength": "ValueAxisTickLength", + "ValueAxisTickStroke": "ValueAxisTickStroke", + "ValueAxisTickStrokeThickness": "ValueAxisTickStrokeThickness", + "ValueAxisTitle": "ValueAxisTitle", + "ValueAxisTitleAlignment": "ValueAxisTitleAlignment", + "ValueAxisTitleAngle": "ValueAxisTitleAngle", + "ValueAxisTitleBottomMargin": "ValueAxisTitleBottomMargin", + "ValueAxisTitleLeftMargin": "ValueAxisTitleLeftMargin", + "ValueAxisTitleMargin": "ValueAxisTitleMargin", + "ValueAxisTitleRightMargin": "ValueAxisTitleRightMargin", + "ValueAxisTitleTextColor": "ValueAxisTitleTextColor", + "ValueAxisTitleTextStyle": "ValueAxisTitleTextStyle", + "ValueAxisTitleTopMargin": "ValueAxisTitleTopMargin" + } + } + ], + "RadialBaseChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialBaseChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialBaseChartDescriptionMetadata()": "RadialBaseChartDescriptionMetadata()", + "RadialBaseChartDescriptionMetadata": "RadialBaseChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialBaseDescription", + "k": "class", + "s": "classes", + "m": { + "RadialBaseDescription()": "RadialBaseDescription()", + "RadialBaseDescription": "RadialBaseDescription()", + "AngleAxisRef": "AngleAxisRef", + "AssigningRadialMarkerStyleRef": "AssigningRadialMarkerStyleRef", + "AssigningRadialStyleRef": "AssigningRadialStyleRef", + "AutoCalloutLabelPrecision": "AutoCalloutLabelPrecision", + "AutoCalloutLabelValueSeparator": "AutoCalloutLabelValueSeparator", + "AutoCalloutOthersLabelFormat": "AutoCalloutOthersLabelFormat", + "AutoCalloutOthersLabelFormatSpecifiers": "AutoCalloutOthersLabelFormatSpecifiers", + "AutoCalloutPercentagePrecision": "AutoCalloutPercentagePrecision", + "AutoCalloutRadialLabelMode": "AutoCalloutRadialLabelMode", + "CategoryCollisionMode": "CategoryCollisionMode", + "ClipSeriesToBounds": "ClipSeriesToBounds", + "IsCustomRadialMarkerStyleAllowed": "IsCustomRadialMarkerStyleAllowed", + "IsCustomRadialStyleAllowed": "IsCustomRadialStyleAllowed", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "LegendProportionalRadialLabelFormat": "LegendProportionalRadialLabelFormat", + "LegendProportionalRadialLabelFormatSpecifiers": "LegendProportionalRadialLabelFormatSpecifiers", + "LegendRadialLabelMode": "LegendRadialLabelMode", + "OthersCategoryBrush": "OthersCategoryBrush", + "OthersCategoryOutline": "OthersCategoryOutline", + "OthersLegendProportionalRadialLabelFormat": "OthersLegendProportionalRadialLabelFormat", + "OthersLegendProportionalRadialLabelFormatSpecifiers": "OthersLegendProportionalRadialLabelFormatSpecifiers", + "OthersProportionalRadialLabelFormat": "OthersProportionalRadialLabelFormat", + "OthersProportionalRadialLabelFormatSpecifiers": "OthersProportionalRadialLabelFormatSpecifiers", + "ProportionalRadialLabelFormat": "ProportionalRadialLabelFormat", + "ProportionalRadialLabelFormatSpecifiers": "ProportionalRadialLabelFormatSpecifiers", + "TransitionInMode": "TransitionInMode", + "Type": "Type", + "ValueAxisRef": "ValueAxisRef" + } + } + ], + "RadialBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialBaseDescriptionMetadata()": "RadialBaseDescriptionMetadata()", + "RadialBaseDescriptionMetadata": "RadialBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialColumnSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RadialColumnSeries", + "k": "class", + "s": "classes", + "m": { + "RadialColumnSeries()": "RadialColumnSeries()", + "RadialColumnSeries": "RadialColumnSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "RadialColumnSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RadialColumnSeriesDescription()": "RadialColumnSeriesDescription()", + "RadialColumnSeriesDescription": "RadialColumnSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "RadialColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialColumnSeriesDescriptionMetadata()": "RadialColumnSeriesDescriptionMetadata()", + "RadialColumnSeriesDescriptionMetadata": "RadialColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialColumnSeriesDescriptionModule()": "RadialColumnSeriesDescriptionModule()", + "RadialColumnSeriesDescriptionModule": "RadialColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeBackingShape": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/enums/RadialGaugeBackingShape", + "k": "enum", + "s": "enums" + } + ], + "RadialGaugeCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialGaugeCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeCoreDescriptionModule()": "RadialGaugeCoreDescriptionModule()", + "RadialGaugeCoreDescriptionModule": "RadialGaugeCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDashboardTileDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialGaugeDashboardTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDashboardTileDescriptionModule()": "RadialGaugeDashboardTileDescriptionModule()", + "RadialGaugeDashboardTileDescriptionModule": "RadialGaugeDashboardTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/RadialGaugeDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDashboardTileFeature()": "RadialGaugeDashboardTileFeature()", + "RadialGaugeDashboardTileFeature": "RadialGaugeDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()", + "RegisterCore(TypeDescriptionContext)": "RegisterCore(TypeDescriptionContext)", + "RegisterCore": "RegisterCore(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialGaugeDescription", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDescription()": "RadialGaugeDescription()", + "RadialGaugeDescription": "RadialGaugeDescription()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AlignHighlightLabelRef": "AlignHighlightLabelRef", + "AlignLabelRef": "AlignLabelRef", + "AlignSubtitleRef": "AlignSubtitleRef", + "AlignTitleRef": "AlignTitleRef", + "Background": "Background", + "BackingBrush": "BackingBrush", + "BackingCornerRadius": "BackingCornerRadius", + "BackingInnerExtent": "BackingInnerExtent", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOutline": "BackingOutline", + "BackingOversweep": "BackingOversweep", + "BackingShape": "BackingShape", + "BackingStrokeThickness": "BackingStrokeThickness", + "CenterX": "CenterX", + "CenterY": "CenterY", + "DuplicateLabelOmissionStrategy": "DuplicateLabelOmissionStrategy", + "Font": "Font", + "FontBrush": "FontBrush", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatHighlightLabelRef": "FormatHighlightLabelRef", + "FormatLabelRef": "FormatLabelRef", + "FormatSubtitleRef": "FormatSubtitleRef", + "FormatTitleRef": "FormatTitleRef", + "Height": "Height", + "HighlightLabelAngle": "HighlightLabelAngle", + "HighlightLabelBrush": "HighlightLabelBrush", + "HighlightLabelDisplaysValue": "HighlightLabelDisplaysValue", + "HighlightLabelExtent": "HighlightLabelExtent", + "HighlightLabelFontFamily": "HighlightLabelFontFamily", + "HighlightLabelFontSize": "HighlightLabelFontSize", + "HighlightLabelFontStyle": "HighlightLabelFontStyle", + "HighlightLabelFontWeight": "HighlightLabelFontWeight", + "HighlightLabelFormat": "HighlightLabelFormat", + "HighlightLabelFormatSpecifiers": "HighlightLabelFormatSpecifiers", + "HighlightLabelSnapsToNeedlePivot": "HighlightLabelSnapsToNeedlePivot", + "HighlightLabelText": "HighlightLabelText", + "HighlightValue": "HighlightValue", + "HighlightValueChangedRef": "HighlightValueChangedRef", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueOpacity": "HighlightValueOpacity", + "Interval": "Interval", + "IsHighlightNeedleDraggingConstrained": "IsHighlightNeedleDraggingConstrained", + "IsHighlightNeedleDraggingEnabled": "IsHighlightNeedleDraggingEnabled", + "IsNeedleDraggingConstrained": "IsNeedleDraggingConstrained", + "IsNeedleDraggingEnabled": "IsNeedleDraggingEnabled", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInterval": "LabelInterval", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "MinorTickBrush": "MinorTickBrush", + "MinorTickCount": "MinorTickCount", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "NeedleBaseFeatureExtent": "NeedleBaseFeatureExtent", + "NeedleBaseFeatureWidthRatio": "NeedleBaseFeatureWidthRatio", + "NeedleBrush": "NeedleBrush", + "NeedleEndExtent": "NeedleEndExtent", + "NeedleEndWidthRatio": "NeedleEndWidthRatio", + "NeedleOutline": "NeedleOutline", + "NeedlePivotBrush": "NeedlePivotBrush", + "NeedlePivotInnerWidthRatio": "NeedlePivotInnerWidthRatio", + "NeedlePivotOutline": "NeedlePivotOutline", + "NeedlePivotShape": "NeedlePivotShape", + "NeedlePivotStrokeThickness": "NeedlePivotStrokeThickness", + "NeedlePivotWidthRatio": "NeedlePivotWidthRatio", + "NeedlePointFeatureExtent": "NeedlePointFeatureExtent", + "NeedlePointFeatureWidthRatio": "NeedlePointFeatureWidthRatio", + "NeedleShape": "NeedleShape", + "NeedleStartExtent": "NeedleStartExtent", + "NeedleStartWidthRatio": "NeedleStartWidthRatio", + "NeedleStrokeThickness": "NeedleStrokeThickness", + "OpticalScalingEnabled": "OpticalScalingEnabled", + "OpticalScalingRatio": "OpticalScalingRatio", + "OpticalScalingSize": "OpticalScalingSize", + "PixelScalingRatio": "PixelScalingRatio", + "RadiusMultiplier": "RadiusMultiplier", + "RangeBrushes": "RangeBrushes", + "RangeOutlines": "RangeOutlines", + "Ranges": "Ranges", + "ScaleBrush": "ScaleBrush", + "ScaleEndAngle": "ScaleEndAngle", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleOversweep": "ScaleOversweep", + "ScaleOversweepShape": "ScaleOversweepShape", + "ScaleStartAngle": "ScaleStartAngle", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleSweepDirection": "ScaleSweepDirection", + "SubtitleAngle": "SubtitleAngle", + "SubtitleBrush": "SubtitleBrush", + "SubtitleDisplaysValue": "SubtitleDisplaysValue", + "SubtitleExtent": "SubtitleExtent", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFormat": "SubtitleFormat", + "SubtitleFormatSpecifiers": "SubtitleFormatSpecifiers", + "SubtitleSnapsToNeedlePivot": "SubtitleSnapsToNeedlePivot", + "SubtitleText": "SubtitleText", + "TickBrush": "TickBrush", + "TickEndExtent": "TickEndExtent", + "TickStartExtent": "TickStartExtent", + "TickStrokeThickness": "TickStrokeThickness", + "TitleAngle": "TitleAngle", + "TitleBrush": "TitleBrush", + "TitleDisplaysValue": "TitleDisplaysValue", + "TitleExtent": "TitleExtent", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "TitleFormat": "TitleFormat", + "TitleFormatSpecifiers": "TitleFormatSpecifiers", + "TitleSnapsToNeedlePivot": "TitleSnapsToNeedlePivot", + "TitleText": "TitleText", + "TransitionDuration": "TransitionDuration", + "TransitionProgress": "TransitionProgress", + "Type": "Type", + "Value": "Value", + "ValueChangedRef": "ValueChangedRef", + "Width": "Width" + } + } + ], + "RadialGaugeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialGaugeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDescriptionMetadata()": "RadialGaugeDescriptionMetadata()", + "RadialGaugeDescriptionMetadata": "RadialGaugeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialGaugeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeDescriptionModule()": "RadialGaugeDescriptionModule()", + "RadialGaugeDescriptionModule": "RadialGaugeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeDuplicateLabelOmissionStrategy": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/enums/RadialGaugeDuplicateLabelOmissionStrategy", + "k": "enum", + "s": "enums" + } + ], + "RadialGaugeNeedleShape": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/enums/RadialGaugeNeedleShape", + "k": "enum", + "s": "enums" + } + ], + "RadialGaugePivotShape": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/enums/RadialGaugePivotShape", + "k": "enum", + "s": "enums" + } + ], + "RadialGaugeRange": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/RadialGaugeRange", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRange()": "RadialGaugeRange()", + "RadialGaugeRange": "RadialGaugeRange()", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "EndInset": "EndInset", + "EndInsetProperty": "EndInsetProperty", + "EndValue": "EndValue", + "EndValueProperty": "EndValueProperty", + "InnerEndExtent": "InnerEndExtent", + "InnerEndExtentProperty": "InnerEndExtentProperty", + "InnerStartExtent": "InnerStartExtent", + "InnerStartExtentProperty": "InnerStartExtentProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OuterEndExtent": "OuterEndExtent", + "OuterEndExtentProperty": "OuterEndExtentProperty", + "OuterStartExtent": "OuterStartExtent", + "OuterStartExtentProperty": "OuterStartExtentProperty", + "Outline": "Outline", + "OutlineProperty": "OutlineProperty", + "StartInset": "StartInset", + "StartInsetProperty": "StartInsetProperty", + "StartValue": "StartValue", + "StartValueProperty": "StartValueProperty", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RadialGaugeRangeCollection": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/RadialGaugeRangeCollection", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRangeCollection()": "RadialGaugeRangeCollection()", + "RadialGaugeRangeCollection": "RadialGaugeRangeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RadialGaugeRangeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialGaugeRangeDescription", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRangeDescription()": "RadialGaugeRangeDescription()", + "RadialGaugeRangeDescription": "RadialGaugeRangeDescription()", + "Brush": "Brush", + "EndInset": "EndInset", + "EndValue": "EndValue", + "InnerEndExtent": "InnerEndExtent", + "InnerStartExtent": "InnerStartExtent", + "OuterEndExtent": "OuterEndExtent", + "OuterStartExtent": "OuterStartExtent", + "Outline": "Outline", + "StartInset": "StartInset", + "StartValue": "StartValue", + "StrokeThickness": "StrokeThickness", + "Type": "Type" + } + } + ], + "RadialGaugeRangeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialGaugeRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRangeDescriptionMetadata()": "RadialGaugeRangeDescriptionMetadata()", + "RadialGaugeRangeDescriptionMetadata": "RadialGaugeRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeRangeDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialGaugeRangeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialGaugeRangeDescriptionModule()": "RadialGaugeRangeDescriptionModule()", + "RadialGaugeRangeDescriptionModule": "RadialGaugeRangeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialGaugeScaleOversweepShape": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/enums/RadialGaugeScaleOversweepShape", + "k": "enum", + "s": "enums" + } + ], + "RadialLabelMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/RadialLabelMode", + "k": "enum", + "s": "enums" + } + ], + "RadialLineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RadialLineSeries", + "k": "class", + "s": "classes", + "m": { + "RadialLineSeries()": "RadialLineSeries()", + "RadialLineSeries": "RadialLineSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "RadialLineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RadialLineSeriesDescription()": "RadialLineSeriesDescription()", + "RadialLineSeriesDescription": "RadialLineSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "RadialLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialLineSeriesDescriptionMetadata()": "RadialLineSeriesDescriptionMetadata()", + "RadialLineSeriesDescriptionMetadata": "RadialLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialLineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialLineSeriesDescriptionModule()": "RadialLineSeriesDescriptionModule()", + "RadialLineSeriesDescriptionModule": "RadialLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialPieSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RadialPieSeries", + "k": "class", + "s": "classes", + "m": { + "RadialPieSeries()": "RadialPieSeries()", + "RadialPieSeries": "RadialPieSeries()", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendEmptyValuesModeProperty": "LegendEmptyValuesModeProperty", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendLabelMemberPathProperty": "LegendLabelMemberPathProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty", + "UseInsetOutlines": "UseInsetOutlines", + "UseInsetOutlinesProperty": "UseInsetOutlinesProperty" + } + } + ], + "RadialPieSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialPieSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RadialPieSeriesDescription()": "RadialPieSeriesDescription()", + "RadialPieSeriesDescription": "RadialPieSeriesDescription()", + "LegendEmptyValuesMode": "LegendEmptyValuesMode", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type", + "UseInsetOutlines": "UseInsetOutlines" + } + } + ], + "RadialPieSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialPieSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RadialPieSeriesDescriptionMetadata()": "RadialPieSeriesDescriptionMetadata()", + "RadialPieSeriesDescriptionMetadata": "RadialPieSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RadialPieSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RadialPieSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RadialPieSeriesDescriptionModule()": "RadialPieSeriesDescriptionModule()", + "RadialPieSeriesDescriptionModule": "RadialPieSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RangeAreaSeries", + "k": "class", + "s": "classes", + "m": { + "RangeAreaSeries()": "RangeAreaSeries()", + "RangeAreaSeries": "RangeAreaSeries()" + } + } + ], + "RangeAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RangeAreaSeriesDescription()": "RangeAreaSeriesDescription()", + "RangeAreaSeriesDescription": "RangeAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "RangeAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RangeAreaSeriesDescriptionMetadata()": "RangeAreaSeriesDescriptionMetadata()", + "RangeAreaSeriesDescriptionMetadata": "RangeAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RangeAreaSeriesDescriptionModule()": "RangeAreaSeriesDescriptionModule()", + "RangeAreaSeriesDescriptionModule": "RangeAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeBarSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RangeBarSeries", + "k": "class", + "s": "classes", + "m": { + "RangeBarSeries()": "RangeBarSeries()", + "RangeBarSeries": "RangeBarSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "RangeBarSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeBarSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RangeBarSeriesDescription()": "RangeBarSeriesDescription()", + "RangeBarSeriesDescription": "RangeBarSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "RangeBarSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeBarSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RangeBarSeriesDescriptionMetadata()": "RangeBarSeriesDescriptionMetadata()", + "RangeBarSeriesDescriptionMetadata": "RangeBarSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeBarSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeBarSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RangeBarSeriesDescriptionModule()": "RangeBarSeriesDescriptionModule()", + "RangeBarSeriesDescriptionModule": "RangeBarSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeCategorySeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RangeCategorySeries", + "k": "class", + "s": "classes", + "m": { + "HighMemberPath": "HighMemberPath", + "HighMemberPathProperty": "HighMemberPathProperty", + "HighlightedHighMemberPath": "HighlightedHighMemberPath", + "HighlightedHighMemberPathProperty": "HighlightedHighMemberPathProperty", + "HighlightedLowMemberPath": "HighlightedLowMemberPath", + "HighlightedLowMemberPathProperty": "HighlightedLowMemberPathProperty", + "LowMemberPath": "LowMemberPath", + "LowMemberPathProperty": "LowMemberPathProperty" + } + } + ], + "RangeCategorySeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RangeCategorySeriesDescription()": "RangeCategorySeriesDescription()", + "RangeCategorySeriesDescription": "RangeCategorySeriesDescription()", + "HighMemberPath": "HighMemberPath", + "HighlightedHighMemberPath": "HighlightedHighMemberPath", + "HighlightedLowMemberPath": "HighlightedLowMemberPath", + "LowMemberPath": "LowMemberPath", + "Type": "Type" + } + } + ], + "RangeCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RangeCategorySeriesDescriptionMetadata()": "RangeCategorySeriesDescriptionMetadata()", + "RangeCategorySeriesDescriptionMetadata": "RangeCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeColumnSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RangeColumnSeries", + "k": "class", + "s": "classes", + "m": { + "RangeColumnSeries()": "RangeColumnSeries()", + "RangeColumnSeries": "RangeColumnSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "RangeColumnSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RangeColumnSeriesDescription()": "RangeColumnSeriesDescription()", + "RangeColumnSeriesDescription": "RangeColumnSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "RangeColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RangeColumnSeriesDescriptionMetadata()": "RangeColumnSeriesDescriptionMetadata()", + "RangeColumnSeriesDescriptionMetadata": "RangeColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RangeColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RangeColumnSeriesDescriptionModule()": "RangeColumnSeriesDescriptionModule()", + "RangeColumnSeriesDescriptionModule": "RangeColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RangeVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/RangeVisualData", + "k": "class", + "s": "classes", + "m": { + "RangeVisualData()": "RangeVisualData()", + "RangeVisualData": "RangeVisualData()", + "RangePath": "RangePath", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "RangeVisualDataList": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/RangeVisualDataList", + "k": "class", + "s": "classes", + "m": { + "RangeVisualDataList()": "RangeVisualDataList()", + "RangeVisualDataList": "RangeVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "RateOfChangeAndMomentumIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RateOfChangeAndMomentumIndicator", + "k": "class", + "s": "classes", + "m": { + "RateOfChangeAndMomentumIndicator()": "RateOfChangeAndMomentumIndicator()", + "RateOfChangeAndMomentumIndicator": "RateOfChangeAndMomentumIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "RateOfChangeAndMomentumIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RateOfChangeAndMomentumIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "RateOfChangeAndMomentumIndicatorDescription()": "RateOfChangeAndMomentumIndicatorDescription()", + "RateOfChangeAndMomentumIndicatorDescription": "RateOfChangeAndMomentumIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "RateOfChangeAndMomentumIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RateOfChangeAndMomentumIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RateOfChangeAndMomentumIndicatorDescriptionMetadata()": "RateOfChangeAndMomentumIndicatorDescriptionMetadata()", + "RateOfChangeAndMomentumIndicatorDescriptionMetadata": "RateOfChangeAndMomentumIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RateOfChangeAndMomentumIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RateOfChangeAndMomentumIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RateOfChangeAndMomentumIndicatorDescriptionModule()": "RateOfChangeAndMomentumIndicatorDescriptionModule()", + "RateOfChangeAndMomentumIndicatorDescriptionModule": "RateOfChangeAndMomentumIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ReadOnlyNotifyCollection": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/ReadOnlyNotifyCollection", + "k": "class", + "s": "classes", + "m": { + "ReadOnlyNotifyCollection(IList)": "ReadOnlyNotifyCollection(IList)", + "ReadOnlyNotifyCollection": "ReadOnlyNotifyCollection(IList)", + "Contains(T)": "Contains(T)", + "Contains": "Contains(T)", + "CopyTo(T[], int)": "CopyTo(T[], int)", + "CopyTo": "CopyTo(T[], int)", + "Count": "Count", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "IndexOf(T)": "IndexOf(T)", + "IndexOf": "IndexOf(T)", + "IsReadOnly": "IsReadOnly", + "this[int]": "this[int]", + "Source": "Source" + } + } + ], + "ReadOnlyObservableCollectionWrapper": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/ReadOnlyObservableCollectionWrapper", + "k": "class", + "s": "classes", + "m": { + "ReadOnlyObservableCollectionWrapper(IList)": "ReadOnlyObservableCollectionWrapper(IList)", + "ReadOnlyObservableCollectionWrapper": "ReadOnlyObservableCollectionWrapper(IList)" + } + } + ], + "ReadOnlyStreamAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/ReadOnlyStreamAttribute", + "k": "class", + "s": "classes", + "m": { + "ReadOnlyStreamAttribute()": "ReadOnlyStreamAttribute()", + "ReadOnlyStreamAttribute": "ReadOnlyStreamAttribute()" + } + } + ], + "RearrangedList": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RearrangedList", + "k": "class", + "s": "classes", + "m": { + "RearrangedList(IList, IList)": "RearrangedList(IList, IList)", + "RearrangedList": "RearrangedList(IList, IList)", + "Add(T)": "Add(T)", + "Add": "Add(T)", + "Clear()": "Clear()", + "Clear": "Clear()", + "Contains(T)": "Contains(T)", + "Contains": "Contains(T)", + "CopyTo(T[], int)": "CopyTo(T[], int)", + "CopyTo": "CopyTo(T[], int)", + "Count": "Count", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "IndexOf(T)": "IndexOf(T)", + "IndexOf": "IndexOf(T)", + "Insert(int, T)": "Insert(int, T)", + "Insert": "Insert(int, T)", + "IsReadOnly": "IsReadOnly", + "this[int]": "this[int]", + "Remove(T)": "Remove(T)", + "Remove": "Remove(T)", + "RemoveAt(int)": "RemoveAt(int)", + "RemoveAt": "RemoveAt(int)" + } + } + ], + "RectangleGeometryData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RectangleGeometryData", + "k": "class", + "s": "classes", + "m": { + "RectangleGeometryData()": "RectangleGeometryData()", + "RectangleGeometryData": "RectangleGeometryData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Height": "Height", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "Width": "Width", + "X": "X", + "Y": "Y" + } + } + ], + "RectangleVisualData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RectangleVisualData", + "k": "class", + "s": "classes", + "m": { + "RectangleVisualData()": "RectangleVisualData()", + "RectangleVisualData": "RectangleVisualData()", + "GetPointsOverride(List>, GetPointsSettings)": "GetPointsOverride(List>, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List>, GetPointsSettings)", + "Height": "Height", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type", + "Width": "Width" + } + } + ], + "RectChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RectChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "RectChangedEventArgs(Rect, Rect)": "RectChangedEventArgs(Rect, Rect)", + "RectChangedEventArgs": "RectChangedEventArgs(Rect, Rect)", + "NewRect": "NewRect", + "OldRect": "OldRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RectChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RectChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "RectChangedEventArgsDescription()": "RectChangedEventArgsDescription()", + "RectChangedEventArgsDescription": "RectChangedEventArgsDescription()", + "NewRect": "NewRect", + "OldRect": "OldRect", + "Type": "Type" + } + } + ], + "RectChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RectChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RectChangedEventArgsDescriptionMetadata()": "RectChangedEventArgsDescriptionMetadata()", + "RectChangedEventArgsDescriptionMetadata": "RectChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RectData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RectData", + "k": "class", + "s": "classes", + "m": { + "RectData(double, double, double, double)": "RectData(double, double, double, double)", + "RectData": "RectData(double, double, double, double)", + "Empty": "Empty", + "FromPixelUnits()": "FromPixelUnits()", + "FromPixelUnits": "FromPixelUnits()", + "Height": "Height", + "IsEmpty": "IsEmpty", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Top": "Top", + "Width": "Width" + } + } + ], + "RectDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RectDescription", + "k": "class", + "s": "classes", + "m": { + "RectDescription()": "RectDescription()", + "RectDescription": "RectDescription()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Height": "Height", + "Left": "Left", + "Top": "Top", + "Width": "Width" + } + } + ], + "RefreshCompletedEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RefreshCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "RefreshCompletedEventArgs()": "RefreshCompletedEventArgs()", + "RefreshCompletedEventArgs": "RefreshCompletedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RefreshCompletedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RefreshCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "RefreshCompletedEventArgsDescription()": "RefreshCompletedEventArgsDescription()", + "RefreshCompletedEventArgsDescription": "RefreshCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "RefreshCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RefreshCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RefreshCompletedEventArgsDescriptionMetadata()": "RefreshCompletedEventArgsDescriptionMetadata()", + "RefreshCompletedEventArgsDescriptionMetadata": "RefreshCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RelativeStrengthIndexIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RelativeStrengthIndexIndicator", + "k": "class", + "s": "classes", + "m": { + "RelativeStrengthIndexIndicator()": "RelativeStrengthIndexIndicator()", + "RelativeStrengthIndexIndicator": "RelativeStrengthIndexIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "RelativeStrengthIndexIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RelativeStrengthIndexIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "RelativeStrengthIndexIndicatorDescription()": "RelativeStrengthIndexIndicatorDescription()", + "RelativeStrengthIndexIndicatorDescription": "RelativeStrengthIndexIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "RelativeStrengthIndexIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RelativeStrengthIndexIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RelativeStrengthIndexIndicatorDescriptionMetadata()": "RelativeStrengthIndexIndicatorDescriptionMetadata()", + "RelativeStrengthIndexIndicatorDescriptionMetadata": "RelativeStrengthIndexIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RelativeStrengthIndexIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RelativeStrengthIndexIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RelativeStrengthIndexIndicatorDescriptionModule()": "RelativeStrengthIndexIndicatorDescriptionModule()", + "RelativeStrengthIndexIndicatorDescriptionModule": "RelativeStrengthIndexIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RenderRequestedEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RenderRequestedEventArgs", + "k": "class", + "s": "classes", + "m": { + "RenderRequestedEventArgs()": "RenderRequestedEventArgs()", + "RenderRequestedEventArgs": "RenderRequestedEventArgs()", + "Animate": "Animate", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RenderRequestedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RenderRequestedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "RenderRequestedEventArgsDescription()": "RenderRequestedEventArgsDescription()", + "RenderRequestedEventArgsDescription": "RenderRequestedEventArgsDescription()", + "Animate": "Animate", + "Type": "Type" + } + } + ], + "RenderRequestedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RenderRequestedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RenderRequestedEventArgsDescriptionMetadata()": "RenderRequestedEventArgsDescriptionMetadata()", + "RenderRequestedEventArgsDescriptionMetadata": "RenderRequestedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsivePhase": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ResponsivePhase", + "k": "class", + "s": "classes", + "m": { + "ResponsivePhase()": "ResponsivePhase()", + "ResponsivePhase": "ResponsivePhase()", + "AddColumnExchanger()": "AddColumnExchanger()", + "AddColumnExchanger": "AddColumnExchanger()", + "AddColumnExchanger(ColumnExchanger)": "AddColumnExchanger(ColumnExchanger)", + "AddColumnPropertySetter()": "AddColumnPropertySetter()", + "AddColumnPropertySetter": "AddColumnPropertySetter()", + "AddColumnPropertySetter(ColumnPropertySetter)": "AddColumnPropertySetter(ColumnPropertySetter)", + "DelayMilliseconds": "DelayMilliseconds", + "DelayMillisecondsProperty": "DelayMillisecondsProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsivePhaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsivePhaseDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsivePhaseDescription()": "ResponsivePhaseDescription()", + "ResponsivePhaseDescription": "ResponsivePhaseDescription()", + "DelayMilliseconds": "DelayMilliseconds", + "Type": "Type" + } + } + ], + "ResponsivePhaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsivePhaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsivePhaseDescriptionMetadata()": "ResponsivePhaseDescriptionMetadata()", + "ResponsivePhaseDescriptionMetadata": "ResponsivePhaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsivePhasesCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ResponsivePhasesCollection", + "k": "class", + "s": "classes", + "m": { + "ResponsivePhasesCollection()": "ResponsivePhasesCollection()", + "ResponsivePhasesCollection": "ResponsivePhasesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveState": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ResponsiveState", + "k": "class", + "s": "classes", + "m": { + "ResponsiveState()": "ResponsiveState()", + "ResponsiveState": "ResponsiveState()", + "AddResponsivePhase()": "AddResponsivePhase()", + "AddResponsivePhase": "AddResponsivePhase()", + "AddResponsivePhase(ResponsivePhase)": "AddResponsivePhase(ResponsivePhase)", + "IsManualState": "IsManualState", + "IsManualStateProperty": "IsManualStateProperty", + "MaximumWidth": "MaximumWidth", + "MaximumWidthProperty": "MaximumWidthProperty", + "MinimumWidth": "MinimumWidth", + "MinimumWidthProperty": "MinimumWidthProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnStateEntered(ResponsiveStateEnteredEventArgs)": "OnStateEntered(ResponsiveStateEnteredEventArgs)", + "OnStateEntered": "OnStateEntered(ResponsiveStateEnteredEventArgs)", + "OnStateEntering(ResponsiveStateEnteringEventArgs)": "OnStateEntering(ResponsiveStateEnteringEventArgs)", + "OnStateEntering": "OnStateEntering(ResponsiveStateEnteringEventArgs)", + "OnStateExited(ResponsiveStateExitedEventArgs)": "OnStateExited(ResponsiveStateExitedEventArgs)", + "OnStateExited": "OnStateExited(ResponsiveStateExitedEventArgs)", + "ResponsivePhases": "ResponsivePhases", + "ResponsivePhasesProperty": "ResponsivePhasesProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsiveStateDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateDescription()": "ResponsiveStateDescription()", + "ResponsiveStateDescription": "ResponsiveStateDescription()", + "IsManualState": "IsManualState", + "MaximumWidth": "MaximumWidth", + "MinimumWidth": "MinimumWidth", + "StateEnteredRef": "StateEnteredRef", + "StateEnteringRef": "StateEnteringRef", + "StateExitedRef": "StateExitedRef", + "Type": "Type" + } + } + ], + "ResponsiveStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsiveStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateDescriptionMetadata()": "ResponsiveStateDescriptionMetadata()", + "ResponsiveStateDescriptionMetadata": "ResponsiveStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsiveStateEnteredEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ResponsiveStateEnteredEventArgs", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteredEventArgs()": "ResponsiveStateEnteredEventArgs()", + "ResponsiveStateEnteredEventArgs": "ResponsiveStateEnteredEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveStateEnteredEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsiveStateEnteredEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteredEventArgsDescription()": "ResponsiveStateEnteredEventArgsDescription()", + "ResponsiveStateEnteredEventArgsDescription": "ResponsiveStateEnteredEventArgsDescription()", + "Type": "Type" + } + } + ], + "ResponsiveStateEnteredEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsiveStateEnteredEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteredEventArgsDescriptionMetadata()": "ResponsiveStateEnteredEventArgsDescriptionMetadata()", + "ResponsiveStateEnteredEventArgsDescriptionMetadata": "ResponsiveStateEnteredEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsiveStateEnteringEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ResponsiveStateEnteringEventArgs", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteringEventArgs()": "ResponsiveStateEnteringEventArgs()", + "ResponsiveStateEnteringEventArgs": "ResponsiveStateEnteringEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveStateEnteringEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsiveStateEnteringEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteringEventArgsDescription()": "ResponsiveStateEnteringEventArgsDescription()", + "ResponsiveStateEnteringEventArgsDescription": "ResponsiveStateEnteringEventArgsDescription()", + "Type": "Type" + } + } + ], + "ResponsiveStateEnteringEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsiveStateEnteringEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateEnteringEventArgsDescriptionMetadata()": "ResponsiveStateEnteringEventArgsDescriptionMetadata()", + "ResponsiveStateEnteringEventArgsDescriptionMetadata": "ResponsiveStateEnteringEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsiveStateExitedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ResponsiveStateExitedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateExitedEventArgs()": "ResponsiveStateExitedEventArgs()", + "ResponsiveStateExitedEventArgs": "ResponsiveStateExitedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ResponsiveStateExitedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsiveStateExitedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateExitedEventArgsDescription()": "ResponsiveStateExitedEventArgsDescription()", + "ResponsiveStateExitedEventArgsDescription": "ResponsiveStateExitedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ResponsiveStateExitedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ResponsiveStateExitedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStateExitedEventArgsDescriptionMetadata()": "ResponsiveStateExitedEventArgsDescriptionMetadata()", + "ResponsiveStateExitedEventArgsDescriptionMetadata": "ResponsiveStateExitedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ResponsiveStatesCollection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/ResponsiveStatesCollection", + "k": "class", + "s": "classes", + "m": { + "ResponsiveStatesCollection()": "ResponsiveStatesCollection()", + "ResponsiveStatesCollection": "ResponsiveStatesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RingDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RingDescription", + "k": "class", + "s": "classes", + "m": { + "RingDescription()": "RingDescription()", + "RingDescription": "RingDescription()", + "Center": "Center", + "ControlSize": "ControlSize", + "Index": "Index", + "InnerExtend": "InnerExtend", + "RingBreadth": "RingBreadth", + "RingSeries": "RingSeries", + "Type": "Type" + } + } + ], + "RingDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RingDescriptionMetadata()": "RingDescriptionMetadata()", + "RingDescriptionMetadata": "RingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RingSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RingSeries", + "k": "class", + "s": "classes", + "m": { + "RingSeries()": "RingSeries()", + "RingSeries": "RingSeries()" + } + } + ], + "RingSeriesBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RingSeriesBase", + "k": "class", + "s": "classes", + "m": { + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "Chart": "Chart", + "ChartProperty": "ChartProperty", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontBrush": "FontBrush", + "FontBrushProperty": "FontBrushProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsSurfaceInteractionDisabledProperty": "IsSurfaceInteractionDisabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInnerColor": "LabelInnerColor", + "LabelInnerColorProperty": "LabelInnerColorProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LabelOuterColor": "LabelOuterColor", + "LabelOuterColorProperty": "LabelOuterColorProperty", + "LabelsPosition": "LabelsPosition", + "LabelsPositionProperty": "LabelsPositionProperty", + "LeaderLineFill": "LeaderLineFill", + "LeaderLineFillProperty": "LeaderLineFillProperty", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineMarginProperty": "LeaderLineMarginProperty", + "LeaderLineOpacity": "LeaderLineOpacity", + "LeaderLineOpacityProperty": "LeaderLineOpacityProperty", + "LeaderLineStroke": "LeaderLineStroke", + "LeaderLineStrokeProperty": "LeaderLineStrokeProperty", + "LeaderLineStrokeThickness": "LeaderLineStrokeThickness", + "LeaderLineStrokeThicknessProperty": "LeaderLineStrokeThicknessProperty", + "LeaderLineType": "LeaderLineType", + "LeaderLineTypeProperty": "LeaderLineTypeProperty", + "LeaderLineVisibility": "LeaderLineVisibility", + "LeaderLineVisibilityProperty": "LeaderLineVisibilityProperty", + "Legend": "Legend", + "LegendLabelFormat": "LegendLabelFormat", + "LegendLabelFormatProperty": "LegendLabelFormatProperty", + "LegendLabelFormatSpecifiers": "LegendLabelFormatSpecifiers", + "LegendLabelFormatSpecifiersProperty": "LegendLabelFormatSpecifiersProperty", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendLabelMemberPathProperty": "LegendLabelMemberPathProperty", + "LegendOthersLabelFormat": "LegendOthersLabelFormat", + "LegendOthersLabelFormatProperty": "LegendOthersLabelFormatProperty", + "LegendOthersLabelFormatSpecifiers": "LegendOthersLabelFormatSpecifiers", + "LegendOthersLabelFormatSpecifiersProperty": "LegendOthersLabelFormatSpecifiersProperty", + "LegendProperty": "LegendProperty", + "OnFormatLabel(PieChartFormatLabelEventArgs)": "OnFormatLabel(PieChartFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(PieChartFormatLabelEventArgs)", + "OnFormatLegendLabel(PieChartFormatLabelEventArgs)": "OnFormatLegendLabel(PieChartFormatLabelEventArgs)", + "OnFormatLegendLabel": "OnFormatLegendLabel(PieChartFormatLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OthersCategoryFill": "OthersCategoryFill", + "OthersCategoryFillProperty": "OthersCategoryFillProperty", + "OthersCategoryOpacity": "OthersCategoryOpacity", + "OthersCategoryOpacityProperty": "OthersCategoryOpacityProperty", + "OthersCategoryStroke": "OthersCategoryStroke", + "OthersCategoryStrokeProperty": "OthersCategoryStrokeProperty", + "OthersCategoryStrokeThickness": "OthersCategoryStrokeThickness", + "OthersCategoryStrokeThicknessProperty": "OthersCategoryStrokeThicknessProperty", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryTextProperty": "OthersCategoryTextProperty", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryThresholdProperty": "OthersCategoryThresholdProperty", + "OthersCategoryType": "OthersCategoryType", + "OthersCategoryTypeProperty": "OthersCategoryTypeProperty", + "OthersLabelFormat": "OthersLabelFormat", + "OthersLabelFormatProperty": "OthersLabelFormatProperty", + "OthersLabelFormatSpecifiers": "OthersLabelFormatSpecifiers", + "OthersLabelFormatSpecifiersProperty": "OthersLabelFormatSpecifiersProperty", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "RadiusFactor": "RadiusFactor", + "RadiusFactorProperty": "RadiusFactorProperty", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceFillProperty": "SelectedSliceFillProperty", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceOpacityProperty": "SelectedSliceOpacityProperty", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeProperty": "SelectedSliceStrokeProperty", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectedSliceStrokeThicknessProperty": "SelectedSliceStrokeThicknessProperty", + "StartAngle": "StartAngle", + "StartAngleProperty": "StartAngleProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RingSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RingSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "RingSeriesBaseDescription()": "RingSeriesBaseDescription()", + "RingSeriesBaseDescription": "RingSeriesBaseDescription()", + "Brushes": "Brushes", + "DataSourceRef": "DataSourceRef", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "FormatLegendLabelRef": "FormatLegendLabelRef", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "LabelExtent": "LabelExtent", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelInnerColor": "LabelInnerColor", + "LabelMemberPath": "LabelMemberPath", + "LabelOuterColor": "LabelOuterColor", + "LabelsPosition": "LabelsPosition", + "LeaderLineFill": "LeaderLineFill", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineOpacity": "LeaderLineOpacity", + "LeaderLineStroke": "LeaderLineStroke", + "LeaderLineStrokeThickness": "LeaderLineStrokeThickness", + "LeaderLineType": "LeaderLineType", + "LeaderLineVisibility": "LeaderLineVisibility", + "LegendLabelFormat": "LegendLabelFormat", + "LegendLabelFormatSpecifiers": "LegendLabelFormatSpecifiers", + "LegendLabelMemberPath": "LegendLabelMemberPath", + "LegendOthersLabelFormat": "LegendOthersLabelFormat", + "LegendOthersLabelFormatSpecifiers": "LegendOthersLabelFormatSpecifiers", + "LegendRef": "LegendRef", + "OthersCategoryFill": "OthersCategoryFill", + "OthersCategoryOpacity": "OthersCategoryOpacity", + "OthersCategoryStroke": "OthersCategoryStroke", + "OthersCategoryStrokeThickness": "OthersCategoryStrokeThickness", + "OthersCategoryText": "OthersCategoryText", + "OthersCategoryThreshold": "OthersCategoryThreshold", + "OthersCategoryType": "OthersCategoryType", + "OthersLabelFormat": "OthersLabelFormat", + "OthersLabelFormatSpecifiers": "OthersLabelFormatSpecifiers", + "Outlines": "Outlines", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "RadiusFactor": "RadiusFactor", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "StartAngle": "StartAngle", + "TextStyle": "TextStyle", + "TooltipTemplateRef": "TooltipTemplateRef", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "RingSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RingSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RingSeriesBaseDescriptionMetadata()": "RingSeriesBaseDescriptionMetadata()", + "RingSeriesBaseDescriptionMetadata": "RingSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RingSeriesCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RingSeriesCollection", + "k": "class", + "s": "classes", + "m": { + "RingSeriesCollection()": "RingSeriesCollection()", + "RingSeriesCollection": "RingSeriesCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "RingSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RingSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "RingSeriesDescription()": "RingSeriesDescription()", + "RingSeriesDescription": "RingSeriesDescription()", + "Ring": "Ring", + "Type": "Type" + } + } + ], + "RingSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RingSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RingSeriesDescriptionMetadata()": "RingSeriesDescriptionMetadata()", + "RingSeriesDescriptionMetadata": "RingSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RingSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RingSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RingSeriesDescriptionModule()": "RingSeriesDescriptionModule()", + "RingSeriesDescriptionModule": "RingSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RingSeriesVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RingSeriesVisualData", + "k": "class", + "s": "classes", + "m": { + "RingSeriesVisualData()": "RingSeriesVisualData()", + "RingSeriesVisualData": "RingSeriesVisualData()", + "LabelExtent": "LabelExtent", + "LabelsPosition": "LabelsPosition", + "LeaderLineMargin": "LeaderLineMargin", + "LeaderLineType": "LeaderLineType", + "LeaderLineVisibility": "LeaderLineVisibility", + "Name": "Name", + "Rings": "Rings", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "RingSeriesVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RingSeriesVisualDataList", + "k": "class", + "s": "classes", + "m": { + "RingSeriesVisualDataList()": "RingSeriesVisualDataList()", + "RingSeriesVisualDataList": "RingSeriesVisualDataList()" + } + } + ], + "RingVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RingVisualData", + "k": "class", + "s": "classes", + "m": { + "RingVisualData()": "RingVisualData()", + "RingVisualData": "RingVisualData()", + "Arcs": "Arcs", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "RingVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/RingVisualDataList", + "k": "class", + "s": "classes", + "m": { + "RingVisualDataList()": "RingVisualDataList()", + "RingVisualDataList": "RingVisualDataList()" + } + } + ], + "RippleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RippleDescription", + "k": "class", + "s": "classes", + "m": { + "RippleDescription()": "RippleDescription()", + "RippleDescription": "RippleDescription()", + "ActualHoverColor": "ActualHoverColor", + "ActualRippleColor": "ActualRippleColor", + "EventSourceRef": "EventSourceRef", + "HoverColor": "HoverColor", + "IsCentered": "IsCentered", + "IsDisabled": "IsDisabled", + "IsHoverEnabled": "IsHoverEnabled", + "RippleColor": "RippleColor", + "RippleDuration": "RippleDuration", + "Type": "Type" + } + } + ], + "RippleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RippleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RippleDescriptionMetadata()": "RippleDescriptionMetadata()", + "RippleDescriptionMetadata": "RippleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RippleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RippleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RippleDescriptionModule()": "RippleDescriptionModule()", + "RippleDescriptionModule": "RippleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RippleVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/RippleVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "RippleVisualModelExport()": "RippleVisualModelExport()", + "RippleVisualModelExport": "RippleVisualModelExport()", + "ActualHoverColor": "ActualHoverColor", + "ActualRippleColor": "ActualRippleColor", + "IsCentered": "IsCentered", + "IsDisabled": "IsDisabled", + "IsHoverEnabled": "IsHoverEnabled", + "RippleDuration": "RippleDuration", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "RowHoverAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/RowHoverAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "RowSelectionAnimationMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/RowSelectionAnimationMode", + "k": "enum", + "s": "enums" + } + ], + "RowSeparator": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/RowSeparator", + "k": "class", + "s": "classes", + "m": { + "RowSeparator()": "RowSeparator()", + "RowSeparator": "RowSeparator()" + } + } + ], + "RowSeparatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RowSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorDescription()": "RowSeparatorDescription()", + "RowSeparatorDescription": "RowSeparatorDescription()", + "Type": "Type" + } + } + ], + "RowSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RowSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorDescriptionMetadata()": "RowSeparatorDescriptionMetadata()", + "RowSeparatorDescriptionMetadata": "RowSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RowSeparatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RowSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorDescriptionModule()": "RowSeparatorDescriptionModule()", + "RowSeparatorDescriptionModule": "RowSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RowSeparatorInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/RowSeparatorInfo", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorInfo()": "RowSeparatorInfo()", + "RowSeparatorInfo": "RowSeparatorInfo()" + } + } + ], + "RowSeparatorInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RowSeparatorInfoDescription", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorInfoDescription()": "RowSeparatorInfoDescription()", + "RowSeparatorInfoDescription": "RowSeparatorInfoDescription()", + "Type": "Type" + } + } + ], + "RowSeparatorInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/RowSeparatorInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorInfoDescriptionMetadata()": "RowSeparatorInfoDescriptionMetadata()", + "RowSeparatorInfoDescriptionMetadata": "RowSeparatorInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "RowSeparatorModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/RowSeparatorModelExport", + "k": "class", + "s": "classes", + "m": { + "RowSeparatorModelExport()": "RowSeparatorModelExport()", + "RowSeparatorModelExport": "RowSeparatorModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "ScaleLabelVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/ScaleLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "ScaleLabelVisualData()": "ScaleLabelVisualData()", + "ScaleLabelVisualData": "ScaleLabelVisualData()", + "Appearance": "Appearance", + "LabelPosition": "LabelPosition", + "LabelSize": "LabelSize", + "LabelValue": "LabelValue", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "ScaleLabelVisualDataList": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/ScaleLabelVisualDataList", + "k": "class", + "s": "classes", + "m": { + "ScaleLabelVisualDataList()": "ScaleLabelVisualDataList()", + "ScaleLabelVisualDataList": "ScaleLabelVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "ScaleLegend": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScaleLegend", + "k": "class", + "s": "classes", + "m": { + "ScaleLegend()": "ScaleLegend()", + "ScaleLegend": "ScaleLegend()" + } + } + ], + "ScaleLegendDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScaleLegendDescription", + "k": "class", + "s": "classes", + "m": { + "ScaleLegendDescription()": "ScaleLegendDescription()", + "ScaleLegendDescription": "ScaleLegendDescription()", + "Type": "Type" + } + } + ], + "ScaleLegendDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScaleLegendDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScaleLegendDescriptionMetadata()": "ScaleLegendDescriptionMetadata()", + "ScaleLegendDescriptionMetadata": "ScaleLegendDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScaleLegendDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScaleLegendDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScaleLegendDescriptionModule()": "ScaleLegendDescriptionModule()", + "ScaleLegendDescriptionModule": "ScaleLegendDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScalerParams": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScalerParams", + "k": "class", + "s": "classes", + "m": { + "ScalerParams(Rect, Rect, bool)": "ScalerParams(Rect, Rect, bool)", + "ScalerParams": "ScalerParams(Rect, Rect, bool)", + "ScalerParams(Rect, Rect, bool, Rect)": "ScalerParams(Rect, Rect, bool, Rect)", + "EffectiveViewportRect": "EffectiveViewportRect", + "IsInverted": "IsInverted", + "ReferenceValue": "ReferenceValue", + "ViewportRect": "ViewportRect", + "WindowRect": "WindowRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ScalerParamsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScalerParamsDescription", + "k": "class", + "s": "classes", + "m": { + "ScalerParamsDescription()": "ScalerParamsDescription()", + "ScalerParamsDescription": "ScalerParamsDescription()", + "ReferenceValue": "ReferenceValue", + "Type": "Type" + } + } + ], + "ScalerParamsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScalerParamsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScalerParamsDescriptionMetadata()": "ScalerParamsDescriptionMetadata()", + "ScalerParamsDescriptionMetadata": "ScalerParamsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScaleTickmarkVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/ScaleTickmarkVisualData", + "k": "class", + "s": "classes", + "m": { + "ScaleTickmarkVisualData()": "ScaleTickmarkVisualData()", + "ScaleTickmarkVisualData": "ScaleTickmarkVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "TickPath": "TickPath" + } + } + ], + "ScaleTickmarkVisualDataList": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/ScaleTickmarkVisualDataList", + "k": "class", + "s": "classes", + "m": { + "ScaleTickmarkVisualDataList()": "ScaleTickmarkVisualDataList()", + "ScaleTickmarkVisualDataList": "ScaleTickmarkVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "ScaleVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/ScaleVisualData", + "k": "class", + "s": "classes", + "m": { + "ScaleVisualData()": "ScaleVisualData()", + "ScaleVisualData": "ScaleVisualData()" + } + } + ], + "ScatterAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterAreaSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterAreaSeries()": "ScatterAreaSeries()", + "ScatterAreaSeries": "ScatterAreaSeries()", + "AttachImage(object)": "AttachImage(object)", + "AttachImage": "AttachImage(object)", + "ColorMemberAsLegendLabel": "ColorMemberAsLegendLabel", + "ColorMemberAsLegendLabelProperty": "ColorMemberAsLegendLabelProperty", + "ColorMemberAsLegendUnit": "ColorMemberAsLegendUnit", + "ColorMemberAsLegendUnitProperty": "ColorMemberAsLegendUnitProperty", + "ColorMemberPath": "ColorMemberPath", + "ColorMemberPathProperty": "ColorMemberPathProperty", + "ColorScale": "ColorScale", + "ColorScaleProperty": "ColorScaleProperty", + "UpdateActualColorScale()": "UpdateActualColorScale()", + "UpdateActualColorScale": "UpdateActualColorScale()" + } + } + ], + "ScatterAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterAreaSeriesDescription()": "ScatterAreaSeriesDescription()", + "ScatterAreaSeriesDescription": "ScatterAreaSeriesDescription()", + "ActualColorScale": "ActualColorScale", + "ColorMemberAsLegendLabel": "ColorMemberAsLegendLabel", + "ColorMemberAsLegendUnit": "ColorMemberAsLegendUnit", + "ColorMemberPath": "ColorMemberPath", + "ColorScale": "ColorScale", + "Type": "Type" + } + } + ], + "ScatterAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterAreaSeriesDescriptionMetadata()": "ScatterAreaSeriesDescriptionMetadata()", + "ScatterAreaSeriesDescriptionMetadata": "ScatterAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterAreaSeriesDescriptionModule()": "ScatterAreaSeriesDescriptionModule()", + "ScatterAreaSeriesDescriptionModule": "ScatterAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterBase", + "k": "class", + "s": "classes", + "m": { + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualItemSearchModeProperty": "ActualItemSearchModeProperty", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "ActualTrendLineBrushProperty": "ActualTrendLineBrushProperty", + "GetScatterItems(int, int)": "GetScatterItems(int, int)", + "GetScatterItems": "GetScatterItems(int, int)", + "HighlightedXMemberPath": "HighlightedXMemberPath", + "HighlightedXMemberPathProperty": "HighlightedXMemberPathProperty", + "HighlightedYMemberPath": "HighlightedYMemberPath", + "HighlightedYMemberPathProperty": "HighlightedYMemberPathProperty", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterMarkerStyleAllowedProperty": "IsCustomScatterMarkerStyleAllowedProperty", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "IsCustomScatterStyleAllowedProperty": "IsCustomScatterStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "MaximumMarkers": "MaximumMarkers", + "MaximumMarkersProperty": "MaximumMarkersProperty", + "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterMarkerStyle": "OnAssigningScatterMarkerStyle(AssigningScatterMarkerStyleEventArgs)", + "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "OnAssigningScatterStyle": "OnAssigningScatterStyle(AssigningScatterStyleEventArgs)", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLineDashArrayProperty": "TrendLineDashArrayProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendLabelProperty": "XMemberAsLegendLabelProperty", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberAsLegendUnitProperty": "XMemberAsLegendUnitProperty", + "XMemberPath": "XMemberPath", + "XMemberPathProperty": "XMemberPathProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendLabelProperty": "YMemberAsLegendLabelProperty", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberAsLegendUnitProperty": "YMemberAsLegendUnitProperty", + "YMemberPath": "YMemberPath", + "YMemberPathProperty": "YMemberPathProperty" + } + } + ], + "ScatterBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterBaseDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterBaseDescription()": "ScatterBaseDescription()", + "ScatterBaseDescription": "ScatterBaseDescription()", + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualTrendLineBrush": "ActualTrendLineBrush", + "AssigningScatterMarkerStyleRef": "AssigningScatterMarkerStyleRef", + "AssigningScatterStyleRef": "AssigningScatterStyleRef", + "HighlightedXMemberPath": "HighlightedXMemberPath", + "HighlightedYMemberPath": "HighlightedYMemberPath", + "IsCustomScatterMarkerStyleAllowed": "IsCustomScatterMarkerStyleAllowed", + "IsCustomScatterStyleAllowed": "IsCustomScatterStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchThreshold": "ItemSearchThreshold", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MaximumMarkers": "MaximumMarkers", + "TrendLineBrush": "TrendLineBrush", + "TrendLineDashArray": "TrendLineDashArray", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "TrendLineZIndex": "TrendLineZIndex", + "Type": "Type", + "XAxisRef": "XAxisRef", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberPath": "XMemberPath", + "YAxisRef": "YAxisRef", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberPath": "YMemberPath" + } + } + ], + "ScatterBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterBaseDescriptionMetadata()": "ScatterBaseDescriptionMetadata()", + "ScatterBaseDescriptionMetadata": "ScatterBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterContourSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterContourSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterContourSeries()": "ScatterContourSeries()", + "ScatterContourSeries": "ScatterContourSeries()", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendLabelProperty": "ValueMemberAsLegendLabelProperty", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberAsLegendUnitProperty": "ValueMemberAsLegendUnitProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "ValueResolver": "ValueResolver", + "ValueResolverProperty": "ValueResolverProperty" + } + } + ], + "ScatterContourSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterContourSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterContourSeriesDescription()": "ScatterContourSeriesDescription()", + "ScatterContourSeriesDescription": "ScatterContourSeriesDescription()", + "ActualFillScale": "ActualFillScale", + "FillScale": "FillScale", + "Type": "Type", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberPath": "ValueMemberPath", + "ValueResolver": "ValueResolver" + } + } + ], + "ScatterContourSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterContourSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterContourSeriesDescriptionMetadata()": "ScatterContourSeriesDescriptionMetadata()", + "ScatterContourSeriesDescriptionMetadata": "ScatterContourSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterContourSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterContourSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterContourSeriesDescriptionModule()": "ScatterContourSeriesDescriptionModule()", + "ScatterContourSeriesDescriptionModule": "ScatterContourSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterDataRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterDataRule", + "k": "class", + "s": "classes", + "m": { + "ScatterDataRule()": "ScatterDataRule()", + "ScatterDataRule": "ScatterDataRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GeographicPointCheckThreshold": "GeographicPointCheckThreshold", + "GeographicShapeCheckThreshold": "GeographicShapeCheckThreshold", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "HugeDataSourceThreshold": "HugeDataSourceThreshold", + "MonotonicCheckAmount": "MonotonicCheckAmount", + "SmallDataSourceThreshold": "SmallDataSourceThreshold", + "SupportGeographicSeries": "SupportGeographicSeries" + } + } + ], + "ScatterItemSearchMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ScatterItemSearchMode", + "k": "enum", + "s": "enums" + } + ], + "ScatterLineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterLineSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterLineSeries()": "ScatterLineSeries()", + "ScatterLineSeries": "ScatterLineSeries()", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty" + } + } + ], + "ScatterLineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterLineSeriesDescription()": "ScatterLineSeriesDescription()", + "ScatterLineSeriesDescription": "ScatterLineSeriesDescription()", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting" + } + } + ], + "ScatterLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterLineSeriesDescriptionMetadata()": "ScatterLineSeriesDescriptionMetadata()", + "ScatterLineSeriesDescriptionMetadata": "ScatterLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterLineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterLineSeriesDescriptionModule()": "ScatterLineSeriesDescriptionModule()", + "ScatterLineSeriesDescriptionModule": "ScatterLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterPolygonSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterPolygonSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterPolygonSeries()": "ScatterPolygonSeries()", + "ScatterPolygonSeries": "ScatterPolygonSeries()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerTemplate": "MarkerTemplate", + "MarkerTemplateProperty": "MarkerTemplateProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "ShapeStyle": "ShapeStyle", + "ShapeStyleProperty": "ShapeStyleProperty", + "ShapeStyleSelector": "ShapeStyleSelector", + "ShapeStyleSelectorProperty": "ShapeStyleSelectorProperty" + } + } + ], + "ScatterPolygonSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterPolygonSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterPolygonSeriesDescription()": "ScatterPolygonSeriesDescription()", + "ScatterPolygonSeriesDescription": "ScatterPolygonSeriesDescription()", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "MarkerBrush": "MarkerBrush", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerFillMode": "MarkerFillMode", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "ShapeStyle": "ShapeStyle", + "Type": "Type" + } + } + ], + "ScatterPolygonSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterPolygonSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterPolygonSeriesDescriptionMetadata()": "ScatterPolygonSeriesDescriptionMetadata()", + "ScatterPolygonSeriesDescriptionMetadata": "ScatterPolygonSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterPolygonSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterPolygonSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterPolygonSeriesDescriptionModule()": "ScatterPolygonSeriesDescriptionModule()", + "ScatterPolygonSeriesDescriptionModule": "ScatterPolygonSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterPolylineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterPolylineSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterPolylineSeries()": "ScatterPolylineSeries()", + "ScatterPolylineSeries": "ScatterPolylineSeries()", + "ShapeStyle": "ShapeStyle", + "ShapeStyleProperty": "ShapeStyleProperty", + "ShapeStyleSelector": "ShapeStyleSelector", + "ShapeStyleSelectorProperty": "ShapeStyleSelectorProperty" + } + } + ], + "ScatterPolylineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterPolylineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterPolylineSeriesDescription()": "ScatterPolylineSeriesDescription()", + "ScatterPolylineSeriesDescription": "ScatterPolylineSeriesDescription()", + "ShapeStyle": "ShapeStyle", + "Type": "Type" + } + } + ], + "ScatterPolylineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterPolylineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterPolylineSeriesDescriptionMetadata()": "ScatterPolylineSeriesDescriptionMetadata()", + "ScatterPolylineSeriesDescriptionMetadata": "ScatterPolylineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterPolylineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterPolylineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterPolylineSeriesDescriptionModule()": "ScatterPolylineSeriesDescriptionModule()", + "ScatterPolylineSeriesDescriptionModule": "ScatterPolylineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterSeries()": "ScatterSeries()", + "ScatterSeries": "ScatterSeries()" + } + } + ], + "ScatterSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterSeriesDescription()": "ScatterSeriesDescription()", + "ScatterSeriesDescription": "ScatterSeriesDescription()", + "Type": "Type" + } + } + ], + "ScatterSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterSeriesDescriptionMetadata()": "ScatterSeriesDescriptionMetadata()", + "ScatterSeriesDescriptionMetadata": "ScatterSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterSeriesDescriptionModule()": "ScatterSeriesDescriptionModule()", + "ScatterSeriesDescriptionModule": "ScatterSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterSplineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterSplineSeries", + "k": "class", + "s": "classes", + "m": { + "ScatterSplineSeries()": "ScatterSplineSeries()", + "ScatterSplineSeries": "ScatterSplineSeries()", + "Stiffness": "Stiffness", + "StiffnessProperty": "StiffnessProperty" + } + } + ], + "ScatterSplineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterSplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterSplineSeriesDescription()": "ScatterSplineSeriesDescription()", + "ScatterSplineSeriesDescription": "ScatterSplineSeriesDescription()", + "Stiffness": "Stiffness", + "Type": "Type" + } + } + ], + "ScatterSplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterSplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterSplineSeriesDescriptionMetadata()": "ScatterSplineSeriesDescriptionMetadata()", + "ScatterSplineSeriesDescriptionMetadata": "ScatterSplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterSplineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterSplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ScatterSplineSeriesDescriptionModule()": "ScatterSplineSeriesDescriptionModule()", + "ScatterSplineSeriesDescriptionModule": "ScatterSplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScatterTriangulationSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ScatterTriangulationSeries", + "k": "class", + "s": "classes", + "m": { + "OnTriangulationStatusChanged(TriangulationStatusEventArgs)": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "OnTriangulationStatusChanged": "OnTriangulationStatusChanged(TriangulationStatusEventArgs)", + "TriangleVertexMemberPath1": "TriangleVertexMemberPath1", + "TriangleVertexMemberPath1Property": "TriangleVertexMemberPath1Property", + "TriangleVertexMemberPath2": "TriangleVertexMemberPath2", + "TriangleVertexMemberPath2Property": "TriangleVertexMemberPath2Property", + "TriangleVertexMemberPath3": "TriangleVertexMemberPath3", + "TriangleVertexMemberPath3Property": "TriangleVertexMemberPath3Property", + "TrianglesSource": "TrianglesSource", + "TrianglesSourceProperty": "TrianglesSourceProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendLabelProperty": "XMemberAsLegendLabelProperty", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberAsLegendUnitProperty": "XMemberAsLegendUnitProperty", + "XMemberPath": "XMemberPath", + "XMemberPathProperty": "XMemberPathProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendLabelProperty": "YMemberAsLegendLabelProperty", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberAsLegendUnitProperty": "YMemberAsLegendUnitProperty", + "YMemberPath": "YMemberPath", + "YMemberPathProperty": "YMemberPathProperty" + } + } + ], + "ScatterTriangulationSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterTriangulationSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "ScatterTriangulationSeriesDescription()": "ScatterTriangulationSeriesDescription()", + "ScatterTriangulationSeriesDescription": "ScatterTriangulationSeriesDescription()", + "TriangleVertexMemberPath1": "TriangleVertexMemberPath1", + "TriangleVertexMemberPath2": "TriangleVertexMemberPath2", + "TriangleVertexMemberPath3": "TriangleVertexMemberPath3", + "TrianglesSourceRef": "TrianglesSourceRef", + "TriangulationStatusChangedRef": "TriangulationStatusChangedRef", + "Type": "Type", + "XAxisRef": "XAxisRef", + "XMemberAsLegendLabel": "XMemberAsLegendLabel", + "XMemberAsLegendUnit": "XMemberAsLegendUnit", + "XMemberPath": "XMemberPath", + "YAxisRef": "YAxisRef", + "YMemberAsLegendLabel": "YMemberAsLegendLabel", + "YMemberAsLegendUnit": "YMemberAsLegendUnit", + "YMemberPath": "YMemberPath" + } + } + ], + "ScatterTriangulationSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScatterTriangulationSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ScatterTriangulationSeriesDescriptionMetadata()": "ScatterTriangulationSeriesDescriptionMetadata()", + "ScatterTriangulationSeriesDescriptionMetadata": "ScatterTriangulationSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ScreenRectChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ScreenRectChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ScreenRectChangedEventArgs(Rect, Rect)": "ScreenRectChangedEventArgs(Rect, Rect)", + "ScreenRectChangedEventArgs": "ScreenRectChangedEventArgs(Rect, Rect)", + "NewRect": "NewRect", + "OldRect": "OldRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ScrollbarStyle": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ScrollbarStyle", + "k": "enum", + "s": "enums" + } + ], + "SectionFooter": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SectionFooter", + "k": "class", + "s": "classes", + "m": { + "SectionFooter()": "SectionFooter()", + "SectionFooter": "SectionFooter()" + } + } + ], + "SectionFooterDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionFooterDescription", + "k": "class", + "s": "classes", + "m": { + "SectionFooterDescription()": "SectionFooterDescription()", + "SectionFooterDescription": "SectionFooterDescription()", + "Type": "Type" + } + } + ], + "SectionFooterDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionFooterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SectionFooterDescriptionMetadata()": "SectionFooterDescriptionMetadata()", + "SectionFooterDescriptionMetadata": "SectionFooterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionFooterDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionFooterDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SectionFooterDescriptionModule()": "SectionFooterDescriptionModule()", + "SectionFooterDescriptionModule": "SectionFooterDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionHeader": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SectionHeader", + "k": "class", + "s": "classes", + "m": { + "SectionHeader()": "SectionHeader()", + "SectionHeader": "SectionHeader()", + "ActualExpansionIndicatorIconColor": "ActualExpansionIndicatorIconColor", + "ActualExpansionIndicatorIconColorProperty": "ActualExpansionIndicatorIconColorProperty", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedBackgroundProperty": "ActualSelectedBackgroundProperty", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ActualSelectedTextColorProperty": "ActualSelectedTextColorProperty", + "ExpansionIndicatorIconColor": "ExpansionIndicatorIconColor", + "ExpansionIndicatorIconColorProperty": "ExpansionIndicatorIconColorProperty", + "IsCollapsable": "IsCollapsable", + "IsCollapsableProperty": "IsCollapsableProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundProperty": "SelectedBackgroundProperty", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorProperty": "SelectedTextColorProperty", + "SummaryDisplayMode": "SummaryDisplayMode", + "SummaryDisplayModeProperty": "SummaryDisplayModeProperty" + } + } + ], + "SectionHeaderCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SectionHeaderCellInfo", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderCellInfo()": "SectionHeaderCellInfo()", + "SectionHeaderCellInfo": "SectionHeaderCellInfo()", + "Groups": "Groups", + "GroupsPropertyName": "GroupsPropertyName", + "ResolvedSummaryText": "ResolvedSummaryText", + "ResolvedSummaryTextPropertyName": "ResolvedSummaryTextPropertyName", + "ResolvedText": "ResolvedText", + "ResolvedTextPropertyName": "ResolvedTextPropertyName", + "Summaries": "Summaries", + "SummariesPropertyName": "SummariesPropertyName", + "SummaryDisplayMode": "SummaryDisplayMode", + "SummaryDisplayModePropertyName": "SummaryDisplayModePropertyName" + } + } + ], + "SectionHeaderCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionHeaderCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderCellInfoDescription()": "SectionHeaderCellInfoDescription()", + "SectionHeaderCellInfoDescription": "SectionHeaderCellInfoDescription()", + "ResolvedSummaryText": "ResolvedSummaryText", + "ResolvedText": "ResolvedText", + "SummaryDisplayMode": "SummaryDisplayMode", + "Type": "Type" + } + } + ], + "SectionHeaderCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionHeaderCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderCellInfoDescriptionMetadata()": "SectionHeaderCellInfoDescriptionMetadata()", + "SectionHeaderCellInfoDescriptionMetadata": "SectionHeaderCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionHeaderCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SectionHeaderCellModelExport", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderCellModelExport()": "SectionHeaderCellModelExport()", + "SectionHeaderCellModelExport": "SectionHeaderCellModelExport()", + "FormattedText": "FormattedText", + "FullSummaryFormattedText": "FullSummaryFormattedText", + "GroupFormattedText": "GroupFormattedText", + "GroupNames": "GroupNames", + "GroupValues": "GroupValues", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "SummaryFormattedText": "SummaryFormattedText", + "SummaryNames": "SummaryNames", + "SummaryOperands": "SummaryOperands", + "SummaryValues": "SummaryValues", + "Type": "Type" + } + } + ], + "SectionHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderDescription()": "SectionHeaderDescription()", + "SectionHeaderDescription": "SectionHeaderDescription()", + "ActualExpansionIndicatorIconColor": "ActualExpansionIndicatorIconColor", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ExpansionIndicatorIconColor": "ExpansionIndicatorIconColor", + "IsCollapsable": "IsCollapsable", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "SelectedBackground": "SelectedBackground", + "SelectedTextColor": "SelectedTextColor", + "SummaryDisplayMode": "SummaryDisplayMode", + "Type": "Type" + } + } + ], + "SectionHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderDescriptionMetadata()": "SectionHeaderDescriptionMetadata()", + "SectionHeaderDescriptionMetadata": "SectionHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SectionHeaderDescriptionModule()": "SectionHeaderDescriptionModule()", + "SectionHeaderDescriptionModule": "SectionHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SectionInformationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionInformationDescription", + "k": "class", + "s": "classes", + "m": { + "SectionInformationDescription()": "SectionInformationDescription()", + "SectionInformationDescription": "SectionInformationDescription()", + "EndIndex": "EndIndex", + "GroupKeyProperties": "GroupKeyProperties", + "GroupKeyValuesRef": "GroupKeyValuesRef", + "StartIndex": "StartIndex", + "SummaryResults": "SummaryResults", + "Type": "Type" + } + } + ], + "SectionInformationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SectionInformationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SectionInformationDescriptionMetadata()": "SectionInformationDescriptionMetadata()", + "SectionInformationDescriptionMetadata": "SectionInformationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SegmentData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SegmentData", + "k": "class", + "s": "classes", + "m": { + "SegmentData()": "SegmentData()", + "SegmentData": "SegmentData()", + "GetPointsOverride(List, GetPointsSettings)": "GetPointsOverride(List, GetPointsSettings)", + "GetPointsOverride": "GetPointsOverride(List, GetPointsSettings)", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "SelectAllCheckboxChangedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SelectAllCheckboxChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "SelectAllCheckboxChangedEventArgs()": "SelectAllCheckboxChangedEventArgs()", + "SelectAllCheckboxChangedEventArgs": "SelectAllCheckboxChangedEventArgs()", + "IsChecked": "IsChecked", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SelectAllCheckboxChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectAllCheckboxChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectAllCheckboxChangedEventArgsDescription()": "SelectAllCheckboxChangedEventArgsDescription()", + "SelectAllCheckboxChangedEventArgsDescription": "SelectAllCheckboxChangedEventArgsDescription()", + "IsChecked": "IsChecked", + "Type": "Type" + } + } + ], + "SelectAllCheckboxChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectAllCheckboxChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectAllCheckboxChangedEventArgsDescriptionMetadata()": "SelectAllCheckboxChangedEventArgsDescriptionMetadata()", + "SelectAllCheckboxChangedEventArgsDescriptionMetadata": "SelectAllCheckboxChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedItemChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedItemChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedItemChangedEventArgsDescription()": "SelectedItemChangedEventArgsDescription()", + "SelectedItemChangedEventArgsDescription": "SelectedItemChangedEventArgsDescription()", + "NewItem": "NewItem", + "OldItem": "OldItem", + "Type": "Type" + } + } + ], + "SelectedItemChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedItemChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedItemChangedEventArgsDescriptionMetadata()": "SelectedItemChangedEventArgsDescriptionMetadata()", + "SelectedItemChangedEventArgsDescriptionMetadata": "SelectedItemChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedItemChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedItemChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedItemChangingEventArgsDescription()": "SelectedItemChangingEventArgsDescription()", + "SelectedItemChangingEventArgsDescription": "SelectedItemChangingEventArgsDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "SelectedItemChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedItemChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedItemChangingEventArgsDescriptionMetadata()": "SelectedItemChangingEventArgsDescriptionMetadata()", + "SelectedItemChangingEventArgsDescriptionMetadata": "SelectedItemChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedItemsChangedEventArgsDescription()": "SelectedItemsChangedEventArgsDescription()", + "SelectedItemsChangedEventArgsDescription": "SelectedItemsChangedEventArgsDescription()", + "CurrentItems": "CurrentItems", + "NewItems": "NewItems", + "OldItems": "OldItems", + "Type": "Type" + } + } + ], + "SelectedItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedItemsChangedEventArgsDescriptionMetadata()": "SelectedItemsChangedEventArgsDescriptionMetadata()", + "SelectedItemsChangedEventArgsDescriptionMetadata": "SelectedItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedItemsChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedItemsChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedItemsChangingEventArgsDescription()": "SelectedItemsChangingEventArgsDescription()", + "SelectedItemsChangingEventArgsDescription": "SelectedItemsChangingEventArgsDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "SelectedItemsChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedItemsChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedItemsChangingEventArgsDescriptionMetadata()": "SelectedItemsChangingEventArgsDescriptionMetadata()", + "SelectedItemsChangingEventArgsDescriptionMetadata": "SelectedItemsChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SelectedValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SelectedValueChangedEventArgsDescription()": "SelectedValueChangedEventArgsDescription()", + "SelectedValueChangedEventArgsDescription": "SelectedValueChangedEventArgsDescription()", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Type": "Type" + } + } + ], + "SelectedValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SelectedValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SelectedValueChangedEventArgsDescriptionMetadata()": "SelectedValueChangedEventArgsDescriptionMetadata()", + "SelectedValueChangedEventArgsDescriptionMetadata": "SelectedValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Series": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Series", + "k": "class", + "s": "classes", + "m": { + "ActualAreaFillOpacity": "ActualAreaFillOpacity", + "ActualAreaFillOpacityProperty": "ActualAreaFillOpacityProperty", + "ActualBrush": "ActualBrush", + "ActualBrushProperty": "ActualBrushProperty", + "ActualCloseLabel": "ActualCloseLabel", + "ActualCloseLabelProperty": "ActualCloseLabelProperty", + "ActualFocusBrush": "ActualFocusBrush", + "ActualFocusBrushProperty": "ActualFocusBrushProperty", + "ActualFocusMode": "ActualFocusMode", + "ActualFocusModeProperty": "ActualFocusModeProperty", + "ActualHighLabel": "ActualHighLabel", + "ActualHighLabelProperty": "ActualHighLabelProperty", + "ActualHighlightedValuesFadeOpacity": "ActualHighlightedValuesFadeOpacity", + "ActualHighlightedValuesFadeOpacityProperty": "ActualHighlightedValuesFadeOpacityProperty", + "ActualHighlightingFadeOpacity": "ActualHighlightingFadeOpacity", + "ActualHighlightingFadeOpacityProperty": "ActualHighlightingFadeOpacityProperty", + "ActualHighlightingMode": "ActualHighlightingMode", + "ActualHighlightingModeProperty": "ActualHighlightingModeProperty", + "ActualHitTestMode": "ActualHitTestMode", + "ActualHitTestModeProperty": "ActualHitTestModeProperty", + "ActualLayers": "ActualLayers", + "ActualLegend": "ActualLegend", + "ActualLegendItemBadgeBrush": "ActualLegendItemBadgeBrush", + "ActualLegendItemBadgeBrushProperty": "ActualLegendItemBadgeBrushProperty", + "ActualLegendItemBadgeOutline": "ActualLegendItemBadgeOutline", + "ActualLegendItemBadgeOutlineProperty": "ActualLegendItemBadgeOutlineProperty", + "ActualLegendProperty": "ActualLegendProperty", + "ActualLowLabel": "ActualLowLabel", + "ActualLowLabelProperty": "ActualLowLabelProperty", + "ActualMarkerFillOpacity": "ActualMarkerFillOpacity", + "ActualMarkerFillOpacityProperty": "ActualMarkerFillOpacityProperty", + "ActualOpenLabel": "ActualOpenLabel", + "ActualOpenLabelProperty": "ActualOpenLabelProperty", + "ActualOutline": "ActualOutline", + "ActualOutlineProperty": "ActualOutlineProperty", + "ActualRadiusLabel": "ActualRadiusLabel", + "ActualRadiusLabelProperty": "ActualRadiusLabelProperty", + "ActualResolution": "ActualResolution", + "ActualResolutionProperty": "ActualResolutionProperty", + "ActualSelectionBrush": "ActualSelectionBrush", + "ActualSelectionBrushProperty": "ActualSelectionBrushProperty", + "ActualSelectionMode": "ActualSelectionMode", + "ActualSelectionModeProperty": "ActualSelectionModeProperty", + "ActualThickness": "ActualThickness", + "ActualThicknessProperty": "ActualThicknessProperty", + "ActualValueLabel": "ActualValueLabel", + "ActualValueLabelProperty": "ActualValueLabelProperty", + "ActualVolumeLabel": "ActualVolumeLabel", + "ActualVolumeLabelProperty": "ActualVolumeLabelProperty", + "AreaFillOpacity": "AreaFillOpacity", + "AreaFillOpacityProperty": "AreaFillOpacityProperty", + "AutoCalloutLabelFormat": "AutoCalloutLabelFormat", + "AutoCalloutLabelFormatProperty": "AutoCalloutLabelFormatProperty", + "AutoCalloutLabelFormatSpecifiers": "AutoCalloutLabelFormatSpecifiers", + "AutoCalloutLabelFormatSpecifiersProperty": "AutoCalloutLabelFormatSpecifiersProperty", + "AutoCalloutValueLabelFormat": "AutoCalloutValueLabelFormat", + "AutoCalloutValueLabelFormatProperty": "AutoCalloutValueLabelFormatProperty", + "AutoCalloutValueLabelFormatSpecifiers": "AutoCalloutValueLabelFormatSpecifiers", + "AutoCalloutValueLabelFormatSpecifiersProperty": "AutoCalloutValueLabelFormatSpecifiersProperty", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "CMA(IEnumerable)": "CMA(IEnumerable)", + "CMA": "CMA(IEnumerable)", + "DashArray": "DashArray", + "DashArrayProperty": "DashArrayProperty", + "DataLegendGroup": "DataLegendGroup", + "DataLegendGroupProperty": "DataLegendGroupProperty", + "DataLegendKey": "DataLegendKey", + "DataLegendKeyProperty": "DataLegendKeyProperty", + "EMA(IEnumerable, int)": "EMA(IEnumerable, int)", + "EMA": "EMA(IEnumerable, int)", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FinalValue": "FinalValue", + "FinalValueProperty": "FinalValueProperty", + "FocusBrush": "FocusBrush", + "FocusBrushProperty": "FocusBrushProperty", + "FromWorldPosition(Point)": "FromWorldPosition(Point)", + "FromWorldPosition": "FromWorldPosition(Point)", + "GetActualMarkerBrush()": "GetActualMarkerBrush()", + "GetActualMarkerBrush": "GetActualMarkerBrush()", + "GetActualMarkerOutlineBrush()": "GetActualMarkerOutlineBrush()", + "GetActualMarkerOutlineBrush": "GetActualMarkerOutlineBrush()", + "GetActualMarkerShape()": "GetActualMarkerShape()", + "GetActualMarkerShape": "GetActualMarkerShape()", + "GetEffectiveViewport()": "GetEffectiveViewport()", + "GetEffectiveViewport": "GetEffectiveViewport()", + "GetExactItemIndex(Point)": "GetExactItemIndex(Point)", + "GetExactItemIndex": "GetExactItemIndex(Point)", + "GetExactItemIndexFromSeriesPixel(Point)": "GetExactItemIndexFromSeriesPixel(Point)", + "GetExactItemIndexFromSeriesPixel": "GetExactItemIndexFromSeriesPixel(Point)", + "GetHitDataContext(Point, bool)": "GetHitDataContext(Point, bool)", + "GetHitDataContext": "GetHitDataContext(Point, bool)", + "GetItem(Point)": "GetItem(Point)", + "GetItem": "GetItem(Point)", + "GetItemFromSeriesPixel(Point)": "GetItemFromSeriesPixel(Point)", + "GetItemFromSeriesPixel": "GetItemFromSeriesPixel(Point)", + "GetItemIndex(Point)": "GetItemIndex(Point)", + "GetItemIndex": "GetItemIndex(Point)", + "GetItemIndexFromSeriesPixel(Point)": "GetItemIndexFromSeriesPixel(Point)", + "GetItemIndexFromSeriesPixel": "GetItemIndexFromSeriesPixel(Point)", + "GetItemSpan()": "GetItemSpan()", + "GetItemSpan": "GetItemSpan()", + "GetItemValue(object, string)": "GetItemValue(object, string)", + "GetItemValue": "GetItemValue(object, string)", + "GetItemsForSelection(Rect, SeriesSelectionBehavior)": "GetItemsForSelection(Rect, SeriesSelectionBehavior)", + "GetItemsForSelection": "GetItemsForSelection(Rect, SeriesSelectionBehavior)", + "GetMainContentViewport()": "GetMainContentViewport()", + "GetMainContentViewport": "GetMainContentViewport()", + "GetMemberPathValue(string)": "GetMemberPathValue(string)", + "GetMemberPathValue": "GetMemberPathValue(string)", + "GetNextOrExactIndex(Point, bool)": "GetNextOrExactIndex(Point, bool)", + "GetNextOrExactIndex": "GetNextOrExactIndex(Point, bool)", + "GetPreviousOrExactIndex(Point, bool)": "GetPreviousOrExactIndex(Point, bool)", + "GetPreviousOrExactIndex": "GetPreviousOrExactIndex(Point, bool)", + "GetSeriesHighValue(Point, bool, bool)": "GetSeriesHighValue(Point, bool, bool)", + "GetSeriesHighValue": "GetSeriesHighValue(Point, bool, bool)", + "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)": "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValueFromSeriesPixel": "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValuePosition(Point, bool, bool)": "GetSeriesHighValuePosition(Point, bool, bool)", + "GetSeriesHighValuePosition": "GetSeriesHighValuePosition(Point, bool, bool)", + "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValuePositionFromSeriesPixel": "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValue(Point, bool, bool)": "GetSeriesLowValue(Point, bool, bool)", + "GetSeriesLowValue": "GetSeriesLowValue(Point, bool, bool)", + "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)": "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValueFromSeriesPixel": "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValuePosition(Point, bool, bool)": "GetSeriesLowValuePosition(Point, bool, bool)", + "GetSeriesLowValuePosition": "GetSeriesLowValuePosition(Point, bool, bool)", + "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValuePositionFromSeriesPixel": "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValue(Point, bool, bool)": "GetSeriesValue(Point, bool, bool)", + "GetSeriesValue": "GetSeriesValue(Point, bool, bool)", + "GetSeriesValueBoundingBox(Point)": "GetSeriesValueBoundingBox(Point)", + "GetSeriesValueBoundingBox": "GetSeriesValueBoundingBox(Point)", + "GetSeriesValueBoundingBoxFromSeriesPixel(Point)": "GetSeriesValueBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueBoundingBoxFromSeriesPixel": "GetSeriesValueBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueFineGrainedBoundingBoxes(Point)": "GetSeriesValueFineGrainedBoundingBoxes(Point)", + "GetSeriesValueFineGrainedBoundingBoxes": "GetSeriesValueFineGrainedBoundingBoxes(Point)", + "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)": "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)", + "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel": "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)", + "GetSeriesValueFromSeriesPixel(Point, bool, bool)": "GetSeriesValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueFromSeriesPixel": "GetSeriesValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueMarkerBoundingBox(Point)": "GetSeriesValueMarkerBoundingBox(Point)", + "GetSeriesValueMarkerBoundingBox": "GetSeriesValueMarkerBoundingBox(Point)", + "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)": "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueMarkerBoundingBoxFromSeriesPixel": "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValuePosition(Point, bool, bool)": "GetSeriesValuePosition(Point, bool, bool)", + "GetSeriesValuePosition": "GetSeriesValuePosition(Point, bool, bool)", + "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValuePositionFromSeriesPixel": "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueType(ValueLayerValueMode)": "GetSeriesValueType(ValueLayerValueMode)", + "GetSeriesValueType": "GetSeriesValueType(ValueLayerValueMode)", + "GetSeriesValueTypePosition(ValueLayerValueMode)": "GetSeriesValueTypePosition(ValueLayerValueMode)", + "GetSeriesValueTypePosition": "GetSeriesValueTypePosition(ValueLayerValueMode)", + "GetSeriesValueTypePositionFromValue(double[])": "GetSeriesValueTypePositionFromValue(double[])", + "GetSeriesValueTypePositionFromValue": "GetSeriesValueTypePositionFromValue(double[])", + "GetUnscaledPosition(Point)": "GetUnscaledPosition(Point)", + "GetUnscaledPosition": "GetUnscaledPosition(Point)", + "HasMarkers": "HasMarkers", + "HasMarkersProperty": "HasMarkersProperty", + "HasOnlyMarkers": "HasOnlyMarkers", + "HasOnlyMarkersProperty": "HasOnlyMarkersProperty", + "HasValueAxis": "HasValueAxis", + "HasValueAxisProperty": "HasValueAxisProperty", + "HasVisibleMarkers": "HasVisibleMarkers", + "HasVisibleMarkersProperty": "HasVisibleMarkersProperty", + "HideToolTips()": "HideToolTips()", + "HideToolTips": "HideToolTips()", + "HideToolTipsImmediate()": "HideToolTipsImmediate()", + "HideToolTipsImmediate": "HideToolTipsImmediate()", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedLegendItemVisibility": "HighlightedLegendItemVisibility", + "HighlightedLegendItemVisibilityProperty": "HighlightedLegendItemVisibilityProperty", + "HighlightedTitleSuffix": "HighlightedTitleSuffix", + "HighlightedTitleSuffixProperty": "HighlightedTitleSuffixProperty", + "HighlightedValuesDataLegendGroup": "HighlightedValuesDataLegendGroup", + "HighlightedValuesDataLegendGroupProperty": "HighlightedValuesDataLegendGroupProperty", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "HighlightedValuesExtraPropertyOverlays": "HighlightedValuesExtraPropertyOverlays", + "HighlightedValuesFadeOpacity": "HighlightedValuesFadeOpacity", + "HighlightedValuesFadeOpacityProperty": "HighlightedValuesFadeOpacityProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "HitTestMode": "HitTestMode", + "HitTestModeProperty": "HitTestModeProperty", + "Index": "Index", + "IndexProperty": "IndexProperty", + "IsActualLegendFinancial": "IsActualLegendFinancial", + "IsActualLegendFinancialProperty": "IsActualLegendFinancialProperty", + "IsAnnotationCalloutLayer": "IsAnnotationCalloutLayer", + "IsAnnotationCrosshairLayer": "IsAnnotationCrosshairLayer", + "IsAnnotationDataLayer": "IsAnnotationDataLayer", + "IsAnnotationFinalValue": "IsAnnotationFinalValue", + "IsAnnotationHoverLayer": "IsAnnotationHoverLayer", + "IsAnnotationLayer": "IsAnnotationLayer", + "IsAnnotationValueLayer": "IsAnnotationValueLayer", + "IsArea": "IsArea", + "IsAreaOrLine": "IsAreaOrLine", + "IsBar": "IsBar", + "IsCategory": "IsCategory", + "IsColoredItemwise": "IsColoredItemwise", + "IsColoredItemwiseProperty": "IsColoredItemwiseProperty", + "IsColumn": "IsColumn", + "IsComponentHighlightingModeIgnored": "IsComponentHighlightingModeIgnored", + "IsComponentHighlightingModeIgnoredProperty": "IsComponentHighlightingModeIgnoredProperty", + "IsDefaultCrosshairBehaviorDisabled": "IsDefaultCrosshairBehaviorDisabled", + "IsDefaultTooltipBehaviorDisabled": "IsDefaultTooltipBehaviorDisabled", + "IsDropShadowEnabled": "IsDropShadowEnabled", + "IsDropShadowEnabledProperty": "IsDropShadowEnabledProperty", + "IsFinancial": "IsFinancial", + "IsFinancialIndicator": "IsFinancialIndicator", + "IsFinancialOverlay": "IsFinancialOverlay", + "IsFinancialSeries": "IsFinancialSeries", + "IsFinancialWaterfall": "IsFinancialWaterfall", + "IsFragment": "IsFragment", + "IsHighlightOverlay": "IsHighlightOverlay", + "IsHighlightOverlayProperty": "IsHighlightOverlayProperty", + "IsHighlightingEnabled": "IsHighlightingEnabled", + "IsHighlightingEnabledProperty": "IsHighlightingEnabledProperty", + "IsIndexed": "IsIndexed", + "IsIndexedProperty": "IsIndexedProperty", + "IsLayer": "IsLayer", + "IsLayerProperty": "IsLayerProperty", + "IsLineContour": "IsLineContour", + "IsLineOnly": "IsLineOnly", + "IsMarkerlessDisplayPreferred": "IsMarkerlessDisplayPreferred", + "IsMarkerlessDisplayPreferredProperty": "IsMarkerlessDisplayPreferredProperty", + "IsNegativeColorSupported": "IsNegativeColorSupported", + "IsNegativeColorSupportedProperty": "IsNegativeColorSupportedProperty", + "IsPie": "IsPie", + "IsPixel": "IsPixel", + "IsPolar": "IsPolar", + "IsPolygon": "IsPolygon", + "IsPolyline": "IsPolyline", + "IsRadial": "IsRadial", + "IsRange": "IsRange", + "IsScatter": "IsScatter", + "IsShape": "IsShape", + "IsShapeControl": "IsShapeControl", + "IsSpline": "IsSpline", + "IsStacked": "IsStacked", + "IsStep": "IsStep", + "IsSummarizationSupported": "IsSummarizationSupported", + "IsSummarizationSupportedProperty": "IsSummarizationSupportedProperty", + "IsTile": "IsTile", + "IsToolTipLayer": "IsToolTipLayer", + "IsUsableInLegend": "IsUsableInLegend", + "IsUsableInLegendProperty": "IsUsableInLegendProperty", + "IsUserAnnotationLayer": "IsUserAnnotationLayer", + "IsUserAnnotationToolTipLayer": "IsUserAnnotationToolTipLayer", + "IsValueAxisInverted": "IsValueAxisInverted", + "IsValueOverlay": "IsValueOverlay", + "IsVertical": "IsVertical", + "IsWaterfall": "IsWaterfall", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Layers": "Layers", + "Legend": "Legend", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeModeProperty": "LegendItemBadgeModeProperty", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeShapeProperty": "LegendItemBadgeShapeProperty", + "LegendItemVisibility": "LegendItemVisibility", + "LegendItemVisibilityProperty": "LegendItemVisibilityProperty", + "LegendProperty": "LegendProperty", + "LineCap": "LineCap", + "LineCapProperty": "LineCapProperty", + "LineJoin": "LineJoin", + "LineJoinProperty": "LineJoinProperty", + "MMA(IEnumerable, int)": "MMA(IEnumerable, int)", + "MMA": "MMA(IEnumerable, int)", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerFillOpacityProperty": "MarkerFillOpacityProperty", + "MouseOverEnabled": "MouseOverEnabled", + "MouseOverEnabledProperty": "MouseOverEnabledProperty", + "MoveCursorPoint(Point)": "MoveCursorPoint(Point)", + "MoveCursorPoint": "MoveCursorPoint(Point)", + "MovingSum(IEnumerable, int)": "MovingSum(IEnumerable, int)", + "MovingSum": "MovingSum(IEnumerable, int)", + "NotifyIndexedPropertiesChanged()": "NotifyIndexedPropertiesChanged()", + "NotifyIndexedPropertiesChanged": "NotifyIndexedPropertiesChanged()", + "NotifyVisualPropertiesChanged()": "NotifyVisualPropertiesChanged()", + "NotifyVisualPropertiesChanged": "NotifyVisualPropertiesChanged()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnRenderRequested(RenderRequestedEventArgs)": "OnRenderRequested(RenderRequestedEventArgs)", + "OnRenderRequested": "OnRenderRequested(RenderRequestedEventArgs)", + "OnTransitionOutCompleted(TransitionOutCompletedEventArgs)": "OnTransitionOutCompleted(TransitionOutCompletedEventArgs)", + "OnTransitionOutCompleted": "OnTransitionOutCompleted(TransitionOutCompletedEventArgs)", + "Outline": "Outline", + "OutlineMode": "OutlineMode", + "OutlineModeProperty": "OutlineModeProperty", + "OutlineProperty": "OutlineProperty", + "PercentChange": "PercentChange", + "PercentChangeProperty": "PercentChangeProperty", + "PlayTransitionIn()": "PlayTransitionIn()", + "PlayTransitionIn": "PlayTransitionIn()", + "PlayTransitionOut()": "PlayTransitionOut()", + "PlayTransitionOut": "PlayTransitionOut()", + "PlayTransitionOutAndRemove()": "PlayTransitionOutAndRemove()", + "PlayTransitionOutAndRemove": "PlayTransitionOutAndRemove()", + "RemoveAxes()": "RemoveAxes()", + "RemoveAxes": "RemoveAxes()", + "RenderSeries(bool)": "RenderSeries(bool)", + "RenderSeries": "RenderSeries(bool)", + "ReplayTransitionIn()": "ReplayTransitionIn()", + "ReplayTransitionIn": "ReplayTransitionIn()", + "Resolution": "Resolution", + "ResolutionProperty": "ResolutionProperty", + "ResolveLegendIndex()": "ResolveLegendIndex()", + "ResolveLegendIndex": "ResolveLegendIndex()", + "SMA(IEnumerable, int)": "SMA(IEnumerable, int)", + "SMA": "SMA(IEnumerable, int)", + "STDEV(IEnumerable, int)": "STDEV(IEnumerable, int)", + "STDEV": "STDEV(IEnumerable, int)", + "SafeActualBrush": "SafeActualBrush", + "SafeActualBrushProperty": "SafeActualBrushProperty", + "ScrollIntoView(object)": "ScrollIntoView(object)", + "ScrollIntoView": "ScrollIntoView(object)", + "SelectionBrush": "SelectionBrush", + "SelectionBrushProperty": "SelectionBrushProperty", + "SelectionThickness": "SelectionThickness", + "SelectionThicknessProperty": "SelectionThicknessProperty", + "SeriesViewer": "SeriesViewer", + "SeriesViewerProperty": "SeriesViewerProperty", + "SetNegativeColors(Brush, Brush)": "SetNegativeColors(Brush, Brush)", + "SetNegativeColors": "SetNegativeColors(Brush, Brush)", + "ShadowBlur": "ShadowBlur", + "ShadowBlurProperty": "ShadowBlurProperty", + "ShadowColor": "ShadowColor", + "ShadowColorProperty": "ShadowColorProperty", + "ShadowOffsetX": "ShadowOffsetX", + "ShadowOffsetXProperty": "ShadowOffsetXProperty", + "ShadowOffsetY": "ShadowOffsetY", + "ShadowOffsetYProperty": "ShadowOffsetYProperty", + "ShouldAnimateOnDataSourceSwap": "ShouldAnimateOnDataSourceSwap", + "ShouldAnimateOnDataSourceSwapProperty": "ShouldAnimateOnDataSourceSwapProperty", + "ShouldHideAutoCallouts": "ShouldHideAutoCallouts", + "ShouldHideAutoCalloutsProperty": "ShouldHideAutoCalloutsProperty", + "ShouldRemoveHighlightedDataOnLayerHidden": "ShouldRemoveHighlightedDataOnLayerHidden", + "ShouldRemoveHighlightedDataOnLayerHiddenProperty": "ShouldRemoveHighlightedDataOnLayerHiddenProperty", + "ShouldShiftOpacityForSafeActualBrush": "ShouldShiftOpacityForSafeActualBrush", + "ShouldShiftOpacityForSafeActualBrushProperty": "ShouldShiftOpacityForSafeActualBrushProperty", + "ShowDefaultTooltip": "ShowDefaultTooltip", + "ShowDefaultTooltipProperty": "ShowDefaultTooltipProperty", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "TestHit(Point, bool)": "TestHit(Point, bool)", + "TestHit": "TestHit(Point, bool)", + "Thickness": "Thickness", + "ThicknessProperty": "ThicknessProperty", + "Title": "Title", + "TitleProperty": "TitleProperty", + "ToWorldPosition(Point)": "ToWorldPosition(Point)", + "ToWorldPosition": "ToWorldPosition(Point)", + "ToWorldRect(Rect)": "ToWorldRect(Rect)", + "ToWorldRect": "ToWorldRect(Rect)", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionEasingFunction": "TransitionEasingFunction", + "TransitionEasingFunctionProperty": "TransitionEasingFunctionProperty", + "TransitionInDuration": "TransitionInDuration", + "TransitionInDurationProperty": "TransitionInDurationProperty", + "TransitionInEasingFunction": "TransitionInEasingFunction", + "TransitionInEasingFunctionProperty": "TransitionInEasingFunctionProperty", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionInSpeedTypeProperty": "TransitionInSpeedTypeProperty", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutDurationProperty": "TransitionOutDurationProperty", + "TransitionOutEasingFunction": "TransitionOutEasingFunction", + "TransitionOutEasingFunctionProperty": "TransitionOutEasingFunctionProperty", + "TransitionOutSpeedType": "TransitionOutSpeedType", + "TransitionOutSpeedTypeProperty": "TransitionOutSpeedTypeProperty", + "UpdateShowDefaultTooltip()": "UpdateShowDefaultTooltip()", + "UpdateShowDefaultTooltip": "UpdateShowDefaultTooltip()", + "UseItemWiseColors": "UseItemWiseColors", + "UseItemWiseColorsProperty": "UseItemWiseColorsProperty", + "VisibleRangeMarginBottom": "VisibleRangeMarginBottom", + "VisibleRangeMarginBottomProperty": "VisibleRangeMarginBottomProperty", + "VisibleRangeMarginLeft": "VisibleRangeMarginLeft", + "VisibleRangeMarginLeftProperty": "VisibleRangeMarginLeftProperty", + "VisibleRangeMarginRight": "VisibleRangeMarginRight", + "VisibleRangeMarginRightProperty": "VisibleRangeMarginRightProperty", + "VisibleRangeMarginTop": "VisibleRangeMarginTop", + "VisibleRangeMarginTopProperty": "VisibleRangeMarginTopProperty", + "VisibleRangeMode": "VisibleRangeMode", + "VisibleRangeModeProperty": "VisibleRangeModeProperty", + "WMA(IEnumerable, int)": "WMA(IEnumerable, int)", + "WMA": "WMA(IEnumerable, int)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesCollection", + "k": "class", + "s": "classes", + "m": { + "SeriesCollection()": "SeriesCollection()", + "SeriesCollection": "SeriesCollection()", + "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)": "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionAfterChanged": "OnCollectionAfterChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)": "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionBeforeChanged": "OnCollectionBeforeChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesDescription()": "SeriesDescription()", + "SeriesDescription": "SeriesDescription()", + "ActualAreaFillOpacity": "ActualAreaFillOpacity", + "ActualBrush": "ActualBrush", + "ActualFocusBrush": "ActualFocusBrush", + "ActualFocusMode": "ActualFocusMode", + "ActualHighlightedValuesFadeOpacity": "ActualHighlightedValuesFadeOpacity", + "ActualHighlightingFadeOpacity": "ActualHighlightingFadeOpacity", + "ActualHighlightingMode": "ActualHighlightingMode", + "ActualHitTestMode": "ActualHitTestMode", + "ActualLayers": "ActualLayers", + "ActualLegendItemBadgeBrush": "ActualLegendItemBadgeBrush", + "ActualLegendItemBadgeOutline": "ActualLegendItemBadgeOutline", + "ActualLegendItemBadgeTemplateRef": "ActualLegendItemBadgeTemplateRef", + "ActualMarkerFillOpacity": "ActualMarkerFillOpacity", + "ActualOutline": "ActualOutline", + "ActualResolution": "ActualResolution", + "ActualSelectionBrush": "ActualSelectionBrush", + "ActualSelectionMode": "ActualSelectionMode", + "ActualThickness": "ActualThickness", + "AreaFillOpacity": "AreaFillOpacity", + "AttachTooltipToRoot": "AttachTooltipToRoot", + "AutoCalloutLabelFormat": "AutoCalloutLabelFormat", + "AutoCalloutLabelFormatSpecifiers": "AutoCalloutLabelFormatSpecifiers", + "AutoCalloutValueLabelFormat": "AutoCalloutValueLabelFormat", + "AutoCalloutValueLabelFormatSpecifiers": "AutoCalloutValueLabelFormatSpecifiers", + "Brush": "Brush", + "CoercionMethodsRef": "CoercionMethodsRef", + "DashArray": "DashArray", + "DataLegendGroup": "DataLegendGroup", + "DataSourceRef": "DataSourceRef", + "DiscreteLegendItemTemplateRef": "DiscreteLegendItemTemplateRef", + "ExpectFunctions": "ExpectFunctions", + "FinalValue": "FinalValue", + "FocusBrush": "FocusBrush", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedLegendItemVisibility": "HighlightedLegendItemVisibility", + "HighlightedTitleSuffix": "HighlightedTitleSuffix", + "HighlightedValuesDataLegendGroup": "HighlightedValuesDataLegendGroup", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesExtraPropertyOverlays": "HighlightedValuesExtraPropertyOverlays", + "HighlightedValuesFadeOpacity": "HighlightedValuesFadeOpacity", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HitTestMode": "HitTestMode", + "Index": "Index", + "IsActualLegendFinancial": "IsActualLegendFinancial", + "IsComponentHighlightingModeIgnored": "IsComponentHighlightingModeIgnored", + "IsDefaultToolTipSelected": "IsDefaultToolTipSelected", + "IsDropShadowEnabled": "IsDropShadowEnabled", + "IsHighlightingEnabled": "IsHighlightingEnabled", + "Layers": "Layers", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "LegendItemTemplateRef": "LegendItemTemplateRef", + "LegendItemVisibility": "LegendItemVisibility", + "LegendRef": "LegendRef", + "LineCap": "LineCap", + "LineJoin": "LineJoin", + "MarkerFillOpacity": "MarkerFillOpacity", + "MouseOverEnabled": "MouseOverEnabled", + "Opacity": "Opacity", + "Outline": "Outline", + "OutlineMode": "OutlineMode", + "PercentChange": "PercentChange", + "RenderRequestedRef": "RenderRequestedRef", + "Resolution": "Resolution", + "SafeActualBrush": "SafeActualBrush", + "SelectionBrush": "SelectionBrush", + "SelectionThickness": "SelectionThickness", + "ShadowBlur": "ShadowBlur", + "ShadowColor": "ShadowColor", + "ShadowOffsetX": "ShadowOffsetX", + "ShadowOffsetY": "ShadowOffsetY", + "ShouldAnimateOnDataSourceSwap": "ShouldAnimateOnDataSourceSwap", + "ShouldHideAutoCallouts": "ShouldHideAutoCallouts", + "ShouldRemoveHighlightedDataOnLayerHidden": "ShouldRemoveHighlightedDataOnLayerHidden", + "ShouldShiftOpacityForSafeActualBrush": "ShouldShiftOpacityForSafeActualBrush", + "ShowDefaultTooltip": "ShowDefaultTooltip", + "Thickness": "Thickness", + "Title": "Title", + "TooltipTemplateRef": "TooltipTemplateRef", + "TransitionDuration": "TransitionDuration", + "TransitionEasingFunctionRef": "TransitionEasingFunctionRef", + "TransitionInDuration": "TransitionInDuration", + "TransitionInEasingFunctionRef": "TransitionInEasingFunctionRef", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionOutCompletedRef": "TransitionOutCompletedRef", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutEasingFunctionRef": "TransitionOutEasingFunctionRef", + "TransitionOutSpeedType": "TransitionOutSpeedType", + "Type": "Type", + "UseItemWiseColors": "UseItemWiseColors", + "UseSingleShadow": "UseSingleShadow", + "Visibility": "Visibility", + "VisibleRangeMarginBottom": "VisibleRangeMarginBottom", + "VisibleRangeMarginLeft": "VisibleRangeMarginLeft", + "VisibleRangeMarginRight": "VisibleRangeMarginRight", + "VisibleRangeMarginTop": "VisibleRangeMarginTop", + "VisibleRangeMode": "VisibleRangeMode" + } + } + ], + "SeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesDescriptionMetadata()": "SeriesDescriptionMetadata()", + "SeriesDescriptionMetadata": "SeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesHighlightedValuesDisplayMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/SeriesHighlightedValuesDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesHighlightingBehavior": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesHighlightingBehavior", + "k": "enum", + "s": "enums" + } + ], + "SeriesHighlightingMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesHighlightingMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesHitTestMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesHitTestMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesLayer", + "k": "class", + "s": "classes", + "m": { + "SeriesLayer()": "SeriesLayer()", + "SeriesLayer": "SeriesLayer()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PlayTransitionIn()": "PlayTransitionIn()", + "PlayTransitionIn": "PlayTransitionIn()", + "PlayTransitionOutAndRemove()": "PlayTransitionOutAndRemove()", + "PlayTransitionOutAndRemove": "PlayTransitionOutAndRemove()", + "PropertyOverlays": "PropertyOverlays", + "TransitionOutIsInProgress": "TransitionOutIsInProgress", + "ZIndex": "ZIndex", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesLayerCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesLayerCollection", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerCollection()": "SeriesLayerCollection()", + "SeriesLayerCollection": "SeriesLayerCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesLayerDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerDescription()": "SeriesLayerDescription()", + "SeriesLayerDescription": "SeriesLayerDescription()", + "PropertyOverlays": "PropertyOverlays", + "Type": "Type", + "ZIndex": "ZIndex" + } + } + ], + "SeriesLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerDescriptionMetadata()": "SeriesLayerDescriptionMetadata()", + "SeriesLayerDescriptionMetadata": "SeriesLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesLayerPropertyOverlay": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesLayerPropertyOverlay", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlay()": "SeriesLayerPropertyOverlay()", + "SeriesLayerPropertyOverlay": "SeriesLayerPropertyOverlay()", + "CurrentValuePropertyName": "CurrentValuePropertyName", + "InternalPropertyName": "InternalPropertyName", + "IsAlwaysApplied": "IsAlwaysApplied", + "IsSourceOverlay": "IsSourceOverlay", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnValueResolving(SeriesLayerPropertyOverlayValueResolvingEventArgs)": "OnValueResolving(SeriesLayerPropertyOverlayValueResolvingEventArgs)", + "OnValueResolving": "OnValueResolving(SeriesLayerPropertyOverlayValueResolvingEventArgs)", + "PropertyName": "PropertyName", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesLayerPropertyOverlayCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesLayerPropertyOverlayCollection", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayCollection()": "SeriesLayerPropertyOverlayCollection()", + "SeriesLayerPropertyOverlayCollection": "SeriesLayerPropertyOverlayCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesLayerPropertyOverlayDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesLayerPropertyOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayDescription()": "SeriesLayerPropertyOverlayDescription()", + "SeriesLayerPropertyOverlayDescription": "SeriesLayerPropertyOverlayDescription()", + "CurrentValuePropertyName": "CurrentValuePropertyName", + "IsAlwaysApplied": "IsAlwaysApplied", + "IsSourceOverlay": "IsSourceOverlay", + "PropertyName": "PropertyName", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type", + "ValueRef": "ValueRef", + "ValueResolvingRef": "ValueResolvingRef" + } + } + ], + "SeriesLayerPropertyOverlayDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesLayerPropertyOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayDescriptionMetadata()": "SeriesLayerPropertyOverlayDescriptionMetadata()", + "SeriesLayerPropertyOverlayDescriptionMetadata": "SeriesLayerPropertyOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesLayerPropertyOverlayValueResolvingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription()": "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription()", + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription": "SeriesLayerPropertyOverlayValueResolvingEventArgsDescription()", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata()": "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata()", + "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata": "SeriesLayerPropertyOverlayValueResolvingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesMatcher": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesMatcher", + "k": "class", + "s": "classes", + "m": { + "SeriesMatcher()": "SeriesMatcher()", + "SeriesMatcher": "SeriesMatcher()", + "Index": "Index", + "MemberPath": "MemberPath", + "MemberPathType": "MemberPathType", + "Name": "Name", + "Title": "Title", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesMatcherDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesMatcherDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesMatcherDescription()": "SeriesMatcherDescription()", + "SeriesMatcherDescription": "SeriesMatcherDescription()", + "Index": "Index", + "MemberPath": "MemberPath", + "MemberPathType": "MemberPathType", + "Title": "Title", + "Type": "Type" + } + } + ], + "SeriesMatcherDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesMatcherDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesMatcherDescriptionMetadata()": "SeriesMatcherDescriptionMetadata()", + "SeriesMatcherDescriptionMetadata": "SeriesMatcherDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesMatcherDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesMatcherDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SeriesMatcherDescriptionModule()": "SeriesMatcherDescriptionModule()", + "SeriesMatcherDescriptionModule": "SeriesMatcherDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesOutlineMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesOutlineMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesPlotAreaMarginHorizontalMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesPlotAreaMarginHorizontalMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesPlotAreaMarginVerticalMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesPlotAreaMarginVerticalMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesSelectionBehavior": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesSelectionBehavior", + "k": "enum", + "s": "enums" + } + ], + "SeriesSelectionMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesViewer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesViewer", + "k": "class", + "s": "classes", + "m": { + "ActualContentHitTestMode": "ActualContentHitTestMode", + "ActualContentHitTestModeProperty": "ActualContentHitTestModeProperty", + "ActualInteractionPixelScalingRatio": "ActualInteractionPixelScalingRatio", + "ActualInteractionPixelScalingRatioProperty": "ActualInteractionPixelScalingRatioProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "ActualPlotAreaBorderBrush": "ActualPlotAreaBorderBrush", + "ActualPlotAreaBorderBrushProperty": "ActualPlotAreaBorderBrushProperty", + "ActualWindowPositionHorizontal": "ActualWindowPositionHorizontal", + "ActualWindowPositionHorizontalProperty": "ActualWindowPositionHorizontalProperty", + "ActualWindowPositionVertical": "ActualWindowPositionVertical", + "ActualWindowPositionVerticalProperty": "ActualWindowPositionVerticalProperty", + "ActualWindowRect": "ActualWindowRect", + "ActualWindowRectMinHeight": "ActualWindowRectMinHeight", + "ActualWindowRectMinHeightProperty": "ActualWindowRectMinHeightProperty", + "ActualWindowRectMinWidth": "ActualWindowRectMinWidth", + "ActualWindowRectMinWidthProperty": "ActualWindowRectMinWidthProperty", + "ActualWindowRectProperty": "ActualWindowRectProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AnimateSeriesWhenAxisRangeChanges": "AnimateSeriesWhenAxisRangeChanges", + "AnimateSeriesWhenAxisRangeChangesProperty": "AnimateSeriesWhenAxisRangeChangesProperty", + "AutoMarginHeight": "AutoMarginHeight", + "AutoMarginHeightProperty": "AutoMarginHeightProperty", + "AutoMarginWidth": "AutoMarginWidth", + "AutoMarginWidthProperty": "AutoMarginWidthProperty", + "BottomMargin": "BottomMargin", + "BottomMarginProperty": "BottomMarginProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "CancelAnnotationFlow(string)": "CancelAnnotationFlow(string)", + "CancelAnnotationFlow": "CancelAnnotationFlow(string)", + "CancelCreatingAnnotation()": "CancelCreatingAnnotation()", + "CancelCreatingAnnotation": "CancelCreatingAnnotation()", + "CancelDeletingAnnotation()": "CancelDeletingAnnotation()", + "CancelDeletingAnnotation": "CancelDeletingAnnotation()", + "CancelManipulation()": "CancelManipulation()", + "CancelManipulation": "CancelManipulation()", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "ContentHitTestMode": "ContentHitTestMode", + "ContentHitTestModeProperty": "ContentHitTestModeProperty", + "ContentViewport": "ContentViewport", + "ContentViewportProperty": "ContentViewportProperty", + "CrosshairPoint": "CrosshairPoint", + "CrosshairPointProperty": "CrosshairPointProperty", + "CrosshairVisibility": "CrosshairVisibility", + "CrosshairVisibilityProperty": "CrosshairVisibilityProperty", + "DefaultInteraction": "DefaultInteraction", + "DefaultInteractionProperty": "DefaultInteractionProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "DragCrosshairActivated": "DragCrosshairActivated", + "DragCrosshairActivatedProperty": "DragCrosshairActivatedProperty", + "EffectiveViewport": "EffectiveViewport", + "EffectiveViewportProperty": "EffectiveViewportProperty", + "FinishAnnotationFlow(UserAnnotationInformation)": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishAnnotationFlow": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishCreatingAnnotation()": "FinishCreatingAnnotation()", + "FinishCreatingAnnotation": "FinishCreatingAnnotation()", + "FinishDeletingAnnotation()": "FinishDeletingAnnotation()", + "FinishDeletingAnnotation": "FinishDeletingAnnotation()", + "FireMouseLeaveOnManipulationStart": "FireMouseLeaveOnManipulationStart", + "FireMouseLeaveOnManipulationStartProperty": "FireMouseLeaveOnManipulationStartProperty", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FocusBrush": "FocusBrush", + "FocusBrushProperty": "FocusBrushProperty", + "FocusDismissDelayMilliseconds": "FocusDismissDelayMilliseconds", + "FocusDismissDelayMillisecondsProperty": "FocusDismissDelayMillisecondsProperty", + "FocusMode": "FocusMode", + "FocusModeProperty": "FocusModeProperty", + "FocusTransitionDuration": "FocusTransitionDuration", + "FocusTransitionDurationProperty": "FocusTransitionDurationProperty", + "FocusedSeriesItems": "FocusedSeriesItems", + "FullSeries": "FullSeries", + "FullSeriesProperty": "FullSeriesProperty", + "GetActualWindowScaleHorizontal()": "GetActualWindowScaleHorizontal()", + "GetActualWindowScaleHorizontal": "GetActualWindowScaleHorizontal()", + "GetActualWindowScaleVertical()": "GetActualWindowScaleVertical()", + "GetActualWindowScaleVertical": "GetActualWindowScaleVertical()", + "GetAnimationIdleVersionNumber()": "GetAnimationIdleVersionNumber()", + "GetAnimationIdleVersionNumber": "GetAnimationIdleVersionNumber()", + "GetCurrentActualWindowRect()": "GetCurrentActualWindowRect()", + "GetCurrentActualWindowRect": "GetCurrentActualWindowRect()", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "HideToolTip()": "HideToolTip()", + "HideToolTip": "HideToolTip()", + "HideToolTipImmediate()": "HideToolTipImmediate()", + "HideToolTipImmediate": "HideToolTipImmediate()", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "HighlightingBehavior": "HighlightingBehavior", + "HighlightingBehaviorProperty": "HighlightingBehaviorProperty", + "HighlightingDismissDelayMilliseconds": "HighlightingDismissDelayMilliseconds", + "HighlightingDismissDelayMillisecondsProperty": "HighlightingDismissDelayMillisecondsProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "HighlightingMode": "HighlightingMode", + "HighlightingModeProperty": "HighlightingModeProperty", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HighlightingTransitionDurationProperty": "HighlightingTransitionDurationProperty", + "HorizontalCrosshairBrush": "HorizontalCrosshairBrush", + "HorizontalCrosshairBrushProperty": "HorizontalCrosshairBrushProperty", + "HorizontalViewScrollbarCornerRadius": "HorizontalViewScrollbarCornerRadius", + "HorizontalViewScrollbarCornerRadiusProperty": "HorizontalViewScrollbarCornerRadiusProperty", + "HorizontalViewScrollbarFill": "HorizontalViewScrollbarFill", + "HorizontalViewScrollbarFillProperty": "HorizontalViewScrollbarFillProperty", + "HorizontalViewScrollbarHeight": "HorizontalViewScrollbarHeight", + "HorizontalViewScrollbarHeightProperty": "HorizontalViewScrollbarHeightProperty", + "HorizontalViewScrollbarInset": "HorizontalViewScrollbarInset", + "HorizontalViewScrollbarInsetProperty": "HorizontalViewScrollbarInsetProperty", + "HorizontalViewScrollbarMaxOpacity": "HorizontalViewScrollbarMaxOpacity", + "HorizontalViewScrollbarMaxOpacityProperty": "HorizontalViewScrollbarMaxOpacityProperty", + "HorizontalViewScrollbarMode": "HorizontalViewScrollbarMode", + "HorizontalViewScrollbarModeProperty": "HorizontalViewScrollbarModeProperty", + "HorizontalViewScrollbarOutline": "HorizontalViewScrollbarOutline", + "HorizontalViewScrollbarOutlineProperty": "HorizontalViewScrollbarOutlineProperty", + "HorizontalViewScrollbarPosition": "HorizontalViewScrollbarPosition", + "HorizontalViewScrollbarPositionProperty": "HorizontalViewScrollbarPositionProperty", + "HorizontalViewScrollbarShouldAddAutoTrackInsets": "HorizontalViewScrollbarShouldAddAutoTrackInsets", + "HorizontalViewScrollbarShouldAddAutoTrackInsetsProperty": "HorizontalViewScrollbarShouldAddAutoTrackInsetsProperty", + "HorizontalViewScrollbarStrokeThickness": "HorizontalViewScrollbarStrokeThickness", + "HorizontalViewScrollbarStrokeThicknessProperty": "HorizontalViewScrollbarStrokeThicknessProperty", + "HorizontalViewScrollbarTrackEndInset": "HorizontalViewScrollbarTrackEndInset", + "HorizontalViewScrollbarTrackEndInsetProperty": "HorizontalViewScrollbarTrackEndInsetProperty", + "HorizontalViewScrollbarTrackStartInset": "HorizontalViewScrollbarTrackStartInset", + "HorizontalViewScrollbarTrackStartInsetProperty": "HorizontalViewScrollbarTrackStartInsetProperty", + "InteractionOverride": "InteractionOverride", + "InteractionOverrideProperty": "InteractionOverrideProperty", + "InteractionPixelScalingRatio": "InteractionPixelScalingRatio", + "InteractionPixelScalingRatioProperty": "InteractionPixelScalingRatioProperty", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsAnimationActive()": "IsAnimationActive()", + "IsAnimationActive": "IsAnimationActive()", + "IsAntiAliasingEnabledDuringInteraction": "IsAntiAliasingEnabledDuringInteraction", + "IsAntiAliasingEnabledDuringInteractionProperty": "IsAntiAliasingEnabledDuringInteractionProperty", + "IsDetached": "IsDetached", + "IsDetachedProperty": "IsDetachedProperty", + "IsInCreateAnnotationMode": "IsInCreateAnnotationMode", + "IsInCreateAnnotationModeProperty": "IsInCreateAnnotationModeProperty", + "IsInDeleteAnnotationMode": "IsInDeleteAnnotationMode", + "IsInDeleteAnnotationModeProperty": "IsInDeleteAnnotationModeProperty", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsSurfaceInteractionDisabledProperty": "IsSurfaceInteractionDisabledProperty", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsUserAnnotationsEnabledProperty": "IsUserAnnotationsEnabledProperty", + "IsWindowSyncedToVisibleRange": "IsWindowSyncedToVisibleRange", + "IsWindowSyncedToVisibleRangeProperty": "IsWindowSyncedToVisibleRangeProperty", + "IsZoomingEnabled()": "IsZoomingEnabled()", + "IsZoomingEnabled": "IsZoomingEnabled()", + "IsZoomingHorizontallyEnabled()": "IsZoomingHorizontallyEnabled()", + "IsZoomingHorizontallyEnabled": "IsZoomingHorizontallyEnabled()", + "IsZoomingVerticallyEnabled()": "IsZoomingVerticallyEnabled()", + "IsZoomingVerticallyEnabled": "IsZoomingVerticallyEnabled()", + "ItemsSourceChanged": "ItemsSourceChanged", + "ItemsSourceChangedProperty": "ItemsSourceChangedProperty", + "LeftMargin": "LeftMargin", + "LeftMarginProperty": "LeftMarginProperty", + "Legend": "Legend", + "LegendHighlightingMode": "LegendHighlightingMode", + "LegendHighlightingModeProperty": "LegendHighlightingModeProperty", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeModeProperty": "LegendItemBadgeModeProperty", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeShapeProperty": "LegendItemBadgeShapeProperty", + "LegendProperty": "LegendProperty", + "LoadAnnotationsFromJson(string)": "LoadAnnotationsFromJson(string)", + "LoadAnnotationsFromJson": "LoadAnnotationsFromJson(string)", + "MarkerAutomaticBehavior": "MarkerAutomaticBehavior", + "MarkerAutomaticBehaviorProperty": "MarkerAutomaticBehaviorProperty", + "MarkerBrushes": "MarkerBrushes", + "MarkerBrushesProperty": "MarkerBrushesProperty", + "MarkerOutlines": "MarkerOutlines", + "MarkerOutlinesProperty": "MarkerOutlinesProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySeriesDataChanged()": "NotifySeriesDataChanged()", + "NotifySeriesDataChanged": "NotifySeriesDataChanged()", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "OnActualWindowRectChanged(RectChangedEventArgs)": "OnActualWindowRectChanged(RectChangedEventArgs)", + "OnActualWindowRectChanged": "OnActualWindowRectChanged(RectChangedEventArgs)", + "OnAxisLabelMouseClick(AxisMouseEventArgs)": "OnAxisLabelMouseClick(AxisMouseEventArgs)", + "OnAxisLabelMouseClick": "OnAxisLabelMouseClick(AxisMouseEventArgs)", + "OnAxisLabelMouseDown(AxisMouseEventArgs)": "OnAxisLabelMouseDown(AxisMouseEventArgs)", + "OnAxisLabelMouseDown": "OnAxisLabelMouseDown(AxisMouseEventArgs)", + "OnAxisLabelMouseEnter(AxisMouseEventArgs)": "OnAxisLabelMouseEnter(AxisMouseEventArgs)", + "OnAxisLabelMouseEnter": "OnAxisLabelMouseEnter(AxisMouseEventArgs)", + "OnAxisLabelMouseLeave(AxisMouseEventArgs)": "OnAxisLabelMouseLeave(AxisMouseEventArgs)", + "OnAxisLabelMouseLeave": "OnAxisLabelMouseLeave(AxisMouseEventArgs)", + "OnAxisLabelMouseOver(AxisMouseEventArgs)": "OnAxisLabelMouseOver(AxisMouseEventArgs)", + "OnAxisLabelMouseOver": "OnAxisLabelMouseOver(AxisMouseEventArgs)", + "OnAxisLabelMouseUp(AxisMouseEventArgs)": "OnAxisLabelMouseUp(AxisMouseEventArgs)", + "OnAxisLabelMouseUp": "OnAxisLabelMouseUp(AxisMouseEventArgs)", + "OnAxisPanelMouseClick(AxisMouseEventArgs)": "OnAxisPanelMouseClick(AxisMouseEventArgs)", + "OnAxisPanelMouseClick": "OnAxisPanelMouseClick(AxisMouseEventArgs)", + "OnAxisPanelMouseDown(AxisMouseEventArgs)": "OnAxisPanelMouseDown(AxisMouseEventArgs)", + "OnAxisPanelMouseDown": "OnAxisPanelMouseDown(AxisMouseEventArgs)", + "OnAxisPanelMouseEnter(AxisMouseEventArgs)": "OnAxisPanelMouseEnter(AxisMouseEventArgs)", + "OnAxisPanelMouseEnter": "OnAxisPanelMouseEnter(AxisMouseEventArgs)", + "OnAxisPanelMouseLeave(AxisMouseEventArgs)": "OnAxisPanelMouseLeave(AxisMouseEventArgs)", + "OnAxisPanelMouseLeave": "OnAxisPanelMouseLeave(AxisMouseEventArgs)", + "OnAxisPanelMouseOver(AxisMouseEventArgs)": "OnAxisPanelMouseOver(AxisMouseEventArgs)", + "OnAxisPanelMouseOver": "OnAxisPanelMouseOver(AxisMouseEventArgs)", + "OnAxisPanelMouseUp(AxisMouseEventArgs)": "OnAxisPanelMouseUp(AxisMouseEventArgs)", + "OnAxisPanelMouseUp": "OnAxisPanelMouseUp(AxisMouseEventArgs)", + "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)": "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnFocusedSeriesItemsChanged": "OnFocusedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnGridAreaRectChanged(ScreenRectChangedEventArgs)": "OnGridAreaRectChanged(ScreenRectChangedEventArgs)", + "OnGridAreaRectChanged": "OnGridAreaRectChanged(ScreenRectChangedEventArgs)", + "OnPlotAreaClicked(PlotAreaPointerActionEventArgs)": "OnPlotAreaClicked(PlotAreaPointerActionEventArgs)", + "OnPlotAreaClicked": "OnPlotAreaClicked(PlotAreaPointerActionEventArgs)", + "OnPlotAreaPointerEnter(PlotAreaPointerEventArgs)": "OnPlotAreaPointerEnter(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerEnter": "OnPlotAreaPointerEnter(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerLeave(PlotAreaPointerEventArgs)": "OnPlotAreaPointerLeave(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerLeave": "OnPlotAreaPointerLeave(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerOver(PlotAreaPointerEventArgs)": "OnPlotAreaPointerOver(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerOver": "OnPlotAreaPointerOver(PlotAreaPointerEventArgs)", + "OnPlotAreaPointerPressed(PlotAreaPointerActionEventArgs)": "OnPlotAreaPointerPressed(PlotAreaPointerActionEventArgs)", + "OnPlotAreaPointerPressed": "OnPlotAreaPointerPressed(PlotAreaPointerActionEventArgs)", + "OnPlotAreaPointerReleased(PlotAreaPointerActionEventArgs)": "OnPlotAreaPointerReleased(PlotAreaPointerActionEventArgs)", + "OnPlotAreaPointerReleased": "OnPlotAreaPointerReleased(PlotAreaPointerActionEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRefreshCompleted(EventArgs)": "OnRefreshCompleted(EventArgs)", + "OnRefreshCompleted": "OnRefreshCompleted(EventArgs)", + "OnResizeIdle(ChartResizeIdleEventArgs)": "OnResizeIdle(ChartResizeIdleEventArgs)", + "OnResizeIdle": "OnResizeIdle(ChartResizeIdleEventArgs)", + "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)": "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnSelectedSeriesItemsChanged": "OnSelectedSeriesItemsChanged(SeriesViewerSelectedSeriesItemsChangedEventArgs)", + "OnSeriesClick(DataChartPointerEventArgs)": "OnSeriesClick(DataChartPointerEventArgs)", + "OnSeriesClick": "OnSeriesClick(DataChartPointerEventArgs)", + "OnSeriesCursorPointerMoved(ChartCursorEventArgs)": "OnSeriesCursorPointerMoved(ChartCursorEventArgs)", + "OnSeriesCursorPointerMoved": "OnSeriesCursorPointerMoved(ChartCursorEventArgs)", + "OnSeriesPointerEntered(DataChartPointerEventArgs)": "OnSeriesPointerEntered(DataChartPointerEventArgs)", + "OnSeriesPointerEntered": "OnSeriesPointerEntered(DataChartPointerEventArgs)", + "OnSeriesPointerExited(DataChartPointerEventArgs)": "OnSeriesPointerExited(DataChartPointerEventArgs)", + "OnSeriesPointerExited": "OnSeriesPointerExited(DataChartPointerEventArgs)", + "OnSeriesPointerMoved(DataChartPointerEventArgs)": "OnSeriesPointerMoved(DataChartPointerEventArgs)", + "OnSeriesPointerMoved": "OnSeriesPointerMoved(DataChartPointerEventArgs)", + "OnSeriesPointerPressed(DataChartPointerEventArgs)": "OnSeriesPointerPressed(DataChartPointerEventArgs)", + "OnSeriesPointerPressed": "OnSeriesPointerPressed(DataChartPointerEventArgs)", + "OnSeriesPointerReleased(DataChartPointerEventArgs)": "OnSeriesPointerReleased(DataChartPointerEventArgs)", + "OnSeriesPointerReleased": "OnSeriesPointerReleased(DataChartPointerEventArgs)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationInformationRequested": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnUserAnnotationToolTipContentUpdating": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnViewerManipulationEnding(SeriesViewerManipulationEventArgs)": "OnViewerManipulationEnding(SeriesViewerManipulationEventArgs)", + "OnViewerManipulationEnding": "OnViewerManipulationEnding(SeriesViewerManipulationEventArgs)", + "OnViewerManipulationStarting(SeriesViewerManipulationEventArgs)": "OnViewerManipulationStarting(SeriesViewerManipulationEventArgs)", + "OnViewerManipulationStarting": "OnViewerManipulationStarting(SeriesViewerManipulationEventArgs)", + "OnWindowRectChanged(RectChangedEventArgs)": "OnWindowRectChanged(RectChangedEventArgs)", + "OnWindowRectChanged": "OnWindowRectChanged(RectChangedEventArgs)", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "PlotAreaBackground": "PlotAreaBackground", + "PlotAreaBackgroundProperty": "PlotAreaBackgroundProperty", + "PreviewPathFill": "PreviewPathFill", + "PreviewPathFillProperty": "PreviewPathFillProperty", + "PreviewPathOpacity": "PreviewPathOpacity", + "PreviewPathOpacityProperty": "PreviewPathOpacityProperty", + "PreviewPathStroke": "PreviewPathStroke", + "PreviewPathStrokeProperty": "PreviewPathStrokeProperty", + "PreviewRect": "PreviewRect", + "PreviewRectProperty": "PreviewRectProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "QueueForAnimationIdle(Action, int)": "QueueForAnimationIdle(Action, int)", + "QueueForAnimationIdle": "QueueForAnimationIdle(Action, int)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "ResetAnnotations()": "ResetAnnotations()", + "ResetAnnotations": "ResetAnnotations()", + "ResetZoom()": "ResetZoom()", + "ResetZoom": "ResetZoom()", + "ResizeIdleMilliseconds": "ResizeIdleMilliseconds", + "ResizeIdleMillisecondsProperty": "ResizeIdleMillisecondsProperty", + "RightButtonDefaultInteraction": "RightButtonDefaultInteraction", + "RightButtonDefaultInteractionProperty": "RightButtonDefaultInteractionProperty", + "RightMargin": "RightMargin", + "RightMarginProperty": "RightMarginProperty", + "SaveAnnotationsToJson()": "SaveAnnotationsToJson()", + "SaveAnnotationsToJson": "SaveAnnotationsToJson()", + "ScrollbarsAnimationDuration": "ScrollbarsAnimationDuration", + "ScrollbarsAnimationDurationProperty": "ScrollbarsAnimationDurationProperty", + "SelectedSeriesItems": "SelectedSeriesItems", + "SelectionBehavior": "SelectionBehavior", + "SelectionBehaviorProperty": "SelectionBehaviorProperty", + "SelectionBrush": "SelectionBrush", + "SelectionBrushProperty": "SelectionBrushProperty", + "SelectionDismissDelayMilliseconds": "SelectionDismissDelayMilliseconds", + "SelectionDismissDelayMillisecondsProperty": "SelectionDismissDelayMillisecondsProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "SelectionTransitionDuration": "SelectionTransitionDuration", + "SelectionTransitionDurationProperty": "SelectionTransitionDurationProperty", + "Series": "Series", + "SeriesValueLayerUseLegend": "SeriesValueLayerUseLegend", + "SeriesValueLayerUseLegendProperty": "SeriesValueLayerUseLegendProperty", + "ShouldAddAutoMargins()": "ShouldAddAutoMargins()", + "ShouldAddAutoMargins": "ShouldAddAutoMargins()", + "ShouldMatchZOrderToSeriesOrder": "ShouldMatchZOrderToSeriesOrder", + "ShouldMatchZOrderToSeriesOrderProperty": "ShouldMatchZOrderToSeriesOrderProperty", + "ShouldPanOnMaximumZoom": "ShouldPanOnMaximumZoom", + "ShouldPanOnMaximumZoomProperty": "ShouldPanOnMaximumZoomProperty", + "ShouldSimulateHoverMoveCrosshairPoint": "ShouldSimulateHoverMoveCrosshairPoint", + "ShouldSimulateHoverMoveCrosshairPointProperty": "ShouldSimulateHoverMoveCrosshairPointProperty", + "SimulateClick(Point)": "SimulateClick(Point)", + "SimulateClick": "SimulateClick(Point)", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "SimulateMouseLeave()": "SimulateMouseLeave()", + "SimulateMouseLeave": "SimulateMouseLeave()", + "SimulatePlotPointerUp(Point)": "SimulatePlotPointerUp(Point)", + "SimulatePlotPointerUp": "SimulatePlotPointerUp(Point)", + "SimulatePressAndHold(Point)": "SimulatePressAndHold(Point)", + "SimulatePressAndHold": "SimulatePressAndHold(Point)", + "StartCreatingAnnotation()": "StartCreatingAnnotation()", + "StartCreatingAnnotation": "StartCreatingAnnotation()", + "StartDeletingAnnotation()": "StartDeletingAnnotation()", + "StartDeletingAnnotation": "StartDeletingAnnotation()", + "Subtitle": "Subtitle", + "SubtitleBottomMargin": "SubtitleBottomMargin", + "SubtitleBottomMarginProperty": "SubtitleBottomMarginProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleHorizontalAlignment": "SubtitleHorizontalAlignment", + "SubtitleHorizontalAlignmentProperty": "SubtitleHorizontalAlignmentProperty", + "SubtitleLeftMargin": "SubtitleLeftMargin", + "SubtitleLeftMarginProperty": "SubtitleLeftMarginProperty", + "SubtitleProperty": "SubtitleProperty", + "SubtitleRightMargin": "SubtitleRightMargin", + "SubtitleRightMarginProperty": "SubtitleRightMarginProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "SubtitleTopMargin": "SubtitleTopMargin", + "SubtitleTopMarginProperty": "SubtitleTopMarginProperty", + "SurfaceUsage": "SurfaceUsage", + "SurfaceUsageProperty": "SurfaceUsageProperty", + "SyncChannel": "SyncChannel", + "SyncChannelProperty": "SyncChannelProperty", + "SynchronizeHorizontally": "SynchronizeHorizontally", + "SynchronizeHorizontallyProperty": "SynchronizeHorizontallyProperty", + "SynchronizeVertically": "SynchronizeVertically", + "SynchronizeVerticallyProperty": "SynchronizeVerticallyProperty", + "Title": "Title", + "TitleBottomMargin": "TitleBottomMargin", + "TitleBottomMarginProperty": "TitleBottomMarginProperty", + "TitleFontFamily": "TitleFontFamily", + "TitleFontFamilyProperty": "TitleFontFamilyProperty", + "TitleFontSize": "TitleFontSize", + "TitleFontSizeProperty": "TitleFontSizeProperty", + "TitleFontStyle": "TitleFontStyle", + "TitleFontStyleProperty": "TitleFontStyleProperty", + "TitleFontWeight": "TitleFontWeight", + "TitleFontWeightProperty": "TitleFontWeightProperty", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleHorizontalAlignmentProperty": "TitleHorizontalAlignmentProperty", + "TitleLeftMargin": "TitleLeftMargin", + "TitleLeftMarginProperty": "TitleLeftMarginProperty", + "TitleProperty": "TitleProperty", + "TitleRightMargin": "TitleRightMargin", + "TitleRightMarginProperty": "TitleRightMarginProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTopMargin": "TitleTopMargin", + "TitleTopMarginProperty": "TitleTopMarginProperty", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipBorderColor": "ToolTipBorderColor", + "ToolTipBorderColorProperty": "ToolTipBorderColorProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "TopMargin": "TopMargin", + "TopMarginProperty": "TopMarginProperty", + "UseFixedAspectZoom()": "UseFixedAspectZoom()", + "UseFixedAspectZoom": "UseFixedAspectZoom()", + "VerticalCrosshairBrush": "VerticalCrosshairBrush", + "VerticalCrosshairBrushProperty": "VerticalCrosshairBrushProperty", + "VerticalViewScrollbarCornerRadius": "VerticalViewScrollbarCornerRadius", + "VerticalViewScrollbarCornerRadiusProperty": "VerticalViewScrollbarCornerRadiusProperty", + "VerticalViewScrollbarFill": "VerticalViewScrollbarFill", + "VerticalViewScrollbarFillProperty": "VerticalViewScrollbarFillProperty", + "VerticalViewScrollbarInset": "VerticalViewScrollbarInset", + "VerticalViewScrollbarInsetProperty": "VerticalViewScrollbarInsetProperty", + "VerticalViewScrollbarMaxOpacity": "VerticalViewScrollbarMaxOpacity", + "VerticalViewScrollbarMaxOpacityProperty": "VerticalViewScrollbarMaxOpacityProperty", + "VerticalViewScrollbarMode": "VerticalViewScrollbarMode", + "VerticalViewScrollbarModeProperty": "VerticalViewScrollbarModeProperty", + "VerticalViewScrollbarOutline": "VerticalViewScrollbarOutline", + "VerticalViewScrollbarOutlineProperty": "VerticalViewScrollbarOutlineProperty", + "VerticalViewScrollbarPosition": "VerticalViewScrollbarPosition", + "VerticalViewScrollbarPositionProperty": "VerticalViewScrollbarPositionProperty", + "VerticalViewScrollbarShouldAddAutoTrackInsets": "VerticalViewScrollbarShouldAddAutoTrackInsets", + "VerticalViewScrollbarShouldAddAutoTrackInsetsProperty": "VerticalViewScrollbarShouldAddAutoTrackInsetsProperty", + "VerticalViewScrollbarStrokeThickness": "VerticalViewScrollbarStrokeThickness", + "VerticalViewScrollbarStrokeThicknessProperty": "VerticalViewScrollbarStrokeThicknessProperty", + "VerticalViewScrollbarTrackEndInset": "VerticalViewScrollbarTrackEndInset", + "VerticalViewScrollbarTrackEndInsetProperty": "VerticalViewScrollbarTrackEndInsetProperty", + "VerticalViewScrollbarTrackStartInset": "VerticalViewScrollbarTrackStartInset", + "VerticalViewScrollbarTrackStartInsetProperty": "VerticalViewScrollbarTrackStartInsetProperty", + "VerticalViewScrollbarWidth": "VerticalViewScrollbarWidth", + "VerticalViewScrollbarWidthProperty": "VerticalViewScrollbarWidthProperty", + "ViewportRect": "ViewportRect", + "ViewportRectProperty": "ViewportRectProperty", + "WindowPositionHorizontal": "WindowPositionHorizontal", + "WindowPositionHorizontalProperty": "WindowPositionHorizontalProperty", + "WindowPositionVertical": "WindowPositionVertical", + "WindowPositionVerticalProperty": "WindowPositionVerticalProperty", + "WindowRect": "WindowRect", + "WindowRectMinHeight": "WindowRectMinHeight", + "WindowRectMinHeightProperty": "WindowRectMinHeightProperty", + "WindowRectMinWidth": "WindowRectMinWidth", + "WindowRectMinWidthProperty": "WindowRectMinWidthProperty", + "WindowRectProperty": "WindowRectProperty", + "WindowResponse": "WindowResponse", + "WindowResponseProperty": "WindowResponseProperty", + "WindowSizeMinHeight": "WindowSizeMinHeight", + "WindowSizeMinHeightProperty": "WindowSizeMinHeightProperty", + "WindowSizeMinWidth": "WindowSizeMinWidth", + "WindowSizeMinWidthProperty": "WindowSizeMinWidthProperty", + "ZoomCoercionMode": "ZoomCoercionMode", + "ZoomCoercionModeProperty": "ZoomCoercionModeProperty", + "ZoomIn(double)": "ZoomIn(double)", + "ZoomIn": "ZoomIn(double)", + "ZoomOut(double)": "ZoomOut(double)", + "ZoomOut": "ZoomOut(double)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesViewerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesViewerDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerDescription()": "SeriesViewerDescription()", + "SeriesViewerDescription": "SeriesViewerDescription()", + "ActualContentHitTestMode": "ActualContentHitTestMode", + "ActualInteractionPixelScalingRatio": "ActualInteractionPixelScalingRatio", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualWindowPositionHorizontal": "ActualWindowPositionHorizontal", + "ActualWindowPositionVertical": "ActualWindowPositionVertical", + "ActualWindowRect": "ActualWindowRect", + "ActualWindowRectChangedRef": "ActualWindowRectChangedRef", + "ActualWindowRectMinHeight": "ActualWindowRectMinHeight", + "ActualWindowRectMinWidth": "ActualWindowRectMinWidth", + "AnimateSeriesWhenAxisRangeChanges": "AnimateSeriesWhenAxisRangeChanges", + "AutoMarginHeight": "AutoMarginHeight", + "AutoMarginWidth": "AutoMarginWidth", + "AxisLabelMouseClickRef": "AxisLabelMouseClickRef", + "AxisLabelMouseDownRef": "AxisLabelMouseDownRef", + "AxisLabelMouseEnterRef": "AxisLabelMouseEnterRef", + "AxisLabelMouseLeaveRef": "AxisLabelMouseLeaveRef", + "AxisLabelMouseOverRef": "AxisLabelMouseOverRef", + "AxisLabelMouseUpRef": "AxisLabelMouseUpRef", + "AxisPanelMouseClickRef": "AxisPanelMouseClickRef", + "AxisPanelMouseDownRef": "AxisPanelMouseDownRef", + "AxisPanelMouseEnterRef": "AxisPanelMouseEnterRef", + "AxisPanelMouseLeaveRef": "AxisPanelMouseLeaveRef", + "AxisPanelMouseOverRef": "AxisPanelMouseOverRef", + "AxisPanelMouseUpRef": "AxisPanelMouseUpRef", + "Background": "Background", + "BottomMargin": "BottomMargin", + "Brushes": "Brushes", + "ChartTitle": "ChartTitle", + "ContentHitTestMode": "ContentHitTestMode", + "CrosshairPoint": "CrosshairPoint", + "CrosshairVisibility": "CrosshairVisibility", + "DefaultInteraction": "DefaultInteraction", + "DragModifier": "DragModifier", + "EffectiveViewport": "EffectiveViewport", + "FireMouseLeaveOnManipulationStart": "FireMouseLeaveOnManipulationStart", + "FocusBrush": "FocusBrush", + "FocusDismissDelayMilliseconds": "FocusDismissDelayMilliseconds", + "FocusMode": "FocusMode", + "FocusTransitionDuration": "FocusTransitionDuration", + "FocusedSeriesItems": "FocusedSeriesItems", + "FocusedSeriesItemsChangedRef": "FocusedSeriesItemsChangedRef", + "FullSeries": "FullSeries", + "GridAreaRectChangedRef": "GridAreaRectChangedRef", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightingBehavior": "HighlightingBehavior", + "HighlightingDismissDelayMilliseconds": "HighlightingDismissDelayMilliseconds", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingMode": "HighlightingMode", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HorizontalCrosshairBrush": "HorizontalCrosshairBrush", + "HorizontalViewScrollbarCornerRadius": "HorizontalViewScrollbarCornerRadius", + "HorizontalViewScrollbarFill": "HorizontalViewScrollbarFill", + "HorizontalViewScrollbarHeight": "HorizontalViewScrollbarHeight", + "HorizontalViewScrollbarInset": "HorizontalViewScrollbarInset", + "HorizontalViewScrollbarMaxOpacity": "HorizontalViewScrollbarMaxOpacity", + "HorizontalViewScrollbarMode": "HorizontalViewScrollbarMode", + "HorizontalViewScrollbarOutline": "HorizontalViewScrollbarOutline", + "HorizontalViewScrollbarPosition": "HorizontalViewScrollbarPosition", + "HorizontalViewScrollbarShouldAddAutoTrackInsets": "HorizontalViewScrollbarShouldAddAutoTrackInsets", + "HorizontalViewScrollbarStrokeThickness": "HorizontalViewScrollbarStrokeThickness", + "HorizontalViewScrollbarTrackEndInset": "HorizontalViewScrollbarTrackEndInset", + "HorizontalViewScrollbarTrackStartInset": "HorizontalViewScrollbarTrackStartInset", + "ImageCapturedRef": "ImageCapturedRef", + "InteractionOverride": "InteractionOverride", + "InteractionPixelScalingRatio": "InteractionPixelScalingRatio", + "IsAntiAliasingEnabledDuringInteraction": "IsAntiAliasingEnabledDuringInteraction", + "IsPagePanningAllowed": "IsPagePanningAllowed", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsWindowSyncedToVisibleRange": "IsWindowSyncedToVisibleRange", + "LeftMargin": "LeftMargin", + "LegendHighlightingMode": "LegendHighlightingMode", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendRef": "LegendRef", + "MarkerAutomaticBehavior": "MarkerAutomaticBehavior", + "MarkerBrushes": "MarkerBrushes", + "MarkerOutlines": "MarkerOutlines", + "Outlines": "Outlines", + "PanModifier": "PanModifier", + "PixelScalingRatio": "PixelScalingRatio", + "PlotAreaBackground": "PlotAreaBackground", + "PlotAreaClickedRef": "PlotAreaClickedRef", + "PlotAreaMouseEnterRef": "PlotAreaMouseEnterRef", + "PlotAreaMouseLeaveRef": "PlotAreaMouseLeaveRef", + "PlotAreaMouseLeftButtonDownRef": "PlotAreaMouseLeftButtonDownRef", + "PlotAreaMouseLeftButtonUpRef": "PlotAreaMouseLeftButtonUpRef", + "PlotAreaMouseOverRef": "PlotAreaMouseOverRef", + "PreferHigherResolutionTiles": "PreferHigherResolutionTiles", + "PreviewPathFill": "PreviewPathFill", + "PreviewPathOpacity": "PreviewPathOpacity", + "PreviewPathStroke": "PreviewPathStroke", + "PreviewRect": "PreviewRect", + "RefreshCompletedRef": "RefreshCompletedRef", + "ResizeIdleMilliseconds": "ResizeIdleMilliseconds", + "ResizeIdleRef": "ResizeIdleRef", + "RightButtonDefaultInteraction": "RightButtonDefaultInteraction", + "RightMargin": "RightMargin", + "ScrollbarsAnimationDuration": "ScrollbarsAnimationDuration", + "SelectedSeriesItems": "SelectedSeriesItems", + "SelectedSeriesItemsChangedRef": "SelectedSeriesItemsChangedRef", + "SelectionBehavior": "SelectionBehavior", + "SelectionBrush": "SelectionBrush", + "SelectionDismissDelayMilliseconds": "SelectionDismissDelayMilliseconds", + "SelectionMode": "SelectionMode", + "SelectionModifier": "SelectionModifier", + "SelectionTransitionDuration": "SelectionTransitionDuration", + "Series": "Series", + "SeriesClickRef": "SeriesClickRef", + "SeriesCursorMouseMoveRef": "SeriesCursorMouseMoveRef", + "SeriesMouseEnterRef": "SeriesMouseEnterRef", + "SeriesMouseLeaveRef": "SeriesMouseLeaveRef", + "SeriesMouseLeftButtonDownRef": "SeriesMouseLeftButtonDownRef", + "SeriesMouseLeftButtonUpRef": "SeriesMouseLeftButtonUpRef", + "SeriesMouseMoveRef": "SeriesMouseMoveRef", + "SeriesValueLayerUseLegend": "SeriesValueLayerUseLegend", + "ShouldMatchZOrderToSeriesOrder": "ShouldMatchZOrderToSeriesOrder", + "ShouldPanOnMaximumZoom": "ShouldPanOnMaximumZoom", + "ShouldSimulateHoverMoveCrosshairPoint": "ShouldSimulateHoverMoveCrosshairPoint", + "SizeChangedRef": "SizeChangedRef", + "Subtitle": "Subtitle", + "SubtitleBottomMargin": "SubtitleBottomMargin", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleHorizontalAlignment": "SubtitleHorizontalAlignment", + "SubtitleLeftMargin": "SubtitleLeftMargin", + "SubtitleRightMargin": "SubtitleRightMargin", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextStyle": "SubtitleTextStyle", + "SubtitleTopMargin": "SubtitleTopMargin", + "SyncChannel": "SyncChannel", + "SynchronizeHorizontally": "SynchronizeHorizontally", + "SynchronizeVertically": "SynchronizeVertically", + "TitleBottomMargin": "TitleBottomMargin", + "TitleFontFamily": "TitleFontFamily", + "TitleFontSize": "TitleFontSize", + "TitleFontStyle": "TitleFontStyle", + "TitleFontWeight": "TitleFontWeight", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleLeftMargin": "TitleLeftMargin", + "TitleRightMargin": "TitleRightMargin", + "TitleTextColor": "TitleTextColor", + "TitleTextStyle": "TitleTextStyle", + "TitleTopMargin": "TitleTopMargin", + "TopMargin": "TopMargin", + "Type": "Type", + "UseTiledZooming": "UseTiledZooming", + "UserAnnotationInformationRequestedRef": "UserAnnotationInformationRequestedRef", + "UserAnnotationToolTipContentUpdatingRef": "UserAnnotationToolTipContentUpdatingRef", + "VerticalCrosshairBrush": "VerticalCrosshairBrush", + "VerticalViewScrollbarCornerRadius": "VerticalViewScrollbarCornerRadius", + "VerticalViewScrollbarFill": "VerticalViewScrollbarFill", + "VerticalViewScrollbarInset": "VerticalViewScrollbarInset", + "VerticalViewScrollbarMaxOpacity": "VerticalViewScrollbarMaxOpacity", + "VerticalViewScrollbarMode": "VerticalViewScrollbarMode", + "VerticalViewScrollbarOutline": "VerticalViewScrollbarOutline", + "VerticalViewScrollbarPosition": "VerticalViewScrollbarPosition", + "VerticalViewScrollbarShouldAddAutoTrackInsets": "VerticalViewScrollbarShouldAddAutoTrackInsets", + "VerticalViewScrollbarStrokeThickness": "VerticalViewScrollbarStrokeThickness", + "VerticalViewScrollbarTrackEndInset": "VerticalViewScrollbarTrackEndInset", + "VerticalViewScrollbarTrackStartInset": "VerticalViewScrollbarTrackStartInset", + "VerticalViewScrollbarWidth": "VerticalViewScrollbarWidth", + "ViewerManipulationEndingRef": "ViewerManipulationEndingRef", + "ViewerManipulationStartingRef": "ViewerManipulationStartingRef", + "WindowPositionHorizontal": "WindowPositionHorizontal", + "WindowPositionVertical": "WindowPositionVertical", + "WindowRect": "WindowRect", + "WindowRectChangedRef": "WindowRectChangedRef", + "WindowRectMinHeight": "WindowRectMinHeight", + "WindowRectMinWidth": "WindowRectMinWidth", + "WindowResponse": "WindowResponse", + "WindowSizeMinHeight": "WindowSizeMinHeight", + "WindowSizeMinWidth": "WindowSizeMinWidth", + "ZoomCoercionMode": "ZoomCoercionMode", + "ZoomTileCacheSize": "ZoomTileCacheSize" + } + } + ], + "SeriesViewerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesViewerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerDescriptionMetadata()": "SeriesViewerDescriptionMetadata()", + "SeriesViewerDescriptionMetadata": "SeriesViewerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesViewerHorizontalScrollbarPosition": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesViewerHorizontalScrollbarPosition", + "k": "enum", + "s": "enums" + } + ], + "SeriesViewerManipulationEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesViewerManipulationEventArgs", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerManipulationEventArgs()": "SeriesViewerManipulationEventArgs()", + "SeriesViewerManipulationEventArgs": "SeriesViewerManipulationEventArgs()", + "DragSelectRectangle": "DragSelectRectangle", + "IsDragSelect": "IsDragSelect", + "IsDragSelectCancelled": "IsDragSelectCancelled", + "IsDragZoom": "IsDragZoom", + "IsZoomPan": "IsZoomPan", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SeriesViewerManipulationEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesViewerManipulationEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerManipulationEventArgsDescription()": "SeriesViewerManipulationEventArgsDescription()", + "SeriesViewerManipulationEventArgsDescription": "SeriesViewerManipulationEventArgsDescription()", + "DragSelectRectangle": "DragSelectRectangle", + "IsDragSelect": "IsDragSelect", + "IsDragSelectCancelled": "IsDragSelectCancelled", + "IsDragZoom": "IsDragZoom", + "IsZoomPan": "IsZoomPan", + "Type": "Type" + } + } + ], + "SeriesViewerManipulationEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesViewerManipulationEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerManipulationEventArgsDescriptionMetadata()": "SeriesViewerManipulationEventArgsDescriptionMetadata()", + "SeriesViewerManipulationEventArgsDescriptionMetadata": "SeriesViewerManipulationEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesViewerScrollbarMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesViewerScrollbarMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesViewerSelectedSeriesItemsChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription()": "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription()", + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription": "SeriesViewerSelectedSeriesItemsChangedEventArgsDescription()", + "CurrentItems": "CurrentItems", + "NewItems": "NewItems", + "OldItems": "OldItems", + "Type": "Type" + } + } + ], + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata()": "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata()", + "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata": "SeriesViewerSelectedSeriesItemsChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesViewerSelectedSeriesItemsChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription()": "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription()", + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription": "SeriesViewerSelectedSeriesItemsChangingEventArgsDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata()": "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata()", + "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata": "SeriesViewerSelectedSeriesItemsChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SeriesViewerVerticalScrollbarPosition": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesViewerVerticalScrollbarPosition", + "k": "enum", + "s": "enums" + } + ], + "SeriesVisibleRangeMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SeriesVisibleRangeMode", + "k": "enum", + "s": "enums" + } + ], + "SeriesVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesVisualData", + "k": "class", + "s": "classes", + "m": { + "SeriesVisualData()": "SeriesVisualData()", + "SeriesVisualData": "SeriesVisualData()", + "CalloutShapes": "CalloutShapes", + "Layers": "Layers", + "MarkerShapes": "MarkerShapes", + "Name": "Name", + "Opacity": "Opacity", + "PixelHeight": "PixelHeight", + "PixelWidth": "PixelWidth", + "Pixels": "Pixels", + "PointerTooltips": "PointerTooltips", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Shapes": "Shapes", + "Type": "Type", + "Viewport": "Viewport" + } + } + ], + "SeriesVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SeriesVisualDataList", + "k": "class", + "s": "classes", + "m": { + "SeriesVisualDataList()": "SeriesVisualDataList()", + "SeriesVisualDataList": "SeriesVisualDataList()" + } + } + ], + "ShapeDataRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeDataRule", + "k": "class", + "s": "classes", + "m": { + "ShapeDataRule()": "ShapeDataRule()", + "ShapeDataRule": "ShapeDataRule()" + } + } + ], + "ShapeDataSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeDataSource", + "k": "class", + "s": "classes", + "m": { + "ShapeDataSource()": "ShapeDataSource()", + "ShapeDataSource": "ShapeDataSource()", + "Add(ShapefileRecord)": "Add(ShapefileRecord)", + "Add": "Add(ShapefileRecord)", + "Clear()": "Clear()", + "Clear": "Clear()", + "ComputedWorldRect": "ComputedWorldRect", + "Contains(ShapefileRecord)": "Contains(ShapefileRecord)", + "Contains": "Contains(ShapefileRecord)", + "CopyTo(ShapefileRecord[], int)": "CopyTo(ShapefileRecord[], int)", + "CopyTo": "CopyTo(ShapefileRecord[], int)", + "Count": "Count", + "DatabaseSource": "DatabaseSource", + "DeferImportCompleted": "DeferImportCompleted", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "GetLargestShapeBoundsForRecord(int)": "GetLargestShapeBoundsForRecord(int)", + "GetLargestShapeBoundsForRecord": "GetLargestShapeBoundsForRecord(int)", + "GetMaxLongitude(int, bool, double, double)": "GetMaxLongitude(int, bool, double, double)", + "GetMaxLongitude": "GetMaxLongitude(int, bool, double, double)", + "GetRecord(int)": "GetRecord(int)", + "GetRecord": "GetRecord(int)", + "GetRecordBounds(int)": "GetRecordBounds(int)", + "GetRecordBounds": "GetRecordBounds(int)", + "GetRecordFieldNames(int)": "GetRecordFieldNames(int)", + "GetRecordFieldNames": "GetRecordFieldNames(int)", + "GetRecordValue(int, string)": "GetRecordValue(int, string)", + "GetRecordValue": "GetRecordValue(int, string)", + "GetRecordValues(string)": "GetRecordValues(string)", + "GetRecordValues": "GetRecordValues(string)", + "GetRecordsCount()": "GetRecordsCount()", + "GetRecordsCount": "GetRecordsCount()", + "GetWorldBounds(bool)": "GetWorldBounds(bool)", + "GetWorldBounds": "GetWorldBounds(bool)", + "IndexOf(ShapefileRecord)": "IndexOf(ShapefileRecord)", + "IndexOf": "IndexOf(ShapefileRecord)", + "Insert(int, ShapefileRecord)": "Insert(int, ShapefileRecord)", + "Insert": "Insert(int, ShapefileRecord)", + "IsReadOnly": "IsReadOnly", + "IsValidGeoPoint(Point)": "IsValidGeoPoint(Point)", + "IsValidGeoPoint": "IsValidGeoPoint(Point)", + "this[int]": "this[int]", + "MaxLatitude": "MaxLatitude", + "MaxLongitude": "MaxLongitude", + "MinLatitude": "MinLatitude", + "MinLongitude": "MinLongitude", + "OnCollectionChanged(NotifyCollectionChangedEventArgs)": "OnCollectionChanged(NotifyCollectionChangedEventArgs)", + "OnCollectionChanged": "OnCollectionChanged(NotifyCollectionChangedEventArgs)", + "OnFilter(ShapeFilterRecordEventArgs)": "OnFilter(ShapeFilterRecordEventArgs)", + "OnFilter": "OnFilter(ShapeFilterRecordEventArgs)", + "OnImportCompleted(AsyncCompletedEventArgs)": "OnImportCompleted(AsyncCompletedEventArgs)", + "OnImportCompleted": "OnImportCompleted(AsyncCompletedEventArgs)", + "OnImportPending(AsyncCompletedEventArgs)": "OnImportPending(AsyncCompletedEventArgs)", + "OnImportPending": "OnImportPending(AsyncCompletedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Remove(ShapefileRecord)": "Remove(ShapefileRecord)", + "Remove": "Remove(ShapefileRecord)", + "RemoveAt(int)": "RemoveAt(int)", + "RemoveAt": "RemoveAt(int)", + "RemoveRecord(int)": "RemoveRecord(int)", + "RemoveRecord": "RemoveRecord(int)", + "SendImportCompleted()": "SendImportCompleted()", + "SendImportCompleted": "SendImportCompleted()", + "SetRecordValue(int, string, object)": "SetRecordValue(int, string, object)", + "SetRecordValue": "SetRecordValue(int, string, object)", + "SetRecordValues(string, object[])": "SetRecordValues(string, object[])", + "SetRecordValues": "SetRecordValues(string, object[])", + "SetWorldBounds(bool, Rect)": "SetWorldBounds(bool, Rect)", + "SetWorldBounds": "SetWorldBounds(bool, Rect)", + "ShapeHeader": "ShapeHeader", + "ShapeType": "ShapeType", + "ShapefileSource": "ShapefileSource", + "ShiftAllShapes(double, double)": "ShiftAllShapes(double, double)", + "ShiftAllShapes": "ShiftAllShapes(double, double)", + "ShiftShapes(int, double, double)": "ShiftShapes(int, double, double)", + "ShiftShapes": "ShiftShapes(int, double, double)", + "WorldRect": "WorldRect", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ShapeDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "ShapeDataSourceDescription()": "ShapeDataSourceDescription()", + "ShapeDataSourceDescription": "ShapeDataSourceDescription()", + "ComputedWorldRect": "ComputedWorldRect", + "DatabaseSource": "DatabaseSource", + "DeferImportCompleted": "DeferImportCompleted", + "FilterRef": "FilterRef", + "ImportCompletedRef": "ImportCompletedRef", + "ImportPendingRef": "ImportPendingRef", + "ShapefileSource": "ShapefileSource", + "Type": "Type", + "WorldRect": "WorldRect" + } + } + ], + "ShapeDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ShapeDataSourceDescriptionMetadata()": "ShapeDataSourceDescriptionMetadata()", + "ShapeDataSourceDescriptionMetadata": "ShapeDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapeDataSourceDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeDataSourceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ShapeDataSourceDescriptionModule()": "ShapeDataSourceDescriptionModule()", + "ShapeDataSourceDescriptionModule": "ShapeDataSourceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapefileRecord": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapefileRecord", + "k": "class", + "s": "classes", + "m": { + "ShapefileRecord()": "ShapefileRecord()", + "ShapefileRecord": "ShapefileRecord()", + "Bounds": "Bounds", + "Fields": "Fields", + "FieldsNames": "FieldsNames", + "FieldsTypes": "FieldsTypes", + "GetFieldValue(string)": "GetFieldValue(string)", + "GetFieldValue": "GetFieldValue(string)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Points": "Points", + "SetFieldValue(string, object)": "SetFieldValue(string, object)", + "SetFieldValue": "SetFieldValue(string, object)", + "ShapeType": "ShapeType", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ShapefileRecordDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapefileRecordDescription", + "k": "class", + "s": "classes", + "m": { + "ShapefileRecordDescription()": "ShapefileRecordDescription()", + "ShapefileRecordDescription": "ShapefileRecordDescription()", + "Bounds": "Bounds", + "FieldValuesRef": "FieldValuesRef", + "Type": "Type" + } + } + ], + "ShapefileRecordDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapefileRecordDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ShapefileRecordDescriptionMetadata()": "ShapefileRecordDescriptionMetadata()", + "ShapefileRecordDescriptionMetadata": "ShapefileRecordDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapeFilterRecordEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeFilterRecordEventArgs", + "k": "class", + "s": "classes", + "m": { + "ShapeFilterRecordEventArgs()": "ShapeFilterRecordEventArgs()", + "ShapeFilterRecordEventArgs": "ShapeFilterRecordEventArgs()", + "Record": "Record", + "ShouldInclude": "ShouldInclude", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ShapeFilterRecordEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeFilterRecordEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ShapeFilterRecordEventArgsDescription()": "ShapeFilterRecordEventArgsDescription()", + "ShapeFilterRecordEventArgsDescription": "ShapeFilterRecordEventArgsDescription()", + "Record": "Record", + "ShouldInclude": "ShouldInclude", + "Type": "Type" + } + } + ], + "ShapeFilterRecordEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeFilterRecordEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ShapeFilterRecordEventArgsDescriptionMetadata()": "ShapeFilterRecordEventArgsDescriptionMetadata()", + "ShapeFilterRecordEventArgsDescriptionMetadata": "ShapeFilterRecordEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapeItemSearchMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ShapeItemSearchMode", + "k": "enum", + "s": "enums" + } + ], + "ShapeSeriesBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ShapeSeriesBase", + "k": "class", + "s": "classes", + "m": { + "ActualItemSearchMode": "ActualItemSearchMode", + "ActualItemSearchModeProperty": "ActualItemSearchModeProperty", + "FillMemberPath": "FillMemberPath", + "FillMemberPathProperty": "FillMemberPathProperty", + "FillScale": "FillScale", + "FillScaleProperty": "FillScaleProperty", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "FillScaleUseGlobalValuesProperty": "FillScaleUseGlobalValuesProperty", + "GetShapeItems(int, int)": "GetShapeItems(int, int)", + "GetShapeItems": "GetShapeItems(int, int)", + "HighlightedShapeMemberPath": "HighlightedShapeMemberPath", + "HighlightedShapeMemberPathProperty": "HighlightedShapeMemberPathProperty", + "IsCustomShapeMarkerStyleAllowed": "IsCustomShapeMarkerStyleAllowed", + "IsCustomShapeMarkerStyleAllowedProperty": "IsCustomShapeMarkerStyleAllowedProperty", + "IsCustomShapeStyleAllowed": "IsCustomShapeStyleAllowed", + "IsCustomShapeStyleAllowedProperty": "IsCustomShapeStyleAllowedProperty", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchModeProperty": "ItemSearchModeProperty", + "ItemSearchPointsThreshold": "ItemSearchPointsThreshold", + "ItemSearchPointsThresholdProperty": "ItemSearchPointsThresholdProperty", + "ItemSearchThreshold": "ItemSearchThreshold", + "ItemSearchThresholdProperty": "ItemSearchThresholdProperty", + "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)": "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)", + "OnAssigningShapeMarkerStyle": "OnAssigningShapeMarkerStyle(AssigningShapeMarkerStyleEventArgs)", + "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)": "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)", + "OnAssigningShapeStyle": "OnAssigningShapeStyle(AssigningShapeStyleEventArgs)", + "ShapeFilterResolution": "ShapeFilterResolution", + "ShapeFilterResolutionProperty": "ShapeFilterResolutionProperty", + "ShapeFilterResolutionPropertyName": "ShapeFilterResolutionPropertyName", + "ShapeMemberPath": "ShapeMemberPath", + "ShapeMemberPathProperty": "ShapeMemberPathProperty", + "ShapeMemberPathPropertyName": "ShapeMemberPathPropertyName", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "ShapeSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "ShapeSeriesBaseDescription()": "ShapeSeriesBaseDescription()", + "ShapeSeriesBaseDescription": "ShapeSeriesBaseDescription()", + "ActualItemSearchMode": "ActualItemSearchMode", + "AssigningShapeMarkerStyleRef": "AssigningShapeMarkerStyleRef", + "AssigningShapeStyleRef": "AssigningShapeStyleRef", + "FillMemberPath": "FillMemberPath", + "FillScale": "FillScale", + "FillScaleUseGlobalValues": "FillScaleUseGlobalValues", + "HighlightedShapeMemberPath": "HighlightedShapeMemberPath", + "IsCustomShapeMarkerStyleAllowed": "IsCustomShapeMarkerStyleAllowed", + "IsCustomShapeStyleAllowed": "IsCustomShapeStyleAllowed", + "ItemSearchMode": "ItemSearchMode", + "ItemSearchPointsThreshold": "ItemSearchPointsThreshold", + "ItemSearchThreshold": "ItemSearchThreshold", + "ShapeFilterResolution": "ShapeFilterResolution", + "ShapeMemberPath": "ShapeMemberPath", + "StyleShapeRef": "StyleShapeRef", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "ShapeSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ShapeSeriesBaseDescriptionMetadata()": "ShapeSeriesBaseDescriptionMetadata()", + "ShapeSeriesBaseDescriptionMetadata": "ShapeSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ShapeTags": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ShapeTags", + "k": "class", + "s": "classes", + "m": { + "ShapeTags()": "ShapeTags()", + "ShapeTags": "ShapeTags()" + } + } + ], + "ShapeType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ShapeType", + "k": "enum", + "s": "enums" + } + ], + "SimpleCategorySeriesRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SimpleCategorySeriesRule", + "k": "class", + "s": "classes", + "m": { + "SimpleCategorySeriesRule()": "SimpleCategorySeriesRule()", + "SimpleCategorySeriesRule": "SimpleCategorySeriesRule()", + "DistinctCheckThreshold": "DistinctCheckThreshold", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority", + "UseColumnThreshold": "UseColumnThreshold" + } + } + ], + "SimpleDefaultTooltipDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SimpleDefaultTooltipDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SimpleDefaultTooltipDescriptionMetadata()": "SimpleDefaultTooltipDescriptionMetadata()", + "SimpleDefaultTooltipDescriptionMetadata": "SimpleDefaultTooltipDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SimpleDefaultTooltipExtendedDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SimpleDefaultTooltipExtendedDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SimpleDefaultTooltipExtendedDescriptionMetadata()": "SimpleDefaultTooltipExtendedDescriptionMetadata()", + "SimpleDefaultTooltipExtendedDescriptionMetadata": "SimpleDefaultTooltipExtendedDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SimpleFinancialPriceSeriesRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SimpleFinancialPriceSeriesRule", + "k": "class", + "s": "classes", + "m": { + "SimpleFinancialPriceSeriesRule()": "SimpleFinancialPriceSeriesRule()", + "SimpleFinancialPriceSeriesRule": "SimpleFinancialPriceSeriesRule()", + "DistinctCheckThreshold": "DistinctCheckThreshold", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "SimpleGaugeRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SimpleGaugeRule", + "k": "class", + "s": "classes", + "m": { + "SimpleGaugeRule()": "SimpleGaugeRule()", + "SimpleGaugeRule": "SimpleGaugeRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "SimplePieSeriesRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SimplePieSeriesRule", + "k": "class", + "s": "classes", + "m": { + "SimplePieSeriesRule()": "SimplePieSeriesRule()", + "SimplePieSeriesRule": "SimplePieSeriesRule()", + "DistinctCheckThreshold": "DistinctCheckThreshold", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority", + "UseColumnThreshold": "UseColumnThreshold" + } + } + ], + "SimpleScatterSeriesRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SimpleScatterSeriesRule", + "k": "class", + "s": "classes", + "m": { + "SimpleScatterSeriesRule()": "SimpleScatterSeriesRule()", + "SimpleScatterSeriesRule": "SimpleScatterSeriesRule()", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "MonotonicCheckAmount": "MonotonicCheckAmount", + "Priority": "Priority" + } + } + ], + "SizeData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SizeData", + "k": "class", + "s": "classes", + "m": { + "SizeData(double, double)": "SizeData(double, double)", + "SizeData": "SizeData(double, double)", + "Empty": "Empty", + "Height": "Height", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Width": "Width" + } + } + ], + "SizeDefinitionCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SizeDefinitionCollection", + "k": "class", + "s": "classes", + "m": { + "SizeDefinitionCollection()": "SizeDefinitionCollection()", + "SizeDefinitionCollection": "SizeDefinitionCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SizeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SizeDescription", + "k": "class", + "s": "classes", + "m": { + "SizeDescription()": "SizeDescription()", + "SizeDescription": "SizeDescription()", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "Height": "Height", + "Width": "Width" + } + } + ], + "SizeScale": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SizeScale", + "k": "class", + "s": "classes", + "m": { + "SizeScale()": "SizeScale()", + "SizeScale": "SizeScale()", + "GetCurrentGlobalMaximum()": "GetCurrentGlobalMaximum()", + "GetCurrentGlobalMaximum": "GetCurrentGlobalMaximum()", + "GetCurrentGlobalMinimum()": "GetCurrentGlobalMinimum()", + "GetCurrentGlobalMinimum": "GetCurrentGlobalMinimum()", + "GlobalMaximum": "GlobalMaximum", + "GlobalMaximumProperty": "GlobalMaximumProperty", + "GlobalMinimum": "GlobalMinimum", + "GlobalMinimumProperty": "GlobalMinimumProperty", + "IsLogarithmic": "IsLogarithmic", + "IsLogarithmicProperty": "IsLogarithmicProperty", + "LogarithmBase": "LogarithmBase", + "LogarithmBaseProperty": "LogarithmBaseProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SizeScaleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SizeScaleDescription", + "k": "class", + "s": "classes", + "m": { + "SizeScaleDescription()": "SizeScaleDescription()", + "SizeScaleDescription": "SizeScaleDescription()", + "GlobalMaximum": "GlobalMaximum", + "GlobalMinimum": "GlobalMinimum", + "IsLogarithmic": "IsLogarithmic", + "LogarithmBase": "LogarithmBase", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type" + } + } + ], + "SizeScaleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SizeScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SizeScaleDescriptionMetadata()": "SizeScaleDescriptionMetadata()", + "SizeScaleDescriptionMetadata": "SizeScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SizeScaleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SizeScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SizeScaleDescriptionModule()": "SizeScaleDescriptionModule()", + "SizeScaleDescriptionModule": "SizeScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SkiaSharpRenderer": [ + { + "p": "Infragistics.WinUI.SkiaSharp", + "u": "/api/winui/Infragistics.WinUI.SkiaSharp/latest/classes/SkiaSharpRenderer", + "k": "class", + "s": "classes", + "m": { + "Use()": "Use()", + "Use": "Use()", + "UseGPU()": "UseGPU()", + "UseGPU": "UseGPU()" + } + } + ], + "SkipInitializeFieldAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/SkipInitializeFieldAttribute", + "k": "class", + "s": "classes", + "m": { + "SkipInitializeFieldAttribute()": "SkipInitializeFieldAttribute()", + "SkipInitializeFieldAttribute": "SkipInitializeFieldAttribute()" + } + } + ], + "SliceClickEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SliceClickEventArgs", + "k": "class", + "s": "classes", + "m": { + "Bounds": "Bounds", + "DataContext": "DataContext", + "EndAngle": "EndAngle", + "Fill": "Fill", + "Index": "Index", + "IsExploded": "IsExploded", + "IsOthersSlice": "IsOthersSlice", + "IsSelected": "IsSelected", + "Origin": "Origin", + "Outline": "Outline", + "Radius": "Radius", + "StartAngle": "StartAngle", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SliceClickEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SliceClickEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SliceClickEventArgsDescription()": "SliceClickEventArgsDescription()", + "SliceClickEventArgsDescription": "SliceClickEventArgsDescription()", + "IsExploded": "IsExploded", + "IsSelected": "IsSelected", + "OriginalEventRef": "OriginalEventRef", + "Type": "Type" + } + } + ], + "SliceClickEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SliceClickEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SliceClickEventArgsDescriptionMetadata()": "SliceClickEventArgsDescriptionMetadata()", + "SliceClickEventArgsDescriptionMetadata": "SliceClickEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SliceEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SliceEventArgs", + "k": "class", + "s": "classes", + "m": { + "Bounds": "Bounds", + "DataContext": "DataContext", + "EndAngle": "EndAngle", + "Fill": "Fill", + "Index": "Index", + "IsExploded": "IsExploded", + "IsOthersSlice": "IsOthersSlice", + "IsSelected": "IsSelected", + "Origin": "Origin", + "Outline": "Outline", + "Position": "Position", + "Radius": "Radius", + "StartAngle": "StartAngle", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SliceEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SliceEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SliceEventArgsDescription()": "SliceEventArgsDescription()", + "SliceEventArgsDescription": "SliceEventArgsDescription()", + "IsExploded": "IsExploded", + "IsSelected": "IsSelected", + "OriginalEventRef": "OriginalEventRef", + "Position": "Position", + "Type": "Type" + } + } + ], + "SliceEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SliceEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SliceEventArgsDescriptionMetadata()": "SliceEventArgsDescriptionMetadata()", + "SliceEventArgsDescriptionMetadata": "SliceEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SliceSelectionMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SliceSelectionMode", + "k": "enum", + "s": "enums" + } + ], + "SliceVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SliceVisualData", + "k": "class", + "s": "classes", + "m": { + "SliceVisualData()": "SliceVisualData()", + "SliceVisualData": "SliceVisualData()", + "BackgroundPath": "BackgroundPath", + "EndAngle": "EndAngle", + "ExplodedOrigin": "ExplodedOrigin", + "Index": "Index", + "IsExploded": "IsExploded", + "IsSelected": "IsSelected", + "LabelVisualData": "LabelVisualData", + "Origin": "Origin", + "Outline": "Outline", + "PieSlice": "PieSlice", + "Radius": "Radius", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "StartAngle": "StartAngle", + "Visibility": "Visibility" + } + } + ], + "SliceVisualDataList": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SliceVisualDataList", + "k": "class", + "s": "classes", + "m": { + "SliceVisualDataList()": "SliceVisualDataList()", + "SliceVisualDataList": "SliceVisualDataList()" + } + } + ], + "SlowStochasticOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SlowStochasticOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "SlowStochasticOscillatorIndicator()": "SlowStochasticOscillatorIndicator()", + "SlowStochasticOscillatorIndicator": "SlowStochasticOscillatorIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "SlowStochasticOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SlowStochasticOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "SlowStochasticOscillatorIndicatorDescription()": "SlowStochasticOscillatorIndicatorDescription()", + "SlowStochasticOscillatorIndicatorDescription": "SlowStochasticOscillatorIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "SlowStochasticOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SlowStochasticOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SlowStochasticOscillatorIndicatorDescriptionMetadata()": "SlowStochasticOscillatorIndicatorDescriptionMetadata()", + "SlowStochasticOscillatorIndicatorDescriptionMetadata": "SlowStochasticOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SlowStochasticOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SlowStochasticOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SlowStochasticOscillatorIndicatorDescriptionModule()": "SlowStochasticOscillatorIndicatorDescriptionModule()", + "SlowStochasticOscillatorIndicatorDescriptionModule": "SlowStochasticOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SolidBrushAppearanceData": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SolidBrushAppearanceData", + "k": "class", + "s": "classes", + "m": { + "SolidBrushAppearanceData()": "SolidBrushAppearanceData()", + "SolidBrushAppearanceData": "SolidBrushAppearanceData()", + "ColorValue": "ColorValue", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "Type": "Type" + } + } + ], + "SolidColorBrush": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/SolidColorBrush", + "k": "class", + "s": "classes", + "m": { + "SolidColorBrush()": "SolidColorBrush()", + "SolidColorBrush": "SolidColorBrush()", + "SolidColorBrush(Color)": "SolidColorBrush(Color)", + "Color": "Color" + } + } + ], + "SortDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SortDescription", + "k": "class", + "s": "classes", + "m": { + "SortDescription()": "SortDescription()", + "SortDescription": "SortDescription()", + "Create(string, ListSortDirection, string)": "Create(string, ListSortDirection, string)", + "Create": "Create(string, ListSortDirection, string)", + "Direction": "Direction", + "DisplayName": "DisplayName", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "PropertyName": "PropertyName" + } + } + ], + "SortDescriptionCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SortDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "SortDescriptionCollection()": "SortDescriptionCollection()", + "SortDescriptionCollection": "SortDescriptionCollection()", + "OnSelfChanged(NotifyCollectionChangedEventArgs)": "OnSelfChanged(NotifyCollectionChangedEventArgs)", + "OnSelfChanged": "OnSelfChanged(NotifyCollectionChangedEventArgs)" + } + } + ], + "SortIndicatorRenderCompletedEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SortIndicatorRenderCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "SortIndicatorRenderCompletedEventArgs()": "SortIndicatorRenderCompletedEventArgs()", + "SortIndicatorRenderCompletedEventArgs": "SortIndicatorRenderCompletedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SortIndicatorRenderCompletedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SortIndicatorRenderCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SortIndicatorRenderCompletedEventArgsDescription()": "SortIndicatorRenderCompletedEventArgsDescription()", + "SortIndicatorRenderCompletedEventArgsDescription": "SortIndicatorRenderCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "SortIndicatorRenderCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SortIndicatorRenderCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SortIndicatorRenderCompletedEventArgsDescriptionMetadata()": "SortIndicatorRenderCompletedEventArgsDescriptionMetadata()", + "SortIndicatorRenderCompletedEventArgsDescriptionMetadata": "SortIndicatorRenderCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SortIndicatorStyle": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/SortIndicatorStyle", + "k": "enum", + "s": "enums" + } + ], + "SortMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/SortMode", + "k": "enum", + "s": "enums" + } + ], + "SparklineCoreDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SparklineCoreDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SparklineCoreDescriptionModule()": "SparklineCoreDescriptionModule()", + "SparklineCoreDescriptionModule": "SparklineCoreDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SparklineDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SparklineDescription", + "k": "class", + "s": "classes", + "m": { + "SparklineDescription()": "SparklineDescription()", + "SparklineDescription": "SparklineDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "Background": "Background", + "Brush": "Brush", + "DataSourceRef": "DataSourceRef", + "DisplayNormalRangeInFront": "DisplayNormalRangeInFront", + "DisplayType": "DisplayType", + "FirstMarkerBrush": "FirstMarkerBrush", + "FirstMarkerSize": "FirstMarkerSize", + "FirstMarkerVisibility": "FirstMarkerVisibility", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "FormatLabelRef": "FormatLabelRef", + "Height": "Height", + "HighMarkerBrush": "HighMarkerBrush", + "HighMarkerSize": "HighMarkerSize", + "HighMarkerVisibility": "HighMarkerVisibility", + "HorizontalAxisBrush": "HorizontalAxisBrush", + "HorizontalAxisLabelRef": "HorizontalAxisLabelRef", + "HorizontalAxisVisibility": "HorizontalAxisVisibility", + "HorizontalLabelFormat": "HorizontalLabelFormat", + "HorizontalLabelFormatSpecifiers": "HorizontalLabelFormatSpecifiers", + "LabelMemberPath": "LabelMemberPath", + "LastMarkerBrush": "LastMarkerBrush", + "LastMarkerSize": "LastMarkerSize", + "LastMarkerVisibility": "LastMarkerVisibility", + "LineThickness": "LineThickness", + "LowMarkerBrush": "LowMarkerBrush", + "LowMarkerSize": "LowMarkerSize", + "LowMarkerVisibility": "LowMarkerVisibility", + "MarkerBrush": "MarkerBrush", + "MarkerSize": "MarkerSize", + "MarkerVisibility": "MarkerVisibility", + "Maximum": "Maximum", + "Minimum": "Minimum", + "NegativeBrush": "NegativeBrush", + "NegativeMarkerBrush": "NegativeMarkerBrush", + "NegativeMarkerSize": "NegativeMarkerSize", + "NegativeMarkerVisibility": "NegativeMarkerVisibility", + "NormalRangeFill": "NormalRangeFill", + "NormalRangeMaximum": "NormalRangeMaximum", + "NormalRangeMinimum": "NormalRangeMinimum", + "NormalRangeVisibility": "NormalRangeVisibility", + "PixelScalingRatio": "PixelScalingRatio", + "TextColor": "TextColor", + "TrendLineBrush": "TrendLineBrush", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineThickness": "TrendLineThickness", + "TrendLineType": "TrendLineType", + "Type": "Type", + "UnknownValuePlotting": "UnknownValuePlotting", + "ValueMemberPath": "ValueMemberPath", + "VerticalAxisBrush": "VerticalAxisBrush", + "VerticalAxisLabelRef": "VerticalAxisLabelRef", + "VerticalAxisVisibility": "VerticalAxisVisibility", + "VerticalLabelFormat": "VerticalLabelFormat", + "VerticalLabelFormatSpecifiers": "VerticalLabelFormatSpecifiers", + "Width": "Width" + } + } + ], + "SparklineDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SparklineDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SparklineDescriptionMetadata()": "SparklineDescriptionMetadata()", + "SparklineDescriptionMetadata": "SparklineDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SparklineDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SparklineDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SparklineDescriptionModule()": "SparklineDescriptionModule()", + "SparklineDescriptionModule": "SparklineDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SparklineDisplayType": [ + { + "p": "Infragistics.WinUI.Sparkline", + "u": "/api/winui/Infragistics.WinUI.Sparkline/latest/enums/SparklineDisplayType", + "k": "enum", + "s": "enums" + } + ], + "SparklineFormatLabelEventArgs": [ + { + "p": "Infragistics.WinUI.Sparkline", + "u": "/api/winui/Infragistics.WinUI.Sparkline/latest/classes/SparklineFormatLabelEventArgs", + "k": "class", + "s": "classes", + "m": { + "SparklineFormatLabelEventArgs()": "SparklineFormatLabelEventArgs()", + "SparklineFormatLabelEventArgs": "SparklineFormatLabelEventArgs()", + "Label": "Label", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "SplineAreaFragmentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineAreaFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "SplineAreaFragmentDescription()": "SplineAreaFragmentDescription()", + "SplineAreaFragmentDescription": "SplineAreaFragmentDescription()", + "Type": "Type" + } + } + ], + "SplineAreaFragmentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineAreaFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineAreaFragmentDescriptionMetadata()": "SplineAreaFragmentDescriptionMetadata()", + "SplineAreaFragmentDescriptionMetadata": "SplineAreaFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineAreaFragmentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineAreaFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SplineAreaFragmentDescriptionModule()": "SplineAreaFragmentDescriptionModule()", + "SplineAreaFragmentDescriptionModule": "SplineAreaFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SplineAreaSeries", + "k": "class", + "s": "classes", + "m": { + "SplineAreaSeries()": "SplineAreaSeries()", + "SplineAreaSeries": "SplineAreaSeries()" + } + } + ], + "SplineAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "SplineAreaSeriesDescription()": "SplineAreaSeriesDescription()", + "SplineAreaSeriesDescription": "SplineAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "SplineAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineAreaSeriesDescriptionMetadata()": "SplineAreaSeriesDescriptionMetadata()", + "SplineAreaSeriesDescriptionMetadata": "SplineAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SplineAreaSeriesDescriptionModule()": "SplineAreaSeriesDescriptionModule()", + "SplineAreaSeriesDescriptionModule": "SplineAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineFragmentBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineFragmentBaseDescription", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentBaseDescription()": "SplineFragmentBaseDescription()", + "SplineFragmentBaseDescription": "SplineFragmentBaseDescription()", + "Type": "Type" + } + } + ], + "SplineFragmentBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineFragmentBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentBaseDescriptionMetadata()": "SplineFragmentBaseDescriptionMetadata()", + "SplineFragmentBaseDescriptionMetadata": "SplineFragmentBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineFragmentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineFragmentDescription", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentDescription()": "SplineFragmentDescription()", + "SplineFragmentDescription": "SplineFragmentDescription()", + "Type": "Type" + } + } + ], + "SplineFragmentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineFragmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentDescriptionMetadata()": "SplineFragmentDescriptionMetadata()", + "SplineFragmentDescriptionMetadata": "SplineFragmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineFragmentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineFragmentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SplineFragmentDescriptionModule()": "SplineFragmentDescriptionModule()", + "SplineFragmentDescriptionModule": "SplineFragmentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SplineSeries", + "k": "class", + "s": "classes", + "m": { + "SplineSeries()": "SplineSeries()", + "SplineSeries": "SplineSeries()" + } + } + ], + "SplineSeriesBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SplineSeriesBase", + "k": "class", + "s": "classes", + "m": { + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty", + "SplineType": "SplineType", + "SplineTypeProperty": "SplineTypeProperty" + } + } + ], + "SplineSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesBaseDescription()": "SplineSeriesBaseDescription()", + "SplineSeriesBaseDescription": "SplineSeriesBaseDescription()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "SplineType": "SplineType", + "Type": "Type" + } + } + ], + "SplineSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesBaseDescriptionMetadata()": "SplineSeriesBaseDescriptionMetadata()", + "SplineSeriesBaseDescriptionMetadata": "SplineSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesDescription()": "SplineSeriesDescription()", + "SplineSeriesDescription": "SplineSeriesDescription()", + "Type": "Type" + } + } + ], + "SplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesDescriptionMetadata()": "SplineSeriesDescriptionMetadata()", + "SplineSeriesDescriptionMetadata": "SplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SplineSeriesDescriptionModule()": "SplineSeriesDescriptionModule()", + "SplineSeriesDescriptionModule": "SplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SplineType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/SplineType", + "k": "enum", + "s": "enums" + } + ], + "Stacked100AreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Stacked100AreaSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100AreaSeries()": "Stacked100AreaSeries()", + "Stacked100AreaSeries": "Stacked100AreaSeries()" + } + } + ], + "Stacked100AreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100AreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100AreaSeriesDescription()": "Stacked100AreaSeriesDescription()", + "Stacked100AreaSeriesDescription": "Stacked100AreaSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100AreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100AreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100AreaSeriesDescriptionMetadata()": "Stacked100AreaSeriesDescriptionMetadata()", + "Stacked100AreaSeriesDescriptionMetadata": "Stacked100AreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100AreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100AreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100AreaSeriesDescriptionModule()": "Stacked100AreaSeriesDescriptionModule()", + "Stacked100AreaSeriesDescriptionModule": "Stacked100AreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100BarSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Stacked100BarSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100BarSeries()": "Stacked100BarSeries()", + "Stacked100BarSeries": "Stacked100BarSeries()" + } + } + ], + "Stacked100BarSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100BarSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100BarSeriesDescription()": "Stacked100BarSeriesDescription()", + "Stacked100BarSeriesDescription": "Stacked100BarSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100BarSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100BarSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100BarSeriesDescriptionMetadata()": "Stacked100BarSeriesDescriptionMetadata()", + "Stacked100BarSeriesDescriptionMetadata": "Stacked100BarSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100BarSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100BarSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100BarSeriesDescriptionModule()": "Stacked100BarSeriesDescriptionModule()", + "Stacked100BarSeriesDescriptionModule": "Stacked100BarSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100ColumnSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Stacked100ColumnSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100ColumnSeries()": "Stacked100ColumnSeries()", + "Stacked100ColumnSeries": "Stacked100ColumnSeries()" + } + } + ], + "Stacked100ColumnSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100ColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100ColumnSeriesDescription()": "Stacked100ColumnSeriesDescription()", + "Stacked100ColumnSeriesDescription": "Stacked100ColumnSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100ColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100ColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100ColumnSeriesDescriptionMetadata()": "Stacked100ColumnSeriesDescriptionMetadata()", + "Stacked100ColumnSeriesDescriptionMetadata": "Stacked100ColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100ColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100ColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100ColumnSeriesDescriptionModule()": "Stacked100ColumnSeriesDescriptionModule()", + "Stacked100ColumnSeriesDescriptionModule": "Stacked100ColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100LineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Stacked100LineSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100LineSeries()": "Stacked100LineSeries()", + "Stacked100LineSeries": "Stacked100LineSeries()" + } + } + ], + "Stacked100LineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100LineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100LineSeriesDescription()": "Stacked100LineSeriesDescription()", + "Stacked100LineSeriesDescription": "Stacked100LineSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100LineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100LineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100LineSeriesDescriptionMetadata()": "Stacked100LineSeriesDescriptionMetadata()", + "Stacked100LineSeriesDescriptionMetadata": "Stacked100LineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100LineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100LineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100LineSeriesDescriptionModule()": "Stacked100LineSeriesDescriptionModule()", + "Stacked100LineSeriesDescriptionModule": "Stacked100LineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100SplineAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Stacked100SplineAreaSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineAreaSeries()": "Stacked100SplineAreaSeries()", + "Stacked100SplineAreaSeries": "Stacked100SplineAreaSeries()" + } + } + ], + "Stacked100SplineAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100SplineAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineAreaSeriesDescription()": "Stacked100SplineAreaSeriesDescription()", + "Stacked100SplineAreaSeriesDescription": "Stacked100SplineAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100SplineAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100SplineAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineAreaSeriesDescriptionMetadata()": "Stacked100SplineAreaSeriesDescriptionMetadata()", + "Stacked100SplineAreaSeriesDescriptionMetadata": "Stacked100SplineAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100SplineAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100SplineAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineAreaSeriesDescriptionModule()": "Stacked100SplineAreaSeriesDescriptionModule()", + "Stacked100SplineAreaSeriesDescriptionModule": "Stacked100SplineAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100SplineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/Stacked100SplineSeries", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineSeries()": "Stacked100SplineSeries()", + "Stacked100SplineSeries": "Stacked100SplineSeries()" + } + } + ], + "Stacked100SplineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100SplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineSeriesDescription()": "Stacked100SplineSeriesDescription()", + "Stacked100SplineSeriesDescription": "Stacked100SplineSeriesDescription()", + "Type": "Type" + } + } + ], + "Stacked100SplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100SplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineSeriesDescriptionMetadata()": "Stacked100SplineSeriesDescriptionMetadata()", + "Stacked100SplineSeriesDescriptionMetadata": "Stacked100SplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Stacked100SplineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Stacked100SplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "Stacked100SplineSeriesDescriptionModule()": "Stacked100SplineSeriesDescriptionModule()", + "Stacked100SplineSeriesDescriptionModule": "Stacked100SplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedAreaSeries", + "k": "class", + "s": "classes", + "m": { + "StackedAreaSeries()": "StackedAreaSeries()", + "StackedAreaSeries": "StackedAreaSeries()" + } + } + ], + "StackedAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedAreaSeriesDescription()": "StackedAreaSeriesDescription()", + "StackedAreaSeriesDescription": "StackedAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "StackedAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedAreaSeriesDescriptionMetadata()": "StackedAreaSeriesDescriptionMetadata()", + "StackedAreaSeriesDescriptionMetadata": "StackedAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedAreaSeriesDescriptionModule()": "StackedAreaSeriesDescriptionModule()", + "StackedAreaSeriesDescriptionModule": "StackedAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedBarSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedBarSeries", + "k": "class", + "s": "classes", + "m": { + "StackedBarSeries()": "StackedBarSeries()", + "StackedBarSeries": "StackedBarSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "StackedBarSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedBarSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedBarSeriesDescription()": "StackedBarSeriesDescription()", + "StackedBarSeriesDescription": "StackedBarSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "StackedBarSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedBarSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedBarSeriesDescriptionMetadata()": "StackedBarSeriesDescriptionMetadata()", + "StackedBarSeriesDescriptionMetadata": "StackedBarSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedBarSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedBarSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedBarSeriesDescriptionModule()": "StackedBarSeriesDescriptionModule()", + "StackedBarSeriesDescriptionModule": "StackedBarSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedColumnSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedColumnSeries", + "k": "class", + "s": "classes", + "m": { + "StackedColumnSeries()": "StackedColumnSeries()", + "StackedColumnSeries": "StackedColumnSeries()", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "StackedColumnSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedColumnSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedColumnSeriesDescription()": "StackedColumnSeriesDescription()", + "StackedColumnSeriesDescription": "StackedColumnSeriesDescription()", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "StackedColumnSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedColumnSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedColumnSeriesDescriptionMetadata()": "StackedColumnSeriesDescriptionMetadata()", + "StackedColumnSeriesDescriptionMetadata": "StackedColumnSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedColumnSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedColumnSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedColumnSeriesDescriptionModule()": "StackedColumnSeriesDescriptionModule()", + "StackedColumnSeriesDescriptionModule": "StackedColumnSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedFragmentSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedFragmentSeries", + "k": "class", + "s": "classes", + "m": { + "StackedFragmentSeries()": "StackedFragmentSeries()", + "StackedFragmentSeries": "StackedFragmentSeries()", + "ActualAreaFillOpacity": "ActualAreaFillOpacity", + "ActualAreaFillOpacityProperty": "ActualAreaFillOpacityProperty", + "ActualBrush": "ActualBrush", + "ActualBrushProperty": "ActualBrushProperty", + "ActualDataLegendGroup": "ActualDataLegendGroup", + "ActualDataLegendGroupProperty": "ActualDataLegendGroupProperty", + "ActualHighlightedValuesDataLegendGroup": "ActualHighlightedValuesDataLegendGroup", + "ActualHighlightedValuesDataLegendGroupProperty": "ActualHighlightedValuesDataLegendGroupProperty", + "ActualHighlightedValuesDisplayMode": "ActualHighlightedValuesDisplayMode", + "ActualHighlightedValuesDisplayModeProperty": "ActualHighlightedValuesDisplayModeProperty", + "ActualHighlightingFadeOpacity": "ActualHighlightingFadeOpacity", + "ActualHighlightingFadeOpacityProperty": "ActualHighlightingFadeOpacityProperty", + "ActualIsSplineShapePartOfRange": "ActualIsSplineShapePartOfRange", + "ActualIsSplineShapePartOfRangeProperty": "ActualIsSplineShapePartOfRangeProperty", + "ActualIsTransitionInEnabled": "ActualIsTransitionInEnabled", + "ActualIsTransitionInEnabledProperty": "ActualIsTransitionInEnabledProperty", + "ActualLegendItemBadgeMode": "ActualLegendItemBadgeMode", + "ActualLegendItemBadgeModeProperty": "ActualLegendItemBadgeModeProperty", + "ActualLegendItemBadgeShape": "ActualLegendItemBadgeShape", + "ActualLegendItemBadgeShapeProperty": "ActualLegendItemBadgeShapeProperty", + "ActualLegendItemVisibility": "ActualLegendItemVisibility", + "ActualLegendItemVisibilityProperty": "ActualLegendItemVisibilityProperty", + "ActualLineCap": "ActualLineCap", + "ActualLineCapProperty": "ActualLineCapProperty", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerBrushProperty": "ActualMarkerBrushProperty", + "ActualMarkerFillMode": "ActualMarkerFillMode", + "ActualMarkerFillModeProperty": "ActualMarkerFillModeProperty", + "ActualMarkerFillOpacity": "ActualMarkerFillOpacity", + "ActualMarkerFillOpacityProperty": "ActualMarkerFillOpacityProperty", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineMode": "ActualMarkerOutlineMode", + "ActualMarkerOutlineModeProperty": "ActualMarkerOutlineModeProperty", + "ActualMarkerOutlineProperty": "ActualMarkerOutlineProperty", + "ActualMarkerThickness": "ActualMarkerThickness", + "ActualMarkerThicknessProperty": "ActualMarkerThicknessProperty", + "ActualMarkerType": "ActualMarkerType", + "ActualMarkerTypeProperty": "ActualMarkerTypeProperty", + "ActualOpacity": "ActualOpacity", + "ActualOpacityProperty": "ActualOpacityProperty", + "ActualOutline": "ActualOutline", + "ActualOutlineMode": "ActualOutlineMode", + "ActualOutlineModeProperty": "ActualOutlineModeProperty", + "ActualOutlineProperty": "ActualOutlineProperty", + "ActualRadiusX": "ActualRadiusX", + "ActualRadiusXProperty": "ActualRadiusXProperty", + "ActualRadiusY": "ActualRadiusY", + "ActualRadiusYProperty": "ActualRadiusYProperty", + "ActualShowDefaultTooltip": "ActualShowDefaultTooltip", + "ActualShowDefaultTooltipProperty": "ActualShowDefaultTooltipProperty", + "ActualThickness": "ActualThickness", + "ActualThicknessProperty": "ActualThicknessProperty", + "ActualTransitionDuration": "ActualTransitionDuration", + "ActualTransitionDurationProperty": "ActualTransitionDurationProperty", + "ActualTransitionEasingFunction": "ActualTransitionEasingFunction", + "ActualTransitionEasingFunctionProperty": "ActualTransitionEasingFunctionProperty", + "ActualTransitionInDuration": "ActualTransitionInDuration", + "ActualTransitionInDurationProperty": "ActualTransitionInDurationProperty", + "ActualTransitionInEasingFunction": "ActualTransitionInEasingFunction", + "ActualTransitionInEasingFunctionProperty": "ActualTransitionInEasingFunctionProperty", + "ActualTransitionInMode": "ActualTransitionInMode", + "ActualTransitionInModeProperty": "ActualTransitionInModeProperty", + "ActualTransitionInSpeedType": "ActualTransitionInSpeedType", + "ActualTransitionInSpeedTypeProperty": "ActualTransitionInSpeedTypeProperty", + "ActualUseLightweightMarkers": "ActualUseLightweightMarkers", + "ActualUseLightweightMarkersProperty": "ActualUseLightweightMarkersProperty", + "ActualValueMemberAsLegendLabel": "ActualValueMemberAsLegendLabel", + "ActualValueMemberAsLegendLabelProperty": "ActualValueMemberAsLegendLabelProperty", + "ActualValueMemberAsLegendUnit": "ActualValueMemberAsLegendUnit", + "ActualValueMemberAsLegendUnitProperty": "ActualValueMemberAsLegendUnitProperty", + "ActualVisibility": "ActualVisibility", + "ActualVisibilityProperty": "ActualVisibilityProperty", + "AreaFillOpacity": "AreaFillOpacity", + "AreaFillOpacityProperty": "AreaFillOpacityProperty", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "DashArray": "DashArray", + "DashArrayProperty": "DashArrayProperty", + "DataLegendGroup": "DataLegendGroup", + "DataLegendGroupProperty": "DataLegendGroupProperty", + "FromWorldPosition(Point)": "FromWorldPosition(Point)", + "FromWorldPosition": "FromWorldPosition(Point)", + "GetEffectiveViewport()": "GetEffectiveViewport()", + "GetEffectiveViewport": "GetEffectiveViewport()", + "GetExactItemIndexFromSeriesPixel(Point)": "GetExactItemIndexFromSeriesPixel(Point)", + "GetExactItemIndexFromSeriesPixel": "GetExactItemIndexFromSeriesPixel(Point)", + "GetItem(Point)": "GetItem(Point)", + "GetItem": "GetItem(Point)", + "GetItemFromSeriesPixel(Point)": "GetItemFromSeriesPixel(Point)", + "GetItemFromSeriesPixel": "GetItemFromSeriesPixel(Point)", + "GetItemIndex(Point)": "GetItemIndex(Point)", + "GetItemIndex": "GetItemIndex(Point)", + "GetItemIndexFromSeriesPixel(Point)": "GetItemIndexFromSeriesPixel(Point)", + "GetItemIndexFromSeriesPixel": "GetItemIndexFromSeriesPixel(Point)", + "GetItemSpan()": "GetItemSpan()", + "GetItemSpan": "GetItemSpan()", + "GetNextOrExactIndex(Point, bool)": "GetNextOrExactIndex(Point, bool)", + "GetNextOrExactIndex": "GetNextOrExactIndex(Point, bool)", + "GetPreviousOrExactIndex(Point, bool)": "GetPreviousOrExactIndex(Point, bool)", + "GetPreviousOrExactIndex": "GetPreviousOrExactIndex(Point, bool)", + "GetSeriesHighValue(Point, bool, bool)": "GetSeriesHighValue(Point, bool, bool)", + "GetSeriesHighValue": "GetSeriesHighValue(Point, bool, bool)", + "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)": "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValueFromSeriesPixel": "GetSeriesHighValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValuePosition(Point, bool, bool)": "GetSeriesHighValuePosition(Point, bool, bool)", + "GetSeriesHighValuePosition": "GetSeriesHighValuePosition(Point, bool, bool)", + "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesHighValuePositionFromSeriesPixel": "GetSeriesHighValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValue(Point, bool, bool)": "GetSeriesLowValue(Point, bool, bool)", + "GetSeriesLowValue": "GetSeriesLowValue(Point, bool, bool)", + "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)": "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValueFromSeriesPixel": "GetSeriesLowValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValuePosition(Point, bool, bool)": "GetSeriesLowValuePosition(Point, bool, bool)", + "GetSeriesLowValuePosition": "GetSeriesLowValuePosition(Point, bool, bool)", + "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesLowValuePositionFromSeriesPixel": "GetSeriesLowValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValue(Point, bool, bool)": "GetSeriesValue(Point, bool, bool)", + "GetSeriesValue": "GetSeriesValue(Point, bool, bool)", + "GetSeriesValueBoundingBox(Point)": "GetSeriesValueBoundingBox(Point)", + "GetSeriesValueBoundingBox": "GetSeriesValueBoundingBox(Point)", + "GetSeriesValueBoundingBoxFromSeriesPixel(Point)": "GetSeriesValueBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueBoundingBoxFromSeriesPixel": "GetSeriesValueBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueFineGrainedBoundingBoxes(Point)": "GetSeriesValueFineGrainedBoundingBoxes(Point)", + "GetSeriesValueFineGrainedBoundingBoxes": "GetSeriesValueFineGrainedBoundingBoxes(Point)", + "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)": "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)", + "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel": "GetSeriesValueFineGrainedBoundingBoxesFromSeriesPixel(Point)", + "GetSeriesValueFromSeriesPixel(Point, bool, bool)": "GetSeriesValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueFromSeriesPixel": "GetSeriesValueFromSeriesPixel(Point, bool, bool)", + "GetSeriesValueMarkerBoundingBox(Point)": "GetSeriesValueMarkerBoundingBox(Point)", + "GetSeriesValueMarkerBoundingBox": "GetSeriesValueMarkerBoundingBox(Point)", + "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)": "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValueMarkerBoundingBoxFromSeriesPixel": "GetSeriesValueMarkerBoundingBoxFromSeriesPixel(Point)", + "GetSeriesValuePosition(Point, bool, bool)": "GetSeriesValuePosition(Point, bool, bool)", + "GetSeriesValuePosition": "GetSeriesValuePosition(Point, bool, bool)", + "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)": "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)", + "GetSeriesValuePositionFromSeriesPixel": "GetSeriesValuePositionFromSeriesPixel(Point, bool, bool)", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedValuesDataLegendGroup": "HighlightedValuesDataLegendGroup", + "HighlightedValuesDataLegendGroupProperty": "HighlightedValuesDataLegendGroupProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "IsCustomCategoryMarkerStyleAllowed": "IsCustomCategoryMarkerStyleAllowed", + "IsCustomCategoryMarkerStyleAllowedProperty": "IsCustomCategoryMarkerStyleAllowedProperty", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsCustomCategoryStyleAllowedProperty": "IsCustomCategoryStyleAllowedProperty", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeModeProperty": "LegendItemBadgeModeProperty", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeShapeProperty": "LegendItemBadgeShapeProperty", + "LegendItemVisibility": "LegendItemVisibility", + "LegendItemVisibilityProperty": "LegendItemVisibilityProperty", + "LineCap": "LineCap", + "LineCapProperty": "LineCapProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillModeProperty": "MarkerFillModeProperty", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerFillOpacityProperty": "MarkerFillOpacityProperty", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerOutlineModeProperty": "MarkerOutlineModeProperty", + "MarkerOutlineProperty": "MarkerOutlineProperty", + "MarkerThickness": "MarkerThickness", + "MarkerThicknessProperty": "MarkerThicknessProperty", + "MarkerType": "MarkerType", + "MarkerTypeProperty": "MarkerTypeProperty", + "MoveCursorPoint(Point)": "MoveCursorPoint(Point)", + "MoveCursorPoint": "MoveCursorPoint(Point)", + "Name": "Name", + "NameProperty": "NameProperty", + "NotifyVisualPropertiesChanged()": "NotifyVisualPropertiesChanged()", + "NotifyVisualPropertiesChanged": "NotifyVisualPropertiesChanged()", + "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)": "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)", + "OnAssigningCategoryMarkerStyle": "OnAssigningCategoryMarkerStyle(AssigningCategoryMarkerStyleEventArgs)", + "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnAssigningCategoryStyle": "OnAssigningCategoryStyle(AssigningCategoryStyleEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty", + "Outline": "Outline", + "OutlineMode": "OutlineMode", + "OutlineModeProperty": "OutlineModeProperty", + "OutlineProperty": "OutlineProperty", + "ParentOrLocalBrush": "ParentOrLocalBrush", + "ParentOrLocalBrushProperty": "ParentOrLocalBrushProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty", + "ReplayTransitionIn()": "ReplayTransitionIn()", + "ReplayTransitionIn": "ReplayTransitionIn()", + "ScrollIntoView(object)": "ScrollIntoView(object)", + "ScrollIntoView": "ScrollIntoView(object)", + "ShowDefaultTooltip": "ShowDefaultTooltip", + "ShowDefaultTooltipProperty": "ShowDefaultTooltipProperty", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "TestHit(Point, bool)": "TestHit(Point, bool)", + "TestHit": "TestHit(Point, bool)", + "Thickness": "Thickness", + "ThicknessProperty": "ThicknessProperty", + "Title": "Title", + "TitleProperty": "TitleProperty", + "ToWorldPosition(Point)": "ToWorldPosition(Point)", + "ToWorldPosition": "ToWorldPosition(Point)", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionEasingFunction": "TransitionEasingFunction", + "TransitionEasingFunctionProperty": "TransitionEasingFunctionProperty", + "TransitionInDuration": "TransitionInDuration", + "TransitionInDurationProperty": "TransitionInDurationProperty", + "TransitionInEasingFunction": "TransitionInEasingFunction", + "TransitionInEasingFunctionProperty": "TransitionInEasingFunctionProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionInSpeedTypeProperty": "TransitionInSpeedTypeProperty", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendLabelProperty": "ValueMemberAsLegendLabelProperty", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberAsLegendUnitProperty": "ValueMemberAsLegendUnitProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "StackedFragmentSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedFragmentSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedFragmentSeriesDescription()": "StackedFragmentSeriesDescription()", + "StackedFragmentSeriesDescription": "StackedFragmentSeriesDescription()", + "ActualAreaFillOpacity": "ActualAreaFillOpacity", + "ActualBrush": "ActualBrush", + "ActualDataLegendGroup": "ActualDataLegendGroup", + "ActualHighlightedValuesDataLegendGroup": "ActualHighlightedValuesDataLegendGroup", + "ActualHighlightedValuesDisplayMode": "ActualHighlightedValuesDisplayMode", + "ActualHighlightingFadeOpacity": "ActualHighlightingFadeOpacity", + "ActualIsDropShadowEnabled": "ActualIsDropShadowEnabled", + "ActualIsSplineShapePartOfRange": "ActualIsSplineShapePartOfRange", + "ActualIsTransitionInEnabled": "ActualIsTransitionInEnabled", + "ActualLegendItemBadgeMode": "ActualLegendItemBadgeMode", + "ActualLegendItemBadgeShape": "ActualLegendItemBadgeShape", + "ActualLegendItemBadgeTemplateRef": "ActualLegendItemBadgeTemplateRef", + "ActualLegendItemTemplateRef": "ActualLegendItemTemplateRef", + "ActualLegendItemVisibility": "ActualLegendItemVisibility", + "ActualLineCap": "ActualLineCap", + "ActualMarkerBrush": "ActualMarkerBrush", + "ActualMarkerFillMode": "ActualMarkerFillMode", + "ActualMarkerFillOpacity": "ActualMarkerFillOpacity", + "ActualMarkerOutline": "ActualMarkerOutline", + "ActualMarkerOutlineMode": "ActualMarkerOutlineMode", + "ActualMarkerTemplateRef": "ActualMarkerTemplateRef", + "ActualMarkerThickness": "ActualMarkerThickness", + "ActualMarkerType": "ActualMarkerType", + "ActualOpacity": "ActualOpacity", + "ActualOutline": "ActualOutline", + "ActualOutlineMode": "ActualOutlineMode", + "ActualRadiusX": "ActualRadiusX", + "ActualRadiusY": "ActualRadiusY", + "ActualShadowBlur": "ActualShadowBlur", + "ActualShadowColor": "ActualShadowColor", + "ActualShadowOffsetX": "ActualShadowOffsetX", + "ActualShadowOffsetY": "ActualShadowOffsetY", + "ActualThickness": "ActualThickness", + "ActualTransitionDuration": "ActualTransitionDuration", + "ActualTransitionEasingFunctionRef": "ActualTransitionEasingFunctionRef", + "ActualTransitionInDuration": "ActualTransitionInDuration", + "ActualTransitionInEasingFunctionRef": "ActualTransitionInEasingFunctionRef", + "ActualTransitionInMode": "ActualTransitionInMode", + "ActualTransitionInSpeedType": "ActualTransitionInSpeedType", + "ActualUseSingleShadow": "ActualUseSingleShadow", + "ActualValueMemberAsLegendLabel": "ActualValueMemberAsLegendLabel", + "ActualValueMemberAsLegendUnit": "ActualValueMemberAsLegendUnit", + "ActualVisibility": "ActualVisibility", + "AreaFillOpacity": "AreaFillOpacity", + "AssigningCategoryMarkerStyleRef": "AssigningCategoryMarkerStyleRef", + "AssigningCategoryStyleRef": "AssigningCategoryStyleRef", + "Brush": "Brush", + "DashArray": "DashArray", + "DataLegendGroup": "DataLegendGroup", + "DataSourceRef": "DataSourceRef", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedValuesDataLegendGroup": "HighlightedValuesDataLegendGroup", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "IsCustomCategoryMarkerStyleAllowed": "IsCustomCategoryMarkerStyleAllowed", + "IsCustomCategoryStyleAllowed": "IsCustomCategoryStyleAllowed", + "IsDropShadowEnabled": "IsDropShadowEnabled", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "LegendItemBadgeMode": "LegendItemBadgeMode", + "LegendItemBadgeShape": "LegendItemBadgeShape", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "LegendItemTemplateRef": "LegendItemTemplateRef", + "LegendItemVisibility": "LegendItemVisibility", + "LineCap": "LineCap", + "MarkerBrush": "MarkerBrush", + "MarkerFillMode": "MarkerFillMode", + "MarkerFillOpacity": "MarkerFillOpacity", + "MarkerOutline": "MarkerOutline", + "MarkerOutlineMode": "MarkerOutlineMode", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "Opacity": "Opacity", + "Outline": "Outline", + "OutlineMode": "OutlineMode", + "ParentOrLocalBrush": "ParentOrLocalBrush", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "ShadowBlur": "ShadowBlur", + "ShadowColor": "ShadowColor", + "ShadowOffsetX": "ShadowOffsetX", + "ShadowOffsetY": "ShadowOffsetY", + "Thickness": "Thickness", + "Title": "Title", + "TransitionDuration": "TransitionDuration", + "TransitionEasingFunctionRef": "TransitionEasingFunctionRef", + "TransitionInDuration": "TransitionInDuration", + "TransitionInEasingFunctionRef": "TransitionInEasingFunctionRef", + "TransitionInMode": "TransitionInMode", + "TransitionInSpeedType": "TransitionInSpeedType", + "Type": "Type", + "UseSingleShadow": "UseSingleShadow", + "ValueMemberAsLegendLabel": "ValueMemberAsLegendLabel", + "ValueMemberAsLegendUnit": "ValueMemberAsLegendUnit", + "ValueMemberPath": "ValueMemberPath", + "Visibility": "Visibility" + } + } + ], + "StackedFragmentSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedFragmentSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedFragmentSeriesDescriptionMetadata()": "StackedFragmentSeriesDescriptionMetadata()", + "StackedFragmentSeriesDescriptionMetadata": "StackedFragmentSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedFragmentSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedFragmentSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedFragmentSeriesDescriptionModule()": "StackedFragmentSeriesDescriptionModule()", + "StackedFragmentSeriesDescriptionModule": "StackedFragmentSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedLineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedLineSeries", + "k": "class", + "s": "classes", + "m": { + "StackedLineSeries()": "StackedLineSeries()", + "StackedLineSeries": "StackedLineSeries()" + } + } + ], + "StackedLineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedLineSeriesDescription()": "StackedLineSeriesDescription()", + "StackedLineSeriesDescription": "StackedLineSeriesDescription()", + "Type": "Type" + } + } + ], + "StackedLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedLineSeriesDescriptionMetadata()": "StackedLineSeriesDescriptionMetadata()", + "StackedLineSeriesDescriptionMetadata": "StackedLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedLineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedLineSeriesDescriptionModule()": "StackedLineSeriesDescriptionModule()", + "StackedLineSeriesDescriptionModule": "StackedLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSeriesBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedSeriesBase", + "k": "class", + "s": "classes", + "m": { + "AutoGenerateSeries": "AutoGenerateSeries", + "AutoGenerateSeriesProperty": "AutoGenerateSeriesProperty", + "IsPercentBased": "IsPercentBased", + "IsPercentBasedProperty": "IsPercentBasedProperty", + "OnSeriesCreated(StackedSeriesCreatedEventArgs)": "OnSeriesCreated(StackedSeriesCreatedEventArgs)", + "OnSeriesCreated": "OnSeriesCreated(StackedSeriesCreatedEventArgs)", + "ReverseLegendOrder": "ReverseLegendOrder", + "ReverseLegendOrderProperty": "ReverseLegendOrderProperty", + "Series": "Series" + } + } + ], + "StackedSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesBaseDescription()": "StackedSeriesBaseDescription()", + "StackedSeriesBaseDescription": "StackedSeriesBaseDescription()", + "AutoGenerateSeries": "AutoGenerateSeries", + "ReverseLegendOrder": "ReverseLegendOrder", + "Series": "Series", + "SeriesCreatedRef": "SeriesCreatedRef", + "Type": "Type" + } + } + ], + "StackedSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesBaseDescriptionMetadata()": "StackedSeriesBaseDescriptionMetadata()", + "StackedSeriesBaseDescriptionMetadata": "StackedSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSeriesCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedSeriesCollection", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesCollection()": "StackedSeriesCollection()", + "StackedSeriesCollection": "StackedSeriesCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "StackedSeriesCreatedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSeriesCreatedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesCreatedEventArgsDescription()": "StackedSeriesCreatedEventArgsDescription()", + "StackedSeriesCreatedEventArgsDescription": "StackedSeriesCreatedEventArgsDescription()", + "Brush": "Brush", + "DashArray": "DashArray", + "LegendItemBadgeTemplateRef": "LegendItemBadgeTemplateRef", + "LegendItemTemplateRef": "LegendItemTemplateRef", + "LegendItemVisibility": "LegendItemVisibility", + "LineCap": "LineCap", + "MarkerBrush": "MarkerBrush", + "MarkerOutline": "MarkerOutline", + "MarkerStyle": "MarkerStyle", + "MarkerTemplateRef": "MarkerTemplateRef", + "MarkerThickness": "MarkerThickness", + "MarkerType": "MarkerType", + "Outline": "Outline", + "Thickness": "Thickness", + "TitleRef": "TitleRef", + "TransitionDuration": "TransitionDuration", + "TransitionEasingFunctionRef": "TransitionEasingFunctionRef", + "Type": "Type" + } + } + ], + "StackedSeriesCreatedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSeriesCreatedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesCreatedEventArgsDescriptionMetadata()": "StackedSeriesCreatedEventArgsDescriptionMetadata()", + "StackedSeriesCreatedEventArgsDescriptionMetadata": "StackedSeriesCreatedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSeriesVisualData": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedSeriesVisualData", + "k": "class", + "s": "classes", + "m": { + "StackedSeriesVisualData()": "StackedSeriesVisualData()", + "StackedSeriesVisualData": "StackedSeriesVisualData()", + "FragmentSeries": "FragmentSeries", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "StackedSplineAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedSplineAreaSeries", + "k": "class", + "s": "classes", + "m": { + "StackedSplineAreaSeries()": "StackedSplineAreaSeries()", + "StackedSplineAreaSeries": "StackedSplineAreaSeries()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty" + } + } + ], + "StackedSplineAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSplineAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedSplineAreaSeriesDescription()": "StackedSplineAreaSeriesDescription()", + "StackedSplineAreaSeriesDescription": "StackedSplineAreaSeriesDescription()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "Type": "Type" + } + } + ], + "StackedSplineAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSplineAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedSplineAreaSeriesDescriptionMetadata()": "StackedSplineAreaSeriesDescriptionMetadata()", + "StackedSplineAreaSeriesDescriptionMetadata": "StackedSplineAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSplineAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSplineAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedSplineAreaSeriesDescriptionModule()": "StackedSplineAreaSeriesDescriptionModule()", + "StackedSplineAreaSeriesDescriptionModule": "StackedSplineAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSplineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StackedSplineSeries", + "k": "class", + "s": "classes", + "m": { + "StackedSplineSeries()": "StackedSplineSeries()", + "StackedSplineSeries": "StackedSplineSeries()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty" + } + } + ], + "StackedSplineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSplineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StackedSplineSeriesDescription()": "StackedSplineSeriesDescription()", + "StackedSplineSeriesDescription": "StackedSplineSeriesDescription()", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "Type": "Type" + } + } + ], + "StackedSplineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSplineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StackedSplineSeriesDescriptionMetadata()": "StackedSplineSeriesDescriptionMetadata()", + "StackedSplineSeriesDescriptionMetadata": "StackedSplineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StackedSplineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StackedSplineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StackedSplineSeriesDescriptionModule()": "StackedSplineSeriesDescriptionModule()", + "StackedSplineSeriesDescriptionModule": "StackedSplineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StandardDeviationIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StandardDeviationIndicator", + "k": "class", + "s": "classes", + "m": { + "StandardDeviationIndicator()": "StandardDeviationIndicator()", + "StandardDeviationIndicator": "StandardDeviationIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "StandardDeviationIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StandardDeviationIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "StandardDeviationIndicatorDescription()": "StandardDeviationIndicatorDescription()", + "StandardDeviationIndicatorDescription": "StandardDeviationIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "StandardDeviationIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StandardDeviationIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StandardDeviationIndicatorDescriptionMetadata()": "StandardDeviationIndicatorDescriptionMetadata()", + "StandardDeviationIndicatorDescriptionMetadata": "StandardDeviationIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StandardDeviationIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StandardDeviationIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StandardDeviationIndicatorDescriptionModule()": "StandardDeviationIndicatorDescriptionModule()", + "StandardDeviationIndicatorDescriptionModule": "StandardDeviationIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StepAreaSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StepAreaSeries", + "k": "class", + "s": "classes", + "m": { + "StepAreaSeries()": "StepAreaSeries()", + "StepAreaSeries": "StepAreaSeries()" + } + } + ], + "StepAreaSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StepAreaSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StepAreaSeriesDescription()": "StepAreaSeriesDescription()", + "StepAreaSeriesDescription": "StepAreaSeriesDescription()", + "Type": "Type" + } + } + ], + "StepAreaSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StepAreaSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StepAreaSeriesDescriptionMetadata()": "StepAreaSeriesDescriptionMetadata()", + "StepAreaSeriesDescriptionMetadata": "StepAreaSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StepAreaSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StepAreaSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StepAreaSeriesDescriptionModule()": "StepAreaSeriesDescriptionModule()", + "StepAreaSeriesDescriptionModule": "StepAreaSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StepLineSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StepLineSeries", + "k": "class", + "s": "classes", + "m": { + "StepLineSeries()": "StepLineSeries()", + "StepLineSeries": "StepLineSeries()" + } + } + ], + "StepLineSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StepLineSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "StepLineSeriesDescription()": "StepLineSeriesDescription()", + "StepLineSeriesDescription": "StepLineSeriesDescription()", + "Type": "Type" + } + } + ], + "StepLineSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StepLineSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StepLineSeriesDescriptionMetadata()": "StepLineSeriesDescriptionMetadata()", + "StepLineSeriesDescriptionMetadata": "StepLineSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StepLineSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StepLineSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StepLineSeriesDescriptionModule()": "StepLineSeriesDescriptionModule()", + "StepLineSeriesDescriptionModule": "StepLineSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StochRSIIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StochRSIIndicator", + "k": "class", + "s": "classes", + "m": { + "StochRSIIndicator()": "StochRSIIndicator()", + "StochRSIIndicator": "StochRSIIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "StochRSIIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StochRSIIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "StochRSIIndicatorDescription()": "StochRSIIndicatorDescription()", + "StochRSIIndicatorDescription": "StochRSIIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "StochRSIIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StochRSIIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StochRSIIndicatorDescriptionMetadata()": "StochRSIIndicatorDescriptionMetadata()", + "StochRSIIndicatorDescriptionMetadata": "StochRSIIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StochRSIIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StochRSIIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "StochRSIIndicatorDescriptionModule()": "StochRSIIndicatorDescriptionModule()", + "StochRSIIndicatorDescriptionModule": "StochRSIIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StockChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StockChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "StockChangedEventArgsDescription()": "StockChangedEventArgsDescription()", + "StockChangedEventArgsDescription": "StockChangedEventArgsDescription()", + "AddedSymbols": "AddedSymbols", + "RemovedSymbols": "RemovedSymbols", + "Type": "Type" + } + } + ], + "StockChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StockChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StockChangedEventArgsDescriptionMetadata()": "StockChangedEventArgsDescriptionMetadata()", + "StockChangedEventArgsDescriptionMetadata": "StockChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StraightNumericAxisBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StraightNumericAxisBase", + "k": "class", + "s": "classes", + "m": { + "ScaleMode": "ScaleMode", + "ScaleModeProperty": "ScaleModeProperty" + } + } + ], + "StraightNumericAxisBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StraightNumericAxisBaseDescription", + "k": "class", + "s": "classes", + "m": { + "StraightNumericAxisBaseDescription()": "StraightNumericAxisBaseDescription()", + "StraightNumericAxisBaseDescription": "StraightNumericAxisBaseDescription()", + "ScaleMode": "ScaleMode", + "Type": "Type" + } + } + ], + "StraightNumericAxisBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StraightNumericAxisBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StraightNumericAxisBaseDescriptionMetadata()": "StraightNumericAxisBaseDescriptionMetadata()", + "StraightNumericAxisBaseDescriptionMetadata": "StraightNumericAxisBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StrategyBasedIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StrategyBasedIndicator", + "k": "class", + "s": "classes" + } + ], + "StrategyBasedIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StrategyBasedIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "StrategyBasedIndicatorDescription()": "StrategyBasedIndicatorDescription()", + "StrategyBasedIndicatorDescription": "StrategyBasedIndicatorDescription()", + "Type": "Type" + } + } + ], + "StrategyBasedIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StrategyBasedIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StrategyBasedIndicatorDescriptionMetadata()": "StrategyBasedIndicatorDescriptionMetadata()", + "StrategyBasedIndicatorDescriptionMetadata": "StrategyBasedIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StringArrayConverter": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StringArrayConverter", + "k": "class", + "s": "classes", + "m": { + "StringArrayConverter()": "StringArrayConverter()", + "StringArrayConverter": "StringArrayConverter()", + "CanConvertFrom(ITypeDescriptorContext, Type)": "CanConvertFrom(ITypeDescriptorContext, Type)", + "CanConvertFrom": "CanConvertFrom(ITypeDescriptorContext, Type)", + "ConvertFrom(ITypeDescriptorContext, CultureInfo, object)": "ConvertFrom(ITypeDescriptorContext, CultureInfo, object)", + "ConvertFrom": "ConvertFrom(ITypeDescriptorContext, CultureInfo, object)" + } + } + ], + "StringColumn": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StringColumn", + "k": "class", + "s": "classes", + "m": { + "StringColumn()": "StringColumn()", + "StringColumn": "StringColumn()", + "SetValues(object)": "SetValues(object)", + "SetValues": "SetValues(object)", + "Values": "Values" + } + } + ], + "StringDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StringDescription", + "k": "class", + "s": "classes", + "m": { + "StringDescription()": "StringDescription()", + "StringDescription": "StringDescription()", + "Value": "Value" + } + } + ], + "Style": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/Style", + "k": "class", + "s": "classes", + "m": { + "Style()": "Style()", + "Style": "Style()", + "Fill": "Fill", + "Opacity": "Opacity", + "Stroke": "Stroke", + "StrokeThickness": "StrokeThickness" + } + } + ], + "StyleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StyleDescription", + "k": "class", + "s": "classes", + "m": { + "StyleDescription()": "StyleDescription()", + "StyleDescription": "StyleDescription()", + "Type": "Type" + } + } + ], + "StyleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StyleDescriptionMetadata()": "StyleDescriptionMetadata()", + "StyleDescriptionMetadata": "StyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StyleSelector": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/StyleSelector", + "k": "class", + "s": "classes", + "m": { + "StyleSelector()": "StyleSelector()", + "StyleSelector": "StyleSelector()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "StyleSelectorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StyleSelectorDescription", + "k": "class", + "s": "classes", + "m": { + "StyleSelectorDescription()": "StyleSelectorDescription()", + "StyleSelectorDescription": "StyleSelectorDescription()", + "Type": "Type" + } + } + ], + "StyleSelectorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StyleSelectorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StyleSelectorDescriptionMetadata()": "StyleSelectorDescriptionMetadata()", + "StyleSelectorDescriptionMetadata": "StyleSelectorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "StyleShapeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StyleShapeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "StyleShapeEventArgsDescription()": "StyleShapeEventArgsDescription()", + "StyleShapeEventArgsDescription": "StyleShapeEventArgsDescription()", + "ItemRef": "ItemRef", + "ShapeFill": "ShapeFill", + "ShapeOpacity": "ShapeOpacity", + "ShapeStroke": "ShapeStroke", + "ShapeStrokeThickness": "ShapeStrokeThickness", + "Type": "Type" + } + } + ], + "StyleShapeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/StyleShapeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "StyleShapeEventArgsDescriptionMetadata()": "StyleShapeEventArgsDescriptionMetadata()", + "StyleShapeEventArgsDescriptionMetadata": "StyleShapeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SubCollectionsRule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SubCollectionsRule", + "k": "class", + "s": "classes", + "m": { + "SubCollectionsRule()": "SubCollectionsRule()", + "SubCollectionsRule": "SubCollectionsRule()", + "CollectionTransformationThreshold": "CollectionTransformationThreshold", + "Evaluate(DataSeriesAdapterRunContext)": "Evaluate(DataSeriesAdapterRunContext)", + "Evaluate": "Evaluate(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetAdditionalValuePropertyStrings": "GetAdditionalValuePropertyStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsString": "GetPrimaryAxisLabelsString(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "GetPrimaryAxisLabelsStrings": "GetPrimaryAxisLabelsStrings(DataSeriesAdapterRunContext)", + "Priority": "Priority" + } + } + ], + "SubstituteTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/SubstituteTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "SubstituteTypeAttribute(Type)": "SubstituteTypeAttribute(Type)", + "SubstituteTypeAttribute": "SubstituteTypeAttribute(Type)", + "Type": "Type" + } + } + ], + "SubstituteValueAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/SubstituteValueAttribute", + "k": "class", + "s": "classes", + "m": { + "SubstituteValueAttribute(object)": "SubstituteValueAttribute(object)", + "SubstituteValueAttribute": "SubstituteValueAttribute(object)", + "AllowCaseLabels": "AllowCaseLabels", + "Value": "Value" + } + } + ], + "SuffixDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SuffixDescription", + "k": "class", + "s": "classes", + "m": { + "SuffixDescription()": "SuffixDescription()", + "SuffixDescription": "SuffixDescription()", + "AriaLabel": "AriaLabel", + "Disabled": "Disabled", + "Id": "Id", + "IsHover": "IsHover", + "Type": "Type" + } + } + ], + "SuffixDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SuffixDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SuffixDescriptionMetadata()": "SuffixDescriptionMetadata()", + "SuffixDescriptionMetadata": "SuffixDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SuffixShiftType": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/enums/SuffixShiftType", + "k": "enum", + "s": "enums" + } + ], + "SuffixVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/SuffixVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "SuffixVisualModelExport()": "SuffixVisualModelExport()", + "SuffixVisualModelExport": "SuffixVisualModelExport()", + "IsDisabled": "IsDisabled", + "IsHover": "IsHover", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "SummaryCalculator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "SummaryCalculator()": "SummaryCalculator()", + "SummaryCalculator": "SummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DataSource": "DataSource", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "GetExpectedTypeFromDouble(double)": "GetExpectedTypeFromDouble(double)", + "GetExpectedTypeFromDouble": "GetExpectedTypeFromDouble(double)", + "GetItemAsDouble(object)": "GetItemAsDouble(object)", + "GetItemAsDouble": "GetItemAsDouble(object)", + "GetResults()": "GetResults()", + "GetResults": "GetResults()", + "GetValueAsDouble(object)": "GetValueAsDouble(object)", + "GetValueAsDouble": "GetValueAsDouble(object)", + "IsSummaryDirty": "IsSummaryDirty", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand", + "PropertyName": "PropertyName", + "PropertyType": "PropertyType", + "ShouldDisplay": "ShouldDisplay" + } + } + ], + "SummaryCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SummaryCellInfo", + "k": "class", + "s": "classes", + "m": { + "SummaryCellInfo()": "SummaryCellInfo()", + "SummaryCellInfo": "SummaryCellInfo()", + "ResolvedSummaryLabel": "ResolvedSummaryLabel", + "ResolvedSummaryLabelPropertyName": "ResolvedSummaryLabelPropertyName", + "ResolvedSummaryValue": "ResolvedSummaryValue", + "ResolvedSummaryValuePropertyName": "ResolvedSummaryValuePropertyName", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontInfoPropertyName": "SummaryLabelFontInfoPropertyName", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextColorPropertyName": "SummaryLabelTextColorPropertyName" + } + } + ], + "SummaryCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryCellInfoDescription()": "SummaryCellInfoDescription()", + "SummaryCellInfoDescription": "SummaryCellInfoDescription()", + "ResolvedSummaryLabel": "ResolvedSummaryLabel", + "ResolvedSummaryValue": "ResolvedSummaryValue", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "Type": "Type" + } + } + ], + "SummaryCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryCellInfoDescriptionMetadata()": "SummaryCellInfoDescriptionMetadata()", + "SummaryCellInfoDescriptionMetadata": "SummaryCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SummaryCellModelExport", + "k": "class", + "s": "classes", + "m": { + "SummaryCellModelExport()": "SummaryCellModelExport()", + "SummaryCellModelExport": "SummaryCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "SummaryLabel": "SummaryLabel", + "SummaryLabelColor": "SummaryLabelColor", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontStretch": "SummaryLabelFontStretch", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontVariant": "SummaryLabelFontVariant", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryValue": "SummaryValue", + "SummaryValueColor": "SummaryValueColor", + "SummaryValueFontFamily": "SummaryValueFontFamily", + "SummaryValueFontSize": "SummaryValueFontSize", + "SummaryValueFontStretch": "SummaryValueFontStretch", + "SummaryValueFontStyle": "SummaryValueFontStyle", + "SummaryValueFontVariant": "SummaryValueFontVariant", + "SummaryValueFontWeight": "SummaryValueFontWeight", + "Type": "Type" + } + } + ], + "SummaryChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryChangedEventArgsDescription()": "SummaryChangedEventArgsDescription()", + "SummaryChangedEventArgsDescription": "SummaryChangedEventArgsDescription()", + "ID": "ID", + "IsEnabled": "IsEnabled", + "Type": "Type" + } + } + ], + "SummaryChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryChangedEventArgsDescriptionMetadata()": "SummaryChangedEventArgsDescriptionMetadata()", + "SummaryChangedEventArgsDescriptionMetadata": "SummaryChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryChooserDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryChooserDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SummaryChooserDescriptionModule()": "SummaryChooserDescriptionModule()", + "SummaryChooserDescriptionModule": "SummaryChooserDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryData": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SummaryData", + "k": "class", + "s": "classes", + "m": { + "SummaryData()": "SummaryData()", + "SummaryData": "SummaryData()", + "FormattedText": "FormattedText", + "FormattedValue": "FormattedValue", + "SummaryName": "SummaryName", + "SummaryOperand": "SummaryOperand", + "SummaryValue": "SummaryValue" + } + } + ], + "SummaryDataDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryDataDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryDataDescription()": "SummaryDataDescription()", + "SummaryDataDescription": "SummaryDataDescription()", + "FormattedText": "FormattedText", + "FormattedValue": "FormattedValue", + "SummaryName": "SummaryName", + "SummaryOperand": "SummaryOperand", + "SummaryValueRef": "SummaryValueRef", + "Type": "Type" + } + } + ], + "SummaryDataDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryDataDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryDataDescriptionMetadata()": "SummaryDataDescriptionMetadata()", + "SummaryDataDescriptionMetadata": "SummaryDataDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryDescription()": "SummaryDescription()", + "SummaryDescription": "SummaryDescription()", + "SummaryDescription(string)": "SummaryDescription(string)", + "SummaryDescription(string, DataSourceSummaryOperand)": "SummaryDescription(string, DataSourceSummaryOperand)", + "Alias": "Alias", + "Calculator": "Calculator", + "Equals(object)": "Equals(object)", + "Equals": "Equals(object)", + "GetHashCode()": "GetHashCode()", + "GetHashCode": "GetHashCode()", + "Operand": "Operand", + "PropertyName": "PropertyName", + "ShouldDisplay": "ShouldDisplay" + } + } + ], + "SummaryDescriptionCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryDescriptionCollection", + "k": "class", + "s": "classes", + "m": { + "SummaryDescriptionCollection()": "SummaryDescriptionCollection()", + "SummaryDescriptionCollection": "SummaryDescriptionCollection()", + "OnSelfChanged(NotifyCollectionChangedEventArgs)": "OnSelfChanged(NotifyCollectionChangedEventArgs)", + "OnSelfChanged": "OnSelfChanged(NotifyCollectionChangedEventArgs)" + } + } + ], + "SummaryRow": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SummaryRow", + "k": "class", + "s": "classes", + "m": { + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSelectedBackgroundProperty": "ActualSelectedBackgroundProperty", + "ActualSummaryLabelTextColor": "ActualSummaryLabelTextColor", + "ActualSummaryLabelTextColorProperty": "ActualSummaryLabelTextColorProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundProperty": "SelectedBackgroundProperty", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontFamilyProperty": "SummaryLabelFontFamilyProperty", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontSizeProperty": "SummaryLabelFontSizeProperty", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontStyleProperty": "SummaryLabelFontStyleProperty", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryLabelFontWeightProperty": "SummaryLabelFontWeightProperty", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextColorProperty": "SummaryLabelTextColorProperty" + } + } + ], + "SummaryRowDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryRowDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryRowDescription()": "SummaryRowDescription()", + "SummaryRowDescription": "SummaryRowDescription()", + "ActualSelectedBackground": "ActualSelectedBackground", + "ActualSummaryLabelTextColor": "ActualSummaryLabelTextColor", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "SelectedBackground": "SelectedBackground", + "SummaryLabelFontFamily": "SummaryLabelFontFamily", + "SummaryLabelFontSize": "SummaryLabelFontSize", + "SummaryLabelFontStyle": "SummaryLabelFontStyle", + "SummaryLabelFontWeight": "SummaryLabelFontWeight", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "Type": "Type" + } + } + ], + "SummaryRowDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryRowDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryRowDescriptionMetadata()": "SummaryRowDescriptionMetadata()", + "SummaryRowDescriptionMetadata": "SummaryRowDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryRowRoot": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SummaryRowRoot", + "k": "class", + "s": "classes", + "m": { + "SummaryRowRoot()": "SummaryRowRoot()", + "SummaryRowRoot": "SummaryRowRoot()" + } + } + ], + "SummaryRowRootDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryRowRootDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryRowRootDescription()": "SummaryRowRootDescription()", + "SummaryRowRootDescription": "SummaryRowRootDescription()", + "Type": "Type" + } + } + ], + "SummaryRowRootDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryRowRootDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryRowRootDescriptionMetadata()": "SummaryRowRootDescriptionMetadata()", + "SummaryRowRootDescriptionMetadata": "SummaryRowRootDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryRowRootDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryRowRootDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SummaryRowRootDescriptionModule()": "SummaryRowRootDescriptionModule()", + "SummaryRowRootDescriptionModule": "SummaryRowRootDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryRowSection": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/SummaryRowSection", + "k": "class", + "s": "classes", + "m": { + "SummaryRowSection()": "SummaryRowSection()", + "SummaryRowSection": "SummaryRowSection()" + } + } + ], + "SummaryRowSectionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryRowSectionDescription", + "k": "class", + "s": "classes", + "m": { + "SummaryRowSectionDescription()": "SummaryRowSectionDescription()", + "SummaryRowSectionDescription": "SummaryRowSectionDescription()", + "Type": "Type" + } + } + ], + "SummaryRowSectionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryRowSectionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "SummaryRowSectionDescriptionMetadata()": "SummaryRowSectionDescriptionMetadata()", + "SummaryRowSectionDescriptionMetadata": "SummaryRowSectionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryRowSectionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SummaryRowSectionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "SummaryRowSectionDescriptionModule()": "SummaryRowSectionDescriptionModule()", + "SummaryRowSectionDescriptionModule": "SummaryRowSectionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "SummaryScope": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/SummaryScope", + "k": "enum", + "s": "enums" + } + ], + "SumSummaryCalculator": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SumSummaryCalculator", + "k": "class", + "s": "classes", + "m": { + "SumSummaryCalculator()": "SumSummaryCalculator()", + "SumSummaryCalculator": "SumSummaryCalculator()", + "Aggregate(object)": "Aggregate(object)", + "Aggregate": "Aggregate(object)", + "BeginCalculation(IDataSource, string)": "BeginCalculation(IDataSource, string)", + "BeginCalculation": "BeginCalculation(IDataSource, string)", + "DisplayName": "DisplayName", + "EndCalculation()": "EndCalculation()", + "EndCalculation": "EndCalculation()", + "ItemAdded(object, ISummaryResult, int)": "ItemAdded(object, ISummaryResult, int)", + "ItemAdded": "ItemAdded(object, ISummaryResult, int)", + "ItemRemoved(object, ISummaryResult, int)": "ItemRemoved(object, ISummaryResult, int)", + "ItemRemoved": "ItemRemoved(object, ISummaryResult, int)", + "Operand": "Operand" + } + } + ], + "SupportingCalculation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/SupportingCalculation", + "k": "class", + "s": "classes", + "m": { + "SupportingCalculation(TCalculationStrategy)": "SupportingCalculation(TCalculationStrategy)", + "SupportingCalculation": "SupportingCalculation(TCalculationStrategy)", + "SupportingCalculation(TCalculationStrategy, IList)": "SupportingCalculation(TCalculationStrategy, IList)", + "BasedOn": "BasedOn", + "Strategy": "Strategy" + } + } + ], + "SvgIconRegistry": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SvgIconRegistry", + "k": "class", + "s": "classes", + "m": { + "SvgIconRegistry()": "SvgIconRegistry()", + "SvgIconRegistry": "SvgIconRegistry()", + "AddDataURLString(string, string, string)": "AddDataURLString(string, string, string)", + "AddDataURLString": "AddDataURLString(string, string, string)", + "AddIconSource(string, string, object)": "AddIconSource(string, string, object)", + "AddIconSource": "AddIconSource(string, string, object)", + "AddSvgPathString(string, string, string)": "AddSvgPathString(string, string, string)", + "AddSvgPathString": "AddSvgPathString(string, string, string)", + "AddSvgPathsString(string, string, string[])": "AddSvgPathsString(string, string, string[])", + "AddSvgPathsString": "AddSvgPathsString(string, string, string[])", + "GetDataURLString(string, string)": "GetDataURLString(string, string)", + "GetDataURLString": "GetDataURLString(string, string)", + "GetIconSource(string, string)": "GetIconSource(string, string)", + "GetIconSource": "GetIconSource(string, string)", + "GetSvgPathString(string, string)": "GetSvgPathString(string, string)", + "GetSvgPathString": "GetSvgPathString(string, string)", + "GetSvgPathsString(string, string)": "GetSvgPathsString(string, string)", + "GetSvgPathsString": "GetSvgPathsString(string, string)", + "Instance": "Instance" + } + } + ], + "SweepDirection": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/enums/SweepDirection", + "k": "enum", + "s": "enums" + } + ], + "SwiftLiteralUnwrapAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/SwiftLiteralUnwrapAttribute", + "k": "class", + "s": "classes", + "m": { + "SwiftLiteralUnwrapAttribute()": "SwiftLiteralUnwrapAttribute()", + "SwiftLiteralUnwrapAttribute": "SwiftLiteralUnwrapAttribute()" + } + } + ], + "SyncableObservableCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SyncableObservableCollection", + "k": "class", + "s": "classes", + "m": { + "SyncableObservableCollection()": "SyncableObservableCollection()", + "SyncableObservableCollection": "SyncableObservableCollection()" + } + } + ], + "SyncableObservableCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/SyncableObservableCollection", + "k": "class", + "s": "classes", + "m": { + "SyncableObservableCollection()": "SyncableObservableCollection()", + "SyncableObservableCollection": "SyncableObservableCollection()", + "AddOneWayTarget(SyncableObservableCollection)": "AddOneWayTarget(SyncableObservableCollection)", + "AddOneWayTarget": "AddOneWayTarget(SyncableObservableCollection)", + "ClearItems()": "ClearItems()", + "ClearItems": "ClearItems()", + "Compare": "Compare", + "CreateFrom": "CreateFrom", + "CreateTo": "CreateTo", + "OnSelfChanged(NotifyCollectionChangedEventArgs)": "OnSelfChanged(NotifyCollectionChangedEventArgs)", + "OnSelfChanged": "OnSelfChanged(NotifyCollectionChangedEventArgs)", + "RemoveOneWayTarget(SyncableObservableCollection)": "RemoveOneWayTarget(SyncableObservableCollection)", + "RemoveOneWayTarget": "RemoveOneWayTarget(SyncableObservableCollection)", + "ShouldDetachOnTargetChange": "ShouldDetachOnTargetChange", + "SyncTarget": "SyncTarget" + } + } + ], + "TemplateCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateCellInfo", + "k": "class", + "s": "classes", + "m": { + "TemplateCellInfo()": "TemplateCellInfo()", + "TemplateCellInfo": "TemplateCellInfo()", + "Value": "Value", + "ValuePropertyName": "ValuePropertyName" + } + } + ], + "TemplateCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateCellInfoDescription()": "TemplateCellInfoDescription()", + "TemplateCellInfoDescription": "TemplateCellInfoDescription()", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "TemplateCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateCellInfoDescriptionMetadata()": "TemplateCellInfoDescriptionMetadata()", + "TemplateCellInfoDescriptionMetadata": "TemplateCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TemplateCellModelExport()": "TemplateCellModelExport()", + "TemplateCellModelExport": "TemplateCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type", + "Value": "Value" + } + } + ], + "TemplateCellUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateCellUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TemplateCellUpdatingEventArgs()": "TemplateCellUpdatingEventArgs()", + "TemplateCellUpdatingEventArgs": "TemplateCellUpdatingEventArgs()", + "CellInfo": "CellInfo", + "Content": "Content", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TemplateCellUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateCellUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateCellUpdatingEventArgsDescription()": "TemplateCellUpdatingEventArgsDescription()", + "TemplateCellUpdatingEventArgsDescription": "TemplateCellUpdatingEventArgsDescription()", + "Type": "Type" + } + } + ], + "TemplateCellUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateCellUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateCellUpdatingEventArgsDescriptionMetadata()": "TemplateCellUpdatingEventArgsDescriptionMetadata()", + "TemplateCellUpdatingEventArgsDescriptionMetadata": "TemplateCellUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateColumn": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateColumn", + "k": "class", + "s": "classes", + "m": { + "TemplateColumn()": "TemplateColumn()", + "TemplateColumn": "TemplateColumn()", + "OnCellUpdating(TemplateCellUpdatingEventArgs)": "OnCellUpdating(TemplateCellUpdatingEventArgs)", + "OnCellUpdating": "OnCellUpdating(TemplateCellUpdatingEventArgs)" + } + } + ], + "TemplateColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateColumnDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateColumnDescription()": "TemplateColumnDescription()", + "TemplateColumnDescription": "TemplateColumnDescription()", + "CellUpdatingRef": "CellUpdatingRef", + "TemplateRef": "TemplateRef", + "Type": "Type" + } + } + ], + "TemplateColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateColumnDescriptionMetadata()": "TemplateColumnDescriptionMetadata()", + "TemplateColumnDescriptionMetadata": "TemplateColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateColumnDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateColumnDescriptionModule()": "TemplateColumnDescriptionModule()", + "TemplateColumnDescriptionModule": "TemplateColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateContainerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateContainerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateContainerDescriptionModule()": "TemplateContainerDescriptionModule()", + "TemplateContainerDescriptionModule": "TemplateContainerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateContentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateContentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateContentDescriptionModule()": "TemplateContentDescriptionModule()", + "TemplateContentDescriptionModule": "TemplateContentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateContentExtendedDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateContentExtendedDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateContentExtendedDescriptionModule()": "TemplateContentExtendedDescriptionModule()", + "TemplateContentExtendedDescriptionModule": "TemplateContentExtendedDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateHeader": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateHeader", + "k": "class", + "s": "classes", + "m": { + "TemplateHeader()": "TemplateHeader()", + "TemplateHeader": "TemplateHeader()", + "OnCellUpdating(TemplateHeaderCellUpdatingEventArgs)": "OnCellUpdating(TemplateHeaderCellUpdatingEventArgs)", + "OnCellUpdating": "OnCellUpdating(TemplateHeaderCellUpdatingEventArgs)" + } + } + ], + "TemplateHeaderCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateHeaderCellInfo", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellInfo()": "TemplateHeaderCellInfo()", + "TemplateHeaderCellInfo": "TemplateHeaderCellInfo()", + "IsFilterUIVisible": "IsFilterUIVisible", + "IsFilterUIVisiblePropertyName": "IsFilterUIVisiblePropertyName" + } + } + ], + "TemplateHeaderCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateHeaderCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellInfoDescription()": "TemplateHeaderCellInfoDescription()", + "TemplateHeaderCellInfoDescription": "TemplateHeaderCellInfoDescription()", + "IsFilterUIVisible": "IsFilterUIVisible", + "Type": "Type" + } + } + ], + "TemplateHeaderCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateHeaderCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellInfoDescriptionMetadata()": "TemplateHeaderCellInfoDescriptionMetadata()", + "TemplateHeaderCellInfoDescriptionMetadata": "TemplateHeaderCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateHeaderCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateHeaderCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellModelExport()": "TemplateHeaderCellModelExport()", + "TemplateHeaderCellModelExport": "TemplateHeaderCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type", + "Value": "Value" + } + } + ], + "TemplateHeaderCellUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateHeaderCellUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellUpdatingEventArgs()": "TemplateHeaderCellUpdatingEventArgs()", + "TemplateHeaderCellUpdatingEventArgs": "TemplateHeaderCellUpdatingEventArgs()", + "CellInfo": "CellInfo", + "Content": "Content", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TemplateHeaderCellUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateHeaderCellUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellUpdatingEventArgsDescription()": "TemplateHeaderCellUpdatingEventArgsDescription()", + "TemplateHeaderCellUpdatingEventArgsDescription": "TemplateHeaderCellUpdatingEventArgsDescription()", + "Type": "Type" + } + } + ], + "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateHeaderCellUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata()": "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata()", + "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata": "TemplateHeaderCellUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderDescription()": "TemplateHeaderDescription()", + "TemplateHeaderDescription": "TemplateHeaderDescription()", + "CellUpdatingRef": "CellUpdatingRef", + "Type": "Type" + } + } + ], + "TemplateHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderDescriptionMetadata()": "TemplateHeaderDescriptionMetadata()", + "TemplateHeaderDescriptionMetadata": "TemplateHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateHeaderDescriptionModule()": "TemplateHeaderDescriptionModule()", + "TemplateHeaderDescriptionModule": "TemplateHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateSectionHeader": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateSectionHeader", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeader()": "TemplateSectionHeader()", + "TemplateSectionHeader": "TemplateSectionHeader()", + "OnCellUpdating(TemplateSectionHeaderCellUpdatingEventArgs)": "OnCellUpdating(TemplateSectionHeaderCellUpdatingEventArgs)", + "OnCellUpdating": "OnCellUpdating(TemplateSectionHeaderCellUpdatingEventArgs)" + } + } + ], + "TemplateSectionHeaderCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateSectionHeaderCellInfo", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellInfo()": "TemplateSectionHeaderCellInfo()", + "TemplateSectionHeaderCellInfo": "TemplateSectionHeaderCellInfo()" + } + } + ], + "TemplateSectionHeaderCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateSectionHeaderCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellInfoDescription()": "TemplateSectionHeaderCellInfoDescription()", + "TemplateSectionHeaderCellInfoDescription": "TemplateSectionHeaderCellInfoDescription()", + "Type": "Type" + } + } + ], + "TemplateSectionHeaderCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateSectionHeaderCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellInfoDescriptionMetadata()": "TemplateSectionHeaderCellInfoDescriptionMetadata()", + "TemplateSectionHeaderCellInfoDescriptionMetadata": "TemplateSectionHeaderCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateSectionHeaderCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateSectionHeaderCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellModelExport()": "TemplateSectionHeaderCellModelExport()", + "TemplateSectionHeaderCellModelExport": "TemplateSectionHeaderCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "TemplateSectionHeaderCellUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TemplateSectionHeaderCellUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellUpdatingEventArgs()": "TemplateSectionHeaderCellUpdatingEventArgs()", + "TemplateSectionHeaderCellUpdatingEventArgs": "TemplateSectionHeaderCellUpdatingEventArgs()", + "CellInfo": "CellInfo", + "Content": "Content", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TemplateSectionHeaderCellUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateSectionHeaderCellUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellUpdatingEventArgsDescription()": "TemplateSectionHeaderCellUpdatingEventArgsDescription()", + "TemplateSectionHeaderCellUpdatingEventArgsDescription": "TemplateSectionHeaderCellUpdatingEventArgsDescription()", + "Type": "Type" + } + } + ], + "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata()": "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata()", + "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata": "TemplateSectionHeaderCellUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateSectionHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateSectionHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderDescription()": "TemplateSectionHeaderDescription()", + "TemplateSectionHeaderDescription": "TemplateSectionHeaderDescription()", + "CellUpdatingRef": "CellUpdatingRef", + "Type": "Type" + } + } + ], + "TemplateSectionHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateSectionHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderDescriptionMetadata()": "TemplateSectionHeaderDescriptionMetadata()", + "TemplateSectionHeaderDescriptionMetadata": "TemplateSectionHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TemplateSectionHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TemplateSectionHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TemplateSectionHeaderDescriptionModule()": "TemplateSectionHeaderDescriptionModule()", + "TemplateSectionHeaderDescriptionModule": "TemplateSectionHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TestRandomness": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TestRandomness", + "k": "class", + "s": "classes", + "m": { + "Instance": "Instance", + "TestRandomnessSource": "TestRandomnessSource" + } + } + ], + "TextBlockVisualModelExport": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/TextBlockVisualModelExport", + "k": "class", + "s": "classes", + "m": { + "TextBlockVisualModelExport()": "TextBlockVisualModelExport()", + "TextBlockVisualModelExport": "TextBlockVisualModelExport()", + "ActualTextColor": "ActualTextColor", + "Height": "Height", + "Left": "Left", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Text": "Text", + "TextStyleFontFamily": "TextStyleFontFamily", + "TextStyleFontSize": "TextStyleFontSize", + "TextStyleFontStretch": "TextStyleFontStretch", + "TextStyleFontStyle": "TextStyleFontStyle", + "TextStyleFontVariant": "TextStyleFontVariant", + "TextStyleFontWeight": "TextStyleFontWeight", + "Top": "Top", + "Width": "Width" + } + } + ], + "TextCellDecoration": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/TextCellDecoration", + "k": "enum", + "s": "enums" + } + ], + "TextCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TextCellInfo", + "k": "class", + "s": "classes", + "m": { + "TextCellInfo()": "TextCellInfo()", + "TextCellInfo": "TextCellInfo()", + "FormatString": "FormatString", + "FormatStringPropertyName": "FormatStringPropertyName", + "TextValue": "TextValue", + "TextValuePropertyName": "TextValuePropertyName" + } + } + ], + "TextCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TextCellInfoDescription()": "TextCellInfoDescription()", + "TextCellInfoDescription": "TextCellInfoDescription()", + "TextValue": "TextValue", + "Type": "Type" + } + } + ], + "TextCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextCellInfoDescriptionMetadata()": "TextCellInfoDescriptionMetadata()", + "TextCellInfoDescriptionMetadata": "TextCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextCellLineBreakMode": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/TextCellLineBreakMode", + "k": "enum", + "s": "enums" + } + ], + "TextCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TextCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TextCellModelExport()": "TextCellModelExport()", + "TextCellModelExport": "TextCellModelExport()", + "FormatString": "FormatString", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "TextValue": "TextValue", + "Type": "Type" + } + } + ], + "TextColumn": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TextColumn", + "k": "class", + "s": "classes", + "m": { + "TextColumn()": "TextColumn()", + "TextColumn": "TextColumn()", + "EditorItemsSource": "EditorItemsSource", + "EditorItemsSourceProperty": "EditorItemsSourceProperty", + "EditorTextField": "EditorTextField", + "EditorTextFieldProperty": "EditorTextFieldProperty", + "EditorType": "EditorType", + "EditorTypeProperty": "EditorTypeProperty", + "EditorValueField": "EditorValueField", + "EditorValueFieldProperty": "EditorValueFieldProperty", + "FormatString": "FormatString", + "FormatStringProperty": "FormatStringProperty" + } + } + ], + "TextColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextColumnDescription", + "k": "class", + "s": "classes", + "m": { + "TextColumnDescription()": "TextColumnDescription()", + "TextColumnDescription": "TextColumnDescription()", + "DataSource": "DataSource", + "EditorDataSourceRef": "EditorDataSourceRef", + "EditorTextField": "EditorTextField", + "EditorType": "EditorType", + "EditorValueField": "EditorValueField", + "GenericDataSource": "GenericDataSource", + "Type": "Type" + } + } + ], + "TextColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextColumnDescriptionMetadata()": "TextColumnDescriptionMetadata()", + "TextColumnDescriptionMetadata": "TextColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextColumnDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TextColumnDescriptionModule()": "TextColumnDescriptionModule()", + "TextColumnDescriptionModule": "TextColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextFontMetrics": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/TextFontMetrics", + "k": "class", + "s": "classes", + "m": { + "TextFontMetrics()": "TextFontMetrics()", + "TextFontMetrics": "TextFontMetrics()", + "ActualAscent": "ActualAscent", + "Height": "Height", + "Width": "Width" + } + } + ], + "TextHeader": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TextHeader", + "k": "class", + "s": "classes", + "m": { + "TextHeader()": "TextHeader()", + "TextHeader": "TextHeader()" + } + } + ], + "TextHeaderCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TextHeaderCellInfo", + "k": "class", + "s": "classes", + "m": { + "TextHeaderCellInfo()": "TextHeaderCellInfo()", + "TextHeaderCellInfo": "TextHeaderCellInfo()", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconAlignmentPropertyName": "ColumnOptionsIconAlignmentPropertyName", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconBehaviorPropertyName": "ColumnOptionsIconBehaviorPropertyName", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsIconColorPropertyName": "ColumnOptionsIconColorPropertyName", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTheme": "ColumnOptionsTheme", + "ColumnOptionsThemePropertyName": "ColumnOptionsThemePropertyName", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "GroupDirection": "GroupDirection", + "GroupDirectionPropertyName": "GroupDirectionPropertyName", + "GroupPosition": "GroupPosition", + "GroupPositionPropertyName": "GroupPositionPropertyName", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsEnabledPropertyName": "IsColumnOptionsEnabledPropertyName", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortIndicatorStylePropertyName": "SortIndicatorStylePropertyName", + "SortOrderText": "SortOrderText", + "SortOrderTextPropertyName": "SortOrderTextPropertyName", + "SortPosition": "SortPosition", + "SortPositionPropertyName": "SortPositionPropertyName" + } + } + ], + "TextHeaderCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextHeaderCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "TextHeaderCellInfoDescription()": "TextHeaderCellInfoDescription()", + "TextHeaderCellInfoDescription": "TextHeaderCellInfoDescription()", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTheme": "ColumnOptionsTheme", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "GroupDirection": "GroupDirection", + "GroupPosition": "GroupPosition", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "SortIndicatorStyle": "SortIndicatorStyle", + "SortOrderText": "SortOrderText", + "SortPosition": "SortPosition", + "Type": "Type" + } + } + ], + "TextHeaderCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextHeaderCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextHeaderCellInfoDescriptionMetadata()": "TextHeaderCellInfoDescriptionMetadata()", + "TextHeaderCellInfoDescriptionMetadata": "TextHeaderCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextHeaderCellModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TextHeaderCellModelExport", + "k": "class", + "s": "classes", + "m": { + "TextHeaderCellModelExport()": "TextHeaderCellModelExport()", + "TextHeaderCellModelExport": "TextHeaderCellModelExport()", + "SerializeOverride(StringBuilder)": "SerializeOverride(StringBuilder)", + "SerializeOverride": "SerializeOverride(StringBuilder)", + "Type": "Type" + } + } + ], + "TextHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "TextHeaderDescription()": "TextHeaderDescription()", + "TextHeaderDescription": "TextHeaderDescription()", + "Type": "Type" + } + } + ], + "TextHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextHeaderDescriptionMetadata()": "TextHeaderDescriptionMetadata()", + "TextHeaderDescriptionMetadata": "TextHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TextHeaderDescriptionModule()": "TextHeaderDescriptionModule()", + "TextHeaderDescriptionModule": "TextHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextIconSetBuiltInTypes": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/enums/TextIconSetBuiltInTypes", + "k": "enum", + "s": "enums" + } + ], + "TextIconSetConditionalStyle": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/TextIconSetConditionalStyle", + "k": "class", + "s": "classes", + "m": { + "TextIconSetConditionalStyle()": "TextIconSetConditionalStyle()", + "TextIconSetConditionalStyle": "TextIconSetConditionalStyle()", + "IconType": "IconType" + } + } + ], + "TextIconSetConditionalStyleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextIconSetConditionalStyleDescription", + "k": "class", + "s": "classes", + "m": { + "TextIconSetConditionalStyleDescription()": "TextIconSetConditionalStyleDescription()", + "TextIconSetConditionalStyleDescription": "TextIconSetConditionalStyleDescription()", + "IconType": "IconType", + "Type": "Type" + } + } + ], + "TextIconSetConditionalStyleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextIconSetConditionalStyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TextIconSetConditionalStyleDescriptionMetadata()": "TextIconSetConditionalStyleDescriptionMetadata()", + "TextIconSetConditionalStyleDescriptionMetadata": "TextIconSetConditionalStyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextIconSetConditionalStyleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TextIconSetConditionalStyleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TextIconSetConditionalStyleDescriptionModule()": "TextIconSetConditionalStyleDescriptionModule()", + "TextIconSetConditionalStyleDescriptionModule": "TextIconSetConditionalStyleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TextMetricsUtilities": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/TextMetricsUtilities", + "k": "class", + "s": "classes", + "m": { + "ExecuteWithDispatcher(Action)": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher(Action, object)": "ExecuteWithDispatcher(Action, object)", + "FloorOfLog10(double)": "FloorOfLog10(double)", + "FloorOfLog10": "FloorOfLog10(double)", + "MeasureText(string, string, float, bool, bool, bool, ref Rect)": "MeasureText(string, string, float, bool, bool, bool, ref Rect)", + "MeasureText": "MeasureText(string, string, float, bool, bool, bool, ref Rect)", + "MidpointRoundingAwayFromZero(double)": "MidpointRoundingAwayFromZero(double)", + "MidpointRoundingAwayFromZero": "MidpointRoundingAwayFromZero(double)", + "MidpointRoundingAwayFromZero(double, int)": "MidpointRoundingAwayFromZero(double, int)", + "MidpointRoundingAwayFromZero(float)": "MidpointRoundingAwayFromZero(float)", + "RoundToExcelDisplayValue(double)": "RoundToExcelDisplayValue(double)", + "RoundToExcelDisplayValue": "RoundToExcelDisplayValue(double)" + } + } + ], + "ThisMonthExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisMonthExpression", + "k": "class", + "s": "classes", + "m": { + "ThisMonthExpression(FilterExpression)": "ThisMonthExpression(FilterExpression)", + "ThisMonthExpression": "ThisMonthExpression(FilterExpression)", + "ThisMonthExpression(string)": "ThisMonthExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "ThisMonthExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisMonthExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "ThisMonthExpressionDescription()": "ThisMonthExpressionDescription()", + "ThisMonthExpressionDescription": "ThisMonthExpressionDescription()", + "Type": "Type" + } + } + ], + "ThisMonthExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisMonthExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ThisMonthExpressionDescriptionMetadata()": "ThisMonthExpressionDescriptionMetadata()", + "ThisMonthExpressionDescriptionMetadata": "ThisMonthExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ThisQuarterExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisQuarterExpression", + "k": "class", + "s": "classes", + "m": { + "ThisQuarterExpression(FilterExpression)": "ThisQuarterExpression(FilterExpression)", + "ThisQuarterExpression": "ThisQuarterExpression(FilterExpression)", + "ThisQuarterExpression(string)": "ThisQuarterExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "ThisQuarterExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisQuarterExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "ThisQuarterExpressionDescription()": "ThisQuarterExpressionDescription()", + "ThisQuarterExpressionDescription": "ThisQuarterExpressionDescription()", + "Type": "Type" + } + } + ], + "ThisQuarterExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisQuarterExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ThisQuarterExpressionDescriptionMetadata()": "ThisQuarterExpressionDescriptionMetadata()", + "ThisQuarterExpressionDescriptionMetadata": "ThisQuarterExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ThisWeekExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisWeekExpression", + "k": "class", + "s": "classes", + "m": { + "ThisWeekExpression(FilterExpression)": "ThisWeekExpression(FilterExpression)", + "ThisWeekExpression": "ThisWeekExpression(FilterExpression)", + "ThisWeekExpression(string)": "ThisWeekExpression(string)", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "ThisWeekExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisWeekExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "ThisWeekExpressionDescription()": "ThisWeekExpressionDescription()", + "ThisWeekExpressionDescription": "ThisWeekExpressionDescription()", + "Type": "Type" + } + } + ], + "ThisWeekExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisWeekExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ThisWeekExpressionDescriptionMetadata()": "ThisWeekExpressionDescriptionMetadata()", + "ThisWeekExpressionDescriptionMetadata": "ThisWeekExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ThisYearExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisYearExpression", + "k": "class", + "s": "classes", + "m": { + "ThisYearExpression(FilterExpression)": "ThisYearExpression(FilterExpression)", + "ThisYearExpression": "ThisYearExpression(FilterExpression)", + "ThisYearExpression(string)": "ThisYearExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "ThisYearExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisYearExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "ThisYearExpressionDescription()": "ThisYearExpressionDescription()", + "ThisYearExpressionDescription": "ThisYearExpressionDescription()", + "Type": "Type" + } + } + ], + "ThisYearExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ThisYearExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ThisYearExpressionDescriptionMetadata()": "ThisYearExpressionDescriptionMetadata()", + "ThisYearExpressionDescriptionMetadata": "ThisYearExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileGeneratorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileGeneratorDescription", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorDescription()": "TileGeneratorDescription()", + "TileGeneratorDescription": "TileGeneratorDescription()", + "Type": "Type" + } + } + ], + "TileGeneratorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileGeneratorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorDescriptionMetadata()": "TileGeneratorDescriptionMetadata()", + "TileGeneratorDescriptionMetadata": "TileGeneratorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileGeneratorMapImagery": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/TileGeneratorMapImagery", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorMapImagery()": "TileGeneratorMapImagery()", + "TileGeneratorMapImagery": "TileGeneratorMapImagery()", + "TileGenerator": "TileGenerator" + } + } + ], + "TileGeneratorMapImageryDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileGeneratorMapImageryDescription", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorMapImageryDescription()": "TileGeneratorMapImageryDescription()", + "TileGeneratorMapImageryDescription": "TileGeneratorMapImageryDescription()", + "TileGenerator": "TileGenerator", + "Type": "Type" + } + } + ], + "TileGeneratorMapImageryDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileGeneratorMapImageryDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorMapImageryDescriptionMetadata()": "TileGeneratorMapImageryDescriptionMetadata()", + "TileGeneratorMapImageryDescriptionMetadata": "TileGeneratorMapImageryDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileGeneratorMapImageryDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileGeneratorMapImageryDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorMapImageryDescriptionModule()": "TileGeneratorMapImageryDescriptionModule()", + "TileGeneratorMapImageryDescriptionModule": "TileGeneratorMapImageryDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileGeneratorTileSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileGeneratorTileSource", + "k": "class", + "s": "classes", + "m": { + "TileGeneratorTileSource()": "TileGeneratorTileSource()", + "TileGeneratorTileSource": "TileGeneratorTileSource()" + } + } + ], + "TileImageCreatedEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileImageCreatedEventArgs", + "k": "class", + "s": "classes", + "m": { + "TileImageCreatedEventArgs()": "TileImageCreatedEventArgs()", + "TileImageCreatedEventArgs": "TileImageCreatedEventArgs()", + "ImageData": "ImageData", + "Url": "Url", + "X": "X", + "Y": "Y", + "Z": "Z" + } + } + ], + "TileImageZoomChangingEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileImageZoomChangingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TileImageZoomChangingEventArgs()": "TileImageZoomChangingEventArgs()", + "TileImageZoomChangingEventArgs": "TileImageZoomChangingEventArgs()", + "X": "X", + "Y": "Y", + "Z": "Z" + } + } + ], + "TileInfoResponseModel": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/TileInfoResponseModel", + "k": "class", + "s": "classes", + "m": { + "TileInfoResponseModel()": "TileInfoResponseModel()", + "TileInfoResponseModel": "TileInfoResponseModel()", + "LevelOfDetails": "LevelOfDetails" + } + } + ], + "TileSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "TileSeriesDescription()": "TileSeriesDescription()", + "TileSeriesDescription": "TileSeriesDescription()", + "TileImagery": "TileImagery", + "Type": "Type" + } + } + ], + "TileSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TileSeriesDescriptionMetadata()": "TileSeriesDescriptionMetadata()", + "TileSeriesDescriptionMetadata": "TileSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TileSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TileSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TileSeriesDescriptionModule()": "TileSeriesDescriptionModule()", + "TileSeriesDescriptionModule": "TileSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TimeAxisBase", + "k": "class", + "s": "classes", + "m": { + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "DateTimeMemberPath": "DateTimeMemberPath", + "DateTimeMemberPathProperty": "DateTimeMemberPathProperty", + "GetIndexClosestToUnscaledValue(double)": "GetIndexClosestToUnscaledValue(double)", + "GetIndexClosestToUnscaledValue": "GetIndexClosestToUnscaledValue(double)", + "IsDataPreSorted": "IsDataPreSorted", + "IsDataPreSortedProperty": "IsDataPreSortedProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "NotifyDataChanged()": "NotifyDataChanged()", + "NotifyDataChanged": "NotifyDataChanged()" + } + } + ], + "TimeAxisBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisBaseDescription", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBaseDescription()": "TimeAxisBaseDescription()", + "TimeAxisBaseDescription": "TimeAxisBaseDescription()", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueChangeRef": "ActualMaximumValueChangeRef", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueChangeRef": "ActualMinimumValueChangeRef", + "DateTimeMemberPath": "DateTimeMemberPath", + "IsDataPreSorted": "IsDataPreSorted", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Type": "Type" + } + } + ], + "TimeAxisBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBaseDescriptionMetadata()": "TimeAxisBaseDescriptionMetadata()", + "TimeAxisBaseDescriptionMetadata": "TimeAxisBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisBreak": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TimeAxisBreak", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreak()": "TimeAxisBreak()", + "TimeAxisBreak": "TimeAxisBreak()", + "End": "End", + "Interval": "Interval", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Start": "Start", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisBreakCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TimeAxisBreakCollection", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreakCollection()": "TimeAxisBreakCollection()", + "TimeAxisBreakCollection": "TimeAxisBreakCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisBreakDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisBreakDescription", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreakDescription()": "TimeAxisBreakDescription()", + "TimeAxisBreakDescription": "TimeAxisBreakDescription()", + "End": "End", + "Interval": "Interval", + "Start": "Start", + "Type": "Type" + } + } + ], + "TimeAxisBreakDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisBreakDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreakDescriptionMetadata()": "TimeAxisBreakDescriptionMetadata()", + "TimeAxisBreakDescriptionMetadata": "TimeAxisBreakDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisBreakDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisBreakDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TimeAxisBreakDescriptionModule()": "TimeAxisBreakDescriptionModule()", + "TimeAxisBreakDescriptionModule": "TimeAxisBreakDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisDisplayType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/TimeAxisDisplayType", + "k": "enum", + "s": "enums" + } + ], + "TimeAxisInterval": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TimeAxisInterval", + "k": "class", + "s": "classes", + "m": { + "TimeAxisInterval()": "TimeAxisInterval()", + "TimeAxisInterval": "TimeAxisInterval()", + "Interval": "Interval", + "IntervalType": "IntervalType", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Range": "Range", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisIntervalCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TimeAxisIntervalCollection", + "k": "class", + "s": "classes", + "m": { + "TimeAxisIntervalCollection()": "TimeAxisIntervalCollection()", + "TimeAxisIntervalCollection": "TimeAxisIntervalCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisIntervalDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisIntervalDescription", + "k": "class", + "s": "classes", + "m": { + "TimeAxisIntervalDescription()": "TimeAxisIntervalDescription()", + "TimeAxisIntervalDescription": "TimeAxisIntervalDescription()", + "Interval": "Interval", + "IntervalType": "IntervalType", + "Range": "Range", + "Type": "Type" + } + } + ], + "TimeAxisIntervalDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisIntervalDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeAxisIntervalDescriptionMetadata()": "TimeAxisIntervalDescriptionMetadata()", + "TimeAxisIntervalDescriptionMetadata": "TimeAxisIntervalDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisIntervalDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisIntervalDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TimeAxisIntervalDescriptionModule()": "TimeAxisIntervalDescriptionModule()", + "TimeAxisIntervalDescriptionModule": "TimeAxisIntervalDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisIntervalType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/TimeAxisIntervalType", + "k": "enum", + "s": "enums" + } + ], + "TimeAxisLabelFormat": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TimeAxisLabelFormat", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormat()": "TimeAxisLabelFormat()", + "TimeAxisLabelFormat": "TimeAxisLabelFormat()", + "Format": "Format", + "LabelFormat": "LabelFormat", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "OnLabelFormatOverride(LabelFormatOverrideEventArgs)": "OnLabelFormatOverride(LabelFormatOverrideEventArgs)", + "OnLabelFormatOverride": "OnLabelFormatOverride(LabelFormatOverrideEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Range": "Range", + "RepeatedDayFormat": "RepeatedDayFormat", + "RepeatedDayLabelFormat": "RepeatedDayLabelFormat", + "RepeatedDayLabelFormatSpecifiers": "RepeatedDayLabelFormatSpecifiers", + "RepeatedMonthFormat": "RepeatedMonthFormat", + "RepeatedMonthLabelFormat": "RepeatedMonthLabelFormat", + "RepeatedMonthLabelFormatSpecifiers": "RepeatedMonthLabelFormatSpecifiers", + "RepeatedYearFormat": "RepeatedYearFormat", + "RepeatedYearLabelFormat": "RepeatedYearLabelFormat", + "RepeatedYearLabelFormatSpecifiers": "RepeatedYearLabelFormatSpecifiers", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisLabelFormatCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TimeAxisLabelFormatCollection", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormatCollection()": "TimeAxisLabelFormatCollection()", + "TimeAxisLabelFormatCollection": "TimeAxisLabelFormatCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TimeAxisLabelFormatDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisLabelFormatDescription", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormatDescription()": "TimeAxisLabelFormatDescription()", + "TimeAxisLabelFormatDescription": "TimeAxisLabelFormatDescription()", + "Format": "Format", + "LabelFormat": "LabelFormat", + "LabelFormatOverrideRef": "LabelFormatOverrideRef", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "Range": "Range", + "RepeatedDayFormat": "RepeatedDayFormat", + "RepeatedDayLabelFormat": "RepeatedDayLabelFormat", + "RepeatedDayLabelFormatSpecifiers": "RepeatedDayLabelFormatSpecifiers", + "RepeatedMonthFormat": "RepeatedMonthFormat", + "RepeatedMonthLabelFormat": "RepeatedMonthLabelFormat", + "RepeatedMonthLabelFormatSpecifiers": "RepeatedMonthLabelFormatSpecifiers", + "RepeatedYearFormat": "RepeatedYearFormat", + "RepeatedYearLabelFormat": "RepeatedYearLabelFormat", + "RepeatedYearLabelFormatSpecifiers": "RepeatedYearLabelFormatSpecifiers", + "Type": "Type" + } + } + ], + "TimeAxisLabelFormatDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisLabelFormatDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormatDescriptionMetadata()": "TimeAxisLabelFormatDescriptionMetadata()", + "TimeAxisLabelFormatDescriptionMetadata": "TimeAxisLabelFormatDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisLabelFormatDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeAxisLabelFormatDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TimeAxisLabelFormatDescriptionModule()": "TimeAxisLabelFormatDescriptionModule()", + "TimeAxisLabelFormatDescriptionModule": "TimeAxisLabelFormatDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeAxisLabellingMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/TimeAxisLabellingMode", + "k": "enum", + "s": "enums" + } + ], + "TimeXAxis": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TimeXAxis", + "k": "class", + "s": "classes", + "m": { + "TimeXAxis()": "TimeXAxis()", + "TimeXAxis": "TimeXAxis()", + "Breaks": "Breaks", + "Intervals": "Intervals", + "LabelFormats": "LabelFormats", + "LabellingMode": "LabellingMode", + "LabellingModeProperty": "LabellingModeProperty", + "OnVisibleRangeChanged(EventArgs)": "OnVisibleRangeChanged(EventArgs)", + "OnVisibleRangeChanged": "OnVisibleRangeChanged(EventArgs)" + } + } + ], + "TimeXAxisDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeXAxisDescription", + "k": "class", + "s": "classes", + "m": { + "TimeXAxisDescription()": "TimeXAxisDescription()", + "TimeXAxisDescription": "TimeXAxisDescription()", + "Breaks": "Breaks", + "Intervals": "Intervals", + "LabelFormats": "LabelFormats", + "LabellingMode": "LabellingMode", + "Type": "Type" + } + } + ], + "TimeXAxisDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeXAxisDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TimeXAxisDescriptionMetadata()": "TimeXAxisDescriptionMetadata()", + "TimeXAxisDescriptionMetadata": "TimeXAxisDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TimeXAxisDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TimeXAxisDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TimeXAxisDescriptionModule()": "TimeXAxisDescriptionModule()", + "TimeXAxisDescriptionModule": "TimeXAxisDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TitlesPosition": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/enums/TitlesPosition", + "k": "enum", + "s": "enums" + } + ], + "TodayExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TodayExpression", + "k": "class", + "s": "classes", + "m": { + "TodayExpression(FilterExpression)": "TodayExpression(FilterExpression)", + "TodayExpression": "TodayExpression(FilterExpression)", + "TodayExpression(string)": "TodayExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "TodayExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TodayExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "TodayExpressionDescription()": "TodayExpressionDescription()", + "TodayExpressionDescription": "TodayExpressionDescription()", + "Type": "Type" + } + } + ], + "TodayExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TodayExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TodayExpressionDescriptionMetadata()": "TodayExpressionDescriptionMetadata()", + "TodayExpressionDescriptionMetadata": "TodayExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TokenResponseModel": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/TokenResponseModel", + "k": "class", + "s": "classes", + "m": { + "TokenResponseModel()": "TokenResponseModel()", + "TokenResponseModel": "TokenResponseModel()", + "Expires": "Expires", + "Ssl": "Ssl", + "Token": "Token" + } + } + ], + "TomorrowExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TomorrowExpression", + "k": "class", + "s": "classes", + "m": { + "TomorrowExpression(FilterExpression)": "TomorrowExpression(FilterExpression)", + "TomorrowExpression": "TomorrowExpression(FilterExpression)", + "TomorrowExpression(string)": "TomorrowExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "TomorrowExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TomorrowExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "TomorrowExpressionDescription()": "TomorrowExpressionDescription()", + "TomorrowExpressionDescription": "TomorrowExpressionDescription()", + "Type": "Type" + } + } + ], + "TomorrowExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TomorrowExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TomorrowExpressionDescriptionMetadata()": "TomorrowExpressionDescriptionMetadata()", + "TomorrowExpressionDescriptionMetadata": "TomorrowExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolAction": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolAction", + "k": "class", + "s": "classes", + "m": { + "AccentColor": "AccentColor", + "AccentColorProperty": "AccentColorProperty", + "ActionId": "ActionId", + "ActionIdProperty": "ActionIdProperty", + "Actions": "Actions", + "ActualAccentColor": "ActualAccentColor", + "ActualAccentColorProperty": "ActualAccentColorProperty", + "ActualBackground": "ActualBackground", + "ActualBackgroundProperty": "ActualBackgroundProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualDisabledTextColorProperty": "ActualDisabledTextColorProperty", + "ActualHighlightColor": "ActualHighlightColor", + "ActualHighlightColorProperty": "ActualHighlightColorProperty", + "ActualHighlightRadius": "ActualHighlightRadius", + "ActualHighlightRadiusProperty": "ActualHighlightRadiusProperty", + "ActualHighlightWidth": "ActualHighlightWidth", + "ActualHighlightWidthProperty": "ActualHighlightWidthProperty", + "ActualHoverBackground": "ActualHoverBackground", + "ActualHoverBackgroundProperty": "ActualHoverBackgroundProperty", + "ActualIconFill": "ActualIconFill", + "ActualIconFillProperty": "ActualIconFillProperty", + "ActualIconHeight": "ActualIconHeight", + "ActualIconHeightProperty": "ActualIconHeightProperty", + "ActualIconStroke": "ActualIconStroke", + "ActualIconStrokeProperty": "ActualIconStrokeProperty", + "ActualIconWidth": "ActualIconWidth", + "ActualIconWidthProperty": "ActualIconWidthProperty", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingBottomProperty": "ActualPaddingBottomProperty", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingLeftProperty": "ActualPaddingLeftProperty", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingRightProperty": "ActualPaddingRightProperty", + "ActualPaddingTop": "ActualPaddingTop", + "ActualPaddingTopProperty": "ActualPaddingTopProperty", + "ActualSubPanelRowHeight": "ActualSubPanelRowHeight", + "ActualSubPanelRowHeightProperty": "ActualSubPanelRowHeightProperty", + "ActualSubtitleTextColor": "ActualSubtitleTextColor", + "ActualSubtitleTextColorProperty": "ActualSubtitleTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "AfterId": "AfterId", + "AfterIdProperty": "AfterIdProperty", + "Background": "Background", + "BackgroundProperty": "BackgroundProperty", + "BeforeId": "BeforeId", + "BeforeIdProperty": "BeforeIdProperty", + "CloseOnExecute": "CloseOnExecute", + "CloseOnExecuteProperty": "CloseOnExecuteProperty", + "CloseSubmenu()": "CloseSubmenu()", + "CloseSubmenu": "CloseSubmenu()", + "CommandArgument": "CommandArgument", + "CommandArgumentProperty": "CommandArgumentProperty", + "CommandArgumentValue": "CommandArgumentValue", + "CommandArgumentValueProperty": "CommandArgumentValueProperty", + "CommandId": "CommandId", + "CommandIdProperty": "CommandIdProperty", + "ContextBindings": "ContextBindings", + "CreateFromInfo(ToolActionInfo)": "CreateFromInfo(ToolActionInfo)", + "CreateFromInfo": "CreateFromInfo(ToolActionInfo)", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisabledTextColor": "DisabledTextColor", + "DisabledTextColorProperty": "DisabledTextColorProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "Height": "Height", + "HeightProperty": "HeightProperty", + "HighlightColor": "HighlightColor", + "HighlightColorProperty": "HighlightColorProperty", + "HighlightRadius": "HighlightRadius", + "HighlightRadiusProperty": "HighlightRadiusProperty", + "HighlightWidth": "HighlightWidth", + "HighlightWidthProperty": "HighlightWidthProperty", + "HoverBackground": "HoverBackground", + "HoverBackgroundProperty": "HoverBackgroundProperty", + "IconCollectionName": "IconCollectionName", + "IconCollectionNameProperty": "IconCollectionNameProperty", + "IconFill": "IconFill", + "IconFillColors": "IconFillColors", + "IconFillColorsProperty": "IconFillColorsProperty", + "IconFillProperty": "IconFillProperty", + "IconHeight": "IconHeight", + "IconHeightProperty": "IconHeightProperty", + "IconName": "IconName", + "IconNameProperty": "IconNameProperty", + "IconStroke": "IconStroke", + "IconStrokeColors": "IconStrokeColors", + "IconStrokeColorsProperty": "IconStrokeColorsProperty", + "IconStrokeProperty": "IconStrokeProperty", + "IconStrokeWidth": "IconStrokeWidth", + "IconStrokeWidthProperty": "IconStrokeWidthProperty", + "IconViewBoxHeight": "IconViewBoxHeight", + "IconViewBoxHeightProperty": "IconViewBoxHeightProperty", + "IconViewBoxLeft": "IconViewBoxLeft", + "IconViewBoxLeftProperty": "IconViewBoxLeftProperty", + "IconViewBoxTop": "IconViewBoxTop", + "IconViewBoxTopProperty": "IconViewBoxTopProperty", + "IconViewBoxWidth": "IconViewBoxWidth", + "IconViewBoxWidthProperty": "IconViewBoxWidthProperty", + "IconWidth": "IconWidth", + "IconWidthProperty": "IconWidthProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHighlighted": "IsHighlighted", + "IsHighlightedProperty": "IsHighlightedProperty", + "IsOpen": "IsOpen", + "IsOpenProperty": "IsOpenProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "OnOnCommand(ToolCommandEventArgs)": "OnOnCommand(ToolCommandEventArgs)", + "OnOnCommand": "OnOnCommand(ToolCommandEventArgs)", + "OnPerformed(ToolActionPerformedEventArgs)": "OnPerformed(ToolActionPerformedEventArgs)", + "OnPerformed": "OnPerformed(ToolActionPerformedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OpenSubMenu()": "OpenSubMenu()", + "OpenSubMenu": "OpenSubMenu()", + "OverlayId": "OverlayId", + "OverlayIdProperty": "OverlayIdProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "ParentId": "ParentId", + "ParentIdProperty": "ParentIdProperty", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubPanelRowHeightProperty": "SubPanelRowHeightProperty", + "Subtitle": "Subtitle", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleProperty": "SubtitleProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "Title": "Title", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "TitleHorizontalAlignmentProperty": "TitleHorizontalAlignmentProperty", + "TitleProperty": "TitleProperty", + "Visibility": "Visibility", + "VisibilityProperty": "VisibilityProperty", + "Width": "Width", + "WidthProperty": "WidthProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionButton": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionButton", + "k": "class", + "s": "classes", + "m": { + "ToolActionButton()": "ToolActionButton()", + "ToolActionButton": "ToolActionButton()", + "CornerRadius": "CornerRadius", + "CornerRadiusProperty": "CornerRadiusProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty" + } + } + ], + "ToolActionButtonDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonDescription()": "ToolActionButtonDescription()", + "ToolActionButtonDescription": "ToolActionButtonDescription()", + "CornerRadius": "CornerRadius", + "DisplayType": "DisplayType", + "Type": "Type" + } + } + ], + "ToolActionButtonDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonDescriptionMetadata()": "ToolActionButtonDescriptionMetadata()", + "ToolActionButtonDescriptionMetadata": "ToolActionButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonDescriptionModule()": "ToolActionButtonDescriptionModule()", + "ToolActionButtonDescriptionModule": "ToolActionButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonDisplayType": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ToolActionButtonDisplayType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionButtonGroupDisplayType": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ToolActionButtonGroupDisplayType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionButtonInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonInfo()": "ToolActionButtonInfo()", + "ToolActionButtonInfo": "ToolActionButtonInfo()", + "DisplayType": "DisplayType" + } + } + ], + "ToolActionButtonInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonInfoDescription()": "ToolActionButtonInfoDescription()", + "ToolActionButtonInfoDescription": "ToolActionButtonInfoDescription()", + "DisplayType": "DisplayType", + "Type": "Type" + } + } + ], + "ToolActionButtonInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonInfoDescriptionMetadata()": "ToolActionButtonInfoDescriptionMetadata()", + "ToolActionButtonInfoDescriptionMetadata": "ToolActionButtonInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonInfoDisplayType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ToolActionButtonInfoDisplayType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionButtonPair": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionButtonPair", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPair()": "ToolActionButtonPair()", + "ToolActionButtonPair": "ToolActionButtonPair()", + "ActualLeftIconFill": "ActualLeftIconFill", + "ActualLeftIconFillProperty": "ActualLeftIconFillProperty", + "ActualLeftIconStroke": "ActualLeftIconStroke", + "ActualLeftIconStrokeProperty": "ActualLeftIconStrokeProperty", + "ActualRightIconFill": "ActualRightIconFill", + "ActualRightIconFillProperty": "ActualRightIconFillProperty", + "ActualRightIconStroke": "ActualRightIconStroke", + "ActualRightIconStrokeProperty": "ActualRightIconStrokeProperty", + "CornerRadius": "CornerRadius", + "CornerRadiusProperty": "CornerRadiusProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "IsToggleDisabled": "IsToggleDisabled", + "IsToggleDisabledProperty": "IsToggleDisabledProperty", + "LeftCommandArgument": "LeftCommandArgument", + "LeftCommandArgumentProperty": "LeftCommandArgumentProperty", + "LeftIconCollectionName": "LeftIconCollectionName", + "LeftIconCollectionNameProperty": "LeftIconCollectionNameProperty", + "LeftIconFill": "LeftIconFill", + "LeftIconFillColors": "LeftIconFillColors", + "LeftIconFillColorsProperty": "LeftIconFillColorsProperty", + "LeftIconFillProperty": "LeftIconFillProperty", + "LeftIconName": "LeftIconName", + "LeftIconNameProperty": "LeftIconNameProperty", + "LeftIconStroke": "LeftIconStroke", + "LeftIconStrokeColors": "LeftIconStrokeColors", + "LeftIconStrokeColorsProperty": "LeftIconStrokeColorsProperty", + "LeftIconStrokeProperty": "LeftIconStrokeProperty", + "LeftIconStrokeWidth": "LeftIconStrokeWidth", + "LeftIconStrokeWidthProperty": "LeftIconStrokeWidthProperty", + "LeftIconViewBoxHeight": "LeftIconViewBoxHeight", + "LeftIconViewBoxHeightProperty": "LeftIconViewBoxHeightProperty", + "LeftIconViewBoxLeft": "LeftIconViewBoxLeft", + "LeftIconViewBoxLeftProperty": "LeftIconViewBoxLeftProperty", + "LeftIconViewBoxTop": "LeftIconViewBoxTop", + "LeftIconViewBoxTopProperty": "LeftIconViewBoxTopProperty", + "LeftIconViewBoxWidth": "LeftIconViewBoxWidth", + "LeftIconViewBoxWidthProperty": "LeftIconViewBoxWidthProperty", + "LeftIsDisabled": "LeftIsDisabled", + "LeftIsDisabledProperty": "LeftIsDisabledProperty", + "LeftIsSelected": "LeftIsSelected", + "LeftIsSelectedProperty": "LeftIsSelectedProperty", + "LeftTitle": "LeftTitle", + "LeftTitleProperty": "LeftTitleProperty", + "RightCommandArgument": "RightCommandArgument", + "RightCommandArgumentProperty": "RightCommandArgumentProperty", + "RightIconCollectionName": "RightIconCollectionName", + "RightIconCollectionNameProperty": "RightIconCollectionNameProperty", + "RightIconFill": "RightIconFill", + "RightIconFillColors": "RightIconFillColors", + "RightIconFillColorsProperty": "RightIconFillColorsProperty", + "RightIconFillProperty": "RightIconFillProperty", + "RightIconName": "RightIconName", + "RightIconNameProperty": "RightIconNameProperty", + "RightIconStroke": "RightIconStroke", + "RightIconStrokeColors": "RightIconStrokeColors", + "RightIconStrokeColorsProperty": "RightIconStrokeColorsProperty", + "RightIconStrokeProperty": "RightIconStrokeProperty", + "RightIconStrokeWidth": "RightIconStrokeWidth", + "RightIconStrokeWidthProperty": "RightIconStrokeWidthProperty", + "RightIconViewBoxHeight": "RightIconViewBoxHeight", + "RightIconViewBoxHeightProperty": "RightIconViewBoxHeightProperty", + "RightIconViewBoxLeft": "RightIconViewBoxLeft", + "RightIconViewBoxLeftProperty": "RightIconViewBoxLeftProperty", + "RightIconViewBoxTop": "RightIconViewBoxTop", + "RightIconViewBoxTopProperty": "RightIconViewBoxTopProperty", + "RightIconViewBoxWidth": "RightIconViewBoxWidth", + "RightIconViewBoxWidthProperty": "RightIconViewBoxWidthProperty", + "RightIsDisabled": "RightIsDisabled", + "RightIsDisabledProperty": "RightIsDisabledProperty", + "RightIsSelected": "RightIsSelected", + "RightIsSelectedProperty": "RightIsSelectedProperty", + "RightTitle": "RightTitle", + "RightTitleProperty": "RightTitleProperty" + } + } + ], + "ToolActionButtonPairDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonPairDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairDescription()": "ToolActionButtonPairDescription()", + "ToolActionButtonPairDescription": "ToolActionButtonPairDescription()", + "ActualLeftIconFill": "ActualLeftIconFill", + "ActualLeftIconStroke": "ActualLeftIconStroke", + "ActualRightIconFill": "ActualRightIconFill", + "ActualRightIconStroke": "ActualRightIconStroke", + "CornerRadius": "CornerRadius", + "DisplayType": "DisplayType", + "IsToggleDisabled": "IsToggleDisabled", + "LeftCommandArgument": "LeftCommandArgument", + "LeftIconCollectionName": "LeftIconCollectionName", + "LeftIconFill": "LeftIconFill", + "LeftIconFillColors": "LeftIconFillColors", + "LeftIconName": "LeftIconName", + "LeftIconStroke": "LeftIconStroke", + "LeftIconStrokeColors": "LeftIconStrokeColors", + "LeftIconStrokeWidth": "LeftIconStrokeWidth", + "LeftIconViewBoxHeight": "LeftIconViewBoxHeight", + "LeftIconViewBoxLeft": "LeftIconViewBoxLeft", + "LeftIconViewBoxTop": "LeftIconViewBoxTop", + "LeftIconViewBoxWidth": "LeftIconViewBoxWidth", + "LeftIsDisabled": "LeftIsDisabled", + "LeftIsSelected": "LeftIsSelected", + "LeftTitle": "LeftTitle", + "RightCommandArgument": "RightCommandArgument", + "RightIconCollectionName": "RightIconCollectionName", + "RightIconFill": "RightIconFill", + "RightIconFillColors": "RightIconFillColors", + "RightIconName": "RightIconName", + "RightIconStroke": "RightIconStroke", + "RightIconStrokeColors": "RightIconStrokeColors", + "RightIconStrokeWidth": "RightIconStrokeWidth", + "RightIconViewBoxHeight": "RightIconViewBoxHeight", + "RightIconViewBoxLeft": "RightIconViewBoxLeft", + "RightIconViewBoxTop": "RightIconViewBoxTop", + "RightIconViewBoxWidth": "RightIconViewBoxWidth", + "RightIsDisabled": "RightIsDisabled", + "RightIsSelected": "RightIsSelected", + "RightTitle": "RightTitle", + "Type": "Type" + } + } + ], + "ToolActionButtonPairDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonPairDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairDescriptionMetadata()": "ToolActionButtonPairDescriptionMetadata()", + "ToolActionButtonPairDescriptionMetadata": "ToolActionButtonPairDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonPairDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonPairDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairDescriptionModule()": "ToolActionButtonPairDescriptionModule()", + "ToolActionButtonPairDescriptionModule": "ToolActionButtonPairDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonPairInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonPairInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairInfo()": "ToolActionButtonPairInfo()", + "ToolActionButtonPairInfo": "ToolActionButtonPairInfo()", + "IsToggleDisabled": "IsToggleDisabled", + "LeftCommandArgument": "LeftCommandArgument", + "LeftIconCollectionName": "LeftIconCollectionName", + "LeftIconFill": "LeftIconFill", + "LeftIconName": "LeftIconName", + "LeftIconStroke": "LeftIconStroke", + "LeftIconStrokeWidth": "LeftIconStrokeWidth", + "LeftIconViewBoxHeight": "LeftIconViewBoxHeight", + "LeftIconViewBoxLeft": "LeftIconViewBoxLeft", + "LeftIconViewBoxTop": "LeftIconViewBoxTop", + "LeftIconViewBoxWidth": "LeftIconViewBoxWidth", + "LeftTitle": "LeftTitle", + "RightCommandArgument": "RightCommandArgument", + "RightIconCollectionName": "RightIconCollectionName", + "RightIconFill": "RightIconFill", + "RightIconName": "RightIconName", + "RightIconStroke": "RightIconStroke", + "RightIconStrokeWidth": "RightIconStrokeWidth", + "RightIconViewBoxHeight": "RightIconViewBoxHeight", + "RightIconViewBoxLeft": "RightIconViewBoxLeft", + "RightIconViewBoxTop": "RightIconViewBoxTop", + "RightIconViewBoxWidth": "RightIconViewBoxWidth", + "RightTitle": "RightTitle" + } + } + ], + "ToolActionButtonPairInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonPairInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairInfoDescription()": "ToolActionButtonPairInfoDescription()", + "ToolActionButtonPairInfoDescription": "ToolActionButtonPairInfoDescription()", + "IsToggleDisabled": "IsToggleDisabled", + "LeftCommandArgument": "LeftCommandArgument", + "LeftIconCollectionName": "LeftIconCollectionName", + "LeftIconFill": "LeftIconFill", + "LeftIconName": "LeftIconName", + "LeftIconStroke": "LeftIconStroke", + "LeftIconStrokeWidth": "LeftIconStrokeWidth", + "LeftIconViewBoxHeight": "LeftIconViewBoxHeight", + "LeftIconViewBoxLeft": "LeftIconViewBoxLeft", + "LeftIconViewBoxTop": "LeftIconViewBoxTop", + "LeftIconViewBoxWidth": "LeftIconViewBoxWidth", + "LeftTitle": "LeftTitle", + "RightCommandArgument": "RightCommandArgument", + "RightIconCollectionName": "RightIconCollectionName", + "RightIconFill": "RightIconFill", + "RightIconName": "RightIconName", + "RightIconStroke": "RightIconStroke", + "RightIconStrokeWidth": "RightIconStrokeWidth", + "RightIconViewBoxHeight": "RightIconViewBoxHeight", + "RightIconViewBoxLeft": "RightIconViewBoxLeft", + "RightIconViewBoxTop": "RightIconViewBoxTop", + "RightIconViewBoxWidth": "RightIconViewBoxWidth", + "RightTitle": "RightTitle", + "Type": "Type" + } + } + ], + "ToolActionButtonPairInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionButtonPairInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairInfoDescriptionMetadata()": "ToolActionButtonPairInfoDescriptionMetadata()", + "ToolActionButtonPairInfoDescriptionMetadata": "ToolActionButtonPairInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionButtonPairVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionButtonPairVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonPairVisualData()": "ToolActionButtonPairVisualData()", + "ToolActionButtonPairVisualData": "ToolActionButtonPairVisualData()", + "ButtonGroup": "ButtonGroup", + "LeftButton": "LeftButton", + "LeftIcon": "LeftIcon", + "LeftLabel": "LeftLabel", + "RightButton": "RightButton", + "RightIcon": "RightIcon", + "RightLabel": "RightLabel", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionButtonVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionButtonVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionButtonVisualData()": "ToolActionButtonVisualData()", + "ToolActionButtonVisualData": "ToolActionButtonVisualData()", + "InnerButton": "InnerButton", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCheckbox": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionCheckbox", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckbox()": "ToolActionCheckbox()", + "ToolActionCheckbox": "ToolActionCheckbox()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "IsChecked": "IsChecked", + "IsCheckedProperty": "IsCheckedProperty", + "ShorthandTitle": "ShorthandTitle", + "ShorthandTitleProperty": "ShorthandTitleProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty" + } + } + ], + "ToolActionCheckboxDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxDescription()": "ToolActionCheckboxDescription()", + "ToolActionCheckboxDescription": "ToolActionCheckboxDescription()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "IsChecked": "IsChecked", + "ShorthandTitle": "ShorthandTitle", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor" + } + } + ], + "ToolActionCheckboxDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxDescriptionMetadata()": "ToolActionCheckboxDescriptionMetadata()", + "ToolActionCheckboxDescriptionMetadata": "ToolActionCheckboxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxDescriptionModule()": "ToolActionCheckboxDescriptionModule()", + "ToolActionCheckboxDescriptionModule": "ToolActionCheckboxDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxGroup": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionCheckboxGroup", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroup()": "ToolActionCheckboxGroup()", + "ToolActionCheckboxGroup": "ToolActionCheckboxGroup()", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ActualSelectedTextColorProperty": "ActualSelectedTextColorProperty", + "SelectedFontFamily": "SelectedFontFamily", + "SelectedFontFamilyProperty": "SelectedFontFamilyProperty", + "SelectedFontSize": "SelectedFontSize", + "SelectedFontSizeProperty": "SelectedFontSizeProperty", + "SelectedFontStyle": "SelectedFontStyle", + "SelectedFontStyleProperty": "SelectedFontStyleProperty", + "SelectedFontWeight": "SelectedFontWeight", + "SelectedFontWeightProperty": "SelectedFontWeightProperty", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorProperty": "SelectedTextColorProperty" + } + } + ], + "ToolActionCheckboxGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupDescription()": "ToolActionCheckboxGroupDescription()", + "ToolActionCheckboxGroupDescription": "ToolActionCheckboxGroupDescription()", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "SelectedFontFamily": "SelectedFontFamily", + "SelectedFontSize": "SelectedFontSize", + "SelectedFontStyle": "SelectedFontStyle", + "SelectedFontWeight": "SelectedFontWeight", + "SelectedTextColor": "SelectedTextColor", + "Type": "Type" + } + } + ], + "ToolActionCheckboxGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupDescriptionMetadata()": "ToolActionCheckboxGroupDescriptionMetadata()", + "ToolActionCheckboxGroupDescriptionMetadata": "ToolActionCheckboxGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupDescriptionModule()": "ToolActionCheckboxGroupDescriptionModule()", + "ToolActionCheckboxGroupDescriptionModule": "ToolActionCheckboxGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxGroupInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxGroupInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupInfo()": "ToolActionCheckboxGroupInfo()", + "ToolActionCheckboxGroupInfo": "ToolActionCheckboxGroupInfo()", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextStyle": "SelectedTextStyle" + } + } + ], + "ToolActionCheckboxGroupInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxGroupInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupInfoDescription()": "ToolActionCheckboxGroupInfoDescription()", + "ToolActionCheckboxGroupInfoDescription": "ToolActionCheckboxGroupInfoDescription()", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextStyle": "SelectedTextStyle", + "Type": "Type" + } + } + ], + "ToolActionCheckboxGroupInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxGroupInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupInfoDescriptionMetadata()": "ToolActionCheckboxGroupInfoDescriptionMetadata()", + "ToolActionCheckboxGroupInfoDescriptionMetadata": "ToolActionCheckboxGroupInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxGroupVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionCheckboxGroupVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxGroupVisualData()": "ToolActionCheckboxGroupVisualData()", + "ToolActionCheckboxGroupVisualData": "ToolActionCheckboxGroupVisualData()", + "DropdownIcon": "DropdownIcon", + "SelectedTextLabel": "SelectedTextLabel", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCheckboxInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxInfo()": "ToolActionCheckboxInfo()", + "ToolActionCheckboxInfo": "ToolActionCheckboxInfo()", + "IsChecked": "IsChecked", + "ShorthandTitle": "ShorthandTitle" + } + } + ], + "ToolActionCheckboxInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxInfoDescription()": "ToolActionCheckboxInfoDescription()", + "ToolActionCheckboxInfoDescription": "ToolActionCheckboxInfoDescription()", + "IsChecked": "IsChecked", + "ShorthandTitle": "ShorthandTitle", + "Type": "Type" + } + } + ], + "ToolActionCheckboxInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxInfoDescriptionMetadata()": "ToolActionCheckboxInfoDescriptionMetadata()", + "ToolActionCheckboxInfoDescriptionMetadata": "ToolActionCheckboxInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxList": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionCheckboxList", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxList()": "ToolActionCheckboxList()", + "ToolActionCheckboxList": "ToolActionCheckboxList()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "DataMemberPath": "DataMemberPath", + "DataMemberPathProperty": "DataMemberPathProperty", + "IndexType": "IndexType", + "IndexTypeProperty": "IndexTypeProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "PrimaryKey": "PrimaryKey", + "PrimaryKeyProperty": "PrimaryKeyProperty", + "SelectedKeys": "SelectedKeys", + "SelectedKeysProperty": "SelectedKeysProperty", + "SelectedMemberPath": "SelectedMemberPath", + "SelectedMemberPathProperty": "SelectedMemberPathProperty", + "ShowSelectAll": "ShowSelectAll", + "ShowSelectAllProperty": "ShowSelectAllProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty" + } + } + ], + "ToolActionCheckboxListDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxListDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListDescription()": "ToolActionCheckboxListDescription()", + "ToolActionCheckboxListDescription": "ToolActionCheckboxListDescription()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "DataMemberPath": "DataMemberPath", + "DataSourceRef": "DataSourceRef", + "IndexType": "IndexType", + "PrimaryKey": "PrimaryKey", + "SelectedKeys": "SelectedKeys", + "SelectedMemberPath": "SelectedMemberPath", + "ShowSelectAll": "ShowSelectAll", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor" + } + } + ], + "ToolActionCheckboxListDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxListDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListDescriptionMetadata()": "ToolActionCheckboxListDescriptionMetadata()", + "ToolActionCheckboxListDescriptionMetadata": "ToolActionCheckboxListDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxListDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxListDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListDescriptionModule()": "ToolActionCheckboxListDescriptionModule()", + "ToolActionCheckboxListDescriptionModule": "ToolActionCheckboxListDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxListIndexType": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ToolActionCheckboxListIndexType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionCheckboxListInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxListInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListInfo()": "ToolActionCheckboxListInfo()", + "ToolActionCheckboxListInfo": "ToolActionCheckboxListInfo()", + "DataMemberPath": "DataMemberPath", + "ItemsSource": "ItemsSource", + "PrimaryKey": "PrimaryKey", + "SelectedMemberPath": "SelectedMemberPath", + "ShowSelectAll": "ShowSelectAll" + } + } + ], + "ToolActionCheckboxListInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxListInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListInfoDescription()": "ToolActionCheckboxListInfoDescription()", + "ToolActionCheckboxListInfoDescription": "ToolActionCheckboxListInfoDescription()", + "DataMemberPath": "DataMemberPath", + "DataSourceRef": "DataSourceRef", + "PrimaryKey": "PrimaryKey", + "SelectedMemberPath": "SelectedMemberPath", + "ShowSelectAll": "ShowSelectAll", + "Type": "Type" + } + } + ], + "ToolActionCheckboxListInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionCheckboxListInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListInfoDescriptionMetadata()": "ToolActionCheckboxListInfoDescriptionMetadata()", + "ToolActionCheckboxListInfoDescriptionMetadata": "ToolActionCheckboxListInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionCheckboxListVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionCheckboxListVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxListVisualData()": "ToolActionCheckboxListVisualData()", + "ToolActionCheckboxListVisualData": "ToolActionCheckboxListVisualData()", + "CheckboxList": "CheckboxList", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCheckboxVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionCheckboxVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionCheckboxVisualData()": "ToolActionCheckboxVisualData()", + "ToolActionCheckboxVisualData": "ToolActionCheckboxVisualData()", + "Checkbox": "Checkbox", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionCollection", + "k": "class", + "s": "classes", + "m": { + "ToolActionCollection()": "ToolActionCollection()", + "ToolActionCollection": "ToolActionCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionColorEditor": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionColorEditor", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditor()": "ToolActionColorEditor()", + "ToolActionColorEditor": "ToolActionColorEditor()", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "ToolActionColorEditorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionColorEditorDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorDescription()": "ToolActionColorEditorDescription()", + "ToolActionColorEditorDescription": "ToolActionColorEditorDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionColorEditorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionColorEditorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorDescriptionMetadata()": "ToolActionColorEditorDescriptionMetadata()", + "ToolActionColorEditorDescriptionMetadata": "ToolActionColorEditorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionColorEditorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionColorEditorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorDescriptionModule()": "ToolActionColorEditorDescriptionModule()", + "ToolActionColorEditorDescriptionModule": "ToolActionColorEditorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionColorEditorInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionColorEditorInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorInfo()": "ToolActionColorEditorInfo()", + "ToolActionColorEditorInfo": "ToolActionColorEditorInfo()", + "Value": "Value" + } + } + ], + "ToolActionColorEditorInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionColorEditorInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorInfoDescription()": "ToolActionColorEditorInfoDescription()", + "ToolActionColorEditorInfoDescription": "ToolActionColorEditorInfoDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionColorEditorInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionColorEditorInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorInfoDescriptionMetadata()": "ToolActionColorEditorInfoDescriptionMetadata()", + "ToolActionColorEditorInfoDescriptionMetadata": "ToolActionColorEditorInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionColorEditorVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionColorEditorVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionColorEditorVisualData()": "ToolActionColorEditorVisualData()", + "ToolActionColorEditorVisualData": "ToolActionColorEditorVisualData()", + "ColorEditor": "ColorEditor", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionCombo": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionCombo", + "k": "class", + "s": "classes", + "m": { + "ToolActionCombo()": "ToolActionCombo()", + "ToolActionCombo": "ToolActionCombo()", + "DisplayMemberPath": "DisplayMemberPath", + "DisplayMemberPathProperty": "DisplayMemberPathProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "SelectedValues": "SelectedValues", + "SelectedValuesProperty": "SelectedValuesProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty" + } + } + ], + "ToolActionComboDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionComboDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboDescription()": "ToolActionComboDescription()", + "ToolActionComboDescription": "ToolActionComboDescription()", + "DataSourceRef": "DataSourceRef", + "DisplayMemberPath": "DisplayMemberPath", + "SelectedValues": "SelectedValues", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "ToolActionComboDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionComboDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboDescriptionMetadata()": "ToolActionComboDescriptionMetadata()", + "ToolActionComboDescriptionMetadata": "ToolActionComboDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionComboDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionComboDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboDescriptionModule()": "ToolActionComboDescriptionModule()", + "ToolActionComboDescriptionModule": "ToolActionComboDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionComboInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionComboInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboInfo()": "ToolActionComboInfo()", + "ToolActionComboInfo": "ToolActionComboInfo()", + "DisplayMemberPath": "DisplayMemberPath", + "ItemsSource": "ItemsSource", + "SelectedValues": "SelectedValues", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "ToolActionComboInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionComboInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboInfoDescription()": "ToolActionComboInfoDescription()", + "ToolActionComboInfoDescription": "ToolActionComboInfoDescription()", + "DataSourceRef": "DataSourceRef", + "DisplayMemberPath": "DisplayMemberPath", + "SelectedValuesRef": "SelectedValuesRef", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath" + } + } + ], + "ToolActionComboInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionComboInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboInfoDescriptionMetadata()": "ToolActionComboInfoDescriptionMetadata()", + "ToolActionComboInfoDescriptionMetadata": "ToolActionComboInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionComboVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionComboVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionComboVisualData()": "ToolActionComboVisualData()", + "ToolActionComboVisualData": "ToolActionComboVisualData()", + "Combo": "Combo", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionDescription()": "ToolActionDescription()", + "ToolActionDescription": "ToolActionDescription()", + "AccentColor": "AccentColor", + "Actions": "Actions", + "ActualAccentColor": "ActualAccentColor", + "ActualBackground": "ActualBackground", + "ActualDensity": "ActualDensity", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualHighlightColor": "ActualHighlightColor", + "ActualHighlightRadius": "ActualHighlightRadius", + "ActualHighlightWidth": "ActualHighlightWidth", + "ActualHoverBackground": "ActualHoverBackground", + "ActualIconFill": "ActualIconFill", + "ActualIconHeight": "ActualIconHeight", + "ActualIconStroke": "ActualIconStroke", + "ActualIconWidth": "ActualIconWidth", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingTop": "ActualPaddingTop", + "ActualSubPanelRowHeight": "ActualSubPanelRowHeight", + "ActualSubtitleTextColor": "ActualSubtitleTextColor", + "ActualTextColor": "ActualTextColor", + "AfterId": "AfterId", + "Background": "Background", + "BeforeId": "BeforeId", + "CloseOnExecute": "CloseOnExecute", + "CommandArgument": "CommandArgument", + "CommandArgumentValue": "CommandArgumentValue", + "CommandId": "CommandId", + "ContextBindings": "ContextBindings", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "Height": "Height", + "HighlightColor": "HighlightColor", + "HighlightRadius": "HighlightRadius", + "HighlightWidth": "HighlightWidth", + "HoverBackground": "HoverBackground", + "IconCollectionName": "IconCollectionName", + "IconFill": "IconFill", + "IconFillColors": "IconFillColors", + "IconHeight": "IconHeight", + "IconName": "IconName", + "IconStroke": "IconStroke", + "IconStrokeColors": "IconStrokeColors", + "IconStrokeWidth": "IconStrokeWidth", + "IconViewBoxHeight": "IconViewBoxHeight", + "IconViewBoxLeft": "IconViewBoxLeft", + "IconViewBoxTop": "IconViewBoxTop", + "IconViewBoxWidth": "IconViewBoxWidth", + "IconWidth": "IconWidth", + "IsDisabled": "IsDisabled", + "IsHighlighted": "IsHighlighted", + "OnCommandRef": "OnCommandRef", + "OverlayId": "OverlayId", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "ParentId": "ParentId", + "PerformedRef": "PerformedRef", + "SubPanelRowHeight": "SubPanelRowHeight", + "Subtitle": "Subtitle", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleTextColor": "SubtitleTextColor", + "TextColor": "TextColor", + "Title": "Title", + "TitleHorizontalAlignment": "TitleHorizontalAlignment", + "Type": "Type", + "Visibility": "Visibility", + "Width": "Width" + } + } + ], + "ToolActionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionDescriptionMetadata()": "ToolActionDescriptionMetadata()", + "ToolActionDescriptionMetadata": "ToolActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionEventDetail": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionEventDetail", + "k": "class", + "s": "classes", + "m": { + "ToolActionEventDetail()": "ToolActionEventDetail()", + "ToolActionEventDetail": "ToolActionEventDetail()", + "ActionId": "ActionId", + "ActionType": "ActionType", + "BoolValue": "BoolValue", + "DateTimeValue": "DateTimeValue", + "IsModified": "IsModified", + "NumberValue": "NumberValue", + "StringValue": "StringValue", + "UntypedValue": "UntypedValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionEventDetailCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionEventDetailCollection", + "k": "class", + "s": "classes", + "m": { + "ToolActionEventDetailCollection()": "ToolActionEventDetailCollection()", + "ToolActionEventDetailCollection": "ToolActionEventDetailCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionEventDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionEventDetailDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionEventDetailDescription()": "ToolActionEventDetailDescription()", + "ToolActionEventDetailDescription": "ToolActionEventDetailDescription()", + "ActionId": "ActionId", + "ActionType": "ActionType", + "BoolValue": "BoolValue", + "DateTimeValue": "DateTimeValue", + "IsModified": "IsModified", + "NumberValue": "NumberValue", + "StringValue": "StringValue", + "Type": "Type", + "UntypedValueRef": "UntypedValueRef" + } + } + ], + "ToolActionEventDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionEventDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionEventDetailDescriptionMetadata()": "ToolActionEventDetailDescriptionMetadata()", + "ToolActionEventDetailDescriptionMetadata": "ToolActionEventDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelector": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionFieldSelector", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelector()": "ToolActionFieldSelector()", + "ToolActionFieldSelector": "ToolActionFieldSelector()", + "ActualPaddingBottom": "ActualPaddingBottom", + "ActualPaddingBottomProperty": "ActualPaddingBottomProperty", + "ActualPaddingLeft": "ActualPaddingLeft", + "ActualPaddingLeftProperty": "ActualPaddingLeftProperty", + "ActualPaddingRight": "ActualPaddingRight", + "ActualPaddingRightProperty": "ActualPaddingRightProperty", + "ActualPaddingTop": "ActualPaddingTop", + "ActualPaddingTopProperty": "ActualPaddingTopProperty", + "Aggregations": "Aggregations", + "AggregationsProperty": "AggregationsProperty", + "DataSource": "DataSource", + "DataSourceProperty": "DataSourceProperty", + "FieldType": "FieldType", + "FieldTypeProperty": "FieldTypeProperty", + "LegendTarget": "LegendTarget", + "LegendTargetProperty": "LegendTargetProperty", + "PaddingBottom": "PaddingBottom", + "PaddingBottomProperty": "PaddingBottomProperty", + "PaddingLeft": "PaddingLeft", + "PaddingLeftProperty": "PaddingLeftProperty", + "PaddingRight": "PaddingRight", + "PaddingRightProperty": "PaddingRightProperty", + "PaddingTop": "PaddingTop", + "PaddingTopProperty": "PaddingTopProperty", + "SelectedAggregations": "SelectedAggregations", + "SelectedAggregationsProperty": "SelectedAggregationsProperty", + "SingleSelection": "SingleSelection", + "SingleSelectionProperty": "SingleSelectionProperty", + "UpdateDataSource": "UpdateDataSource", + "UpdateDataSourceProperty": "UpdateDataSourceProperty" + } + } + ], + "ToolActionFieldSelectorAggregation": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionFieldSelectorAggregation", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregation()": "ToolActionFieldSelectorAggregation()", + "ToolActionFieldSelectorAggregation": "ToolActionFieldSelectorAggregation()", + "Label": "Label", + "Name": "Name", + "Operand": "Operand", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionFieldSelectorAggregationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorAggregationDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregationDescription()": "ToolActionFieldSelectorAggregationDescription()", + "ToolActionFieldSelectorAggregationDescription": "ToolActionFieldSelectorAggregationDescription()", + "Label": "Label", + "Operand": "Operand", + "Type": "Type" + } + } + ], + "ToolActionFieldSelectorAggregationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorAggregationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregationDescriptionMetadata()": "ToolActionFieldSelectorAggregationDescriptionMetadata()", + "ToolActionFieldSelectorAggregationDescriptionMetadata": "ToolActionFieldSelectorAggregationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorAggregationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorAggregationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregationDescriptionModule()": "ToolActionFieldSelectorAggregationDescriptionModule()", + "ToolActionFieldSelectorAggregationDescriptionModule": "ToolActionFieldSelectorAggregationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorAggregationsCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionFieldSelectorAggregationsCollection", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorAggregationsCollection()": "ToolActionFieldSelectorAggregationsCollection()", + "ToolActionFieldSelectorAggregationsCollection": "ToolActionFieldSelectorAggregationsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionFieldSelectorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorDescription()": "ToolActionFieldSelectorDescription()", + "ToolActionFieldSelectorDescription": "ToolActionFieldSelectorDescription()", + "Aggregations": "Aggregations", + "DataSourceRef": "DataSourceRef", + "FieldType": "FieldType", + "LegendTargetRef": "LegendTargetRef", + "SelectedAggregations": "SelectedAggregations", + "SingleSelection": "SingleSelection", + "Type": "Type", + "UpdateDataSource": "UpdateDataSource" + } + } + ], + "ToolActionFieldSelectorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorDescriptionMetadata()": "ToolActionFieldSelectorDescriptionMetadata()", + "ToolActionFieldSelectorDescriptionMetadata": "ToolActionFieldSelectorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorDescriptionModule()": "ToolActionFieldSelectorDescriptionModule()", + "ToolActionFieldSelectorDescriptionModule": "ToolActionFieldSelectorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorEventType": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ToolActionFieldSelectorEventType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionFieldSelectorInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorInfo()": "ToolActionFieldSelectorInfo()", + "ToolActionFieldSelectorInfo": "ToolActionFieldSelectorInfo()", + "Aggregations": "Aggregations", + "DataSource": "DataSource", + "FieldType": "FieldType", + "Rules": "Rules", + "SelectedAggregations": "SelectedAggregations", + "SingleSelection": "SingleSelection", + "UpdateDataSource": "UpdateDataSource" + } + } + ], + "ToolActionFieldSelectorInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorInfoDescription()": "ToolActionFieldSelectorInfoDescription()", + "ToolActionFieldSelectorInfoDescription": "ToolActionFieldSelectorInfoDescription()", + "AggregationsRef": "AggregationsRef", + "DataSourceRef": "DataSourceRef", + "FieldType": "FieldType", + "RulesRef": "RulesRef", + "SelectedAggregationsRef": "SelectedAggregationsRef", + "SingleSelection": "SingleSelection", + "Type": "Type", + "UpdateDataSource": "UpdateDataSource" + } + } + ], + "ToolActionFieldSelectorInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorInfoDescriptionMetadata()": "ToolActionFieldSelectorInfoDescriptionMetadata()", + "ToolActionFieldSelectorInfoDescriptionMetadata": "ToolActionFieldSelectorInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorInfoType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ToolActionFieldSelectorInfoType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionFieldSelectorSelectedAggregation": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionFieldSelectorSelectedAggregation", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregation()": "ToolActionFieldSelectorSelectedAggregation()", + "ToolActionFieldSelectorSelectedAggregation": "ToolActionFieldSelectorSelectedAggregation()", + "AggregationName": "AggregationName", + "AggregationOperand": "AggregationOperand", + "Field": "Field", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionFieldSelectorSelectedAggregationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorSelectedAggregationDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregationDescription()": "ToolActionFieldSelectorSelectedAggregationDescription()", + "ToolActionFieldSelectorSelectedAggregationDescription": "ToolActionFieldSelectorSelectedAggregationDescription()", + "AggregationName": "AggregationName", + "AggregationOperand": "AggregationOperand", + "Field": "Field", + "Type": "Type" + } + } + ], + "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorSelectedAggregationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata()": "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata()", + "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata": "ToolActionFieldSelectorSelectedAggregationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorSelectedAggregationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionFieldSelectorSelectedAggregationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregationDescriptionModule()": "ToolActionFieldSelectorSelectedAggregationDescriptionModule()", + "ToolActionFieldSelectorSelectedAggregationDescriptionModule": "ToolActionFieldSelectorSelectedAggregationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionFieldSelectorSelectedAggregationsCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionFieldSelectorSelectedAggregationsCollection", + "k": "class", + "s": "classes", + "m": { + "ToolActionFieldSelectorSelectedAggregationsCollection()": "ToolActionFieldSelectorSelectedAggregationsCollection()", + "ToolActionFieldSelectorSelectedAggregationsCollection": "ToolActionFieldSelectorSelectedAggregationsCollection()", + "SuppressCollectionChange": "SuppressCollectionChange", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionFieldSelectorType": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ToolActionFieldSelectorType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionGroupHeader": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionGroupHeader", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeader()": "ToolActionGroupHeader()", + "ToolActionGroupHeader": "ToolActionGroupHeader()", + "ActualBackIconColor": "ActualBackIconColor", + "ActualBackIconColorProperty": "ActualBackIconColorProperty", + "BackIconColor": "BackIconColor", + "BackIconColorProperty": "BackIconColorProperty" + } + } + ], + "ToolActionGroupHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionGroupHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderDescription()": "ToolActionGroupHeaderDescription()", + "ToolActionGroupHeaderDescription": "ToolActionGroupHeaderDescription()", + "ActualBackIconColor": "ActualBackIconColor", + "BackIconColor": "BackIconColor", + "Type": "Type" + } + } + ], + "ToolActionGroupHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionGroupHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderDescriptionMetadata()": "ToolActionGroupHeaderDescriptionMetadata()", + "ToolActionGroupHeaderDescriptionMetadata": "ToolActionGroupHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionGroupHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionGroupHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderDescriptionModule()": "ToolActionGroupHeaderDescriptionModule()", + "ToolActionGroupHeaderDescriptionModule": "ToolActionGroupHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionGroupHeaderInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionGroupHeaderInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderInfo()": "ToolActionGroupHeaderInfo()", + "ToolActionGroupHeaderInfo": "ToolActionGroupHeaderInfo()" + } + } + ], + "ToolActionGroupHeaderInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionGroupHeaderInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderInfoDescription()": "ToolActionGroupHeaderInfoDescription()", + "ToolActionGroupHeaderInfoDescription": "ToolActionGroupHeaderInfoDescription()", + "Type": "Type" + } + } + ], + "ToolActionGroupHeaderInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionGroupHeaderInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderInfoDescriptionMetadata()": "ToolActionGroupHeaderInfoDescriptionMetadata()", + "ToolActionGroupHeaderInfoDescriptionMetadata": "ToolActionGroupHeaderInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionGroupHeaderVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionGroupHeaderVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionGroupHeaderVisualData()": "ToolActionGroupHeaderVisualData()", + "ToolActionGroupHeaderVisualData": "ToolActionGroupHeaderVisualData()", + "BackButton": "BackButton", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionIconButton": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionIconButton", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButton()": "ToolActionIconButton()", + "ToolActionIconButton": "ToolActionIconButton()", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingBottomProperty": "ActualContentPaddingBottomProperty", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingLeftProperty": "ActualContentPaddingLeftProperty", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingRightProperty": "ActualContentPaddingRightProperty", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualContentPaddingTopProperty": "ActualContentPaddingTopProperty", + "ActualTooltipDelay": "ActualTooltipDelay", + "ActualTooltipDelayProperty": "ActualTooltipDelayProperty", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "OnPopupOpening(ToolActionPopupOpeningEventArgs)": "OnPopupOpening(ToolActionPopupOpeningEventArgs)", + "OnPopupOpening": "OnPopupOpening(ToolActionPopupOpeningEventArgs)", + "TooltipDelay": "TooltipDelay", + "TooltipDelayProperty": "TooltipDelayProperty" + } + } + ], + "ToolActionIconButtonDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconButtonDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonDescription()": "ToolActionIconButtonDescription()", + "ToolActionIconButtonDescription": "ToolActionIconButtonDescription()", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualTooltipDelay": "ActualTooltipDelay", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingTop": "ContentPaddingTop", + "PopupOpeningRef": "PopupOpeningRef", + "TooltipDelay": "TooltipDelay", + "Type": "Type" + } + } + ], + "ToolActionIconButtonDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonDescriptionMetadata()": "ToolActionIconButtonDescriptionMetadata()", + "ToolActionIconButtonDescriptionMetadata": "ToolActionIconButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconButtonDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonDescriptionModule()": "ToolActionIconButtonDescriptionModule()", + "ToolActionIconButtonDescriptionModule": "ToolActionIconButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconButtonInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconButtonInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonInfo()": "ToolActionIconButtonInfo()", + "ToolActionIconButtonInfo": "ToolActionIconButtonInfo()", + "IsMenuOpenOnStart": "IsMenuOpenOnStart", + "TooltipDelay": "TooltipDelay" + } + } + ], + "ToolActionIconButtonInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconButtonInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonInfoDescription()": "ToolActionIconButtonInfoDescription()", + "ToolActionIconButtonInfoDescription": "ToolActionIconButtonInfoDescription()", + "IsMenuOpenOnStart": "IsMenuOpenOnStart", + "TooltipDelay": "TooltipDelay", + "Type": "Type" + } + } + ], + "ToolActionIconButtonInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconButtonInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconButtonInfoDescriptionMetadata()": "ToolActionIconButtonInfoDescriptionMetadata()", + "ToolActionIconButtonInfoDescriptionMetadata": "ToolActionIconButtonInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconMenu": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionIconMenu", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenu()": "ToolActionIconMenu()", + "ToolActionIconMenu": "ToolActionIconMenu()", + "ActualArrowStroke": "ActualArrowStroke", + "ActualArrowStrokeProperty": "ActualArrowStrokeProperty", + "ArrowStroke": "ArrowStroke", + "ArrowStrokeProperty": "ArrowStrokeProperty", + "ShowArrowIcon": "ShowArrowIcon", + "ShowArrowIconProperty": "ShowArrowIconProperty" + } + } + ], + "ToolActionIconMenuDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconMenuDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuDescription()": "ToolActionIconMenuDescription()", + "ToolActionIconMenuDescription": "ToolActionIconMenuDescription()", + "ActualArrowStroke": "ActualArrowStroke", + "ArrowStroke": "ArrowStroke", + "ShowArrowIcon": "ShowArrowIcon", + "Type": "Type" + } + } + ], + "ToolActionIconMenuDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconMenuDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuDescriptionMetadata()": "ToolActionIconMenuDescriptionMetadata()", + "ToolActionIconMenuDescriptionMetadata": "ToolActionIconMenuDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconMenuDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconMenuDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuDescriptionModule()": "ToolActionIconMenuDescriptionModule()", + "ToolActionIconMenuDescriptionModule": "ToolActionIconMenuDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconMenuInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconMenuInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuInfo()": "ToolActionIconMenuInfo()", + "ToolActionIconMenuInfo": "ToolActionIconMenuInfo()", + "ShowArrowIcon": "ShowArrowIcon" + } + } + ], + "ToolActionIconMenuInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconMenuInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuInfoDescription()": "ToolActionIconMenuInfoDescription()", + "ToolActionIconMenuInfoDescription": "ToolActionIconMenuInfoDescription()", + "ShowArrowIcon": "ShowArrowIcon", + "Type": "Type" + } + } + ], + "ToolActionIconMenuInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionIconMenuInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuInfoDescriptionMetadata()": "ToolActionIconMenuInfoDescriptionMetadata()", + "ToolActionIconMenuInfoDescriptionMetadata": "ToolActionIconMenuInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionIconMenuVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionIconMenuVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionIconMenuVisualData()": "ToolActionIconMenuVisualData()", + "ToolActionIconMenuVisualData": "ToolActionIconMenuVisualData()", + "ArrowIcon": "ArrowIcon", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionInfo()": "ToolActionInfo()", + "ToolActionInfo": "ToolActionInfo()", + "Actions": "Actions", + "CloseOnExecute": "CloseOnExecute", + "CommandArgument": "CommandArgument", + "CommandArgumentValue": "CommandArgumentValue", + "CommandId": "CommandId", + "ContextBindings": "ContextBindings", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "Height": "Height", + "IconCollectionName": "IconCollectionName", + "IconFill": "IconFill", + "IconHeight": "IconHeight", + "IconName": "IconName", + "IconStroke": "IconStroke", + "IconStrokeWidth": "IconStrokeWidth", + "IconViewBoxHeight": "IconViewBoxHeight", + "IconViewBoxLeft": "IconViewBoxLeft", + "IconViewBoxTop": "IconViewBoxTop", + "IconViewBoxWidth": "IconViewBoxWidth", + "IconWidth": "IconWidth", + "IsDisabled": "IsDisabled", + "IsHighlighted": "IsHighlighted", + "Name": "Name", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "ParentId": "ParentId", + "SubPanelRowHeight": "SubPanelRowHeight", + "Subtitle": "Subtitle", + "TextColor": "TextColor", + "Title": "Title" + } + } + ], + "ToolActionInfoDensity": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ToolActionInfoDensity", + "k": "enum", + "s": "enums" + } + ], + "ToolActionInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionInfoDescription()": "ToolActionInfoDescription()", + "ToolActionInfoDescription": "ToolActionInfoDescription()", + "Actions": "Actions", + "CloseOnExecute": "CloseOnExecute", + "CommandArgument": "CommandArgument", + "CommandArgumentValueRef": "CommandArgumentValueRef", + "CommandId": "CommandId", + "ContextBindings": "ContextBindings", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "Height": "Height", + "IconCollectionName": "IconCollectionName", + "IconFill": "IconFill", + "IconHeight": "IconHeight", + "IconName": "IconName", + "IconStroke": "IconStroke", + "IconStrokeWidth": "IconStrokeWidth", + "IconViewBoxHeight": "IconViewBoxHeight", + "IconViewBoxLeft": "IconViewBoxLeft", + "IconViewBoxTop": "IconViewBoxTop", + "IconViewBoxWidth": "IconViewBoxWidth", + "IconWidth": "IconWidth", + "IsDisabled": "IsDisabled", + "IsHighlighted": "IsHighlighted", + "PaddingBottom": "PaddingBottom", + "PaddingLeft": "PaddingLeft", + "PaddingRight": "PaddingRight", + "PaddingTop": "PaddingTop", + "ParentId": "ParentId", + "SubPanelRowHeight": "SubPanelRowHeight", + "Subtitle": "Subtitle", + "TextColor": "TextColor", + "Title": "Title", + "Type": "Type" + } + } + ], + "ToolActionInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionInfoDescriptionMetadata()": "ToolActionInfoDescriptionMetadata()", + "ToolActionInfoDescriptionMetadata": "ToolActionInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionLabel": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionLabel", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabel()": "ToolActionLabel()", + "ToolActionLabel": "ToolActionLabel()" + } + } + ], + "ToolActionLabelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionLabelDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelDescription()": "ToolActionLabelDescription()", + "ToolActionLabelDescription": "ToolActionLabelDescription()", + "Type": "Type" + } + } + ], + "ToolActionLabelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionLabelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelDescriptionMetadata()": "ToolActionLabelDescriptionMetadata()", + "ToolActionLabelDescriptionMetadata": "ToolActionLabelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionLabelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionLabelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelDescriptionModule()": "ToolActionLabelDescriptionModule()", + "ToolActionLabelDescriptionModule": "ToolActionLabelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionLabelInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionLabelInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelInfo()": "ToolActionLabelInfo()", + "ToolActionLabelInfo": "ToolActionLabelInfo()" + } + } + ], + "ToolActionLabelInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionLabelInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelInfoDescription()": "ToolActionLabelInfoDescription()", + "ToolActionLabelInfoDescription": "ToolActionLabelInfoDescription()", + "Type": "Type" + } + } + ], + "ToolActionLabelInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionLabelInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelInfoDescriptionMetadata()": "ToolActionLabelInfoDescriptionMetadata()", + "ToolActionLabelInfoDescriptionMetadata": "ToolActionLabelInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionLabelVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionLabelVisualData()": "ToolActionLabelVisualData()", + "ToolActionLabelVisualData": "ToolActionLabelVisualData()", + "DrilldownIcon": "DrilldownIcon", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionNumberInput": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionNumberInput", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInput()": "ToolActionNumberInput()", + "ToolActionNumberInput": "ToolActionNumberInput()", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "ToolActionNumberInputDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionNumberInputDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputDescription()": "ToolActionNumberInputDescription()", + "ToolActionNumberInputDescription": "ToolActionNumberInputDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionNumberInputDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionNumberInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputDescriptionMetadata()": "ToolActionNumberInputDescriptionMetadata()", + "ToolActionNumberInputDescriptionMetadata": "ToolActionNumberInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionNumberInputDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionNumberInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputDescriptionModule()": "ToolActionNumberInputDescriptionModule()", + "ToolActionNumberInputDescriptionModule": "ToolActionNumberInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionNumberInputInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionNumberInputInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputInfo()": "ToolActionNumberInputInfo()", + "ToolActionNumberInputInfo": "ToolActionNumberInputInfo()", + "Value": "Value" + } + } + ], + "ToolActionNumberInputInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionNumberInputInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputInfoDescription()": "ToolActionNumberInputInfoDescription()", + "ToolActionNumberInputInfoDescription": "ToolActionNumberInputInfoDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionNumberInputInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionNumberInputInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputInfoDescriptionMetadata()": "ToolActionNumberInputInfoDescriptionMetadata()", + "ToolActionNumberInputInfoDescriptionMetadata": "ToolActionNumberInputInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionNumberInputVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionNumberInputVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionNumberInputVisualData()": "ToolActionNumberInputVisualData()", + "ToolActionNumberInputVisualData": "ToolActionNumberInputVisualData()", + "Input": "Input", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionPerformedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionPerformedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolActionPerformedEventArgs()": "ToolActionPerformedEventArgs()", + "ToolActionPerformedEventArgs": "ToolActionPerformedEventArgs()", + "Detail": "Detail", + "DetailCollection": "DetailCollection", + "IsAggregate": "IsAggregate", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionPerformedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionPerformedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionPerformedEventArgsDescription()": "ToolActionPerformedEventArgsDescription()", + "ToolActionPerformedEventArgsDescription": "ToolActionPerformedEventArgsDescription()", + "Detail": "Detail", + "DetailCollection": "DetailCollection", + "IsAggregate": "IsAggregate", + "Type": "Type" + } + } + ], + "ToolActionPerformedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionPerformedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionPerformedEventArgsDescriptionMetadata()": "ToolActionPerformedEventArgsDescriptionMetadata()", + "ToolActionPerformedEventArgsDescriptionMetadata": "ToolActionPerformedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionPopupOpeningEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionPopupOpeningEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolActionPopupOpeningEventArgs()": "ToolActionPopupOpeningEventArgs()", + "ToolActionPopupOpeningEventArgs": "ToolActionPopupOpeningEventArgs()", + "Cancel": "Cancel", + "SourceAction": "SourceAction", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolActionPopupOpeningEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionPopupOpeningEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionPopupOpeningEventArgsDescription()": "ToolActionPopupOpeningEventArgsDescription()", + "ToolActionPopupOpeningEventArgsDescription": "ToolActionPopupOpeningEventArgsDescription()", + "Cancel": "Cancel", + "SourceAction": "SourceAction", + "Type": "Type" + } + } + ], + "ToolActionPopupOpeningEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionPopupOpeningEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionPopupOpeningEventArgsDescriptionMetadata()": "ToolActionPopupOpeningEventArgsDescriptionMetadata()", + "ToolActionPopupOpeningEventArgsDescriptionMetadata": "ToolActionPopupOpeningEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadio": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionRadio", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadio()": "ToolActionRadio()", + "ToolActionRadio": "ToolActionRadio()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "Channel": "Channel", + "ChannelProperty": "ChannelProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "IsChecked": "IsChecked", + "IsCheckedProperty": "IsCheckedProperty", + "IsManual": "IsManual", + "IsManualProperty": "IsManualProperty", + "IsToggleable": "IsToggleable", + "IsToggleableProperty": "IsToggleableProperty", + "ShorthandTitle": "ShorthandTitle", + "ShorthandTitleProperty": "ShorthandTitleProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty" + } + } + ], + "ToolActionRadioDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioDescription()": "ToolActionRadioDescription()", + "ToolActionRadioDescription": "ToolActionRadioDescription()", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "Channel": "Channel", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "IsChecked": "IsChecked", + "IsManual": "IsManual", + "IsToggleable": "IsToggleable", + "ShorthandTitle": "ShorthandTitle", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor" + } + } + ], + "ToolActionRadioDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioDescriptionMetadata()": "ToolActionRadioDescriptionMetadata()", + "ToolActionRadioDescriptionMetadata": "ToolActionRadioDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioDescriptionModule()": "ToolActionRadioDescriptionModule()", + "ToolActionRadioDescriptionModule": "ToolActionRadioDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioGroup": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionRadioGroup", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroup()": "ToolActionRadioGroup()", + "ToolActionRadioGroup": "ToolActionRadioGroup()", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "ActualSelectedTextColorProperty": "ActualSelectedTextColorProperty", + "SelectedFontFamily": "SelectedFontFamily", + "SelectedFontFamilyProperty": "SelectedFontFamilyProperty", + "SelectedFontSize": "SelectedFontSize", + "SelectedFontSizeProperty": "SelectedFontSizeProperty", + "SelectedFontStyle": "SelectedFontStyle", + "SelectedFontStyleProperty": "SelectedFontStyleProperty", + "SelectedFontWeight": "SelectedFontWeight", + "SelectedFontWeightProperty": "SelectedFontWeightProperty", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextColorProperty": "SelectedTextColorProperty" + } + } + ], + "ToolActionRadioGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioGroupDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupDescription()": "ToolActionRadioGroupDescription()", + "ToolActionRadioGroupDescription": "ToolActionRadioGroupDescription()", + "ActualSelectedTextColor": "ActualSelectedTextColor", + "SelectedFontFamily": "SelectedFontFamily", + "SelectedFontSize": "SelectedFontSize", + "SelectedFontStyle": "SelectedFontStyle", + "SelectedFontWeight": "SelectedFontWeight", + "SelectedTextColor": "SelectedTextColor", + "Type": "Type" + } + } + ], + "ToolActionRadioGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupDescriptionMetadata()": "ToolActionRadioGroupDescriptionMetadata()", + "ToolActionRadioGroupDescriptionMetadata": "ToolActionRadioGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupDescriptionModule()": "ToolActionRadioGroupDescriptionModule()", + "ToolActionRadioGroupDescriptionModule": "ToolActionRadioGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioGroupInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioGroupInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupInfo()": "ToolActionRadioGroupInfo()", + "ToolActionRadioGroupInfo": "ToolActionRadioGroupInfo()", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextStyle": "SelectedTextStyle" + } + } + ], + "ToolActionRadioGroupInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioGroupInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupInfoDescription()": "ToolActionRadioGroupInfoDescription()", + "ToolActionRadioGroupInfoDescription": "ToolActionRadioGroupInfoDescription()", + "SelectedTextColor": "SelectedTextColor", + "SelectedTextStyle": "SelectedTextStyle", + "Type": "Type" + } + } + ], + "ToolActionRadioGroupInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioGroupInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupInfoDescriptionMetadata()": "ToolActionRadioGroupInfoDescriptionMetadata()", + "ToolActionRadioGroupInfoDescriptionMetadata": "ToolActionRadioGroupInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioGroupVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionRadioGroupVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioGroupVisualData()": "ToolActionRadioGroupVisualData()", + "ToolActionRadioGroupVisualData": "ToolActionRadioGroupVisualData()", + "DropdownIcon": "DropdownIcon", + "SelectedTextLabel": "SelectedTextLabel", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionRadioInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioInfo()": "ToolActionRadioInfo()", + "ToolActionRadioInfo": "ToolActionRadioInfo()", + "Channel": "Channel", + "IsChecked": "IsChecked", + "IsToggleable": "IsToggleable", + "ShorthandTitle": "ShorthandTitle" + } + } + ], + "ToolActionRadioInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioInfoDescription()": "ToolActionRadioInfoDescription()", + "ToolActionRadioInfoDescription": "ToolActionRadioInfoDescription()", + "Channel": "Channel", + "IsChecked": "IsChecked", + "IsToggleable": "IsToggleable", + "ShorthandTitle": "ShorthandTitle", + "Type": "Type" + } + } + ], + "ToolActionRadioInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionRadioInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioInfoDescriptionMetadata()": "ToolActionRadioInfoDescriptionMetadata()", + "ToolActionRadioInfoDescriptionMetadata": "ToolActionRadioInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionRadioVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionRadioVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionRadioVisualData()": "ToolActionRadioVisualData()", + "ToolActionRadioVisualData": "ToolActionRadioVisualData()", + "Checkbox": "Checkbox", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionSeparator": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionSeparator", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparator()": "ToolActionSeparator()", + "ToolActionSeparator": "ToolActionSeparator()", + "IsGroupHeaderSeparator": "IsGroupHeaderSeparator", + "IsGroupHeaderSeparatorProperty": "IsGroupHeaderSeparatorProperty", + "Size": "Size", + "SizeProperty": "SizeProperty" + } + } + ], + "ToolActionSeparatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSeparatorDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorDescription()": "ToolActionSeparatorDescription()", + "ToolActionSeparatorDescription": "ToolActionSeparatorDescription()", + "IsGroupHeaderSeparator": "IsGroupHeaderSeparator", + "Size": "Size", + "Type": "Type" + } + } + ], + "ToolActionSeparatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSeparatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorDescriptionMetadata()": "ToolActionSeparatorDescriptionMetadata()", + "ToolActionSeparatorDescriptionMetadata": "ToolActionSeparatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSeparatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSeparatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorDescriptionModule()": "ToolActionSeparatorDescriptionModule()", + "ToolActionSeparatorDescriptionModule": "ToolActionSeparatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSeparatorInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSeparatorInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorInfo()": "ToolActionSeparatorInfo()", + "ToolActionSeparatorInfo": "ToolActionSeparatorInfo()", + "IsGroupHeaderSeparator": "IsGroupHeaderSeparator", + "Size": "Size" + } + } + ], + "ToolActionSeparatorInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSeparatorInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorInfoDescription()": "ToolActionSeparatorInfoDescription()", + "ToolActionSeparatorInfoDescription": "ToolActionSeparatorInfoDescription()", + "IsGroupHeaderSeparator": "IsGroupHeaderSeparator", + "Size": "Size", + "Type": "Type" + } + } + ], + "ToolActionSeparatorInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSeparatorInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorInfoDescriptionMetadata()": "ToolActionSeparatorInfoDescriptionMetadata()", + "ToolActionSeparatorInfoDescriptionMetadata": "ToolActionSeparatorInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSeparatorVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionSeparatorVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionSeparatorVisualData()": "ToolActionSeparatorVisualData()", + "ToolActionSeparatorVisualData": "ToolActionSeparatorVisualData()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionSubPanel": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionSubPanel", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanel()": "ToolActionSubPanel()", + "ToolActionSubPanel": "ToolActionSubPanel()", + "ItemSpacing": "ItemSpacing", + "ItemSpacingProperty": "ItemSpacingProperty" + } + } + ], + "ToolActionSubPanelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSubPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelDescription()": "ToolActionSubPanelDescription()", + "ToolActionSubPanelDescription": "ToolActionSubPanelDescription()", + "ItemSpacing": "ItemSpacing", + "Type": "Type" + } + } + ], + "ToolActionSubPanelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSubPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelDescriptionMetadata()": "ToolActionSubPanelDescriptionMetadata()", + "ToolActionSubPanelDescriptionMetadata": "ToolActionSubPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSubPanelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSubPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelDescriptionModule()": "ToolActionSubPanelDescriptionModule()", + "ToolActionSubPanelDescriptionModule": "ToolActionSubPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSubPanelInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSubPanelInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelInfo()": "ToolActionSubPanelInfo()", + "ToolActionSubPanelInfo": "ToolActionSubPanelInfo()", + "ItemSpacing": "ItemSpacing" + } + } + ], + "ToolActionSubPanelInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSubPanelInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelInfoDescription()": "ToolActionSubPanelInfoDescription()", + "ToolActionSubPanelInfoDescription": "ToolActionSubPanelInfoDescription()", + "ItemSpacing": "ItemSpacing", + "Type": "Type" + } + } + ], + "ToolActionSubPanelInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionSubPanelInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelInfoDescriptionMetadata()": "ToolActionSubPanelInfoDescriptionMetadata()", + "ToolActionSubPanelInfoDescriptionMetadata": "ToolActionSubPanelInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionSubPanelVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionSubPanelVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionSubPanelVisualData()": "ToolActionSubPanelVisualData()", + "ToolActionSubPanelVisualData": "ToolActionSubPanelVisualData()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "ToolPanel": "ToolPanel" + } + } + ], + "ToolActionTextInput": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionTextInput", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInput()": "ToolActionTextInput()", + "ToolActionTextInput": "ToolActionTextInput()", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "ToolActionTextInputDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionTextInputDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputDescription()": "ToolActionTextInputDescription()", + "ToolActionTextInputDescription": "ToolActionTextInputDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionTextInputDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionTextInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputDescriptionMetadata()": "ToolActionTextInputDescriptionMetadata()", + "ToolActionTextInputDescriptionMetadata": "ToolActionTextInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionTextInputDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionTextInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputDescriptionModule()": "ToolActionTextInputDescriptionModule()", + "ToolActionTextInputDescriptionModule": "ToolActionTextInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionTextInputInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionTextInputInfo", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputInfo()": "ToolActionTextInputInfo()", + "ToolActionTextInputInfo": "ToolActionTextInputInfo()", + "Value": "Value" + } + } + ], + "ToolActionTextInputInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionTextInputInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputInfoDescription()": "ToolActionTextInputInfoDescription()", + "ToolActionTextInputInfoDescription": "ToolActionTextInputInfoDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolActionTextInputInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolActionTextInputInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputInfoDescriptionMetadata()": "ToolActionTextInputInfoDescriptionMetadata()", + "ToolActionTextInputInfoDescriptionMetadata": "ToolActionTextInputInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolActionTextInputVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionTextInputVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionTextInputVisualData()": "ToolActionTextInputVisualData()", + "ToolActionTextInputVisualData": "ToolActionTextInputVisualData()", + "Input": "Input", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()" + } + } + ], + "ToolActionType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ToolActionType", + "k": "enum", + "s": "enums" + } + ], + "ToolActionVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolActionVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolActionVisualData()": "ToolActionVisualData()", + "ToolActionVisualData": "ToolActionVisualData()", + "ActualBackgroundColor": "ActualBackgroundColor", + "Button": "Button", + "Container": "Container", + "Icon": "Icon", + "Id": "Id", + "Label": "Label", + "ListItem": "ListItem", + "Name": "Name", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SerializeOverride()": "SerializeOverride()", + "SerializeOverride": "SerializeOverride()", + "SubTitle": "SubTitle", + "Type": "Type" + } + } + ], + "ToolbarDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolbarDescription", + "k": "class", + "s": "classes", + "m": { + "ToolbarDescription()": "ToolbarDescription()", + "ToolbarDescription": "ToolbarDescription()", + "AccentColor": "AccentColor", + "Actions": "Actions", + "ActualActions": "ActualActions", + "AutoGeneratedActions": "AutoGeneratedActions", + "Background": "Background", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "CheckboxListScrollbarActiveBackground": "CheckboxListScrollbarActiveBackground", + "CheckboxListScrollbarBackground": "CheckboxListScrollbarBackground", + "CheckboxListScrollbarHoverBackground": "CheckboxListScrollbarHoverBackground", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "DropdownClickBuffer": "DropdownClickBuffer", + "DropdownDelay": "DropdownDelay", + "GroupHeaderBackgroundColor": "GroupHeaderBackgroundColor", + "GroupHeaderFontFamily": "GroupHeaderFontFamily", + "GroupHeaderFontSize": "GroupHeaderFontSize", + "GroupHeaderFontStyle": "GroupHeaderFontStyle", + "GroupHeaderFontWeight": "GroupHeaderFontWeight", + "GroupHeaderSubtitleTextColor": "GroupHeaderSubtitleTextColor", + "GroupHeaderTextColor": "GroupHeaderTextColor", + "Height": "Height", + "HighlightColor": "HighlightColor", + "HighlightRadius": "HighlightRadius", + "HighlightWidth": "HighlightWidth", + "HoverBackgroundColor": "HoverBackgroundColor", + "IconFill": "IconFill", + "IconStroke": "IconStroke", + "MenuArrowStroke": "MenuArrowStroke", + "OnCommandRef": "OnCommandRef", + "Orientation": "Orientation", + "RowHeight": "RowHeight", + "ScrollbarStyle": "ScrollbarStyle", + "SeparatorBackgroundColor": "SeparatorBackgroundColor", + "SeparatorHorizontalPaddingBottom": "SeparatorHorizontalPaddingBottom", + "SeparatorHorizontalPaddingLeft": "SeparatorHorizontalPaddingLeft", + "SeparatorHorizontalPaddingRight": "SeparatorHorizontalPaddingRight", + "SeparatorHorizontalPaddingTop": "SeparatorHorizontalPaddingTop", + "SeparatorVerticalPaddingBottom": "SeparatorVerticalPaddingBottom", + "SeparatorVerticalPaddingLeft": "SeparatorVerticalPaddingLeft", + "SeparatorVerticalPaddingRight": "SeparatorVerticalPaddingRight", + "SeparatorVerticalPaddingTop": "SeparatorVerticalPaddingTop", + "ShowOnHover": "ShowOnHover", + "ShowTooltipOnHover": "ShowTooltipOnHover", + "StopPropagation": "StopPropagation", + "SubMenuClosingRef": "SubMenuClosingRef", + "SubMenuOpeningRef": "SubMenuOpeningRef", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubmenuBackgroundColor": "SubmenuBackgroundColor", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleTextColor": "SubtitleTextColor", + "TargetRef": "TargetRef", + "TextColor": "TextColor", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipCornerRadius": "ToolTipCornerRadius", + "ToolTipElevation": "ToolTipElevation", + "ToolTipTextColor": "ToolTipTextColor", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor", + "Width": "Width" + } + } + ], + "ToolbarDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolbarDescriptionMetadata()": "ToolbarDescriptionMetadata()", + "ToolbarDescriptionMetadata": "ToolbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolbarDescriptionModule()": "ToolbarDescriptionModule()", + "ToolbarDescriptionModule": "ToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolbarOrientation": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ToolbarOrientation", + "k": "enum", + "s": "enums" + } + ], + "ToolbarSubMenuClosingEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolbarSubMenuClosingEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuClosingEventArgs()": "ToolbarSubMenuClosingEventArgs()", + "ToolbarSubMenuClosingEventArgs": "ToolbarSubMenuClosingEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolbarSubMenuClosingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolbarSubMenuClosingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuClosingEventArgsDescription()": "ToolbarSubMenuClosingEventArgsDescription()", + "ToolbarSubMenuClosingEventArgsDescription": "ToolbarSubMenuClosingEventArgsDescription()", + "Type": "Type" + } + } + ], + "ToolbarSubMenuClosingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolbarSubMenuClosingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuClosingEventArgsDescriptionMetadata()": "ToolbarSubMenuClosingEventArgsDescriptionMetadata()", + "ToolbarSubMenuClosingEventArgsDescriptionMetadata": "ToolbarSubMenuClosingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolbarSubMenuOpeningEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolbarSubMenuOpeningEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuOpeningEventArgs()": "ToolbarSubMenuOpeningEventArgs()", + "ToolbarSubMenuOpeningEventArgs": "ToolbarSubMenuOpeningEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolbarSubMenuOpeningEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolbarSubMenuOpeningEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuOpeningEventArgsDescription()": "ToolbarSubMenuOpeningEventArgsDescription()", + "ToolbarSubMenuOpeningEventArgsDescription": "ToolbarSubMenuOpeningEventArgsDescription()", + "Type": "Type" + } + } + ], + "ToolbarSubMenuOpeningEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolbarSubMenuOpeningEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolbarSubMenuOpeningEventArgsDescriptionMetadata()": "ToolbarSubMenuOpeningEventArgsDescriptionMetadata()", + "ToolbarSubMenuOpeningEventArgsDescriptionMetadata": "ToolbarSubMenuOpeningEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolCommand": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommand", + "k": "class", + "s": "classes", + "m": { + "ToolCommand()": "ToolCommand()", + "ToolCommand": "ToolCommand()", + "ArgumentsList": "ArgumentsList", + "CommandId": "CommandId" + } + } + ], + "ToolCommandArgument": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommandArgument", + "k": "class", + "s": "classes", + "m": { + "ToolCommandArgument()": "ToolCommandArgument()", + "ToolCommandArgument": "ToolCommandArgument()", + "ArgumentName": "ArgumentName", + "Value": "Value" + } + } + ], + "ToolCommandArgumentCollection": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommandArgumentCollection", + "k": "class", + "s": "classes", + "m": { + "ToolCommandArgumentCollection()": "ToolCommandArgumentCollection()", + "ToolCommandArgumentCollection": "ToolCommandArgumentCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolCommandArgumentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommandArgumentDescription", + "k": "class", + "s": "classes", + "m": { + "ToolCommandArgumentDescription()": "ToolCommandArgumentDescription()", + "ToolCommandArgumentDescription": "ToolCommandArgumentDescription()", + "ArgumentName": "ArgumentName", + "Type": "Type", + "Value": "Value" + } + } + ], + "ToolCommandArgumentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommandArgumentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolCommandArgumentDescriptionMetadata()": "ToolCommandArgumentDescriptionMetadata()", + "ToolCommandArgumentDescriptionMetadata": "ToolCommandArgumentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolCommandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommandDescription", + "k": "class", + "s": "classes", + "m": { + "ToolCommandDescription()": "ToolCommandDescription()", + "ToolCommandDescription": "ToolCommandDescription()", + "ArgumentsList": "ArgumentsList", + "CommandId": "CommandId", + "Type": "Type" + } + } + ], + "ToolCommandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolCommandDescriptionMetadata()": "ToolCommandDescriptionMetadata()", + "ToolCommandDescriptionMetadata": "ToolCommandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolCommandEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolCommandEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolCommandEventArgs()": "ToolCommandEventArgs()", + "ToolCommandEventArgs": "ToolCommandEventArgs()", + "CloseOnExecute": "CloseOnExecute", + "Command": "Command", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolCommandEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommandEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolCommandEventArgsDescription()": "ToolCommandEventArgsDescription()", + "ToolCommandEventArgsDescription": "ToolCommandEventArgsDescription()", + "CloseOnExecute": "CloseOnExecute", + "Command": "Command", + "Type": "Type" + } + } + ], + "ToolCommandEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolCommandEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolCommandEventArgsDescriptionMetadata()": "ToolCommandEventArgsDescriptionMetadata()", + "ToolCommandEventArgsDescriptionMetadata": "ToolCommandEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolCommandExecutionState": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ToolCommandExecutionState", + "k": "enum", + "s": "enums" + } + ], + "ToolCommandStateType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ToolCommandStateType", + "k": "enum", + "s": "enums" + } + ], + "ToolContextBinding": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolContextBinding", + "k": "class", + "s": "classes", + "m": { + "ToolContextBinding()": "ToolContextBinding()", + "ToolContextBinding": "ToolContextBinding()", + "BindingMode": "BindingMode", + "ContextKey": "ContextKey", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnPropertyUpdated(PropertyUpdatedEventArgs)": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "OnPropertyUpdated": "OnPropertyUpdated(PropertyUpdatedEventArgs)", + "PropertyName": "PropertyName", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolContextBindingCollection": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolContextBindingCollection", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingCollection()": "ToolContextBindingCollection()", + "ToolContextBindingCollection": "ToolContextBindingCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolContextBindingDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolContextBindingDescription", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingDescription()": "ToolContextBindingDescription()", + "ToolContextBindingDescription": "ToolContextBindingDescription()", + "BindingMode": "BindingMode", + "ContextKey": "ContextKey", + "PropertyName": "PropertyName", + "PropertyUpdatedRef": "PropertyUpdatedRef", + "Type": "Type" + } + } + ], + "ToolContextBindingDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolContextBindingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingDescriptionMetadata()": "ToolContextBindingDescriptionMetadata()", + "ToolContextBindingDescriptionMetadata": "ToolContextBindingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolContextBindingInfo": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolContextBindingInfo", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingInfo()": "ToolContextBindingInfo()", + "ToolContextBindingInfo": "ToolContextBindingInfo()", + "BindingMode": "BindingMode", + "ContextKey": "ContextKey", + "PropertyName": "PropertyName" + } + } + ], + "ToolContextBindingInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolContextBindingInfoDescription", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingInfoDescription()": "ToolContextBindingInfoDescription()", + "ToolContextBindingInfoDescription": "ToolContextBindingInfoDescription()", + "BindingMode": "BindingMode", + "ContextKey": "ContextKey", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "ToolContextBindingInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolContextBindingInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolContextBindingInfoDescriptionMetadata()": "ToolContextBindingInfoDescriptionMetadata()", + "ToolContextBindingInfoDescriptionMetadata": "ToolContextBindingInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolContextBindingMode": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ToolContextBindingMode", + "k": "enum", + "s": "enums" + } + ], + "ToolContextValueType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/ToolContextValueType", + "k": "enum", + "s": "enums" + } + ], + "ToolPanelContentRefreshedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolPanelContentRefreshedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContentRefreshedEventArgs()": "ToolPanelContentRefreshedEventArgs()", + "ToolPanelContentRefreshedEventArgs": "ToolPanelContentRefreshedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolPanelContentRefreshedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelContentRefreshedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContentRefreshedEventArgsDescription()": "ToolPanelContentRefreshedEventArgsDescription()", + "ToolPanelContentRefreshedEventArgsDescription": "ToolPanelContentRefreshedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ToolPanelContentRefreshedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelContentRefreshedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContentRefreshedEventArgsDescriptionMetadata()": "ToolPanelContentRefreshedEventArgsDescriptionMetadata()", + "ToolPanelContentRefreshedEventArgsDescriptionMetadata": "ToolPanelContentRefreshedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelContextChangedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolPanelContextChangedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextChangedEventArgs()": "ToolPanelContextChangedEventArgs()", + "ToolPanelContextChangedEventArgs": "ToolPanelContextChangedEventArgs()", + "ContextKey": "ContextKey", + "NewValue": "NewValue", + "OldValue": "OldValue", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolPanelContextChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelContextChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextChangedEventArgsDescription()": "ToolPanelContextChangedEventArgsDescription()", + "ToolPanelContextChangedEventArgsDescription": "ToolPanelContextChangedEventArgsDescription()", + "ContextKey": "ContextKey", + "NewValueRef": "NewValueRef", + "OldValueRef": "OldValueRef", + "Type": "Type" + } + } + ], + "ToolPanelContextChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelContextChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextChangedEventArgsDescriptionMetadata()": "ToolPanelContextChangedEventArgsDescriptionMetadata()", + "ToolPanelContextChangedEventArgsDescriptionMetadata": "ToolPanelContextChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelContextSwappedEventArgs": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolPanelContextSwappedEventArgs", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextSwappedEventArgs()": "ToolPanelContextSwappedEventArgs()", + "ToolPanelContextSwappedEventArgs": "ToolPanelContextSwappedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ToolPanelContextSwappedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelContextSwappedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextSwappedEventArgsDescription()": "ToolPanelContextSwappedEventArgsDescription()", + "ToolPanelContextSwappedEventArgsDescription": "ToolPanelContextSwappedEventArgsDescription()", + "Type": "Type" + } + } + ], + "ToolPanelContextSwappedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelContextSwappedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolPanelContextSwappedEventArgsDescriptionMetadata()": "ToolPanelContextSwappedEventArgsDescriptionMetadata()", + "ToolPanelContextSwappedEventArgsDescriptionMetadata": "ToolPanelContextSwappedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelDescription", + "k": "class", + "s": "classes", + "m": { + "ToolPanelDescription()": "ToolPanelDescription()", + "ToolPanelDescription": "ToolPanelDescription()", + "AccentColor": "AccentColor", + "Actions": "Actions", + "ActualAccentColor": "ActualAccentColor", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualDensity": "ActualDensity", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualDropdownDelay": "ActualDropdownDelay", + "ActualGroupHeaderBackgroundColor": "ActualGroupHeaderBackgroundColor", + "ActualGroupHeaderSeparatorBackgroundColor": "ActualGroupHeaderSeparatorBackgroundColor", + "ActualGroupHeaderSubtitleTextColor": "ActualGroupHeaderSubtitleTextColor", + "ActualGroupHeaderTextColor": "ActualGroupHeaderTextColor", + "ActualHighlightColor": "ActualHighlightColor", + "ActualHighlightRadius": "ActualHighlightRadius", + "ActualHighlightWidth": "ActualHighlightWidth", + "ActualHoverBackgroundColor": "ActualHoverBackgroundColor", + "ActualIconFill": "ActualIconFill", + "ActualIconStroke": "ActualIconStroke", + "ActualMenuArrowStroke": "ActualMenuArrowStroke", + "ActualSeparatorBackgroundColor": "ActualSeparatorBackgroundColor", + "ActualSeparatorHorizontalPaddingBottom": "ActualSeparatorHorizontalPaddingBottom", + "ActualSeparatorHorizontalPaddingLeft": "ActualSeparatorHorizontalPaddingLeft", + "ActualSeparatorHorizontalPaddingRight": "ActualSeparatorHorizontalPaddingRight", + "ActualSeparatorHorizontalPaddingTop": "ActualSeparatorHorizontalPaddingTop", + "ActualSeparatorVerticalPaddingBottom": "ActualSeparatorVerticalPaddingBottom", + "ActualSeparatorVerticalPaddingLeft": "ActualSeparatorVerticalPaddingLeft", + "ActualSeparatorVerticalPaddingRight": "ActualSeparatorVerticalPaddingRight", + "ActualSeparatorVerticalPaddingTop": "ActualSeparatorVerticalPaddingTop", + "ActualSubmenuBackgroundColor": "ActualSubmenuBackgroundColor", + "ActualSubtitleTextColor": "ActualSubtitleTextColor", + "ActualTextColor": "ActualTextColor", + "ActualToolTipBackgroundColor": "ActualToolTipBackgroundColor", + "ActualToolTipCornerRadius": "ActualToolTipCornerRadius", + "ActualToolTipElevation": "ActualToolTipElevation", + "ActualToolTipTextColor": "ActualToolTipTextColor", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "BackgroundColor": "BackgroundColor", + "BaseTheme": "BaseTheme", + "CellFontFamily": "CellFontFamily", + "CellFontSize": "CellFontSize", + "CellFontStyle": "CellFontStyle", + "CellFontWeight": "CellFontWeight", + "CheckboxListScrollbarActiveBackground": "CheckboxListScrollbarActiveBackground", + "CheckboxListScrollbarBackground": "CheckboxListScrollbarBackground", + "CheckboxListScrollbarHoverBackground": "CheckboxListScrollbarHoverBackground", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBorderColor": "CheckedBorderColor", + "ContentRefreshedRef": "ContentRefreshedRef", + "Density": "Density", + "DisabledTextColor": "DisabledTextColor", + "DropdownClickBuffer": "DropdownClickBuffer", + "DropdownDelay": "DropdownDelay", + "GroupHeaderBackgroundColor": "GroupHeaderBackgroundColor", + "GroupHeaderFontFamily": "GroupHeaderFontFamily", + "GroupHeaderFontSize": "GroupHeaderFontSize", + "GroupHeaderFontStyle": "GroupHeaderFontStyle", + "GroupHeaderFontWeight": "GroupHeaderFontWeight", + "GroupHeaderSeparatorBackgroundColor": "GroupHeaderSeparatorBackgroundColor", + "GroupHeaderSubtitleTextColor": "GroupHeaderSubtitleTextColor", + "GroupHeaderTextColor": "GroupHeaderTextColor", + "HighlightColor": "HighlightColor", + "HighlightRadius": "HighlightRadius", + "HighlightWidth": "HighlightWidth", + "HoverBackgroundColor": "HoverBackgroundColor", + "IconFill": "IconFill", + "IconStroke": "IconStroke", + "ItemSpacing": "ItemSpacing", + "MenuArrowStroke": "MenuArrowStroke", + "NestedActionMode": "NestedActionMode", + "OnCommandRef": "OnCommandRef", + "Orientation": "Orientation", + "RowHeight": "RowHeight", + "ScrollbarStyle": "ScrollbarStyle", + "SeparatorBackgroundColor": "SeparatorBackgroundColor", + "SeparatorHorizontalPaddingBottom": "SeparatorHorizontalPaddingBottom", + "SeparatorHorizontalPaddingLeft": "SeparatorHorizontalPaddingLeft", + "SeparatorHorizontalPaddingRight": "SeparatorHorizontalPaddingRight", + "SeparatorHorizontalPaddingTop": "SeparatorHorizontalPaddingTop", + "SeparatorVerticalPaddingBottom": "SeparatorVerticalPaddingBottom", + "SeparatorVerticalPaddingLeft": "SeparatorVerticalPaddingLeft", + "SeparatorVerticalPaddingRight": "SeparatorVerticalPaddingRight", + "SeparatorVerticalPaddingTop": "SeparatorVerticalPaddingTop", + "ShowOnHover": "ShowOnHover", + "ShowTooltipOnHover": "ShowTooltipOnHover", + "StopPropagation": "StopPropagation", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubmenuBackgroundColor": "SubmenuBackgroundColor", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleTextColor": "SubtitleTextColor", + "TextColor": "TextColor", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipCornerRadius": "ToolTipCornerRadius", + "ToolTipElevation": "ToolTipElevation", + "ToolTipTextColor": "ToolTipTextColor", + "Type": "Type", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBorderColor": "UncheckedBorderColor" + } + } + ], + "ToolPanelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ToolPanelDescriptionMetadata()": "ToolPanelDescriptionMetadata()", + "ToolPanelDescriptionMetadata": "ToolPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ToolPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ToolPanelDescriptionModule()": "ToolPanelDescriptionModule()", + "ToolPanelDescriptionModule": "ToolPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolPanelDropdownMenuVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolPanelDropdownMenuVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolPanelDropdownMenuVisualData()": "ToolPanelDropdownMenuVisualData()", + "ToolPanelDropdownMenuVisualData": "ToolPanelDropdownMenuVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "ToolPanelVisualData": "ToolPanelVisualData" + } + } + ], + "ToolPanelOrientation": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/enums/ToolPanelOrientation", + "k": "enum", + "s": "enums" + } + ], + "ToolPanelVisualData": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/ToolPanelVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolPanelVisualData()": "ToolPanelVisualData()", + "ToolPanelVisualData": "ToolPanelVisualData()", + "Actions": "Actions", + "DropdownMenus": "DropdownMenus", + "ListPanel": "ListPanel", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "TooltipContainerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TooltipContainerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TooltipContainerDescriptionModule()": "TooltipContainerDescriptionModule()", + "TooltipContainerDescriptionModule": "TooltipContainerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TooltipContainerExtendedDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TooltipContainerExtendedDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TooltipContainerExtendedDescriptionModule()": "TooltipContainerExtendedDescriptionModule()", + "TooltipContainerExtendedDescriptionModule": "TooltipContainerExtendedDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ToolTipItemVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/ToolTipItemVisualData", + "k": "class", + "s": "classes", + "m": { + "ToolTipItemVisualData()": "ToolTipItemVisualData()", + "ToolTipItemVisualData": "ToolTipItemVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type" + } + } + ], + "ToolTipType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ToolTipType", + "k": "enum", + "s": "enums" + } + ], + "TrailingTwelveMonthsExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TrailingTwelveMonthsExpression", + "k": "class", + "s": "classes", + "m": { + "TrailingTwelveMonthsExpression(FilterExpression)": "TrailingTwelveMonthsExpression(FilterExpression)", + "TrailingTwelveMonthsExpression": "TrailingTwelveMonthsExpression(FilterExpression)", + "TrailingTwelveMonthsExpression(string)": "TrailingTwelveMonthsExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "TrailingTwelveMonthsExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TrailingTwelveMonthsExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "TrailingTwelveMonthsExpressionDescription()": "TrailingTwelveMonthsExpressionDescription()", + "TrailingTwelveMonthsExpressionDescription": "TrailingTwelveMonthsExpressionDescription()", + "Type": "Type" + } + } + ], + "TrailingTwelveMonthsExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TrailingTwelveMonthsExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TrailingTwelveMonthsExpressionDescriptionMetadata()": "TrailingTwelveMonthsExpressionDescriptionMetadata()", + "TrailingTwelveMonthsExpressionDescriptionMetadata": "TrailingTwelveMonthsExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Transaction": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Transaction", + "k": "class", + "s": "classes", + "m": { + "Transaction()": "Transaction()", + "Transaction": "Transaction()", + "Error": "Error", + "ID": "ID", + "TransactionID": "TransactionID", + "Type": "Type", + "Value": "Value" + } + } + ], + "TransactionCommit": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TransactionCommit", + "k": "class", + "s": "classes", + "m": { + "TransactionCommit()": "TransactionCommit()", + "TransactionCommit": "TransactionCommit()", + "Changes": "Changes", + "ID": "ID" + } + } + ], + "TransactionEvent": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/TransactionEvent", + "k": "enum", + "s": "enums" + } + ], + "TransactionHistory": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TransactionHistory", + "k": "class", + "s": "classes", + "m": { + "TransactionHistory()": "TransactionHistory()", + "TransactionHistory": "TransactionHistory()", + "Transactions": "Transactions" + } + } + ], + "TransactionPendingState": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/TransactionPendingState", + "k": "enum", + "s": "enums" + } + ], + "TransactionService": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TransactionService", + "k": "class", + "s": "classes", + "m": { + "TransactionService(Action, Func, IEqualityComparer)": "TransactionService(Action, Func, IEqualityComparer)", + "TransactionService": "TransactionService(Action, Func, IEqualityComparer)", + "AcceptCommit(int)": "AcceptCommit(int)", + "AcceptCommit": "AcceptCommit(int)", + "Add(Transaction, bool)": "Add(Transaction, bool)", + "Add": "Add(Transaction, bool)", + "CanRedo": "CanRedo", + "CanUndo": "CanUndo", + "Clear(bool, object)": "Clear(bool, object)", + "Clear": "Clear(bool, object)", + "Commit(bool, bool)": "Commit(bool, bool)", + "Commit": "Commit(bool, bool)", + "EndPending(bool)": "EndPending(bool)", + "EndPending": "EndPending(bool)", + "GetAggregatedChanges(int)": "GetAggregatedChanges(int)", + "GetAggregatedChanges": "GetAggregatedChanges(int)", + "GetLatestStateFromPendingCommits(object)": "GetLatestStateFromPendingCommits(object)", + "GetLatestStateFromPendingCommits": "GetLatestStateFromPendingCommits(object)", + "GetPendingCommit(int)": "GetPendingCommit(int)", + "GetPendingCommit": "GetPendingCommit(int)", + "GetPendingState(object)": "GetPendingState(object)", + "GetPendingState": "GetPendingState(object)", + "GetPendingTransactions(object)": "GetPendingTransactions(object)", + "GetPendingTransactions": "GetPendingTransactions(object)", + "GetState(object)": "GetState(object)", + "GetState": "GetState(object)", + "IsEnabled": "IsEnabled", + "OnPropertyChanged(string, object, object)": "OnPropertyChanged(string, object, object)", + "OnPropertyChanged": "OnPropertyChanged(string, object, object)", + "Redo()": "Redo()", + "Redo": "Redo()", + "RejectCommit(int)": "RejectCommit(int)", + "RejectCommit": "RejectCommit(int)", + "SavePendingTransaction(int)": "SavePendingTransaction(int)", + "SavePendingTransaction": "SavePendingTransaction(int)", + "Undo()": "Undo()", + "Undo": "Undo()", + "UpdateState(Dictionary, Transaction)": "UpdateState(Dictionary, Transaction)", + "UpdateState": "UpdateState(Dictionary, Transaction)", + "VerifyAddedTransaction(Dictionary, Transaction)": "VerifyAddedTransaction(Dictionary, Transaction)", + "VerifyAddedTransaction": "VerifyAddedTransaction(Dictionary, Transaction)" + } + } + ], + "TransactionState": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TransactionState", + "k": "class", + "s": "classes", + "m": { + "TransactionState(object, TransactionType, object)": "TransactionState(object, TransactionType, object)", + "TransactionState": "TransactionState(object, TransactionType, object)", + "ID": "ID", + "TransactionType": "TransactionType", + "Value": "Value", + "Version": "Version" + } + } + ], + "TransactionStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TransactionStateDescription", + "k": "class", + "s": "classes", + "m": { + "TransactionStateDescription()": "TransactionStateDescription()", + "TransactionStateDescription": "TransactionStateDescription()", + "IdRef": "IdRef", + "TransactionType": "TransactionType", + "Type": "Type", + "ValueRef": "ValueRef", + "VersionRef": "VersionRef" + } + } + ], + "TransactionStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TransactionStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TransactionStateDescriptionMetadata()": "TransactionStateDescriptionMetadata()", + "TransactionStateDescriptionMetadata": "TransactionStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TransactionType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/TransactionType", + "k": "enum", + "s": "enums" + } + ], + "TransitionInSpeedType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/TransitionInSpeedType", + "k": "enum", + "s": "enums" + } + ], + "TransitionOutCompletedEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TransitionOutCompletedEventArgs", + "k": "class", + "s": "classes", + "m": { + "TransitionOutCompletedEventArgs()": "TransitionOutCompletedEventArgs()", + "TransitionOutCompletedEventArgs": "TransitionOutCompletedEventArgs()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TransitionOutCompletedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TransitionOutCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TransitionOutCompletedEventArgsDescription()": "TransitionOutCompletedEventArgsDescription()", + "TransitionOutCompletedEventArgsDescription": "TransitionOutCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "TransitionOutCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TransitionOutCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TransitionOutCompletedEventArgsDescriptionMetadata()": "TransitionOutCompletedEventArgsDescriptionMetadata()", + "TransitionOutCompletedEventArgsDescriptionMetadata": "TransitionOutCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TransitionOutSpeedType": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/TransitionOutSpeedType", + "k": "enum", + "s": "enums" + } + ], + "TreemapDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapDescription()": "TreemapDescription()", + "TreemapDescription": "TreemapDescription()", + "ActualHighlightingMode": "ActualHighlightingMode", + "ActualInteractionPixelScalingRatio": "ActualInteractionPixelScalingRatio", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "Background": "Background", + "BreadcrumbSequence": "BreadcrumbSequence", + "CustomValueMemberPath": "CustomValueMemberPath", + "DarkTextColor": "DarkTextColor", + "DataSourceRef": "DataSourceRef", + "FillBrushes": "FillBrushes", + "FillScaleLogarithmBase": "FillScaleLogarithmBase", + "FillScaleMaximumValue": "FillScaleMaximumValue", + "FillScaleMinimumValue": "FillScaleMinimumValue", + "FillScaleMode": "FillScaleMode", + "FocusItemRef": "FocusItemRef", + "FontFamily": "FontFamily", + "FontSize": "FontSize", + "FontStyle": "FontStyle", + "FontWeight": "FontWeight", + "HeaderBackground": "HeaderBackground", + "HeaderDarkTextColor": "HeaderDarkTextColor", + "HeaderDisplayMode": "HeaderDisplayMode", + "HeaderFontFamily": "HeaderFontFamily", + "HeaderFontSize": "HeaderFontSize", + "HeaderFontStyle": "HeaderFontStyle", + "HeaderFontWeight": "HeaderFontWeight", + "HeaderHeight": "HeaderHeight", + "HeaderHoverBackground": "HeaderHoverBackground", + "HeaderHoverDarkTextColor": "HeaderHoverDarkTextColor", + "HeaderHoverTextColor": "HeaderHoverTextColor", + "HeaderLabelBottomMargin": "HeaderLabelBottomMargin", + "HeaderLabelLeftMargin": "HeaderLabelLeftMargin", + "HeaderLabelRightMargin": "HeaderLabelRightMargin", + "HeaderLabelTopMargin": "HeaderLabelTopMargin", + "HeaderTextColor": "HeaderTextColor", + "Height": "Height", + "HighlightedDataSourceRef": "HighlightedDataSourceRef", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "HighlightedValueOpacity": "HighlightedValueOpacity", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingMode": "HighlightingMode", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "IdMemberPath": "IdMemberPath", + "InteractionPixelScalingRatio": "InteractionPixelScalingRatio", + "IsFillScaleLogarithmic": "IsFillScaleLogarithmic", + "LabelBottomMargin": "LabelBottomMargin", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelHorizontalFitMode": "LabelHorizontalFitMode", + "LabelLeftMargin": "LabelLeftMargin", + "LabelMemberPath": "LabelMemberPath", + "LabelRightMargin": "LabelRightMargin", + "LabelTopMargin": "LabelTopMargin", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVerticalFitMode": "LabelVerticalFitMode", + "LayoutOrientation": "LayoutOrientation", + "LayoutType": "LayoutType", + "MinimumDisplaySize": "MinimumDisplaySize", + "NodeOpacity": "NodeOpacity", + "NodePointerEnterRef": "NodePointerEnterRef", + "NodePointerLeaveRef": "NodePointerLeaveRef", + "NodePointerOverRef": "NodePointerOverRef", + "NodePointerPressedRef": "NodePointerPressedRef", + "NodePointerReleasedRef": "NodePointerReleasedRef", + "NodeRenderStylingRef": "NodeRenderStylingRef", + "NodeStylingRef": "NodeStylingRef", + "Outline": "Outline", + "OverlayHeaderBackground": "OverlayHeaderBackground", + "OverlayHeaderHoverBackground": "OverlayHeaderHoverBackground", + "OverlayHeaderLabelBottomMargin": "OverlayHeaderLabelBottomMargin", + "OverlayHeaderLabelLeftMargin": "OverlayHeaderLabelLeftMargin", + "OverlayHeaderLabelRightMargin": "OverlayHeaderLabelRightMargin", + "OverlayHeaderLabelTopMargin": "OverlayHeaderLabelTopMargin", + "ParentIdMemberPath": "ParentIdMemberPath", + "ParentNodeBottomMargin": "ParentNodeBottomMargin", + "ParentNodeBottomPadding": "ParentNodeBottomPadding", + "ParentNodeLeftMargin": "ParentNodeLeftMargin", + "ParentNodeLeftPadding": "ParentNodeLeftPadding", + "ParentNodeRightMargin": "ParentNodeRightMargin", + "ParentNodeRightPadding": "ParentNodeRightPadding", + "ParentNodeTopMargin": "ParentNodeTopMargin", + "ParentNodeTopPadding": "ParentNodeTopPadding", + "PixelScalingRatio": "PixelScalingRatio", + "RootTitle": "RootTitle", + "StrokeThickness": "StrokeThickness", + "StyleMappings": "StyleMappings", + "TextColor": "TextColor", + "TransitionDuration": "TransitionDuration", + "Type": "Type", + "ValueMemberPath": "ValueMemberPath", + "Width": "Width" + } + } + ], + "TreemapDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapDescriptionMetadata()": "TreemapDescriptionMetadata()", + "TreemapDescriptionMetadata": "TreemapDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TreemapDescriptionModule()": "TreemapDescriptionModule()", + "TreemapDescriptionModule": "TreemapDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapFillScaleMode": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapFillScaleMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapHeaderDisplayMode": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapHeaderDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapHighlightedValueDisplayMode": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapHighlightedValueDisplayMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapHighlightingMode": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapHighlightingMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapLabelHorizontalFitMode": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapLabelHorizontalFitMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapLabelVerticalFitMode": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapLabelVerticalFitMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapLabelVisualData": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapLabelVisualData", + "k": "class", + "s": "classes", + "m": { + "TreemapLabelVisualData()": "TreemapLabelVisualData()", + "TreemapLabelVisualData": "TreemapLabelVisualData()", + "Appearance": "Appearance", + "LabelPosition": "LabelPosition", + "LabelSize": "LabelSize", + "LabelValue": "LabelValue", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "TreemapLayoutType": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapLayoutType", + "k": "enum", + "s": "enums" + } + ], + "TreemapNodePointerEventArgs": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapNodePointerEventArgs", + "k": "class", + "s": "classes", + "m": { + "TreemapNodePointerEventArgs()": "TreemapNodePointerEventArgs()", + "TreemapNodePointerEventArgs": "TreemapNodePointerEventArgs()", + "CustomValue": "CustomValue", + "IsHandled": "IsHandled", + "IsOverHeader": "IsOverHeader", + "IsRightButton": "IsRightButton", + "Item": "Item", + "Label": "Label", + "ParentItem": "ParentItem", + "ParentLabel": "ParentLabel", + "ParentSum": "ParentSum", + "ParentValue": "ParentValue", + "Position": "Position", + "Sum": "Sum", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TreemapNodePointerEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodePointerEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapNodePointerEventArgsDescription()": "TreemapNodePointerEventArgsDescription()", + "TreemapNodePointerEventArgsDescription": "TreemapNodePointerEventArgsDescription()", + "CustomValueRef": "CustomValueRef", + "IsHandled": "IsHandled", + "IsOverHeader": "IsOverHeader", + "IsRightButton": "IsRightButton", + "ItemRef": "ItemRef", + "Label": "Label", + "ParentItemRef": "ParentItemRef", + "ParentLabel": "ParentLabel", + "ParentSum": "ParentSum", + "ParentValue": "ParentValue", + "Position": "Position", + "Sum": "Sum", + "Type": "Type", + "Value": "Value" + } + } + ], + "TreemapNodePointerEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodePointerEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapNodePointerEventArgsDescriptionMetadata()": "TreemapNodePointerEventArgsDescriptionMetadata()", + "TreemapNodePointerEventArgsDescriptionMetadata": "TreemapNodePointerEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyle": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapNodeStyle", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyle()": "TreemapNodeStyle()", + "TreemapNodeStyle": "TreemapNodeStyle()", + "FadeOpacity": "FadeOpacity", + "FadeOpacityProperty": "FadeOpacityProperty", + "Fill": "Fill", + "FillProperty": "FillProperty", + "HeaderBackground": "HeaderBackground", + "HeaderBackgroundProperty": "HeaderBackgroundProperty", + "HeaderHeight": "HeaderHeight", + "HeaderHeightProperty": "HeaderHeightProperty", + "HeaderHoverBackground": "HeaderHoverBackground", + "HeaderHoverBackgroundProperty": "HeaderHoverBackgroundProperty", + "HeaderHoverTextColor": "HeaderHoverTextColor", + "HeaderHoverTextColorProperty": "HeaderHoverTextColorProperty", + "HeaderLabelBottomMargin": "HeaderLabelBottomMargin", + "HeaderLabelBottomMarginProperty": "HeaderLabelBottomMarginProperty", + "HeaderLabelLeftMargin": "HeaderLabelLeftMargin", + "HeaderLabelLeftMarginProperty": "HeaderLabelLeftMarginProperty", + "HeaderLabelRightMargin": "HeaderLabelRightMargin", + "HeaderLabelRightMarginProperty": "HeaderLabelRightMarginProperty", + "HeaderLabelTopMargin": "HeaderLabelTopMargin", + "HeaderLabelTopMarginProperty": "HeaderLabelTopMarginProperty", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HighlightingHandled": "HighlightingHandled", + "HighlightingHandledProperty": "HighlightingHandledProperty", + "Label": "Label", + "LabelBottomMargin": "LabelBottomMargin", + "LabelBottomMarginProperty": "LabelBottomMarginProperty", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelHorizontalAlignmentProperty": "LabelHorizontalAlignmentProperty", + "LabelLeftMargin": "LabelLeftMargin", + "LabelLeftMarginProperty": "LabelLeftMarginProperty", + "LabelProperty": "LabelProperty", + "LabelRightMargin": "LabelRightMargin", + "LabelRightMarginProperty": "LabelRightMarginProperty", + "LabelTopMargin": "LabelTopMargin", + "LabelTopMarginProperty": "LabelTopMarginProperty", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVerticalAlignmentProperty": "LabelVerticalAlignmentProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty", + "Outline": "Outline", + "OutlineProperty": "OutlineProperty", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TreemapNodeStyleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodeStyleDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleDescription()": "TreemapNodeStyleDescription()", + "TreemapNodeStyleDescription": "TreemapNodeStyleDescription()", + "FadeOpacity": "FadeOpacity", + "Fill": "Fill", + "HeaderBackground": "HeaderBackground", + "HeaderHeight": "HeaderHeight", + "HeaderHoverBackground": "HeaderHoverBackground", + "HeaderHoverTextColor": "HeaderHoverTextColor", + "HeaderLabelBottomMargin": "HeaderLabelBottomMargin", + "HeaderLabelLeftMargin": "HeaderLabelLeftMargin", + "HeaderLabelRightMargin": "HeaderLabelRightMargin", + "HeaderLabelTopMargin": "HeaderLabelTopMargin", + "HeaderTextColor": "HeaderTextColor", + "HighlightingHandled": "HighlightingHandled", + "Label": "Label", + "LabelBottomMargin": "LabelBottomMargin", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelLeftMargin": "LabelLeftMargin", + "LabelRightMargin": "LabelRightMargin", + "LabelTopMargin": "LabelTopMargin", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "Opacity": "Opacity", + "Outline": "Outline", + "StrokeThickness": "StrokeThickness", + "TextColor": "TextColor", + "Type": "Type" + } + } + ], + "TreemapNodeStyleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodeStyleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleDescriptionMetadata()": "TreemapNodeStyleDescriptionMetadata()", + "TreemapNodeStyleDescriptionMetadata": "TreemapNodeStyleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodeStyleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleDescriptionModule()": "TreemapNodeStyleDescriptionModule()", + "TreemapNodeStyleDescriptionModule": "TreemapNodeStyleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyleMapping": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapNodeStyleMapping", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMapping()": "TreemapNodeStyleMapping()", + "TreemapNodeStyleMapping": "TreemapNodeStyleMapping()", + "MappingMode": "MappingMode", + "MappingModeProperty": "MappingModeProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "Name": "Name", + "NameProperty": "NameProperty", + "TargetType": "TargetType", + "TargetTypeProperty": "TargetTypeProperty", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "TreemapNodeStyleMappingCollection": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapNodeStyleMappingCollection", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMappingCollection()": "TreemapNodeStyleMappingCollection()", + "TreemapNodeStyleMappingCollection": "TreemapNodeStyleMappingCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TreemapNodeStyleMappingDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodeStyleMappingDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMappingDescription()": "TreemapNodeStyleMappingDescription()", + "TreemapNodeStyleMappingDescription": "TreemapNodeStyleMappingDescription()", + "MappingMode": "MappingMode", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "TargetType": "TargetType", + "Type": "Type", + "Value": "Value" + } + } + ], + "TreemapNodeStyleMappingDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodeStyleMappingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMappingDescriptionMetadata()": "TreemapNodeStyleMappingDescriptionMetadata()", + "TreemapNodeStyleMappingDescriptionMetadata": "TreemapNodeStyleMappingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyleMappingDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodeStyleMappingDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStyleMappingDescriptionModule()": "TreemapNodeStyleMappingDescriptionModule()", + "TreemapNodeStyleMappingDescriptionModule": "TreemapNodeStyleMappingDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeStyleMappingTargetType": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapNodeStyleMappingTargetType", + "k": "enum", + "s": "enums" + } + ], + "TreemapNodeStylingEventArgs": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapNodeStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStylingEventArgs()": "TreemapNodeStylingEventArgs()", + "TreemapNodeStylingEventArgs": "TreemapNodeStylingEventArgs()", + "CustomValue": "CustomValue", + "HighlightingHandled": "HighlightingHandled", + "HighlightingInfo": "HighlightingInfo", + "IsHighlightInProgress": "IsHighlightInProgress", + "IsParent": "IsParent", + "Item": "Item", + "Label": "Label", + "ParentItem": "ParentItem", + "ParentLabel": "ParentLabel", + "ParentSum": "ParentSum", + "ParentValue": "ParentValue", + "Style": "Style", + "Sum": "Sum", + "TotalHighlightProgress": "TotalHighlightProgress", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TreemapNodeStylingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodeStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStylingEventArgsDescription()": "TreemapNodeStylingEventArgsDescription()", + "TreemapNodeStylingEventArgsDescription": "TreemapNodeStylingEventArgsDescription()", + "CustomValueRef": "CustomValueRef", + "HighlightingHandled": "HighlightingHandled", + "HighlightingInfo": "HighlightingInfo", + "IsHighlightInProgress": "IsHighlightInProgress", + "IsParent": "IsParent", + "ItemRef": "ItemRef", + "Label": "Label", + "ParentItemRef": "ParentItemRef", + "ParentLabel": "ParentLabel", + "ParentSum": "ParentSum", + "ParentValue": "ParentValue", + "Style": "Style", + "Sum": "Sum", + "TotalHighlightProgress": "TotalHighlightProgress", + "Type": "Type", + "Value": "Value" + } + } + ], + "TreemapNodeStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TreemapNodeStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeStylingEventArgsDescriptionMetadata()": "TreemapNodeStylingEventArgsDescriptionMetadata()", + "TreemapNodeStylingEventArgsDescriptionMetadata": "TreemapNodeStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TreemapNodeVisualData": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapNodeVisualData", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeVisualData()": "TreemapNodeVisualData()", + "TreemapNodeVisualData": "TreemapNodeVisualData()", + "HeaderRect": "HeaderRect", + "HighlightRect": "HighlightRect", + "Label": "Label", + "NodeRect": "NodeRect", + "ScaleByViewport(RectData)": "ScaleByViewport(RectData)", + "ScaleByViewport": "ScaleByViewport(RectData)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()" + } + } + ], + "TreemapNodeVisualDataList": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapNodeVisualDataList", + "k": "class", + "s": "classes", + "m": { + "TreemapNodeVisualDataList()": "TreemapNodeVisualDataList()", + "TreemapNodeVisualDataList": "TreemapNodeVisualDataList()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)" + } + } + ], + "TreemapOrientation": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapOrientation", + "k": "enum", + "s": "enums" + } + ], + "TreemapValueMappingMode": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/enums/TreemapValueMappingMode", + "k": "enum", + "s": "enums" + } + ], + "TreemapVisualData": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/TreemapVisualData", + "k": "class", + "s": "classes", + "m": { + "TreemapVisualData()": "TreemapVisualData()", + "TreemapVisualData": "TreemapVisualData()", + "Name": "Name", + "Nodes": "Nodes", + "ScaleByViewport()": "ScaleByViewport()", + "ScaleByViewport": "ScaleByViewport()", + "ScaleFromDevicePixels(VisualDataPixelScalingOptions)": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "ScaleFromDevicePixels": "ScaleFromDevicePixels(VisualDataPixelScalingOptions)", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Viewport": "Viewport" + } + } + ], + "TrendLineLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TrendLineLayer", + "k": "class", + "s": "classes", + "m": { + "TrendLineLayer()": "TrendLineLayer()", + "TrendLineLayer": "TrendLineLayer()", + "ActualTargetSeries": "ActualTargetSeries", + "ActualTargetSeriesProperty": "ActualTargetSeriesProperty", + "GetManagerIdentifier()": "GetManagerIdentifier()", + "GetManagerIdentifier": "GetManagerIdentifier()", + "TargetSeries": "TargetSeries", + "TargetSeriesProperty": "TargetSeriesProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty" + } + } + ], + "TrendLineLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TrendLineLayerDescription", + "k": "class", + "s": "classes", + "m": { + "TrendLineLayerDescription()": "TrendLineLayerDescription()", + "TrendLineLayerDescription": "TrendLineLayerDescription()", + "ActualTargetSeriesRef": "ActualTargetSeriesRef", + "TargetSeriesRef": "TargetSeriesRef", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLineType": "TrendLineType", + "Type": "Type" + } + } + ], + "TrendLineLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TrendLineLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TrendLineLayerDescriptionMetadata()": "TrendLineLayerDescriptionMetadata()", + "TrendLineLayerDescriptionMetadata": "TrendLineLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TrendLineLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TrendLineLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TrendLineLayerDescriptionModule()": "TrendLineLayerDescriptionModule()", + "TrendLineLayerDescriptionModule": "TrendLineLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TrendLineType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/TrendLineType", + "k": "enum", + "s": "enums" + } + ], + "TrendLineTypeCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TrendLineTypeCollection", + "k": "class", + "s": "classes", + "m": { + "TrendLineTypeCollection()": "TrendLineTypeCollection()", + "TrendLineTypeCollection": "TrendLineTypeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "Triangle": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/Triangle", + "k": "class", + "s": "classes", + "m": { + "Triangle()": "Triangle()", + "Triangle": "Triangle()", + "V1": "V1", + "V2": "V2", + "V3": "V3" + } + } + ], + "TriangulationDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TriangulationDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "TriangulationDataSourceDescription()": "TriangulationDataSourceDescription()", + "TriangulationDataSourceDescription": "TriangulationDataSourceDescription()", + "ImportCompletedRef": "ImportCompletedRef", + "Type": "Type" + } + } + ], + "TriangulationDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TriangulationDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TriangulationDataSourceDescriptionMetadata()": "TriangulationDataSourceDescriptionMetadata()", + "TriangulationDataSourceDescriptionMetadata": "TriangulationDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TriangulationSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TriangulationSource", + "k": "class", + "s": "classes", + "m": { + "TriangulationSource()": "TriangulationSource()", + "TriangulationSource": "TriangulationSource()", + "LoadItf(BinaryReader)": "LoadItf(BinaryReader)", + "LoadItf": "LoadItf(BinaryReader)", + "Points": "Points", + "SaveItf(Stream)": "SaveItf(Stream)", + "SaveItf": "SaveItf(Stream)", + "Triangles": "Triangles", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TriangulationSourcePointRecord": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TriangulationSourcePointRecord", + "k": "class", + "s": "classes", + "m": { + "TriangulationSourcePointRecord()": "TriangulationSourcePointRecord()", + "TriangulationSourcePointRecord": "TriangulationSourcePointRecord()", + "Point": "Point", + "Value": "Value", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "TriangulationStatusEventArgs": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TriangulationStatusEventArgs", + "k": "class", + "s": "classes", + "m": { + "TriangulationStatusEventArgs(int)": "TriangulationStatusEventArgs(int)", + "TriangulationStatusEventArgs": "TriangulationStatusEventArgs(int)", + "CurrentStatus": "CurrentStatus" + } + } + ], + "TriangulationStatusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TriangulationStatusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "TriangulationStatusEventArgsDescription()": "TriangulationStatusEventArgsDescription()", + "TriangulationStatusEventArgsDescription": "TriangulationStatusEventArgsDescription()", + "CurrentStatus": "CurrentStatus", + "Type": "Type" + } + } + ], + "TriangulationStatusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TriangulationStatusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TriangulationStatusEventArgsDescriptionMetadata()": "TriangulationStatusEventArgsDescriptionMetadata()", + "TriangulationStatusEventArgsDescriptionMetadata": "TriangulationStatusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TRIXIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TRIXIndicator", + "k": "class", + "s": "classes", + "m": { + "TRIXIndicator()": "TRIXIndicator()", + "TRIXIndicator": "TRIXIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "TRIXIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TRIXIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "TRIXIndicatorDescription()": "TRIXIndicatorDescription()", + "TRIXIndicatorDescription": "TRIXIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "TRIXIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TRIXIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TRIXIndicatorDescriptionMetadata()": "TRIXIndicatorDescriptionMetadata()", + "TRIXIndicatorDescriptionMetadata": "TRIXIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TRIXIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TRIXIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TRIXIndicatorDescriptionModule()": "TRIXIndicatorDescriptionModule()", + "TRIXIndicatorDescriptionModule": "TRIXIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TSGlobalMemberAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/TSGlobalMemberAttribute", + "k": "class", + "s": "classes", + "m": { + "TSGlobalMemberAttribute()": "TSGlobalMemberAttribute()", + "TSGlobalMemberAttribute": "TSGlobalMemberAttribute()" + } + } + ], + "TSNativeMethodAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/TSNativeMethodAttribute", + "k": "class", + "s": "classes", + "m": { + "TSNativeMethodAttribute(string)": "TSNativeMethodAttribute(string)", + "TSNativeMethodAttribute": "TSNativeMethodAttribute(string)", + "NativeMethod": "NativeMethod" + } + } + ], + "TSNativePropertyAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/TSNativePropertyAttribute", + "k": "class", + "s": "classes", + "m": { + "TSNativePropertyAttribute()": "TSNativePropertyAttribute()", + "TSNativePropertyAttribute": "TSNativePropertyAttribute()" + } + } + ], + "TSWidgetIncludeDependsAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/TSWidgetIncludeDependsAttribute", + "k": "class", + "s": "classes", + "m": { + "TSWidgetIncludeDependsAttribute(string)": "TSWidgetIncludeDependsAttribute(string)", + "TSWidgetIncludeDependsAttribute": "TSWidgetIncludeDependsAttribute(string)", + "Name": "Name" + } + } + ], + "TypedEnumerable": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/TypedEnumerable", + "k": "class", + "s": "classes", + "m": { + "TypedEnumerable(IEnumerable)": "TypedEnumerable(IEnumerable)", + "TypedEnumerable": "TypedEnumerable(IEnumerable)" + } + } + ], + "TypeDescriptionContext": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TypeDescriptionContext", + "k": "class", + "s": "classes", + "m": { + "GetAllProperties(string)": "GetAllProperties(string)", + "GetAllProperties": "GetAllProperties(string)", + "GetDescriptionObjectType(string)": "GetDescriptionObjectType(string)", + "GetDescriptionObjectType": "GetDescriptionObjectType(string)", + "GetMetadata(string, string)": "GetMetadata(string, string)", + "GetMetadata": "GetMetadata(string, string)" + } + } + ], + "TypeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TypeDescriptionMetadata()": "TypeDescriptionMetadata()", + "TypeDescriptionMetadata": "TypeDescriptionMetadata()", + "Camelize(string)": "Camelize(string)", + "Camelize": "Camelize(string)", + "CollectionElementType": "CollectionElementType", + "IsCustomEvent": "IsCustomEvent", + "KnownType": "KnownType", + "MustBeFirst": "MustBeFirst", + "OwningType": "OwningType", + "PropertyName": "PropertyName", + "ShouldCamelize(TypeDescriptionPlatform)": "ShouldCamelize(TypeDescriptionPlatform)", + "ShouldCamelize": "ShouldCamelize(TypeDescriptionPlatform)", + "SkipWCEventPrefix": "SkipWCEventPrefix", + "SpecificExternalType": "SpecificExternalType", + "SpecificType": "SpecificType", + "ToPascal(string)": "ToPascal(string)", + "ToPascal": "ToPascal(string)" + } + } + ], + "TypeDescriptionPlatform": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/TypeDescriptionPlatform", + "k": "enum", + "s": "enums" + } + ], + "TypeDescriptionWellKnownType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/TypeDescriptionWellKnownType", + "k": "enum", + "s": "enums" + } + ], + "TypefaceManager": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TypefaceManager", + "k": "class", + "s": "classes", + "m": { + "TypefaceManager()": "TypefaceManager()", + "TypefaceManager": "TypefaceManager()", + "FromFamily(string, SKFontStyle)": "FromFamily(string, SKFontStyle)", + "FromFamily": "FromFamily(string, SKFontStyle)", + "Instance": "Instance", + "OverrideDefaultTypeface(SKFontStyle, SKTypeface)": "OverrideDefaultTypeface(SKFontStyle, SKTypeface)", + "OverrideDefaultTypeface": "OverrideDefaultTypeface(SKFontStyle, SKTypeface)", + "OverrideDefaultTypeface(SKTypeface)": "OverrideDefaultTypeface(SKTypeface)", + "RegisterTypeface(string, SKFontStyle, SKTypeface)": "RegisterTypeface(string, SKFontStyle, SKTypeface)", + "RegisterTypeface": "RegisterTypeface(string, SKFontStyle, SKTypeface)", + "RegisterTypeface(string, SKTypeface)": "RegisterTypeface(string, SKTypeface)" + } + }, + { + "p": "Infragistics.WinUI.SkiaSharp", + "u": "/api/winui/Infragistics.WinUI.SkiaSharp/latest/classes/TypefaceManager", + "k": "class", + "s": "classes", + "m": { + "TypefaceManager()": "TypefaceManager()", + "TypefaceManager": "TypefaceManager()", + "FromFamily(string, SKFontStyle)": "FromFamily(string, SKFontStyle)", + "FromFamily": "FromFamily(string, SKFontStyle)", + "Instance": "Instance", + "OverrideDefaultTypeface(SKFontStyle, SKTypeface)": "OverrideDefaultTypeface(SKFontStyle, SKTypeface)", + "OverrideDefaultTypeface": "OverrideDefaultTypeface(SKFontStyle, SKTypeface)", + "OverrideDefaultTypeface(SKTypeface)": "OverrideDefaultTypeface(SKTypeface)", + "RegisterTypeface(string, SKFontStyle, SKTypeface)": "RegisterTypeface(string, SKFontStyle, SKTypeface)", + "RegisterTypeface": "RegisterTypeface(string, SKFontStyle, SKTypeface)", + "RegisterTypeface(string, SKTypeface)": "RegisterTypeface(string, SKTypeface)" + } + } + ], + "TypicalPriceIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/TypicalPriceIndicator", + "k": "class", + "s": "classes", + "m": { + "TypicalPriceIndicator()": "TypicalPriceIndicator()", + "TypicalPriceIndicator": "TypicalPriceIndicator()" + } + } + ], + "TypicalPriceIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TypicalPriceIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "TypicalPriceIndicatorDescription()": "TypicalPriceIndicatorDescription()", + "TypicalPriceIndicatorDescription": "TypicalPriceIndicatorDescription()", + "Type": "Type" + } + } + ], + "TypicalPriceIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TypicalPriceIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "TypicalPriceIndicatorDescriptionMetadata()": "TypicalPriceIndicatorDescriptionMetadata()", + "TypicalPriceIndicatorDescriptionMetadata": "TypicalPriceIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "TypicalPriceIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/TypicalPriceIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "TypicalPriceIndicatorDescriptionModule()": "TypicalPriceIndicatorDescriptionModule()", + "TypicalPriceIndicatorDescriptionModule": "TypicalPriceIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UltimateOscillatorIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UltimateOscillatorIndicator", + "k": "class", + "s": "classes", + "m": { + "UltimateOscillatorIndicator()": "UltimateOscillatorIndicator()", + "UltimateOscillatorIndicator": "UltimateOscillatorIndicator()" + } + } + ], + "UltimateOscillatorIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UltimateOscillatorIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "UltimateOscillatorIndicatorDescription()": "UltimateOscillatorIndicatorDescription()", + "UltimateOscillatorIndicatorDescription": "UltimateOscillatorIndicatorDescription()", + "Type": "Type" + } + } + ], + "UltimateOscillatorIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UltimateOscillatorIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UltimateOscillatorIndicatorDescriptionMetadata()": "UltimateOscillatorIndicatorDescriptionMetadata()", + "UltimateOscillatorIndicatorDescriptionMetadata": "UltimateOscillatorIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UltimateOscillatorIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UltimateOscillatorIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UltimateOscillatorIndicatorDescriptionModule()": "UltimateOscillatorIndicatorDescriptionModule()", + "UltimateOscillatorIndicatorDescriptionModule": "UltimateOscillatorIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UnknownValuePlotting": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/UnknownValuePlotting", + "k": "enum", + "s": "enums" + } + ], + "UnownedAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/UnownedAttribute", + "k": "class", + "s": "classes", + "m": { + "UnownedAttribute()": "UnownedAttribute()", + "UnownedAttribute": "UnownedAttribute()" + } + } + ], + "UploadDataCompletedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UploadDataCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UploadDataCompletedEventArgsDescription()": "UploadDataCompletedEventArgsDescription()", + "UploadDataCompletedEventArgsDescription": "UploadDataCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "UploadDataCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UploadDataCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UploadDataCompletedEventArgsDescriptionMetadata()": "UploadDataCompletedEventArgsDescriptionMetadata()", + "UploadDataCompletedEventArgsDescriptionMetadata": "UploadDataCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UploadStringCompletedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UploadStringCompletedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UploadStringCompletedEventArgsDescription()": "UploadStringCompletedEventArgsDescription()", + "UploadStringCompletedEventArgsDescription": "UploadStringCompletedEventArgsDescription()", + "Type": "Type" + } + } + ], + "UploadStringCompletedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UploadStringCompletedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UploadStringCompletedEventArgsDescriptionMetadata()": "UploadStringCompletedEventArgsDescriptionMetadata()", + "UploadStringCompletedEventArgsDescriptionMetadata": "UploadStringCompletedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationAxisDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationAxisDataContext", + "k": "class", + "s": "classes", + "m": { + "Value": "Value" + } + } + ], + "UserAnnotationCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationCollection", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationCollection()": "UserAnnotationCollection()", + "UserAnnotationCollection": "UserAnnotationCollection()", + "OnCollectionResetting(EventArgs)": "OnCollectionResetting(EventArgs)", + "OnCollectionResetting": "OnCollectionResetting(EventArgs)", + "RemoveAll(UserAnnotationTarget)": "RemoveAll(UserAnnotationTarget)", + "RemoveAll": "RemoveAll(UserAnnotationTarget)", + "RemoveFirst(UserAnnotationTarget)": "RemoveFirst(UserAnnotationTarget)", + "RemoveFirst": "RemoveFirst(UserAnnotationTarget)", + "RemoveLast(UserAnnotationTarget)": "RemoveLast(UserAnnotationTarget)", + "RemoveLast": "RemoveLast(UserAnnotationTarget)", + "ReplaceFirst(UserAnnotationTarget, UserBaseAnnotation)": "ReplaceFirst(UserAnnotationTarget, UserBaseAnnotation)", + "ReplaceFirst": "ReplaceFirst(UserAnnotationTarget, UserBaseAnnotation)", + "ReplaceLast(UserAnnotationTarget, UserBaseAnnotation)": "ReplaceLast(UserAnnotationTarget, UserBaseAnnotation)", + "ReplaceLast": "ReplaceLast(UserAnnotationTarget, UserBaseAnnotation)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAnnotationContentUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationContentUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationContentUpdatingEventArgsDescription()": "UserAnnotationContentUpdatingEventArgsDescription()", + "UserAnnotationContentUpdatingEventArgsDescription": "UserAnnotationContentUpdatingEventArgsDescription()", + "Type": "Type" + } + } + ], + "UserAnnotationContentUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationContentUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationContentUpdatingEventArgsDescriptionMetadata()": "UserAnnotationContentUpdatingEventArgsDescriptionMetadata()", + "UserAnnotationContentUpdatingEventArgsDescriptionMetadata": "UserAnnotationContentUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationDataContext", + "k": "class", + "s": "classes", + "m": { + "Label": "Label" + } + } + ], + "UserAnnotationInformation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationInformation", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformation()": "UserAnnotationInformation()", + "UserAnnotationInformation": "UserAnnotationInformation()", + "AnnotationData": "AnnotationData", + "AnnotationId": "AnnotationId", + "BadgeColor": "BadgeColor", + "BadgeImageUri": "BadgeImageUri", + "DialogSuggestedXLocation": "DialogSuggestedXLocation", + "DialogSuggestedYLocation": "DialogSuggestedYLocation", + "Label": "Label", + "MainColor": "MainColor", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAnnotationInformationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationInformationDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationDescription()": "UserAnnotationInformationDescription()", + "UserAnnotationInformationDescription": "UserAnnotationInformationDescription()", + "AnnotationData": "AnnotationData", + "AnnotationId": "AnnotationId", + "BadgeColor": "BadgeColor", + "BadgeImageUri": "BadgeImageUri", + "DialogSuggestedXLocation": "DialogSuggestedXLocation", + "DialogSuggestedYLocation": "DialogSuggestedYLocation", + "Label": "Label", + "MainColor": "MainColor", + "Type": "Type" + } + } + ], + "UserAnnotationInformationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationInformationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationDescriptionMetadata()": "UserAnnotationInformationDescriptionMetadata()", + "UserAnnotationInformationDescriptionMetadata": "UserAnnotationInformationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationInformationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationInformationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationDescriptionModule()": "UserAnnotationInformationDescriptionModule()", + "UserAnnotationInformationDescriptionModule": "UserAnnotationInformationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationInformationEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationInformationEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationEventArgs()": "UserAnnotationInformationEventArgs()", + "UserAnnotationInformationEventArgs": "UserAnnotationInformationEventArgs()", + "AnnotationInfo": "AnnotationInfo", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAnnotationInformationEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationInformationEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationEventArgsDescription()": "UserAnnotationInformationEventArgsDescription()", + "UserAnnotationInformationEventArgsDescription": "UserAnnotationInformationEventArgsDescription()", + "AnnotationInfo": "AnnotationInfo", + "Type": "Type" + } + } + ], + "UserAnnotationInformationEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationInformationEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationInformationEventArgsDescriptionMetadata()": "UserAnnotationInformationEventArgsDescriptionMetadata()", + "UserAnnotationInformationEventArgsDescriptionMetadata": "UserAnnotationInformationEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationLayer", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationLayer()": "UserAnnotationLayer()", + "UserAnnotationLayer": "UserAnnotationLayer()", + "Annotations": "Annotations", + "CancelAnnotationFlow(string)": "CancelAnnotationFlow(string)", + "CancelAnnotationFlow": "CancelAnnotationFlow(string)", + "FinishAnnotationFlow(UserAnnotationInformation)": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishAnnotationFlow": "FinishAnnotationFlow(UserAnnotationInformation)", + "LoadAnnotationsFromJson(string)": "LoadAnnotationsFromJson(string)", + "LoadAnnotationsFromJson": "LoadAnnotationsFromJson(string)", + "OnStylingAxisAnnotation(UserAxisAnnotationStylingEventArgs)": "OnStylingAxisAnnotation(UserAxisAnnotationStylingEventArgs)", + "OnStylingAxisAnnotation": "OnStylingAxisAnnotation(UserAxisAnnotationStylingEventArgs)", + "OnStylingPointAnnotation(UserPointAnnotationStylingEventArgs)": "OnStylingPointAnnotation(UserPointAnnotationStylingEventArgs)", + "OnStylingPointAnnotation": "OnStylingPointAnnotation(UserPointAnnotationStylingEventArgs)", + "OnStylingSliceAnnotation(UserSliceAnnotationStylingEventArgs)": "OnStylingSliceAnnotation(UserSliceAnnotationStylingEventArgs)", + "OnStylingSliceAnnotation": "OnStylingSliceAnnotation(UserSliceAnnotationStylingEventArgs)", + "OnStylingStripAnnotation(UserStripAnnotationStylingEventArgs)": "OnStylingStripAnnotation(UserStripAnnotationStylingEventArgs)", + "OnStylingStripAnnotation": "OnStylingStripAnnotation(UserStripAnnotationStylingEventArgs)", + "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationInformationRequested": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "SaveAnnotationsToJson()": "SaveAnnotationsToJson()", + "SaveAnnotationsToJson": "SaveAnnotationsToJson()" + } + } + ], + "UserAnnotationLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationLayerDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationLayerDescription()": "UserAnnotationLayerDescription()", + "UserAnnotationLayerDescription": "UserAnnotationLayerDescription()", + "Annotations": "Annotations", + "StylingAxisAnnotationRef": "StylingAxisAnnotationRef", + "StylingPointAnnotationRef": "StylingPointAnnotationRef", + "StylingSliceAnnotationRef": "StylingSliceAnnotationRef", + "StylingStripAnnotationRef": "StylingStripAnnotationRef", + "Type": "Type", + "UserAnnotationInformationRequestedRef": "UserAnnotationInformationRequestedRef" + } + } + ], + "UserAnnotationLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationLayerDescriptionMetadata()": "UserAnnotationLayerDescriptionMetadata()", + "UserAnnotationLayerDescriptionMetadata": "UserAnnotationLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationLayerDescriptionModule()": "UserAnnotationLayerDescriptionModule()", + "UserAnnotationLayerDescriptionModule": "UserAnnotationLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationPointDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationPointDataContext", + "k": "class", + "s": "classes", + "m": { + "XValue": "XValue", + "YValue": "YValue" + } + } + ], + "UserAnnotationShapeDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationShapeDataContext", + "k": "class", + "s": "classes", + "m": { + "OverlayText": "OverlayText" + } + } + ], + "UserAnnotationSliceDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationSliceDataContext", + "k": "class", + "s": "classes" + } + ], + "UserAnnotationStripDataContext": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationStripDataContext", + "k": "class", + "s": "classes", + "m": { + "EndLabel": "EndLabel", + "EndValue": "EndValue", + "StartLabel": "StartLabel", + "StartValue": "StartValue" + } + } + ], + "UserAnnotationTarget": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/UserAnnotationTarget", + "k": "enum", + "s": "enums" + } + ], + "UserAnnotationToolTipContentUpdatingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationToolTipContentUpdatingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipContentUpdatingEventArgs()": "UserAnnotationToolTipContentUpdatingEventArgs()", + "UserAnnotationToolTipContentUpdatingEventArgs": "UserAnnotationToolTipContentUpdatingEventArgs()", + "AnnotationInfo": "AnnotationInfo", + "Content": "Content", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAnnotationToolTipContentUpdatingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationToolTipContentUpdatingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipContentUpdatingEventArgsDescription()": "UserAnnotationToolTipContentUpdatingEventArgsDescription()", + "UserAnnotationToolTipContentUpdatingEventArgsDescription": "UserAnnotationToolTipContentUpdatingEventArgsDescription()", + "AnnotationInfo": "AnnotationInfo", + "ContentRef": "ContentRef", + "Type": "Type" + } + } + ], + "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata()": "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata()", + "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata": "UserAnnotationToolTipContentUpdatingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationToolTipLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAnnotationToolTipLayer", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipLayer()": "UserAnnotationToolTipLayer()", + "UserAnnotationToolTipLayer": "UserAnnotationToolTipLayer()", + "OnContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)": "OnContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnContentUpdating": "OnContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesNameProperty": "TargetSeriesNameProperty", + "TargetSeriesProperty": "TargetSeriesProperty" + } + } + ], + "UserAnnotationToolTipLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationToolTipLayerDescription", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipLayerDescription()": "UserAnnotationToolTipLayerDescription()", + "UserAnnotationToolTipLayerDescription": "UserAnnotationToolTipLayerDescription()", + "ContentUpdatingRef": "ContentUpdatingRef", + "SkipUnknownValues": "SkipUnknownValues", + "TargetSeriesName": "TargetSeriesName", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type" + } + } + ], + "UserAnnotationToolTipLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationToolTipLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipLayerDescriptionMetadata()": "UserAnnotationToolTipLayerDescriptionMetadata()", + "UserAnnotationToolTipLayerDescriptionMetadata": "UserAnnotationToolTipLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAnnotationToolTipLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAnnotationToolTipLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserAnnotationToolTipLayerDescriptionModule()": "UserAnnotationToolTipLayerDescriptionModule()", + "UserAnnotationToolTipLayerDescriptionModule": "UserAnnotationToolTipLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAxisAnnotation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAxisAnnotation", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotation()": "UserAxisAnnotation()", + "UserAxisAnnotation": "UserAxisAnnotation()", + "TargetAxis": "TargetAxis", + "TargetAxisMatcher": "TargetAxisMatcher", + "Value": "Value" + } + } + ], + "UserAxisAnnotationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAxisAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationDescription()": "UserAxisAnnotationDescription()", + "UserAxisAnnotationDescription": "UserAxisAnnotationDescription()", + "TargetAxisMatcher": "TargetAxisMatcher", + "TargetAxisRef": "TargetAxisRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "UserAxisAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAxisAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationDescriptionMetadata()": "UserAxisAnnotationDescriptionMetadata()", + "UserAxisAnnotationDescriptionMetadata": "UserAxisAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAxisAnnotationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAxisAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationDescriptionModule()": "UserAxisAnnotationDescriptionModule()", + "UserAxisAnnotationDescriptionModule": "UserAxisAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserAxisAnnotationStylingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserAxisAnnotationStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationStylingEventArgs()": "UserAxisAnnotationStylingEventArgs()", + "UserAxisAnnotationStylingEventArgs": "UserAxisAnnotationStylingEventArgs()", + "Annotation": "Annotation", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserAxisAnnotationStylingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAxisAnnotationStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationStylingEventArgsDescription()": "UserAxisAnnotationStylingEventArgsDescription()", + "UserAxisAnnotationStylingEventArgsDescription": "UserAxisAnnotationStylingEventArgsDescription()", + "Annotation": "Annotation", + "Type": "Type" + } + } + ], + "UserAxisAnnotationStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserAxisAnnotationStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserAxisAnnotationStylingEventArgsDescriptionMetadata()": "UserAxisAnnotationStylingEventArgsDescriptionMetadata()", + "UserAxisAnnotationStylingEventArgsDescriptionMetadata": "UserAxisAnnotationStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserBaseAnnotation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserBaseAnnotation", + "k": "class", + "s": "classes", + "m": { + "AnnotationData": "AnnotationData", + "BadgeBackground": "BadgeBackground", + "BadgeCornerRadius": "BadgeCornerRadius", + "BadgeImagePath": "BadgeImagePath", + "BadgeMargin": "BadgeMargin", + "BadgeOutline": "BadgeOutline", + "BadgeSize": "BadgeSize", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "Identifier": "Identifier", + "IsPillShaped": "IsPillShaped", + "IsVisible": "IsVisible", + "Label": "Label", + "LabelBackground": "LabelBackground", + "LabelBorderColor": "LabelBorderColor", + "LabelBorderRadius": "LabelBorderRadius", + "LabelBorderThickness": "LabelBorderThickness", + "LabelColor": "LabelColor", + "LabelPadding": "LabelPadding", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserBaseAnnotationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserBaseAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserBaseAnnotationDescription()": "UserBaseAnnotationDescription()", + "UserBaseAnnotationDescription": "UserBaseAnnotationDescription()", + "AnnotationData": "AnnotationData", + "BadgeBackground": "BadgeBackground", + "BadgeCornerRadius": "BadgeCornerRadius", + "BadgeImagePath": "BadgeImagePath", + "BadgeMargin": "BadgeMargin", + "BadgeOutline": "BadgeOutline", + "BadgeSize": "BadgeSize", + "BadgeThickness": "BadgeThickness", + "BadgeVisible": "BadgeVisible", + "Identifier": "Identifier", + "IsPillShaped": "IsPillShaped", + "IsVisible": "IsVisible", + "Label": "Label", + "LabelBackground": "LabelBackground", + "LabelBorderColor": "LabelBorderColor", + "LabelBorderRadius": "LabelBorderRadius", + "LabelBorderThickness": "LabelBorderThickness", + "LabelColor": "LabelColor", + "LabelPadding": "LabelPadding", + "Type": "Type" + } + } + ], + "UserBaseAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserBaseAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserBaseAnnotationDescriptionMetadata()": "UserBaseAnnotationDescriptionMetadata()", + "UserBaseAnnotationDescriptionMetadata": "UserBaseAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserPointAnnotation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserPointAnnotation", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotation()": "UserPointAnnotation()", + "UserPointAnnotation": "UserPointAnnotation()", + "TargetSeries": "TargetSeries", + "TargetSeriesMatcher": "TargetSeriesMatcher", + "XValue": "XValue", + "YValue": "YValue" + } + } + ], + "UserPointAnnotationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserPointAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationDescription()": "UserPointAnnotationDescription()", + "UserPointAnnotationDescription": "UserPointAnnotationDescription()", + "TargetSeriesMatcher": "TargetSeriesMatcher", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type", + "XValue": "XValue", + "YValue": "YValue" + } + } + ], + "UserPointAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserPointAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationDescriptionMetadata()": "UserPointAnnotationDescriptionMetadata()", + "UserPointAnnotationDescriptionMetadata": "UserPointAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserPointAnnotationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserPointAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationDescriptionModule()": "UserPointAnnotationDescriptionModule()", + "UserPointAnnotationDescriptionModule": "UserPointAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserPointAnnotationStylingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserPointAnnotationStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationStylingEventArgs()": "UserPointAnnotationStylingEventArgs()", + "UserPointAnnotationStylingEventArgs": "UserPointAnnotationStylingEventArgs()", + "Annotation": "Annotation", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserPointAnnotationStylingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserPointAnnotationStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationStylingEventArgsDescription()": "UserPointAnnotationStylingEventArgsDescription()", + "UserPointAnnotationStylingEventArgsDescription": "UserPointAnnotationStylingEventArgsDescription()", + "Annotation": "Annotation", + "Type": "Type" + } + } + ], + "UserPointAnnotationStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserPointAnnotationStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserPointAnnotationStylingEventArgsDescriptionMetadata()": "UserPointAnnotationStylingEventArgsDescriptionMetadata()", + "UserPointAnnotationStylingEventArgsDescriptionMetadata": "UserPointAnnotationStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserShapeAnnotation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserShapeAnnotation", + "k": "class", + "s": "classes", + "m": { + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "ShapeBackground": "ShapeBackground", + "ShapeOutline": "ShapeOutline", + "ShapeThickness": "ShapeThickness", + "ValueDisplayMode": "ValueDisplayMode" + } + } + ], + "UserShapeAnnotationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserShapeAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserShapeAnnotationDescription()": "UserShapeAnnotationDescription()", + "UserShapeAnnotationDescription": "UserShapeAnnotationDescription()", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "ShapeBackground": "ShapeBackground", + "ShapeOutline": "ShapeOutline", + "ShapeThickness": "ShapeThickness", + "Type": "Type", + "ValueDisplayMode": "ValueDisplayMode" + } + } + ], + "UserShapeAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserShapeAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserShapeAnnotationDescriptionMetadata()": "UserShapeAnnotationDescriptionMetadata()", + "UserShapeAnnotationDescriptionMetadata": "UserShapeAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserSliceAnnotation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserSliceAnnotation", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotation()": "UserSliceAnnotation()", + "UserSliceAnnotation": "UserSliceAnnotation()" + } + } + ], + "UserSliceAnnotationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserSliceAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationDescription()": "UserSliceAnnotationDescription()", + "UserSliceAnnotationDescription": "UserSliceAnnotationDescription()", + "Type": "Type" + } + } + ], + "UserSliceAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserSliceAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationDescriptionMetadata()": "UserSliceAnnotationDescriptionMetadata()", + "UserSliceAnnotationDescriptionMetadata": "UserSliceAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserSliceAnnotationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserSliceAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationDescriptionModule()": "UserSliceAnnotationDescriptionModule()", + "UserSliceAnnotationDescriptionModule": "UserSliceAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserSliceAnnotationStylingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserSliceAnnotationStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationStylingEventArgs()": "UserSliceAnnotationStylingEventArgs()", + "UserSliceAnnotationStylingEventArgs": "UserSliceAnnotationStylingEventArgs()", + "Annotation": "Annotation", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserSliceAnnotationStylingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserSliceAnnotationStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationStylingEventArgsDescription()": "UserSliceAnnotationStylingEventArgsDescription()", + "UserSliceAnnotationStylingEventArgsDescription": "UserSliceAnnotationStylingEventArgsDescription()", + "Annotation": "Annotation", + "Type": "Type" + } + } + ], + "UserSliceAnnotationStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserSliceAnnotationStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserSliceAnnotationStylingEventArgsDescriptionMetadata()": "UserSliceAnnotationStylingEventArgsDescriptionMetadata()", + "UserSliceAnnotationStylingEventArgsDescriptionMetadata": "UserSliceAnnotationStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserStripAnnotation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserStripAnnotation", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotation()": "UserStripAnnotation()", + "UserStripAnnotation": "UserStripAnnotation()", + "EndLabel": "EndLabel", + "EndLabelBackground": "EndLabelBackground", + "EndLabelBorderColor": "EndLabelBorderColor", + "EndLabelColor": "EndLabelColor", + "EndValue": "EndValue", + "EndValueDisplayMode": "EndValueDisplayMode", + "StartLabel": "StartLabel", + "StartLabelBackground": "StartLabelBackground", + "StartLabelBorderColor": "StartLabelBorderColor", + "StartLabelColor": "StartLabelColor", + "StartValue": "StartValue", + "StartValueDisplayMode": "StartValueDisplayMode" + } + } + ], + "UserStripAnnotationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserStripAnnotationDescription", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationDescription()": "UserStripAnnotationDescription()", + "UserStripAnnotationDescription": "UserStripAnnotationDescription()", + "EndLabel": "EndLabel", + "EndLabelBackground": "EndLabelBackground", + "EndLabelBorderColor": "EndLabelBorderColor", + "EndLabelColor": "EndLabelColor", + "EndValue": "EndValue", + "EndValueDisplayMode": "EndValueDisplayMode", + "StartLabel": "StartLabel", + "StartLabelBackground": "StartLabelBackground", + "StartLabelBorderColor": "StartLabelBorderColor", + "StartLabelColor": "StartLabelColor", + "StartValue": "StartValue", + "StartValueDisplayMode": "StartValueDisplayMode", + "Type": "Type" + } + } + ], + "UserStripAnnotationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserStripAnnotationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationDescriptionMetadata()": "UserStripAnnotationDescriptionMetadata()", + "UserStripAnnotationDescriptionMetadata": "UserStripAnnotationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserStripAnnotationDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserStripAnnotationDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationDescriptionModule()": "UserStripAnnotationDescriptionModule()", + "UserStripAnnotationDescriptionModule": "UserStripAnnotationDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "UserStripAnnotationStylingEventArgs": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/UserStripAnnotationStylingEventArgs", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationStylingEventArgs()": "UserStripAnnotationStylingEventArgs()", + "UserStripAnnotationStylingEventArgs": "UserStripAnnotationStylingEventArgs()", + "Annotation": "Annotation", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "UserStripAnnotationStylingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserStripAnnotationStylingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationStylingEventArgsDescription()": "UserStripAnnotationStylingEventArgsDescription()", + "UserStripAnnotationStylingEventArgsDescription": "UserStripAnnotationStylingEventArgsDescription()", + "Annotation": "Annotation", + "Type": "Type" + } + } + ], + "UserStripAnnotationStylingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/UserStripAnnotationStylingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "UserStripAnnotationStylingEventArgsDescriptionMetadata()": "UserStripAnnotationStylingEventArgsDescriptionMetadata()", + "UserStripAnnotationStylingEventArgsDescriptionMetadata": "UserStripAnnotationStylingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueAxisLabelLocation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ValueAxisLabelLocation", + "k": "enum", + "s": "enums" + } + ], + "ValueBrushScale": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ValueBrushScale", + "k": "class", + "s": "classes", + "m": { + "ValueBrushScale()": "ValueBrushScale()", + "ValueBrushScale": "ValueBrushScale()", + "GetBrushByIndex(int, IFastItemColumn)": "GetBrushByIndex(int, IFastItemColumn)", + "GetBrushByIndex": "GetBrushByIndex(int, IFastItemColumn)", + "GetBrushByRange(double, double, double)": "GetBrushByRange(double, double, double)", + "GetBrushByRange": "GetBrushByRange(double, double, double)", + "GetBrushByValue(double, IFastItemColumn)": "GetBrushByValue(double, IFastItemColumn)", + "GetBrushByValue": "GetBrushByValue(double, IFastItemColumn)", + "IsLogarithmic": "IsLogarithmic", + "IsLogarithmicProperty": "IsLogarithmicProperty", + "LogarithmBase": "LogarithmBase", + "LogarithmBaseProperty": "LogarithmBaseProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty" + } + } + ], + "ValueBrushScaleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueBrushScaleDescription", + "k": "class", + "s": "classes", + "m": { + "ValueBrushScaleDescription()": "ValueBrushScaleDescription()", + "ValueBrushScaleDescription": "ValueBrushScaleDescription()", + "IsLogarithmic": "IsLogarithmic", + "LogarithmBase": "LogarithmBase", + "MaximumValue": "MaximumValue", + "MinimumValue": "MinimumValue", + "Type": "Type" + } + } + ], + "ValueBrushScaleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueBrushScaleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ValueBrushScaleDescriptionMetadata()": "ValueBrushScaleDescriptionMetadata()", + "ValueBrushScaleDescriptionMetadata": "ValueBrushScaleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueBrushScaleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueBrushScaleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ValueBrushScaleDescriptionModule()": "ValueBrushScaleDescriptionModule()", + "ValueBrushScaleDescriptionModule": "ValueBrushScaleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueCollisionMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ValueCollisionMode", + "k": "enum", + "s": "enums" + } + ], + "ValueGetterResult": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/ValueGetterResult", + "k": "class", + "s": "classes", + "m": { + "ValueGetterResult(object, bool)": "ValueGetterResult(object, bool)", + "ValueGetterResult": "ValueGetterResult(object, bool)", + "NullIsValue": "NullIsValue", + "Value": "Value" + } + } + ], + "ValueLayer": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ValueLayer", + "k": "class", + "s": "classes", + "m": { + "ValueLayer()": "ValueLayer()", + "ValueLayer": "ValueLayer()", + "ActualValueLayerBrush": "ActualValueLayerBrush", + "ActualValueLayerBrushProperty": "ActualValueLayerBrushProperty", + "HorizontalLineStroke": "HorizontalLineStroke", + "HorizontalLineStrokeProperty": "HorizontalLineStrokeProperty", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "IsAxisAnnotationEnabledProperty": "IsAxisAnnotationEnabledProperty", + "OnStylingOverlayText(OverlayTextUpdatingEventArgs)": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnStylingOverlayText": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnXAxisAnnotationFormatLabel": "OnXAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisAnnotationFormatLabel": "OnYAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextAngleProperty": "OverlayTextAngleProperty", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMatchLayerProperty": "OverlayTextBackgroundMatchLayerProperty", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundModeProperty": "OverlayTextBackgroundModeProperty", + "OverlayTextBackgroundProperty": "OverlayTextBackgroundProperty", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBackgroundShiftProperty": "OverlayTextBackgroundShiftProperty", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderColorProperty": "OverlayTextBorderColorProperty", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMatchLayerProperty": "OverlayTextBorderMatchLayerProperty", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderModeProperty": "OverlayTextBorderModeProperty", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderRadiusProperty": "OverlayTextBorderRadiusProperty", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderShiftProperty": "OverlayTextBorderShiftProperty", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextBorderThicknessProperty": "OverlayTextBorderThicknessProperty", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMatchLayerProperty": "OverlayTextColorMatchLayerProperty", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorModeProperty": "OverlayTextColorModeProperty", + "OverlayTextColorProperty": "OverlayTextColorProperty", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextColorShiftProperty": "OverlayTextColorShiftProperty", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontFamilyProperty": "OverlayTextFontFamilyProperty", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontSizeProperty": "OverlayTextFontSizeProperty", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontStyleProperty": "OverlayTextFontStyleProperty", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextFontWeightProperty": "OverlayTextFontWeightProperty", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalMarginProperty": "OverlayTextHorizontalMarginProperty", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextHorizontalPaddingProperty": "OverlayTextHorizontalPaddingProperty", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextLocationProperty": "OverlayTextLocationProperty", + "OverlayTextProperty": "OverlayTextProperty", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalMarginProperty": "OverlayTextVerticalMarginProperty", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVerticalPaddingProperty": "OverlayTextVerticalPaddingProperty", + "OverlayTextVisible": "OverlayTextVisible", + "OverlayTextVisibleProperty": "OverlayTextVisibleProperty", + "SkipUnknownValues": "SkipUnknownValues", + "SkipUnknownValuesProperty": "SkipUnknownValuesProperty", + "TargetAxis": "TargetAxis", + "TargetAxisProperty": "TargetAxisProperty", + "TargetSeries": "TargetSeries", + "TargetSeriesProperty": "TargetSeriesProperty", + "UseInterpolation": "UseInterpolation", + "UseInterpolationProperty": "UseInterpolationProperty", + "ValueMode": "ValueMode", + "ValueModeProperty": "ValueModeProperty", + "VerticalLineStroke": "VerticalLineStroke", + "VerticalLineStrokeProperty": "VerticalLineStrokeProperty", + "XAxisAnnotationBackground": "XAxisAnnotationBackground", + "XAxisAnnotationBackgroundCornerRadius": "XAxisAnnotationBackgroundCornerRadius", + "XAxisAnnotationBackgroundCornerRadiusProperty": "XAxisAnnotationBackgroundCornerRadiusProperty", + "XAxisAnnotationBackgroundProperty": "XAxisAnnotationBackgroundProperty", + "XAxisAnnotationInterpolatedValuePrecision": "XAxisAnnotationInterpolatedValuePrecision", + "XAxisAnnotationInterpolatedValuePrecisionProperty": "XAxisAnnotationInterpolatedValuePrecisionProperty", + "XAxisAnnotationOutline": "XAxisAnnotationOutline", + "XAxisAnnotationOutlineProperty": "XAxisAnnotationOutlineProperty", + "XAxisAnnotationPaddingBottom": "XAxisAnnotationPaddingBottom", + "XAxisAnnotationPaddingBottomProperty": "XAxisAnnotationPaddingBottomProperty", + "XAxisAnnotationPaddingLeft": "XAxisAnnotationPaddingLeft", + "XAxisAnnotationPaddingLeftProperty": "XAxisAnnotationPaddingLeftProperty", + "XAxisAnnotationPaddingRight": "XAxisAnnotationPaddingRight", + "XAxisAnnotationPaddingRightProperty": "XAxisAnnotationPaddingRightProperty", + "XAxisAnnotationPaddingTop": "XAxisAnnotationPaddingTop", + "XAxisAnnotationPaddingTopProperty": "XAxisAnnotationPaddingTopProperty", + "XAxisAnnotationStrokeThickness": "XAxisAnnotationStrokeThickness", + "XAxisAnnotationStrokeThicknessProperty": "XAxisAnnotationStrokeThicknessProperty", + "XAxisAnnotationTextColor": "XAxisAnnotationTextColor", + "XAxisAnnotationTextColorProperty": "XAxisAnnotationTextColorProperty", + "YAxisAnnotationBackground": "YAxisAnnotationBackground", + "YAxisAnnotationBackgroundCornerRadius": "YAxisAnnotationBackgroundCornerRadius", + "YAxisAnnotationBackgroundCornerRadiusProperty": "YAxisAnnotationBackgroundCornerRadiusProperty", + "YAxisAnnotationBackgroundProperty": "YAxisAnnotationBackgroundProperty", + "YAxisAnnotationInterpolatedValuePrecision": "YAxisAnnotationInterpolatedValuePrecision", + "YAxisAnnotationInterpolatedValuePrecisionProperty": "YAxisAnnotationInterpolatedValuePrecisionProperty", + "YAxisAnnotationOutline": "YAxisAnnotationOutline", + "YAxisAnnotationOutlineProperty": "YAxisAnnotationOutlineProperty", + "YAxisAnnotationPaddingBottom": "YAxisAnnotationPaddingBottom", + "YAxisAnnotationPaddingBottomProperty": "YAxisAnnotationPaddingBottomProperty", + "YAxisAnnotationPaddingLeft": "YAxisAnnotationPaddingLeft", + "YAxisAnnotationPaddingLeftProperty": "YAxisAnnotationPaddingLeftProperty", + "YAxisAnnotationPaddingRight": "YAxisAnnotationPaddingRight", + "YAxisAnnotationPaddingRightProperty": "YAxisAnnotationPaddingRightProperty", + "YAxisAnnotationPaddingTop": "YAxisAnnotationPaddingTop", + "YAxisAnnotationPaddingTopProperty": "YAxisAnnotationPaddingTopProperty", + "YAxisAnnotationStrokeThickness": "YAxisAnnotationStrokeThickness", + "YAxisAnnotationStrokeThicknessProperty": "YAxisAnnotationStrokeThicknessProperty", + "YAxisAnnotationTextColor": "YAxisAnnotationTextColor", + "YAxisAnnotationTextColorProperty": "YAxisAnnotationTextColorProperty" + } + } + ], + "ValueLayerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueLayerDescription", + "k": "class", + "s": "classes", + "m": { + "ValueLayerDescription()": "ValueLayerDescription()", + "ValueLayerDescription": "ValueLayerDescription()", + "ActualValueLayerBrush": "ActualValueLayerBrush", + "HorizontalLineStroke": "HorizontalLineStroke", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "SkipUnknownValues": "SkipUnknownValues", + "StylingOverlayTextRef": "StylingOverlayTextRef", + "TargetAxisRef": "TargetAxisRef", + "TargetSeriesRef": "TargetSeriesRef", + "Type": "Type", + "UseInterpolation": "UseInterpolation", + "ValueMode": "ValueMode", + "VerticalLineStroke": "VerticalLineStroke", + "XAxisAnnotationBackground": "XAxisAnnotationBackground", + "XAxisAnnotationBackgroundCornerRadius": "XAxisAnnotationBackgroundCornerRadius", + "XAxisAnnotationFormatLabelRef": "XAxisAnnotationFormatLabelRef", + "XAxisAnnotationInterpolatedValuePrecision": "XAxisAnnotationInterpolatedValuePrecision", + "XAxisAnnotationOutline": "XAxisAnnotationOutline", + "XAxisAnnotationPaddingBottom": "XAxisAnnotationPaddingBottom", + "XAxisAnnotationPaddingLeft": "XAxisAnnotationPaddingLeft", + "XAxisAnnotationPaddingRight": "XAxisAnnotationPaddingRight", + "XAxisAnnotationPaddingTop": "XAxisAnnotationPaddingTop", + "XAxisAnnotationStrokeThickness": "XAxisAnnotationStrokeThickness", + "XAxisAnnotationTextColor": "XAxisAnnotationTextColor", + "YAxisAnnotationBackground": "YAxisAnnotationBackground", + "YAxisAnnotationBackgroundCornerRadius": "YAxisAnnotationBackgroundCornerRadius", + "YAxisAnnotationFormatLabelRef": "YAxisAnnotationFormatLabelRef", + "YAxisAnnotationInterpolatedValuePrecision": "YAxisAnnotationInterpolatedValuePrecision", + "YAxisAnnotationOutline": "YAxisAnnotationOutline", + "YAxisAnnotationPaddingBottom": "YAxisAnnotationPaddingBottom", + "YAxisAnnotationPaddingLeft": "YAxisAnnotationPaddingLeft", + "YAxisAnnotationPaddingRight": "YAxisAnnotationPaddingRight", + "YAxisAnnotationPaddingTop": "YAxisAnnotationPaddingTop", + "YAxisAnnotationStrokeThickness": "YAxisAnnotationStrokeThickness", + "YAxisAnnotationTextColor": "YAxisAnnotationTextColor" + } + } + ], + "ValueLayerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueLayerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ValueLayerDescriptionMetadata()": "ValueLayerDescriptionMetadata()", + "ValueLayerDescriptionMetadata": "ValueLayerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueLayerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueLayerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ValueLayerDescriptionModule()": "ValueLayerDescriptionModule()", + "ValueLayerDescriptionModule": "ValueLayerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueLayerValueMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ValueLayerValueMode", + "k": "enum", + "s": "enums" + } + ], + "ValueModeCollection": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ValueModeCollection", + "k": "class", + "s": "classes", + "m": { + "ValueModeCollection()": "ValueModeCollection()", + "ValueModeCollection": "ValueModeCollection()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "ValueModeCollectionHelper": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ValueModeCollectionHelper", + "k": "class", + "s": "classes", + "m": { + "ValueModeCollectionHelper()": "ValueModeCollectionHelper()", + "ValueModeCollectionHelper": "ValueModeCollectionHelper()", + "CreateFromString(string)": "CreateFromString(string)", + "CreateFromString": "CreateFromString(string)" + } + } + ], + "ValueOverlay": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/ValueOverlay", + "k": "class", + "s": "classes", + "m": { + "ValueOverlay()": "ValueOverlay()", + "ValueOverlay": "ValueOverlay()", + "Axis": "Axis", + "AxisAnnotationBackground": "AxisAnnotationBackground", + "AxisAnnotationBackgroundCornerRadius": "AxisAnnotationBackgroundCornerRadius", + "AxisAnnotationBackgroundCornerRadiusProperty": "AxisAnnotationBackgroundCornerRadiusProperty", + "AxisAnnotationBackgroundProperty": "AxisAnnotationBackgroundProperty", + "AxisAnnotationInterpolatedValuePrecision": "AxisAnnotationInterpolatedValuePrecision", + "AxisAnnotationInterpolatedValuePrecisionProperty": "AxisAnnotationInterpolatedValuePrecisionProperty", + "AxisAnnotationOutline": "AxisAnnotationOutline", + "AxisAnnotationOutlineProperty": "AxisAnnotationOutlineProperty", + "AxisAnnotationPaddingBottom": "AxisAnnotationPaddingBottom", + "AxisAnnotationPaddingBottomProperty": "AxisAnnotationPaddingBottomProperty", + "AxisAnnotationPaddingLeft": "AxisAnnotationPaddingLeft", + "AxisAnnotationPaddingLeftProperty": "AxisAnnotationPaddingLeftProperty", + "AxisAnnotationPaddingRight": "AxisAnnotationPaddingRight", + "AxisAnnotationPaddingRightProperty": "AxisAnnotationPaddingRightProperty", + "AxisAnnotationPaddingTop": "AxisAnnotationPaddingTop", + "AxisAnnotationPaddingTopProperty": "AxisAnnotationPaddingTopProperty", + "AxisAnnotationStrokeThickness": "AxisAnnotationStrokeThickness", + "AxisAnnotationStrokeThicknessProperty": "AxisAnnotationStrokeThicknessProperty", + "AxisAnnotationTextColor": "AxisAnnotationTextColor", + "AxisAnnotationTextColorProperty": "AxisAnnotationTextColorProperty", + "AxisProperty": "AxisProperty", + "DateValue": "DateValue", + "DateValueProperty": "DateValueProperty", + "GetLabel(double)": "GetLabel(double)", + "GetLabel": "GetLabel(double)", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "IsAxisAnnotationEnabledProperty": "IsAxisAnnotationEnabledProperty", + "LabelResolved": "LabelResolved", + "LabelResolvedProperty": "LabelResolvedProperty", + "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)": "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnAxisAnnotationFormatLabel": "OnAxisAnnotationFormatLabel(AxisFormatLabelEventArgs)", + "OnStylingOverlayText(OverlayTextUpdatingEventArgs)": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OnStylingOverlayText": "OnStylingOverlayText(OverlayTextUpdatingEventArgs)", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextAngleProperty": "OverlayTextAngleProperty", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMatchLayerProperty": "OverlayTextBackgroundMatchLayerProperty", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundModeProperty": "OverlayTextBackgroundModeProperty", + "OverlayTextBackgroundProperty": "OverlayTextBackgroundProperty", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBackgroundShiftProperty": "OverlayTextBackgroundShiftProperty", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderColorProperty": "OverlayTextBorderColorProperty", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMatchLayerProperty": "OverlayTextBorderMatchLayerProperty", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderModeProperty": "OverlayTextBorderModeProperty", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderRadiusProperty": "OverlayTextBorderRadiusProperty", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderShiftProperty": "OverlayTextBorderShiftProperty", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextBorderThicknessProperty": "OverlayTextBorderThicknessProperty", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMatchLayerProperty": "OverlayTextColorMatchLayerProperty", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorModeProperty": "OverlayTextColorModeProperty", + "OverlayTextColorProperty": "OverlayTextColorProperty", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextColorShiftProperty": "OverlayTextColorShiftProperty", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontFamilyProperty": "OverlayTextFontFamilyProperty", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontSizeProperty": "OverlayTextFontSizeProperty", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontStyleProperty": "OverlayTextFontStyleProperty", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextFontWeightProperty": "OverlayTextFontWeightProperty", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalMarginProperty": "OverlayTextHorizontalMarginProperty", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextHorizontalPaddingProperty": "OverlayTextHorizontalPaddingProperty", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextLocationProperty": "OverlayTextLocationProperty", + "OverlayTextProperty": "OverlayTextProperty", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalMarginProperty": "OverlayTextVerticalMarginProperty", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVerticalPaddingProperty": "OverlayTextVerticalPaddingProperty", + "OverlayTextVisible": "OverlayTextVisible", + "OverlayTextVisibleProperty": "OverlayTextVisibleProperty", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "ValueOverlayDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueOverlayDescription", + "k": "class", + "s": "classes", + "m": { + "ValueOverlayDescription()": "ValueOverlayDescription()", + "ValueOverlayDescription": "ValueOverlayDescription()", + "AxisAnnotationBackground": "AxisAnnotationBackground", + "AxisAnnotationBackgroundCornerRadius": "AxisAnnotationBackgroundCornerRadius", + "AxisAnnotationFormatLabelRef": "AxisAnnotationFormatLabelRef", + "AxisAnnotationInterpolatedValuePrecision": "AxisAnnotationInterpolatedValuePrecision", + "AxisAnnotationOutline": "AxisAnnotationOutline", + "AxisAnnotationPaddingBottom": "AxisAnnotationPaddingBottom", + "AxisAnnotationPaddingLeft": "AxisAnnotationPaddingLeft", + "AxisAnnotationPaddingRight": "AxisAnnotationPaddingRight", + "AxisAnnotationPaddingTop": "AxisAnnotationPaddingTop", + "AxisAnnotationStrokeThickness": "AxisAnnotationStrokeThickness", + "AxisAnnotationTextColor": "AxisAnnotationTextColor", + "AxisRef": "AxisRef", + "DateValue": "DateValue", + "IsAxisAnnotationEnabled": "IsAxisAnnotationEnabled", + "OverlayText": "OverlayText", + "OverlayTextAngle": "OverlayTextAngle", + "OverlayTextBackground": "OverlayTextBackground", + "OverlayTextBackgroundMatchLayer": "OverlayTextBackgroundMatchLayer", + "OverlayTextBackgroundMode": "OverlayTextBackgroundMode", + "OverlayTextBackgroundShift": "OverlayTextBackgroundShift", + "OverlayTextBorderColor": "OverlayTextBorderColor", + "OverlayTextBorderMatchLayer": "OverlayTextBorderMatchLayer", + "OverlayTextBorderMode": "OverlayTextBorderMode", + "OverlayTextBorderRadius": "OverlayTextBorderRadius", + "OverlayTextBorderShift": "OverlayTextBorderShift", + "OverlayTextBorderThickness": "OverlayTextBorderThickness", + "OverlayTextColor": "OverlayTextColor", + "OverlayTextColorMatchLayer": "OverlayTextColorMatchLayer", + "OverlayTextColorMode": "OverlayTextColorMode", + "OverlayTextColorShift": "OverlayTextColorShift", + "OverlayTextFontFamily": "OverlayTextFontFamily", + "OverlayTextFontSize": "OverlayTextFontSize", + "OverlayTextFontStyle": "OverlayTextFontStyle", + "OverlayTextFontWeight": "OverlayTextFontWeight", + "OverlayTextHorizontalMargin": "OverlayTextHorizontalMargin", + "OverlayTextHorizontalPadding": "OverlayTextHorizontalPadding", + "OverlayTextLocation": "OverlayTextLocation", + "OverlayTextVerticalMargin": "OverlayTextVerticalMargin", + "OverlayTextVerticalPadding": "OverlayTextVerticalPadding", + "OverlayTextVisible": "OverlayTextVisible", + "StylingOverlayTextRef": "StylingOverlayTextRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "ValueOverlayDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueOverlayDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ValueOverlayDescriptionMetadata()": "ValueOverlayDescriptionMetadata()", + "ValueOverlayDescriptionMetadata": "ValueOverlayDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueOverlayDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ValueOverlayDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ValueOverlayDescriptionModule()": "ValueOverlayDescriptionModule()", + "ValueOverlayDescriptionModule": "ValueOverlayDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ValueVisualData": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/ValueVisualData", + "k": "class", + "s": "classes", + "m": { + "ValueVisualData()": "ValueVisualData()", + "ValueVisualData": "ValueVisualData()", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "Type": "Type", + "Value": "Value" + } + } + ], + "VerticalAlignment": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/enums/VerticalAlignment", + "k": "enum", + "s": "enums" + } + ], + "VerticalAnchoredCategorySeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/VerticalAnchoredCategorySeries", + "k": "class", + "s": "classes", + "m": { + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "VerticalAnchoredCategorySeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalAnchoredCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "VerticalAnchoredCategorySeriesDescription()": "VerticalAnchoredCategorySeriesDescription()", + "VerticalAnchoredCategorySeriesDescription": "VerticalAnchoredCategorySeriesDescription()", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "VerticalAnchoredCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalAnchoredCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VerticalAnchoredCategorySeriesDescriptionMetadata()": "VerticalAnchoredCategorySeriesDescriptionMetadata()", + "VerticalAnchoredCategorySeriesDescriptionMetadata": "VerticalAnchoredCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "VerticalRangeCategorySeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/VerticalRangeCategorySeries", + "k": "class", + "s": "classes", + "m": { + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendLabelProperty": "HighMemberAsLegendLabelProperty", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "HighMemberAsLegendUnitProperty": "HighMemberAsLegendUnitProperty", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendLabelProperty": "LowMemberAsLegendLabelProperty", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "LowMemberAsLegendUnitProperty": "LowMemberAsLegendUnitProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "VerticalRangeCategorySeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalRangeCategorySeriesDescription", + "k": "class", + "s": "classes", + "m": { + "VerticalRangeCategorySeriesDescription()": "VerticalRangeCategorySeriesDescription()", + "VerticalRangeCategorySeriesDescription": "VerticalRangeCategorySeriesDescription()", + "HighMemberAsLegendLabel": "HighMemberAsLegendLabel", + "HighMemberAsLegendUnit": "HighMemberAsLegendUnit", + "LowMemberAsLegendLabel": "LowMemberAsLegendLabel", + "LowMemberAsLegendUnit": "LowMemberAsLegendUnit", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "VerticalRangeCategorySeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalRangeCategorySeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VerticalRangeCategorySeriesDescriptionMetadata()": "VerticalRangeCategorySeriesDescriptionMetadata()", + "VerticalRangeCategorySeriesDescriptionMetadata": "VerticalRangeCategorySeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "VerticalRangeCategorySeriesProxyDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalRangeCategorySeriesProxyDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "VerticalRangeCategorySeriesProxyDescriptionModule()": "VerticalRangeCategorySeriesProxyDescriptionModule()", + "VerticalRangeCategorySeriesProxyDescriptionModule": "VerticalRangeCategorySeriesProxyDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "VerticalSeparatorCellInfo": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/VerticalSeparatorCellInfo", + "k": "class", + "s": "classes", + "m": { + "VerticalSeparatorCellInfo()": "VerticalSeparatorCellInfo()", + "VerticalSeparatorCellInfo": "VerticalSeparatorCellInfo()" + } + } + ], + "VerticalSeparatorCellInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalSeparatorCellInfoDescription", + "k": "class", + "s": "classes", + "m": { + "VerticalSeparatorCellInfoDescription()": "VerticalSeparatorCellInfoDescription()", + "VerticalSeparatorCellInfoDescription": "VerticalSeparatorCellInfoDescription()", + "Type": "Type" + } + } + ], + "VerticalSeparatorCellInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalSeparatorCellInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VerticalSeparatorCellInfoDescriptionMetadata()": "VerticalSeparatorCellInfoDescriptionMetadata()", + "VerticalSeparatorCellInfoDescriptionMetadata": "VerticalSeparatorCellInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "VerticalStackedSeriesBase": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/VerticalStackedSeriesBase", + "k": "class", + "s": "classes", + "m": { + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty" + } + } + ], + "VerticalStackedSeriesBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalStackedSeriesBaseDescription", + "k": "class", + "s": "classes", + "m": { + "VerticalStackedSeriesBaseDescription()": "VerticalStackedSeriesBaseDescription()", + "VerticalStackedSeriesBaseDescription": "VerticalStackedSeriesBaseDescription()", + "Type": "Type", + "XAxisRef": "XAxisRef", + "YAxisRef": "YAxisRef" + } + } + ], + "VerticalStackedSeriesBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VerticalStackedSeriesBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VerticalStackedSeriesBaseDescriptionMetadata()": "VerticalStackedSeriesBaseDescriptionMetadata()", + "VerticalStackedSeriesBaseDescriptionMetadata": "VerticalStackedSeriesBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ViewerSurfaceUsage": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ViewerSurfaceUsage", + "k": "enum", + "s": "enums" + } + ], + "VirtualDataSource": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VirtualDataSource", + "k": "class", + "s": "classes", + "m": { + "VirtualDataSource()": "VirtualDataSource()", + "VirtualDataSource": "VirtualDataSource()", + "ActualDataProvider": "ActualDataProvider", + "ActualPageSize": "ActualPageSize", + "DataProvider": "DataProvider", + "GetEnumerator()": "GetEnumerator()", + "GetEnumerator": "GetEnumerator()", + "GetUnrealizedCount()": "GetUnrealizedCount()", + "GetUnrealizedCount": "GetUnrealizedCount()", + "MaxCachedPages": "MaxCachedPages", + "PageSizeRequested": "PageSizeRequested", + "ResetCache()": "ResetCache()", + "ResetCache": "ResetCache()", + "ResetCacheOverride()": "ResetCacheOverride()", + "ResetCacheOverride": "ResetCacheOverride()", + "ResolveDataProvider()": "ResolveDataProvider()", + "ResolveDataProvider": "ResolveDataProvider()", + "ResolveDataProviderOverride()": "ResolveDataProviderOverride()", + "ResolveDataProviderOverride": "ResolveDataProviderOverride()" + } + } + ], + "VirtualDataSourceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VirtualDataSourceDescription", + "k": "class", + "s": "classes", + "m": { + "VirtualDataSourceDescription()": "VirtualDataSourceDescription()", + "VirtualDataSourceDescription": "VirtualDataSourceDescription()", + "ActualPageSize": "ActualPageSize", + "ConcurrencyTag": "ConcurrencyTag", + "MaxCachedPages": "MaxCachedPages", + "PageSizeRequested": "PageSizeRequested", + "Type": "Type" + } + } + ], + "VirtualDataSourceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VirtualDataSourceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VirtualDataSourceDescriptionMetadata()": "VirtualDataSourceDescriptionMetadata()", + "VirtualDataSourceDescriptionMetadata": "VirtualDataSourceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "Visibility": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/enums/Visibility", + "k": "enum", + "s": "enums" + } + ], + "VisualDataPixelScalingOptions": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VisualDataPixelScalingOptions", + "k": "class", + "s": "classes", + "m": { + "VisualDataPixelScalingOptions()": "VisualDataPixelScalingOptions()", + "VisualDataPixelScalingOptions": "VisualDataPixelScalingOptions()" + } + } + ], + "VisualModelExport": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/VisualModelExport", + "k": "class", + "s": "classes", + "m": { + "VisualModelExport()": "VisualModelExport()", + "VisualModelExport": "VisualModelExport()", + "AbsoluteHeight": "AbsoluteHeight", + "AbsoluteWidth": "AbsoluteWidth", + "ActualVisibleRegion": "ActualVisibleRegion", + "ColumnSpacing": "ColumnSpacing", + "ContentLayer": "ContentLayer", + "DecoratorLayer": "DecoratorLayer", + "DipScalingRatio": "DipScalingRatio", + "FixedColumnWidthLeft": "FixedColumnWidthLeft", + "FixedColumnWidthRight": "FixedColumnWidthRight", + "FixedContentLayer": "FixedContentLayer", + "FixedHeaderDecoratorLayer": "FixedHeaderDecoratorLayer", + "FixedHeaderLayer": "FixedHeaderLayer", + "FixedMergedCellsLayer": "FixedMergedCellsLayer", + "FixedPinnedRowsLayer": "FixedPinnedRowsLayer", + "FixedRowHeight": "FixedRowHeight", + "FixedSeparatorLayer": "FixedSeparatorLayer", + "FixedSubContentLayer": "FixedSubContentLayer", + "FixedSubHeaderDecoratorLayer": "FixedSubHeaderDecoratorLayer", + "FixedSubHeaderLayer": "FixedSubHeaderLayer", + "FixedSuperContentLayer": "FixedSuperContentLayer", + "FixedSuperHeaderDecoratorLayer": "FixedSuperHeaderDecoratorLayer", + "FixedSuperHeaderLayer": "FixedSuperHeaderLayer", + "FullHeaderHeight": "FullHeaderHeight", + "GridLayers": "GridLayers", + "HeaderDecoratorLayer": "HeaderDecoratorLayer", + "HeaderHeight": "HeaderHeight", + "HeaderLayer": "HeaderLayer", + "Height": "Height", + "HiddenLayer": "HiddenLayer", + "Left": "Left", + "Pager": "Pager", + "PinnedRowsLayer": "PinnedRowsLayer", + "PinnedRowsMergedCellsLayer": "PinnedRowsMergedCellsLayer", + "PinnedRowsSubLayer": "PinnedRowsSubLayer", + "PinnedRowsSuperLayer": "PinnedRowsSuperLayer", + "PinnedSectionLayer": "PinnedSectionLayer", + "PinnedSectionSubLayer": "PinnedSectionSubLayer", + "PinnedSectionSuperLayer": "PinnedSectionSuperLayer", + "Reset()": "Reset()", + "Reset": "Reset()", + "RowSeparatorContentLayer": "RowSeparatorContentLayer", + "RowSeparatorFixedPinnedRowsLayer": "RowSeparatorFixedPinnedRowsLayer", + "RowSeparatorPinnedSectionLayer": "RowSeparatorPinnedSectionLayer", + "RowSeparatorPinnedSectionSuperLayer": "RowSeparatorPinnedSectionSuperLayer", + "RowSeparatorSectionLayer": "RowSeparatorSectionLayer", + "SectionLayer": "SectionLayer", + "SeparatorLeft": "SeparatorLeft", + "SeparatorRight": "SeparatorRight", + "Serialize()": "Serialize()", + "Serialize": "Serialize()", + "SubContentLayer": "SubContentLayer", + "SubHeaderDecoratorLayer": "SubHeaderDecoratorLayer", + "SubHeaderLayer": "SubHeaderLayer", + "SuperContentLayer": "SuperContentLayer", + "SuperHeaderDecoratorLayer": "SuperHeaderDecoratorLayer", + "SuperHeaderLayer": "SuperHeaderLayer", + "Toolbar": "Toolbar", + "Top": "Top", + "VerticalSeparatorLayer": "VerticalSeparatorLayer", + "Width": "Width" + } + } + ], + "VoidEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VoidEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "VoidEventArgsDescription()": "VoidEventArgsDescription()", + "VoidEventArgsDescription": "VoidEventArgsDescription()", + "Type": "Type" + } + } + ], + "VoidEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/VoidEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "VoidEventArgsDescriptionMetadata()": "VoidEventArgsDescriptionMetadata()", + "VoidEventArgsDescriptionMetadata": "VoidEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WaterfallSeries": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/WaterfallSeries", + "k": "class", + "s": "classes", + "m": { + "WaterfallSeries()": "WaterfallSeries()", + "WaterfallSeries": "WaterfallSeries()", + "NegativeBrush": "NegativeBrush", + "NegativeBrushProperty": "NegativeBrushProperty", + "NegativeOutline": "NegativeOutline", + "NegativeOutlineProperty": "NegativeOutlineProperty", + "RadiusX": "RadiusX", + "RadiusXProperty": "RadiusXProperty", + "RadiusY": "RadiusY", + "RadiusYProperty": "RadiusYProperty" + } + } + ], + "WaterfallSeriesDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WaterfallSeriesDescription", + "k": "class", + "s": "classes", + "m": { + "WaterfallSeriesDescription()": "WaterfallSeriesDescription()", + "WaterfallSeriesDescription": "WaterfallSeriesDescription()", + "NegativeBrush": "NegativeBrush", + "NegativeOutline": "NegativeOutline", + "RadiusX": "RadiusX", + "RadiusY": "RadiusY", + "Type": "Type" + } + } + ], + "WaterfallSeriesDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WaterfallSeriesDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WaterfallSeriesDescriptionMetadata()": "WaterfallSeriesDescriptionMetadata()", + "WaterfallSeriesDescriptionMetadata": "WaterfallSeriesDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WaterfallSeriesDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WaterfallSeriesDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WaterfallSeriesDescriptionModule()": "WaterfallSeriesDescriptionModule()", + "WaterfallSeriesDescriptionModule": "WaterfallSeriesDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebAccordionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebAccordionDescription", + "k": "class", + "s": "classes", + "m": { + "WebAccordionDescription()": "WebAccordionDescription()", + "WebAccordionDescription": "WebAccordionDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "SingleExpand": "SingleExpand", + "Type": "Type" + } + } + ], + "WebAccordionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebAccordionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebAccordionDescriptionMetadata()": "WebAccordionDescriptionMetadata()", + "WebAccordionDescriptionMetadata": "WebAccordionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebAccordionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebAccordionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebAccordionDescriptionModule()": "WebAccordionDescriptionModule()", + "WebAccordionDescriptionModule": "WebAccordionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActionStripDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActionStripDescription", + "k": "class", + "s": "classes", + "m": { + "WebActionStripDescription()": "WebActionStripDescription()", + "WebActionStripDescription": "WebActionStripDescription()", + "ActionButtons": "ActionButtons", + "Hidden": "Hidden", + "ResourceStrings": "ResourceStrings", + "Type": "Type" + } + } + ], + "WebActionStripDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActionStripDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActionStripDescriptionMetadata()": "WebActionStripDescriptionMetadata()", + "WebActionStripDescriptionMetadata": "WebActionStripDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActionStripDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActionStripDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebActionStripDescriptionModule()": "WebActionStripDescriptionModule()", + "WebActionStripDescriptionModule": "WebActionStripDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActionStripResourceStringsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActionStripResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActionStripResourceStringsDescription()": "WebActionStripResourceStringsDescription()", + "WebActionStripResourceStringsDescription": "WebActionStripResourceStringsDescription()", + "Igx_action_strip_button_more_title": "Igx_action_strip_button_more_title", + "Type": "Type" + } + } + ], + "WebActionStripResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActionStripResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActionStripResourceStringsDescriptionMetadata()": "WebActionStripResourceStringsDescriptionMetadata()", + "WebActionStripResourceStringsDescriptionMetadata": "WebActionStripResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveNodeChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveNodeChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveNodeChangeEventArgsDescription()": "WebActiveNodeChangeEventArgsDescription()", + "WebActiveNodeChangeEventArgsDescription": "WebActiveNodeChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebActiveNodeChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveNodeChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveNodeChangeEventArgsDescriptionMetadata()": "WebActiveNodeChangeEventArgsDescriptionMetadata()", + "WebActiveNodeChangeEventArgsDescriptionMetadata": "WebActiveNodeChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveNodeChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveNodeChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveNodeChangeEventArgsDetailDescription()": "WebActiveNodeChangeEventArgsDetailDescription()", + "WebActiveNodeChangeEventArgsDetailDescription": "WebActiveNodeChangeEventArgsDetailDescription()", + "Column": "Column", + "Level": "Level", + "Row": "Row", + "Tag": "Tag", + "Type": "Type" + } + } + ], + "WebActiveNodeChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveNodeChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveNodeChangeEventArgsDetailDescriptionMetadata()": "WebActiveNodeChangeEventArgsDetailDescriptionMetadata()", + "WebActiveNodeChangeEventArgsDetailDescriptionMetadata": "WebActiveNodeChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActivePaneEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActivePaneEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActivePaneEventArgsDescription()": "WebActivePaneEventArgsDescription()", + "WebActivePaneEventArgsDescription": "WebActivePaneEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebActivePaneEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActivePaneEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActivePaneEventArgsDescriptionMetadata()": "WebActivePaneEventArgsDescriptionMetadata()", + "WebActivePaneEventArgsDescriptionMetadata": "WebActivePaneEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActivePaneEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActivePaneEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebActivePaneEventArgsDetailDescription()": "WebActivePaneEventArgsDetailDescription()", + "WebActivePaneEventArgsDetailDescription": "WebActivePaneEventArgsDetailDescription()", + "NewPane": "NewPane", + "OldPane": "OldPane", + "Type": "Type" + } + } + ], + "WebActivePaneEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActivePaneEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActivePaneEventArgsDetailDescriptionMetadata()": "WebActivePaneEventArgsDetailDescriptionMetadata()", + "WebActivePaneEventArgsDetailDescriptionMetadata": "WebActivePaneEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveStepChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveStepChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangedEventArgsDescription()": "WebActiveStepChangedEventArgsDescription()", + "WebActiveStepChangedEventArgsDescription": "WebActiveStepChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebActiveStepChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveStepChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangedEventArgsDescriptionMetadata()": "WebActiveStepChangedEventArgsDescriptionMetadata()", + "WebActiveStepChangedEventArgsDescriptionMetadata": "WebActiveStepChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveStepChangedEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveStepChangedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangedEventArgsDetailDescription()": "WebActiveStepChangedEventArgsDetailDescription()", + "WebActiveStepChangedEventArgsDetailDescription": "WebActiveStepChangedEventArgsDetailDescription()", + "Index": "Index", + "Type": "Type" + } + } + ], + "WebActiveStepChangedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveStepChangedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangedEventArgsDetailDescriptionMetadata()": "WebActiveStepChangedEventArgsDetailDescriptionMetadata()", + "WebActiveStepChangedEventArgsDetailDescriptionMetadata": "WebActiveStepChangedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveStepChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveStepChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangingEventArgsDescription()": "WebActiveStepChangingEventArgsDescription()", + "WebActiveStepChangingEventArgsDescription": "WebActiveStepChangingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebActiveStepChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveStepChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangingEventArgsDescriptionMetadata()": "WebActiveStepChangingEventArgsDescriptionMetadata()", + "WebActiveStepChangingEventArgsDescriptionMetadata": "WebActiveStepChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebActiveStepChangingEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveStepChangingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangingEventArgsDetailDescription()": "WebActiveStepChangingEventArgsDetailDescription()", + "WebActiveStepChangingEventArgsDetailDescription": "WebActiveStepChangingEventArgsDetailDescription()", + "NewIndex": "NewIndex", + "OldIndex": "OldIndex", + "Type": "Type" + } + } + ], + "WebActiveStepChangingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebActiveStepChangingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebActiveStepChangingEventArgsDetailDescriptionMetadata()": "WebActiveStepChangingEventArgsDetailDescriptionMetadata()", + "WebActiveStepChangingEventArgsDetailDescriptionMetadata": "WebActiveStepChangingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebAvatarDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebAvatarDescription", + "k": "class", + "s": "classes", + "m": { + "WebAvatarDescription()": "WebAvatarDescription()", + "WebAvatarDescription": "WebAvatarDescription()", + "Alt": "Alt", + "Initials": "Initials", + "Shape": "Shape", + "Src": "Src", + "Type": "Type" + } + } + ], + "WebAvatarDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebAvatarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebAvatarDescriptionMetadata()": "WebAvatarDescriptionMetadata()", + "WebAvatarDescriptionMetadata": "WebAvatarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebAvatarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebAvatarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebAvatarDescriptionModule()": "WebAvatarDescriptionModule()", + "WebAvatarDescriptionModule": "WebAvatarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBadgeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBadgeDescription", + "k": "class", + "s": "classes", + "m": { + "WebBadgeDescription()": "WebBadgeDescription()", + "WebBadgeDescription": "WebBadgeDescription()", + "Dot": "Dot", + "Outlined": "Outlined", + "Shape": "Shape", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebBadgeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBadgeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBadgeDescriptionMetadata()": "WebBadgeDescriptionMetadata()", + "WebBadgeDescriptionMetadata": "WebBadgeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBadgeDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBadgeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebBadgeDescriptionModule()": "WebBadgeDescriptionModule()", + "WebBadgeDescriptionModule": "WebBadgeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBannerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBannerDescription", + "k": "class", + "s": "classes", + "m": { + "WebBannerDescription()": "WebBannerDescription()", + "WebBannerDescription": "WebBannerDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "Open": "Open", + "Type": "Type" + } + } + ], + "WebBannerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBannerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBannerDescriptionMetadata()": "WebBannerDescriptionMetadata()", + "WebBannerDescriptionMetadata": "WebBannerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBannerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBannerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebBannerDescriptionModule()": "WebBannerDescriptionModule()", + "WebBannerDescriptionModule": "WebBannerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseAlertLikeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseAlertLikeDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseAlertLikeDescription()": "WebBaseAlertLikeDescription()", + "WebBaseAlertLikeDescription": "WebBaseAlertLikeDescription()", + "DisplayTime": "DisplayTime", + "KeepOpen": "KeepOpen", + "Open": "Open", + "Position": "Position", + "Positioning": "Positioning", + "Type": "Type" + } + } + ], + "WebBaseAlertLikeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseAlertLikeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseAlertLikeDescriptionMetadata()": "WebBaseAlertLikeDescriptionMetadata()", + "WebBaseAlertLikeDescriptionMetadata": "WebBaseAlertLikeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseComboBoxDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseComboBoxDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseComboBoxDescription()": "WebBaseComboBoxDescription()", + "WebBaseComboBoxDescription": "WebBaseComboBoxDescription()", + "Open": "Open", + "Type": "Type" + } + } + ], + "WebBaseComboBoxDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseComboBoxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseComboBoxDescriptionMetadata()": "WebBaseComboBoxDescriptionMetadata()", + "WebBaseComboBoxDescriptionMetadata": "WebBaseComboBoxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseDateTimeFilteringOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseDateTimeFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseDateTimeFilteringOperandDescription()": "WebBaseDateTimeFilteringOperandDescription()", + "WebBaseDateTimeFilteringOperandDescription": "WebBaseDateTimeFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebBaseDateTimeFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseDateTimeFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseDateTimeFilteringOperandDescriptionMetadata()": "WebBaseDateTimeFilteringOperandDescriptionMetadata()", + "WebBaseDateTimeFilteringOperandDescriptionMetadata": "WebBaseDateTimeFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseEventArgsDescription()": "WebBaseEventArgsDescription()", + "WebBaseEventArgsDescription": "WebBaseEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebBaseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseEventArgsDescriptionMetadata()": "WebBaseEventArgsDescriptionMetadata()", + "WebBaseEventArgsDescriptionMetadata": "WebBaseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseEventArgsDetailDescription()": "WebBaseEventArgsDetailDescription()", + "WebBaseEventArgsDetailDescription": "WebBaseEventArgsDetailDescription()", + "Owner": "Owner", + "Type": "Type" + } + } + ], + "WebBaseEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseEventArgsDetailDescriptionMetadata()": "WebBaseEventArgsDetailDescriptionMetadata()", + "WebBaseEventArgsDetailDescriptionMetadata": "WebBaseEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseExporterDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseExporterDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseExporterDescription()": "WebBaseExporterDescription()", + "WebBaseExporterDescription": "WebBaseExporterDescription()", + "ColumnExportingRef": "ColumnExportingRef", + "ExportEndedRef": "ExportEndedRef", + "RowExportingRef": "RowExportingRef", + "Type": "Type" + } + } + ], + "WebBaseExporterDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseExporterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseExporterDescriptionMetadata()": "WebBaseExporterDescriptionMetadata()", + "WebBaseExporterDescriptionMetadata": "WebBaseExporterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseOptionLikeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseOptionLikeDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseOptionLikeDescription()": "WebBaseOptionLikeDescription()", + "WebBaseOptionLikeDescription": "WebBaseOptionLikeDescription()", + "Active": "Active", + "Disabled": "Disabled", + "Selected": "Selected", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebBaseOptionLikeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseOptionLikeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseOptionLikeDescriptionMetadata()": "WebBaseOptionLikeDescriptionMetadata()", + "WebBaseOptionLikeDescriptionMetadata": "WebBaseOptionLikeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseSearchInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseSearchInfoDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseSearchInfoDescription()": "WebBaseSearchInfoDescription()", + "WebBaseSearchInfoDescription": "WebBaseSearchInfoDescription()", + "CaseSensitive": "CaseSensitive", + "Content": "Content", + "ExactMatch": "ExactMatch", + "MatchCount": "MatchCount", + "SearchText": "SearchText", + "Type": "Type" + } + } + ], + "WebBaseSearchInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseSearchInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseSearchInfoDescriptionMetadata()": "WebBaseSearchInfoDescriptionMetadata()", + "WebBaseSearchInfoDescriptionMetadata": "WebBaseSearchInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseToolbarColumnActionsDirectiveDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseToolbarColumnActionsDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarColumnActionsDirectiveDescription()": "WebBaseToolbarColumnActionsDirectiveDescription()", + "WebBaseToolbarColumnActionsDirectiveDescription": "WebBaseToolbarColumnActionsDirectiveDescription()", + "Type": "Type" + } + } + ], + "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseToolbarColumnActionsDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata()": "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata()", + "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata": "WebBaseToolbarColumnActionsDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseToolbarColumnActionsDirectiveDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseToolbarColumnActionsDirectiveDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarColumnActionsDirectiveDescriptionModule()": "WebBaseToolbarColumnActionsDirectiveDescriptionModule()", + "WebBaseToolbarColumnActionsDirectiveDescriptionModule": "WebBaseToolbarColumnActionsDirectiveDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBaseToolbarDirectiveDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseToolbarDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarDirectiveDescription()": "WebBaseToolbarDirectiveDescription()", + "WebBaseToolbarDirectiveDescription": "WebBaseToolbarDirectiveDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "ColumnListHeight": "ColumnListHeight", + "ColumnToggleRef": "ColumnToggleRef", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "OverlaySettings": "OverlaySettings", + "Prompt": "Prompt", + "Title": "Title", + "Type": "Type" + } + } + ], + "WebBaseToolbarDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBaseToolbarDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBaseToolbarDirectiveDescriptionMetadata()": "WebBaseToolbarDirectiveDescriptionMetadata()", + "WebBaseToolbarDirectiveDescriptionMetadata": "WebBaseToolbarDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebBooleanFilteringOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBooleanFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebBooleanFilteringOperandDescription()": "WebBooleanFilteringOperandDescription()", + "WebBooleanFilteringOperandDescription": "WebBooleanFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebBooleanFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebBooleanFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebBooleanFilteringOperandDescriptionMetadata()": "WebBooleanFilteringOperandDescriptionMetadata()", + "WebBooleanFilteringOperandDescriptionMetadata": "WebBooleanFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebButtonBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebButtonBaseDescription()": "WebButtonBaseDescription()", + "WebButtonBaseDescription": "WebButtonBaseDescription()", + "BlurRef": "BlurRef", + "ClickedRef": "ClickedRef", + "Command": "Command", + "Commandfor": "Commandfor", + "Disabled": "Disabled", + "DisplayType": "DisplayType", + "Download": "Download", + "FocusRef": "FocusRef", + "Href": "Href", + "Rel": "Rel", + "Target": "Target", + "Type": "Type" + } + } + ], + "WebButtonBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebButtonBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebButtonBaseDescriptionMetadata()": "WebButtonBaseDescriptionMetadata()", + "WebButtonBaseDescriptionMetadata": "WebButtonBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebButtonDescription", + "k": "class", + "s": "classes", + "m": { + "WebButtonDescription()": "WebButtonDescription()", + "WebButtonDescription": "WebButtonDescription()", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebButtonDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebButtonDescriptionMetadata()": "WebButtonDescriptionMetadata()", + "WebButtonDescriptionMetadata": "WebButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebButtonDescriptionModule()": "WebButtonDescriptionModule()", + "WebButtonDescriptionModule": "WebButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebButtonGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebButtonGroupDescription()": "WebButtonGroupDescription()", + "WebButtonGroupDescription": "WebButtonGroupDescription()", + "Alignment": "Alignment", + "DeselectRef": "DeselectRef", + "Disabled": "Disabled", + "SelectRef": "SelectRef", + "SelectedItems": "SelectedItems", + "Selection": "Selection", + "Type": "Type" + } + } + ], + "WebButtonGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebButtonGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebButtonGroupDescriptionMetadata()": "WebButtonGroupDescriptionMetadata()", + "WebButtonGroupDescriptionMetadata": "WebButtonGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebButtonGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebButtonGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebButtonGroupDescriptionModule()": "WebButtonGroupDescriptionModule()", + "WebButtonGroupDescriptionModule": "WebButtonGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebCalendarBaseDescription()": "WebCalendarBaseDescription()", + "WebCalendarBaseDescription": "WebCalendarBaseDescription()", + "DisabledDates": "DisabledDates", + "Locale": "Locale", + "ResourceStrings": "ResourceStrings", + "Selection": "Selection", + "ShowWeekNumbers": "ShowWeekNumbers", + "SpecialDates": "SpecialDates", + "Type": "Type", + "WeekStart": "WeekStart" + } + } + ], + "WebCalendarBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCalendarBaseDescriptionMetadata()": "WebCalendarBaseDescriptionMetadata()", + "WebCalendarBaseDescriptionMetadata": "WebCalendarBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarBaseDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarBaseDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCalendarBaseDescriptionModule()": "WebCalendarBaseDescriptionModule()", + "WebCalendarBaseDescriptionModule": "WebCalendarBaseDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarDateEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarDateEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDateEventArgsDescription()": "WebCalendarDateEventArgsDescription()", + "WebCalendarDateEventArgsDescription": "WebCalendarDateEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebCalendarDateEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarDateEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDateEventArgsDescriptionMetadata()": "WebCalendarDateEventArgsDescriptionMetadata()", + "WebCalendarDateEventArgsDescriptionMetadata": "WebCalendarDateEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarDescription", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDescription()": "WebCalendarDescription()", + "WebCalendarDescription": "WebCalendarDescription()", + "ActiveDate": "ActiveDate", + "ActiveView": "ActiveView", + "ChangeRef": "ChangeRef", + "FormatOptions": "FormatOptions", + "HeaderOrientation": "HeaderOrientation", + "HideHeader": "HideHeader", + "HideOutsideDays": "HideOutsideDays", + "Orientation": "Orientation", + "Type": "Type", + "Value": "Value", + "Values": "Values", + "VisibleMonths": "VisibleMonths" + } + } + ], + "WebCalendarDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDescriptionMetadata()": "WebCalendarDescriptionMetadata()", + "WebCalendarDescriptionMetadata": "WebCalendarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCalendarDescriptionModule()": "WebCalendarDescriptionModule()", + "WebCalendarDescriptionModule": "WebCalendarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCalendarResourceStringsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCalendarResourceStringsDescription()": "WebCalendarResourceStringsDescription()", + "WebCalendarResourceStringsDescription": "WebCalendarResourceStringsDescription()", + "EndDate": "EndDate", + "NextMonth": "NextMonth", + "NextYear": "NextYear", + "NextYears": "NextYears", + "PreviousMonth": "PreviousMonth", + "PreviousYear": "PreviousYear", + "PreviousYears": "PreviousYears", + "SelectDate": "SelectDate", + "SelectMonth": "SelectMonth", + "SelectRange": "SelectRange", + "SelectYear": "SelectYear", + "SelectedDate": "SelectedDate", + "StartDate": "StartDate", + "Type": "Type", + "WeekLabel": "WeekLabel" + } + } + ], + "WebCalendarResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCalendarResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCalendarResourceStringsDescriptionMetadata()": "WebCalendarResourceStringsDescriptionMetadata()", + "WebCalendarResourceStringsDescriptionMetadata": "WebCalendarResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCancelableBrowserEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCancelableBrowserEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCancelableBrowserEventArgsDescription()": "WebCancelableBrowserEventArgsDescription()", + "WebCancelableBrowserEventArgsDescription": "WebCancelableBrowserEventArgsDescription()", + "Type": "Type" + } + } + ], + "WebCancelableBrowserEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCancelableBrowserEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCancelableBrowserEventArgsDescriptionMetadata()": "WebCancelableBrowserEventArgsDescriptionMetadata()", + "WebCancelableBrowserEventArgsDescriptionMetadata": "WebCancelableBrowserEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCancelableBrowserEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCancelableBrowserEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebCancelableBrowserEventArgsDetailDescription()": "WebCancelableBrowserEventArgsDetailDescription()", + "WebCancelableBrowserEventArgsDetailDescription": "WebCancelableBrowserEventArgsDetailDescription()", + "Type": "Type" + } + } + ], + "WebCancelableBrowserEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCancelableBrowserEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCancelableBrowserEventArgsDetailDescriptionMetadata()": "WebCancelableBrowserEventArgsDetailDescriptionMetadata()", + "WebCancelableBrowserEventArgsDetailDescriptionMetadata": "WebCancelableBrowserEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCancelableEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCancelableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCancelableEventArgsDescription()": "WebCancelableEventArgsDescription()", + "WebCancelableEventArgsDescription": "WebCancelableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebCancelableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCancelableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCancelableEventArgsDescriptionMetadata()": "WebCancelableEventArgsDescriptionMetadata()", + "WebCancelableEventArgsDescriptionMetadata": "WebCancelableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCancelableEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCancelableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebCancelableEventArgsDetailDescription()": "WebCancelableEventArgsDetailDescription()", + "WebCancelableEventArgsDetailDescription": "WebCancelableEventArgsDetailDescription()", + "Cancel": "Cancel", + "Type": "Type" + } + } + ], + "WebCancelableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCancelableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCancelableEventArgsDetailDescriptionMetadata()": "WebCancelableEventArgsDetailDescriptionMetadata()", + "WebCancelableEventArgsDetailDescriptionMetadata": "WebCancelableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardActionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardActionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardActionsDescription()": "WebCardActionsDescription()", + "WebCardActionsDescription": "WebCardActionsDescription()", + "Orientation": "Orientation", + "Type": "Type" + } + } + ], + "WebCardActionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardActionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardActionsDescriptionMetadata()": "WebCardActionsDescriptionMetadata()", + "WebCardActionsDescriptionMetadata": "WebCardActionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardActionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardActionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardActionsDescriptionModule()": "WebCardActionsDescriptionModule()", + "WebCardActionsDescriptionModule": "WebCardActionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardContentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardContentDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardContentDescription()": "WebCardContentDescription()", + "WebCardContentDescription": "WebCardContentDescription()", + "Type": "Type" + } + } + ], + "WebCardContentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardContentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardContentDescriptionMetadata()": "WebCardContentDescriptionMetadata()", + "WebCardContentDescriptionMetadata": "WebCardContentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardContentDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardContentDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardContentDescriptionModule()": "WebCardContentDescriptionModule()", + "WebCardContentDescriptionModule": "WebCardContentDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardDescription()": "WebCardDescription()", + "WebCardDescription": "WebCardDescription()", + "Elevated": "Elevated", + "Type": "Type" + } + } + ], + "WebCardDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardDescriptionMetadata()": "WebCardDescriptionMetadata()", + "WebCardDescriptionMetadata": "WebCardDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardDescriptionModule()": "WebCardDescriptionModule()", + "WebCardDescriptionModule": "WebCardDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardHeaderDescription()": "WebCardHeaderDescription()", + "WebCardHeaderDescription": "WebCardHeaderDescription()", + "Type": "Type" + } + } + ], + "WebCardHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardHeaderDescriptionMetadata()": "WebCardHeaderDescriptionMetadata()", + "WebCardHeaderDescriptionMetadata": "WebCardHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardHeaderDescriptionModule()": "WebCardHeaderDescriptionModule()", + "WebCardHeaderDescriptionModule": "WebCardHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardMediaDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardMediaDescription", + "k": "class", + "s": "classes", + "m": { + "WebCardMediaDescription()": "WebCardMediaDescription()", + "WebCardMediaDescription": "WebCardMediaDescription()", + "Type": "Type" + } + } + ], + "WebCardMediaDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardMediaDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCardMediaDescriptionMetadata()": "WebCardMediaDescriptionMetadata()", + "WebCardMediaDescriptionMetadata": "WebCardMediaDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCardMediaDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCardMediaDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCardMediaDescriptionModule()": "WebCardMediaDescriptionModule()", + "WebCardMediaDescriptionModule": "WebCardMediaDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselDescription", + "k": "class", + "s": "classes", + "m": { + "WebCarouselDescription()": "WebCarouselDescription()", + "WebCarouselDescription": "WebCarouselDescription()", + "AnimationType": "AnimationType", + "DisableLoop": "DisableLoop", + "DisablePauseOnInteraction": "DisablePauseOnInteraction", + "HideIndicators": "HideIndicators", + "HideNavigation": "HideNavigation", + "IndicatorsLabelFormat": "IndicatorsLabelFormat", + "IndicatorsOrientation": "IndicatorsOrientation", + "Interval": "Interval", + "MaximumIndicatorsCount": "MaximumIndicatorsCount", + "PausedRef": "PausedRef", + "PlayingRef": "PlayingRef", + "SlideChangedRef": "SlideChangedRef", + "SlidesLabelFormat": "SlidesLabelFormat", + "Type": "Type", + "Vertical": "Vertical" + } + } + ], + "WebCarouselDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCarouselDescriptionMetadata()": "WebCarouselDescriptionMetadata()", + "WebCarouselDescriptionMetadata": "WebCarouselDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCarouselDescriptionModule()": "WebCarouselDescriptionModule()", + "WebCarouselDescriptionModule": "WebCarouselDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "WebCarouselIndicatorDescription()": "WebCarouselIndicatorDescription()", + "WebCarouselIndicatorDescription": "WebCarouselIndicatorDescription()", + "Type": "Type" + } + } + ], + "WebCarouselIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCarouselIndicatorDescriptionMetadata()": "WebCarouselIndicatorDescriptionMetadata()", + "WebCarouselIndicatorDescriptionMetadata": "WebCarouselIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCarouselIndicatorDescriptionModule()": "WebCarouselIndicatorDescriptionModule()", + "WebCarouselIndicatorDescriptionModule": "WebCarouselIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselSlideDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselSlideDescription", + "k": "class", + "s": "classes", + "m": { + "WebCarouselSlideDescription()": "WebCarouselSlideDescription()", + "WebCarouselSlideDescription": "WebCarouselSlideDescription()", + "Active": "Active", + "Type": "Type" + } + } + ], + "WebCarouselSlideDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselSlideDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCarouselSlideDescriptionMetadata()": "WebCarouselSlideDescriptionMetadata()", + "WebCarouselSlideDescriptionMetadata": "WebCarouselSlideDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCarouselSlideDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCarouselSlideDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCarouselSlideDescriptionModule()": "WebCarouselSlideDescriptionModule()", + "WebCarouselSlideDescriptionModule": "WebCarouselSlideDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCellPositionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCellPositionDescription", + "k": "class", + "s": "classes", + "m": { + "WebCellPositionDescription()": "WebCellPositionDescription()", + "WebCellPositionDescription": "WebCellPositionDescription()", + "RowIndex": "RowIndex", + "Type": "Type", + "VisibleColumnIndex": "VisibleColumnIndex" + } + } + ], + "WebCellPositionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCellPositionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCellPositionDescriptionMetadata()": "WebCellPositionDescriptionMetadata()", + "WebCellPositionDescriptionMetadata": "WebCellPositionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCellTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCellTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebCellTemplateContextDescription()": "WebCellTemplateContextDescription()", + "WebCellTemplateContextDescription": "WebCellTemplateContextDescription()", + "AdditionalTemplateContext": "AdditionalTemplateContext", + "Cell": "Cell", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebCellTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCellTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCellTemplateContextDescriptionMetadata()": "WebCellTemplateContextDescriptionMetadata()", + "WebCellTemplateContextDescriptionMetadata": "WebCellTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCellTypeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCellTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebCellTypeDescription()": "WebCellTypeDescription()", + "WebCellTypeDescription": "WebCellTypeDescription()", + "Active": "Active", + "CellID": "CellID", + "Column": "Column", + "EditMode": "EditMode", + "EditValue": "EditValue", + "Editable": "Editable", + "Grid": "Grid", + "Id": "Id", + "Readonly": "Readonly", + "Row": "Row", + "Selected": "Selected", + "Title": "Title", + "Type": "Type", + "Validation": "Validation", + "Value": "Value", + "VisibleColumnIndex": "VisibleColumnIndex", + "Width": "Width" + } + } + ], + "WebCellTypeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCellTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCellTypeDescriptionMetadata()": "WebCellTypeDescriptionMetadata()", + "WebCellTypeDescriptionMetadata": "WebCellTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatAttachmentRenderContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatAttachmentRenderContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatAttachmentRenderContextDescription()": "WebChatAttachmentRenderContextDescription()", + "WebChatAttachmentRenderContextDescription": "WebChatAttachmentRenderContextDescription()", + "Attachment": "Attachment", + "Type": "Type" + } + } + ], + "WebChatAttachmentRenderContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatAttachmentRenderContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatAttachmentRenderContextDescriptionMetadata()": "WebChatAttachmentRenderContextDescriptionMetadata()", + "WebChatAttachmentRenderContextDescriptionMetadata": "WebChatAttachmentRenderContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatDescription()": "WebChatDescription()", + "WebChatDescription": "WebChatDescription()", + "AttachmentClickRef": "AttachmentClickRef", + "DraftMessage": "DraftMessage", + "InputBlurRef": "InputBlurRef", + "InputChangeRef": "InputChangeRef", + "InputFocusRef": "InputFocusRef", + "MessageCreatedRef": "MessageCreatedRef", + "MessageReactRef": "MessageReactRef", + "Messages": "Messages", + "Options": "Options", + "Type": "Type", + "TypingChangeRef": "TypingChangeRef" + } + } + ], + "WebChatDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatDescriptionMetadata()": "WebChatDescriptionMetadata()", + "WebChatDescriptionMetadata": "WebChatDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebChatDescriptionModule()": "WebChatDescriptionModule()", + "WebChatDescriptionModule": "WebChatDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatDraftMessageDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatDraftMessageDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatDraftMessageDescription()": "WebChatDraftMessageDescription()", + "WebChatDraftMessageDescription": "WebChatDraftMessageDescription()", + "Attachments": "Attachments", + "Text": "Text", + "Type": "Type" + } + } + ], + "WebChatDraftMessageDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatDraftMessageDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatDraftMessageDescriptionMetadata()": "WebChatDraftMessageDescriptionMetadata()", + "WebChatDraftMessageDescriptionMetadata": "WebChatDraftMessageDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatInputRenderContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatInputRenderContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatInputRenderContextDescription()": "WebChatInputRenderContextDescription()", + "WebChatInputRenderContextDescription": "WebChatInputRenderContextDescription()", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebChatInputRenderContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatInputRenderContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatInputRenderContextDescriptionMetadata()": "WebChatInputRenderContextDescriptionMetadata()", + "WebChatInputRenderContextDescriptionMetadata": "WebChatInputRenderContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageAttachmentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageAttachmentDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageAttachmentDescription()": "WebChatMessageAttachmentDescription()", + "WebChatMessageAttachmentDescription": "WebChatMessageAttachmentDescription()", + "AttachmentType": "AttachmentType", + "Id": "Id", + "Thumbnail": "Thumbnail", + "Type": "Type", + "Url": "Url" + } + } + ], + "WebChatMessageAttachmentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageAttachmentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageAttachmentDescriptionMetadata()": "WebChatMessageAttachmentDescriptionMetadata()", + "WebChatMessageAttachmentDescriptionMetadata": "WebChatMessageAttachmentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageAttachmentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageAttachmentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageAttachmentEventArgsDescription()": "WebChatMessageAttachmentEventArgsDescription()", + "WebChatMessageAttachmentEventArgsDescription": "WebChatMessageAttachmentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebChatMessageAttachmentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageAttachmentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageAttachmentEventArgsDescriptionMetadata()": "WebChatMessageAttachmentEventArgsDescriptionMetadata()", + "WebChatMessageAttachmentEventArgsDescriptionMetadata": "WebChatMessageAttachmentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageDescription()": "WebChatMessageDescription()", + "WebChatMessageDescription": "WebChatMessageDescription()", + "Attachments": "Attachments", + "Id": "Id", + "Reactions": "Reactions", + "Sender": "Sender", + "Text": "Text", + "Timestamp": "Timestamp", + "Type": "Type" + } + } + ], + "WebChatMessageDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageDescriptionMetadata()": "WebChatMessageDescriptionMetadata()", + "WebChatMessageDescriptionMetadata": "WebChatMessageDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageEventArgsDescription()": "WebChatMessageEventArgsDescription()", + "WebChatMessageEventArgsDescription": "WebChatMessageEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebChatMessageEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageEventArgsDescriptionMetadata()": "WebChatMessageEventArgsDescriptionMetadata()", + "WebChatMessageEventArgsDescriptionMetadata": "WebChatMessageEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageReactionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageReactionDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageReactionDescription()": "WebChatMessageReactionDescription()", + "WebChatMessageReactionDescription": "WebChatMessageReactionDescription()", + "Message": "Message", + "Reaction": "Reaction", + "Type": "Type" + } + } + ], + "WebChatMessageReactionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageReactionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageReactionDescriptionMetadata()": "WebChatMessageReactionDescriptionMetadata()", + "WebChatMessageReactionDescriptionMetadata": "WebChatMessageReactionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageReactionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageReactionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageReactionEventArgsDescription()": "WebChatMessageReactionEventArgsDescription()", + "WebChatMessageReactionEventArgsDescription": "WebChatMessageReactionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebChatMessageReactionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageReactionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageReactionEventArgsDescriptionMetadata()": "WebChatMessageReactionEventArgsDescriptionMetadata()", + "WebChatMessageReactionEventArgsDescriptionMetadata": "WebChatMessageReactionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatMessageRenderContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageRenderContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageRenderContextDescription()": "WebChatMessageRenderContextDescription()", + "WebChatMessageRenderContextDescription": "WebChatMessageRenderContextDescription()", + "Message": "Message", + "Type": "Type" + } + } + ], + "WebChatMessageRenderContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatMessageRenderContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatMessageRenderContextDescriptionMetadata()": "WebChatMessageRenderContextDescriptionMetadata()", + "WebChatMessageRenderContextDescriptionMetadata": "WebChatMessageRenderContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatOptionsDescription()": "WebChatOptionsDescription()", + "WebChatOptionsDescription": "WebChatOptionsDescription()", + "AdoptRootStyles": "AdoptRootStyles", + "CurrentUserId": "CurrentUserId", + "DisableAutoScroll": "DisableAutoScroll", + "DisableInputAttachments": "DisableInputAttachments", + "HeaderText": "HeaderText", + "InputPlaceholder": "InputPlaceholder", + "IsTyping": "IsTyping", + "Renderers": "Renderers", + "StopTypingDelay": "StopTypingDelay", + "Suggestions": "Suggestions", + "SuggestionsPosition": "SuggestionsPosition", + "Type": "Type" + } + } + ], + "WebChatOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatOptionsDescriptionMetadata()": "WebChatOptionsDescriptionMetadata()", + "WebChatOptionsDescriptionMetadata": "WebChatOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatRenderContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatRenderContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatRenderContextDescription()": "WebChatRenderContextDescription()", + "WebChatRenderContextDescription": "WebChatRenderContextDescription()", + "Instance": "Instance", + "Type": "Type" + } + } + ], + "WebChatRenderContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatRenderContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatRenderContextDescriptionMetadata()": "WebChatRenderContextDescriptionMetadata()", + "WebChatRenderContextDescriptionMetadata": "WebChatRenderContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChatRenderersDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatRenderersDescription", + "k": "class", + "s": "classes", + "m": { + "WebChatRenderersDescription()": "WebChatRenderersDescription()", + "WebChatRenderersDescription": "WebChatRenderersDescription()", + "AttachmentContentRef": "AttachmentContentRef", + "AttachmentHeaderRef": "AttachmentHeaderRef", + "AttachmentRef": "AttachmentRef", + "InputActionsEndRef": "InputActionsEndRef", + "InputActionsRef": "InputActionsRef", + "InputActionsStartRef": "InputActionsStartRef", + "InputRef": "InputRef", + "MessageActionsRef": "MessageActionsRef", + "MessageAttachmentsRef": "MessageAttachmentsRef", + "MessageContentRef": "MessageContentRef", + "MessageHeaderRef": "MessageHeaderRef", + "MessageRef": "MessageRef", + "SendButtonRef": "SendButtonRef", + "SuggestionPrefixRef": "SuggestionPrefixRef", + "Type": "Type" + } + } + ], + "WebChatRenderersDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChatRenderersDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChatRenderersDescriptionMetadata()": "WebChatRenderersDescriptionMetadata()", + "WebChatRenderersDescriptionMetadata": "WebChatRenderersDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxBaseDescription()": "WebCheckboxBaseDescription()", + "WebCheckboxBaseDescription": "WebCheckboxBaseDescription()", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "Checked": "Checked", + "DefaultChecked": "DefaultChecked", + "Disabled": "Disabled", + "FocusRef": "FocusRef", + "Invalid": "Invalid", + "LabelPosition": "LabelPosition", + "Required": "Required", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebCheckboxBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxBaseDescriptionMetadata()": "WebCheckboxBaseDescriptionMetadata()", + "WebCheckboxBaseDescriptionMetadata": "WebCheckboxBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxBaseDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxBaseDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxBaseDescriptionModule()": "WebCheckboxBaseDescriptionModule()", + "WebCheckboxBaseDescriptionModule": "WebCheckboxBaseDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxChangeEventArgsDescription()": "WebCheckboxChangeEventArgsDescription()", + "WebCheckboxChangeEventArgsDescription": "WebCheckboxChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebCheckboxChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxChangeEventArgsDescriptionMetadata()": "WebCheckboxChangeEventArgsDescriptionMetadata()", + "WebCheckboxChangeEventArgsDescriptionMetadata": "WebCheckboxChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxChangeEventArgsDetailDescription()": "WebCheckboxChangeEventArgsDetailDescription()", + "WebCheckboxChangeEventArgsDetailDescription": "WebCheckboxChangeEventArgsDetailDescription()", + "Checked": "Checked", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebCheckboxChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxChangeEventArgsDetailDescriptionMetadata()": "WebCheckboxChangeEventArgsDetailDescriptionMetadata()", + "WebCheckboxChangeEventArgsDetailDescriptionMetadata": "WebCheckboxChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxDescription", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxDescription()": "WebCheckboxDescription()", + "WebCheckboxDescription": "WebCheckboxDescription()", + "Indeterminate": "Indeterminate", + "Type": "Type" + } + } + ], + "WebCheckboxDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxDescriptionMetadata()": "WebCheckboxDescriptionMetadata()", + "WebCheckboxDescriptionMetadata": "WebCheckboxDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCheckboxDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCheckboxDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCheckboxDescriptionModule()": "WebCheckboxDescriptionModule()", + "WebCheckboxDescriptionModule": "WebCheckboxDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChipDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChipDescription", + "k": "class", + "s": "classes", + "m": { + "WebChipDescription()": "WebChipDescription()", + "WebChipDescription": "WebChipDescription()", + "Disabled": "Disabled", + "Removable": "Removable", + "RemoveRef": "RemoveRef", + "SelectRef": "SelectRef", + "Selectable": "Selectable", + "Selected": "Selected", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebChipDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChipDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebChipDescriptionMetadata()": "WebChipDescriptionMetadata()", + "WebChipDescriptionMetadata": "WebChipDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebChipDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebChipDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebChipDescriptionModule()": "WebChipDescriptionModule()", + "WebChipDescriptionModule": "WebChipDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCircularGradientDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCircularGradientDescription", + "k": "class", + "s": "classes", + "m": { + "WebCircularGradientDescription()": "WebCircularGradientDescription()", + "WebCircularGradientDescription": "WebCircularGradientDescription()", + "Color": "Color", + "Offset": "Offset", + "Opacity": "Opacity", + "Type": "Type" + } + } + ], + "WebCircularGradientDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCircularGradientDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCircularGradientDescriptionMetadata()": "WebCircularGradientDescriptionMetadata()", + "WebCircularGradientDescriptionMetadata": "WebCircularGradientDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCircularGradientDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCircularGradientDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCircularGradientDescriptionModule()": "WebCircularGradientDescriptionModule()", + "WebCircularGradientDescriptionModule": "WebCircularGradientDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCircularProgressDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCircularProgressDescription", + "k": "class", + "s": "classes", + "m": { + "WebCircularProgressDescription()": "WebCircularProgressDescription()", + "WebCircularProgressDescription": "WebCircularProgressDescription()", + "Type": "Type" + } + } + ], + "WebCircularProgressDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCircularProgressDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCircularProgressDescriptionMetadata()": "WebCircularProgressDescriptionMetadata()", + "WebCircularProgressDescriptionMetadata": "WebCircularProgressDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCircularProgressDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCircularProgressDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebCircularProgressDescriptionModule()": "WebCircularProgressDescriptionModule()", + "WebCircularProgressDescriptionModule": "WebCircularProgressDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebClipboardOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebClipboardOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebClipboardOptionsDescription()": "WebClipboardOptionsDescription()", + "WebClipboardOptionsDescription": "WebClipboardOptionsDescription()", + "CopyFormatters": "CopyFormatters", + "CopyHeaders": "CopyHeaders", + "Enabled": "Enabled", + "Separator": "Separator", + "Type": "Type" + } + } + ], + "WebClipboardOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebClipboardOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebClipboardOptionsDescriptionMetadata()": "WebClipboardOptionsDescriptionMetadata()", + "WebClipboardOptionsDescriptionMetadata": "WebClipboardOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnComponentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnComponentEventArgsDescription()": "WebColumnComponentEventArgsDescription()", + "WebColumnComponentEventArgsDescription": "WebColumnComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnComponentEventArgsDescriptionMetadata()": "WebColumnComponentEventArgsDescriptionMetadata()", + "WebColumnComponentEventArgsDescriptionMetadata": "WebColumnComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnDescription()": "WebColumnDescription()", + "WebColumnDescription": "WebColumnDescription()", + "AdditionalTemplateContext": "AdditionalTemplateContext", + "AutosizeHeader": "AutosizeHeader", + "BodyTemplateRef": "BodyTemplateRef", + "CellClassesRef": "CellClassesRef", + "CellStylesRef": "CellStylesRef", + "ColEnd": "ColEnd", + "ColStart": "ColStart", + "DataType": "DataType", + "DisableHiding": "DisableHiding", + "DisablePinning": "DisablePinning", + "DisabledSummaries": "DisabledSummaries", + "Editable": "Editable", + "EditorOptions": "EditorOptions", + "ErrorTemplateRef": "ErrorTemplateRef", + "ExpandedChangeRef": "ExpandedChangeRef", + "Field": "Field", + "FilterCellTemplateRef": "FilterCellTemplateRef", + "Filterable": "Filterable", + "FilteringIgnoreCase": "FilteringIgnoreCase", + "Filters": "Filters", + "FormatterRef": "FormatterRef", + "Groupable": "Groupable", + "HasSummary": "HasSummary", + "Header": "Header", + "HeaderClasses": "HeaderClasses", + "HeaderGroupClasses": "HeaderGroupClasses", + "HeaderGroupStyles": "HeaderGroupStyles", + "HeaderStyles": "HeaderStyles", + "HeaderTemplateRef": "HeaderTemplateRef", + "Hidden": "Hidden", + "HiddenChangeRef": "HiddenChangeRef", + "InlineEditorTemplateRef": "InlineEditorTemplateRef", + "MaxWidth": "MaxWidth", + "Merge": "Merge", + "MinWidth": "MinWidth", + "ParentColumn": "ParentColumn", + "Pinned": "Pinned", + "PinnedChangeRef": "PinnedChangeRef", + "PinningPosition": "PinningPosition", + "PipeArgs": "PipeArgs", + "Resizable": "Resizable", + "RowEnd": "RowEnd", + "RowStart": "RowStart", + "Searchable": "Searchable", + "Selectable": "Selectable", + "Selected": "Selected", + "SortStrategy": "SortStrategy", + "Sortable": "Sortable", + "SortingIgnoreCase": "SortingIgnoreCase", + "SummariesRef": "SummariesRef", + "SummaryFormatterRef": "SummaryFormatterRef", + "SummaryTemplateRef": "SummaryTemplateRef", + "Title": "Title", + "Type": "Type", + "VisibleWhenCollapsed": "VisibleWhenCollapsed", + "Width": "Width", + "WidthChangeRef": "WidthChangeRef" + } + } + ], + "WebColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnDescriptionMetadata()": "WebColumnDescriptionMetadata()", + "WebColumnDescriptionMetadata": "WebColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebColumnDescriptionModule()": "WebColumnDescriptionModule()", + "WebColumnDescriptionModule": "WebColumnDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnEditorOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnEditorOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnEditorOptionsDescription()": "WebColumnEditorOptionsDescription()", + "WebColumnEditorOptionsDescription": "WebColumnEditorOptionsDescription()", + "Type": "Type" + } + } + ], + "WebColumnEditorOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnEditorOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnEditorOptionsDescriptionMetadata()": "WebColumnEditorOptionsDescriptionMetadata()", + "WebColumnEditorOptionsDescriptionMetadata": "WebColumnEditorOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnExportingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnExportingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnExportingEventArgsDescription()": "WebColumnExportingEventArgsDescription()", + "WebColumnExportingEventArgsDescription": "WebColumnExportingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnExportingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnExportingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnExportingEventArgsDescriptionMetadata()": "WebColumnExportingEventArgsDescriptionMetadata()", + "WebColumnExportingEventArgsDescriptionMetadata": "WebColumnExportingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnExportingEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnExportingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnExportingEventArgsDetailDescription()": "WebColumnExportingEventArgsDetailDescription()", + "WebColumnExportingEventArgsDetailDescription": "WebColumnExportingEventArgsDetailDescription()", + "Cancel": "Cancel", + "ColumnIndex": "ColumnIndex", + "Field": "Field", + "Grid": "Grid", + "Header": "Header", + "SkipFormatter": "SkipFormatter", + "Type": "Type" + } + } + ], + "WebColumnExportingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnExportingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnExportingEventArgsDetailDescriptionMetadata()": "WebColumnExportingEventArgsDetailDescriptionMetadata()", + "WebColumnExportingEventArgsDetailDescriptionMetadata": "WebColumnExportingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnGroupDescription()": "WebColumnGroupDescription()", + "WebColumnGroupDescription": "WebColumnGroupDescription()", + "Children": "Children", + "Collapsible": "Collapsible", + "CollapsibleIndicatorTemplateRef": "CollapsibleIndicatorTemplateRef", + "Expanded": "Expanded", + "Type": "Type" + } + } + ], + "WebColumnGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnGroupDescriptionMetadata()": "WebColumnGroupDescriptionMetadata()", + "WebColumnGroupDescriptionMetadata": "WebColumnGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebColumnGroupDescriptionModule()": "WebColumnGroupDescriptionModule()", + "WebColumnGroupDescriptionModule": "WebColumnGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnLayoutDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnLayoutDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnLayoutDescription()": "WebColumnLayoutDescription()", + "WebColumnLayoutDescription": "WebColumnLayoutDescription()", + "Type": "Type" + } + } + ], + "WebColumnLayoutDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnLayoutDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnLayoutDescriptionMetadata()": "WebColumnLayoutDescriptionMetadata()", + "WebColumnLayoutDescriptionMetadata": "WebColumnLayoutDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnLayoutDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnLayoutDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebColumnLayoutDescriptionModule()": "WebColumnLayoutDescriptionModule()", + "WebColumnLayoutDescriptionModule": "WebColumnLayoutDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingEndEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingEndEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEndEventArgsDescription()": "WebColumnMovingEndEventArgsDescription()", + "WebColumnMovingEndEventArgsDescription": "WebColumnMovingEndEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnMovingEndEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingEndEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEndEventArgsDescriptionMetadata()": "WebColumnMovingEndEventArgsDescriptionMetadata()", + "WebColumnMovingEndEventArgsDescriptionMetadata": "WebColumnMovingEndEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingEndEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingEndEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEndEventArgsDetailDescription()": "WebColumnMovingEndEventArgsDetailDescription()", + "WebColumnMovingEndEventArgsDetailDescription": "WebColumnMovingEndEventArgsDetailDescription()", + "Cancel": "Cancel", + "Source": "Source", + "Target": "Target", + "Type": "Type" + } + } + ], + "WebColumnMovingEndEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingEndEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEndEventArgsDetailDescriptionMetadata()": "WebColumnMovingEndEventArgsDetailDescriptionMetadata()", + "WebColumnMovingEndEventArgsDetailDescriptionMetadata": "WebColumnMovingEndEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEventArgsDescription()": "WebColumnMovingEventArgsDescription()", + "WebColumnMovingEventArgsDescription": "WebColumnMovingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnMovingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEventArgsDescriptionMetadata()": "WebColumnMovingEventArgsDescriptionMetadata()", + "WebColumnMovingEventArgsDescriptionMetadata": "WebColumnMovingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEventArgsDetailDescription()": "WebColumnMovingEventArgsDetailDescription()", + "WebColumnMovingEventArgsDetailDescription": "WebColumnMovingEventArgsDetailDescription()", + "Cancel": "Cancel", + "Source": "Source", + "Type": "Type" + } + } + ], + "WebColumnMovingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingEventArgsDetailDescriptionMetadata()": "WebColumnMovingEventArgsDetailDescriptionMetadata()", + "WebColumnMovingEventArgsDetailDescriptionMetadata": "WebColumnMovingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingStartEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingStartEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingStartEventArgsDescription()": "WebColumnMovingStartEventArgsDescription()", + "WebColumnMovingStartEventArgsDescription": "WebColumnMovingStartEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnMovingStartEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingStartEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingStartEventArgsDescriptionMetadata()": "WebColumnMovingStartEventArgsDescriptionMetadata()", + "WebColumnMovingStartEventArgsDescriptionMetadata": "WebColumnMovingStartEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnMovingStartEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingStartEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingStartEventArgsDetailDescription()": "WebColumnMovingStartEventArgsDetailDescription()", + "WebColumnMovingStartEventArgsDetailDescription": "WebColumnMovingStartEventArgsDetailDescription()", + "Source": "Source", + "Type": "Type" + } + } + ], + "WebColumnMovingStartEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnMovingStartEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnMovingStartEventArgsDetailDescriptionMetadata()": "WebColumnMovingStartEventArgsDetailDescriptionMetadata()", + "WebColumnMovingStartEventArgsDetailDescriptionMetadata": "WebColumnMovingStartEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnPipeArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnPipeArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnPipeArgsDescription()": "WebColumnPipeArgsDescription()", + "WebColumnPipeArgsDescription": "WebColumnPipeArgsDescription()", + "Type": "Type" + } + } + ], + "WebColumnPipeArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnPipeArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnPipeArgsDescriptionMetadata()": "WebColumnPipeArgsDescriptionMetadata()", + "WebColumnPipeArgsDescriptionMetadata": "WebColumnPipeArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnResizeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnResizeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnResizeEventArgsDescription()": "WebColumnResizeEventArgsDescription()", + "WebColumnResizeEventArgsDescription": "WebColumnResizeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnResizeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnResizeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnResizeEventArgsDescriptionMetadata()": "WebColumnResizeEventArgsDescriptionMetadata()", + "WebColumnResizeEventArgsDescriptionMetadata": "WebColumnResizeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnResizeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnResizeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnResizeEventArgsDetailDescription()": "WebColumnResizeEventArgsDetailDescription()", + "WebColumnResizeEventArgsDetailDescription": "WebColumnResizeEventArgsDetailDescription()", + "Column": "Column", + "NewWidth": "NewWidth", + "PrevWidth": "PrevWidth", + "Type": "Type" + } + } + ], + "WebColumnResizeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnResizeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnResizeEventArgsDetailDescriptionMetadata()": "WebColumnResizeEventArgsDetailDescriptionMetadata()", + "WebColumnResizeEventArgsDetailDescriptionMetadata": "WebColumnResizeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnsAutoGeneratedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnsAutoGeneratedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnsAutoGeneratedEventArgsDescription()": "WebColumnsAutoGeneratedEventArgsDescription()", + "WebColumnsAutoGeneratedEventArgsDescription": "WebColumnsAutoGeneratedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnsAutoGeneratedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnsAutoGeneratedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnsAutoGeneratedEventArgsDescriptionMetadata()": "WebColumnsAutoGeneratedEventArgsDescriptionMetadata()", + "WebColumnsAutoGeneratedEventArgsDescriptionMetadata": "WebColumnsAutoGeneratedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnsAutoGeneratedEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnsAutoGeneratedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnsAutoGeneratedEventArgsDetailDescription()": "WebColumnsAutoGeneratedEventArgsDetailDescription()", + "WebColumnsAutoGeneratedEventArgsDetailDescription": "WebColumnsAutoGeneratedEventArgsDetailDescription()", + "Columns": "Columns", + "Type": "Type" + } + } + ], + "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata()": "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata()", + "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata": "WebColumnsAutoGeneratedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnSelectionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnSelectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnSelectionEventArgsDescription()": "WebColumnSelectionEventArgsDescription()", + "WebColumnSelectionEventArgsDescription": "WebColumnSelectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnSelectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnSelectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnSelectionEventArgsDescriptionMetadata()": "WebColumnSelectionEventArgsDescriptionMetadata()", + "WebColumnSelectionEventArgsDescriptionMetadata": "WebColumnSelectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnSelectionEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnSelectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnSelectionEventArgsDetailDescription()": "WebColumnSelectionEventArgsDetailDescription()", + "WebColumnSelectionEventArgsDetailDescription": "WebColumnSelectionEventArgsDetailDescription()", + "Added": "Added", + "NewSelection": "NewSelection", + "OldSelection": "OldSelection", + "Owner": "Owner", + "Removed": "Removed", + "Type": "Type" + } + } + ], + "WebColumnSelectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnSelectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnSelectionEventArgsDetailDescriptionMetadata()": "WebColumnSelectionEventArgsDetailDescriptionMetadata()", + "WebColumnSelectionEventArgsDetailDescriptionMetadata": "WebColumnSelectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnStateDescription()": "WebColumnStateDescription()", + "WebColumnStateDescription": "WebColumnStateDescription()", + "ColEnd": "ColEnd", + "ColStart": "ColStart", + "Collapsible": "Collapsible", + "ColumnGroup": "ColumnGroup", + "ColumnLayout": "ColumnLayout", + "DataType": "DataType", + "DisableHiding": "DisableHiding", + "DisablePinning": "DisablePinning", + "Editable": "Editable", + "Expanded": "Expanded", + "Field": "Field", + "Filterable": "Filterable", + "FilteringIgnoreCase": "FilteringIgnoreCase", + "Groupable": "Groupable", + "HasSummary": "HasSummary", + "Header": "Header", + "HeaderClasses": "HeaderClasses", + "HeaderGroupClasses": "HeaderGroupClasses", + "Hidden": "Hidden", + "Key": "Key", + "MaxWidth": "MaxWidth", + "Parent": "Parent", + "ParentKey": "ParentKey", + "Pinned": "Pinned", + "Resizable": "Resizable", + "RowEnd": "RowEnd", + "RowStart": "RowStart", + "Searchable": "Searchable", + "Sortable": "Sortable", + "SortingIgnoreCase": "SortingIgnoreCase", + "Type": "Type", + "VisibleWhenCollapsed": "VisibleWhenCollapsed", + "Width": "Width" + } + } + ], + "WebColumnStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnStateDescriptionMetadata()": "WebColumnStateDescriptionMetadata()", + "WebColumnStateDescriptionMetadata": "WebColumnStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnTemplateContextDescription()": "WebColumnTemplateContextDescription()", + "WebColumnTemplateContextDescription": "WebColumnTemplateContextDescription()", + "Column": "Column", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebColumnTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnTemplateContextDescriptionMetadata()": "WebColumnTemplateContextDescriptionMetadata()", + "WebColumnTemplateContextDescriptionMetadata": "WebColumnTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnToggledEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnToggledEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnToggledEventArgsDescription()": "WebColumnToggledEventArgsDescription()", + "WebColumnToggledEventArgsDescription": "WebColumnToggledEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnToggledEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnToggledEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnToggledEventArgsDescriptionMetadata()": "WebColumnToggledEventArgsDescriptionMetadata()", + "WebColumnToggledEventArgsDescriptionMetadata": "WebColumnToggledEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnToggledEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnToggledEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnToggledEventArgsDetailDescription()": "WebColumnToggledEventArgsDetailDescription()", + "WebColumnToggledEventArgsDetailDescription": "WebColumnToggledEventArgsDetailDescription()", + "Checked": "Checked", + "Column": "Column", + "Type": "Type" + } + } + ], + "WebColumnToggledEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnToggledEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnToggledEventArgsDetailDescriptionMetadata()": "WebColumnToggledEventArgsDetailDescriptionMetadata()", + "WebColumnToggledEventArgsDetailDescriptionMetadata": "WebColumnToggledEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnVisibilityChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnVisibilityChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangedEventArgsDescription()": "WebColumnVisibilityChangedEventArgsDescription()", + "WebColumnVisibilityChangedEventArgsDescription": "WebColumnVisibilityChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnVisibilityChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnVisibilityChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangedEventArgsDescriptionMetadata()": "WebColumnVisibilityChangedEventArgsDescriptionMetadata()", + "WebColumnVisibilityChangedEventArgsDescriptionMetadata": "WebColumnVisibilityChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnVisibilityChangedEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnVisibilityChangedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangedEventArgsDetailDescription()": "WebColumnVisibilityChangedEventArgsDetailDescription()", + "WebColumnVisibilityChangedEventArgsDetailDescription": "WebColumnVisibilityChangedEventArgsDetailDescription()", + "Column": "Column", + "NewValue": "NewValue", + "Type": "Type" + } + } + ], + "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata()": "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata()", + "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata": "WebColumnVisibilityChangedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnVisibilityChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnVisibilityChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangingEventArgsDescription()": "WebColumnVisibilityChangingEventArgsDescription()", + "WebColumnVisibilityChangingEventArgsDescription": "WebColumnVisibilityChangingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebColumnVisibilityChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnVisibilityChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangingEventArgsDescriptionMetadata()": "WebColumnVisibilityChangingEventArgsDescriptionMetadata()", + "WebColumnVisibilityChangingEventArgsDescriptionMetadata": "WebColumnVisibilityChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebColumnVisibilityChangingEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnVisibilityChangingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangingEventArgsDetailDescription()": "WebColumnVisibilityChangingEventArgsDetailDescription()", + "WebColumnVisibilityChangingEventArgsDetailDescription": "WebColumnVisibilityChangingEventArgsDetailDescription()", + "Column": "Column", + "NewValue": "NewValue", + "Type": "Type" + } + } + ], + "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata()": "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata()", + "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata": "WebColumnVisibilityChangingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboBoxBaseLikeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboBoxBaseLikeDescription", + "k": "class", + "s": "classes", + "m": { + "WebComboBoxBaseLikeDescription()": "WebComboBoxBaseLikeDescription()", + "WebComboBoxBaseLikeDescription": "WebComboBoxBaseLikeDescription()", + "KeepOpenOnOutsideClick": "KeepOpenOnOutsideClick", + "KeepOpenOnSelect": "KeepOpenOnSelect", + "Type": "Type" + } + } + ], + "WebComboBoxBaseLikeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboBoxBaseLikeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComboBoxBaseLikeDescriptionMetadata()": "WebComboBoxBaseLikeDescriptionMetadata()", + "WebComboBoxBaseLikeDescriptionMetadata": "WebComboBoxBaseLikeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComboChangeEventArgsDescription()": "WebComboChangeEventArgsDescription()", + "WebComboChangeEventArgsDescription": "WebComboChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComboChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComboChangeEventArgsDescriptionMetadata()": "WebComboChangeEventArgsDescriptionMetadata()", + "WebComboChangeEventArgsDescriptionMetadata": "WebComboChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebComboChangeEventArgsDetailDescription()": "WebComboChangeEventArgsDetailDescription()", + "WebComboChangeEventArgsDetailDescription": "WebComboChangeEventArgsDetailDescription()", + "ChangeType": "ChangeType", + "ItemsRef": "ItemsRef", + "NewValueRef": "NewValueRef", + "Type": "Type" + } + } + ], + "WebComboChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComboChangeEventArgsDetailDescriptionMetadata()": "WebComboChangeEventArgsDetailDescriptionMetadata()", + "WebComboChangeEventArgsDetailDescriptionMetadata": "WebComboChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboDescription", + "k": "class", + "s": "classes", + "m": { + "WebComboDescription()": "WebComboDescription()", + "WebComboDescription": "WebComboDescription()", + "Autofocus": "Autofocus", + "AutofocusList": "AutofocusList", + "BlurRef": "BlurRef", + "CaseSensitiveIcon": "CaseSensitiveIcon", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "DataRef": "DataRef", + "DefaultValue": "DefaultValue", + "DisableClear": "DisableClear", + "DisableFiltering": "DisableFiltering", + "Disabled": "Disabled", + "DisplayKey": "DisplayKey", + "FilteringOptions": "FilteringOptions", + "FocusRef": "FocusRef", + "GroupHeaderTemplateRef": "GroupHeaderTemplateRef", + "GroupKey": "GroupKey", + "GroupSorting": "GroupSorting", + "Invalid": "Invalid", + "ItemTemplateRef": "ItemTemplateRef", + "Label": "Label", + "Locale": "Locale", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "PlaceholderSearch": "PlaceholderSearch", + "Required": "Required", + "SingleSelect": "SingleSelect", + "Type": "Type", + "Value": "Value", + "ValueKey": "ValueKey" + } + } + ], + "WebComboDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComboDescriptionMetadata()": "WebComboDescriptionMetadata()", + "WebComboDescriptionMetadata": "WebComboDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComboDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComboDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebComboDescriptionModule()": "WebComboDescriptionModule()", + "WebComboDescriptionModule": "WebComboDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentArrayDataValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentArrayDataValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentArrayDataValueChangedEventArgsDescription()": "WebComponentArrayDataValueChangedEventArgsDescription()", + "WebComponentArrayDataValueChangedEventArgsDescription": "WebComponentArrayDataValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentArrayDataValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata()": "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata()", + "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata": "WebComponentArrayDataValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentBoolValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentBoolValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentBoolValueChangedEventArgsDescription()": "WebComponentBoolValueChangedEventArgsDescription()", + "WebComponentBoolValueChangedEventArgsDescription": "WebComponentBoolValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentBoolValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentBoolValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentBoolValueChangedEventArgsDescriptionMetadata()": "WebComponentBoolValueChangedEventArgsDescriptionMetadata()", + "WebComponentBoolValueChangedEventArgsDescriptionMetadata": "WebComponentBoolValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentDataValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentDataValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentDataValueChangedEventArgsDescription()": "WebComponentDataValueChangedEventArgsDescription()", + "WebComponentDataValueChangedEventArgsDescription": "WebComponentDataValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentDataValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentDataValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentDataValueChangedEventArgsDescriptionMetadata()": "WebComponentDataValueChangedEventArgsDescriptionMetadata()", + "WebComponentDataValueChangedEventArgsDescriptionMetadata": "WebComponentDataValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentDateValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentDateValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentDateValueChangedEventArgsDescription()": "WebComponentDateValueChangedEventArgsDescription()", + "WebComponentDateValueChangedEventArgsDescription": "WebComponentDateValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentDateValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentDateValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentDateValueChangedEventArgsDescriptionMetadata()": "WebComponentDateValueChangedEventArgsDescriptionMetadata()", + "WebComponentDateValueChangedEventArgsDescriptionMetadata": "WebComponentDateValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebComponentValueChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentValueChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebComponentValueChangedEventArgsDescription()": "WebComponentValueChangedEventArgsDescription()", + "WebComponentValueChangedEventArgsDescription": "WebComponentValueChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebComponentValueChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebComponentValueChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebComponentValueChangedEventArgsDescriptionMetadata()": "WebComponentValueChangedEventArgsDescriptionMetadata()", + "WebComponentValueChangedEventArgsDescriptionMetadata": "WebComponentValueChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebContentPaneDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebContentPaneDescription", + "k": "class", + "s": "classes", + "m": { + "WebContentPaneDescription()": "WebContentPaneDescription()", + "WebContentPaneDescription": "WebContentPaneDescription()", + "AcceptsInnerDock": "AcceptsInnerDock", + "AllowClose": "AllowClose", + "AllowDocking": "AllowDocking", + "AllowFloating": "AllowFloating", + "AllowMaximize": "AllowMaximize", + "AllowPinning": "AllowPinning", + "ContentId": "ContentId", + "Disabled": "Disabled", + "DocumentOnly": "DocumentOnly", + "FloatingHeaderId": "FloatingHeaderId", + "Header": "Header", + "HeaderId": "HeaderId", + "Hidden": "Hidden", + "Id": "Id", + "IsMaximized": "IsMaximized", + "IsPinned": "IsPinned", + "MinResizeHeight": "MinResizeHeight", + "MinResizeWidth": "MinResizeWidth", + "PaneType": "PaneType", + "Size": "Size", + "TabHeaderId": "TabHeaderId", + "Type": "Type", + "UnpinnedHeaderId": "UnpinnedHeaderId", + "UnpinnedLocation": "UnpinnedLocation", + "UnpinnedSize": "UnpinnedSize" + } + } + ], + "WebContentPaneDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebContentPaneDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebContentPaneDescriptionMetadata()": "WebContentPaneDescriptionMetadata()", + "WebContentPaneDescriptionMetadata": "WebContentPaneDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebContentPaneDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebContentPaneDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebContentPaneDescriptionModule()": "WebContentPaneDescriptionModule()", + "WebContentPaneDescriptionModule": "WebContentPaneDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebCustomDateRangeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCustomDateRangeDescription", + "k": "class", + "s": "classes", + "m": { + "WebCustomDateRangeDescription()": "WebCustomDateRangeDescription()", + "WebCustomDateRangeDescription": "WebCustomDateRangeDescription()", + "DateRange": "DateRange", + "Label": "Label", + "Type": "Type" + } + } + ], + "WebCustomDateRangeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebCustomDateRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebCustomDateRangeDescriptionMetadata()": "WebCustomDateRangeDescriptionMetadata()", + "WebCustomDateRangeDescriptionMetadata": "WebCustomDateRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDataCloneStrategyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDataCloneStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebDataCloneStrategyDescription()": "WebDataCloneStrategyDescription()", + "WebDataCloneStrategyDescription": "WebDataCloneStrategyDescription()", + "Type": "Type" + } + } + ], + "WebDataCloneStrategyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDataCloneStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDataCloneStrategyDescriptionMetadata()": "WebDataCloneStrategyDescriptionMetadata()", + "WebDataCloneStrategyDescriptionMetadata": "WebDataCloneStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateFilteringOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateFilteringOperandDescription()": "WebDateFilteringOperandDescription()", + "WebDateFilteringOperandDescription": "WebDateFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebDateFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateFilteringOperandDescriptionMetadata()": "WebDateFilteringOperandDescriptionMetadata()", + "WebDateFilteringOperandDescriptionMetadata": "WebDateFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDatePickerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDatePickerDescription", + "k": "class", + "s": "classes", + "m": { + "WebDatePickerDescription()": "WebDatePickerDescription()", + "WebDatePickerDescription": "WebDatePickerDescription()", + "ActiveDate": "ActiveDate", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "DisabledDates": "DisabledDates", + "DisplayFormat": "DisplayFormat", + "HeaderOrientation": "HeaderOrientation", + "HideHeader": "HideHeader", + "HideOutsideDays": "HideOutsideDays", + "InputFormat": "InputFormat", + "InputRef": "InputRef", + "Invalid": "Invalid", + "Label": "Label", + "Locale": "Locale", + "Max": "Max", + "Min": "Min", + "Mode": "Mode", + "NonEditable": "NonEditable", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Orientation": "Orientation", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "Prompt": "Prompt", + "ReadOnly": "ReadOnly", + "Required": "Required", + "ResourceStrings": "ResourceStrings", + "ShowWeekNumbers": "ShowWeekNumbers", + "SpecialDates": "SpecialDates", + "Type": "Type", + "Value": "Value", + "VisibleMonths": "VisibleMonths", + "WeekStart": "WeekStart" + } + } + ], + "WebDatePickerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDatePickerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDatePickerDescriptionMetadata()": "WebDatePickerDescriptionMetadata()", + "WebDatePickerDescriptionMetadata": "WebDatePickerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDatePickerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDatePickerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDatePickerDescriptionModule()": "WebDatePickerDescriptionModule()", + "WebDatePickerDescriptionModule": "WebDatePickerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangePickerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangePickerDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerDescription()": "WebDateRangePickerDescription()", + "WebDateRangePickerDescription": "WebDateRangePickerDescription()", + "ActiveDate": "ActiveDate", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "CustomRanges": "CustomRanges", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "DisabledDates": "DisabledDates", + "DisplayFormat": "DisplayFormat", + "HeaderOrientation": "HeaderOrientation", + "HideHeader": "HideHeader", + "HideOutsideDays": "HideOutsideDays", + "InputFormat": "InputFormat", + "InputRef": "InputRef", + "Invalid": "Invalid", + "Label": "Label", + "LabelEnd": "LabelEnd", + "LabelStart": "LabelStart", + "Locale": "Locale", + "Max": "Max", + "Min": "Min", + "Mode": "Mode", + "NonEditable": "NonEditable", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Orientation": "Orientation", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "PlaceholderEnd": "PlaceholderEnd", + "PlaceholderStart": "PlaceholderStart", + "Prompt": "Prompt", + "ReadOnly": "ReadOnly", + "Required": "Required", + "ResourceStrings": "ResourceStrings", + "ShowWeekNumbers": "ShowWeekNumbers", + "SpecialDates": "SpecialDates", + "Type": "Type", + "UsePredefinedRanges": "UsePredefinedRanges", + "UseTwoInputs": "UseTwoInputs", + "Value": "Value", + "VisibleMonths": "VisibleMonths", + "WeekStart": "WeekStart" + } + } + ], + "WebDateRangePickerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangePickerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerDescriptionMetadata()": "WebDateRangePickerDescriptionMetadata()", + "WebDateRangePickerDescriptionMetadata": "WebDateRangePickerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangePickerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangePickerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerDescriptionModule()": "WebDateRangePickerDescriptionModule()", + "WebDateRangePickerDescriptionModule": "WebDateRangePickerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangePickerResourceStringsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangePickerResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerResourceStringsDescription()": "WebDateRangePickerResourceStringsDescription()", + "WebDateRangePickerResourceStringsDescription": "WebDateRangePickerResourceStringsDescription()", + "Type": "Type" + } + } + ], + "WebDateRangePickerResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangePickerResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangePickerResourceStringsDescriptionMetadata()": "WebDateRangePickerResourceStringsDescriptionMetadata()", + "WebDateRangePickerResourceStringsDescriptionMetadata": "WebDateRangePickerResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangeValueDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangeValueDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueDescription()": "WebDateRangeValueDescription()", + "WebDateRangeValueDescription": "WebDateRangeValueDescription()", + "End": "End", + "Start": "Start", + "Type": "Type" + } + } + ], + "WebDateRangeValueDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangeValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueDescriptionMetadata()": "WebDateRangeValueDescriptionMetadata()", + "WebDateRangeValueDescriptionMetadata": "WebDateRangeValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangeValueDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangeValueDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueDetailDescription()": "WebDateRangeValueDetailDescription()", + "WebDateRangeValueDetailDescription": "WebDateRangeValueDetailDescription()", + "End": "End", + "Start": "Start", + "Type": "Type" + } + } + ], + "WebDateRangeValueDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangeValueDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueDetailDescriptionMetadata()": "WebDateRangeValueDetailDescriptionMetadata()", + "WebDateRangeValueDetailDescriptionMetadata": "WebDateRangeValueDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateRangeValueEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangeValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueEventArgsDescription()": "WebDateRangeValueEventArgsDescription()", + "WebDateRangeValueEventArgsDescription": "WebDateRangeValueEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebDateRangeValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateRangeValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateRangeValueEventArgsDescriptionMetadata()": "WebDateRangeValueEventArgsDescriptionMetadata()", + "WebDateRangeValueEventArgsDescriptionMetadata": "WebDateRangeValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateSummaryOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateSummaryOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateSummaryOperandDescription()": "WebDateSummaryOperandDescription()", + "WebDateSummaryOperandDescription": "WebDateSummaryOperandDescription()", + "Type": "Type" + } + } + ], + "WebDateSummaryOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateSummaryOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateSummaryOperandDescriptionMetadata()": "WebDateSummaryOperandDescriptionMetadata()", + "WebDateSummaryOperandDescriptionMetadata": "WebDateSummaryOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateTimeFilteringOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateTimeFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeFilteringOperandDescription()": "WebDateTimeFilteringOperandDescription()", + "WebDateTimeFilteringOperandDescription": "WebDateTimeFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebDateTimeFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateTimeFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeFilteringOperandDescriptionMetadata()": "WebDateTimeFilteringOperandDescriptionMetadata()", + "WebDateTimeFilteringOperandDescriptionMetadata": "WebDateTimeFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateTimeInputBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateTimeInputBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputBaseDescription()": "WebDateTimeInputBaseDescription()", + "WebDateTimeInputBaseDescription": "WebDateTimeInputBaseDescription()", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "DisplayFormat": "DisplayFormat", + "InputFormat": "InputFormat", + "Invalid": "Invalid", + "Label": "Label", + "Locale": "Locale", + "Mask": "Mask", + "Max": "Max", + "Min": "Min", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "Prompt": "Prompt", + "ReadOnly": "ReadOnly", + "Required": "Required", + "SpinDelta": "SpinDelta", + "SpinLoop": "SpinLoop", + "Type": "Type" + } + } + ], + "WebDateTimeInputBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateTimeInputBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputBaseDescriptionMetadata()": "WebDateTimeInputBaseDescriptionMetadata()", + "WebDateTimeInputBaseDescriptionMetadata": "WebDateTimeInputBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateTimeInputDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateTimeInputDescription", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputDescription()": "WebDateTimeInputDescription()", + "WebDateTimeInputDescription": "WebDateTimeInputDescription()", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "FocusRef": "FocusRef", + "InputOcurredRef": "InputOcurredRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebDateTimeInputDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateTimeInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputDescriptionMetadata()": "WebDateTimeInputDescriptionMetadata()", + "WebDateTimeInputDescriptionMetadata": "WebDateTimeInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDateTimeInputDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDateTimeInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDateTimeInputDescriptionModule()": "WebDateTimeInputDescriptionModule()", + "WebDateTimeInputDescriptionModule": "WebDateTimeInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDialogDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDialogDescription", + "k": "class", + "s": "classes", + "m": { + "WebDialogDescription()": "WebDialogDescription()", + "WebDialogDescription": "WebDialogDescription()", + "CloseOnOutsideClick": "CloseOnOutsideClick", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "HideDefaultAction": "HideDefaultAction", + "KeepOpenOnEscape": "KeepOpenOnEscape", + "Open": "Open", + "ReturnValue": "ReturnValue", + "Title": "Title", + "Type": "Type" + } + } + ], + "WebDialogDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDialogDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDialogDescriptionMetadata()": "WebDialogDescriptionMetadata()", + "WebDialogDescriptionMetadata": "WebDialogDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDialogDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDialogDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDialogDescriptionModule()": "WebDialogDescriptionModule()", + "WebDialogDescriptionModule": "WebDialogDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDimensionsChangeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDimensionsChangeDescription", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeDescription()": "WebDimensionsChangeDescription()", + "WebDimensionsChangeDescription": "WebDimensionsChangeDescription()", + "DimensionCollectionType": "DimensionCollectionType", + "Dimensions": "Dimensions", + "Type": "Type" + } + } + ], + "WebDimensionsChangeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDimensionsChangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeDescriptionMetadata()": "WebDimensionsChangeDescriptionMetadata()", + "WebDimensionsChangeDescriptionMetadata": "WebDimensionsChangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDimensionsChangeDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDimensionsChangeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeDetailDescription()": "WebDimensionsChangeDetailDescription()", + "WebDimensionsChangeDetailDescription": "WebDimensionsChangeDetailDescription()", + "DimensionCollectionType": "DimensionCollectionType", + "Dimensions": "Dimensions", + "Type": "Type" + } + } + ], + "WebDimensionsChangeDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDimensionsChangeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeDetailDescriptionMetadata()": "WebDimensionsChangeDetailDescriptionMetadata()", + "WebDimensionsChangeDetailDescriptionMetadata": "WebDimensionsChangeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDimensionsChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDimensionsChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeEventArgsDescription()": "WebDimensionsChangeEventArgsDescription()", + "WebDimensionsChangeEventArgsDescription": "WebDimensionsChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebDimensionsChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDimensionsChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDimensionsChangeEventArgsDescriptionMetadata()": "WebDimensionsChangeEventArgsDescriptionMetadata()", + "WebDimensionsChangeEventArgsDescriptionMetadata": "WebDimensionsChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDividerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDividerDescription", + "k": "class", + "s": "classes", + "m": { + "WebDividerDescription()": "WebDividerDescription()", + "WebDividerDescription": "WebDividerDescription()", + "LineType": "LineType", + "Middle": "Middle", + "Type": "Type", + "Vertical": "Vertical" + } + } + ], + "WebDividerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDividerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDividerDescriptionMetadata()": "WebDividerDescriptionMetadata()", + "WebDividerDescriptionMetadata": "WebDividerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDividerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDividerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDividerDescriptionModule()": "WebDividerDescriptionModule()", + "WebDividerDescriptionModule": "WebDividerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockingIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockingIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockingIndicatorDescription()": "WebDockingIndicatorDescription()", + "WebDockingIndicatorDescription": "WebDockingIndicatorDescription()", + "Direction": "Direction", + "IsRoot": "IsRoot", + "Position": "Position", + "Type": "Type" + } + } + ], + "WebDockingIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockingIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockingIndicatorDescriptionMetadata()": "WebDockingIndicatorDescriptionMetadata()", + "WebDockingIndicatorDescriptionMetadata": "WebDockingIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerDescription()": "WebDockManagerDescription()", + "WebDockManagerDescription": "WebDockManagerDescription()", + "ActivePane": "ActivePane", + "ActivePaneChangedRef": "ActivePaneChangedRef", + "AllowFloatingPanesResize": "AllowFloatingPanesResize", + "AllowInnerDock": "AllowInnerDock", + "AllowMaximize": "AllowMaximize", + "AllowRootDock": "AllowRootDock", + "AllowSplitterDock": "AllowSplitterDock", + "AutoScrollConfig": "AutoScrollConfig", + "CloseBehavior": "CloseBehavior", + "ContainedInBoundaries": "ContainedInBoundaries", + "ContextMenuPosition": "ContextMenuPosition", + "DisableKeyboardNavigation": "DisableKeyboardNavigation", + "DraggedPane": "DraggedPane", + "DropPosition": "DropPosition", + "EnableDragCursor": "EnableDragCursor", + "FloatingPaneResizeEndRef": "FloatingPaneResizeEndRef", + "FloatingPaneResizeMoveRef": "FloatingPaneResizeMoveRef", + "FloatingPaneResizeStartRef": "FloatingPaneResizeStartRef", + "IsValidDrop": "IsValidDrop", + "Layout": "Layout", + "LayoutChangeRef": "LayoutChangeRef", + "MaximizedPane": "MaximizedPane", + "NavigationPaneMeta": "NavigationPaneMeta", + "PaneCloseRef": "PaneCloseRef", + "PaneDragEndRef": "PaneDragEndRef", + "PaneDragOverRef": "PaneDragOverRef", + "PaneDragStartRef": "PaneDragStartRef", + "PaneFlyoutToggleRef": "PaneFlyoutToggleRef", + "PaneHeaderConnectedRef": "PaneHeaderConnectedRef", + "PaneHeaderDisconnectedRef": "PaneHeaderDisconnectedRef", + "PanePinnedToggleRef": "PanePinnedToggleRef", + "PaneScrollRef": "PaneScrollRef", + "ProximityDock": "ProximityDock", + "ResourceStrings": "ResourceStrings", + "ShowHeaderIconOnHover": "ShowHeaderIconOnHover", + "ShowPaneHeaders": "ShowPaneHeaders", + "TabHeaderConnectedRef": "TabHeaderConnectedRef", + "TabHeaderDisconnectedRef": "TabHeaderDisconnectedRef", + "Type": "Type", + "UnpinBehavior": "UnpinBehavior", + "UseFixedSizeOnDock": "UseFixedSizeOnDock" + } + } + ], + "WebDockManagerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerDescriptionMetadata()": "WebDockManagerDescriptionMetadata()", + "WebDockManagerDescriptionMetadata": "WebDockManagerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerDescriptionModule()": "WebDockManagerDescriptionModule()", + "WebDockManagerDescriptionModule": "WebDockManagerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerLayoutDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerLayoutDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerLayoutDescription()": "WebDockManagerLayoutDescription()", + "WebDockManagerLayoutDescription": "WebDockManagerLayoutDescription()", + "FloatingPanes": "FloatingPanes", + "RootPane": "RootPane", + "Type": "Type" + } + } + ], + "WebDockManagerLayoutDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerLayoutDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerLayoutDescriptionMetadata()": "WebDockManagerLayoutDescriptionMetadata()", + "WebDockManagerLayoutDescriptionMetadata": "WebDockManagerLayoutDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerLayoutDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerLayoutDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerLayoutDescriptionModule()": "WebDockManagerLayoutDescriptionModule()", + "WebDockManagerLayoutDescriptionModule": "WebDockManagerLayoutDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerPaneDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerPaneDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPaneDescription()": "WebDockManagerPaneDescription()", + "WebDockManagerPaneDescription": "WebDockManagerPaneDescription()", + "Type": "Type" + } + } + ], + "WebDockManagerPaneDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerPaneDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPaneDescriptionMetadata()": "WebDockManagerPaneDescriptionMetadata()", + "WebDockManagerPaneDescriptionMetadata": "WebDockManagerPaneDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerPointDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerPointDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPointDescription()": "WebDockManagerPointDescription()", + "WebDockManagerPointDescription": "WebDockManagerPointDescription()", + "Type": "Type", + "X": "X", + "Y": "Y" + } + } + ], + "WebDockManagerPointDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerPointDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPointDescriptionMetadata()": "WebDockManagerPointDescriptionMetadata()", + "WebDockManagerPointDescriptionMetadata": "WebDockManagerPointDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerPointDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerPointDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerPointDescriptionModule()": "WebDockManagerPointDescriptionModule()", + "WebDockManagerPointDescriptionModule": "WebDockManagerPointDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockManagerResourceStringsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerResourceStringsDescription()": "WebDockManagerResourceStringsDescription()", + "WebDockManagerResourceStringsDescription": "WebDockManagerResourceStringsDescription()", + "Close": "Close", + "Documents": "Documents", + "Maximize": "Maximize", + "Minimize": "Minimize", + "MoreOptions": "MoreOptions", + "MoreTabs": "MoreTabs", + "Panes": "Panes", + "Pin": "Pin", + "Type": "Type", + "Unpin": "Unpin" + } + } + ], + "WebDockManagerResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockManagerResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockManagerResourceStringsDescriptionMetadata()": "WebDockManagerResourceStringsDescriptionMetadata()", + "WebDockManagerResourceStringsDescriptionMetadata": "WebDockManagerResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDockPaneActionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockPaneActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebDockPaneActionDescription()": "WebDockPaneActionDescription()", + "WebDockPaneActionDescription": "WebDockPaneActionDescription()", + "ActionType": "ActionType", + "DockingIndicator": "DockingIndicator", + "TargetPane": "TargetPane", + "Type": "Type" + } + } + ], + "WebDockPaneActionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDockPaneActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDockPaneActionDescriptionMetadata()": "WebDockPaneActionDescriptionMetadata()", + "WebDockPaneActionDescriptionMetadata": "WebDockPaneActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDocumentHostDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDocumentHostDescription", + "k": "class", + "s": "classes", + "m": { + "WebDocumentHostDescription()": "WebDocumentHostDescription()", + "WebDocumentHostDescription": "WebDocumentHostDescription()", + "Id": "Id", + "PaneType": "PaneType", + "RootPane": "RootPane", + "Size": "Size", + "Type": "Type" + } + } + ], + "WebDocumentHostDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDocumentHostDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDocumentHostDescriptionMetadata()": "WebDocumentHostDescriptionMetadata()", + "WebDocumentHostDescriptionMetadata": "WebDocumentHostDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDocumentHostDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDocumentHostDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDocumentHostDescriptionModule()": "WebDocumentHostDescriptionModule()", + "WebDocumentHostDescriptionModule": "WebDocumentHostDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDragServiceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDragServiceDescription", + "k": "class", + "s": "classes", + "m": { + "WebDragServiceDescription()": "WebDragServiceDescription()", + "WebDragServiceDescription": "WebDragServiceDescription()", + "Type": "Type" + } + } + ], + "WebDragServiceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDragServiceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDragServiceDescriptionMetadata()": "WebDragServiceDescriptionMetadata()", + "WebDragServiceDescriptionMetadata": "WebDragServiceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDragServiceDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDragServiceDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDragServiceDescriptionModule()": "WebDragServiceDescriptionModule()", + "WebDragServiceDescriptionModule": "WebDragServiceDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownDescription()": "WebDropdownDescription()", + "WebDropdownDescription": "WebDropdownDescription()", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "Distance": "Distance", + "Flip": "Flip", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Placement": "Placement", + "SameWidth": "SameWidth", + "ScrollStrategy": "ScrollStrategy", + "Type": "Type" + } + } + ], + "WebDropdownDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownDescriptionMetadata()": "WebDropdownDescriptionMetadata()", + "WebDropdownDescriptionMetadata": "WebDropdownDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDropdownDescriptionModule()": "WebDropdownDescriptionModule()", + "WebDropdownDescriptionModule": "WebDropdownDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownGroupDescription()": "WebDropdownGroupDescription()", + "WebDropdownGroupDescription": "WebDropdownGroupDescription()", + "Type": "Type" + } + } + ], + "WebDropdownGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownGroupDescriptionMetadata()": "WebDropdownGroupDescriptionMetadata()", + "WebDropdownGroupDescriptionMetadata": "WebDropdownGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDropdownGroupDescriptionModule()": "WebDropdownGroupDescriptionModule()", + "WebDropdownGroupDescriptionModule": "WebDropdownGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownHeaderDescription()": "WebDropdownHeaderDescription()", + "WebDropdownHeaderDescription": "WebDropdownHeaderDescription()", + "Type": "Type" + } + } + ], + "WebDropdownHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownHeaderDescriptionMetadata()": "WebDropdownHeaderDescriptionMetadata()", + "WebDropdownHeaderDescriptionMetadata": "WebDropdownHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDropdownHeaderDescriptionModule()": "WebDropdownHeaderDescriptionModule()", + "WebDropdownHeaderDescriptionModule": "WebDropdownHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownItemComponentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownItemComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemComponentEventArgsDescription()": "WebDropdownItemComponentEventArgsDescription()", + "WebDropdownItemComponentEventArgsDescription": "WebDropdownItemComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebDropdownItemComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownItemComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemComponentEventArgsDescriptionMetadata()": "WebDropdownItemComponentEventArgsDescriptionMetadata()", + "WebDropdownItemComponentEventArgsDescriptionMetadata": "WebDropdownItemComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownItemDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemDescription()": "WebDropdownItemDescription()", + "WebDropdownItemDescription": "WebDropdownItemDescription()", + "Type": "Type" + } + } + ], + "WebDropdownItemDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemDescriptionMetadata()": "WebDropdownItemDescriptionMetadata()", + "WebDropdownItemDescriptionMetadata": "WebDropdownItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebDropdownItemDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebDropdownItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebDropdownItemDescriptionModule()": "WebDropdownItemDescriptionModule()", + "WebDropdownItemDescriptionModule": "WebDropdownItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebEntityTypeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebEntityTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebEntityTypeDescription()": "WebEntityTypeDescription()", + "WebEntityTypeDescription": "WebEntityTypeDescription()", + "ChildEntities": "ChildEntities", + "Fields": "Fields", + "Type": "Type" + } + } + ], + "WebEntityTypeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebEntityTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebEntityTypeDescriptionMetadata()": "WebEntityTypeDescriptionMetadata()", + "WebEntityTypeDescriptionMetadata": "WebEntityTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpansionPanelComponentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpansionPanelComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelComponentEventArgsDescription()": "WebExpansionPanelComponentEventArgsDescription()", + "WebExpansionPanelComponentEventArgsDescription": "WebExpansionPanelComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebExpansionPanelComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpansionPanelComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelComponentEventArgsDescriptionMetadata()": "WebExpansionPanelComponentEventArgsDescriptionMetadata()", + "WebExpansionPanelComponentEventArgsDescriptionMetadata": "WebExpansionPanelComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpansionPanelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpansionPanelDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelDescription()": "WebExpansionPanelDescription()", + "WebExpansionPanelDescription": "WebExpansionPanelDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "Disabled": "Disabled", + "IndicatorPosition": "IndicatorPosition", + "Open": "Open", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Type": "Type" + } + } + ], + "WebExpansionPanelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpansionPanelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelDescriptionMetadata()": "WebExpansionPanelDescriptionMetadata()", + "WebExpansionPanelDescriptionMetadata": "WebExpansionPanelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpansionPanelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpansionPanelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebExpansionPanelDescriptionModule()": "WebExpansionPanelDescriptionModule()", + "WebExpansionPanelDescriptionModule": "WebExpansionPanelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExporterEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExporterEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebExporterEventArgsDescription()": "WebExporterEventArgsDescription()", + "WebExporterEventArgsDescription": "WebExporterEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebExporterEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExporterEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExporterEventArgsDescriptionMetadata()": "WebExporterEventArgsDescriptionMetadata()", + "WebExporterEventArgsDescriptionMetadata": "WebExporterEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExporterEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExporterEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebExporterEventArgsDetailDescription()": "WebExporterEventArgsDetailDescription()", + "WebExporterEventArgsDetailDescription": "WebExporterEventArgsDetailDescription()", + "Cancel": "Cancel", + "Exporter": "Exporter", + "Grid": "Grid", + "Options": "Options", + "Type": "Type" + } + } + ], + "WebExporterEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExporterEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExporterEventArgsDetailDescriptionMetadata()": "WebExporterEventArgsDetailDescriptionMetadata()", + "WebExporterEventArgsDetailDescriptionMetadata": "WebExporterEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExporterOptionsBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExporterOptionsBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebExporterOptionsBaseDescription()": "WebExporterOptionsBaseDescription()", + "WebExporterOptionsBaseDescription": "WebExporterOptionsBaseDescription()", + "AlwaysExportHeaders": "AlwaysExportHeaders", + "ExportSummaries": "ExportSummaries", + "FileName": "FileName", + "FreezeHeaders": "FreezeHeaders", + "IgnoreColumnsOrder": "IgnoreColumnsOrder", + "IgnoreColumnsVisibility": "IgnoreColumnsVisibility", + "IgnoreFiltering": "IgnoreFiltering", + "IgnoreGrouping": "IgnoreGrouping", + "IgnoreMultiColumnHeaders": "IgnoreMultiColumnHeaders", + "IgnoreSorting": "IgnoreSorting", + "Type": "Type" + } + } + ], + "WebExporterOptionsBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExporterOptionsBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExporterOptionsBaseDescriptionMetadata()": "WebExporterOptionsBaseDescriptionMetadata()", + "WebExporterOptionsBaseDescriptionMetadata": "WebExporterOptionsBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpressionTreeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpressionTreeDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeDescription()": "WebExpressionTreeDescription()", + "WebExpressionTreeDescription": "WebExpressionTreeDescription()", + "Entity": "Entity", + "FieldName": "FieldName", + "FilteringOperands": "FilteringOperands", + "Operator": "Operator", + "ReturnFields": "ReturnFields", + "Type": "Type" + } + } + ], + "WebExpressionTreeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpressionTreeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeDescriptionMetadata()": "WebExpressionTreeDescriptionMetadata()", + "WebExpressionTreeDescriptionMetadata": "WebExpressionTreeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpressionTreeDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpressionTreeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeDetailDescription()": "WebExpressionTreeDetailDescription()", + "WebExpressionTreeDetailDescription": "WebExpressionTreeDetailDescription()", + "Entity": "Entity", + "FieldName": "FieldName", + "FilteringOperands": "FilteringOperands", + "Operator": "Operator", + "ReturnFields": "ReturnFields", + "Type": "Type" + } + } + ], + "WebExpressionTreeDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpressionTreeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeDetailDescriptionMetadata()": "WebExpressionTreeDetailDescriptionMetadata()", + "WebExpressionTreeDetailDescriptionMetadata": "WebExpressionTreeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpressionTreeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpressionTreeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeEventArgsDescription()": "WebExpressionTreeEventArgsDescription()", + "WebExpressionTreeEventArgsDescription": "WebExpressionTreeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebExpressionTreeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpressionTreeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeEventArgsDescriptionMetadata()": "WebExpressionTreeEventArgsDescriptionMetadata()", + "WebExpressionTreeEventArgsDescriptionMetadata": "WebExpressionTreeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebExpressionTreeOrFilteringExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpressionTreeOrFilteringExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeOrFilteringExpressionDescription()": "WebExpressionTreeOrFilteringExpressionDescription()", + "WebExpressionTreeOrFilteringExpressionDescription": "WebExpressionTreeOrFilteringExpressionDescription()", + "Type": "Type" + } + } + ], + "WebExpressionTreeOrFilteringExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebExpressionTreeOrFilteringExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebExpressionTreeOrFilteringExpressionDescriptionMetadata()": "WebExpressionTreeOrFilteringExpressionDescriptionMetadata()", + "WebExpressionTreeOrFilteringExpressionDescriptionMetadata": "WebExpressionTreeOrFilteringExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFieldEditorOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFieldEditorOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFieldEditorOptionsDescription()": "WebFieldEditorOptionsDescription()", + "WebFieldEditorOptionsDescription": "WebFieldEditorOptionsDescription()", + "DateTimeFormat": "DateTimeFormat", + "Type": "Type" + } + } + ], + "WebFieldEditorOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFieldEditorOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFieldEditorOptionsDescriptionMetadata()": "WebFieldEditorOptionsDescriptionMetadata()", + "WebFieldEditorOptionsDescriptionMetadata": "WebFieldEditorOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFieldPipeArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFieldPipeArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFieldPipeArgsDescription()": "WebFieldPipeArgsDescription()", + "WebFieldPipeArgsDescription": "WebFieldPipeArgsDescription()", + "CurrencyCode": "CurrencyCode", + "DigitsInfo": "DigitsInfo", + "Display": "Display", + "Format": "Format", + "Timezone": "Timezone", + "Type": "Type", + "WeekStart": "WeekStart" + } + } + ], + "WebFieldPipeArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFieldPipeArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFieldPipeArgsDescriptionMetadata()": "WebFieldPipeArgsDescriptionMetadata()", + "WebFieldPipeArgsDescriptionMetadata": "WebFieldPipeArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFieldTypeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFieldTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebFieldTypeDescription()": "WebFieldTypeDescription()", + "WebFieldTypeDescription": "WebFieldTypeDescription()", + "DataType": "DataType", + "DefaultDateTimeFormat": "DefaultDateTimeFormat", + "DefaultTimeFormat": "DefaultTimeFormat", + "EditorOptions": "EditorOptions", + "Field": "Field", + "Filters": "Filters", + "Header": "Header", + "Label": "Label", + "PipeArgs": "PipeArgs", + "Type": "Type" + } + } + ], + "WebFieldTypeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFieldTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFieldTypeDescriptionMetadata()": "WebFieldTypeDescriptionMetadata()", + "WebFieldTypeDescriptionMetadata": "WebFieldTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringEventArgsDescription()": "WebFilteringEventArgsDescription()", + "WebFilteringEventArgsDescription": "WebFilteringEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebFilteringEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringEventArgsDescriptionMetadata()": "WebFilteringEventArgsDescriptionMetadata()", + "WebFilteringEventArgsDescriptionMetadata": "WebFilteringEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringEventArgsDetailDescription()": "WebFilteringEventArgsDetailDescription()", + "WebFilteringEventArgsDetailDescription": "WebFilteringEventArgsDetailDescription()", + "FilteringExpressions": "FilteringExpressions", + "Owner": "Owner", + "Type": "Type" + } + } + ], + "WebFilteringEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringEventArgsDetailDescriptionMetadata()": "WebFilteringEventArgsDetailDescriptionMetadata()", + "WebFilteringEventArgsDetailDescriptionMetadata": "WebFilteringEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionDescription()": "WebFilteringExpressionDescription()", + "WebFilteringExpressionDescription": "WebFilteringExpressionDescription()", + "Condition": "Condition", + "ConditionName": "ConditionName", + "FieldName": "FieldName", + "IgnoreCase": "IgnoreCase", + "SearchTree": "SearchTree", + "SearchVal": "SearchVal", + "Type": "Type" + } + } + ], + "WebFilteringExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionDescriptionMetadata()": "WebFilteringExpressionDescriptionMetadata()", + "WebFilteringExpressionDescriptionMetadata": "WebFilteringExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeDescription()": "WebFilteringExpressionsTreeDescription()", + "WebFilteringExpressionsTreeDescription": "WebFilteringExpressionsTreeDescription()", + "Owner": "Owner", + "TreeType": "TreeType", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeDescriptionMetadata()": "WebFilteringExpressionsTreeDescriptionMetadata()", + "WebFilteringExpressionsTreeDescriptionMetadata": "WebFilteringExpressionsTreeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeDetailDescription()": "WebFilteringExpressionsTreeDetailDescription()", + "WebFilteringExpressionsTreeDetailDescription": "WebFilteringExpressionsTreeDetailDescription()", + "Entity": "Entity", + "FieldName": "FieldName", + "FilteringOperands": "FilteringOperands", + "Operator": "Operator", + "Owner": "Owner", + "ReturnFields": "ReturnFields", + "TreeType": "TreeType", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeDetailDescriptionMetadata()": "WebFilteringExpressionsTreeDetailDescriptionMetadata()", + "WebFilteringExpressionsTreeDetailDescriptionMetadata": "WebFilteringExpressionsTreeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeEventArgsDescription()": "WebFilteringExpressionsTreeEventArgsDescription()", + "WebFilteringExpressionsTreeEventArgsDescription": "WebFilteringExpressionsTreeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeEventArgsDescriptionMetadata()": "WebFilteringExpressionsTreeEventArgsDescriptionMetadata()", + "WebFilteringExpressionsTreeEventArgsDescriptionMetadata": "WebFilteringExpressionsTreeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeOrFilteringExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeOrFilteringExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeOrFilteringExpressionDescription()": "WebFilteringExpressionsTreeOrFilteringExpressionDescription()", + "WebFilteringExpressionsTreeOrFilteringExpressionDescription": "WebFilteringExpressionsTreeOrFilteringExpressionDescription()", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata()": "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata()", + "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata": "WebFilteringExpressionsTreeOrFilteringExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringExpressionsTreeOrFilteringOperationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeOrFilteringOperationDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeOrFilteringOperationDescription()": "WebFilteringExpressionsTreeOrFilteringOperationDescription()", + "WebFilteringExpressionsTreeOrFilteringOperationDescription": "WebFilteringExpressionsTreeOrFilteringOperationDescription()", + "Type": "Type" + } + } + ], + "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata()": "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata()", + "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata": "WebFilteringExpressionsTreeOrFilteringOperationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOperandDescription()": "WebFilteringOperandDescription()", + "WebFilteringOperandDescription": "WebFilteringOperandDescription()", + "Operations": "Operations", + "Type": "Type" + } + } + ], + "WebFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOperandDescriptionMetadata()": "WebFilteringOperandDescriptionMetadata()", + "WebFilteringOperandDescriptionMetadata": "WebFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringOperationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringOperationDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOperationDescription()": "WebFilteringOperationDescription()", + "WebFilteringOperationDescription": "WebFilteringOperationDescription()", + "Hidden": "Hidden", + "IconName": "IconName", + "IsNestedQuery": "IsNestedQuery", + "IsUnary": "IsUnary", + "LogicRef": "LogicRef", + "Type": "Type" + } + } + ], + "WebFilteringOperationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringOperationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOperationDescriptionMetadata()": "WebFilteringOperationDescriptionMetadata()", + "WebFilteringOperationDescriptionMetadata": "WebFilteringOperationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOptionsDescription()": "WebFilteringOptionsDescription()", + "WebFilteringOptionsDescription": "WebFilteringOptionsDescription()", + "CaseSensitive": "CaseSensitive", + "FilterKey": "FilterKey", + "MatchDiacritics": "MatchDiacritics", + "Type": "Type" + } + } + ], + "WebFilteringOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringOptionsDescriptionMetadata()": "WebFilteringOptionsDescriptionMetadata()", + "WebFilteringOptionsDescriptionMetadata": "WebFilteringOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFilteringStrategyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebFilteringStrategyDescription()": "WebFilteringStrategyDescription()", + "WebFilteringStrategyDescription": "WebFilteringStrategyDescription()", + "Type": "Type" + } + } + ], + "WebFilteringStrategyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFilteringStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFilteringStrategyDescriptionMetadata()": "WebFilteringStrategyDescriptionMetadata()", + "WebFilteringStrategyDescriptionMetadata": "WebFilteringStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatingPaneResizeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatingPaneResizeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeEventArgsDescription()": "WebFloatingPaneResizeEventArgsDescription()", + "WebFloatingPaneResizeEventArgsDescription": "WebFloatingPaneResizeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebFloatingPaneResizeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatingPaneResizeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeEventArgsDescriptionMetadata()": "WebFloatingPaneResizeEventArgsDescriptionMetadata()", + "WebFloatingPaneResizeEventArgsDescriptionMetadata": "WebFloatingPaneResizeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatingPaneResizeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatingPaneResizeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeEventArgsDetailDescription()": "WebFloatingPaneResizeEventArgsDetailDescription()", + "WebFloatingPaneResizeEventArgsDetailDescription": "WebFloatingPaneResizeEventArgsDetailDescription()", + "ResizerLocation": "ResizerLocation", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatingPaneResizeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata()": "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata()", + "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata": "WebFloatingPaneResizeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatingPaneResizeMoveEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatingPaneResizeMoveEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeMoveEventArgsDescription()": "WebFloatingPaneResizeMoveEventArgsDescription()", + "WebFloatingPaneResizeMoveEventArgsDescription": "WebFloatingPaneResizeMoveEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatingPaneResizeMoveEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata()": "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata()", + "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata": "WebFloatingPaneResizeMoveEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatingPaneResizeMoveEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatingPaneResizeMoveEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeMoveEventArgsDetailDescription()": "WebFloatingPaneResizeMoveEventArgsDetailDescription()", + "WebFloatingPaneResizeMoveEventArgsDetailDescription": "WebFloatingPaneResizeMoveEventArgsDetailDescription()", + "NewHeight": "NewHeight", + "NewLocation": "NewLocation", + "NewWidth": "NewWidth", + "OldHeight": "OldHeight", + "OldLocation": "OldLocation", + "OldWidth": "OldWidth", + "Type": "Type" + } + } + ], + "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata()": "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata()", + "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata": "WebFloatingPaneResizeMoveEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebFloatPaneActionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatPaneActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebFloatPaneActionDescription()": "WebFloatPaneActionDescription()", + "WebFloatPaneActionDescription": "WebFloatPaneActionDescription()", + "ActionType": "ActionType", + "Height": "Height", + "Location": "Location", + "Type": "Type", + "Width": "Width" + } + } + ], + "WebFloatPaneActionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebFloatPaneActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebFloatPaneActionDescriptionMetadata()": "WebFloatPaneActionDescriptionMetadata()", + "WebFloatPaneActionDescriptionMetadata": "WebFloatPaneActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfDataChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfDataChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangeEventArgsDescription()": "WebForOfDataChangeEventArgsDescription()", + "WebForOfDataChangeEventArgsDescription": "WebForOfDataChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebForOfDataChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfDataChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangeEventArgsDescriptionMetadata()": "WebForOfDataChangeEventArgsDescriptionMetadata()", + "WebForOfDataChangeEventArgsDescriptionMetadata": "WebForOfDataChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfDataChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfDataChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangeEventArgsDetailDescription()": "WebForOfDataChangeEventArgsDetailDescription()", + "WebForOfDataChangeEventArgsDetailDescription": "WebForOfDataChangeEventArgsDetailDescription()", + "Type": "Type" + } + } + ], + "WebForOfDataChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfDataChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangeEventArgsDetailDescriptionMetadata()": "WebForOfDataChangeEventArgsDetailDescriptionMetadata()", + "WebForOfDataChangeEventArgsDetailDescriptionMetadata": "WebForOfDataChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfDataChangingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfDataChangingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangingEventArgsDescription()": "WebForOfDataChangingEventArgsDescription()", + "WebForOfDataChangingEventArgsDescription": "WebForOfDataChangingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebForOfDataChangingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfDataChangingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangingEventArgsDescriptionMetadata()": "WebForOfDataChangingEventArgsDescriptionMetadata()", + "WebForOfDataChangingEventArgsDescriptionMetadata": "WebForOfDataChangingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfDataChangingEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfDataChangingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangingEventArgsDetailDescription()": "WebForOfDataChangingEventArgsDetailDescription()", + "WebForOfDataChangingEventArgsDetailDescription": "WebForOfDataChangingEventArgsDetailDescription()", + "ContainerSize": "ContainerSize", + "State": "State", + "Type": "Type" + } + } + ], + "WebForOfDataChangingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfDataChangingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfDataChangingEventArgsDetailDescriptionMetadata()": "WebForOfDataChangingEventArgsDetailDescriptionMetadata()", + "WebForOfDataChangingEventArgsDetailDescriptionMetadata": "WebForOfDataChangingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateDescription()": "WebForOfStateDescription()", + "WebForOfStateDescription": "WebForOfStateDescription()", + "ChunkSize": "ChunkSize", + "StartIndex": "StartIndex", + "Type": "Type" + } + } + ], + "WebForOfStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateDescriptionMetadata()": "WebForOfStateDescriptionMetadata()", + "WebForOfStateDescriptionMetadata": "WebForOfStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfStateDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfStateDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateDetailDescription()": "WebForOfStateDetailDescription()", + "WebForOfStateDetailDescription": "WebForOfStateDetailDescription()", + "ChunkSize": "ChunkSize", + "StartIndex": "StartIndex", + "Type": "Type" + } + } + ], + "WebForOfStateDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfStateDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateDetailDescriptionMetadata()": "WebForOfStateDetailDescriptionMetadata()", + "WebForOfStateDetailDescriptionMetadata": "WebForOfStateDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebForOfStateEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfStateEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateEventArgsDescription()": "WebForOfStateEventArgsDescription()", + "WebForOfStateEventArgsDescription": "WebForOfStateEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebForOfStateEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebForOfStateEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebForOfStateEventArgsDescriptionMetadata()": "WebForOfStateEventArgsDescriptionMetadata()", + "WebForOfStateEventArgsDescriptionMetadata": "WebForOfStateEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridActionsBaseDirectiveDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridActionsBaseDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridActionsBaseDirectiveDescription()": "WebGridActionsBaseDirectiveDescription()", + "WebGridActionsBaseDirectiveDescription": "WebGridActionsBaseDirectiveDescription()", + "AsMenuItems": "AsMenuItems", + "Type": "Type" + } + } + ], + "WebGridActionsBaseDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridActionsBaseDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridActionsBaseDirectiveDescriptionMetadata()": "WebGridActionsBaseDirectiveDescriptionMetadata()", + "WebGridActionsBaseDirectiveDescriptionMetadata": "WebGridActionsBaseDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridActionsBaseDirectiveDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridActionsBaseDirectiveDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridActionsBaseDirectiveDescriptionModule()": "WebGridActionsBaseDirectiveDescriptionModule()", + "WebGridActionsBaseDirectiveDescriptionModule": "WebGridActionsBaseDirectiveDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridBaseDescription()": "WebGridBaseDescription()", + "WebGridBaseDescription": "WebGridBaseDescription()", + "DataPreLoadRef": "DataPreLoadRef", + "DataRef": "DataRef", + "DetailTemplateRef": "DetailTemplateRef", + "DropAreaMessage": "DropAreaMessage", + "DropAreaTemplateRef": "DropAreaTemplateRef", + "GroupByRowSelectorTemplateRef": "GroupByRowSelectorTemplateRef", + "GroupRowTemplateRef": "GroupRowTemplateRef", + "GroupStrategy": "GroupStrategy", + "GroupingDoneRef": "GroupingDoneRef", + "GroupingExpansionState": "GroupingExpansionState", + "GroupingExpansionStateChangeRef": "GroupingExpansionStateChangeRef", + "GroupingExpressions": "GroupingExpressions", + "GroupingExpressionsChangeRef": "GroupingExpressionsChangeRef", + "GroupsExpanded": "GroupsExpanded", + "HideGroupedColumns": "HideGroupedColumns", + "Id": "Id", + "ShowGroupArea": "ShowGroupArea", + "TotalItemCount": "TotalItemCount", + "Type": "Type" + } + } + ], + "WebGridBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridBaseDescriptionMetadata()": "WebGridBaseDescriptionMetadata()", + "WebGridBaseDescriptionMetadata": "WebGridBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridBaseDirectiveDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridBaseDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridBaseDirectiveDescription()": "WebGridBaseDirectiveDescription()", + "WebGridBaseDirectiveDescription": "WebGridBaseDirectiveDescription()", + "ActiveNodeChangeRef": "ActiveNodeChangeRef", + "ActualColumnList": "ActualColumnList", + "AddRowEmptyTemplateRef": "AddRowEmptyTemplateRef", + "AdvancedFilteringExpressionsTree": "AdvancedFilteringExpressionsTree", + "AdvancedFilteringExpressionsTreeChangeRef": "AdvancedFilteringExpressionsTreeChangeRef", + "AllowAdvancedFiltering": "AllowAdvancedFiltering", + "AllowFiltering": "AllowFiltering", + "AutoGenerate": "AutoGenerate", + "AutoGenerateExclude": "AutoGenerateExclude", + "BatchEditing": "BatchEditing", + "CellClickRef": "CellClickRef", + "CellEditDoneRef": "CellEditDoneRef", + "CellEditEnterRef": "CellEditEnterRef", + "CellEditExitRef": "CellEditExitRef", + "CellEditRef": "CellEditRef", + "CellMergeMode": "CellMergeMode", + "CellSelection": "CellSelection", + "ClipboardOptions": "ClipboardOptions", + "ColumnInitRef": "ColumnInitRef", + "ColumnList": "ColumnList", + "ColumnMovingEndRef": "ColumnMovingEndRef", + "ColumnMovingRef": "ColumnMovingRef", + "ColumnMovingStartRef": "ColumnMovingStartRef", + "ColumnPinRef": "ColumnPinRef", + "ColumnPinnedRef": "ColumnPinnedRef", + "ColumnResizedRef": "ColumnResizedRef", + "ColumnSelection": "ColumnSelection", + "ColumnSelectionChangingRef": "ColumnSelectionChangingRef", + "ColumnVisibilityChangedRef": "ColumnVisibilityChangedRef", + "ColumnVisibilityChangingRef": "ColumnVisibilityChangingRef", + "ColumnWidth": "ColumnWidth", + "ContextMenuRef": "ContextMenuRef", + "DataChangedRef": "DataChangedRef", + "DataChangingRef": "DataChangingRef", + "DataCloneStrategy": "DataCloneStrategy", + "DoubleClickRef": "DoubleClickRef", + "DragGhostCustomTemplateRef": "DragGhostCustomTemplateRef", + "DragIndicatorIconTemplateRef": "DragIndicatorIconTemplateRef", + "EmptyFilteredGridMessage": "EmptyFilteredGridMessage", + "EmptyGridMessage": "EmptyGridMessage", + "EmptyGridTemplateRef": "EmptyGridTemplateRef", + "ExcelStyleHeaderIconTemplateRef": "ExcelStyleHeaderIconTemplateRef", + "ExpansionStates": "ExpansionStates", + "ExpansionStatesChangeRef": "ExpansionStatesChangeRef", + "FilterMode": "FilterMode", + "FilterStrategy": "FilterStrategy", + "FilteringDoneRef": "FilteringDoneRef", + "FilteringExpressionsTree": "FilteringExpressionsTree", + "FilteringExpressionsTreeChangeRef": "FilteringExpressionsTreeChangeRef", + "FilteringLogic": "FilteringLogic", + "FilteringRef": "FilteringRef", + "FormGroupCreatedRef": "FormGroupCreatedRef", + "GridCopyRef": "GridCopyRef", + "GridKeydownRef": "GridKeydownRef", + "GridScrollRef": "GridScrollRef", + "HeadSelectorTemplateRef": "HeadSelectorTemplateRef", + "HeaderCollapsedIndicatorTemplateRef": "HeaderCollapsedIndicatorTemplateRef", + "HeaderExpandedIndicatorTemplateRef": "HeaderExpandedIndicatorTemplateRef", + "Height": "Height", + "HideRowSelectors": "HideRowSelectors", + "IsLoading": "IsLoading", + "LoadingGridTemplateRef": "LoadingGridTemplateRef", + "Locale": "Locale", + "Moving": "Moving", + "Outlet": "Outlet", + "PaginationComponents": "PaginationComponents", + "PagingMode": "PagingMode", + "Pinning": "Pinning", + "PrimaryKey": "PrimaryKey", + "RangeSelectedRef": "RangeSelectedRef", + "RenderedRef": "RenderedRef", + "ResourceStringsRef": "ResourceStringsRef", + "RowAddRef": "RowAddRef", + "RowAddTextTemplateRef": "RowAddTextTemplateRef", + "RowAddedRef": "RowAddedRef", + "RowClassesRef": "RowClassesRef", + "RowClickRef": "RowClickRef", + "RowCollapsedIndicatorTemplateRef": "RowCollapsedIndicatorTemplateRef", + "RowDeleteRef": "RowDeleteRef", + "RowDeletedRef": "RowDeletedRef", + "RowDragEndRef": "RowDragEndRef", + "RowDragStartRef": "RowDragStartRef", + "RowDraggable": "RowDraggable", + "RowEditActionsTemplateRef": "RowEditActionsTemplateRef", + "RowEditDoneRef": "RowEditDoneRef", + "RowEditEnterRef": "RowEditEnterRef", + "RowEditExitRef": "RowEditExitRef", + "RowEditRef": "RowEditRef", + "RowEditTextTemplateRef": "RowEditTextTemplateRef", + "RowEditable": "RowEditable", + "RowExpandedIndicatorTemplateRef": "RowExpandedIndicatorTemplateRef", + "RowHeight": "RowHeight", + "RowPinnedRef": "RowPinnedRef", + "RowPinningRef": "RowPinningRef", + "RowSelection": "RowSelection", + "RowSelectionChangingRef": "RowSelectionChangingRef", + "RowSelectorTemplateRef": "RowSelectorTemplateRef", + "RowStylesRef": "RowStylesRef", + "RowToggleRef": "RowToggleRef", + "SelectRowOnClick": "SelectRowOnClick", + "SelectedRef": "SelectedRef", + "SelectedRows": "SelectedRows", + "SelectedRowsChangeRef": "SelectedRowsChangeRef", + "ShouldGenerate": "ShouldGenerate", + "ShowSummaryOnCollapse": "ShowSummaryOnCollapse", + "SnackbarDisplayTime": "SnackbarDisplayTime", + "SortAscendingHeaderIconTemplateRef": "SortAscendingHeaderIconTemplateRef", + "SortDescendingHeaderIconTemplateRef": "SortDescendingHeaderIconTemplateRef", + "SortHeaderIconTemplateRef": "SortHeaderIconTemplateRef", + "SortStrategy": "SortStrategy", + "SortingDoneRef": "SortingDoneRef", + "SortingExpressions": "SortingExpressions", + "SortingExpressionsChangeRef": "SortingExpressionsChangeRef", + "SortingOptions": "SortingOptions", + "SortingRef": "SortingRef", + "StateComponents": "StateComponents", + "SummaryCalculationMode": "SummaryCalculationMode", + "SummaryPosition": "SummaryPosition", + "SummaryRowHeight": "SummaryRowHeight", + "Toolbar": "Toolbar", + "ToolbarExportingRef": "ToolbarExportingRef", + "TotalRecords": "TotalRecords", + "Type": "Type", + "ValidationStatusChangeRef": "ValidationStatusChangeRef", + "ValidationTrigger": "ValidationTrigger", + "Width": "Width" + } + } + ], + "WebGridBaseDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridBaseDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridBaseDirectiveDescriptionMetadata()": "WebGridBaseDirectiveDescriptionMetadata()", + "WebGridBaseDirectiveDescriptionMetadata": "WebGridBaseDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCellEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCellEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCellEventArgsDescription()": "WebGridCellEventArgsDescription()", + "WebGridCellEventArgsDescription": "WebGridCellEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridCellEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCellEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCellEventArgsDescriptionMetadata()": "WebGridCellEventArgsDescriptionMetadata()", + "WebGridCellEventArgsDescriptionMetadata": "WebGridCellEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCellEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCellEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCellEventArgsDetailDescription()": "WebGridCellEventArgsDetailDescription()", + "WebGridCellEventArgsDetailDescription": "WebGridCellEventArgsDetailDescription()", + "Cell": "Cell", + "Event": "Event", + "Type": "Type" + } + } + ], + "WebGridCellEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCellEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCellEventArgsDetailDescriptionMetadata()": "WebGridCellEventArgsDetailDescriptionMetadata()", + "WebGridCellEventArgsDetailDescriptionMetadata": "WebGridCellEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCellIdentifierDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCellIdentifierDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCellIdentifierDescription()": "WebGridCellIdentifierDescription()", + "WebGridCellIdentifierDescription": "WebGridCellIdentifierDescription()", + "ColumnID": "ColumnID", + "RowID": "RowID", + "RowIndex": "RowIndex", + "Type": "Type" + } + } + ], + "WebGridCellIdentifierDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCellIdentifierDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCellIdentifierDescriptionMetadata()": "WebGridCellIdentifierDescriptionMetadata()", + "WebGridCellIdentifierDescriptionMetadata": "WebGridCellIdentifierDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridClipboardEventDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridClipboardEventDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventDescription()": "WebGridClipboardEventDescription()", + "WebGridClipboardEventDescription": "WebGridClipboardEventDescription()", + "Cancel": "Cancel", + "DataRef": "DataRef", + "Type": "Type" + } + } + ], + "WebGridClipboardEventDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridClipboardEventDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventDescriptionMetadata()": "WebGridClipboardEventDescriptionMetadata()", + "WebGridClipboardEventDescriptionMetadata": "WebGridClipboardEventDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridClipboardEventDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridClipboardEventDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventDetailDescription()": "WebGridClipboardEventDetailDescription()", + "WebGridClipboardEventDetailDescription": "WebGridClipboardEventDetailDescription()", + "Cancel": "Cancel", + "DataRef": "DataRef", + "Type": "Type" + } + } + ], + "WebGridClipboardEventDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridClipboardEventDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventDetailDescriptionMetadata()": "WebGridClipboardEventDetailDescriptionMetadata()", + "WebGridClipboardEventDetailDescriptionMetadata": "WebGridClipboardEventDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridClipboardEventEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridClipboardEventEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventEventArgsDescription()": "WebGridClipboardEventEventArgsDescription()", + "WebGridClipboardEventEventArgsDescription": "WebGridClipboardEventEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridClipboardEventEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridClipboardEventEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridClipboardEventEventArgsDescriptionMetadata()": "WebGridClipboardEventEventArgsDescriptionMetadata()", + "WebGridClipboardEventEventArgsDescriptionMetadata": "WebGridClipboardEventEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridContextMenuEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridContextMenuEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridContextMenuEventArgsDescription()": "WebGridContextMenuEventArgsDescription()", + "WebGridContextMenuEventArgsDescription": "WebGridContextMenuEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridContextMenuEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridContextMenuEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridContextMenuEventArgsDescriptionMetadata()": "WebGridContextMenuEventArgsDescriptionMetadata()", + "WebGridContextMenuEventArgsDescriptionMetadata": "WebGridContextMenuEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridContextMenuEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridContextMenuEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridContextMenuEventArgsDetailDescription()": "WebGridContextMenuEventArgsDetailDescription()", + "WebGridContextMenuEventArgsDetailDescription": "WebGridContextMenuEventArgsDetailDescription()", + "Cell": "Cell", + "Event": "Event", + "Row": "Row", + "Type": "Type" + } + } + ], + "WebGridContextMenuEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridContextMenuEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridContextMenuEventArgsDetailDescriptionMetadata()": "WebGridContextMenuEventArgsDetailDescriptionMetadata()", + "WebGridContextMenuEventArgsDetailDescriptionMetadata": "WebGridContextMenuEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCreatedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCreatedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCreatedEventArgsDescription()": "WebGridCreatedEventArgsDescription()", + "WebGridCreatedEventArgsDescription": "WebGridCreatedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridCreatedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCreatedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCreatedEventArgsDescriptionMetadata()": "WebGridCreatedEventArgsDescriptionMetadata()", + "WebGridCreatedEventArgsDescriptionMetadata": "WebGridCreatedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridCreatedEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCreatedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridCreatedEventArgsDetailDescription()": "WebGridCreatedEventArgsDetailDescription()", + "WebGridCreatedEventArgsDetailDescription": "WebGridCreatedEventArgsDetailDescription()", + "Grid": "Grid", + "ParentID": "ParentID", + "ParentRowData": "ParentRowData", + "Type": "Type" + } + } + ], + "WebGridCreatedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridCreatedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridCreatedEventArgsDetailDescriptionMetadata()": "WebGridCreatedEventArgsDetailDescriptionMetadata()", + "WebGridCreatedEventArgsDetailDescriptionMetadata": "WebGridCreatedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridDescription()": "WebGridDescription()", + "WebGridDescription": "WebGridDescription()", + "ActionStripComponents": "ActionStripComponents", + "ChildrenResolvedRef": "ChildrenResolvedRef", + "ColumnsAutogeneratedRef": "ColumnsAutogeneratedRef", + "Type": "Type" + } + } + ], + "WebGridDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridDescriptionMetadata()": "WebGridDescriptionMetadata()", + "WebGridDescriptionMetadata": "WebGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridDescriptionModule()": "WebGridDescriptionModule()", + "WebGridDescriptionModule": "WebGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditDoneEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditDoneEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditDoneEventArgsDescription()": "WebGridEditDoneEventArgsDescription()", + "WebGridEditDoneEventArgsDescription": "WebGridEditDoneEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridEditDoneEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditDoneEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditDoneEventArgsDescriptionMetadata()": "WebGridEditDoneEventArgsDescriptionMetadata()", + "WebGridEditDoneEventArgsDescriptionMetadata": "WebGridEditDoneEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditDoneEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditDoneEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditDoneEventArgsDetailDescription()": "WebGridEditDoneEventArgsDetailDescription()", + "WebGridEditDoneEventArgsDetailDescription": "WebGridEditDoneEventArgsDetailDescription()", + "CellID": "CellID", + "Column": "Column", + "IsAddRow": "IsAddRow", + "NewValue": "NewValue", + "OldValue": "OldValue", + "PrimaryKey": "PrimaryKey", + "RowData": "RowData", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type", + "Valid": "Valid" + } + } + ], + "WebGridEditDoneEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditDoneEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditDoneEventArgsDetailDescriptionMetadata()": "WebGridEditDoneEventArgsDetailDescriptionMetadata()", + "WebGridEditDoneEventArgsDetailDescriptionMetadata": "WebGridEditDoneEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditEventArgsDescription()": "WebGridEditEventArgsDescription()", + "WebGridEditEventArgsDescription": "WebGridEditEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridEditEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditEventArgsDescriptionMetadata()": "WebGridEditEventArgsDescriptionMetadata()", + "WebGridEditEventArgsDescriptionMetadata": "WebGridEditEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditEventArgsDetailDescription()": "WebGridEditEventArgsDetailDescription()", + "WebGridEditEventArgsDetailDescription": "WebGridEditEventArgsDetailDescription()", + "CellID": "CellID", + "Column": "Column", + "IsAddRow": "IsAddRow", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Owner": "Owner", + "PrimaryKey": "PrimaryKey", + "RowData": "RowData", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type", + "Valid": "Valid" + } + } + ], + "WebGridEditEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditEventArgsDetailDescriptionMetadata()": "WebGridEditEventArgsDetailDescriptionMetadata()", + "WebGridEditEventArgsDetailDescriptionMetadata": "WebGridEditEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditingActionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditingActionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEditingActionsDescription()": "WebGridEditingActionsDescription()", + "WebGridEditingActionsDescription": "WebGridEditingActionsDescription()", + "AddChild": "AddChild", + "AddRow": "AddRow", + "DeleteRow": "DeleteRow", + "EditRow": "EditRow", + "Type": "Type" + } + } + ], + "WebGridEditingActionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditingActionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEditingActionsDescriptionMetadata()": "WebGridEditingActionsDescriptionMetadata()", + "WebGridEditingActionsDescriptionMetadata": "WebGridEditingActionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEditingActionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEditingActionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridEditingActionsDescriptionModule()": "WebGridEditingActionsDescriptionModule()", + "WebGridEditingActionsDescriptionModule": "WebGridEditingActionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridEmptyTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEmptyTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridEmptyTemplateContextDescription()": "WebGridEmptyTemplateContextDescription()", + "WebGridEmptyTemplateContextDescription": "WebGridEmptyTemplateContextDescription()", + "Type": "Type" + } + } + ], + "WebGridEmptyTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridEmptyTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridEmptyTemplateContextDescriptionMetadata()": "WebGridEmptyTemplateContextDescriptionMetadata()", + "WebGridEmptyTemplateContextDescriptionMetadata": "WebGridEmptyTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridFormGroupCreatedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridFormGroupCreatedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridFormGroupCreatedEventArgsDescription()": "WebGridFormGroupCreatedEventArgsDescription()", + "WebGridFormGroupCreatedEventArgsDescription": "WebGridFormGroupCreatedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridFormGroupCreatedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridFormGroupCreatedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridFormGroupCreatedEventArgsDescriptionMetadata()": "WebGridFormGroupCreatedEventArgsDescriptionMetadata()", + "WebGridFormGroupCreatedEventArgsDescriptionMetadata": "WebGridFormGroupCreatedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridFormGroupCreatedEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridFormGroupCreatedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridFormGroupCreatedEventArgsDetailDescription()": "WebGridFormGroupCreatedEventArgsDetailDescription()", + "WebGridFormGroupCreatedEventArgsDetailDescription": "WebGridFormGroupCreatedEventArgsDetailDescription()", + "Owner": "Owner", + "Type": "Type" + } + } + ], + "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata()": "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata()", + "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata": "WebGridFormGroupCreatedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridGroupingStrategyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridGroupingStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridGroupingStrategyDescription()": "WebGridGroupingStrategyDescription()", + "WebGridGroupingStrategyDescription": "WebGridGroupingStrategyDescription()", + "Type": "Type" + } + } + ], + "WebGridGroupingStrategyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridGroupingStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridGroupingStrategyDescriptionMetadata()": "WebGridGroupingStrategyDescriptionMetadata()", + "WebGridGroupingStrategyDescriptionMetadata": "WebGridGroupingStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridHeaderTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridHeaderTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridHeaderTemplateContextDescription()": "WebGridHeaderTemplateContextDescription()", + "WebGridHeaderTemplateContextDescription": "WebGridHeaderTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridHeaderTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridHeaderTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridHeaderTemplateContextDescriptionMetadata()": "WebGridHeaderTemplateContextDescriptionMetadata()", + "WebGridHeaderTemplateContextDescriptionMetadata": "WebGridHeaderTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridKeydownEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridKeydownEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridKeydownEventArgsDescription()": "WebGridKeydownEventArgsDescription()", + "WebGridKeydownEventArgsDescription": "WebGridKeydownEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridKeydownEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridKeydownEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridKeydownEventArgsDescriptionMetadata()": "WebGridKeydownEventArgsDescriptionMetadata()", + "WebGridKeydownEventArgsDescriptionMetadata": "WebGridKeydownEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridKeydownEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridKeydownEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridKeydownEventArgsDetailDescription()": "WebGridKeydownEventArgsDetailDescription()", + "WebGridKeydownEventArgsDetailDescription": "WebGridKeydownEventArgsDetailDescription()", + "Cancel": "Cancel", + "Event": "Event", + "Target": "Target", + "TargetType": "TargetType", + "Type": "Type" + } + } + ], + "WebGridKeydownEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridKeydownEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridKeydownEventArgsDetailDescriptionMetadata()": "WebGridKeydownEventArgsDetailDescriptionMetadata()", + "WebGridKeydownEventArgsDetailDescriptionMetadata": "WebGridKeydownEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridMasterDetailContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridMasterDetailContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridMasterDetailContextDescription()": "WebGridMasterDetailContextDescription()", + "WebGridMasterDetailContextDescription": "WebGridMasterDetailContextDescription()", + "Implicit": "Implicit", + "Index": "Index", + "Type": "Type" + } + } + ], + "WebGridMasterDetailContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridMasterDetailContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridMasterDetailContextDescriptionMetadata()": "WebGridMasterDetailContextDescriptionMetadata()", + "WebGridMasterDetailContextDescriptionMetadata": "WebGridMasterDetailContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridPaginatorTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridPaginatorTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridPaginatorTemplateContextDescription()": "WebGridPaginatorTemplateContextDescription()", + "WebGridPaginatorTemplateContextDescription": "WebGridPaginatorTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridPaginatorTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridPaginatorTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridPaginatorTemplateContextDescriptionMetadata()": "WebGridPaginatorTemplateContextDescriptionMetadata()", + "WebGridPaginatorTemplateContextDescriptionMetadata": "WebGridPaginatorTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridPinningActionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridPinningActionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridPinningActionsDescription()": "WebGridPinningActionsDescription()", + "WebGridPinningActionsDescription": "WebGridPinningActionsDescription()", + "Type": "Type" + } + } + ], + "WebGridPinningActionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridPinningActionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridPinningActionsDescriptionMetadata()": "WebGridPinningActionsDescriptionMetadata()", + "WebGridPinningActionsDescriptionMetadata": "WebGridPinningActionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridPinningActionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridPinningActionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridPinningActionsDescriptionModule()": "WebGridPinningActionsDescriptionModule()", + "WebGridPinningActionsDescriptionModule": "WebGridPinningActionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridResourceStringsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridResourceStringsDescription()": "WebGridResourceStringsDescription()", + "WebGridResourceStringsDescription": "WebGridResourceStringsDescription()", + "Igx_grid_actions_add_child_label": "Igx_grid_actions_add_child_label", + "Igx_grid_actions_add_label": "Igx_grid_actions_add_label", + "Igx_grid_actions_delete_label": "Igx_grid_actions_delete_label", + "Igx_grid_actions_edit_label": "Igx_grid_actions_edit_label", + "Igx_grid_actions_jumpDown_label": "Igx_grid_actions_jumpDown_label", + "Igx_grid_actions_jumpUp_label": "Igx_grid_actions_jumpUp_label", + "Igx_grid_actions_pin_label": "Igx_grid_actions_pin_label", + "Igx_grid_actions_unpin_label": "Igx_grid_actions_unpin_label", + "Igx_grid_add_row_label": "Igx_grid_add_row_label", + "Igx_grid_advanced_filter_add_condition": "Igx_grid_advanced_filter_add_condition", + "Igx_grid_advanced_filter_add_condition_root": "Igx_grid_advanced_filter_add_condition_root", + "Igx_grid_advanced_filter_add_group": "Igx_grid_advanced_filter_add_group", + "Igx_grid_advanced_filter_add_group_root": "Igx_grid_advanced_filter_add_group_root", + "Igx_grid_advanced_filter_and_group": "Igx_grid_advanced_filter_and_group", + "Igx_grid_advanced_filter_and_label": "Igx_grid_advanced_filter_and_label", + "Igx_grid_advanced_filter_column_placeholder": "Igx_grid_advanced_filter_column_placeholder", + "Igx_grid_advanced_filter_create_and_group": "Igx_grid_advanced_filter_create_and_group", + "Igx_grid_advanced_filter_create_or_group": "Igx_grid_advanced_filter_create_or_group", + "Igx_grid_advanced_filter_delete": "Igx_grid_advanced_filter_delete", + "Igx_grid_advanced_filter_delete_filters": "Igx_grid_advanced_filter_delete_filters", + "Igx_grid_advanced_filter_dialog_checkbox_text": "Igx_grid_advanced_filter_dialog_checkbox_text", + "Igx_grid_advanced_filter_dialog_message": "Igx_grid_advanced_filter_dialog_message", + "Igx_grid_advanced_filter_dialog_title": "Igx_grid_advanced_filter_dialog_title", + "Igx_grid_advanced_filter_drop_ghost_text": "Igx_grid_advanced_filter_drop_ghost_text", + "Igx_grid_advanced_filter_end_group": "Igx_grid_advanced_filter_end_group", + "Igx_grid_advanced_filter_from_label": "Igx_grid_advanced_filter_from_label", + "Igx_grid_advanced_filter_initial_text": "Igx_grid_advanced_filter_initial_text", + "Igx_grid_advanced_filter_or_group": "Igx_grid_advanced_filter_or_group", + "Igx_grid_advanced_filter_or_label": "Igx_grid_advanced_filter_or_label", + "Igx_grid_advanced_filter_query_value_placeholder": "Igx_grid_advanced_filter_query_value_placeholder", + "Igx_grid_advanced_filter_select_entity": "Igx_grid_advanced_filter_select_entity", + "Igx_grid_advanced_filter_select_return_field_single": "Igx_grid_advanced_filter_select_return_field_single", + "Igx_grid_advanced_filter_switch_group": "Igx_grid_advanced_filter_switch_group", + "Igx_grid_advanced_filter_title": "Igx_grid_advanced_filter_title", + "Igx_grid_advanced_filter_ungroup": "Igx_grid_advanced_filter_ungroup", + "Igx_grid_advanced_filter_value_placeholder": "Igx_grid_advanced_filter_value_placeholder", + "Igx_grid_complex_filter": "Igx_grid_complex_filter", + "Igx_grid_email_validation_error": "Igx_grid_email_validation_error", + "Igx_grid_emptyFilteredGrid_message": "Igx_grid_emptyFilteredGrid_message", + "Igx_grid_emptyGrid_message": "Igx_grid_emptyGrid_message", + "Igx_grid_excel_add_to_filter": "Igx_grid_excel_add_to_filter", + "Igx_grid_excel_apply": "Igx_grid_excel_apply", + "Igx_grid_excel_blanks": "Igx_grid_excel_blanks", + "Igx_grid_excel_boolean_filter": "Igx_grid_excel_boolean_filter", + "Igx_grid_excel_cancel": "Igx_grid_excel_cancel", + "Igx_grid_excel_currency_filter": "Igx_grid_excel_currency_filter", + "Igx_grid_excel_custom_dialog_add": "Igx_grid_excel_custom_dialog_add", + "Igx_grid_excel_custom_dialog_clear": "Igx_grid_excel_custom_dialog_clear", + "Igx_grid_excel_custom_dialog_header": "Igx_grid_excel_custom_dialog_header", + "Igx_grid_excel_custom_filter": "Igx_grid_excel_custom_filter", + "Igx_grid_excel_date_filter": "Igx_grid_excel_date_filter", + "Igx_grid_excel_deselect": "Igx_grid_excel_deselect", + "Igx_grid_excel_filter_clear": "Igx_grid_excel_filter_clear", + "Igx_grid_excel_filter_moving_header": "Igx_grid_excel_filter_moving_header", + "Igx_grid_excel_filter_moving_left": "Igx_grid_excel_filter_moving_left", + "Igx_grid_excel_filter_moving_left_short": "Igx_grid_excel_filter_moving_left_short", + "Igx_grid_excel_filter_moving_right": "Igx_grid_excel_filter_moving_right", + "Igx_grid_excel_filter_moving_right_short": "Igx_grid_excel_filter_moving_right_short", + "Igx_grid_excel_filter_sorting_asc": "Igx_grid_excel_filter_sorting_asc", + "Igx_grid_excel_filter_sorting_asc_short": "Igx_grid_excel_filter_sorting_asc_short", + "Igx_grid_excel_filter_sorting_desc": "Igx_grid_excel_filter_sorting_desc", + "Igx_grid_excel_filter_sorting_desc_short": "Igx_grid_excel_filter_sorting_desc_short", + "Igx_grid_excel_filter_sorting_header": "Igx_grid_excel_filter_sorting_header", + "Igx_grid_excel_hide": "Igx_grid_excel_hide", + "Igx_grid_excel_matches_count": "Igx_grid_excel_matches_count", + "Igx_grid_excel_no_matches": "Igx_grid_excel_no_matches", + "Igx_grid_excel_number_filter": "Igx_grid_excel_number_filter", + "Igx_grid_excel_pin": "Igx_grid_excel_pin", + "Igx_grid_excel_search_placeholder": "Igx_grid_excel_search_placeholder", + "Igx_grid_excel_select": "Igx_grid_excel_select", + "Igx_grid_excel_select_all": "Igx_grid_excel_select_all", + "Igx_grid_excel_select_all_search_results": "Igx_grid_excel_select_all_search_results", + "Igx_grid_excel_show": "Igx_grid_excel_show", + "Igx_grid_excel_text_filter": "Igx_grid_excel_text_filter", + "Igx_grid_excel_unpin": "Igx_grid_excel_unpin", + "Igx_grid_filter": "Igx_grid_filter", + "Igx_grid_filter_after": "Igx_grid_filter_after", + "Igx_grid_filter_all": "Igx_grid_filter_all", + "Igx_grid_filter_at": "Igx_grid_filter_at", + "Igx_grid_filter_at_after": "Igx_grid_filter_at_after", + "Igx_grid_filter_at_before": "Igx_grid_filter_at_before", + "Igx_grid_filter_before": "Igx_grid_filter_before", + "Igx_grid_filter_condition_placeholder": "Igx_grid_filter_condition_placeholder", + "Igx_grid_filter_contains": "Igx_grid_filter_contains", + "Igx_grid_filter_doesNotContain": "Igx_grid_filter_doesNotContain", + "Igx_grid_filter_doesNotEqual": "Igx_grid_filter_doesNotEqual", + "Igx_grid_filter_empty": "Igx_grid_filter_empty", + "Igx_grid_filter_endsWith": "Igx_grid_filter_endsWith", + "Igx_grid_filter_equals": "Igx_grid_filter_equals", + "Igx_grid_filter_false": "Igx_grid_filter_false", + "Igx_grid_filter_greaterThan": "Igx_grid_filter_greaterThan", + "Igx_grid_filter_greaterThanOrEqualTo": "Igx_grid_filter_greaterThanOrEqualTo", + "Igx_grid_filter_in": "Igx_grid_filter_in", + "Igx_grid_filter_lastMonth": "Igx_grid_filter_lastMonth", + "Igx_grid_filter_lastYear": "Igx_grid_filter_lastYear", + "Igx_grid_filter_lessThan": "Igx_grid_filter_lessThan", + "Igx_grid_filter_lessThanOrEqualTo": "Igx_grid_filter_lessThanOrEqualTo", + "Igx_grid_filter_nextMonth": "Igx_grid_filter_nextMonth", + "Igx_grid_filter_nextYear": "Igx_grid_filter_nextYear", + "Igx_grid_filter_notEmpty": "Igx_grid_filter_notEmpty", + "Igx_grid_filter_notIn": "Igx_grid_filter_notIn", + "Igx_grid_filter_notNull": "Igx_grid_filter_notNull", + "Igx_grid_filter_not_at": "Igx_grid_filter_not_at", + "Igx_grid_filter_null": "Igx_grid_filter_null", + "Igx_grid_filter_operator_and": "Igx_grid_filter_operator_and", + "Igx_grid_filter_operator_or": "Igx_grid_filter_operator_or", + "Igx_grid_filter_row_boolean_placeholder": "Igx_grid_filter_row_boolean_placeholder", + "Igx_grid_filter_row_close": "Igx_grid_filter_row_close", + "Igx_grid_filter_row_date_placeholder": "Igx_grid_filter_row_date_placeholder", + "Igx_grid_filter_row_placeholder": "Igx_grid_filter_row_placeholder", + "Igx_grid_filter_row_reset": "Igx_grid_filter_row_reset", + "Igx_grid_filter_row_time_placeholder": "Igx_grid_filter_row_time_placeholder", + "Igx_grid_filter_startsWith": "Igx_grid_filter_startsWith", + "Igx_grid_filter_thisMonth": "Igx_grid_filter_thisMonth", + "Igx_grid_filter_thisYear": "Igx_grid_filter_thisYear", + "Igx_grid_filter_today": "Igx_grid_filter_today", + "Igx_grid_filter_true": "Igx_grid_filter_true", + "Igx_grid_filter_yesterday": "Igx_grid_filter_yesterday", + "Igx_grid_groupByArea_deselect_message": "Igx_grid_groupByArea_deselect_message", + "Igx_grid_groupByArea_message": "Igx_grid_groupByArea_message", + "Igx_grid_groupByArea_select_message": "Igx_grid_groupByArea_select_message", + "Igx_grid_hiding_check_all_label": "Igx_grid_hiding_check_all_label", + "Igx_grid_hiding_uncheck_all_label": "Igx_grid_hiding_uncheck_all_label", + "Igx_grid_max_length_validation_error": "Igx_grid_max_length_validation_error", + "Igx_grid_max_validation_error": "Igx_grid_max_validation_error", + "Igx_grid_min_length_validation_error": "Igx_grid_min_length_validation_error", + "Igx_grid_min_validation_error": "Igx_grid_min_validation_error", + "Igx_grid_pattern_validation_error": "Igx_grid_pattern_validation_error", + "Igx_grid_pinned_row_indicator": "Igx_grid_pinned_row_indicator", + "Igx_grid_pinning_check_all_label": "Igx_grid_pinning_check_all_label", + "Igx_grid_pinning_uncheck_all_label": "Igx_grid_pinning_uncheck_all_label", + "Igx_grid_pivot_aggregate_avg": "Igx_grid_pivot_aggregate_avg", + "Igx_grid_pivot_aggregate_count": "Igx_grid_pivot_aggregate_count", + "Igx_grid_pivot_aggregate_date_earliest": "Igx_grid_pivot_aggregate_date_earliest", + "Igx_grid_pivot_aggregate_date_latest": "Igx_grid_pivot_aggregate_date_latest", + "Igx_grid_pivot_aggregate_max": "Igx_grid_pivot_aggregate_max", + "Igx_grid_pivot_aggregate_min": "Igx_grid_pivot_aggregate_min", + "Igx_grid_pivot_aggregate_sum": "Igx_grid_pivot_aggregate_sum", + "Igx_grid_pivot_aggregate_time_earliest": "Igx_grid_pivot_aggregate_time_earliest", + "Igx_grid_pivot_aggregate_time_latest": "Igx_grid_pivot_aggregate_time_latest", + "Igx_grid_pivot_column_drop_chip": "Igx_grid_pivot_column_drop_chip", + "Igx_grid_pivot_date_dimension_total": "Igx_grid_pivot_date_dimension_total", + "Igx_grid_pivot_empty_column_drop_area": "Igx_grid_pivot_empty_column_drop_area", + "Igx_grid_pivot_empty_filter_drop_area": "Igx_grid_pivot_empty_filter_drop_area", + "Igx_grid_pivot_empty_message": "Igx_grid_pivot_empty_message", + "Igx_grid_pivot_empty_row_drop_area": "Igx_grid_pivot_empty_row_drop_area", + "Igx_grid_pivot_empty_value_drop_area": "Igx_grid_pivot_empty_value_drop_area", + "Igx_grid_pivot_filter_drop_chip": "Igx_grid_pivot_filter_drop_chip", + "Igx_grid_pivot_row_drop_chip": "Igx_grid_pivot_row_drop_chip", + "Igx_grid_pivot_selector_columns": "Igx_grid_pivot_selector_columns", + "Igx_grid_pivot_selector_filters": "Igx_grid_pivot_selector_filters", + "Igx_grid_pivot_selector_panel_empty": "Igx_grid_pivot_selector_panel_empty", + "Igx_grid_pivot_selector_rows": "Igx_grid_pivot_selector_rows", + "Igx_grid_pivot_selector_values": "Igx_grid_pivot_selector_values", + "Igx_grid_pivot_value_drop_chip": "Igx_grid_pivot_value_drop_chip", + "Igx_grid_required_validation_error": "Igx_grid_required_validation_error", + "Igx_grid_row_edit_btn_cancel": "Igx_grid_row_edit_btn_cancel", + "Igx_grid_row_edit_btn_done": "Igx_grid_row_edit_btn_done", + "Igx_grid_row_edit_text": "Igx_grid_row_edit_text", + "Igx_grid_snackbar_addrow_actiontext": "Igx_grid_snackbar_addrow_actiontext", + "Igx_grid_snackbar_addrow_label": "Igx_grid_snackbar_addrow_label", + "Igx_grid_summary_average": "Igx_grid_summary_average", + "Igx_grid_summary_count": "Igx_grid_summary_count", + "Igx_grid_summary_earliest": "Igx_grid_summary_earliest", + "Igx_grid_summary_latest": "Igx_grid_summary_latest", + "Igx_grid_summary_max": "Igx_grid_summary_max", + "Igx_grid_summary_min": "Igx_grid_summary_min", + "Igx_grid_summary_sum": "Igx_grid_summary_sum", + "Igx_grid_toolbar_actions_filter_prompt": "Igx_grid_toolbar_actions_filter_prompt", + "Igx_grid_toolbar_advanced_filtering_button_label": "Igx_grid_toolbar_advanced_filtering_button_label", + "Igx_grid_toolbar_advanced_filtering_button_tooltip": "Igx_grid_toolbar_advanced_filtering_button_tooltip", + "Igx_grid_toolbar_exporter_button_label": "Igx_grid_toolbar_exporter_button_label", + "Igx_grid_toolbar_exporter_button_tooltip": "Igx_grid_toolbar_exporter_button_tooltip", + "Igx_grid_toolbar_exporter_csv_entry_text": "Igx_grid_toolbar_exporter_csv_entry_text", + "Igx_grid_toolbar_exporter_excel_entry_text": "Igx_grid_toolbar_exporter_excel_entry_text", + "Igx_grid_toolbar_hiding_button_tooltip": "Igx_grid_toolbar_hiding_button_tooltip", + "Igx_grid_toolbar_hiding_title": "Igx_grid_toolbar_hiding_title", + "Igx_grid_toolbar_pinning_button_tooltip": "Igx_grid_toolbar_pinning_button_tooltip", + "Igx_grid_toolbar_pinning_title": "Igx_grid_toolbar_pinning_title", + "Type": "Type" + } + } + ], + "WebGridResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridResourceStringsDescriptionMetadata()": "WebGridResourceStringsDescriptionMetadata()", + "WebGridResourceStringsDescriptionMetadata": "WebGridResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowDescription()": "WebGridRowDescription()", + "WebGridRowDescription": "WebGridRowDescription()", + "Type": "Type" + } + } + ], + "WebGridRowDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowDescriptionMetadata()": "WebGridRowDescriptionMetadata()", + "WebGridRowDescriptionMetadata": "WebGridRowDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowDragGhostContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowDragGhostContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowDragGhostContextDescription()": "WebGridRowDragGhostContextDescription()", + "WebGridRowDragGhostContextDescription": "WebGridRowDragGhostContextDescription()", + "Data": "Data", + "Grid": "Grid", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridRowDragGhostContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowDragGhostContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowDragGhostContextDescriptionMetadata()": "WebGridRowDragGhostContextDescriptionMetadata()", + "WebGridRowDragGhostContextDescriptionMetadata": "WebGridRowDragGhostContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowEditActionsTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowEditActionsTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEditActionsTemplateContextDescription()": "WebGridRowEditActionsTemplateContextDescription()", + "WebGridRowEditActionsTemplateContextDescription": "WebGridRowEditActionsTemplateContextDescription()", + "ImplicitRef": "ImplicitRef", + "Type": "Type" + } + } + ], + "WebGridRowEditActionsTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowEditActionsTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEditActionsTemplateContextDescriptionMetadata()": "WebGridRowEditActionsTemplateContextDescriptionMetadata()", + "WebGridRowEditActionsTemplateContextDescriptionMetadata": "WebGridRowEditActionsTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowEditTextTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowEditTextTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEditTextTemplateContextDescription()": "WebGridRowEditTextTemplateContextDescription()", + "WebGridRowEditTextTemplateContextDescription": "WebGridRowEditTextTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridRowEditTextTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowEditTextTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEditTextTemplateContextDescriptionMetadata()": "WebGridRowEditTextTemplateContextDescriptionMetadata()", + "WebGridRowEditTextTemplateContextDescriptionMetadata": "WebGridRowEditTextTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEventArgsDescription()": "WebGridRowEventArgsDescription()", + "WebGridRowEventArgsDescription": "WebGridRowEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridRowEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEventArgsDescriptionMetadata()": "WebGridRowEventArgsDescriptionMetadata()", + "WebGridRowEventArgsDescriptionMetadata": "WebGridRowEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEventArgsDetailDescription()": "WebGridRowEventArgsDetailDescription()", + "WebGridRowEventArgsDetailDescription": "WebGridRowEventArgsDetailDescription()", + "Event": "Event", + "Row": "Row", + "Type": "Type" + } + } + ], + "WebGridRowEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowEventArgsDetailDescriptionMetadata()": "WebGridRowEventArgsDetailDescriptionMetadata()", + "WebGridRowEventArgsDetailDescriptionMetadata": "WebGridRowEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridRowTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridRowTemplateContextDescription()": "WebGridRowTemplateContextDescription()", + "WebGridRowTemplateContextDescription": "WebGridRowTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridRowTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridRowTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridRowTemplateContextDescriptionMetadata()": "WebGridRowTemplateContextDescriptionMetadata()", + "WebGridRowTemplateContextDescriptionMetadata": "WebGridRowTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridScrollEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridScrollEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridScrollEventArgsDescription()": "WebGridScrollEventArgsDescription()", + "WebGridScrollEventArgsDescription": "WebGridScrollEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridScrollEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridScrollEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridScrollEventArgsDescriptionMetadata()": "WebGridScrollEventArgsDescriptionMetadata()", + "WebGridScrollEventArgsDescriptionMetadata": "WebGridScrollEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridScrollEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridScrollEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridScrollEventArgsDetailDescription()": "WebGridScrollEventArgsDetailDescription()", + "WebGridScrollEventArgsDetailDescription": "WebGridScrollEventArgsDetailDescription()", + "Direction": "Direction", + "Event": "Event", + "ScrollPosition": "ScrollPosition", + "Type": "Type" + } + } + ], + "WebGridScrollEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridScrollEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridScrollEventArgsDetailDescriptionMetadata()": "WebGridScrollEventArgsDetailDescriptionMetadata()", + "WebGridScrollEventArgsDetailDescriptionMetadata": "WebGridScrollEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridSelectionRangeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridSelectionRangeDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeDescription()": "WebGridSelectionRangeDescription()", + "WebGridSelectionRangeDescription": "WebGridSelectionRangeDescription()", + "ColumnEnd": "ColumnEnd", + "ColumnStart": "ColumnStart", + "RowEnd": "RowEnd", + "RowStart": "RowStart", + "Type": "Type" + } + } + ], + "WebGridSelectionRangeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridSelectionRangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeDescriptionMetadata()": "WebGridSelectionRangeDescriptionMetadata()", + "WebGridSelectionRangeDescriptionMetadata": "WebGridSelectionRangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridSelectionRangeDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridSelectionRangeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeDetailDescription()": "WebGridSelectionRangeDetailDescription()", + "WebGridSelectionRangeDetailDescription": "WebGridSelectionRangeDetailDescription()", + "ColumnEnd": "ColumnEnd", + "ColumnStart": "ColumnStart", + "RowEnd": "RowEnd", + "RowStart": "RowStart", + "Type": "Type" + } + } + ], + "WebGridSelectionRangeDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridSelectionRangeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeDetailDescriptionMetadata()": "WebGridSelectionRangeDetailDescriptionMetadata()", + "WebGridSelectionRangeDetailDescriptionMetadata": "WebGridSelectionRangeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridSelectionRangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridSelectionRangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeEventArgsDescription()": "WebGridSelectionRangeEventArgsDescription()", + "WebGridSelectionRangeEventArgsDescription": "WebGridSelectionRangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridSelectionRangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridSelectionRangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridSelectionRangeEventArgsDescriptionMetadata()": "WebGridSelectionRangeEventArgsDescriptionMetadata()", + "WebGridSelectionRangeEventArgsDescriptionMetadata": "WebGridSelectionRangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridSortingStrategyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridSortingStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridSortingStrategyDescription()": "WebGridSortingStrategyDescription()", + "WebGridSortingStrategyDescription": "WebGridSortingStrategyDescription()", + "Type": "Type" + } + } + ], + "WebGridSortingStrategyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridSortingStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridSortingStrategyDescriptionMetadata()": "WebGridSortingStrategyDescriptionMetadata()", + "WebGridSortingStrategyDescriptionMetadata": "WebGridSortingStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateBaseDirectiveDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateBaseDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateBaseDirectiveDescription()": "WebGridStateBaseDirectiveDescription()", + "WebGridStateBaseDirectiveDescription": "WebGridStateBaseDirectiveDescription()", + "Options": "Options", + "Type": "Type" + } + } + ], + "WebGridStateBaseDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateBaseDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateBaseDirectiveDescriptionMetadata()": "WebGridStateBaseDirectiveDescriptionMetadata()", + "WebGridStateBaseDirectiveDescriptionMetadata": "WebGridStateBaseDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateBaseDirectiveDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateBaseDirectiveDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridStateBaseDirectiveDescriptionModule()": "WebGridStateBaseDirectiveDescriptionModule()", + "WebGridStateBaseDirectiveDescriptionModule": "WebGridStateBaseDirectiveDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateCollectionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateCollectionDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateCollectionDescription()": "WebGridStateCollectionDescription()", + "WebGridStateCollectionDescription": "WebGridStateCollectionDescription()", + "Id": "Id", + "ParentRowID": "ParentRowID", + "State": "State", + "Type": "Type" + } + } + ], + "WebGridStateCollectionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateCollectionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateCollectionDescriptionMetadata()": "WebGridStateCollectionDescriptionMetadata()", + "WebGridStateCollectionDescriptionMetadata": "WebGridStateCollectionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateDescription()": "WebGridStateDescription()", + "WebGridStateDescription": "WebGridStateDescription()", + "StateParsedRef": "StateParsedRef", + "Type": "Type" + } + } + ], + "WebGridStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateDescriptionMetadata()": "WebGridStateDescriptionMetadata()", + "WebGridStateDescriptionMetadata": "WebGridStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridStateDescriptionModule()": "WebGridStateDescriptionModule()", + "WebGridStateDescriptionModule": "WebGridStateDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateInfoDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoDescription()": "WebGridStateInfoDescription()", + "WebGridStateInfoDescription": "WebGridStateInfoDescription()", + "AdvancedFiltering": "AdvancedFiltering", + "CellSelection": "CellSelection", + "ColumnSelection": "ColumnSelection", + "Columns": "Columns", + "Expansion": "Expansion", + "Filtering": "Filtering", + "GroupBy": "GroupBy", + "Id": "Id", + "Moving": "Moving", + "Paging": "Paging", + "PinningConfig": "PinningConfig", + "PivotConfiguration": "PivotConfiguration", + "RowIslands": "RowIslands", + "RowPinning": "RowPinning", + "RowSelection": "RowSelection", + "Sorting": "Sorting", + "Type": "Type" + } + } + ], + "WebGridStateInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoDescriptionMetadata()": "WebGridStateInfoDescriptionMetadata()", + "WebGridStateInfoDescriptionMetadata": "WebGridStateInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateInfoDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateInfoDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoDetailDescription()": "WebGridStateInfoDetailDescription()", + "WebGridStateInfoDetailDescription": "WebGridStateInfoDetailDescription()", + "AdvancedFiltering": "AdvancedFiltering", + "CellSelection": "CellSelection", + "ColumnSelection": "ColumnSelection", + "Columns": "Columns", + "Expansion": "Expansion", + "Filtering": "Filtering", + "GroupBy": "GroupBy", + "Id": "Id", + "Moving": "Moving", + "Paging": "Paging", + "PinningConfig": "PinningConfig", + "PivotConfiguration": "PivotConfiguration", + "RowIslands": "RowIslands", + "RowPinning": "RowPinning", + "RowSelection": "RowSelection", + "Sorting": "Sorting", + "Type": "Type" + } + } + ], + "WebGridStateInfoDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateInfoDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoDetailDescriptionMetadata()": "WebGridStateInfoDetailDescriptionMetadata()", + "WebGridStateInfoDetailDescriptionMetadata": "WebGridStateInfoDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateInfoEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateInfoEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoEventArgsDescription()": "WebGridStateInfoEventArgsDescription()", + "WebGridStateInfoEventArgsDescription": "WebGridStateInfoEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridStateInfoEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateInfoEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateInfoEventArgsDescriptionMetadata()": "WebGridStateInfoEventArgsDescriptionMetadata()", + "WebGridStateInfoEventArgsDescriptionMetadata": "WebGridStateInfoEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridStateOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridStateOptionsDescription()": "WebGridStateOptionsDescription()", + "WebGridStateOptionsDescription": "WebGridStateOptionsDescription()", + "AdvancedFiltering": "AdvancedFiltering", + "CellSelection": "CellSelection", + "ColumnSelection": "ColumnSelection", + "Columns": "Columns", + "Expansion": "Expansion", + "Filtering": "Filtering", + "GroupBy": "GroupBy", + "Moving": "Moving", + "Paging": "Paging", + "PinningConfig": "PinningConfig", + "PivotConfiguration": "PivotConfiguration", + "RowIslands": "RowIslands", + "RowPinning": "RowPinning", + "RowSelection": "RowSelection", + "Sorting": "Sorting", + "Type": "Type" + } + } + ], + "WebGridStateOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridStateOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridStateOptionsDescriptionMetadata()": "WebGridStateOptionsDescriptionMetadata()", + "WebGridStateOptionsDescriptionMetadata": "WebGridStateOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridTemplateContextDescription()": "WebGridTemplateContextDescription()", + "WebGridTemplateContextDescription": "WebGridTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridTemplateContextDescriptionMetadata()": "WebGridTemplateContextDescriptionMetadata()", + "WebGridTemplateContextDescriptionMetadata": "WebGridTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarActionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarActionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarActionsDescription()": "WebGridToolbarActionsDescription()", + "WebGridToolbarActionsDescription": "WebGridToolbarActionsDescription()", + "Actions": "Actions", + "Type": "Type" + } + } + ], + "WebGridToolbarActionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarActionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarActionsDescriptionMetadata()": "WebGridToolbarActionsDescriptionMetadata()", + "WebGridToolbarActionsDescriptionMetadata": "WebGridToolbarActionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarActionsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarActionsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarActionsDescriptionModule()": "WebGridToolbarActionsDescriptionModule()", + "WebGridToolbarActionsDescriptionModule": "WebGridToolbarActionsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarAdvancedFilteringDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarAdvancedFilteringDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarAdvancedFilteringDescription()": "WebGridToolbarAdvancedFilteringDescription()", + "WebGridToolbarAdvancedFilteringDescription": "WebGridToolbarAdvancedFilteringDescription()", + "OverlaySettings": "OverlaySettings", + "Type": "Type" + } + } + ], + "WebGridToolbarAdvancedFilteringDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarAdvancedFilteringDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarAdvancedFilteringDescriptionMetadata()": "WebGridToolbarAdvancedFilteringDescriptionMetadata()", + "WebGridToolbarAdvancedFilteringDescriptionMetadata": "WebGridToolbarAdvancedFilteringDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarAdvancedFilteringDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarAdvancedFilteringDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarAdvancedFilteringDescriptionModule()": "WebGridToolbarAdvancedFilteringDescriptionModule()", + "WebGridToolbarAdvancedFilteringDescriptionModule": "WebGridToolbarAdvancedFilteringDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarBaseActionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarBaseActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarBaseActionDescription()": "WebGridToolbarBaseActionDescription()", + "WebGridToolbarBaseActionDescription": "WebGridToolbarBaseActionDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarBaseActionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarBaseActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarBaseActionDescriptionMetadata()": "WebGridToolbarBaseActionDescriptionMetadata()", + "WebGridToolbarBaseActionDescriptionMetadata": "WebGridToolbarBaseActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarContentDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarContentDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarContentDescription()": "WebGridToolbarContentDescription()", + "WebGridToolbarContentDescription": "WebGridToolbarContentDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarContentDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarContentDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarContentDescriptionMetadata()": "WebGridToolbarContentDescriptionMetadata()", + "WebGridToolbarContentDescriptionMetadata": "WebGridToolbarContentDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarDescription()": "WebGridToolbarDescription()", + "WebGridToolbarDescription": "WebGridToolbarDescription()", + "Grid": "Grid", + "ShowProgress": "ShowProgress", + "Tools": "Tools", + "Type": "Type" + } + } + ], + "WebGridToolbarDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarDescriptionMetadata()": "WebGridToolbarDescriptionMetadata()", + "WebGridToolbarDescriptionMetadata": "WebGridToolbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarDescriptionModule()": "WebGridToolbarDescriptionModule()", + "WebGridToolbarDescriptionModule": "WebGridToolbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarExporterDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarExporterDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExporterDescription()": "WebGridToolbarExporterDescription()", + "WebGridToolbarExporterDescription": "WebGridToolbarExporterDescription()", + "ExportCSV": "ExportCSV", + "ExportEndedRef": "ExportEndedRef", + "ExportExcel": "ExportExcel", + "ExportPDF": "ExportPDF", + "ExportStartedRef": "ExportStartedRef", + "Filename": "Filename", + "Type": "Type" + } + } + ], + "WebGridToolbarExporterDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarExporterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExporterDescriptionMetadata()": "WebGridToolbarExporterDescriptionMetadata()", + "WebGridToolbarExporterDescriptionMetadata": "WebGridToolbarExporterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarExporterDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarExporterDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExporterDescriptionModule()": "WebGridToolbarExporterDescriptionModule()", + "WebGridToolbarExporterDescriptionModule": "WebGridToolbarExporterDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarExportEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarExportEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExportEventArgsDescription()": "WebGridToolbarExportEventArgsDescription()", + "WebGridToolbarExportEventArgsDescription": "WebGridToolbarExportEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridToolbarExportEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarExportEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExportEventArgsDescriptionMetadata()": "WebGridToolbarExportEventArgsDescriptionMetadata()", + "WebGridToolbarExportEventArgsDescriptionMetadata": "WebGridToolbarExportEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarExportEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarExportEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExportEventArgsDetailDescription()": "WebGridToolbarExportEventArgsDetailDescription()", + "WebGridToolbarExportEventArgsDetailDescription": "WebGridToolbarExportEventArgsDetailDescription()", + "Cancel": "Cancel", + "Exporter": "Exporter", + "Grid": "Grid", + "Options": "Options", + "Type": "Type" + } + } + ], + "WebGridToolbarExportEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarExportEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarExportEventArgsDetailDescriptionMetadata()": "WebGridToolbarExportEventArgsDetailDescriptionMetadata()", + "WebGridToolbarExportEventArgsDetailDescriptionMetadata": "WebGridToolbarExportEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarHidingDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarHidingDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarHidingDescription()": "WebGridToolbarHidingDescription()", + "WebGridToolbarHidingDescription": "WebGridToolbarHidingDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarHidingDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarHidingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarHidingDescriptionMetadata()": "WebGridToolbarHidingDescriptionMetadata()", + "WebGridToolbarHidingDescriptionMetadata": "WebGridToolbarHidingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarHidingDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarHidingDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarHidingDescriptionModule()": "WebGridToolbarHidingDescriptionModule()", + "WebGridToolbarHidingDescriptionModule": "WebGridToolbarHidingDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarPinningDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarPinningDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarPinningDescription()": "WebGridToolbarPinningDescription()", + "WebGridToolbarPinningDescription": "WebGridToolbarPinningDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarPinningDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarPinningDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarPinningDescriptionMetadata()": "WebGridToolbarPinningDescriptionMetadata()", + "WebGridToolbarPinningDescriptionMetadata": "WebGridToolbarPinningDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarPinningDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarPinningDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarPinningDescriptionModule()": "WebGridToolbarPinningDescriptionModule()", + "WebGridToolbarPinningDescriptionModule": "WebGridToolbarPinningDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTemplateContextDescription()": "WebGridToolbarTemplateContextDescription()", + "WebGridToolbarTemplateContextDescription": "WebGridToolbarTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGridToolbarTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTemplateContextDescriptionMetadata()": "WebGridToolbarTemplateContextDescriptionMetadata()", + "WebGridToolbarTemplateContextDescriptionMetadata": "WebGridToolbarTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarTitleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarTitleDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTitleDescription()": "WebGridToolbarTitleDescription()", + "WebGridToolbarTitleDescription": "WebGridToolbarTitleDescription()", + "Type": "Type" + } + } + ], + "WebGridToolbarTitleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarTitleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTitleDescriptionMetadata()": "WebGridToolbarTitleDescriptionMetadata()", + "WebGridToolbarTitleDescriptionMetadata": "WebGridToolbarTitleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridToolbarTitleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridToolbarTitleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebGridToolbarTitleDescriptionModule()": "WebGridToolbarTitleDescriptionModule()", + "WebGridToolbarTitleDescriptionModule": "WebGridToolbarTitleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridValidationStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridValidationStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStateDescription()": "WebGridValidationStateDescription()", + "WebGridValidationStateDescription": "WebGridValidationStateDescription()", + "Errors": "Errors", + "Status": "Status", + "Type": "Type" + } + } + ], + "WebGridValidationStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridValidationStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStateDescriptionMetadata()": "WebGridValidationStateDescriptionMetadata()", + "WebGridValidationStateDescriptionMetadata": "WebGridValidationStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridValidationStatusEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridValidationStatusEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStatusEventArgsDescription()": "WebGridValidationStatusEventArgsDescription()", + "WebGridValidationStatusEventArgsDescription": "WebGridValidationStatusEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGridValidationStatusEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridValidationStatusEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStatusEventArgsDescriptionMetadata()": "WebGridValidationStatusEventArgsDescriptionMetadata()", + "WebGridValidationStatusEventArgsDescriptionMetadata": "WebGridValidationStatusEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGridValidationStatusEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridValidationStatusEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStatusEventArgsDetailDescription()": "WebGridValidationStatusEventArgsDetailDescription()", + "WebGridValidationStatusEventArgsDetailDescription": "WebGridValidationStatusEventArgsDetailDescription()", + "Owner": "Owner", + "Status": "Status", + "Type": "Type" + } + } + ], + "WebGridValidationStatusEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGridValidationStatusEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGridValidationStatusEventArgsDetailDescriptionMetadata()": "WebGridValidationStatusEventArgsDetailDescriptionMetadata()", + "WebGridValidationStatusEventArgsDetailDescriptionMetadata": "WebGridValidationStatusEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByExpandStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByExpandStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByExpandStateDescription()": "WebGroupByExpandStateDescription()", + "WebGroupByExpandStateDescription": "WebGroupByExpandStateDescription()", + "Expanded": "Expanded", + "Hierarchy": "Hierarchy", + "Type": "Type" + } + } + ], + "WebGroupByExpandStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByExpandStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByExpandStateDescriptionMetadata()": "WebGroupByExpandStateDescriptionMetadata()", + "WebGroupByExpandStateDescriptionMetadata": "WebGroupByExpandStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByExpandStateEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByExpandStateEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByExpandStateEventArgsDescription()": "WebGroupByExpandStateEventArgsDescription()", + "WebGroupByExpandStateEventArgsDescription": "WebGroupByExpandStateEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGroupByExpandStateEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByExpandStateEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByExpandStateEventArgsDescriptionMetadata()": "WebGroupByExpandStateEventArgsDescriptionMetadata()", + "WebGroupByExpandStateEventArgsDescriptionMetadata": "WebGroupByExpandStateEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByKeyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByKeyDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByKeyDescription()": "WebGroupByKeyDescription()", + "WebGroupByKeyDescription": "WebGroupByKeyDescription()", + "FieldName": "FieldName", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebGroupByKeyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByKeyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByKeyDescriptionMetadata()": "WebGroupByKeyDescriptionMetadata()", + "WebGroupByKeyDescriptionMetadata": "WebGroupByKeyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByRecordDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByRecordDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRecordDescription()": "WebGroupByRecordDescription()", + "WebGroupByRecordDescription": "WebGroupByRecordDescription()", + "Column": "Column", + "Expression": "Expression", + "GroupParent": "GroupParent", + "Groups": "Groups", + "Height": "Height", + "Level": "Level", + "RecordsRef": "RecordsRef", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebGroupByRecordDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByRecordDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRecordDescriptionMetadata()": "WebGroupByRecordDescriptionMetadata()", + "WebGroupByRecordDescriptionMetadata": "WebGroupByRecordDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByResultDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByResultDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByResultDescription()": "WebGroupByResultDescription()", + "WebGroupByResultDescription": "WebGroupByResultDescription()", + "DataRef": "DataRef", + "Metadata": "Metadata", + "Type": "Type" + } + } + ], + "WebGroupByResultDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByResultDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByResultDescriptionMetadata()": "WebGroupByResultDescriptionMetadata()", + "WebGroupByResultDescriptionMetadata": "WebGroupByResultDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByRowSelectorTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByRowSelectorTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowSelectorTemplateContextDescription()": "WebGroupByRowSelectorTemplateContextDescription()", + "WebGroupByRowSelectorTemplateContextDescription": "WebGroupByRowSelectorTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGroupByRowSelectorTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByRowSelectorTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowSelectorTemplateContextDescriptionMetadata()": "WebGroupByRowSelectorTemplateContextDescriptionMetadata()", + "WebGroupByRowSelectorTemplateContextDescriptionMetadata": "WebGroupByRowSelectorTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByRowSelectorTemplateDetailsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByRowSelectorTemplateDetailsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowSelectorTemplateDetailsDescription()": "WebGroupByRowSelectorTemplateDetailsDescription()", + "WebGroupByRowSelectorTemplateDetailsDescription": "WebGroupByRowSelectorTemplateDetailsDescription()", + "GroupRow": "GroupRow", + "SelectedCount": "SelectedCount", + "TotalCount": "TotalCount", + "Type": "Type" + } + } + ], + "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByRowSelectorTemplateDetailsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata()": "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata()", + "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata": "WebGroupByRowSelectorTemplateDetailsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupByRowTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByRowTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowTemplateContextDescription()": "WebGroupByRowTemplateContextDescription()", + "WebGroupByRowTemplateContextDescription": "WebGroupByRowTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebGroupByRowTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupByRowTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupByRowTemplateContextDescriptionMetadata()": "WebGroupByRowTemplateContextDescriptionMetadata()", + "WebGroupByRowTemplateContextDescriptionMetadata": "WebGroupByRowTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingDoneEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingDoneEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingDoneEventArgsDescription()": "WebGroupingDoneEventArgsDescription()", + "WebGroupingDoneEventArgsDescription": "WebGroupingDoneEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGroupingDoneEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingDoneEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingDoneEventArgsDescriptionMetadata()": "WebGroupingDoneEventArgsDescriptionMetadata()", + "WebGroupingDoneEventArgsDescriptionMetadata": "WebGroupingDoneEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingDoneEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingDoneEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingDoneEventArgsDetailDescription()": "WebGroupingDoneEventArgsDetailDescription()", + "WebGroupingDoneEventArgsDetailDescription": "WebGroupingDoneEventArgsDetailDescription()", + "Expressions": "Expressions", + "GroupedColumns": "GroupedColumns", + "Type": "Type", + "UngroupedColumns": "UngroupedColumns" + } + } + ], + "WebGroupingDoneEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingDoneEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingDoneEventArgsDetailDescriptionMetadata()": "WebGroupingDoneEventArgsDetailDescriptionMetadata()", + "WebGroupingDoneEventArgsDetailDescriptionMetadata": "WebGroupingDoneEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingExpressionDescription()": "WebGroupingExpressionDescription()", + "WebGroupingExpressionDescription": "WebGroupingExpressionDescription()", + "Type": "Type" + } + } + ], + "WebGroupingExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingExpressionDescriptionMetadata()": "WebGroupingExpressionDescriptionMetadata()", + "WebGroupingExpressionDescriptionMetadata": "WebGroupingExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingExpressionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingExpressionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingExpressionEventArgsDescription()": "WebGroupingExpressionEventArgsDescription()", + "WebGroupingExpressionEventArgsDescription": "WebGroupingExpressionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebGroupingExpressionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingExpressionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingExpressionEventArgsDescriptionMetadata()": "WebGroupingExpressionEventArgsDescriptionMetadata()", + "WebGroupingExpressionEventArgsDescriptionMetadata": "WebGroupingExpressionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebGroupingStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebGroupingStateDescription()": "WebGroupingStateDescription()", + "WebGroupingStateDescription": "WebGroupingStateDescription()", + "DefaultExpanded": "DefaultExpanded", + "Expansion": "Expansion", + "Expressions": "Expressions", + "Type": "Type" + } + } + ], + "WebGroupingStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebGroupingStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebGroupingStateDescriptionMetadata()": "WebGroupingStateDescriptionMetadata()", + "WebGroupingStateDescriptionMetadata": "WebGroupingStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHeaderTypeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHeaderTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebHeaderTypeDescription()": "WebHeaderTypeDescription()", + "WebHeaderTypeDescription": "WebHeaderTypeDescription()", + "Column": "Column", + "Selectable": "Selectable", + "Selected": "Selected", + "SortDirection": "SortDirection", + "Sorted": "Sorted", + "Title": "Title", + "Type": "Type" + } + } + ], + "WebHeaderTypeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHeaderTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHeaderTypeDescriptionMetadata()": "WebHeaderTypeDescriptionMetadata()", + "WebHeaderTypeDescriptionMetadata": "WebHeaderTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHeadSelectorTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHeadSelectorTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebHeadSelectorTemplateContextDescription()": "WebHeadSelectorTemplateContextDescription()", + "WebHeadSelectorTemplateContextDescription": "WebHeadSelectorTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebHeadSelectorTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHeadSelectorTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHeadSelectorTemplateContextDescriptionMetadata()": "WebHeadSelectorTemplateContextDescriptionMetadata()", + "WebHeadSelectorTemplateContextDescriptionMetadata": "WebHeadSelectorTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHeadSelectorTemplateDetailsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHeadSelectorTemplateDetailsDescription", + "k": "class", + "s": "classes", + "m": { + "WebHeadSelectorTemplateDetailsDescription()": "WebHeadSelectorTemplateDetailsDescription()", + "WebHeadSelectorTemplateDetailsDescription": "WebHeadSelectorTemplateDetailsDescription()", + "SelectedCount": "SelectedCount", + "TotalCount": "TotalCount", + "Type": "Type" + } + } + ], + "WebHeadSelectorTemplateDetailsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHeadSelectorTemplateDetailsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHeadSelectorTemplateDetailsDescriptionMetadata()": "WebHeadSelectorTemplateDetailsDescriptionMetadata()", + "WebHeadSelectorTemplateDetailsDescriptionMetadata": "WebHeadSelectorTemplateDetailsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHierarchicalGridBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHierarchicalGridBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridBaseDescription()": "WebHierarchicalGridBaseDescription()", + "WebHierarchicalGridBaseDescription": "WebHierarchicalGridBaseDescription()", + "DataRef": "DataRef", + "ExpandChildren": "ExpandChildren", + "Id": "Id", + "TotalItemCount": "TotalItemCount", + "Type": "Type" + } + } + ], + "WebHierarchicalGridBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHierarchicalGridBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridBaseDescriptionMetadata()": "WebHierarchicalGridBaseDescriptionMetadata()", + "WebHierarchicalGridBaseDescriptionMetadata": "WebHierarchicalGridBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHierarchicalGridBaseDirectiveDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHierarchicalGridBaseDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridBaseDirectiveDescription()": "WebHierarchicalGridBaseDirectiveDescription()", + "WebHierarchicalGridBaseDirectiveDescription": "WebHierarchicalGridBaseDirectiveDescription()", + "DataPreLoadRef": "DataPreLoadRef", + "HasChildrenKey": "HasChildrenKey", + "RootGrid": "RootGrid", + "ShowExpandAll": "ShowExpandAll", + "Type": "Type" + } + } + ], + "WebHierarchicalGridBaseDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHierarchicalGridBaseDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridBaseDirectiveDescriptionMetadata()": "WebHierarchicalGridBaseDirectiveDescriptionMetadata()", + "WebHierarchicalGridBaseDirectiveDescriptionMetadata": "WebHierarchicalGridBaseDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHierarchicalGridDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHierarchicalGridDescription", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridDescription()": "WebHierarchicalGridDescription()", + "WebHierarchicalGridDescription": "WebHierarchicalGridDescription()", + "ActionStripComponents": "ActionStripComponents", + "ChildLayoutList": "ChildLayoutList", + "ChildrenResolvedRef": "ChildrenResolvedRef", + "ColumnsAutogeneratedRef": "ColumnsAutogeneratedRef", + "Type": "Type" + } + } + ], + "WebHierarchicalGridDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHierarchicalGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridDescriptionMetadata()": "WebHierarchicalGridDescriptionMetadata()", + "WebHierarchicalGridDescriptionMetadata": "WebHierarchicalGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHierarchicalGridDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHierarchicalGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebHierarchicalGridDescriptionModule()": "WebHierarchicalGridDescriptionModule()", + "WebHierarchicalGridDescriptionModule": "WebHierarchicalGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHighlightDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHighlightDescription", + "k": "class", + "s": "classes", + "m": { + "WebHighlightDescription()": "WebHighlightDescription()", + "WebHighlightDescription": "WebHighlightDescription()", + "CaseSensitive": "CaseSensitive", + "SearchText": "SearchText", + "Type": "Type" + } + } + ], + "WebHighlightDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHighlightDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHighlightDescriptionMetadata()": "WebHighlightDescriptionMetadata()", + "WebHighlightDescriptionMetadata": "WebHighlightDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHighlightDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHighlightDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebHighlightDescriptionModule()": "WebHighlightDescriptionModule()", + "WebHighlightDescriptionModule": "WebHighlightDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebHighlightNavigationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHighlightNavigationDescription", + "k": "class", + "s": "classes", + "m": { + "WebHighlightNavigationDescription()": "WebHighlightNavigationDescription()", + "WebHighlightNavigationDescription": "WebHighlightNavigationDescription()", + "PreventScroll": "PreventScroll", + "Type": "Type" + } + } + ], + "WebHighlightNavigationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebHighlightNavigationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebHighlightNavigationDescriptionMetadata()": "WebHighlightNavigationDescriptionMetadata()", + "WebHighlightNavigationDescriptionMetadata": "WebHighlightNavigationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconButtonDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebIconButtonDescription", + "k": "class", + "s": "classes", + "m": { + "WebIconButtonDescription()": "WebIconButtonDescription()", + "WebIconButtonDescription": "WebIconButtonDescription()", + "Collection": "Collection", + "IconName": "IconName", + "Mirrored": "Mirrored", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebIconButtonDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebIconButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebIconButtonDescriptionMetadata()": "WebIconButtonDescriptionMetadata()", + "WebIconButtonDescriptionMetadata": "WebIconButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconButtonDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebIconButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebIconButtonDescriptionModule()": "WebIconButtonDescriptionModule()", + "WebIconButtonDescriptionModule": "WebIconButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebIconDescription", + "k": "class", + "s": "classes", + "m": { + "WebIconDescription()": "WebIconDescription()", + "WebIconDescription": "WebIconDescription()", + "Collection": "Collection", + "IconName": "IconName", + "Mirrored": "Mirrored", + "Type": "Type" + } + } + ], + "WebIconDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebIconDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebIconDescriptionMetadata()": "WebIconDescriptionMetadata()", + "WebIconDescriptionMetadata": "WebIconDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebIconDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebIconDescriptionModule()": "WebIconDescriptionModule()", + "WebIconDescriptionModule": "WebIconDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebIconMetaDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebIconMetaDescription", + "k": "class", + "s": "classes", + "m": { + "WebIconMetaDescription()": "WebIconMetaDescription()", + "WebIconMetaDescription": "WebIconMetaDescription()", + "Collection": "Collection", + "Type": "Type" + } + } + ], + "WebIconMetaDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebIconMetaDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebIconMetaDescriptionMetadata()": "WebIconMetaDescriptionMetadata()", + "WebIconMetaDescriptionMetadata": "WebIconMetaDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebInputBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebInputBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebInputBaseDescription()": "WebInputBaseDescription()", + "WebInputBaseDescription": "WebInputBaseDescription()", + "BlurRef": "BlurRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "FocusRef": "FocusRef", + "InputOcurredRef": "InputOcurredRef", + "Invalid": "Invalid", + "Label": "Label", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "Required": "Required", + "Type": "Type" + } + } + ], + "WebInputBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebInputBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebInputBaseDescriptionMetadata()": "WebInputBaseDescriptionMetadata()", + "WebInputBaseDescriptionMetadata": "WebInputBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebInputDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebInputDescription", + "k": "class", + "s": "classes", + "m": { + "WebInputDescription()": "WebInputDescription()", + "WebInputDescription": "WebInputDescription()", + "Autocomplete": "Autocomplete", + "Autofocus": "Autofocus", + "ChangeRef": "ChangeRef", + "DisplayType": "DisplayType", + "InputMode": "InputMode", + "Max": "Max", + "MaxLength": "MaxLength", + "Min": "Min", + "MinLength": "MinLength", + "Pattern": "Pattern", + "ReadOnly": "ReadOnly", + "Step": "Step", + "Type": "Type", + "ValidateOnly": "ValidateOnly", + "Value": "Value" + } + } + ], + "WebInputDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebInputDescriptionMetadata()": "WebInputDescriptionMetadata()", + "WebInputDescriptionMetadata": "WebInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebInputDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebInputDescriptionModule()": "WebInputDescriptionModule()", + "WebInputDescriptionModule": "WebInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebLayoutChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebLayoutChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebLayoutChangeEventArgsDescription()": "WebLayoutChangeEventArgsDescription()", + "WebLayoutChangeEventArgsDescription": "WebLayoutChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebLayoutChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebLayoutChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebLayoutChangeEventArgsDescriptionMetadata()": "WebLayoutChangeEventArgsDescriptionMetadata()", + "WebLayoutChangeEventArgsDescriptionMetadata": "WebLayoutChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebLayoutChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebLayoutChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebLayoutChangeEventArgsDetailDescription()": "WebLayoutChangeEventArgsDetailDescription()", + "WebLayoutChangeEventArgsDetailDescription": "WebLayoutChangeEventArgsDetailDescription()", + "Layout": "Layout", + "Type": "Type" + } + } + ], + "WebLayoutChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebLayoutChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebLayoutChangeEventArgsDetailDescriptionMetadata()": "WebLayoutChangeEventArgsDetailDescriptionMetadata()", + "WebLayoutChangeEventArgsDetailDescriptionMetadata": "WebLayoutChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebLinearProgressDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebLinearProgressDescription", + "k": "class", + "s": "classes", + "m": { + "WebLinearProgressDescription()": "WebLinearProgressDescription()", + "WebLinearProgressDescription": "WebLinearProgressDescription()", + "LabelAlign": "LabelAlign", + "Striped": "Striped", + "Type": "Type" + } + } + ], + "WebLinearProgressDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebLinearProgressDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebLinearProgressDescriptionMetadata()": "WebLinearProgressDescriptionMetadata()", + "WebLinearProgressDescriptionMetadata": "WebLinearProgressDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebLinearProgressDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebLinearProgressDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebLinearProgressDescriptionModule()": "WebLinearProgressDescriptionModule()", + "WebLinearProgressDescriptionModule": "WebLinearProgressDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListDescription", + "k": "class", + "s": "classes", + "m": { + "WebListDescription()": "WebListDescription()", + "WebListDescription": "WebListDescription()", + "Type": "Type" + } + } + ], + "WebListDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebListDescriptionMetadata()": "WebListDescriptionMetadata()", + "WebListDescriptionMetadata": "WebListDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebListDescriptionModule()": "WebListDescriptionModule()", + "WebListDescriptionModule": "WebListDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebListHeaderDescription()": "WebListHeaderDescription()", + "WebListHeaderDescription": "WebListHeaderDescription()", + "Type": "Type" + } + } + ], + "WebListHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebListHeaderDescriptionMetadata()": "WebListHeaderDescriptionMetadata()", + "WebListHeaderDescriptionMetadata": "WebListHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebListHeaderDescriptionModule()": "WebListHeaderDescriptionModule()", + "WebListHeaderDescriptionModule": "WebListHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListItemDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebListItemDescription()": "WebListItemDescription()", + "WebListItemDescription": "WebListItemDescription()", + "Selected": "Selected", + "Type": "Type" + } + } + ], + "WebListItemDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebListItemDescriptionMetadata()": "WebListItemDescriptionMetadata()", + "WebListItemDescriptionMetadata": "WebListItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebListItemDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebListItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebListItemDescriptionModule()": "WebListItemDescriptionModule()", + "WebListItemDescriptionModule": "WebListItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebMaskInputDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebMaskInputDescription", + "k": "class", + "s": "classes", + "m": { + "WebMaskInputDescription()": "WebMaskInputDescription()", + "WebMaskInputDescription": "WebMaskInputDescription()", + "ChangeRef": "ChangeRef", + "Mask": "Mask", + "Prompt": "Prompt", + "ReadOnly": "ReadOnly", + "Type": "Type", + "Value": "Value", + "ValueMode": "ValueMode" + } + } + ], + "WebMaskInputDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebMaskInputDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebMaskInputDescriptionMetadata()": "WebMaskInputDescriptionMetadata()", + "WebMaskInputDescriptionMetadata": "WebMaskInputDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebMaskInputDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebMaskInputDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebMaskInputDescriptionModule()": "WebMaskInputDescriptionModule()", + "WebMaskInputDescriptionModule": "WebMaskInputDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebMoveFloatingPaneActionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebMoveFloatingPaneActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebMoveFloatingPaneActionDescription()": "WebMoveFloatingPaneActionDescription()", + "WebMoveFloatingPaneActionDescription": "WebMoveFloatingPaneActionDescription()", + "ActionType": "ActionType", + "NewLocation": "NewLocation", + "OldLocation": "OldLocation", + "Type": "Type" + } + } + ], + "WebMoveFloatingPaneActionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebMoveFloatingPaneActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebMoveFloatingPaneActionDescriptionMetadata()": "WebMoveFloatingPaneActionDescriptionMetadata()", + "WebMoveFloatingPaneActionDescriptionMetadata": "WebMoveFloatingPaneActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebMoveTabActionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebMoveTabActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebMoveTabActionDescription()": "WebMoveTabActionDescription()", + "WebMoveTabActionDescription": "WebMoveTabActionDescription()", + "ActionType": "ActionType", + "NewIndex": "NewIndex", + "OldIndex": "OldIndex", + "Type": "Type" + } + } + ], + "WebMoveTabActionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebMoveTabActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebMoveTabActionDescriptionMetadata()": "WebMoveTabActionDescriptionMetadata()", + "WebMoveTabActionDescriptionMetadata": "WebMoveTabActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavbarDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavbarDescription", + "k": "class", + "s": "classes", + "m": { + "WebNavbarDescription()": "WebNavbarDescription()", + "WebNavbarDescription": "WebNavbarDescription()", + "Type": "Type" + } + } + ], + "WebNavbarDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNavbarDescriptionMetadata()": "WebNavbarDescriptionMetadata()", + "WebNavbarDescriptionMetadata": "WebNavbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebNavbarDescriptionModule()": "WebNavbarDescriptionModule()", + "WebNavbarDescriptionModule": "WebNavbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerDescription", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerDescription()": "WebNavDrawerDescription()", + "WebNavDrawerDescription": "WebNavDrawerDescription()", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "KeepOpenOnEscape": "KeepOpenOnEscape", + "Label": "Label", + "Open": "Open", + "Position": "Position", + "Type": "Type" + } + } + ], + "WebNavDrawerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerDescriptionMetadata()": "WebNavDrawerDescriptionMetadata()", + "WebNavDrawerDescriptionMetadata": "WebNavDrawerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerDescriptionModule()": "WebNavDrawerDescriptionModule()", + "WebNavDrawerDescriptionModule": "WebNavDrawerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerHeaderItemDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerHeaderItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerHeaderItemDescription()": "WebNavDrawerHeaderItemDescription()", + "WebNavDrawerHeaderItemDescription": "WebNavDrawerHeaderItemDescription()", + "Type": "Type" + } + } + ], + "WebNavDrawerHeaderItemDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerHeaderItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerHeaderItemDescriptionMetadata()": "WebNavDrawerHeaderItemDescriptionMetadata()", + "WebNavDrawerHeaderItemDescriptionMetadata": "WebNavDrawerHeaderItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerHeaderItemDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerHeaderItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerHeaderItemDescriptionModule()": "WebNavDrawerHeaderItemDescriptionModule()", + "WebNavDrawerHeaderItemDescriptionModule": "WebNavDrawerHeaderItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerItemDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerItemDescription()": "WebNavDrawerItemDescription()", + "WebNavDrawerItemDescription": "WebNavDrawerItemDescription()", + "Active": "Active", + "Disabled": "Disabled", + "Type": "Type" + } + } + ], + "WebNavDrawerItemDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerItemDescriptionMetadata()": "WebNavDrawerItemDescriptionMetadata()", + "WebNavDrawerItemDescriptionMetadata": "WebNavDrawerItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNavDrawerItemDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNavDrawerItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebNavDrawerItemDescriptionModule()": "WebNavDrawerItemDescriptionModule()", + "WebNavDrawerItemDescriptionModule": "WebNavDrawerItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNumberEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNumberEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebNumberEventArgsDescription()": "WebNumberEventArgsDescription()", + "WebNumberEventArgsDescription": "WebNumberEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebNumberEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNumberEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNumberEventArgsDescriptionMetadata()": "WebNumberEventArgsDescriptionMetadata()", + "WebNumberEventArgsDescriptionMetadata": "WebNumberEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNumberFilteringOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNumberFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebNumberFilteringOperandDescription()": "WebNumberFilteringOperandDescription()", + "WebNumberFilteringOperandDescription": "WebNumberFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebNumberFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNumberFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNumberFilteringOperandDescriptionMetadata()": "WebNumberFilteringOperandDescriptionMetadata()", + "WebNumberFilteringOperandDescriptionMetadata": "WebNumberFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebNumberSummaryOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNumberSummaryOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebNumberSummaryOperandDescription()": "WebNumberSummaryOperandDescription()", + "WebNumberSummaryOperandDescription": "WebNumberSummaryOperandDescription()", + "Type": "Type" + } + } + ], + "WebNumberSummaryOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebNumberSummaryOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebNumberSummaryOperandDescriptionMetadata()": "WebNumberSummaryOperandDescriptionMetadata()", + "WebNumberSummaryOperandDescriptionMetadata": "WebNumberSummaryOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebOverlayOutletDirectiveDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebOverlayOutletDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebOverlayOutletDirectiveDescription()": "WebOverlayOutletDirectiveDescription()", + "WebOverlayOutletDirectiveDescription": "WebOverlayOutletDirectiveDescription()", + "Type": "Type" + } + } + ], + "WebOverlayOutletDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebOverlayOutletDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebOverlayOutletDirectiveDescriptionMetadata()": "WebOverlayOutletDirectiveDescriptionMetadata()", + "WebOverlayOutletDirectiveDescriptionMetadata": "WebOverlayOutletDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebOverlaySettingsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebOverlaySettingsDescription", + "k": "class", + "s": "classes", + "m": { + "WebOverlaySettingsDescription()": "WebOverlaySettingsDescription()", + "WebOverlaySettingsDescription": "WebOverlaySettingsDescription()", + "CloseOnEscape": "CloseOnEscape", + "CloseOnOutsideClick": "CloseOnOutsideClick", + "Modal": "Modal", + "PositionStrategy": "PositionStrategy", + "ScrollStrategy": "ScrollStrategy", + "Target": "Target", + "Type": "Type" + } + } + ], + "WebOverlaySettingsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebOverlaySettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebOverlaySettingsDescriptionMetadata()": "WebOverlaySettingsDescriptionMetadata()", + "WebOverlaySettingsDescriptionMetadata": "WebOverlaySettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPageCancellableEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPageCancellableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPageCancellableEventArgsDescription()": "WebPageCancellableEventArgsDescription()", + "WebPageCancellableEventArgsDescription": "WebPageCancellableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPageCancellableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPageCancellableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPageCancellableEventArgsDescriptionMetadata()": "WebPageCancellableEventArgsDescriptionMetadata()", + "WebPageCancellableEventArgsDescriptionMetadata": "WebPageCancellableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPageCancellableEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPageCancellableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPageCancellableEventArgsDetailDescription()": "WebPageCancellableEventArgsDetailDescription()", + "WebPageCancellableEventArgsDetailDescription": "WebPageCancellableEventArgsDetailDescription()", + "Current": "Current", + "Next": "Next", + "Type": "Type" + } + } + ], + "WebPageCancellableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPageCancellableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPageCancellableEventArgsDetailDescriptionMetadata()": "WebPageCancellableEventArgsDetailDescriptionMetadata()", + "WebPageCancellableEventArgsDetailDescriptionMetadata": "WebPageCancellableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPageEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPageEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPageEventArgsDescription()": "WebPageEventArgsDescription()", + "WebPageEventArgsDescription": "WebPageEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPageEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPageEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPageEventArgsDescriptionMetadata()": "WebPageEventArgsDescriptionMetadata()", + "WebPageEventArgsDescriptionMetadata": "WebPageEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPageEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPageEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPageEventArgsDetailDescription()": "WebPageEventArgsDetailDescription()", + "WebPageEventArgsDetailDescription": "WebPageEventArgsDetailDescription()", + "Current": "Current", + "Previous": "Previous", + "Type": "Type" + } + } + ], + "WebPageEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPageEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPageEventArgsDetailDescriptionMetadata()": "WebPageEventArgsDetailDescriptionMetadata()", + "WebPageEventArgsDetailDescriptionMetadata": "WebPageEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaginatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaginatorDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorDescription()": "WebPaginatorDescription()", + "WebPaginatorDescription": "WebPaginatorDescription()", + "OverlaySettings": "OverlaySettings", + "Page": "Page", + "PageChangeRef": "PageChangeRef", + "PagingDoneRef": "PagingDoneRef", + "PagingRef": "PagingRef", + "PerPage": "PerPage", + "PerPageChangeRef": "PerPageChangeRef", + "ResourceStrings": "ResourceStrings", + "SelectOptions": "SelectOptions", + "TotalPages": "TotalPages", + "TotalRecords": "TotalRecords", + "Type": "Type" + } + } + ], + "WebPaginatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaginatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorDescriptionMetadata()": "WebPaginatorDescriptionMetadata()", + "WebPaginatorDescriptionMetadata": "WebPaginatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaginatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaginatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorDescriptionModule()": "WebPaginatorDescriptionModule()", + "WebPaginatorDescriptionModule": "WebPaginatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaginatorResourceStringsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaginatorResourceStringsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorResourceStringsDescription()": "WebPaginatorResourceStringsDescription()", + "WebPaginatorResourceStringsDescription": "WebPaginatorResourceStringsDescription()", + "Igx_paginator_first_page_button_text": "Igx_paginator_first_page_button_text", + "Igx_paginator_label": "Igx_paginator_label", + "Igx_paginator_last_page_button_text": "Igx_paginator_last_page_button_text", + "Igx_paginator_next_page_button_text": "Igx_paginator_next_page_button_text", + "Igx_paginator_pager_text": "Igx_paginator_pager_text", + "Igx_paginator_previous_page_button_text": "Igx_paginator_previous_page_button_text", + "Type": "Type" + } + } + ], + "WebPaginatorResourceStringsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaginatorResourceStringsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaginatorResourceStringsDescriptionMetadata()": "WebPaginatorResourceStringsDescriptionMetadata()", + "WebPaginatorResourceStringsDescriptionMetadata": "WebPaginatorResourceStringsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPagingStateDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPagingStateDescription", + "k": "class", + "s": "classes", + "m": { + "WebPagingStateDescription()": "WebPagingStateDescription()", + "WebPagingStateDescription": "WebPagingStateDescription()", + "Index": "Index", + "RecordsPerPage": "RecordsPerPage", + "Type": "Type" + } + } + ], + "WebPagingStateDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPagingStateDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPagingStateDescriptionMetadata()": "WebPagingStateDescriptionMetadata()", + "WebPagingStateDescriptionMetadata": "WebPagingStateDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneCloseEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneCloseEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneCloseEventArgsDescription()": "WebPaneCloseEventArgsDescription()", + "WebPaneCloseEventArgsDescription": "WebPaneCloseEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneCloseEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneCloseEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneCloseEventArgsDescriptionMetadata()": "WebPaneCloseEventArgsDescriptionMetadata()", + "WebPaneCloseEventArgsDescriptionMetadata": "WebPaneCloseEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneCloseEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneCloseEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneCloseEventArgsDetailDescription()": "WebPaneCloseEventArgsDetailDescription()", + "WebPaneCloseEventArgsDetailDescription": "WebPaneCloseEventArgsDetailDescription()", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPaneCloseEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneCloseEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneCloseEventArgsDetailDescriptionMetadata()": "WebPaneCloseEventArgsDetailDescriptionMetadata()", + "WebPaneCloseEventArgsDetailDescriptionMetadata": "WebPaneCloseEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragActionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragActionDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragActionDescription()": "WebPaneDragActionDescription()", + "WebPaneDragActionDescription": "WebPaneDragActionDescription()", + "Type": "Type" + } + } + ], + "WebPaneDragActionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragActionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragActionDescriptionMetadata()": "WebPaneDragActionDescriptionMetadata()", + "WebPaneDragActionDescriptionMetadata": "WebPaneDragActionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragEndEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragEndEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragEndEventArgsDescription()": "WebPaneDragEndEventArgsDescription()", + "WebPaneDragEndEventArgsDescription": "WebPaneDragEndEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneDragEndEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragEndEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragEndEventArgsDescriptionMetadata()": "WebPaneDragEndEventArgsDescriptionMetadata()", + "WebPaneDragEndEventArgsDescriptionMetadata": "WebPaneDragEndEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragEndEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragEndEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragEndEventArgsDetailDescription()": "WebPaneDragEndEventArgsDetailDescription()", + "WebPaneDragEndEventArgsDetailDescription": "WebPaneDragEndEventArgsDetailDescription()", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPaneDragEndEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragEndEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragEndEventArgsDetailDescriptionMetadata()": "WebPaneDragEndEventArgsDetailDescriptionMetadata()", + "WebPaneDragEndEventArgsDetailDescriptionMetadata": "WebPaneDragEndEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragOverEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragOverEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragOverEventArgsDescription()": "WebPaneDragOverEventArgsDescription()", + "WebPaneDragOverEventArgsDescription": "WebPaneDragOverEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneDragOverEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragOverEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragOverEventArgsDescriptionMetadata()": "WebPaneDragOverEventArgsDescriptionMetadata()", + "WebPaneDragOverEventArgsDescriptionMetadata": "WebPaneDragOverEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragOverEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragOverEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragOverEventArgsDetailDescription()": "WebPaneDragOverEventArgsDetailDescription()", + "WebPaneDragOverEventArgsDetailDescription": "WebPaneDragOverEventArgsDetailDescription()", + "Action": "Action", + "IsValid": "IsValid", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPaneDragOverEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragOverEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragOverEventArgsDetailDescriptionMetadata()": "WebPaneDragOverEventArgsDetailDescriptionMetadata()", + "WebPaneDragOverEventArgsDetailDescriptionMetadata": "WebPaneDragOverEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragStartEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragStartEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragStartEventArgsDescription()": "WebPaneDragStartEventArgsDescription()", + "WebPaneDragStartEventArgsDescription": "WebPaneDragStartEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneDragStartEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragStartEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragStartEventArgsDescriptionMetadata()": "WebPaneDragStartEventArgsDescriptionMetadata()", + "WebPaneDragStartEventArgsDescriptionMetadata": "WebPaneDragStartEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneDragStartEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragStartEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragStartEventArgsDetailDescription()": "WebPaneDragStartEventArgsDetailDescription()", + "WebPaneDragStartEventArgsDetailDescription": "WebPaneDragStartEventArgsDetailDescription()", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPaneDragStartEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneDragStartEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneDragStartEventArgsDetailDescriptionMetadata()": "WebPaneDragStartEventArgsDetailDescriptionMetadata()", + "WebPaneDragStartEventArgsDetailDescriptionMetadata": "WebPaneDragStartEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneFlyoutEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneFlyoutEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneFlyoutEventArgsDescription()": "WebPaneFlyoutEventArgsDescription()", + "WebPaneFlyoutEventArgsDescription": "WebPaneFlyoutEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneFlyoutEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneFlyoutEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneFlyoutEventArgsDescriptionMetadata()": "WebPaneFlyoutEventArgsDescriptionMetadata()", + "WebPaneFlyoutEventArgsDescriptionMetadata": "WebPaneFlyoutEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneFlyoutEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneFlyoutEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneFlyoutEventArgsDetailDescription()": "WebPaneFlyoutEventArgsDetailDescription()", + "WebPaneFlyoutEventArgsDetailDescription": "WebPaneFlyoutEventArgsDetailDescription()", + "IsOpen": "IsOpen", + "Pane": "Pane", + "Type": "Type" + } + } + ], + "WebPaneFlyoutEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneFlyoutEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneFlyoutEventArgsDetailDescriptionMetadata()": "WebPaneFlyoutEventArgsDetailDescriptionMetadata()", + "WebPaneFlyoutEventArgsDetailDescriptionMetadata": "WebPaneFlyoutEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneHeaderConnectionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneHeaderConnectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderConnectionEventArgsDescription()": "WebPaneHeaderConnectionEventArgsDescription()", + "WebPaneHeaderConnectionEventArgsDescription": "WebPaneHeaderConnectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneHeaderConnectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneHeaderConnectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderConnectionEventArgsDescriptionMetadata()": "WebPaneHeaderConnectionEventArgsDescriptionMetadata()", + "WebPaneHeaderConnectionEventArgsDescriptionMetadata": "WebPaneHeaderConnectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneHeaderConnectionEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneHeaderConnectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderConnectionEventArgsDetailDescription()": "WebPaneHeaderConnectionEventArgsDetailDescription()", + "WebPaneHeaderConnectionEventArgsDetailDescription": "WebPaneHeaderConnectionEventArgsDetailDescription()", + "Element": "Element", + "Pane": "Pane", + "Type": "Type" + } + } + ], + "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata()": "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata()", + "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata": "WebPaneHeaderConnectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneHeaderElementDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneHeaderElementDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderElementDescription()": "WebPaneHeaderElementDescription()", + "WebPaneHeaderElementDescription": "WebPaneHeaderElementDescription()", + "DragService": "DragService", + "Type": "Type" + } + } + ], + "WebPaneHeaderElementDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneHeaderElementDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderElementDescriptionMetadata()": "WebPaneHeaderElementDescriptionMetadata()", + "WebPaneHeaderElementDescriptionMetadata": "WebPaneHeaderElementDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneHeaderElementDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneHeaderElementDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPaneHeaderElementDescriptionModule()": "WebPaneHeaderElementDescriptionModule()", + "WebPaneHeaderElementDescriptionModule": "WebPaneHeaderElementDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneNavigatorMetadataDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneNavigatorMetadataDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneNavigatorMetadataDescription()": "WebPaneNavigatorMetadataDescription()", + "WebPaneNavigatorMetadataDescription": "WebPaneNavigatorMetadataDescription()", + "ActiveDocuments": "ActiveDocuments", + "ActivePanes": "ActivePanes", + "InitialIndex": "InitialIndex", + "PreviousActivePaneIndex": "PreviousActivePaneIndex", + "Type": "Type" + } + } + ], + "WebPaneNavigatorMetadataDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneNavigatorMetadataDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneNavigatorMetadataDescriptionMetadata()": "WebPaneNavigatorMetadataDescriptionMetadata()", + "WebPaneNavigatorMetadataDescriptionMetadata": "WebPaneNavigatorMetadataDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPanePinnedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPanePinnedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPanePinnedEventArgsDescription()": "WebPanePinnedEventArgsDescription()", + "WebPanePinnedEventArgsDescription": "WebPanePinnedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPanePinnedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPanePinnedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPanePinnedEventArgsDescriptionMetadata()": "WebPanePinnedEventArgsDescriptionMetadata()", + "WebPanePinnedEventArgsDescriptionMetadata": "WebPanePinnedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPanePinnedEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPanePinnedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPanePinnedEventArgsDetailDescription()": "WebPanePinnedEventArgsDetailDescription()", + "WebPanePinnedEventArgsDetailDescription": "WebPanePinnedEventArgsDetailDescription()", + "Location": "Location", + "NewValue": "NewValue", + "Panes": "Panes", + "SourcePane": "SourcePane", + "Type": "Type" + } + } + ], + "WebPanePinnedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPanePinnedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPanePinnedEventArgsDetailDescriptionMetadata()": "WebPanePinnedEventArgsDetailDescriptionMetadata()", + "WebPanePinnedEventArgsDetailDescriptionMetadata": "WebPanePinnedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneScrollEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneScrollEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneScrollEventArgsDescription()": "WebPaneScrollEventArgsDescription()", + "WebPaneScrollEventArgsDescription": "WebPaneScrollEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPaneScrollEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneScrollEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneScrollEventArgsDescriptionMetadata()": "WebPaneScrollEventArgsDescriptionMetadata()", + "WebPaneScrollEventArgsDescriptionMetadata": "WebPaneScrollEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPaneScrollEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneScrollEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPaneScrollEventArgsDetailDescription()": "WebPaneScrollEventArgsDetailDescription()", + "WebPaneScrollEventArgsDetailDescription": "WebPaneScrollEventArgsDetailDescription()", + "Pane": "Pane", + "Type": "Type" + } + } + ], + "WebPaneScrollEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPaneScrollEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPaneScrollEventArgsDetailDescriptionMetadata()": "WebPaneScrollEventArgsDetailDescriptionMetadata()", + "WebPaneScrollEventArgsDetailDescriptionMetadata": "WebPaneScrollEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinColumnCancellableEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinColumnCancellableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnCancellableEventArgsDescription()": "WebPinColumnCancellableEventArgsDescription()", + "WebPinColumnCancellableEventArgsDescription": "WebPinColumnCancellableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPinColumnCancellableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinColumnCancellableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnCancellableEventArgsDescriptionMetadata()": "WebPinColumnCancellableEventArgsDescriptionMetadata()", + "WebPinColumnCancellableEventArgsDescriptionMetadata": "WebPinColumnCancellableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinColumnCancellableEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinColumnCancellableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnCancellableEventArgsDetailDescription()": "WebPinColumnCancellableEventArgsDetailDescription()", + "WebPinColumnCancellableEventArgsDetailDescription": "WebPinColumnCancellableEventArgsDetailDescription()", + "Column": "Column", + "InsertAtIndex": "InsertAtIndex", + "IsPinned": "IsPinned", + "Type": "Type" + } + } + ], + "WebPinColumnCancellableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinColumnCancellableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnCancellableEventArgsDetailDescriptionMetadata()": "WebPinColumnCancellableEventArgsDetailDescriptionMetadata()", + "WebPinColumnCancellableEventArgsDetailDescriptionMetadata": "WebPinColumnCancellableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinColumnEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinColumnEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnEventArgsDescription()": "WebPinColumnEventArgsDescription()", + "WebPinColumnEventArgsDescription": "WebPinColumnEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPinColumnEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinColumnEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnEventArgsDescriptionMetadata()": "WebPinColumnEventArgsDescriptionMetadata()", + "WebPinColumnEventArgsDescriptionMetadata": "WebPinColumnEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinColumnEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinColumnEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnEventArgsDetailDescription()": "WebPinColumnEventArgsDetailDescription()", + "WebPinColumnEventArgsDetailDescription": "WebPinColumnEventArgsDetailDescription()", + "Column": "Column", + "InsertAtIndex": "InsertAtIndex", + "IsPinned": "IsPinned", + "Type": "Type" + } + } + ], + "WebPinColumnEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinColumnEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinColumnEventArgsDetailDescriptionMetadata()": "WebPinColumnEventArgsDetailDescriptionMetadata()", + "WebPinColumnEventArgsDetailDescriptionMetadata": "WebPinColumnEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinningConfigDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinningConfigDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinningConfigDescription()": "WebPinningConfigDescription()", + "WebPinningConfigDescription": "WebPinningConfigDescription()", + "Columns": "Columns", + "Rows": "Rows", + "Type": "Type" + } + } + ], + "WebPinningConfigDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinningConfigDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinningConfigDescriptionMetadata()": "WebPinningConfigDescriptionMetadata()", + "WebPinningConfigDescriptionMetadata": "WebPinningConfigDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinRowEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinRowEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinRowEventArgsDescription()": "WebPinRowEventArgsDescription()", + "WebPinRowEventArgsDescription": "WebPinRowEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPinRowEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinRowEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinRowEventArgsDescriptionMetadata()": "WebPinRowEventArgsDescriptionMetadata()", + "WebPinRowEventArgsDescriptionMetadata": "WebPinRowEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPinRowEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinRowEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPinRowEventArgsDetailDescription()": "WebPinRowEventArgsDetailDescription()", + "WebPinRowEventArgsDetailDescription": "WebPinRowEventArgsDetailDescription()", + "Cancel": "Cancel", + "InsertAtIndex": "InsertAtIndex", + "IsPinned": "IsPinned", + "Owner": "Owner", + "Row": "Row", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type" + } + } + ], + "WebPinRowEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPinRowEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPinRowEventArgsDetailDescriptionMetadata()": "WebPinRowEventArgsDetailDescriptionMetadata()", + "WebPinRowEventArgsDetailDescriptionMetadata": "WebPinRowEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotAggregatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotAggregatorDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotAggregatorDescription()": "WebPivotAggregatorDescription()", + "WebPivotAggregatorDescription": "WebPivotAggregatorDescription()", + "AggregatorName": "AggregatorName", + "AggregatorRef": "AggregatorRef", + "Key": "Key", + "Label": "Label", + "Type": "Type" + } + } + ], + "WebPivotAggregatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotAggregatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotAggregatorDescriptionMetadata()": "WebPivotAggregatorDescriptionMetadata()", + "WebPivotAggregatorDescriptionMetadata": "WebPivotAggregatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotConfigurationChangedEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotConfigurationChangedEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationChangedEventArgsDescription()": "WebPivotConfigurationChangedEventArgsDescription()", + "WebPivotConfigurationChangedEventArgsDescription": "WebPivotConfigurationChangedEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPivotConfigurationChangedEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotConfigurationChangedEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationChangedEventArgsDescriptionMetadata()": "WebPivotConfigurationChangedEventArgsDescriptionMetadata()", + "WebPivotConfigurationChangedEventArgsDescriptionMetadata": "WebPivotConfigurationChangedEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotConfigurationChangedEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotConfigurationChangedEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationChangedEventArgsDetailDescription()": "WebPivotConfigurationChangedEventArgsDetailDescription()", + "WebPivotConfigurationChangedEventArgsDetailDescription": "WebPivotConfigurationChangedEventArgsDetailDescription()", + "PivotConfiguration": "PivotConfiguration", + "Type": "Type" + } + } + ], + "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata()": "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata()", + "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata": "WebPivotConfigurationChangedEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotConfigurationDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotConfigurationDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationDescription()": "WebPivotConfigurationDescription()", + "WebPivotConfigurationDescription": "WebPivotConfigurationDescription()", + "ColumnStrategy": "ColumnStrategy", + "Columns": "Columns", + "Filters": "Filters", + "PivotKeys": "PivotKeys", + "RowStrategy": "RowStrategy", + "Rows": "Rows", + "Type": "Type", + "Values": "Values" + } + } + ], + "WebPivotConfigurationDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotConfigurationDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotConfigurationDescriptionMetadata()": "WebPivotConfigurationDescriptionMetadata()", + "WebPivotConfigurationDescriptionMetadata": "WebPivotConfigurationDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDataSelectorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDataSelectorDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDataSelectorDescription()": "WebPivotDataSelectorDescription()", + "WebPivotDataSelectorDescription": "WebPivotDataSelectorDescription()", + "ColumnsExpanded": "ColumnsExpanded", + "ColumnsExpandedChangeRef": "ColumnsExpandedChangeRef", + "FiltersExpanded": "FiltersExpanded", + "FiltersExpandedChangeRef": "FiltersExpandedChangeRef", + "GridRef": "GridRef", + "RowsExpanded": "RowsExpanded", + "RowsExpandedChangeRef": "RowsExpandedChangeRef", + "Type": "Type", + "ValuesExpanded": "ValuesExpanded", + "ValuesExpandedChangeRef": "ValuesExpandedChangeRef" + } + } + ], + "WebPivotDataSelectorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDataSelectorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDataSelectorDescriptionMetadata()": "WebPivotDataSelectorDescriptionMetadata()", + "WebPivotDataSelectorDescriptionMetadata": "WebPivotDataSelectorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDataSelectorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDataSelectorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPivotDataSelectorDescriptionModule()": "WebPivotDataSelectorDescriptionModule()", + "WebPivotDataSelectorDescriptionModule": "WebPivotDataSelectorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDateDimensionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDateDimensionDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionDescription()": "WebPivotDateDimensionDescription()", + "WebPivotDateDimensionDescription": "WebPivotDateDimensionDescription()", + "BaseDimension": "BaseDimension", + "Options": "Options", + "ResourceStringsRef": "ResourceStringsRef", + "Type": "Type" + } + } + ], + "WebPivotDateDimensionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDateDimensionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionDescriptionMetadata()": "WebPivotDateDimensionDescriptionMetadata()", + "WebPivotDateDimensionDescriptionMetadata": "WebPivotDateDimensionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDateDimensionDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDateDimensionDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionDescriptionModule()": "WebPivotDateDimensionDescriptionModule()", + "WebPivotDateDimensionDescriptionModule": "WebPivotDateDimensionDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDateDimensionOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDateDimensionOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionOptionsDescription()": "WebPivotDateDimensionOptionsDescription()", + "WebPivotDateDimensionOptionsDescription": "WebPivotDateDimensionOptionsDescription()", + "FullDate": "FullDate", + "Months": "Months", + "Quarters": "Quarters", + "Total": "Total", + "Type": "Type", + "Years": "Years" + } + } + ], + "WebPivotDateDimensionOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDateDimensionOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDateDimensionOptionsDescriptionMetadata()": "WebPivotDateDimensionOptionsDescriptionMetadata()", + "WebPivotDateDimensionOptionsDescriptionMetadata": "WebPivotDateDimensionOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDimensionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDimensionDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionDescription()": "WebPivotDimensionDescription()", + "WebPivotDimensionDescription": "WebPivotDimensionDescription()", + "ChildLevel": "ChildLevel", + "DataType": "DataType", + "DisplayName": "DisplayName", + "Enabled": "Enabled", + "Filter": "Filter", + "HorizontalSummary": "HorizontalSummary", + "Level": "Level", + "MemberFunctionRef": "MemberFunctionRef", + "MemberName": "MemberName", + "SortDirection": "SortDirection", + "Sortable": "Sortable", + "Type": "Type", + "Width": "Width" + } + } + ], + "WebPivotDimensionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDimensionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionDescriptionMetadata()": "WebPivotDimensionDescriptionMetadata()", + "WebPivotDimensionDescriptionMetadata": "WebPivotDimensionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDimensionDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDimensionDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionDetailDescription()": "WebPivotDimensionDetailDescription()", + "WebPivotDimensionDetailDescription": "WebPivotDimensionDetailDescription()", + "ChildLevel": "ChildLevel", + "DataType": "DataType", + "DisplayName": "DisplayName", + "Enabled": "Enabled", + "Filter": "Filter", + "HorizontalSummary": "HorizontalSummary", + "Level": "Level", + "MemberFunctionRef": "MemberFunctionRef", + "MemberName": "MemberName", + "SortDirection": "SortDirection", + "Sortable": "Sortable", + "Type": "Type", + "Width": "Width" + } + } + ], + "WebPivotDimensionDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDimensionDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionDetailDescriptionMetadata()": "WebPivotDimensionDetailDescriptionMetadata()", + "WebPivotDimensionDetailDescriptionMetadata": "WebPivotDimensionDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDimensionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDimensionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionEventArgsDescription()": "WebPivotDimensionEventArgsDescription()", + "WebPivotDimensionEventArgsDescription": "WebPivotDimensionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPivotDimensionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDimensionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionEventArgsDescriptionMetadata()": "WebPivotDimensionEventArgsDescriptionMetadata()", + "WebPivotDimensionEventArgsDescriptionMetadata": "WebPivotDimensionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotDimensionStrategyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDimensionStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionStrategyDescription()": "WebPivotDimensionStrategyDescription()", + "WebPivotDimensionStrategyDescription": "WebPivotDimensionStrategyDescription()", + "Type": "Type" + } + } + ], + "WebPivotDimensionStrategyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotDimensionStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotDimensionStrategyDescriptionMetadata()": "WebPivotDimensionStrategyDescriptionMetadata()", + "WebPivotDimensionStrategyDescriptionMetadata": "WebPivotDimensionStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridColumnDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridColumnDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridColumnDescription()": "WebPivotGridColumnDescription()", + "WebPivotGridColumnDescription": "WebPivotGridColumnDescription()", + "Dimensions": "Dimensions", + "Field": "Field", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebPivotGridColumnDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridColumnDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridColumnDescriptionMetadata()": "WebPivotGridColumnDescriptionMetadata()", + "WebPivotGridColumnDescriptionMetadata": "WebPivotGridColumnDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridDescription()": "WebPivotGridDescription()", + "WebPivotGridDescription": "WebPivotGridDescription()", + "AutoGenerateConfig": "AutoGenerateConfig", + "DataRef": "DataRef", + "DefaultExpandState": "DefaultExpandState", + "DimensionInitRef": "DimensionInitRef", + "DimensionsChangeRef": "DimensionsChangeRef", + "DimensionsSortingExpressionsChangeRef": "DimensionsSortingExpressionsChangeRef", + "EmptyPivotGridTemplateRef": "EmptyPivotGridTemplateRef", + "PivotConfiguration": "PivotConfiguration", + "PivotConfigurationChangeRef": "PivotConfigurationChangeRef", + "PivotUI": "PivotUI", + "RowDimensionHeaderTemplateRef": "RowDimensionHeaderTemplateRef", + "SuperCompactMode": "SuperCompactMode", + "Type": "Type", + "ValueChipTemplateRef": "ValueChipTemplateRef", + "ValueInitRef": "ValueInitRef", + "ValuesChangeRef": "ValuesChangeRef" + } + } + ], + "WebPivotGridDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridDescriptionMetadata()": "WebPivotGridDescriptionMetadata()", + "WebPivotGridDescriptionMetadata": "WebPivotGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridDescriptionModule()": "WebPivotGridDescriptionModule()", + "WebPivotGridDescriptionModule": "WebPivotGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridRecordDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridRecordDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridRecordDescription()": "WebPivotGridRecordDescription()", + "WebPivotGridRecordDescription": "WebPivotGridRecordDescription()", + "DataIndex": "DataIndex", + "Dimensions": "Dimensions", + "Level": "Level", + "RecordsRef": "RecordsRef", + "TotalRecordDimensionName": "TotalRecordDimensionName", + "Type": "Type" + } + } + ], + "WebPivotGridRecordDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridRecordDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridRecordDescriptionMetadata()": "WebPivotGridRecordDescriptionMetadata()", + "WebPivotGridRecordDescriptionMetadata": "WebPivotGridRecordDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotGridValueTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridValueTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridValueTemplateContextDescription()": "WebPivotGridValueTemplateContextDescription()", + "WebPivotGridValueTemplateContextDescription": "WebPivotGridValueTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebPivotGridValueTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotGridValueTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotGridValueTemplateContextDescriptionMetadata()": "WebPivotGridValueTemplateContextDescriptionMetadata()", + "WebPivotGridValueTemplateContextDescriptionMetadata": "WebPivotGridValueTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotKeysDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotKeysDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotKeysDescription()": "WebPivotKeysDescription()", + "WebPivotKeysDescription": "WebPivotKeysDescription()", + "Aggregations": "Aggregations", + "Children": "Children", + "ColumnDimensionSeparator": "ColumnDimensionSeparator", + "Level": "Level", + "Records": "Records", + "RowDimensionSeparator": "RowDimensionSeparator", + "Type": "Type" + } + } + ], + "WebPivotKeysDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotKeysDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotKeysDescriptionMetadata()": "WebPivotKeysDescriptionMetadata()", + "WebPivotKeysDescriptionMetadata": "WebPivotKeysDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotUISettingsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotUISettingsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotUISettingsDescription()": "WebPivotUISettingsDescription()", + "WebPivotUISettingsDescription": "WebPivotUISettingsDescription()", + "HorizontalSummariesPosition": "HorizontalSummariesPosition", + "RowLayout": "RowLayout", + "ShowConfiguration": "ShowConfiguration", + "ShowRowHeaders": "ShowRowHeaders", + "Type": "Type" + } + } + ], + "WebPivotUISettingsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotUISettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotUISettingsDescriptionMetadata()": "WebPivotUISettingsDescriptionMetadata()", + "WebPivotUISettingsDescriptionMetadata": "WebPivotUISettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotValueDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotValueDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueDescription()": "WebPivotValueDescription()", + "WebPivotValueDescription": "WebPivotValueDescription()", + "Aggregate": "Aggregate", + "AggregateList": "AggregateList", + "DataType": "DataType", + "DisplayName": "DisplayName", + "Enabled": "Enabled", + "FormatterRef": "FormatterRef", + "Member": "Member", + "Styles": "Styles", + "Type": "Type" + } + } + ], + "WebPivotValueDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueDescriptionMetadata()": "WebPivotValueDescriptionMetadata()", + "WebPivotValueDescriptionMetadata": "WebPivotValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotValueDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotValueDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueDetailDescription()": "WebPivotValueDetailDescription()", + "WebPivotValueDetailDescription": "WebPivotValueDetailDescription()", + "Aggregate": "Aggregate", + "AggregateList": "AggregateList", + "DataType": "DataType", + "DisplayName": "DisplayName", + "Enabled": "Enabled", + "FormatterRef": "FormatterRef", + "Member": "Member", + "Styles": "Styles", + "Type": "Type" + } + } + ], + "WebPivotValueDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotValueDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueDetailDescriptionMetadata()": "WebPivotValueDetailDescriptionMetadata()", + "WebPivotValueDetailDescriptionMetadata": "WebPivotValueDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPivotValueEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueEventArgsDescription()": "WebPivotValueEventArgsDescription()", + "WebPivotValueEventArgsDescription": "WebPivotValueEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebPivotValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPivotValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPivotValueEventArgsDescriptionMetadata()": "WebPivotValueEventArgsDescriptionMetadata()", + "WebPivotValueEventArgsDescriptionMetadata": "WebPivotValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPositionSettingsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPositionSettingsDescription", + "k": "class", + "s": "classes", + "m": { + "WebPositionSettingsDescription()": "WebPositionSettingsDescription()", + "WebPositionSettingsDescription": "WebPositionSettingsDescription()", + "HorizontalDirection": "HorizontalDirection", + "HorizontalStartPoint": "HorizontalStartPoint", + "MinSize": "MinSize", + "Offset": "Offset", + "Type": "Type", + "VerticalDirection": "VerticalDirection", + "VerticalStartPoint": "VerticalStartPoint" + } + } + ], + "WebPositionSettingsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPositionSettingsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPositionSettingsDescriptionMetadata()": "WebPositionSettingsDescriptionMetadata()", + "WebPositionSettingsDescriptionMetadata": "WebPositionSettingsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebPositionStrategyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPositionStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebPositionStrategyDescription()": "WebPositionStrategyDescription()", + "WebPositionStrategyDescription": "WebPositionStrategyDescription()", + "Settings": "Settings", + "Type": "Type" + } + } + ], + "WebPositionStrategyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebPositionStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebPositionStrategyDescriptionMetadata()": "WebPositionStrategyDescriptionMetadata()", + "WebPositionStrategyDescriptionMetadata": "WebPositionStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebProgressBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebProgressBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebProgressBaseDescription()": "WebProgressBaseDescription()", + "WebProgressBaseDescription": "WebProgressBaseDescription()", + "AnimationDuration": "AnimationDuration", + "HideLabel": "HideLabel", + "Indeterminate": "Indeterminate", + "LabelFormat": "LabelFormat", + "Max": "Max", + "Type": "Type", + "Value": "Value", + "Variant": "Variant" + } + } + ], + "WebProgressBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebProgressBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebProgressBaseDescriptionMetadata()": "WebProgressBaseDescriptionMetadata()", + "WebProgressBaseDescriptionMetadata": "WebProgressBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebQueryBuilderDescription", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderDescription()": "WebQueryBuilderDescription()", + "WebQueryBuilderDescription": "WebQueryBuilderDescription()", + "DisableEntityChange": "DisableEntityChange", + "DisableReturnFieldsChange": "DisableReturnFieldsChange", + "Entities": "Entities", + "ExpressionTree": "ExpressionTree", + "ExpressionTreeChangeRef": "ExpressionTreeChangeRef", + "Locale": "Locale", + "QueryBuilderHeaderCollection": "QueryBuilderHeaderCollection", + "SearchValueTemplateRef": "SearchValueTemplateRef", + "ShowEntityChangeDialog": "ShowEntityChangeDialog", + "Type": "Type" + } + } + ], + "WebQueryBuilderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebQueryBuilderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderDescriptionMetadata()": "WebQueryBuilderDescriptionMetadata()", + "WebQueryBuilderDescriptionMetadata": "WebQueryBuilderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebQueryBuilderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderDescriptionModule()": "WebQueryBuilderDescriptionModule()", + "WebQueryBuilderDescriptionModule": "WebQueryBuilderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebQueryBuilderHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderHeaderDescription()": "WebQueryBuilderHeaderDescription()", + "WebQueryBuilderHeaderDescription": "WebQueryBuilderHeaderDescription()", + "ShowLegend": "ShowLegend", + "Title": "Title", + "Type": "Type" + } + } + ], + "WebQueryBuilderHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebQueryBuilderHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderHeaderDescriptionMetadata()": "WebQueryBuilderHeaderDescriptionMetadata()", + "WebQueryBuilderHeaderDescriptionMetadata": "WebQueryBuilderHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebQueryBuilderHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderHeaderDescriptionModule()": "WebQueryBuilderHeaderDescriptionModule()", + "WebQueryBuilderHeaderDescriptionModule": "WebQueryBuilderHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebQueryBuilderSearchValueContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebQueryBuilderSearchValueContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderSearchValueContextDescription()": "WebQueryBuilderSearchValueContextDescription()", + "WebQueryBuilderSearchValueContextDescription": "WebQueryBuilderSearchValueContextDescription()", + "Implicit": "Implicit", + "SelectedCondition": "SelectedCondition", + "SelectedField": "SelectedField", + "Type": "Type" + } + } + ], + "WebQueryBuilderSearchValueContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebQueryBuilderSearchValueContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebQueryBuilderSearchValueContextDescriptionMetadata()": "WebQueryBuilderSearchValueContextDescriptionMetadata()", + "WebQueryBuilderSearchValueContextDescriptionMetadata": "WebQueryBuilderSearchValueContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRadioChangeEventArgsDescription()": "WebRadioChangeEventArgsDescription()", + "WebRadioChangeEventArgsDescription": "WebRadioChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRadioChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRadioChangeEventArgsDescriptionMetadata()": "WebRadioChangeEventArgsDescriptionMetadata()", + "WebRadioChangeEventArgsDescriptionMetadata": "WebRadioChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioChangeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioChangeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRadioChangeEventArgsDetailDescription()": "WebRadioChangeEventArgsDetailDescription()", + "WebRadioChangeEventArgsDetailDescription": "WebRadioChangeEventArgsDetailDescription()", + "Checked": "Checked", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebRadioChangeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioChangeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRadioChangeEventArgsDetailDescriptionMetadata()": "WebRadioChangeEventArgsDetailDescriptionMetadata()", + "WebRadioChangeEventArgsDetailDescriptionMetadata": "WebRadioChangeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioDescription", + "k": "class", + "s": "classes", + "m": { + "WebRadioDescription()": "WebRadioDescription()", + "WebRadioDescription": "WebRadioDescription()", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "Checked": "Checked", + "DefaultChecked": "DefaultChecked", + "Disabled": "Disabled", + "FocusRef": "FocusRef", + "Invalid": "Invalid", + "LabelPosition": "LabelPosition", + "Required": "Required", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebRadioDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRadioDescriptionMetadata()": "WebRadioDescriptionMetadata()", + "WebRadioDescriptionMetadata": "WebRadioDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRadioDescriptionModule()": "WebRadioDescriptionModule()", + "WebRadioDescriptionModule": "WebRadioDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebRadioGroupDescription()": "WebRadioGroupDescription()", + "WebRadioGroupDescription": "WebRadioGroupDescription()", + "Alignment": "Alignment", + "ChangeRef": "ChangeRef", + "DefaultValue": "DefaultValue", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebRadioGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRadioGroupDescriptionMetadata()": "WebRadioGroupDescriptionMetadata()", + "WebRadioGroupDescriptionMetadata": "WebRadioGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRadioGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRadioGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRadioGroupDescriptionModule()": "WebRadioGroupDescriptionModule()", + "WebRadioGroupDescriptionModule": "WebRadioGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRangeSliderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRangeSliderDescription", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderDescription()": "WebRangeSliderDescription()", + "WebRangeSliderDescription": "WebRangeSliderDescription()", + "ChangeRef": "ChangeRef", + "InputRef": "InputRef", + "Lower": "Lower", + "ThumbLabelLower": "ThumbLabelLower", + "ThumbLabelUpper": "ThumbLabelUpper", + "Type": "Type", + "Upper": "Upper" + } + } + ], + "WebRangeSliderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRangeSliderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderDescriptionMetadata()": "WebRangeSliderDescriptionMetadata()", + "WebRangeSliderDescriptionMetadata": "WebRangeSliderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRangeSliderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRangeSliderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderDescriptionModule()": "WebRangeSliderDescriptionModule()", + "WebRangeSliderDescriptionModule": "WebRangeSliderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRangeSliderValueDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRangeSliderValueDescription", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderValueDescription()": "WebRangeSliderValueDescription()", + "WebRangeSliderValueDescription": "WebRangeSliderValueDescription()", + "Lower": "Lower", + "Type": "Type", + "Upper": "Upper" + } + } + ], + "WebRangeSliderValueDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRangeSliderValueDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderValueDescriptionMetadata()": "WebRangeSliderValueDescriptionMetadata()", + "WebRangeSliderValueDescriptionMetadata": "WebRangeSliderValueDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRangeSliderValueEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRangeSliderValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderValueEventArgsDescription()": "WebRangeSliderValueEventArgsDescription()", + "WebRangeSliderValueEventArgsDescription": "WebRangeSliderValueEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRangeSliderValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRangeSliderValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRangeSliderValueEventArgsDescriptionMetadata()": "WebRangeSliderValueEventArgsDescriptionMetadata()", + "WebRangeSliderValueEventArgsDescriptionMetadata": "WebRangeSliderValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRatingDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRatingDescription", + "k": "class", + "s": "classes", + "m": { + "WebRatingDescription()": "WebRatingDescription()", + "WebRatingDescription": "WebRatingDescription()", + "AllowReset": "AllowReset", + "ChangeRef": "ChangeRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "HoverPreview": "HoverPreview", + "HoverRef": "HoverRef", + "Invalid": "Invalid", + "Label": "Label", + "Max": "Max", + "ReadOnly": "ReadOnly", + "Single": "Single", + "Step": "Step", + "Type": "Type", + "Value": "Value", + "ValueFormat": "ValueFormat" + } + } + ], + "WebRatingDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRatingDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRatingDescriptionMetadata()": "WebRatingDescriptionMetadata()", + "WebRatingDescriptionMetadata": "WebRatingDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRatingDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRatingDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRatingDescriptionModule()": "WebRatingDescriptionModule()", + "WebRatingDescriptionModule": "WebRatingDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRatingSymbolDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRatingSymbolDescription", + "k": "class", + "s": "classes", + "m": { + "WebRatingSymbolDescription()": "WebRatingSymbolDescription()", + "WebRatingSymbolDescription": "WebRatingSymbolDescription()", + "Type": "Type" + } + } + ], + "WebRatingSymbolDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRatingSymbolDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRatingSymbolDescriptionMetadata()": "WebRatingSymbolDescriptionMetadata()", + "WebRatingSymbolDescriptionMetadata": "WebRatingSymbolDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRatingSymbolDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRatingSymbolDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRatingSymbolDescriptionModule()": "WebRatingSymbolDescriptionModule()", + "WebRatingSymbolDescriptionModule": "WebRatingSymbolDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRippleDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRippleDescription", + "k": "class", + "s": "classes", + "m": { + "WebRippleDescription()": "WebRippleDescription()", + "WebRippleDescription": "WebRippleDescription()", + "Type": "Type" + } + } + ], + "WebRippleDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRippleDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRippleDescriptionMetadata()": "WebRippleDescriptionMetadata()", + "WebRippleDescriptionMetadata": "WebRippleDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRippleDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRippleDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRippleDescriptionModule()": "WebRippleDescriptionModule()", + "WebRippleDescriptionModule": "WebRippleDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDataCancelableEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDataCancelableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDataCancelableEventArgsDescription()": "WebRowDataCancelableEventArgsDescription()", + "WebRowDataCancelableEventArgsDescription": "WebRowDataCancelableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowDataCancelableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDataCancelableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDataCancelableEventArgsDescriptionMetadata()": "WebRowDataCancelableEventArgsDescriptionMetadata()", + "WebRowDataCancelableEventArgsDescriptionMetadata": "WebRowDataCancelableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDataCancelableEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDataCancelableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDataCancelableEventArgsDetailDescription()": "WebRowDataCancelableEventArgsDetailDescription()", + "WebRowDataCancelableEventArgsDetailDescription": "WebRowDataCancelableEventArgsDetailDescription()", + "CellID": "CellID", + "Column": "Column", + "Data": "Data", + "IsAddRow": "IsAddRow", + "NewValue": "NewValue", + "OldValue": "OldValue", + "Owner": "Owner", + "PrimaryKey": "PrimaryKey", + "RowData": "RowData", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type", + "Valid": "Valid" + } + } + ], + "WebRowDataCancelableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDataCancelableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDataCancelableEventArgsDetailDescriptionMetadata()": "WebRowDataCancelableEventArgsDetailDescriptionMetadata()", + "WebRowDataCancelableEventArgsDetailDescriptionMetadata": "WebRowDataCancelableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDataEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDataEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDataEventArgsDescription()": "WebRowDataEventArgsDescription()", + "WebRowDataEventArgsDescription": "WebRowDataEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowDataEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDataEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDataEventArgsDescriptionMetadata()": "WebRowDataEventArgsDescriptionMetadata()", + "WebRowDataEventArgsDescriptionMetadata": "WebRowDataEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDataEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDataEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDataEventArgsDetailDescription()": "WebRowDataEventArgsDetailDescription()", + "WebRowDataEventArgsDetailDescription": "WebRowDataEventArgsDetailDescription()", + "Data": "Data", + "PrimaryKey": "PrimaryKey", + "RowData": "RowData", + "RowKey": "RowKey", + "Type": "Type" + } + } + ], + "WebRowDataEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDataEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDataEventArgsDetailDescriptionMetadata()": "WebRowDataEventArgsDetailDescriptionMetadata()", + "WebRowDataEventArgsDetailDescriptionMetadata": "WebRowDataEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDirectiveDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDirectiveDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDirectiveDescription()": "WebRowDirectiveDescription()", + "WebRowDirectiveDescription": "WebRowDirectiveDescription()", + "Data": "Data", + "Disabled": "Disabled", + "Expanded": "Expanded", + "Index": "Index", + "Pinned": "Pinned", + "Type": "Type" + } + } + ], + "WebRowDirectiveDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDirectiveDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDirectiveDescriptionMetadata()": "WebRowDirectiveDescriptionMetadata()", + "WebRowDirectiveDescriptionMetadata": "WebRowDirectiveDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDragEndEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDragEndEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDragEndEventArgsDescription()": "WebRowDragEndEventArgsDescription()", + "WebRowDragEndEventArgsDescription": "WebRowDragEndEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowDragEndEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDragEndEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDragEndEventArgsDescriptionMetadata()": "WebRowDragEndEventArgsDescriptionMetadata()", + "WebRowDragEndEventArgsDescriptionMetadata": "WebRowDragEndEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDragEndEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDragEndEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDragEndEventArgsDetailDescription()": "WebRowDragEndEventArgsDetailDescription()", + "WebRowDragEndEventArgsDetailDescription": "WebRowDragEndEventArgsDetailDescription()", + "Animation": "Animation", + "DragData": "DragData", + "DragDirective": "DragDirective", + "Type": "Type" + } + } + ], + "WebRowDragEndEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDragEndEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDragEndEventArgsDetailDescriptionMetadata()": "WebRowDragEndEventArgsDetailDescriptionMetadata()", + "WebRowDragEndEventArgsDetailDescriptionMetadata": "WebRowDragEndEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDragStartEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDragStartEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDragStartEventArgsDescription()": "WebRowDragStartEventArgsDescription()", + "WebRowDragStartEventArgsDescription": "WebRowDragStartEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowDragStartEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDragStartEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDragStartEventArgsDescriptionMetadata()": "WebRowDragStartEventArgsDescriptionMetadata()", + "WebRowDragStartEventArgsDescriptionMetadata": "WebRowDragStartEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowDragStartEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDragStartEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowDragStartEventArgsDetailDescription()": "WebRowDragStartEventArgsDetailDescription()", + "WebRowDragStartEventArgsDetailDescription": "WebRowDragStartEventArgsDetailDescription()", + "DragData": "DragData", + "DragDirective": "DragDirective", + "Owner": "Owner", + "Type": "Type" + } + } + ], + "WebRowDragStartEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowDragStartEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowDragStartEventArgsDetailDescriptionMetadata()": "WebRowDragStartEventArgsDetailDescriptionMetadata()", + "WebRowDragStartEventArgsDetailDescriptionMetadata": "WebRowDragStartEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowExportingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowExportingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowExportingEventArgsDescription()": "WebRowExportingEventArgsDescription()", + "WebRowExportingEventArgsDescription": "WebRowExportingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowExportingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowExportingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowExportingEventArgsDescriptionMetadata()": "WebRowExportingEventArgsDescriptionMetadata()", + "WebRowExportingEventArgsDescriptionMetadata": "WebRowExportingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowExportingEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowExportingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowExportingEventArgsDetailDescription()": "WebRowExportingEventArgsDetailDescription()", + "WebRowExportingEventArgsDetailDescription": "WebRowExportingEventArgsDetailDescription()", + "Cancel": "Cancel", + "RowData": "RowData", + "RowIndex": "RowIndex", + "Type": "Type" + } + } + ], + "WebRowExportingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowExportingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowExportingEventArgsDetailDescriptionMetadata()": "WebRowExportingEventArgsDetailDescriptionMetadata()", + "WebRowExportingEventArgsDetailDescriptionMetadata": "WebRowExportingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowIslandBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowIslandBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandBaseDescription()": "WebRowIslandBaseDescription()", + "WebRowIslandBaseDescription": "WebRowIslandBaseDescription()", + "ExpandChildren": "ExpandChildren", + "GridCreatedRef": "GridCreatedRef", + "GridInitializedRef": "GridInitializedRef", + "Type": "Type" + } + } + ], + "WebRowIslandBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowIslandBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandBaseDescriptionMetadata()": "WebRowIslandBaseDescriptionMetadata()", + "WebRowIslandBaseDescriptionMetadata": "WebRowIslandBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowIslandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowIslandDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandDescription()": "WebRowIslandDescription()", + "WebRowIslandDescription": "WebRowIslandDescription()", + "ActionStripComponents": "ActionStripComponents", + "ActiveNodeChangeRef": "ActiveNodeChangeRef", + "AddRowEmptyTemplateRef": "AddRowEmptyTemplateRef", + "AdvancedFilteringExpressionsTree": "AdvancedFilteringExpressionsTree", + "AdvancedFilteringExpressionsTreeChangeRef": "AdvancedFilteringExpressionsTreeChangeRef", + "AllowAdvancedFiltering": "AllowAdvancedFiltering", + "AllowFiltering": "AllowFiltering", + "AutoGenerate": "AutoGenerate", + "AutoGenerateExclude": "AutoGenerateExclude", + "BatchEditing": "BatchEditing", + "CellClickRef": "CellClickRef", + "CellEditDoneRef": "CellEditDoneRef", + "CellEditEnterRef": "CellEditEnterRef", + "CellEditExitRef": "CellEditExitRef", + "CellEditRef": "CellEditRef", + "CellMergeMode": "CellMergeMode", + "CellSelection": "CellSelection", + "ChildDataKey": "ChildDataKey", + "ChildLayoutList": "ChildLayoutList", + "ChildrenResolvedRef": "ChildrenResolvedRef", + "ClipboardOptions": "ClipboardOptions", + "ColumnInitRef": "ColumnInitRef", + "ColumnList": "ColumnList", + "ColumnMovingEndRef": "ColumnMovingEndRef", + "ColumnMovingRef": "ColumnMovingRef", + "ColumnMovingStartRef": "ColumnMovingStartRef", + "ColumnPinRef": "ColumnPinRef", + "ColumnPinnedRef": "ColumnPinnedRef", + "ColumnResizedRef": "ColumnResizedRef", + "ColumnSelection": "ColumnSelection", + "ColumnSelectionChangingRef": "ColumnSelectionChangingRef", + "ColumnVisibilityChangedRef": "ColumnVisibilityChangedRef", + "ColumnVisibilityChangingRef": "ColumnVisibilityChangingRef", + "ColumnWidth": "ColumnWidth", + "ColumnsAutogeneratedRef": "ColumnsAutogeneratedRef", + "ContextMenuRef": "ContextMenuRef", + "DataChangedRef": "DataChangedRef", + "DataChangingRef": "DataChangingRef", + "DataCloneStrategy": "DataCloneStrategy", + "DataPreLoadRef": "DataPreLoadRef", + "DoubleClickRef": "DoubleClickRef", + "DragGhostCustomTemplateRef": "DragGhostCustomTemplateRef", + "DragIndicatorIconTemplateRef": "DragIndicatorIconTemplateRef", + "EmptyFilteredGridMessage": "EmptyFilteredGridMessage", + "EmptyGridMessage": "EmptyGridMessage", + "EmptyGridTemplateRef": "EmptyGridTemplateRef", + "ExcelStyleHeaderIconTemplateRef": "ExcelStyleHeaderIconTemplateRef", + "ExpandChildren": "ExpandChildren", + "ExpansionStates": "ExpansionStates", + "ExpansionStatesChangeRef": "ExpansionStatesChangeRef", + "FilterMode": "FilterMode", + "FilterStrategy": "FilterStrategy", + "FilteringDoneRef": "FilteringDoneRef", + "FilteringExpressionsTree": "FilteringExpressionsTree", + "FilteringExpressionsTreeChangeRef": "FilteringExpressionsTreeChangeRef", + "FilteringLogic": "FilteringLogic", + "FilteringRef": "FilteringRef", + "FormGroupCreatedRef": "FormGroupCreatedRef", + "GridCopyRef": "GridCopyRef", + "GridCreatedRef": "GridCreatedRef", + "GridInitializedRef": "GridInitializedRef", + "GridKeydownRef": "GridKeydownRef", + "GridScrollRef": "GridScrollRef", + "HasChildrenKey": "HasChildrenKey", + "HeadSelectorTemplateRef": "HeadSelectorTemplateRef", + "HeaderCollapsedIndicatorTemplateRef": "HeaderCollapsedIndicatorTemplateRef", + "HeaderExpandedIndicatorTemplateRef": "HeaderExpandedIndicatorTemplateRef", + "Height": "Height", + "HideRowSelectors": "HideRowSelectors", + "IsLoading": "IsLoading", + "LoadingGridTemplateRef": "LoadingGridTemplateRef", + "Locale": "Locale", + "Moving": "Moving", + "PaginationComponents": "PaginationComponents", + "PagingMode": "PagingMode", + "Pinning": "Pinning", + "PrimaryKey": "PrimaryKey", + "RangeSelectedRef": "RangeSelectedRef", + "RenderedRef": "RenderedRef", + "ResourceStringsRef": "ResourceStringsRef", + "RowAddRef": "RowAddRef", + "RowAddTextTemplateRef": "RowAddTextTemplateRef", + "RowAddedRef": "RowAddedRef", + "RowClassesRef": "RowClassesRef", + "RowClickRef": "RowClickRef", + "RowCollapsedIndicatorTemplateRef": "RowCollapsedIndicatorTemplateRef", + "RowDeleteRef": "RowDeleteRef", + "RowDeletedRef": "RowDeletedRef", + "RowDragEndRef": "RowDragEndRef", + "RowDragStartRef": "RowDragStartRef", + "RowDraggable": "RowDraggable", + "RowEditActionsTemplateRef": "RowEditActionsTemplateRef", + "RowEditDoneRef": "RowEditDoneRef", + "RowEditEnterRef": "RowEditEnterRef", + "RowEditExitRef": "RowEditExitRef", + "RowEditRef": "RowEditRef", + "RowEditTextTemplateRef": "RowEditTextTemplateRef", + "RowEditable": "RowEditable", + "RowExpandedIndicatorTemplateRef": "RowExpandedIndicatorTemplateRef", + "RowHeight": "RowHeight", + "RowPinnedRef": "RowPinnedRef", + "RowPinningRef": "RowPinningRef", + "RowSelection": "RowSelection", + "RowSelectionChangingRef": "RowSelectionChangingRef", + "RowSelectorTemplateRef": "RowSelectorTemplateRef", + "RowStylesRef": "RowStylesRef", + "RowToggleRef": "RowToggleRef", + "SelectRowOnClick": "SelectRowOnClick", + "SelectedRef": "SelectedRef", + "SelectedRows": "SelectedRows", + "SelectedRowsChangeRef": "SelectedRowsChangeRef", + "ShouldGenerate": "ShouldGenerate", + "ShowExpandAll": "ShowExpandAll", + "ShowSummaryOnCollapse": "ShowSummaryOnCollapse", + "SnackbarDisplayTime": "SnackbarDisplayTime", + "SortAscendingHeaderIconTemplateRef": "SortAscendingHeaderIconTemplateRef", + "SortDescendingHeaderIconTemplateRef": "SortDescendingHeaderIconTemplateRef", + "SortHeaderIconTemplateRef": "SortHeaderIconTemplateRef", + "SortStrategy": "SortStrategy", + "SortingDoneRef": "SortingDoneRef", + "SortingExpressions": "SortingExpressions", + "SortingExpressionsChangeRef": "SortingExpressionsChangeRef", + "SortingOptions": "SortingOptions", + "SortingRef": "SortingRef", + "SummaryCalculationMode": "SummaryCalculationMode", + "SummaryPosition": "SummaryPosition", + "SummaryRowHeight": "SummaryRowHeight", + "Toolbar": "Toolbar", + "ToolbarExportingRef": "ToolbarExportingRef", + "TotalRecords": "TotalRecords", + "Type": "Type", + "ValidationStatusChangeRef": "ValidationStatusChangeRef", + "ValidationTrigger": "ValidationTrigger", + "Width": "Width" + } + } + ], + "WebRowIslandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowIslandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandDescriptionMetadata()": "WebRowIslandDescriptionMetadata()", + "WebRowIslandDescriptionMetadata": "WebRowIslandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowIslandDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowIslandDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebRowIslandDescriptionModule()": "WebRowIslandDescriptionModule()", + "WebRowIslandDescriptionModule": "WebRowIslandDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowSelectionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowSelectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectionEventArgsDescription()": "WebRowSelectionEventArgsDescription()", + "WebRowSelectionEventArgsDescription": "WebRowSelectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowSelectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowSelectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectionEventArgsDescriptionMetadata()": "WebRowSelectionEventArgsDescriptionMetadata()", + "WebRowSelectionEventArgsDescriptionMetadata": "WebRowSelectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowSelectionEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowSelectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectionEventArgsDetailDescription()": "WebRowSelectionEventArgsDetailDescription()", + "WebRowSelectionEventArgsDetailDescription": "WebRowSelectionEventArgsDetailDescription()", + "AddedRef": "AddedRef", + "AllRowsSelected": "AllRowsSelected", + "NewSelectionRef": "NewSelectionRef", + "OldSelectionRef": "OldSelectionRef", + "Owner": "Owner", + "RemovedRef": "RemovedRef", + "Type": "Type" + } + } + ], + "WebRowSelectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowSelectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectionEventArgsDetailDescriptionMetadata()": "WebRowSelectionEventArgsDetailDescriptionMetadata()", + "WebRowSelectionEventArgsDetailDescriptionMetadata": "WebRowSelectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowSelectorTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowSelectorTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectorTemplateContextDescription()": "WebRowSelectorTemplateContextDescription()", + "WebRowSelectorTemplateContextDescription": "WebRowSelectorTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebRowSelectorTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowSelectorTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectorTemplateContextDescriptionMetadata()": "WebRowSelectorTemplateContextDescriptionMetadata()", + "WebRowSelectorTemplateContextDescriptionMetadata": "WebRowSelectorTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowSelectorTemplateDetailsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowSelectorTemplateDetailsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectorTemplateDetailsDescription()": "WebRowSelectorTemplateDetailsDescription()", + "WebRowSelectorTemplateDetailsDescription": "WebRowSelectorTemplateDetailsDescription()", + "Index": "Index", + "Key": "Key", + "RowID": "RowID", + "Selected": "Selected", + "Type": "Type" + } + } + ], + "WebRowSelectorTemplateDetailsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowSelectorTemplateDetailsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowSelectorTemplateDetailsDescriptionMetadata()": "WebRowSelectorTemplateDetailsDescriptionMetadata()", + "WebRowSelectorTemplateDetailsDescriptionMetadata": "WebRowSelectorTemplateDetailsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowToggleEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowToggleEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowToggleEventArgsDescription()": "WebRowToggleEventArgsDescription()", + "WebRowToggleEventArgsDescription": "WebRowToggleEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebRowToggleEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowToggleEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowToggleEventArgsDescriptionMetadata()": "WebRowToggleEventArgsDescriptionMetadata()", + "WebRowToggleEventArgsDescriptionMetadata": "WebRowToggleEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowToggleEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowToggleEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowToggleEventArgsDetailDescription()": "WebRowToggleEventArgsDetailDescription()", + "WebRowToggleEventArgsDetailDescription": "WebRowToggleEventArgsDetailDescription()", + "Cancel": "Cancel", + "Expanded": "Expanded", + "RowID": "RowID", + "RowKey": "RowKey", + "Type": "Type" + } + } + ], + "WebRowToggleEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowToggleEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowToggleEventArgsDetailDescriptionMetadata()": "WebRowToggleEventArgsDetailDescriptionMetadata()", + "WebRowToggleEventArgsDetailDescriptionMetadata": "WebRowToggleEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebRowTypeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowTypeDescription", + "k": "class", + "s": "classes", + "m": { + "WebRowTypeDescription()": "WebRowTypeDescription()", + "WebRowTypeDescription": "WebRowTypeDescription()", + "AddRowUI": "AddRowUI", + "Cells": "Cells", + "Children": "Children", + "Data": "Data", + "Deleted": "Deleted", + "Disabled": "Disabled", + "EphemeralKey": "EphemeralKey", + "Expanded": "Expanded", + "Focused": "Focused", + "Grid": "Grid", + "GroupRow": "GroupRow", + "HasChildren": "HasChildren", + "InEditMode": "InEditMode", + "Index": "Index", + "IsGroupByRow": "IsGroupByRow", + "IsSummaryRow": "IsSummaryRow", + "Key": "Key", + "Pinned": "Pinned", + "RowParent": "RowParent", + "Selected": "Selected", + "TreeRow": "TreeRow", + "Type": "Type", + "Validation": "Validation", + "ViewIndex": "ViewIndex" + } + } + ], + "WebRowTypeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebRowTypeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebRowTypeDescriptionMetadata()": "WebRowTypeDescriptionMetadata()", + "WebRowTypeDescriptionMetadata": "WebRowTypeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebScrollConfigDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebScrollConfigDescription", + "k": "class", + "s": "classes", + "m": { + "WebScrollConfigDescription()": "WebScrollConfigDescription()", + "WebScrollConfigDescription": "WebScrollConfigDescription()", + "EdgeThreshold": "EdgeThreshold", + "ScrollSpeed": "ScrollSpeed", + "Type": "Type" + } + } + ], + "WebScrollConfigDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebScrollConfigDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebScrollConfigDescriptionMetadata()": "WebScrollConfigDescriptionMetadata()", + "WebScrollConfigDescriptionMetadata": "WebScrollConfigDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebScrollStrategyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebScrollStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebScrollStrategyDescription()": "WebScrollStrategyDescription()", + "WebScrollStrategyDescription": "WebScrollStrategyDescription()", + "Type": "Type" + } + } + ], + "WebScrollStrategyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebScrollStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebScrollStrategyDescriptionMetadata()": "WebScrollStrategyDescriptionMetadata()", + "WebScrollStrategyDescriptionMetadata": "WebScrollStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSearchInfoDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSearchInfoDescription", + "k": "class", + "s": "classes", + "m": { + "WebSearchInfoDescription()": "WebSearchInfoDescription()", + "WebSearchInfoDescription": "WebSearchInfoDescription()", + "ActiveMatchIndex": "ActiveMatchIndex", + "MatchInfoCacheRef": "MatchInfoCacheRef", + "Type": "Type" + } + } + ], + "WebSearchInfoDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSearchInfoDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSearchInfoDescriptionMetadata()": "WebSearchInfoDescriptionMetadata()", + "WebSearchInfoDescriptionMetadata": "WebSearchInfoDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectDescription()": "WebSelectDescription()", + "WebSelectDescription": "WebSelectDescription()", + "Autofocus": "Autofocus", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "Distance": "Distance", + "FocusRef": "FocusRef", + "Invalid": "Invalid", + "Label": "Label", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "Placement": "Placement", + "Required": "Required", + "ScrollStrategy": "ScrollStrategy", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebSelectDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectDescriptionMetadata()": "WebSelectDescriptionMetadata()", + "WebSelectDescriptionMetadata": "WebSelectDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSelectDescriptionModule()": "WebSelectDescriptionModule()", + "WebSelectDescriptionModule": "WebSelectDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectGroupDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectGroupDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectGroupDescription()": "WebSelectGroupDescription()", + "WebSelectGroupDescription": "WebSelectGroupDescription()", + "Disabled": "Disabled", + "Items": "Items", + "Type": "Type" + } + } + ], + "WebSelectGroupDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectGroupDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectGroupDescriptionMetadata()": "WebSelectGroupDescriptionMetadata()", + "WebSelectGroupDescriptionMetadata": "WebSelectGroupDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectGroupDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectGroupDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSelectGroupDescriptionModule()": "WebSelectGroupDescriptionModule()", + "WebSelectGroupDescriptionModule": "WebSelectGroupDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectHeaderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectHeaderDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectHeaderDescription()": "WebSelectHeaderDescription()", + "WebSelectHeaderDescription": "WebSelectHeaderDescription()", + "Type": "Type" + } + } + ], + "WebSelectHeaderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectHeaderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectHeaderDescriptionMetadata()": "WebSelectHeaderDescriptionMetadata()", + "WebSelectHeaderDescriptionMetadata": "WebSelectHeaderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectHeaderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectHeaderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSelectHeaderDescriptionModule()": "WebSelectHeaderDescriptionModule()", + "WebSelectHeaderDescriptionModule": "WebSelectHeaderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectItemComponentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectItemComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemComponentEventArgsDescription()": "WebSelectItemComponentEventArgsDescription()", + "WebSelectItemComponentEventArgsDescription": "WebSelectItemComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebSelectItemComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectItemComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemComponentEventArgsDescriptionMetadata()": "WebSelectItemComponentEventArgsDescriptionMetadata()", + "WebSelectItemComponentEventArgsDescriptionMetadata": "WebSelectItemComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectItemDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemDescription()": "WebSelectItemDescription()", + "WebSelectItemDescription": "WebSelectItemDescription()", + "Type": "Type" + } + } + ], + "WebSelectItemDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemDescriptionMetadata()": "WebSelectItemDescriptionMetadata()", + "WebSelectItemDescriptionMetadata": "WebSelectItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSelectItemDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSelectItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSelectItemDescriptionModule()": "WebSelectItemDescriptionModule()", + "WebSelectItemDescriptionModule": "WebSelectItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSizeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSizeDescription", + "k": "class", + "s": "classes", + "m": { + "WebSizeDescription()": "WebSizeDescription()", + "WebSizeDescription": "WebSizeDescription()", + "Height": "Height", + "Type": "Type", + "Width": "Width" + } + } + ], + "WebSizeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSizeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSizeDescriptionMetadata()": "WebSizeDescriptionMetadata()", + "WebSizeDescriptionMetadata": "WebSizeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebSliderBaseDescription()": "WebSliderBaseDescription()", + "WebSliderBaseDescription": "WebSliderBaseDescription()", + "Disabled": "Disabled", + "DiscreteTrack": "DiscreteTrack", + "HidePrimaryLabels": "HidePrimaryLabels", + "HideSecondaryLabels": "HideSecondaryLabels", + "HideTooltip": "HideTooltip", + "Locale": "Locale", + "LowerBound": "LowerBound", + "Max": "Max", + "Min": "Min", + "PrimaryTicks": "PrimaryTicks", + "SecondaryTicks": "SecondaryTicks", + "Step": "Step", + "TickLabelRotation": "TickLabelRotation", + "TickOrientation": "TickOrientation", + "Type": "Type", + "UpperBound": "UpperBound", + "ValueFormat": "ValueFormat", + "ValueFormatOptions": "ValueFormatOptions" + } + } + ], + "WebSliderBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSliderBaseDescriptionMetadata()": "WebSliderBaseDescriptionMetadata()", + "WebSliderBaseDescriptionMetadata": "WebSliderBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderBaseDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderBaseDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSliderBaseDescriptionModule()": "WebSliderBaseDescriptionModule()", + "WebSliderBaseDescriptionModule": "WebSliderBaseDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderDescription", + "k": "class", + "s": "classes", + "m": { + "WebSliderDescription()": "WebSliderDescription()", + "WebSliderDescription": "WebSliderDescription()", + "ChangeRef": "ChangeRef", + "DefaultValue": "DefaultValue", + "InputRef": "InputRef", + "Invalid": "Invalid", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebSliderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSliderDescriptionMetadata()": "WebSliderDescriptionMetadata()", + "WebSliderDescriptionMetadata": "WebSliderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSliderDescriptionModule()": "WebSliderDescriptionModule()", + "WebSliderDescriptionModule": "WebSliderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderLabelDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderLabelDescription", + "k": "class", + "s": "classes", + "m": { + "WebSliderLabelDescription()": "WebSliderLabelDescription()", + "WebSliderLabelDescription": "WebSliderLabelDescription()", + "Type": "Type" + } + } + ], + "WebSliderLabelDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderLabelDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSliderLabelDescriptionMetadata()": "WebSliderLabelDescriptionMetadata()", + "WebSliderLabelDescriptionMetadata": "WebSliderLabelDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSliderLabelDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSliderLabelDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSliderLabelDescriptionModule()": "WebSliderLabelDescriptionModule()", + "WebSliderLabelDescriptionModule": "WebSliderLabelDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSnackbarDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSnackbarDescription", + "k": "class", + "s": "classes", + "m": { + "WebSnackbarDescription()": "WebSnackbarDescription()", + "WebSnackbarDescription": "WebSnackbarDescription()", + "ActionRef": "ActionRef", + "ActionText": "ActionText", + "Type": "Type" + } + } + ], + "WebSnackbarDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSnackbarDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSnackbarDescriptionMetadata()": "WebSnackbarDescriptionMetadata()", + "WebSnackbarDescriptionMetadata": "WebSnackbarDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSnackbarDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSnackbarDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSnackbarDescriptionModule()": "WebSnackbarDescriptionModule()", + "WebSnackbarDescriptionModule": "WebSnackbarDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingEventArgsDescription()": "WebSortingEventArgsDescription()", + "WebSortingEventArgsDescription": "WebSortingEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebSortingEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingEventArgsDescriptionMetadata()": "WebSortingEventArgsDescriptionMetadata()", + "WebSortingEventArgsDescriptionMetadata": "WebSortingEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingEventArgsDetailDescription()": "WebSortingEventArgsDetailDescription()", + "WebSortingEventArgsDetailDescription": "WebSortingEventArgsDetailDescription()", + "GroupingExpressions": "GroupingExpressions", + "Owner": "Owner", + "SortingExpressions": "SortingExpressions", + "Type": "Type" + } + } + ], + "WebSortingEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingEventArgsDetailDescriptionMetadata()": "WebSortingEventArgsDetailDescriptionMetadata()", + "WebSortingEventArgsDetailDescriptionMetadata": "WebSortingEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingExpressionDescription()": "WebSortingExpressionDescription()", + "WebSortingExpressionDescription": "WebSortingExpressionDescription()", + "Dir": "Dir", + "FieldName": "FieldName", + "IgnoreCase": "IgnoreCase", + "Strategy": "Strategy", + "Type": "Type" + } + } + ], + "WebSortingExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingExpressionDescriptionMetadata()": "WebSortingExpressionDescriptionMetadata()", + "WebSortingExpressionDescriptionMetadata": "WebSortingExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingExpressionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingExpressionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingExpressionEventArgsDescription()": "WebSortingExpressionEventArgsDescription()", + "WebSortingExpressionEventArgsDescription": "WebSortingExpressionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebSortingExpressionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingExpressionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingExpressionEventArgsDescriptionMetadata()": "WebSortingExpressionEventArgsDescriptionMetadata()", + "WebSortingExpressionEventArgsDescriptionMetadata": "WebSortingExpressionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingOptionsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingOptionsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingOptionsDescription()": "WebSortingOptionsDescription()", + "WebSortingOptionsDescription": "WebSortingOptionsDescription()", + "Mode": "Mode", + "Type": "Type" + } + } + ], + "WebSortingOptionsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingOptionsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingOptionsDescriptionMetadata()": "WebSortingOptionsDescriptionMetadata()", + "WebSortingOptionsDescriptionMetadata": "WebSortingOptionsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSortingStrategyDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingStrategyDescription", + "k": "class", + "s": "classes", + "m": { + "WebSortingStrategyDescription()": "WebSortingStrategyDescription()", + "WebSortingStrategyDescription": "WebSortingStrategyDescription()", + "Type": "Type" + } + } + ], + "WebSortingStrategyDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSortingStrategyDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSortingStrategyDescriptionMetadata()": "WebSortingStrategyDescriptionMetadata()", + "WebSortingStrategyDescriptionMetadata": "WebSortingStrategyDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitPaneDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitPaneDescription", + "k": "class", + "s": "classes", + "m": { + "WebSplitPaneDescription()": "WebSplitPaneDescription()", + "WebSplitPaneDescription": "WebSplitPaneDescription()", + "AllowEmpty": "AllowEmpty", + "FloatingHeight": "FloatingHeight", + "FloatingLocation": "FloatingLocation", + "FloatingResizable": "FloatingResizable", + "FloatingWidth": "FloatingWidth", + "Id": "Id", + "IsMaximized": "IsMaximized", + "MinResizeHeight": "MinResizeHeight", + "MinResizeWidth": "MinResizeWidth", + "Orientation": "Orientation", + "PaneType": "PaneType", + "Panes": "Panes", + "Size": "Size", + "Type": "Type", + "UseFixedSize": "UseFixedSize" + } + } + ], + "WebSplitPaneDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitPaneDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSplitPaneDescriptionMetadata()": "WebSplitPaneDescriptionMetadata()", + "WebSplitPaneDescriptionMetadata": "WebSplitPaneDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitPaneDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitPaneDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSplitPaneDescriptionModule()": "WebSplitPaneDescriptionModule()", + "WebSplitPaneDescriptionModule": "WebSplitPaneDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitterDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitterDescription", + "k": "class", + "s": "classes", + "m": { + "WebSplitterDescription()": "WebSplitterDescription()", + "WebSplitterDescription": "WebSplitterDescription()", + "DisableCollapse": "DisableCollapse", + "DisableResize": "DisableResize", + "EndMaxSize": "EndMaxSize", + "EndMinSize": "EndMinSize", + "EndSize": "EndSize", + "HideCollapseButtons": "HideCollapseButtons", + "HideDragHandle": "HideDragHandle", + "Orientation": "Orientation", + "ResizeEndRef": "ResizeEndRef", + "ResizeStartRef": "ResizeStartRef", + "ResizingRef": "ResizingRef", + "StartMaxSize": "StartMaxSize", + "StartMinSize": "StartMinSize", + "StartSize": "StartSize", + "Type": "Type" + } + } + ], + "WebSplitterDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitterDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSplitterDescriptionMetadata()": "WebSplitterDescriptionMetadata()", + "WebSplitterDescriptionMetadata": "WebSplitterDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitterDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitterDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSplitterDescriptionModule()": "WebSplitterDescriptionModule()", + "WebSplitterDescriptionModule": "WebSplitterDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitterResizeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitterResizeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebSplitterResizeEventArgsDescription()": "WebSplitterResizeEventArgsDescription()", + "WebSplitterResizeEventArgsDescription": "WebSplitterResizeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebSplitterResizeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitterResizeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSplitterResizeEventArgsDescriptionMetadata()": "WebSplitterResizeEventArgsDescriptionMetadata()", + "WebSplitterResizeEventArgsDescriptionMetadata": "WebSplitterResizeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSplitterResizeEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitterResizeEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebSplitterResizeEventArgsDetailDescription()": "WebSplitterResizeEventArgsDetailDescription()", + "WebSplitterResizeEventArgsDetailDescription": "WebSplitterResizeEventArgsDetailDescription()", + "Delta": "Delta", + "EndPanelSize": "EndPanelSize", + "StartPanelSize": "StartPanelSize", + "Type": "Type" + } + } + ], + "WebSplitterResizeEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSplitterResizeEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSplitterResizeEventArgsDetailDescriptionMetadata()": "WebSplitterResizeEventArgsDetailDescriptionMetadata()", + "WebSplitterResizeEventArgsDetailDescriptionMetadata": "WebSplitterResizeEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStepDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebStepDescription", + "k": "class", + "s": "classes", + "m": { + "WebStepDescription()": "WebStepDescription()", + "WebStepDescription": "WebStepDescription()", + "Active": "Active", + "Complete": "Complete", + "Disabled": "Disabled", + "Invalid": "Invalid", + "Optional": "Optional", + "Type": "Type" + } + } + ], + "WebStepDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebStepDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebStepDescriptionMetadata()": "WebStepDescriptionMetadata()", + "WebStepDescriptionMetadata": "WebStepDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStepDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebStepDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebStepDescriptionModule()": "WebStepDescriptionModule()", + "WebStepDescriptionModule": "WebStepDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStepperDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebStepperDescription", + "k": "class", + "s": "classes", + "m": { + "WebStepperDescription()": "WebStepperDescription()", + "WebStepperDescription": "WebStepperDescription()", + "ActiveStepChangedRef": "ActiveStepChangedRef", + "ActiveStepChangingRef": "ActiveStepChangingRef", + "AnimationDuration": "AnimationDuration", + "ContentTop": "ContentTop", + "HorizontalAnimation": "HorizontalAnimation", + "Linear": "Linear", + "Orientation": "Orientation", + "StepType": "StepType", + "TitlePosition": "TitlePosition", + "Type": "Type", + "VerticalAnimation": "VerticalAnimation" + } + } + ], + "WebStepperDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebStepperDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebStepperDescriptionMetadata()": "WebStepperDescriptionMetadata()", + "WebStepperDescriptionMetadata": "WebStepperDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStepperDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebStepperDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebStepperDescriptionModule()": "WebStepperDescriptionModule()", + "WebStepperDescriptionModule": "WebStepperDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebStringFilteringOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebStringFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebStringFilteringOperandDescription()": "WebStringFilteringOperandDescription()", + "WebStringFilteringOperandDescription": "WebStringFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebStringFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebStringFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebStringFilteringOperandDescriptionMetadata()": "WebStringFilteringOperandDescriptionMetadata()", + "WebStringFilteringOperandDescriptionMetadata": "WebStringFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSummaryExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSummaryExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WebSummaryExpressionDescription()": "WebSummaryExpressionDescription()", + "WebSummaryExpressionDescription": "WebSummaryExpressionDescription()", + "CustomSummary": "CustomSummary", + "FieldName": "FieldName", + "Type": "Type" + } + } + ], + "WebSummaryExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSummaryExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSummaryExpressionDescriptionMetadata()": "WebSummaryExpressionDescriptionMetadata()", + "WebSummaryExpressionDescriptionMetadata": "WebSummaryExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSummaryOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSummaryOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebSummaryOperandDescription()": "WebSummaryOperandDescription()", + "WebSummaryOperandDescription": "WebSummaryOperandDescription()", + "Type": "Type" + } + } + ], + "WebSummaryOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSummaryOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSummaryOperandDescriptionMetadata()": "WebSummaryOperandDescriptionMetadata()", + "WebSummaryOperandDescriptionMetadata": "WebSummaryOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSummaryResultDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSummaryResultDescription", + "k": "class", + "s": "classes", + "m": { + "WebSummaryResultDescription()": "WebSummaryResultDescription()", + "WebSummaryResultDescription": "WebSummaryResultDescription()", + "DefaultFormatting": "DefaultFormatting", + "Key": "Key", + "Label": "Label", + "Result": "Result", + "Type": "Type" + } + } + ], + "WebSummaryResultDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSummaryResultDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSummaryResultDescriptionMetadata()": "WebSummaryResultDescriptionMetadata()", + "WebSummaryResultDescriptionMetadata": "WebSummaryResultDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSummaryTemplateContextDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSummaryTemplateContextDescription", + "k": "class", + "s": "classes", + "m": { + "WebSummaryTemplateContextDescription()": "WebSummaryTemplateContextDescription()", + "WebSummaryTemplateContextDescription": "WebSummaryTemplateContextDescription()", + "Implicit": "Implicit", + "Type": "Type" + } + } + ], + "WebSummaryTemplateContextDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSummaryTemplateContextDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSummaryTemplateContextDescriptionMetadata()": "WebSummaryTemplateContextDescriptionMetadata()", + "WebSummaryTemplateContextDescriptionMetadata": "WebSummaryTemplateContextDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSwitchDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSwitchDescription", + "k": "class", + "s": "classes", + "m": { + "WebSwitchDescription()": "WebSwitchDescription()", + "WebSwitchDescription": "WebSwitchDescription()", + "Type": "Type" + } + } + ], + "WebSwitchDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSwitchDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebSwitchDescriptionMetadata()": "WebSwitchDescriptionMetadata()", + "WebSwitchDescriptionMetadata": "WebSwitchDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebSwitchDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebSwitchDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebSwitchDescriptionModule()": "WebSwitchDescriptionModule()", + "WebSwitchDescriptionModule": "WebSwitchDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabComponentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabComponentEventArgsDescription()": "WebTabComponentEventArgsDescription()", + "WebTabComponentEventArgsDescription": "WebTabComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTabComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabComponentEventArgsDescriptionMetadata()": "WebTabComponentEventArgsDescriptionMetadata()", + "WebTabComponentEventArgsDescriptionMetadata": "WebTabComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabDescription()": "WebTabDescription()", + "WebTabDescription": "WebTabDescription()", + "Disabled": "Disabled", + "Label": "Label", + "Selected": "Selected", + "Type": "Type" + } + } + ], + "WebTabDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabDescriptionMetadata()": "WebTabDescriptionMetadata()", + "WebTabDescriptionMetadata": "WebTabDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTabDescriptionModule()": "WebTabDescriptionModule()", + "WebTabDescriptionModule": "WebTabDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabGroupPaneDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabGroupPaneDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabGroupPaneDescription()": "WebTabGroupPaneDescription()", + "WebTabGroupPaneDescription": "WebTabGroupPaneDescription()", + "AllowEmpty": "AllowEmpty", + "Id": "Id", + "IsMaximized": "IsMaximized", + "MinResizeHeight": "MinResizeHeight", + "MinResizeWidth": "MinResizeWidth", + "PaneType": "PaneType", + "Panes": "Panes", + "SelectedIndex": "SelectedIndex", + "Size": "Size", + "Type": "Type" + } + } + ], + "WebTabGroupPaneDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabGroupPaneDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabGroupPaneDescriptionMetadata()": "WebTabGroupPaneDescriptionMetadata()", + "WebTabGroupPaneDescriptionMetadata": "WebTabGroupPaneDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabGroupPaneDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabGroupPaneDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTabGroupPaneDescriptionModule()": "WebTabGroupPaneDescriptionModule()", + "WebTabGroupPaneDescriptionModule": "WebTabGroupPaneDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabHeaderConnectionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabHeaderConnectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderConnectionEventArgsDescription()": "WebTabHeaderConnectionEventArgsDescription()", + "WebTabHeaderConnectionEventArgsDescription": "WebTabHeaderConnectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTabHeaderConnectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabHeaderConnectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderConnectionEventArgsDescriptionMetadata()": "WebTabHeaderConnectionEventArgsDescriptionMetadata()", + "WebTabHeaderConnectionEventArgsDescriptionMetadata": "WebTabHeaderConnectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabHeaderConnectionEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabHeaderConnectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderConnectionEventArgsDetailDescription()": "WebTabHeaderConnectionEventArgsDetailDescription()", + "WebTabHeaderConnectionEventArgsDetailDescription": "WebTabHeaderConnectionEventArgsDetailDescription()", + "Element": "Element", + "Pane": "Pane", + "Type": "Type" + } + } + ], + "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabHeaderConnectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata()": "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata()", + "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata": "WebTabHeaderConnectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabHeaderElementDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabHeaderElementDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderElementDescription()": "WebTabHeaderElementDescription()", + "WebTabHeaderElementDescription": "WebTabHeaderElementDescription()", + "DragService": "DragService", + "Type": "Type" + } + } + ], + "WebTabHeaderElementDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabHeaderElementDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderElementDescriptionMetadata()": "WebTabHeaderElementDescriptionMetadata()", + "WebTabHeaderElementDescriptionMetadata": "WebTabHeaderElementDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabHeaderElementDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabHeaderElementDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTabHeaderElementDescriptionModule()": "WebTabHeaderElementDescriptionModule()", + "WebTabHeaderElementDescriptionModule": "WebTabHeaderElementDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTabsDescription()": "WebTabsDescription()", + "WebTabsDescription": "WebTabsDescription()", + "Activation": "Activation", + "Alignment": "Alignment", + "ChangeRef": "ChangeRef", + "TabsCollection": "TabsCollection", + "Type": "Type" + } + } + ], + "WebTabsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTabsDescriptionMetadata()": "WebTabsDescriptionMetadata()", + "WebTabsDescriptionMetadata": "WebTabsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTabsDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTabsDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTabsDescriptionModule()": "WebTabsDescriptionModule()", + "WebTabsDescriptionModule": "WebTabsDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTextareaDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTextareaDescription", + "k": "class", + "s": "classes", + "m": { + "WebTextareaDescription()": "WebTextareaDescription()", + "WebTextareaDescription": "WebTextareaDescription()", + "Autocapitalize": "Autocapitalize", + "Autocomplete": "Autocomplete", + "BlurRef": "BlurRef", + "ChangeRef": "ChangeRef", + "DefaultValue": "DefaultValue", + "Disabled": "Disabled", + "FocusRef": "FocusRef", + "InputMode": "InputMode", + "InputRef": "InputRef", + "Invalid": "Invalid", + "Label": "Label", + "MaxLength": "MaxLength", + "MinLength": "MinLength", + "Outlined": "Outlined", + "Placeholder": "Placeholder", + "ReadOnly": "ReadOnly", + "Required": "Required", + "Resize": "Resize", + "Rows": "Rows", + "Spellcheck": "Spellcheck", + "Type": "Type", + "ValidateOnly": "ValidateOnly", + "Value": "Value", + "Wrap": "Wrap" + } + } + ], + "WebTextareaDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTextareaDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTextareaDescriptionMetadata()": "WebTextareaDescriptionMetadata()", + "WebTextareaDescriptionMetadata": "WebTextareaDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTextareaDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTextareaDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTextareaDescriptionModule()": "WebTextareaDescriptionModule()", + "WebTextareaDescriptionModule": "WebTextareaDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebThemeProviderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebThemeProviderDescription", + "k": "class", + "s": "classes", + "m": { + "WebThemeProviderDescription()": "WebThemeProviderDescription()", + "WebThemeProviderDescription": "WebThemeProviderDescription()", + "Theme": "Theme", + "Type": "Type", + "Variant": "Variant" + } + } + ], + "WebThemeProviderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebThemeProviderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebThemeProviderDescriptionMetadata()": "WebThemeProviderDescriptionMetadata()", + "WebThemeProviderDescriptionMetadata": "WebThemeProviderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebThemeProviderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebThemeProviderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebThemeProviderDescriptionModule()": "WebThemeProviderDescriptionModule()", + "WebThemeProviderDescriptionModule": "WebThemeProviderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileChangeStateEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileChangeStateEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileChangeStateEventArgsDescription()": "WebTileChangeStateEventArgsDescription()", + "WebTileChangeStateEventArgsDescription": "WebTileChangeStateEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTileChangeStateEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileChangeStateEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileChangeStateEventArgsDescriptionMetadata()": "WebTileChangeStateEventArgsDescriptionMetadata()", + "WebTileChangeStateEventArgsDescriptionMetadata": "WebTileChangeStateEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileChangeStateEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileChangeStateEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileChangeStateEventArgsDetailDescription()": "WebTileChangeStateEventArgsDetailDescription()", + "WebTileChangeStateEventArgsDetailDescription": "WebTileChangeStateEventArgsDetailDescription()", + "State": "State", + "Tile": "Tile", + "Type": "Type" + } + } + ], + "WebTileChangeStateEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileChangeStateEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileChangeStateEventArgsDetailDescriptionMetadata()": "WebTileChangeStateEventArgsDetailDescriptionMetadata()", + "WebTileChangeStateEventArgsDetailDescriptionMetadata": "WebTileChangeStateEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileComponentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileComponentEventArgsDescription()": "WebTileComponentEventArgsDescription()", + "WebTileComponentEventArgsDescription": "WebTileComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTileComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileComponentEventArgsDescriptionMetadata()": "WebTileComponentEventArgsDescriptionMetadata()", + "WebTileComponentEventArgsDescriptionMetadata": "WebTileComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileDescription()": "WebTileDescription()", + "WebTileDescription": "WebTileDescription()", + "ColSpan": "ColSpan", + "ColStart": "ColStart", + "DisableFullscreen": "DisableFullscreen", + "DisableMaximize": "DisableMaximize", + "DisableResize": "DisableResize", + "Maximized": "Maximized", + "Position": "Position", + "RowSpan": "RowSpan", + "RowStart": "RowStart", + "TileDragCancelRef": "TileDragCancelRef", + "TileDragEndRef": "TileDragEndRef", + "TileDragStartRef": "TileDragStartRef", + "TileFullscreenRef": "TileFullscreenRef", + "TileMaximizeRef": "TileMaximizeRef", + "TileResizeCancelRef": "TileResizeCancelRef", + "TileResizeEndRef": "TileResizeEndRef", + "TileResizeStartRef": "TileResizeStartRef", + "Type": "Type" + } + } + ], + "WebTileDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileDescriptionMetadata()": "WebTileDescriptionMetadata()", + "WebTileDescriptionMetadata": "WebTileDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTileDescriptionModule()": "WebTileDescriptionModule()", + "WebTileDescriptionModule": "WebTileDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileManagerDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileManagerDescription", + "k": "class", + "s": "classes", + "m": { + "WebTileManagerDescription()": "WebTileManagerDescription()", + "WebTileManagerDescription": "WebTileManagerDescription()", + "ColumnCount": "ColumnCount", + "DragMode": "DragMode", + "Gap": "Gap", + "MinColumnWidth": "MinColumnWidth", + "MinRowHeight": "MinRowHeight", + "ResizeMode": "ResizeMode", + "TileDragCancelRef": "TileDragCancelRef", + "TileDragEndRef": "TileDragEndRef", + "TileDragStartRef": "TileDragStartRef", + "TileFullscreenRef": "TileFullscreenRef", + "TileMaximizeRef": "TileMaximizeRef", + "TileResizeCancelRef": "TileResizeCancelRef", + "TileResizeEndRef": "TileResizeEndRef", + "TileResizeStartRef": "TileResizeStartRef", + "Type": "Type" + } + } + ], + "WebTileManagerDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileManagerDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTileManagerDescriptionMetadata()": "WebTileManagerDescriptionMetadata()", + "WebTileManagerDescriptionMetadata": "WebTileManagerDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTileManagerDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTileManagerDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTileManagerDescriptionModule()": "WebTileManagerDescriptionModule()", + "WebTileManagerDescriptionModule": "WebTileManagerDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTimeFilteringOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTimeFilteringOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebTimeFilteringOperandDescription()": "WebTimeFilteringOperandDescription()", + "WebTimeFilteringOperandDescription": "WebTimeFilteringOperandDescription()", + "Type": "Type" + } + } + ], + "WebTimeFilteringOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTimeFilteringOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTimeFilteringOperandDescriptionMetadata()": "WebTimeFilteringOperandDescriptionMetadata()", + "WebTimeFilteringOperandDescriptionMetadata": "WebTimeFilteringOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTimeSummaryOperandDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTimeSummaryOperandDescription", + "k": "class", + "s": "classes", + "m": { + "WebTimeSummaryOperandDescription()": "WebTimeSummaryOperandDescription()", + "WebTimeSummaryOperandDescription": "WebTimeSummaryOperandDescription()", + "Type": "Type" + } + } + ], + "WebTimeSummaryOperandDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTimeSummaryOperandDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTimeSummaryOperandDescriptionMetadata()": "WebTimeSummaryOperandDescriptionMetadata()", + "WebTimeSummaryOperandDescriptionMetadata": "WebTimeSummaryOperandDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToastDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToastDescription", + "k": "class", + "s": "classes", + "m": { + "WebToastDescription()": "WebToastDescription()", + "WebToastDescription": "WebToastDescription()", + "Type": "Type" + } + } + ], + "WebToastDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToastDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToastDescriptionMetadata()": "WebToastDescriptionMetadata()", + "WebToastDescriptionMetadata": "WebToastDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToastDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToastDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebToastDescriptionModule()": "WebToastDescriptionModule()", + "WebToastDescriptionModule": "WebToastDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleButtonDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleButtonDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleButtonDescription()": "WebToggleButtonDescription()", + "WebToggleButtonDescription": "WebToggleButtonDescription()", + "Disabled": "Disabled", + "Selected": "Selected", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebToggleButtonDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleButtonDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleButtonDescriptionMetadata()": "WebToggleButtonDescriptionMetadata()", + "WebToggleButtonDescriptionMetadata": "WebToggleButtonDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleButtonDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleButtonDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebToggleButtonDescriptionModule()": "WebToggleButtonDescriptionModule()", + "WebToggleButtonDescriptionModule": "WebToggleButtonDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleViewCancelableEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleViewCancelableEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewCancelableEventArgsDescription()": "WebToggleViewCancelableEventArgsDescription()", + "WebToggleViewCancelableEventArgsDescription": "WebToggleViewCancelableEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebToggleViewCancelableEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleViewCancelableEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewCancelableEventArgsDescriptionMetadata()": "WebToggleViewCancelableEventArgsDescriptionMetadata()", + "WebToggleViewCancelableEventArgsDescriptionMetadata": "WebToggleViewCancelableEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleViewCancelableEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleViewCancelableEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewCancelableEventArgsDetailDescription()": "WebToggleViewCancelableEventArgsDetailDescription()", + "WebToggleViewCancelableEventArgsDetailDescription": "WebToggleViewCancelableEventArgsDetailDescription()", + "Id": "Id", + "Type": "Type" + } + } + ], + "WebToggleViewCancelableEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleViewCancelableEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewCancelableEventArgsDetailDescriptionMetadata()": "WebToggleViewCancelableEventArgsDetailDescriptionMetadata()", + "WebToggleViewCancelableEventArgsDetailDescriptionMetadata": "WebToggleViewCancelableEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleViewEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleViewEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewEventArgsDescription()": "WebToggleViewEventArgsDescription()", + "WebToggleViewEventArgsDescription": "WebToggleViewEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebToggleViewEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleViewEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewEventArgsDescriptionMetadata()": "WebToggleViewEventArgsDescriptionMetadata()", + "WebToggleViewEventArgsDescriptionMetadata": "WebToggleViewEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebToggleViewEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleViewEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewEventArgsDetailDescription()": "WebToggleViewEventArgsDetailDescription()", + "WebToggleViewEventArgsDetailDescription": "WebToggleViewEventArgsDetailDescription()", + "Id": "Id", + "Type": "Type" + } + } + ], + "WebToggleViewEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebToggleViewEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebToggleViewEventArgsDetailDescriptionMetadata()": "WebToggleViewEventArgsDetailDescriptionMetadata()", + "WebToggleViewEventArgsDetailDescriptionMetadata": "WebToggleViewEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTooltipDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTooltipDescription", + "k": "class", + "s": "classes", + "m": { + "WebTooltipDescription()": "WebTooltipDescription()", + "WebTooltipDescription": "WebTooltipDescription()", + "Anchor": "Anchor", + "ClosedRef": "ClosedRef", + "ClosingRef": "ClosingRef", + "HideDelay": "HideDelay", + "HideTriggers": "HideTriggers", + "Message": "Message", + "Offset": "Offset", + "Open": "Open", + "OpenedRef": "OpenedRef", + "OpeningRef": "OpeningRef", + "Placement": "Placement", + "ShowDelay": "ShowDelay", + "ShowTriggers": "ShowTriggers", + "Sticky": "Sticky", + "Type": "Type", + "WithArrow": "WithArrow" + } + } + ], + "WebTooltipDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTooltipDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTooltipDescriptionMetadata()": "WebTooltipDescriptionMetadata()", + "WebTooltipDescriptionMetadata": "WebTooltipDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTooltipDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTooltipDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTooltipDescriptionModule()": "WebTooltipDescriptionModule()", + "WebTooltipDescriptionModule": "WebTooltipDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTransactionServiceDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTransactionServiceDescription", + "k": "class", + "s": "classes", + "m": { + "WebTransactionServiceDescription()": "WebTransactionServiceDescription()", + "WebTransactionServiceDescription": "WebTransactionServiceDescription()", + "Type": "Type" + } + } + ], + "WebTransactionServiceDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTransactionServiceDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTransactionServiceDescriptionMetadata()": "WebTransactionServiceDescriptionMetadata()", + "WebTransactionServiceDescriptionMetadata": "WebTransactionServiceDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeDescription()": "WebTreeDescription()", + "WebTreeDescription": "WebTreeDescription()", + "ActiveItemRef": "ActiveItemRef", + "ItemCollapsedRef": "ItemCollapsedRef", + "ItemCollapsingRef": "ItemCollapsingRef", + "ItemExpandedRef": "ItemExpandedRef", + "ItemExpandingRef": "ItemExpandingRef", + "Selection": "Selection", + "SelectionChangedRef": "SelectionChangedRef", + "SingleBranchExpand": "SingleBranchExpand", + "ToggleNodeOnClick": "ToggleNodeOnClick", + "Type": "Type" + } + } + ], + "WebTreeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeDescriptionMetadata()": "WebTreeDescriptionMetadata()", + "WebTreeDescriptionMetadata": "WebTreeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTreeDescriptionModule()": "WebTreeDescriptionModule()", + "WebTreeDescriptionModule": "WebTreeDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeGridBaseDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeGridBaseDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridBaseDescription()": "WebTreeGridBaseDescription()", + "WebTreeGridBaseDescription": "WebTreeGridBaseDescription()", + "CascadeOnDelete": "CascadeOnDelete", + "ChildDataKey": "ChildDataKey", + "DataRef": "DataRef", + "ExpansionDepth": "ExpansionDepth", + "ForeignKey": "ForeignKey", + "HasChildrenKey": "HasChildrenKey", + "Id": "Id", + "ProcessedRootRecords": "ProcessedRootRecords", + "RootRecords": "RootRecords", + "RowLoadingIndicatorTemplateRef": "RowLoadingIndicatorTemplateRef", + "Type": "Type" + } + } + ], + "WebTreeGridBaseDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeGridBaseDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridBaseDescriptionMetadata()": "WebTreeGridBaseDescriptionMetadata()", + "WebTreeGridBaseDescriptionMetadata": "WebTreeGridBaseDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeGridDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeGridDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridDescription()": "WebTreeGridDescription()", + "WebTreeGridDescription": "WebTreeGridDescription()", + "ActionStripComponents": "ActionStripComponents", + "ChildrenResolvedRef": "ChildrenResolvedRef", + "ColumnsAutogeneratedRef": "ColumnsAutogeneratedRef", + "Type": "Type" + } + } + ], + "WebTreeGridDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeGridDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridDescriptionMetadata()": "WebTreeGridDescriptionMetadata()", + "WebTreeGridDescriptionMetadata": "WebTreeGridDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeGridDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeGridDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridDescriptionModule()": "WebTreeGridDescriptionModule()", + "WebTreeGridDescriptionModule": "WebTreeGridDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeGridRecordDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeGridRecordDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridRecordDescription()": "WebTreeGridRecordDescription()", + "WebTreeGridRecordDescription": "WebTreeGridRecordDescription()", + "Children": "Children", + "Data": "Data", + "Expanded": "Expanded", + "IsFilteredOutParent": "IsFilteredOutParent", + "Key": "Key", + "Level": "Level", + "RecordParent": "RecordParent", + "Type": "Type" + } + } + ], + "WebTreeGridRecordDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeGridRecordDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeGridRecordDescriptionMetadata()": "WebTreeGridRecordDescriptionMetadata()", + "WebTreeGridRecordDescriptionMetadata": "WebTreeGridRecordDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeItemComponentEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeItemComponentEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemComponentEventArgsDescription()": "WebTreeItemComponentEventArgsDescription()", + "WebTreeItemComponentEventArgsDescription": "WebTreeItemComponentEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTreeItemComponentEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeItemComponentEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemComponentEventArgsDescriptionMetadata()": "WebTreeItemComponentEventArgsDescriptionMetadata()", + "WebTreeItemComponentEventArgsDescriptionMetadata": "WebTreeItemComponentEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeItemDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeItemDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemDescription()": "WebTreeItemDescription()", + "WebTreeItemDescription": "WebTreeItemDescription()", + "Active": "Active", + "Disabled": "Disabled", + "Expanded": "Expanded", + "Label": "Label", + "Level": "Level", + "Loading": "Loading", + "Parent": "Parent", + "Selected": "Selected", + "Type": "Type", + "Value": "Value" + } + } + ], + "WebTreeItemDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeItemDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemDescriptionMetadata()": "WebTreeItemDescriptionMetadata()", + "WebTreeItemDescriptionMetadata": "WebTreeItemDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeItemDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeItemDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WebTreeItemDescriptionModule()": "WebTreeItemDescriptionModule()", + "WebTreeItemDescriptionModule": "WebTreeItemDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeSelectionEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeSelectionEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeSelectionEventArgsDescription()": "WebTreeSelectionEventArgsDescription()", + "WebTreeSelectionEventArgsDescription": "WebTreeSelectionEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebTreeSelectionEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeSelectionEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeSelectionEventArgsDescriptionMetadata()": "WebTreeSelectionEventArgsDescriptionMetadata()", + "WebTreeSelectionEventArgsDescriptionMetadata": "WebTreeSelectionEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebTreeSelectionEventArgsDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeSelectionEventArgsDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebTreeSelectionEventArgsDetailDescription()": "WebTreeSelectionEventArgsDetailDescription()", + "WebTreeSelectionEventArgsDetailDescription": "WebTreeSelectionEventArgsDetailDescription()", + "NewSelection": "NewSelection", + "Type": "Type" + } + } + ], + "WebTreeSelectionEventArgsDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebTreeSelectionEventArgsDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebTreeSelectionEventArgsDetailDescriptionMetadata()": "WebTreeSelectionEventArgsDetailDescriptionMetadata()", + "WebTreeSelectionEventArgsDetailDescriptionMetadata": "WebTreeSelectionEventArgsDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebValidationErrorsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebValidationErrorsDescription", + "k": "class", + "s": "classes", + "m": { + "WebValidationErrorsDescription()": "WebValidationErrorsDescription()", + "WebValidationErrorsDescription": "WebValidationErrorsDescription()", + "Type": "Type" + } + } + ], + "WebValidationErrorsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebValidationErrorsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebValidationErrorsDescriptionMetadata()": "WebValidationErrorsDescriptionMetadata()", + "WebValidationErrorsDescriptionMetadata": "WebValidationErrorsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebValuesChangeDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebValuesChangeDescription", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeDescription()": "WebValuesChangeDescription()", + "WebValuesChangeDescription": "WebValuesChangeDescription()", + "Type": "Type", + "Values": "Values" + } + } + ], + "WebValuesChangeDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebValuesChangeDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeDescriptionMetadata()": "WebValuesChangeDescriptionMetadata()", + "WebValuesChangeDescriptionMetadata": "WebValuesChangeDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebValuesChangeDetailDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebValuesChangeDetailDescription", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeDetailDescription()": "WebValuesChangeDetailDescription()", + "WebValuesChangeDetailDescription": "WebValuesChangeDetailDescription()", + "Type": "Type", + "Values": "Values" + } + } + ], + "WebValuesChangeDetailDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebValuesChangeDetailDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeDetailDescriptionMetadata()": "WebValuesChangeDetailDescriptionMetadata()", + "WebValuesChangeDetailDescriptionMetadata": "WebValuesChangeDetailDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WebValuesChangeEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebValuesChangeEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeEventArgsDescription()": "WebValuesChangeEventArgsDescription()", + "WebValuesChangeEventArgsDescription": "WebValuesChangeEventArgsDescription()", + "Detail": "Detail", + "Type": "Type" + } + } + ], + "WebValuesChangeEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WebValuesChangeEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WebValuesChangeEventArgsDescriptionMetadata()": "WebValuesChangeEventArgsDescriptionMetadata()", + "WebValuesChangeEventArgsDescriptionMetadata": "WebValuesChangeEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WeightedCloseIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/WeightedCloseIndicator", + "k": "class", + "s": "classes", + "m": { + "WeightedCloseIndicator()": "WeightedCloseIndicator()", + "WeightedCloseIndicator": "WeightedCloseIndicator()" + } + } + ], + "WeightedCloseIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WeightedCloseIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "WeightedCloseIndicatorDescription()": "WeightedCloseIndicatorDescription()", + "WeightedCloseIndicatorDescription": "WeightedCloseIndicatorDescription()", + "Type": "Type" + } + } + ], + "WeightedCloseIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WeightedCloseIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WeightedCloseIndicatorDescriptionMetadata()": "WeightedCloseIndicatorDescriptionMetadata()", + "WeightedCloseIndicatorDescriptionMetadata": "WeightedCloseIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WeightedCloseIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WeightedCloseIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WeightedCloseIndicatorDescriptionModule()": "WeightedCloseIndicatorDescriptionModule()", + "WeightedCloseIndicatorDescriptionModule": "WeightedCloseIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WidgetIncludeDependsAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WidgetIncludeDependsAttribute", + "k": "class", + "s": "classes", + "m": { + "WidgetIncludeDependsAttribute(string)": "WidgetIncludeDependsAttribute(string)", + "WidgetIncludeDependsAttribute": "WidgetIncludeDependsAttribute(string)", + "Name": "Name" + } + } + ], + "WidgetModuleExclusionParentAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WidgetModuleExclusionParentAttribute", + "k": "class", + "s": "classes", + "m": { + "WidgetModuleExclusionParentAttribute(string)": "WidgetModuleExclusionParentAttribute(string)", + "WidgetModuleExclusionParentAttribute": "WidgetModuleExclusionParentAttribute(string)", + "Name": "Name" + } + } + ], + "WilliamsPercentRIndicator": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/WilliamsPercentRIndicator", + "k": "class", + "s": "classes", + "m": { + "WilliamsPercentRIndicator()": "WilliamsPercentRIndicator()", + "WilliamsPercentRIndicator": "WilliamsPercentRIndicator()", + "Period": "Period", + "PeriodProperty": "PeriodProperty" + } + } + ], + "WilliamsPercentRIndicatorDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WilliamsPercentRIndicatorDescription", + "k": "class", + "s": "classes", + "m": { + "WilliamsPercentRIndicatorDescription()": "WilliamsPercentRIndicatorDescription()", + "WilliamsPercentRIndicatorDescription": "WilliamsPercentRIndicatorDescription()", + "Period": "Period", + "Type": "Type" + } + } + ], + "WilliamsPercentRIndicatorDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WilliamsPercentRIndicatorDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WilliamsPercentRIndicatorDescriptionMetadata()": "WilliamsPercentRIndicatorDescriptionMetadata()", + "WilliamsPercentRIndicatorDescriptionMetadata": "WilliamsPercentRIndicatorDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WilliamsPercentRIndicatorDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WilliamsPercentRIndicatorDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "WilliamsPercentRIndicatorDescriptionModule()": "WilliamsPercentRIndicatorDescriptionModule()", + "WilliamsPercentRIndicatorDescriptionModule": "WilliamsPercentRIndicatorDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WindowResponse": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/WindowResponse", + "k": "enum", + "s": "enums" + } + ], + "WinMDPropertyToObjectTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WinMDPropertyToObjectTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "WinMDPropertyToObjectTypeAttribute()": "WinMDPropertyToObjectTypeAttribute()", + "WinMDPropertyToObjectTypeAttribute": "WinMDPropertyToObjectTypeAttribute()" + } + } + ], + "WinMDTypeAttribute": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WinMDTypeAttribute", + "k": "class", + "s": "classes", + "m": { + "WinMDTypeAttribute()": "WinMDTypeAttribute()", + "WinMDTypeAttribute": "WinMDTypeAttribute()" + } + } + ], + "WinUIAppPackageLoader": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WinUIAppPackageLoader", + "k": "class", + "s": "classes", + "m": { + "WinUIAppPackageLoader()": "WinUIAppPackageLoader()", + "WinUIAppPackageLoader": "WinUIAppPackageLoader()", + "CanHandle(Uri)": "CanHandle(Uri)", + "CanHandle": "CanHandle(Uri)", + "LoadAsync(Uri, Action, Action)": "LoadAsync(Uri, Action, Action)", + "LoadAsync": "LoadAsync(Uri, Action, Action)" + } + } + ], + "WinUIBitmapUtilities": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WinUIBitmapUtilities", + "k": "class", + "s": "classes", + "m": { + "WinUIBitmapUtilities()": "WinUIBitmapUtilities()", + "WinUIBitmapUtilities": "WinUIBitmapUtilities()", + "GetPixelAt(object, int, int)": "GetPixelAt(object, int, int)", + "GetPixelAt": "GetPixelAt(object, int, int)" + } + } + ], + "WinUIDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/WinUIDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIDashboardTileFeature()": "WinUIDashboardTileFeature()", + "WinUIDashboardTileFeature": "WinUIDashboardTileFeature()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "WinUIDataChartDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/WinUIDataChartDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIDataChartDashboardTileFeature()": "WinUIDataChartDashboardTileFeature()", + "WinUIDataChartDashboardTileFeature": "WinUIDataChartDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUIDispatcher": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WinUIDispatcher", + "k": "class", + "s": "classes", + "m": { + "WinUIDispatcher()": "WinUIDispatcher()", + "WinUIDispatcher": "WinUIDispatcher()", + "BeginInvoke(Action)": "BeginInvoke(Action)", + "BeginInvoke": "BeginInvoke(Action)" + } + } + ], + "WinUIGeographicMapDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/WinUIGeographicMapDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIGeographicMapDashboardTileFeature()": "WinUIGeographicMapDashboardTileFeature()", + "WinUIGeographicMapDashboardTileFeature": "WinUIGeographicMapDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUILinearGaugeDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/WinUILinearGaugeDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUILinearGaugeDashboardTileFeature()": "WinUILinearGaugeDashboardTileFeature()", + "WinUILinearGaugeDashboardTileFeature": "WinUILinearGaugeDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUIPieChartDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/WinUIPieChartDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIPieChartDashboardTileFeature()": "WinUIPieChartDashboardTileFeature()", + "WinUIPieChartDashboardTileFeature": "WinUIPieChartDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUIPixelScaler": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WinUIPixelScaler", + "k": "class", + "s": "classes", + "m": { + "WinUIPixelScaler()": "WinUIPixelScaler()", + "WinUIPixelScaler": "WinUIPixelScaler()", + "ClampPixelScalingRatio(double)": "ClampPixelScalingRatio(double)", + "ClampPixelScalingRatio": "ClampPixelScalingRatio(double)", + "ToFontPixelUnits(double)": "ToFontPixelUnits(double)", + "ToFontPixelUnits": "ToFontPixelUnits(double)", + "ToNativePixelUnits(double)": "ToNativePixelUnits(double)", + "ToNativePixelUnits": "ToNativePixelUnits(double)", + "ToPixelUnits(double)": "ToPixelUnits(double)", + "ToPixelUnits": "ToPixelUnits(double)" + } + } + ], + "WinUIPlatformRegistration": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WinUIPlatformRegistration", + "k": "class", + "s": "classes", + "m": { + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUIPlatformUtilities": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WinUIPlatformUtilities", + "k": "class", + "s": "classes", + "m": { + "WinUIPlatformUtilities()": "WinUIPlatformUtilities()", + "WinUIPlatformUtilities": "WinUIPlatformUtilities()", + "CreateCultureFromID(int, string)": "CreateCultureFromID(int, string)", + "CreateCultureFromID": "CreateCultureFromID(int, string)", + "GetAppWindow(object)": "GetAppWindow(object)", + "GetAppWindow": "GetAppWindow(object)", + "GetCurrentDispatchContext()": "GetCurrentDispatchContext()", + "GetCurrentDispatchContext": "GetCurrentDispatchContext()", + "InvokeOnMainThread(object, Action)": "InvokeOnMainThread(object, Action)", + "InvokeOnMainThread": "InvokeOnMainThread(object, Action)", + "InvokeOnMainThreadAfter(object, Action, long)": "InvokeOnMainThreadAfter(object, Action, long)", + "InvokeOnMainThreadAfter": "InvokeOnMainThreadAfter(object, Action, long)" + } + } + ], + "WinUIRadialGaugeDashboardTileFeature": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/WinUIRadialGaugeDashboardTileFeature", + "k": "class", + "s": "classes", + "m": { + "WinUIRadialGaugeDashboardTileFeature()": "WinUIRadialGaugeDashboardTileFeature()", + "WinUIRadialGaugeDashboardTileFeature": "WinUIRadialGaugeDashboardTileFeature()", + "Register()": "Register()", + "Register": "Register()" + } + } + ], + "WinUITemplateHelper": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WinUITemplateHelper", + "k": "class", + "s": "classes", + "m": { + "ApplyContentTemplate(Control)": "ApplyContentTemplate(Control)", + "ApplyContentTemplate": "ApplyContentTemplate(Control)", + "PartContentName": "PartContentName" + } + } + ], + "WinUITextMetrics": [ + { + "p": "Infragistics.WinUI.Core", + "u": "/api/winui/Infragistics.WinUI.Core/latest/classes/WinUITextMetrics", + "k": "class", + "s": "classes", + "m": { + "WinUITextMetrics()": "WinUITextMetrics()", + "WinUITextMetrics": "WinUITextMetrics()", + "ExecuteWithDispatcher(Action)": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher": "ExecuteWithDispatcher(Action)", + "ExecuteWithDispatcher(Action, object)": "ExecuteWithDispatcher(Action, object)", + "MeasureText(string, string, float, bool, bool, bool, ref Rect)": "MeasureText(string, string, float, bool, bool, bool, ref Rect)", + "MeasureText": "MeasureText(string, string, float, bool, bool, bool, ref Rect)" + } + } + ], + "WrapperExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WrapperExpression", + "k": "class", + "s": "classes", + "m": { + "WrapperExpression(FilterExpression)": "WrapperExpression(FilterExpression)", + "WrapperExpression": "WrapperExpression(FilterExpression)", + "WrapperExpression(string)": "WrapperExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "EnsureInnerExpression()": "EnsureInnerExpression()", + "EnsureInnerExpression": "EnsureInnerExpression()", + "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "EvaluateWithEnvironment": "EvaluateWithEnvironment(object, IDataSourceDataProvider, IDataSourceSchema, IFilterExpressionEnvironment)", + "Expression": "Expression", + "Factory": "Factory", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()", + "InnerExpression": "InnerExpression", + "IsWrapper": "IsWrapper", + "Precedence": "Precedence", + "PropertyName": "PropertyName", + "ResolveHasBooleanReturn()": "ResolveHasBooleanReturn()", + "ResolveHasBooleanReturn": "ResolveHasBooleanReturn()" + } + } + ], + "WrapperExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WrapperExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "WrapperExpressionDescription()": "WrapperExpressionDescription()", + "WrapperExpressionDescription": "WrapperExpressionDescription()", + "Expression": "Expression", + "InnerExpression": "InnerExpression", + "PropertyName": "PropertyName", + "Type": "Type" + } + } + ], + "WrapperExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/WrapperExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "WrapperExpressionDescriptionMetadata()": "WrapperExpressionDescriptionMetadata()", + "WrapperExpressionDescriptionMetadata": "WrapperExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "XamBulletGraph": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/XamBulletGraph", + "k": "class", + "s": "classes", + "m": { + "XamBulletGraph()": "XamBulletGraph()", + "XamBulletGraph": "XamBulletGraph()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueDisplayModeProperty": "ActualHighlightValueDisplayModeProperty", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualHighlightValueOpacityProperty": "ActualHighlightValueOpacityProperty", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Animating": "Animating", + "AnimatingProperty": "AnimatingProperty", + "BackingBrush": "BackingBrush", + "BackingBrushProperty": "BackingBrushProperty", + "BackingInnerExtent": "BackingInnerExtent", + "BackingInnerExtentProperty": "BackingInnerExtentProperty", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOuterExtentProperty": "BackingOuterExtentProperty", + "BackingOutline": "BackingOutline", + "BackingOutlineProperty": "BackingOutlineProperty", + "BackingStrokeThickness": "BackingStrokeThickness", + "BackingStrokeThicknessProperty": "BackingStrokeThicknessProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontBrush": "FontBrush", + "FontBrushProperty": "FontBrushProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetValueForPoint(Point)": "GetValueForPoint(Point)", + "GetValueForPoint": "GetValueForPoint(Point)", + "HighlightValue": "HighlightValue", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueDisplayModeProperty": "HighlightValueDisplayModeProperty", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightValueOpacityProperty": "HighlightValueOpacityProperty", + "HighlightValueProperty": "HighlightValueProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "IsScaleInverted": "IsScaleInverted", + "IsScaleInvertedProperty": "IsScaleInvertedProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInterval": "LabelInterval", + "LabelIntervalProperty": "LabelIntervalProperty", + "LabelsPostInitial": "LabelsPostInitial", + "LabelsPostInitialProperty": "LabelsPostInitialProperty", + "LabelsPreTerminal": "LabelsPreTerminal", + "LabelsPreTerminalProperty": "LabelsPreTerminalProperty", + "LabelsVisible": "LabelsVisible", + "LabelsVisibleProperty": "LabelsVisibleProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MergeViewports": "MergeViewports", + "MergeViewportsProperty": "MergeViewportsProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "MinorTickBrush": "MinorTickBrush", + "MinorTickBrushProperty": "MinorTickBrushProperty", + "MinorTickCount": "MinorTickCount", + "MinorTickCountProperty": "MinorTickCountProperty", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickEndExtentProperty": "MinorTickEndExtentProperty", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStartExtentProperty": "MinorTickStartExtentProperty", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "MinorTickStrokeThicknessProperty": "MinorTickStrokeThicknessProperty", + "OnAlignLabel(AlignLinearGraphLabelEventArgs)": "OnAlignLabel(AlignLinearGraphLabelEventArgs)", + "OnAlignLabel": "OnAlignLabel(AlignLinearGraphLabelEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFormatLabel(FormatLinearGraphLabelEventArgs)": "OnFormatLabel(FormatLinearGraphLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(FormatLinearGraphLabelEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RangeBrushes": "RangeBrushes", + "RangeBrushesProperty": "RangeBrushesProperty", + "RangeInnerExtent": "RangeInnerExtent", + "RangeInnerExtentProperty": "RangeInnerExtentProperty", + "RangeOuterExtent": "RangeOuterExtent", + "RangeOuterExtentProperty": "RangeOuterExtentProperty", + "RangeOutlines": "RangeOutlines", + "RangeOutlinesProperty": "RangeOutlinesProperty", + "Ranges": "Ranges", + "ScaleBackgroundBrush": "ScaleBackgroundBrush", + "ScaleBackgroundBrushProperty": "ScaleBackgroundBrushProperty", + "ScaleBackgroundOutline": "ScaleBackgroundOutline", + "ScaleBackgroundOutlineProperty": "ScaleBackgroundOutlineProperty", + "ScaleBackgroundThickness": "ScaleBackgroundThickness", + "ScaleBackgroundThicknessProperty": "ScaleBackgroundThicknessProperty", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleEndExtentProperty": "ScaleEndExtentProperty", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleStartExtentProperty": "ScaleStartExtentProperty", + "TargetValue": "TargetValue", + "TargetValueBreadth": "TargetValueBreadth", + "TargetValueBreadthProperty": "TargetValueBreadthProperty", + "TargetValueBrush": "TargetValueBrush", + "TargetValueBrushProperty": "TargetValueBrushProperty", + "TargetValueInnerExtent": "TargetValueInnerExtent", + "TargetValueInnerExtentProperty": "TargetValueInnerExtentProperty", + "TargetValueOuterExtent": "TargetValueOuterExtent", + "TargetValueOuterExtentProperty": "TargetValueOuterExtentProperty", + "TargetValueOutline": "TargetValueOutline", + "TargetValueOutlineProperty": "TargetValueOutlineProperty", + "TargetValueProperty": "TargetValueProperty", + "TargetValueStrokeThickness": "TargetValueStrokeThickness", + "TargetValueStrokeThicknessProperty": "TargetValueStrokeThicknessProperty", + "TickBrush": "TickBrush", + "TickBrushProperty": "TickBrushProperty", + "TickEndExtent": "TickEndExtent", + "TickEndExtentProperty": "TickEndExtentProperty", + "TickStartExtent": "TickStartExtent", + "TickStartExtentProperty": "TickStartExtentProperty", + "TickStrokeThickness": "TickStrokeThickness", + "TickStrokeThicknessProperty": "TickStrokeThicknessProperty", + "TicksPostInitial": "TicksPostInitial", + "TicksPostInitialProperty": "TicksPostInitialProperty", + "TicksPreTerminal": "TicksPreTerminal", + "TicksPreTerminalProperty": "TicksPreTerminalProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionProgress": "TransitionProgress", + "TransitionProgressProperty": "TransitionProgressProperty", + "Value": "Value", + "ValueBrush": "ValueBrush", + "ValueBrushProperty": "ValueBrushProperty", + "ValueInnerExtent": "ValueInnerExtent", + "ValueInnerExtentProperty": "ValueInnerExtentProperty", + "ValueOuterExtent": "ValueOuterExtent", + "ValueOuterExtentProperty": "ValueOuterExtentProperty", + "ValueOutline": "ValueOutline", + "ValueOutlineProperty": "ValueOutlineProperty", + "ValueProperty": "ValueProperty", + "ValueStrokeThickness": "ValueStrokeThickness", + "ValueStrokeThicknessProperty": "ValueStrokeThicknessProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamButton": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamButton", + "k": "class", + "s": "classes", + "m": { + "XamButton()": "XamButton()", + "XamButton": "XamButton()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualAmbientShadowColorProperty": "ActualAmbientShadowColorProperty", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderColorProperty": "ActualBorderColorProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualDisableRipple": "ActualDisableRipple", + "ActualDisableRippleProperty": "ActualDisableRippleProperty", + "ActualDisabledBackgroundColor": "ActualDisabledBackgroundColor", + "ActualDisabledBackgroundColorProperty": "ActualDisabledBackgroundColorProperty", + "ActualDisabledBorderColor": "ActualDisabledBorderColor", + "ActualDisabledBorderColorProperty": "ActualDisabledBorderColorProperty", + "ActualDisabledElevation": "ActualDisabledElevation", + "ActualDisabledElevationProperty": "ActualDisabledElevationProperty", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualDisabledTextColorProperty": "ActualDisabledTextColorProperty", + "ActualElevationMode": "ActualElevationMode", + "ActualElevationModeProperty": "ActualElevationModeProperty", + "ActualFocusBackgroundColor": "ActualFocusBackgroundColor", + "ActualFocusBackgroundColorProperty": "ActualFocusBackgroundColorProperty", + "ActualFocusElevation": "ActualFocusElevation", + "ActualFocusElevationProperty": "ActualFocusElevationProperty", + "ActualFocusTextColor": "ActualFocusTextColor", + "ActualFocusTextColorProperty": "ActualFocusTextColorProperty", + "ActualHoverBackgroundColor": "ActualHoverBackgroundColor", + "ActualHoverBackgroundColorProperty": "ActualHoverBackgroundColorProperty", + "ActualHoverElevation": "ActualHoverElevation", + "ActualHoverElevationProperty": "ActualHoverElevationProperty", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualHoverTextColorProperty": "ActualHoverTextColorProperty", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualPenumbraShadowColorProperty": "ActualPenumbraShadowColorProperty", + "ActualRestingElevation": "ActualRestingElevation", + "ActualRestingElevationProperty": "ActualRestingElevationProperty", + "ActualRippleColor": "ActualRippleColor", + "ActualRippleColorProperty": "ActualRippleColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "ActualUmbraShadowColorProperty": "ActualUmbraShadowColorProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderColor": "BorderColor", + "BorderColorProperty": "BorderColorProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "ClickTunneling": "ClickTunneling", + "ClickTunnelingProperty": "ClickTunnelingProperty", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisableHover": "DisableHover", + "DisableHoverProperty": "DisableHoverProperty", + "DisablePointer": "DisablePointer", + "DisablePointerProperty": "DisablePointerProperty", + "DisableRipple": "DisableRipple", + "DisableRippleProperty": "DisableRippleProperty", + "DisableTransitions": "DisableTransitions", + "DisableTransitionsProperty": "DisableTransitionsProperty", + "DisabledBackgroundColor": "DisabledBackgroundColor", + "DisabledBackgroundColorProperty": "DisabledBackgroundColorProperty", + "DisabledBorderColor": "DisabledBorderColor", + "DisabledBorderColorProperty": "DisabledBorderColorProperty", + "DisabledElevation": "DisabledElevation", + "DisabledElevationProperty": "DisabledElevationProperty", + "DisabledTextColor": "DisabledTextColor", + "DisabledTextColorProperty": "DisabledTextColorProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "ElevationMode": "ElevationMode", + "ElevationModeProperty": "ElevationModeProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FabBackgroundColor": "FabBackgroundColor", + "FabBackgroundColorProperty": "FabBackgroundColorProperty", + "FabBorderColor": "FabBorderColor", + "FabBorderColorProperty": "FabBorderColorProperty", + "FabBorderWidth": "FabBorderWidth", + "FabBorderWidthProperty": "FabBorderWidthProperty", + "FabCornerRadiusBottomLeft": "FabCornerRadiusBottomLeft", + "FabCornerRadiusBottomLeftProperty": "FabCornerRadiusBottomLeftProperty", + "FabCornerRadiusBottomRight": "FabCornerRadiusBottomRight", + "FabCornerRadiusBottomRightProperty": "FabCornerRadiusBottomRightProperty", + "FabCornerRadiusTopLeft": "FabCornerRadiusTopLeft", + "FabCornerRadiusTopLeftProperty": "FabCornerRadiusTopLeftProperty", + "FabCornerRadiusTopRight": "FabCornerRadiusTopRight", + "FabCornerRadiusTopRightProperty": "FabCornerRadiusTopRightProperty", + "FabDisabledBackgroundColor": "FabDisabledBackgroundColor", + "FabDisabledBackgroundColorProperty": "FabDisabledBackgroundColorProperty", + "FabDisabledBorderColor": "FabDisabledBorderColor", + "FabDisabledBorderColorProperty": "FabDisabledBorderColorProperty", + "FabDisabledElevation": "FabDisabledElevation", + "FabDisabledElevationProperty": "FabDisabledElevationProperty", + "FabDisabledTextColor": "FabDisabledTextColor", + "FabDisabledTextColorProperty": "FabDisabledTextColorProperty", + "FabFocusBackgroundColor": "FabFocusBackgroundColor", + "FabFocusBackgroundColorProperty": "FabFocusBackgroundColorProperty", + "FabFocusElevation": "FabFocusElevation", + "FabFocusElevationProperty": "FabFocusElevationProperty", + "FabFocusTextColor": "FabFocusTextColor", + "FabFocusTextColorProperty": "FabFocusTextColorProperty", + "FabHoverBackgroundColor": "FabHoverBackgroundColor", + "FabHoverBackgroundColorProperty": "FabHoverBackgroundColorProperty", + "FabHoverElevation": "FabHoverElevation", + "FabHoverElevationProperty": "FabHoverElevationProperty", + "FabHoverTextColor": "FabHoverTextColor", + "FabHoverTextColorProperty": "FabHoverTextColorProperty", + "FabRestingElevation": "FabRestingElevation", + "FabRestingElevationProperty": "FabRestingElevationProperty", + "FabRippleColor": "FabRippleColor", + "FabRippleColorProperty": "FabRippleColorProperty", + "FabTextColor": "FabTextColor", + "FabTextColorProperty": "FabTextColorProperty", + "FillAvailableSpace": "FillAvailableSpace", + "FillAvailableSpaceProperty": "FillAvailableSpaceProperty", + "FlatBackgroundColor": "FlatBackgroundColor", + "FlatBackgroundColorProperty": "FlatBackgroundColorProperty", + "FlatBorderColor": "FlatBorderColor", + "FlatBorderColorProperty": "FlatBorderColorProperty", + "FlatBorderWidth": "FlatBorderWidth", + "FlatBorderWidthProperty": "FlatBorderWidthProperty", + "FlatCornerRadiusBottomLeft": "FlatCornerRadiusBottomLeft", + "FlatCornerRadiusBottomLeftProperty": "FlatCornerRadiusBottomLeftProperty", + "FlatCornerRadiusBottomRight": "FlatCornerRadiusBottomRight", + "FlatCornerRadiusBottomRightProperty": "FlatCornerRadiusBottomRightProperty", + "FlatCornerRadiusTopLeft": "FlatCornerRadiusTopLeft", + "FlatCornerRadiusTopLeftProperty": "FlatCornerRadiusTopLeftProperty", + "FlatCornerRadiusTopRight": "FlatCornerRadiusTopRight", + "FlatCornerRadiusTopRightProperty": "FlatCornerRadiusTopRightProperty", + "FlatDisabledBackgroundColor": "FlatDisabledBackgroundColor", + "FlatDisabledBackgroundColorProperty": "FlatDisabledBackgroundColorProperty", + "FlatDisabledBorderColor": "FlatDisabledBorderColor", + "FlatDisabledBorderColorProperty": "FlatDisabledBorderColorProperty", + "FlatDisabledElevation": "FlatDisabledElevation", + "FlatDisabledElevationProperty": "FlatDisabledElevationProperty", + "FlatDisabledTextColor": "FlatDisabledTextColor", + "FlatDisabledTextColorProperty": "FlatDisabledTextColorProperty", + "FlatFocusBackgroundColor": "FlatFocusBackgroundColor", + "FlatFocusBackgroundColorProperty": "FlatFocusBackgroundColorProperty", + "FlatFocusElevation": "FlatFocusElevation", + "FlatFocusElevationProperty": "FlatFocusElevationProperty", + "FlatFocusTextColor": "FlatFocusTextColor", + "FlatFocusTextColorProperty": "FlatFocusTextColorProperty", + "FlatHoverBackgroundColor": "FlatHoverBackgroundColor", + "FlatHoverBackgroundColorProperty": "FlatHoverBackgroundColorProperty", + "FlatHoverElevation": "FlatHoverElevation", + "FlatHoverElevationProperty": "FlatHoverElevationProperty", + "FlatHoverTextColor": "FlatHoverTextColor", + "FlatHoverTextColorProperty": "FlatHoverTextColorProperty", + "FlatRestingElevation": "FlatRestingElevation", + "FlatRestingElevationProperty": "FlatRestingElevationProperty", + "FlatRippleColor": "FlatRippleColor", + "FlatRippleColorProperty": "FlatRippleColorProperty", + "FlatTextColor": "FlatTextColor", + "FlatTextColorProperty": "FlatTextColorProperty", + "FocusBackgroundColor": "FocusBackgroundColor", + "FocusBackgroundColorProperty": "FocusBackgroundColorProperty", + "FocusElevation": "FocusElevation", + "FocusElevationProperty": "FocusElevationProperty", + "FocusTextColor": "FocusTextColor", + "FocusTextColorProperty": "FocusTextColorProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HorizontalContentAlignment": "HorizontalContentAlignment", + "HorizontalContentAlignmentProperty": "HorizontalContentAlignmentProperty", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverBackgroundColorProperty": "HoverBackgroundColorProperty", + "HoverElevation": "HoverElevation", + "HoverElevationProperty": "HoverElevationProperty", + "HoverTextColor": "HoverTextColor", + "HoverTextColorProperty": "HoverTextColorProperty", + "IconBackgroundColor": "IconBackgroundColor", + "IconBackgroundColorProperty": "IconBackgroundColorProperty", + "IconBorderColor": "IconBorderColor", + "IconBorderColorProperty": "IconBorderColorProperty", + "IconBorderWidth": "IconBorderWidth", + "IconBorderWidthProperty": "IconBorderWidthProperty", + "IconCornerRadiusBottomLeft": "IconCornerRadiusBottomLeft", + "IconCornerRadiusBottomLeftProperty": "IconCornerRadiusBottomLeftProperty", + "IconCornerRadiusBottomRight": "IconCornerRadiusBottomRight", + "IconCornerRadiusBottomRightProperty": "IconCornerRadiusBottomRightProperty", + "IconCornerRadiusTopLeft": "IconCornerRadiusTopLeft", + "IconCornerRadiusTopLeftProperty": "IconCornerRadiusTopLeftProperty", + "IconCornerRadiusTopRight": "IconCornerRadiusTopRight", + "IconCornerRadiusTopRightProperty": "IconCornerRadiusTopRightProperty", + "IconDisabledBackgroundColor": "IconDisabledBackgroundColor", + "IconDisabledBackgroundColorProperty": "IconDisabledBackgroundColorProperty", + "IconDisabledBorderColor": "IconDisabledBorderColor", + "IconDisabledBorderColorProperty": "IconDisabledBorderColorProperty", + "IconDisabledElevation": "IconDisabledElevation", + "IconDisabledElevationProperty": "IconDisabledElevationProperty", + "IconDisabledTextColor": "IconDisabledTextColor", + "IconDisabledTextColorProperty": "IconDisabledTextColorProperty", + "IconFocusBackgroundColor": "IconFocusBackgroundColor", + "IconFocusBackgroundColorProperty": "IconFocusBackgroundColorProperty", + "IconFocusElevation": "IconFocusElevation", + "IconFocusElevationProperty": "IconFocusElevationProperty", + "IconFocusTextColor": "IconFocusTextColor", + "IconFocusTextColorProperty": "IconFocusTextColorProperty", + "IconHoverBackgroundColor": "IconHoverBackgroundColor", + "IconHoverBackgroundColorProperty": "IconHoverBackgroundColorProperty", + "IconHoverElevation": "IconHoverElevation", + "IconHoverElevationProperty": "IconHoverElevationProperty", + "IconHoverTextColor": "IconHoverTextColor", + "IconHoverTextColorProperty": "IconHoverTextColorProperty", + "IconRestingElevation": "IconRestingElevation", + "IconRestingElevationProperty": "IconRestingElevationProperty", + "IconRippleColor": "IconRippleColor", + "IconRippleColorProperty": "IconRippleColorProperty", + "IconTextColor": "IconTextColor", + "IconTextColorProperty": "IconTextColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsFocusStyleEnabled": "IsFocusStyleEnabled", + "IsFocusStyleEnabledProperty": "IsFocusStyleEnabledProperty", + "IsFocused": "IsFocused", + "IsFocusedProperty": "IsFocusedProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "MinHeight": "MinHeight", + "MinHeightProperty": "MinHeightProperty", + "MinWidth": "MinWidth", + "MinWidthProperty": "MinWidthProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnClicked(ButtonClickEventArgs)": "OnClicked(ButtonClickEventArgs)", + "OnClicked": "OnClicked(ButtonClickEventArgs)", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnGotFocus(FocusEventArgs)": "OnGotFocus(FocusEventArgs)", + "OnGotFocus": "OnGotFocus(FocusEventArgs)", + "OnLostFocus(FocusEventArgs)": "OnLostFocus(FocusEventArgs)", + "OnLostFocus": "OnLostFocus(FocusEventArgs)", + "OnMouseDown(MouseEventArgs)": "OnMouseDown(MouseEventArgs)", + "OnMouseDown": "OnMouseDown(MouseEventArgs)", + "OnMouseEnter(MouseEventArgs)": "OnMouseEnter(MouseEventArgs)", + "OnMouseEnter": "OnMouseEnter(MouseEventArgs)", + "OnMouseLeave(MouseEventArgs)": "OnMouseLeave(MouseEventArgs)", + "OnMouseLeave": "OnMouseLeave(MouseEventArgs)", + "OnMouseUp(MouseEventArgs)": "OnMouseUp(MouseEventArgs)", + "OnMouseUp": "OnMouseUp(MouseEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OutlinedBackgroundColor": "OutlinedBackgroundColor", + "OutlinedBackgroundColorProperty": "OutlinedBackgroundColorProperty", + "OutlinedBorderColor": "OutlinedBorderColor", + "OutlinedBorderColorProperty": "OutlinedBorderColorProperty", + "OutlinedBorderWidth": "OutlinedBorderWidth", + "OutlinedBorderWidthProperty": "OutlinedBorderWidthProperty", + "OutlinedCornerRadiusBottomLeft": "OutlinedCornerRadiusBottomLeft", + "OutlinedCornerRadiusBottomLeftProperty": "OutlinedCornerRadiusBottomLeftProperty", + "OutlinedCornerRadiusBottomRight": "OutlinedCornerRadiusBottomRight", + "OutlinedCornerRadiusBottomRightProperty": "OutlinedCornerRadiusBottomRightProperty", + "OutlinedCornerRadiusTopLeft": "OutlinedCornerRadiusTopLeft", + "OutlinedCornerRadiusTopLeftProperty": "OutlinedCornerRadiusTopLeftProperty", + "OutlinedCornerRadiusTopRight": "OutlinedCornerRadiusTopRight", + "OutlinedCornerRadiusTopRightProperty": "OutlinedCornerRadiusTopRightProperty", + "OutlinedDisabledBackgroundColor": "OutlinedDisabledBackgroundColor", + "OutlinedDisabledBackgroundColorProperty": "OutlinedDisabledBackgroundColorProperty", + "OutlinedDisabledBorderColor": "OutlinedDisabledBorderColor", + "OutlinedDisabledBorderColorProperty": "OutlinedDisabledBorderColorProperty", + "OutlinedDisabledElevation": "OutlinedDisabledElevation", + "OutlinedDisabledElevationProperty": "OutlinedDisabledElevationProperty", + "OutlinedDisabledTextColor": "OutlinedDisabledTextColor", + "OutlinedDisabledTextColorProperty": "OutlinedDisabledTextColorProperty", + "OutlinedFocusBackgroundColor": "OutlinedFocusBackgroundColor", + "OutlinedFocusBackgroundColorProperty": "OutlinedFocusBackgroundColorProperty", + "OutlinedFocusElevation": "OutlinedFocusElevation", + "OutlinedFocusElevationProperty": "OutlinedFocusElevationProperty", + "OutlinedFocusTextColor": "OutlinedFocusTextColor", + "OutlinedFocusTextColorProperty": "OutlinedFocusTextColorProperty", + "OutlinedHoverBackgroundColor": "OutlinedHoverBackgroundColor", + "OutlinedHoverBackgroundColorProperty": "OutlinedHoverBackgroundColorProperty", + "OutlinedHoverElevation": "OutlinedHoverElevation", + "OutlinedHoverElevationProperty": "OutlinedHoverElevationProperty", + "OutlinedHoverTextColor": "OutlinedHoverTextColor", + "OutlinedHoverTextColorProperty": "OutlinedHoverTextColorProperty", + "OutlinedRestingElevation": "OutlinedRestingElevation", + "OutlinedRestingElevationProperty": "OutlinedRestingElevationProperty", + "OutlinedRippleColor": "OutlinedRippleColor", + "OutlinedRippleColorProperty": "OutlinedRippleColorProperty", + "OutlinedTextColor": "OutlinedTextColor", + "OutlinedTextColorProperty": "OutlinedTextColorProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "RaisedBackgroundColor": "RaisedBackgroundColor", + "RaisedBackgroundColorProperty": "RaisedBackgroundColorProperty", + "RaisedBorderColor": "RaisedBorderColor", + "RaisedBorderColorProperty": "RaisedBorderColorProperty", + "RaisedBorderWidth": "RaisedBorderWidth", + "RaisedBorderWidthProperty": "RaisedBorderWidthProperty", + "RaisedCornerRadiusBottomLeft": "RaisedCornerRadiusBottomLeft", + "RaisedCornerRadiusBottomLeftProperty": "RaisedCornerRadiusBottomLeftProperty", + "RaisedCornerRadiusBottomRight": "RaisedCornerRadiusBottomRight", + "RaisedCornerRadiusBottomRightProperty": "RaisedCornerRadiusBottomRightProperty", + "RaisedCornerRadiusTopLeft": "RaisedCornerRadiusTopLeft", + "RaisedCornerRadiusTopLeftProperty": "RaisedCornerRadiusTopLeftProperty", + "RaisedCornerRadiusTopRight": "RaisedCornerRadiusTopRight", + "RaisedCornerRadiusTopRightProperty": "RaisedCornerRadiusTopRightProperty", + "RaisedDisabledBackgroundColor": "RaisedDisabledBackgroundColor", + "RaisedDisabledBackgroundColorProperty": "RaisedDisabledBackgroundColorProperty", + "RaisedDisabledBorderColor": "RaisedDisabledBorderColor", + "RaisedDisabledBorderColorProperty": "RaisedDisabledBorderColorProperty", + "RaisedDisabledElevation": "RaisedDisabledElevation", + "RaisedDisabledElevationProperty": "RaisedDisabledElevationProperty", + "RaisedDisabledTextColor": "RaisedDisabledTextColor", + "RaisedDisabledTextColorProperty": "RaisedDisabledTextColorProperty", + "RaisedFocusBackgroundColor": "RaisedFocusBackgroundColor", + "RaisedFocusBackgroundColorProperty": "RaisedFocusBackgroundColorProperty", + "RaisedFocusElevation": "RaisedFocusElevation", + "RaisedFocusElevationProperty": "RaisedFocusElevationProperty", + "RaisedFocusTextColor": "RaisedFocusTextColor", + "RaisedFocusTextColorProperty": "RaisedFocusTextColorProperty", + "RaisedHoverBackgroundColor": "RaisedHoverBackgroundColor", + "RaisedHoverBackgroundColorProperty": "RaisedHoverBackgroundColorProperty", + "RaisedHoverElevation": "RaisedHoverElevation", + "RaisedHoverElevationProperty": "RaisedHoverElevationProperty", + "RaisedHoverTextColor": "RaisedHoverTextColor", + "RaisedHoverTextColorProperty": "RaisedHoverTextColorProperty", + "RaisedRestingElevation": "RaisedRestingElevation", + "RaisedRestingElevationProperty": "RaisedRestingElevationProperty", + "RaisedRippleColor": "RaisedRippleColor", + "RaisedRippleColorProperty": "RaisedRippleColorProperty", + "RaisedTextColor": "RaisedTextColor", + "RaisedTextColorProperty": "RaisedTextColorProperty", + "RestingElevation": "RestingElevation", + "RestingElevationProperty": "RestingElevationProperty", + "RippleColor": "RippleColor", + "RippleColorProperty": "RippleColorProperty", + "StopPropagation": "StopPropagation", + "StopPropagationProperty": "StopPropagationProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "VerticalContentAlignment": "VerticalContentAlignment", + "VerticalContentAlignmentProperty": "VerticalContentAlignmentProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamButtonGroup": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamButtonGroup", + "k": "class", + "s": "classes", + "m": { + "XamButtonGroup()": "XamButtonGroup()", + "XamButtonGroup": "XamButtonGroup()", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualItemBackgroundColor": "ActualItemBackgroundColor", + "ActualItemBackgroundColorProperty": "ActualItemBackgroundColorProperty", + "ActualItemBorderColor": "ActualItemBorderColor", + "ActualItemBorderColorProperty": "ActualItemBorderColorProperty", + "ActualItemBorderWidth": "ActualItemBorderWidth", + "ActualItemBorderWidthProperty": "ActualItemBorderWidthProperty", + "ActualItemCornerRadius": "ActualItemCornerRadius", + "ActualItemCornerRadiusProperty": "ActualItemCornerRadiusProperty", + "ActualItemDisabledBackgroundColor": "ActualItemDisabledBackgroundColor", + "ActualItemDisabledBackgroundColorProperty": "ActualItemDisabledBackgroundColorProperty", + "ActualItemDisabledBorderColor": "ActualItemDisabledBorderColor", + "ActualItemDisabledBorderColorProperty": "ActualItemDisabledBorderColorProperty", + "ActualItemDisabledTextColor": "ActualItemDisabledTextColor", + "ActualItemDisabledTextColorProperty": "ActualItemDisabledTextColorProperty", + "ActualItemHoverBackgroundColor": "ActualItemHoverBackgroundColor", + "ActualItemHoverBackgroundColorProperty": "ActualItemHoverBackgroundColorProperty", + "ActualItemHoverTextColor": "ActualItemHoverTextColor", + "ActualItemHoverTextColorProperty": "ActualItemHoverTextColorProperty", + "ActualItemTextColor": "ActualItemTextColor", + "ActualItemTextColorProperty": "ActualItemTextColorProperty", + "ActualSelectedItemBackgroundColor": "ActualSelectedItemBackgroundColor", + "ActualSelectedItemBackgroundColorProperty": "ActualSelectedItemBackgroundColorProperty", + "ActualSelectedItemHoverBackgroundColor": "ActualSelectedItemHoverBackgroundColor", + "ActualSelectedItemHoverBackgroundColorProperty": "ActualSelectedItemHoverBackgroundColorProperty", + "ActualSelectedItemHoverTextColor": "ActualSelectedItemHoverTextColor", + "ActualSelectedItemHoverTextColorProperty": "ActualSelectedItemHoverTextColorProperty", + "ActualSelectedItemTextColor": "ActualSelectedItemTextColor", + "ActualSelectedItemTextColorProperty": "ActualSelectedItemTextColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Buttons": "Buttons", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FlatItemBackgroundColor": "FlatItemBackgroundColor", + "FlatItemBackgroundColorProperty": "FlatItemBackgroundColorProperty", + "FlatItemBorderColor": "FlatItemBorderColor", + "FlatItemBorderColorProperty": "FlatItemBorderColorProperty", + "FlatItemBorderWidth": "FlatItemBorderWidth", + "FlatItemBorderWidthProperty": "FlatItemBorderWidthProperty", + "FlatItemCornerRadius": "FlatItemCornerRadius", + "FlatItemCornerRadiusProperty": "FlatItemCornerRadiusProperty", + "FlatItemDisabledBackgroundColor": "FlatItemDisabledBackgroundColor", + "FlatItemDisabledBackgroundColorProperty": "FlatItemDisabledBackgroundColorProperty", + "FlatItemDisabledBorderColor": "FlatItemDisabledBorderColor", + "FlatItemDisabledBorderColorProperty": "FlatItemDisabledBorderColorProperty", + "FlatItemDisabledTextColor": "FlatItemDisabledTextColor", + "FlatItemDisabledTextColorProperty": "FlatItemDisabledTextColorProperty", + "FlatItemHoverBackgroundColor": "FlatItemHoverBackgroundColor", + "FlatItemHoverBackgroundColorProperty": "FlatItemHoverBackgroundColorProperty", + "FlatItemHoverTextColor": "FlatItemHoverTextColor", + "FlatItemHoverTextColorProperty": "FlatItemHoverTextColorProperty", + "FlatItemTextColor": "FlatItemTextColor", + "FlatItemTextColorProperty": "FlatItemTextColorProperty", + "FlatSelectedItemBackgroundColor": "FlatSelectedItemBackgroundColor", + "FlatSelectedItemBackgroundColorProperty": "FlatSelectedItemBackgroundColorProperty", + "FlatSelectedItemHoverBackgroundColor": "FlatSelectedItemHoverBackgroundColor", + "FlatSelectedItemHoverBackgroundColorProperty": "FlatSelectedItemHoverBackgroundColorProperty", + "FlatSelectedItemHoverTextColor": "FlatSelectedItemHoverTextColor", + "FlatSelectedItemHoverTextColorProperty": "FlatSelectedItemHoverTextColorProperty", + "FlatSelectedItemTextColor": "FlatSelectedItemTextColor", + "FlatSelectedItemTextColorProperty": "FlatSelectedItemTextColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsMultiSelect": "IsMultiSelect", + "IsMultiSelectProperty": "IsMultiSelectProperty", + "ItemBackgroundColor": "ItemBackgroundColor", + "ItemBackgroundColorProperty": "ItemBackgroundColorProperty", + "ItemBorderColor": "ItemBorderColor", + "ItemBorderColorProperty": "ItemBorderColorProperty", + "ItemBorderWidth": "ItemBorderWidth", + "ItemBorderWidthProperty": "ItemBorderWidthProperty", + "ItemCornerRadius": "ItemCornerRadius", + "ItemCornerRadiusProperty": "ItemCornerRadiusProperty", + "ItemDisabledBackgroundColor": "ItemDisabledBackgroundColor", + "ItemDisabledBackgroundColorProperty": "ItemDisabledBackgroundColorProperty", + "ItemDisabledBorderColor": "ItemDisabledBorderColor", + "ItemDisabledBorderColorProperty": "ItemDisabledBorderColorProperty", + "ItemDisabledTextColor": "ItemDisabledTextColor", + "ItemDisabledTextColorProperty": "ItemDisabledTextColorProperty", + "ItemHoverBackgroundColor": "ItemHoverBackgroundColor", + "ItemHoverBackgroundColorProperty": "ItemHoverBackgroundColorProperty", + "ItemHoverTextColor": "ItemHoverTextColor", + "ItemHoverTextColorProperty": "ItemHoverTextColorProperty", + "ItemTextColor": "ItemTextColor", + "ItemTextColorProperty": "ItemTextColorProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectionChanged(ButtonGroupSelectionChangedEventArgs)": "OnSelectionChanged(ButtonGroupSelectionChangedEventArgs)", + "OnSelectionChanged": "OnSelectionChanged(ButtonGroupSelectionChangedEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "OutlinedItemBackgroundColor": "OutlinedItemBackgroundColor", + "OutlinedItemBackgroundColorProperty": "OutlinedItemBackgroundColorProperty", + "OutlinedItemBorderColor": "OutlinedItemBorderColor", + "OutlinedItemBorderColorProperty": "OutlinedItemBorderColorProperty", + "OutlinedItemBorderWidth": "OutlinedItemBorderWidth", + "OutlinedItemBorderWidthProperty": "OutlinedItemBorderWidthProperty", + "OutlinedItemCornerRadius": "OutlinedItemCornerRadius", + "OutlinedItemCornerRadiusProperty": "OutlinedItemCornerRadiusProperty", + "OutlinedItemDisabledBackgroundColor": "OutlinedItemDisabledBackgroundColor", + "OutlinedItemDisabledBackgroundColorProperty": "OutlinedItemDisabledBackgroundColorProperty", + "OutlinedItemDisabledBorderColor": "OutlinedItemDisabledBorderColor", + "OutlinedItemDisabledBorderColorProperty": "OutlinedItemDisabledBorderColorProperty", + "OutlinedItemDisabledTextColor": "OutlinedItemDisabledTextColor", + "OutlinedItemDisabledTextColorProperty": "OutlinedItemDisabledTextColorProperty", + "OutlinedItemHoverBackgroundColor": "OutlinedItemHoverBackgroundColor", + "OutlinedItemHoverBackgroundColorProperty": "OutlinedItemHoverBackgroundColorProperty", + "OutlinedItemHoverTextColor": "OutlinedItemHoverTextColor", + "OutlinedItemHoverTextColorProperty": "OutlinedItemHoverTextColorProperty", + "OutlinedItemTextColor": "OutlinedItemTextColor", + "OutlinedItemTextColorProperty": "OutlinedItemTextColorProperty", + "OutlinedSelectedItemBackgroundColor": "OutlinedSelectedItemBackgroundColor", + "OutlinedSelectedItemBackgroundColorProperty": "OutlinedSelectedItemBackgroundColorProperty", + "OutlinedSelectedItemHoverBackgroundColor": "OutlinedSelectedItemHoverBackgroundColor", + "OutlinedSelectedItemHoverBackgroundColorProperty": "OutlinedSelectedItemHoverBackgroundColorProperty", + "OutlinedSelectedItemHoverTextColor": "OutlinedSelectedItemHoverTextColor", + "OutlinedSelectedItemHoverTextColorProperty": "OutlinedSelectedItemHoverTextColorProperty", + "OutlinedSelectedItemTextColor": "OutlinedSelectedItemTextColor", + "OutlinedSelectedItemTextColorProperty": "OutlinedSelectedItemTextColorProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "SelectedIndices": "SelectedIndices", + "SelectedIndicesProperty": "SelectedIndicesProperty", + "SelectedItemBackgroundColor": "SelectedItemBackgroundColor", + "SelectedItemBackgroundColorProperty": "SelectedItemBackgroundColorProperty", + "SelectedItemHoverBackgroundColor": "SelectedItemHoverBackgroundColor", + "SelectedItemHoverBackgroundColorProperty": "SelectedItemHoverBackgroundColorProperty", + "SelectedItemHoverTextColor": "SelectedItemHoverTextColor", + "SelectedItemHoverTextColorProperty": "SelectedItemHoverTextColorProperty", + "SelectedItemTextColor": "SelectedItemTextColor", + "SelectedItemTextColorProperty": "SelectedItemTextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamCategoryChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/XamCategoryChart", + "k": "class", + "s": "classes", + "m": { + "XamCategoryChart()": "XamCategoryChart()", + "XamCategoryChart": "XamCategoryChart()", + "AutoExpandMarginExtraPadding": "AutoExpandMarginExtraPadding", + "AutoExpandMarginExtraPaddingProperty": "AutoExpandMarginExtraPaddingProperty", + "AutoExpandMarginMaximumValue": "AutoExpandMarginMaximumValue", + "AutoExpandMarginMaximumValueProperty": "AutoExpandMarginMaximumValueProperty", + "AutoMarginAndAngleUpdateMode": "AutoMarginAndAngleUpdateMode", + "AutoMarginAndAngleUpdateModeProperty": "AutoMarginAndAngleUpdateModeProperty", + "ChartType": "ChartType", + "ChartTypeProperty": "ChartTypeProperty", + "GetCurrentXAxisActualMaximum()": "GetCurrentXAxisActualMaximum()", + "GetCurrentXAxisActualMaximum": "GetCurrentXAxisActualMaximum()", + "GetCurrentXAxisActualMinimum()": "GetCurrentXAxisActualMinimum()", + "GetCurrentXAxisActualMinimum": "GetCurrentXAxisActualMinimum()", + "GetCurrentYAxisActualMaximum()": "GetCurrentYAxisActualMaximum()", + "GetCurrentYAxisActualMaximum": "GetCurrentYAxisActualMaximum()", + "GetCurrentYAxisActualMinimum()": "GetCurrentYAxisActualMinimum()", + "GetCurrentYAxisActualMinimum": "GetCurrentYAxisActualMinimum()", + "IsCategoryHighlightingEnabled": "IsCategoryHighlightingEnabled", + "IsCategoryHighlightingEnabledProperty": "IsCategoryHighlightingEnabledProperty", + "IsItemHighlightingEnabled": "IsItemHighlightingEnabled", + "IsItemHighlightingEnabledProperty": "IsItemHighlightingEnabledProperty", + "IsSplineShapePartOfRange": "IsSplineShapePartOfRange", + "IsSplineShapePartOfRangeProperty": "IsSplineShapePartOfRangeProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "MarkerCollisionAvoidance": "MarkerCollisionAvoidance", + "MarkerCollisionAvoidanceProperty": "MarkerCollisionAvoidanceProperty", + "NegativeBrushes": "NegativeBrushes", + "NegativeBrushesProperty": "NegativeBrushesProperty", + "NegativeOutlines": "NegativeOutlines", + "NegativeOutlinesProperty": "NegativeOutlinesProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "RecalculateMarginAutoExpansion()": "RecalculateMarginAutoExpansion()", + "RecalculateMarginAutoExpansion": "RecalculateMarginAutoExpansion()", + "ShouldAutoExpandMarginForInitialLabels": "ShouldAutoExpandMarginForInitialLabels", + "ShouldAutoExpandMarginForInitialLabelsProperty": "ShouldAutoExpandMarginForInitialLabelsProperty", + "ShouldConsiderAutoRotationForInitialLabels": "ShouldConsiderAutoRotationForInitialLabels", + "ShouldConsiderAutoRotationForInitialLabelsProperty": "ShouldConsiderAutoRotationForInitialLabelsProperty", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipBorderColor": "ToolTipBorderColor", + "ToolTipBorderColorProperty": "ToolTipBorderColorProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "TransitionInDuration": "TransitionInDuration", + "TransitionInDurationProperty": "TransitionInDurationProperty", + "TransitionInEasingFunction": "TransitionInEasingFunction", + "TransitionInEasingFunctionProperty": "TransitionInEasingFunctionProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionInSpeedTypeProperty": "TransitionInSpeedTypeProperty", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutDurationProperty": "TransitionOutDurationProperty", + "TransitionOutEasingFunction": "TransitionOutEasingFunction", + "TransitionOutEasingFunctionProperty": "TransitionOutEasingFunctionProperty", + "XAxisActualMaximum": "XAxisActualMaximum", + "XAxisActualMaximumProperty": "XAxisActualMaximumProperty", + "XAxisActualMinimum": "XAxisActualMinimum", + "XAxisActualMinimumProperty": "XAxisActualMinimumProperty", + "XAxisEnhancedIntervalPreferMoreCategoryLabels": "XAxisEnhancedIntervalPreferMoreCategoryLabels", + "XAxisEnhancedIntervalPreferMoreCategoryLabelsProperty": "XAxisEnhancedIntervalPreferMoreCategoryLabelsProperty", + "XAxisGap": "XAxisGap", + "XAxisGapProperty": "XAxisGapProperty", + "XAxisInterval": "XAxisInterval", + "XAxisIntervalProperty": "XAxisIntervalProperty", + "XAxisIsLastLabelMandatory": "XAxisIsLastLabelMandatory", + "XAxisIsLastLabelMandatoryProperty": "XAxisIsLastLabelMandatoryProperty", + "XAxisMaximumGap": "XAxisMaximumGap", + "XAxisMaximumGapProperty": "XAxisMaximumGapProperty", + "XAxisMinimumGapSize": "XAxisMinimumGapSize", + "XAxisMinimumGapSizeProperty": "XAxisMinimumGapSizeProperty", + "XAxisMinorInterval": "XAxisMinorInterval", + "XAxisMinorIntervalProperty": "XAxisMinorIntervalProperty", + "XAxisOverlap": "XAxisOverlap", + "XAxisOverlapProperty": "XAxisOverlapProperty", + "XAxisZoomMaximumCategoryRange": "XAxisZoomMaximumCategoryRange", + "XAxisZoomMaximumCategoryRangeProperty": "XAxisZoomMaximumCategoryRangeProperty", + "XAxisZoomMaximumItemSpan": "XAxisZoomMaximumItemSpan", + "XAxisZoomMaximumItemSpanProperty": "XAxisZoomMaximumItemSpanProperty", + "XAxisZoomToCategoryRange": "XAxisZoomToCategoryRange", + "XAxisZoomToCategoryRangeProperty": "XAxisZoomToCategoryRangeProperty", + "XAxisZoomToCategoryStart": "XAxisZoomToCategoryStart", + "XAxisZoomToCategoryStartProperty": "XAxisZoomToCategoryStartProperty", + "XAxisZoomToItemSpan": "XAxisZoomToItemSpan", + "XAxisZoomToItemSpanProperty": "XAxisZoomToItemSpanProperty", + "YAxisAbbreviateLargeNumbers": "YAxisAbbreviateLargeNumbers", + "YAxisAbbreviateLargeNumbersProperty": "YAxisAbbreviateLargeNumbersProperty", + "YAxisActualMaximum": "YAxisActualMaximum", + "YAxisActualMaximumProperty": "YAxisActualMaximumProperty", + "YAxisActualMinimum": "YAxisActualMinimum", + "YAxisActualMinimumProperty": "YAxisActualMinimumProperty", + "YAxisAutoRangeBufferMode": "YAxisAutoRangeBufferMode", + "YAxisAutoRangeBufferModeProperty": "YAxisAutoRangeBufferModeProperty", + "YAxisEnhancedIntervalPreferMoreCategoryLabels": "YAxisEnhancedIntervalPreferMoreCategoryLabels", + "YAxisEnhancedIntervalPreferMoreCategoryLabelsProperty": "YAxisEnhancedIntervalPreferMoreCategoryLabelsProperty", + "YAxisFavorLabellingScaleEnd": "YAxisFavorLabellingScaleEnd", + "YAxisFavorLabellingScaleEndProperty": "YAxisFavorLabellingScaleEndProperty", + "YAxisInterval": "YAxisInterval", + "YAxisIntervalProperty": "YAxisIntervalProperty", + "YAxisIsLastLabelMandatory": "YAxisIsLastLabelMandatory", + "YAxisIsLastLabelMandatoryProperty": "YAxisIsLastLabelMandatoryProperty", + "YAxisIsLogarithmic": "YAxisIsLogarithmic", + "YAxisIsLogarithmicProperty": "YAxisIsLogarithmicProperty", + "YAxisLogarithmBase": "YAxisLogarithmBase", + "YAxisLogarithmBaseProperty": "YAxisLogarithmBaseProperty", + "YAxisMaximumValue": "YAxisMaximumValue", + "YAxisMaximumValueProperty": "YAxisMaximumValueProperty", + "YAxisMinimumValue": "YAxisMinimumValue", + "YAxisMinimumValueProperty": "YAxisMinimumValueProperty", + "YAxisMinorInterval": "YAxisMinorInterval", + "YAxisMinorIntervalProperty": "YAxisMinorIntervalProperty" + } + } + ], + "XamCheckbox": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamCheckbox", + "k": "class", + "s": "classes", + "m": { + "XamCheckbox()": "XamCheckbox()", + "XamCheckbox": "XamCheckbox()", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualCornerRadius": "ActualCornerRadius", + "ActualCornerRadiusProperty": "ActualCornerRadiusProperty", + "ActualTickColor": "ActualTickColor", + "ActualTickColorProperty": "ActualTickColorProperty", + "ActualTickStrokeWidth": "ActualTickStrokeWidth", + "ActualTickStrokeWidthProperty": "ActualTickStrokeWidthProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "CornerRadius": "CornerRadius", + "CornerRadiusProperty": "CornerRadiusProperty", + "DisableRipple": "DisableRipple", + "DisableRippleProperty": "DisableRippleProperty", + "DisableTransitions": "DisableTransitions", + "DisableTransitionsProperty": "DisableTransitionsProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IsChecked": "IsChecked", + "IsCheckedProperty": "IsCheckedProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsFocused": "IsFocused", + "IsFocusedProperty": "IsFocusedProperty", + "IsIndeterminate": "IsIndeterminate", + "IsIndeterminateProperty": "IsIndeterminateProperty", + "LabelPosition": "LabelPosition", + "LabelPositionProperty": "LabelPositionProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnChange(CheckboxChangeEventArgs)": "OnChange(CheckboxChangeEventArgs)", + "OnChange": "OnChange(CheckboxChangeEventArgs)", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "TickColor": "TickColor", + "TickColorProperty": "TickColorProperty", + "TickStrokeWidth": "TickStrokeWidth", + "TickStrokeWidthProperty": "TickStrokeWidthProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamCheckboxList": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/XamCheckboxList", + "k": "class", + "s": "classes", + "m": { + "XamCheckboxList()": "XamCheckboxList()", + "XamCheckboxList": "XamCheckboxList()", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "ActualSelectAllCaptionTextColor": "ActualSelectAllCaptionTextColor", + "ActualSelectAllCaptionTextColorProperty": "ActualSelectAllCaptionTextColorProperty", + "AddKeyValue(object[])": "AddKeyValue(object[])", + "AddKeyValue": "AddKeyValue(object[])", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CheckboxAlignedRight": "CheckboxAlignedRight", + "CheckboxAlignedRightProperty": "CheckboxAlignedRightProperty", + "CheckboxCheckedBackgroundColor": "CheckboxCheckedBackgroundColor", + "CheckboxCheckedBackgroundColorProperty": "CheckboxCheckedBackgroundColorProperty", + "CheckboxCheckedBorderColor": "CheckboxCheckedBorderColor", + "CheckboxCheckedBorderColorProperty": "CheckboxCheckedBorderColorProperty", + "CheckboxCornerRadius": "CheckboxCornerRadius", + "CheckboxCornerRadiusProperty": "CheckboxCornerRadiusProperty", + "CheckboxTickColor": "CheckboxTickColor", + "CheckboxTickColorProperty": "CheckboxTickColorProperty", + "CheckboxUncheckedBackgroundColor": "CheckboxUncheckedBackgroundColor", + "CheckboxUncheckedBackgroundColorProperty": "CheckboxUncheckedBackgroundColorProperty", + "CheckboxUncheckedBorderColor": "CheckboxUncheckedBorderColor", + "CheckboxUncheckedBorderColorProperty": "CheckboxUncheckedBorderColorProperty", + "DataLegendTarget": "DataLegendTarget", + "DataLegendTargetProperty": "DataLegendTargetProperty", + "DataMemberPath": "DataMemberPath", + "DataMemberPathProperty": "DataMemberPathProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DeselectAll()": "DeselectAll()", + "DeselectAll": "DeselectAll()", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FilterPlaceholderText": "FilterPlaceholderText", + "FilterPlaceholderTextProperty": "FilterPlaceholderTextProperty", + "IndexType": "IndexType", + "IndexTypeProperty": "IndexTypeProperty", + "IsDetached": "IsDetached", + "IsDetachedProperty": "IsDetachedProperty", + "IsEverythingSelected()": "IsEverythingSelected()", + "IsEverythingSelected": "IsEverythingSelected()", + "IsNothingSelected()": "IsNothingSelected()", + "IsNothingSelected": "IsNothingSelected()", + "IsRowHoverEnabled": "IsRowHoverEnabled", + "IsRowHoverEnabledProperty": "IsRowHoverEnabledProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Keys": "Keys", + "KeysProperty": "KeysProperty", + "LabelClickTriggersChange": "LabelClickTriggersChange", + "LabelClickTriggersChangeProperty": "LabelClickTriggersChangeProperty", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "OnApplyTemplate()": "OnApplyTemplate()", + "OnApplyTemplate": "OnApplyTemplate()", + "OnCheckedChanged(CheckedChangedEventArgs)": "OnCheckedChanged(CheckedChangedEventArgs)", + "OnCheckedChanged": "OnCheckedChanged(CheckedChangedEventArgs)", + "OnIndexTypeChanged(CheckboxListIndexTypeChangedEventArgs)": "OnIndexTypeChanged(CheckboxListIndexTypeChangedEventArgs)", + "OnIndexTypeChanged": "OnIndexTypeChanged(CheckboxListIndexTypeChangedEventArgs)", + "OnKeysCleared(CheckboxListKeysClearedEventArgs)": "OnKeysCleared(CheckboxListKeysClearedEventArgs)", + "OnKeysCleared": "OnKeysCleared(CheckboxListKeysClearedEventArgs)", + "OnLabelClicked(CheckedChangedEventArgs)": "OnLabelClicked(CheckedChangedEventArgs)", + "OnLabelClicked": "OnLabelClicked(CheckedChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectAllCheckboxChanged(SelectAllCheckboxChangedEventArgs)": "OnSelectAllCheckboxChanged(SelectAllCheckboxChangedEventArgs)", + "OnSelectAllCheckboxChanged": "OnSelectAllCheckboxChanged(SelectAllCheckboxChangedEventArgs)", + "OnSelectedKeyAdded(CheckedChangedEventArgs)": "OnSelectedKeyAdded(CheckedChangedEventArgs)", + "OnSelectedKeyAdded": "OnSelectedKeyAdded(CheckedChangedEventArgs)", + "OnSelectedKeyRemoved(CheckedChangedEventArgs)": "OnSelectedKeyRemoved(CheckedChangedEventArgs)", + "OnSelectedKeyRemoved": "OnSelectedKeyRemoved(CheckedChangedEventArgs)", + "PrimaryKey": "PrimaryKey", + "PrimaryKeyProperty": "PrimaryKeyProperty", + "PropertyTypeMemberPath": "PropertyTypeMemberPath", + "PropertyTypeMemberPathProperty": "PropertyTypeMemberPathProperty", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RemoveKeyValue(object[])": "RemoveKeyValue(object[])", + "RemoveKeyValue": "RemoveKeyValue(object[])", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "RowHoverBackgroundColor": "RowHoverBackgroundColor", + "RowHoverBackgroundColorProperty": "RowHoverBackgroundColorProperty", + "ScrollbarActiveBackground": "ScrollbarActiveBackground", + "ScrollbarActiveBackgroundProperty": "ScrollbarActiveBackgroundProperty", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarBackgroundProperty": "ScrollbarBackgroundProperty", + "ScrollbarHoverBackground": "ScrollbarHoverBackground", + "ScrollbarHoverBackgroundProperty": "ScrollbarHoverBackgroundProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SearchBackgroundColor": "SearchBackgroundColor", + "SearchBackgroundColorProperty": "SearchBackgroundColorProperty", + "SearchBorderColor": "SearchBorderColor", + "SearchBorderColorProperty": "SearchBorderColorProperty", + "SearchFocusBorderColor": "SearchFocusBorderColor", + "SearchFocusBorderColorProperty": "SearchFocusBorderColorProperty", + "SearchFontFamily": "SearchFontFamily", + "SearchFontFamilyProperty": "SearchFontFamilyProperty", + "SearchFontSize": "SearchFontSize", + "SearchFontSizeProperty": "SearchFontSizeProperty", + "SearchFontStyle": "SearchFontStyle", + "SearchFontStyleProperty": "SearchFontStyleProperty", + "SearchFontWeight": "SearchFontWeight", + "SearchFontWeightProperty": "SearchFontWeightProperty", + "SearchIconColor": "SearchIconColor", + "SearchIconColorProperty": "SearchIconColorProperty", + "SearchInputType": "SearchInputType", + "SearchInputTypeProperty": "SearchInputTypeProperty", + "SearchTextColor": "SearchTextColor", + "SearchTextColorProperty": "SearchTextColorProperty", + "SelectAll()": "SelectAll()", + "SelectAll": "SelectAll()", + "SelectAllCaption": "SelectAllCaption", + "SelectAllCaptionProperty": "SelectAllCaptionProperty", + "SelectAllCaptionTextColor": "SelectAllCaptionTextColor", + "SelectAllCaptionTextColorProperty": "SelectAllCaptionTextColorProperty", + "SelectedMemberPath": "SelectedMemberPath", + "SelectedMemberPathProperty": "SelectedMemberPathProperty", + "ShowFilter": "ShowFilter", + "ShowFilterProperty": "ShowFilterProperty", + "ShowSelectAll": "ShowSelectAll", + "ShowSelectAllProperty": "ShowSelectAllProperty", + "SubtitleMemberPath": "SubtitleMemberPath", + "SubtitleMemberPathProperty": "SubtitleMemberPathProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamColorEditor": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamColorEditor", + "k": "class", + "s": "classes", + "m": { + "XamColorEditor()": "XamColorEditor()", + "XamColorEditor": "XamColorEditor()", + "AllowTextInput": "AllowTextInput", + "AllowTextInputProperty": "AllowTextInputProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IconColor": "IconColor", + "IconColorProperty": "IconColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelProperty": "LabelProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "OnGotFocus(ColorEditorGotFocusEventArgs)": "OnGotFocus(ColorEditorGotFocusEventArgs)", + "OnGotFocus": "OnGotFocus(ColorEditorGotFocusEventArgs)", + "OnLostFocus(ColorEditorLostFocusEventArgs)": "OnLostFocus(ColorEditorLostFocusEventArgs)", + "OnLostFocus": "OnLostFocus(ColorEditorLostFocusEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)": "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)": "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanging": "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)", + "OpenOnFocus": "OpenOnFocus", + "OpenOnFocusProperty": "OpenOnFocusProperty", + "Select()": "Select()", + "Select": "Select()", + "ShowClearButton": "ShowClearButton", + "ShowClearButtonProperty": "ShowClearButtonProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TextFontFamily": "TextFontFamily", + "TextFontFamilyProperty": "TextFontFamilyProperty", + "TextFontSize": "TextFontSize", + "TextFontSizeProperty": "TextFontSizeProperty", + "TextFontStyle": "TextFontStyle", + "TextFontStyleProperty": "TextFontStyleProperty", + "TextFontWeight": "TextFontWeight", + "TextFontWeightProperty": "TextFontWeightProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamColorEditorPanel": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamColorEditorPanel", + "k": "class", + "s": "classes", + "m": { + "XamColorEditorPanel()": "XamColorEditorPanel()", + "XamColorEditorPanel": "XamColorEditorPanel()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "FocusColorBorderColor": "FocusColorBorderColor", + "FocusColorBorderColorProperty": "FocusColorBorderColorProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverBackgroundColorProperty": "HoverBackgroundColorProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)": "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)": "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)", + "OnValueChanging": "OnValueChanging(ColorEditorPanelSelectedValueChangedEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "SelectedColorBorderColor": "SelectedColorBorderColor", + "SelectedColorBorderColorProperty": "SelectedColorBorderColorProperty", + "SelectedFocusDateBackgroundColor": "SelectedFocusDateBackgroundColor", + "SelectedFocusDateBackgroundColorProperty": "SelectedFocusDateBackgroundColorProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamComboEditor": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/XamComboEditor", + "k": "class", + "s": "classes", + "m": { + "XamComboEditor()": "XamComboEditor()", + "XamComboEditor": "XamComboEditor()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualBaseTheme": "ActualBaseTheme", + "ActualBaseThemeProperty": "ActualBaseThemeProperty", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderColorProperty": "ActualBorderColorProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingBottomProperty": "ActualContentPaddingBottomProperty", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingLeftProperty": "ActualContentPaddingLeftProperty", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingRightProperty": "ActualContentPaddingRightProperty", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualContentPaddingTopProperty": "ActualContentPaddingTopProperty", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderColorProperty": "ActualFocusBorderColorProperty", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusBorderWidthProperty": "ActualFocusBorderWidthProperty", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineColorProperty": "ActualFocusUnderlineColorProperty", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineOpacityProperty": "ActualFocusUnderlineOpacityProperty", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualFocusUnderlineRippleOpacityProperty": "ActualFocusUnderlineRippleOpacityProperty", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineColorProperty": "ActualHoverUnderlineColorProperty", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineOpacityProperty": "ActualHoverUnderlineOpacityProperty", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualHoverUnderlineWidthProperty": "ActualHoverUnderlineWidthProperty", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelTextColorProperty": "ActualLabelTextColorProperty", + "ActualLabelVisible": "ActualLabelVisible", + "ActualLabelVisibleProperty": "ActualLabelVisibleProperty", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelBackgroundColorProperty": "ActualNoMatchesFoundLabelBackgroundColorProperty", + "ActualNoMatchesFoundLabelProperty": "ActualNoMatchesFoundLabelProperty", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualNoMatchesFoundLabelTextColorProperty": "ActualNoMatchesFoundLabelTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineColorProperty": "ActualUnderlineColorProperty", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineOpacityProperty": "ActualUnderlineOpacityProperty", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleColorProperty": "ActualUnderlineRippleColorProperty", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleOpacityProperty": "ActualUnderlineRippleOpacityProperty", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineRippleWidthProperty": "ActualUnderlineRippleWidthProperty", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualUnderlineWidthProperty": "ActualUnderlineWidthProperty", + "ActualValueField": "ActualValueField", + "ActualValueFieldProperty": "ActualValueFieldProperty", + "AllowFilter": "AllowFilter", + "AllowFilterProperty": "AllowFilterProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderColor": "BorderColor", + "BorderColorProperty": "BorderColorProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "CloseUp()": "CloseUp()", + "CloseUp": "CloseUp()", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceDesiredPropertiesProperty": "DataSourceDesiredPropertiesProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DropDown()": "DropDown()", + "DropDown": "DropDown()", + "DropDownButtonVisible": "DropDownButtonVisible", + "DropDownButtonVisibleProperty": "DropDownButtonVisibleProperty", + "EnableDisableFiltering(bool)": "EnableDisableFiltering(bool)", + "EnableDisableFiltering": "EnableDisableFiltering(bool)", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "Fields": "Fields", + "FieldsProperty": "FieldsProperty", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderColorProperty": "FocusBorderColorProperty", + "FocusBorderWidth": "FocusBorderWidth", + "FocusBorderWidthProperty": "FocusBorderWidthProperty", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineColorProperty": "FocusUnderlineColorProperty", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineOpacityProperty": "FocusUnderlineOpacityProperty", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FocusUnderlineRippleOpacityProperty": "FocusUnderlineRippleOpacityProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineColorProperty": "HoverUnderlineColorProperty", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineOpacityProperty": "HoverUnderlineOpacityProperty", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "HoverUnderlineWidthProperty": "HoverUnderlineWidthProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelProperty": "LabelProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "NoMatchesFoundLabel": "NoMatchesFoundLabel", + "NoMatchesFoundLabelBackgroundColor": "NoMatchesFoundLabelBackgroundColor", + "NoMatchesFoundLabelBackgroundColorProperty": "NoMatchesFoundLabelBackgroundColorProperty", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontFamilyProperty": "NoMatchesFoundLabelFontFamilyProperty", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontSizeProperty": "NoMatchesFoundLabelFontSizeProperty", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontStyleProperty": "NoMatchesFoundLabelFontStyleProperty", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "NoMatchesFoundLabelFontWeightProperty": "NoMatchesFoundLabelFontWeightProperty", + "NoMatchesFoundLabelProperty": "NoMatchesFoundLabelProperty", + "NoMatchesFoundLabelTextColor": "NoMatchesFoundLabelTextColor", + "NoMatchesFoundLabelTextColorProperty": "NoMatchesFoundLabelTextColorProperty", + "OnChange(InputChangeEventArgs)": "OnChange(InputChangeEventArgs)", + "OnChange": "OnChange(InputChangeEventArgs)", + "OnChanging(InputChangeEventArgs)": "OnChanging(InputChangeEventArgs)", + "OnChanging": "OnChanging(InputChangeEventArgs)", + "OnGotFocus(ComboEditorGotFocusEventArgs)": "OnGotFocus(ComboEditorGotFocusEventArgs)", + "OnGotFocus": "OnGotFocus(ComboEditorGotFocusEventArgs)", + "OnKeyDown(KeyEventArgs)": "OnKeyDown(KeyEventArgs)", + "OnKeyDown": "OnKeyDown(KeyEventArgs)", + "OnLostFocus(ComboEditorLostFocusEventArgs)": "OnLostFocus(ComboEditorLostFocusEventArgs)", + "OnLostFocus": "OnLostFocus(ComboEditorLostFocusEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectedValueChanged(ComboEditorValueChangedEventArgs)": "OnSelectedValueChanged(ComboEditorValueChangedEventArgs)", + "OnSelectedValueChanged": "OnSelectedValueChanged(ComboEditorValueChangedEventArgs)", + "OnTextValueChanged(ComboEditorTextChangedEventArgs)": "OnTextValueChanged(ComboEditorTextChangedEventArgs)", + "OnTextValueChanged": "OnTextValueChanged(ComboEditorTextChangedEventArgs)", + "Placeholder": "Placeholder", + "PlaceholderProperty": "PlaceholderProperty", + "Select()": "Select()", + "Select": "Select()", + "SelectGridRow(int)": "SelectGridRow(int)", + "SelectGridRow": "SelectGridRow(int)", + "Text": "Text", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TextField": "TextField", + "TextFieldProperty": "TextFieldProperty", + "TextProperty": "TextProperty", + "UnderlineColor": "UnderlineColor", + "UnderlineColorProperty": "UnderlineColorProperty", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineOpacityProperty": "UnderlineOpacityProperty", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleColorProperty": "UnderlineRippleColorProperty", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleOpacityProperty": "UnderlineRippleOpacityProperty", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineRippleWidthProperty": "UnderlineRippleWidthProperty", + "UnderlineWidth": "UnderlineWidth", + "UnderlineWidthProperty": "UnderlineWidthProperty", + "Value": "Value", + "ValueField": "ValueField", + "ValueFieldProperty": "ValueFieldProperty", + "ValueProperty": "ValueProperty", + "VerifyDisplayText()": "VerifyDisplayText()", + "VerifyDisplayText": "VerifyDisplayText()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamDashboardTile": [ + { + "p": "Infragistics.WinUI.Dashboards", + "u": "/api/winui/Infragistics.WinUI.Dashboards/latest/classes/XamDashboardTile", + "k": "class", + "s": "classes", + "m": { + "XamDashboardTile()": "XamDashboardTile()", + "XamDashboardTile": "XamDashboardTile()", + "ActualBrushes": "ActualBrushes", + "ActualBrushesProperty": "ActualBrushesProperty", + "ActualHighlightedItemsSource": "ActualHighlightedItemsSource", + "ActualHighlightedItemsSourceProperty": "ActualHighlightedItemsSourceProperty", + "ActualItemsSource": "ActualItemsSource", + "ActualItemsSourceProperty": "ActualItemsSourceProperty", + "ActualOutlines": "ActualOutlines", + "ActualOutlinesProperty": "ActualOutlinesProperty", + "AddCommandAvailabilityListener(ICommandAvailabilityListener)": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandAvailabilityListener": "AddCommandAvailabilityListener(ICommandAvailabilityListener)", + "AddCommandStateChangedListener(ICommandStateChangedListener)": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AddCommandStateChangedListener": "AddCommandStateChangedListener(ICommandStateChangedListener)", + "AutoCalloutsVisible": "AutoCalloutsVisible", + "AutoCalloutsVisibleProperty": "AutoCalloutsVisibleProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "CancelAnnotationFlow(string)": "CancelAnnotationFlow(string)", + "CancelAnnotationFlow": "CancelAnnotationFlow(string)", + "CategoryAxisMajorStroke": "CategoryAxisMajorStroke", + "CategoryAxisMajorStrokeProperty": "CategoryAxisMajorStrokeProperty", + "ClearSettings()": "ClearSettings()", + "ClearSettings": "ClearSettings()", + "CommandCompleted": "CommandCompleted", + "CommandCompletedProperty": "CommandCompletedProperty", + "Context": "Context", + "CreateLocalDataSource(object)": "CreateLocalDataSource(object)", + "CreateLocalDataSource": "CreateLocalDataSource(object)", + "CrosshairsAnnotationEnabled": "CrosshairsAnnotationEnabled", + "CrosshairsAnnotationEnabledProperty": "CrosshairsAnnotationEnabledProperty", + "CrosshairsDisplayMode": "CrosshairsDisplayMode", + "CrosshairsDisplayModeProperty": "CrosshairsDisplayModeProperty", + "Customizations": "Customizations", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DismissContextAccessor(IToolbarContextAccessor)": "DismissContextAccessor(IToolbarContextAccessor)", + "DismissContextAccessor": "DismissContextAccessor(IToolbarContextAccessor)", + "Dispose()": "Dispose()", + "Dispose": "Dispose()", + "Dispose(bool)": "Dispose(bool)", + "ExcludedProperties": "ExcludedProperties", + "ExcludedPropertiesProperty": "ExcludedPropertiesProperty", + "ExternalizeHandler(object)": "ExternalizeHandler(object)", + "ExternalizeHandler": "ExternalizeHandler(object)", + "FilterExpressions": "FilterExpressions", + "FinalValueAnnotationsVisible": "FinalValueAnnotationsVisible", + "FinalValueAnnotationsVisibleProperty": "FinalValueAnnotationsVisibleProperty", + "FinishAnnotationFlow(UserAnnotationInformation)": "FinishAnnotationFlow(UserAnnotationInformation)", + "FinishAnnotationFlow": "FinishAnnotationFlow(UserAnnotationInformation)", + "GetDesiredToolbarActions()": "GetDesiredToolbarActions()", + "GetDesiredToolbarActions": "GetDesiredToolbarActions()", + "GetSettingsValue(string)": "GetSettingsValue(string)", + "GetSettingsValue": "GetSettingsValue(string)", + "GroupDescriptions": "GroupDescriptions", + "GroupSortDescriptions": "GroupSortDescriptions", + "GroupSorts": "GroupSorts", + "GroupSortsProperty": "GroupSortsProperty", + "HasModifiedSettings()": "HasModifiedSettings()", + "HasModifiedSettings": "HasModifiedSettings()", + "HighlightFilterExpressions": "HighlightFilterExpressions", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "IncludedProperties": "IncludedProperties", + "IncludedPropertiesProperty": "IncludedPropertiesProperty", + "InitialFilter": "InitialFilter", + "InitialFilterExpressions": "InitialFilterExpressions", + "InitialFilterProperty": "InitialFilterProperty", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroupSortDescriptions": "InitialGroupSortDescriptions", + "InitialGroups": "InitialGroups", + "InitialGroupsProperty": "InitialGroupsProperty", + "InitialHighlightFilter": "InitialHighlightFilter", + "InitialHighlightFilterExpressions": "InitialHighlightFilterExpressions", + "InitialHighlightFilterProperty": "InitialHighlightFilterProperty", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSortsProperty": "InitialSortsProperty", + "InitialSummaries": "InitialSummaries", + "InitialSummariesProperty": "InitialSummariesProperty", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "InvalidateActions": "InvalidateActions", + "InvalidateActionsProperty": "InvalidateActionsProperty", + "IsUserAnnotationsEnabled": "IsUserAnnotationsEnabled", + "IsUserAnnotationsEnabledProperty": "IsUserAnnotationsEnabledProperty", + "IsVisTypeRadial": "IsVisTypeRadial", + "IsVisTypeRadialProperty": "IsVisTypeRadialProperty", + "IsVisTypeStacked": "IsVisTypeStacked", + "IsVisTypeStackedProperty": "IsVisTypeStackedProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LoadAnnotationsFromJson(string)": "LoadAnnotationsFromJson(string)", + "LoadAnnotationsFromJson": "LoadAnnotationsFromJson(string)", + "OnChangingContent(DashboardTileChangingContentEventArgs)": "OnChangingContent(DashboardTileChangingContentEventArgs)", + "OnChangingContent": "OnChangingContent(DashboardTileChangingContentEventArgs)", + "OnContentSizeChanged()": "OnContentSizeChanged()", + "OnContentSizeChanged": "OnContentSizeChanged()", + "OnFilterStringErrorsParsing(DashboardTileFilterStringErrorsParsingEventArgs)": "OnFilterStringErrorsParsing(DashboardTileFilterStringErrorsParsingEventArgs)", + "OnFilterStringErrorsParsing": "OnFilterStringErrorsParsing(DashboardTileFilterStringErrorsParsingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnToolCommandExecuting(ToolCommand)": "OnToolCommandExecuting(ToolCommand)", + "OnToolCommandExecuting": "OnToolCommandExecuting(ToolCommand)", + "OnUIReady()": "OnUIReady()", + "OnUIReady": "OnUIReady()", + "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationInformationRequested": "OnUserAnnotationInformationRequested(UserAnnotationInformationEventArgs)", + "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "OnUserAnnotationToolTipContentUpdating": "OnUserAnnotationToolTipContentUpdating(UserAnnotationToolTipContentUpdatingEventArgs)", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "ProvideContextAccessor(IToolbarContextAccessor)": "ProvideContextAccessor(IToolbarContextAccessor)", + "ProvideContextAccessor": "ProvideContextAccessor(IToolbarContextAccessor)", + "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandAvailabilityListener": "RemoveCommandAvailabilityListener(ICommandAvailabilityListener)", + "RemoveCommandStateChangedListener(ICommandStateChangedListener)": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveCommandStateChangedListener": "RemoveCommandStateChangedListener(ICommandStateChangedListener)", + "RemoveSettingsValue(string)": "RemoveSettingsValue(string)", + "RemoveSettingsValue": "RemoveSettingsValue(string)", + "ResetAnnotations()": "ResetAnnotations()", + "ResetAnnotations": "ResetAnnotations()", + "ResetZoom()": "ResetZoom()", + "ResetZoom": "ResetZoom()", + "SaveAnnotationsToJson()": "SaveAnnotationsToJson()", + "SaveAnnotationsToJson": "SaveAnnotationsToJson()", + "SelectedSeriesItems": "SelectedSeriesItems", + "ShouldAvoidAxisAnnotationCollisions": "ShouldAvoidAxisAnnotationCollisions", + "ShouldAvoidAxisAnnotationCollisionsProperty": "ShouldAvoidAxisAnnotationCollisionsProperty", + "ShouldDisplayMockData": "ShouldDisplayMockData", + "ShouldDisplayMockDataProperty": "ShouldDisplayMockDataProperty", + "ShouldUseSkeletonStyleForMockData": "ShouldUseSkeletonStyleForMockData", + "ShouldUseSkeletonStyleForMockDataProperty": "ShouldUseSkeletonStyleForMockDataProperty", + "SortDescriptions": "SortDescriptions", + "StartCreatingAnnotation()": "StartCreatingAnnotation()", + "StartCreatingAnnotation": "StartCreatingAnnotation()", + "StartDeletingAnnotation()": "StartDeletingAnnotation()", + "StartDeletingAnnotation": "StartDeletingAnnotation()", + "SummaryDescriptions": "SummaryDescriptions", + "TileTitle": "TileTitle", + "TileTitleProperty": "TileTitleProperty", + "TrendLineBrushes": "TrendLineBrushes", + "TrendLineBrushesProperty": "TrendLineBrushesProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "TrendLineTypes": "TrendLineTypes", + "TrendLineTypesProperty": "TrendLineTypesProperty", + "UpdateSettingsValue(string, object)": "UpdateSettingsValue(string, object)", + "UpdateSettingsValue": "UpdateSettingsValue(string, object)", + "ValidVisualizationTypePriorityThreshold": "ValidVisualizationTypePriorityThreshold", + "ValidVisualizationTypePriorityThresholdProperty": "ValidVisualizationTypePriorityThresholdProperty", + "ValidVisualizationTypes": "ValidVisualizationTypes", + "ValidVisualizationTypesProperty": "ValidVisualizationTypesProperty", + "ValueLines": "ValueLines", + "ValueLinesBrushes": "ValueLinesBrushes", + "ValueLinesBrushesProperty": "ValueLinesBrushesProperty", + "ValueLinesGlobalAverageBrush": "ValueLinesGlobalAverageBrush", + "ValueLinesGlobalAverageBrushProperty": "ValueLinesGlobalAverageBrushProperty", + "ValueLinesGlobalMaximumBrush": "ValueLinesGlobalMaximumBrush", + "ValueLinesGlobalMaximumBrushProperty": "ValueLinesGlobalMaximumBrushProperty", + "ValueLinesGlobalMinimumBrush": "ValueLinesGlobalMinimumBrush", + "ValueLinesGlobalMinimumBrushProperty": "ValueLinesGlobalMinimumBrushProperty", + "ValueLinesProperty": "ValueLinesProperty", + "VisualizationType": "VisualizationType", + "VisualizationTypeProperty": "VisualizationTypeProperty", + "ZoomIn(double)": "ZoomIn(double)", + "ZoomIn": "ZoomIn(double)", + "ZoomOut(double)": "ZoomOut(double)", + "ZoomOut": "ZoomOut(double)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamDataChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/XamDataChart", + "k": "class", + "s": "classes", + "m": { + "XamDataChart()": "XamDataChart()", + "XamDataChart": "XamDataChart()", + "ActualPlotAreaMarginBottom": "ActualPlotAreaMarginBottom", + "ActualPlotAreaMarginBottomProperty": "ActualPlotAreaMarginBottomProperty", + "ActualPlotAreaMarginLeft": "ActualPlotAreaMarginLeft", + "ActualPlotAreaMarginLeftProperty": "ActualPlotAreaMarginLeftProperty", + "ActualPlotAreaMarginRight": "ActualPlotAreaMarginRight", + "ActualPlotAreaMarginRightProperty": "ActualPlotAreaMarginRightProperty", + "ActualPlotAreaMarginTop": "ActualPlotAreaMarginTop", + "ActualPlotAreaMarginTopProperty": "ActualPlotAreaMarginTopProperty", + "ActualWindowScaleHorizontal": "ActualWindowScaleHorizontal", + "ActualWindowScaleHorizontalProperty": "ActualWindowScaleHorizontalProperty", + "ActualWindowScaleVertical": "ActualWindowScaleVertical", + "ActualWindowScaleVerticalProperty": "ActualWindowScaleVerticalProperty", + "AlignsGridLinesToPixels": "AlignsGridLinesToPixels", + "AlignsGridLinesToPixelsProperty": "AlignsGridLinesToPixelsProperty", + "AutoExpandMarginExtraPadding": "AutoExpandMarginExtraPadding", + "AutoExpandMarginExtraPaddingProperty": "AutoExpandMarginExtraPaddingProperty", + "AutoExpandMarginMaximumValue": "AutoExpandMarginMaximumValue", + "AutoExpandMarginMaximumValueProperty": "AutoExpandMarginMaximumValueProperty", + "AutoMarginAndAngleUpdateMode": "AutoMarginAndAngleUpdateMode", + "AutoMarginAndAngleUpdateModeProperty": "AutoMarginAndAngleUpdateModeProperty", + "Axes": "Axes", + "ComputedPlotAreaMarginMode": "ComputedPlotAreaMarginMode", + "ComputedPlotAreaMarginModeProperty": "ComputedPlotAreaMarginModeProperty", + "DefaultAxisMajorStroke": "DefaultAxisMajorStroke", + "DefaultAxisMajorStrokeProperty": "DefaultAxisMajorStrokeProperty", + "DefaultAxisMinorStroke": "DefaultAxisMinorStroke", + "DefaultAxisMinorStrokeProperty": "DefaultAxisMinorStrokeProperty", + "DefaultAxisStroke": "DefaultAxisStroke", + "DefaultAxisStrokeProperty": "DefaultAxisStrokeProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FullAxes": "FullAxes", + "FullAxesProperty": "FullAxesProperty", + "GridMode": "GridMode", + "GridModeProperty": "GridModeProperty", + "IsHorizontalZoomEnabled": "IsHorizontalZoomEnabled", + "IsHorizontalZoomEnabledProperty": "IsHorizontalZoomEnabledProperty", + "IsSquare": "IsSquare", + "IsSquareProperty": "IsSquareProperty", + "IsVerticalZoomEnabled": "IsVerticalZoomEnabled", + "IsVerticalZoomEnabledProperty": "IsVerticalZoomEnabledProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "PlotAreaMarginBottom": "PlotAreaMarginBottom", + "PlotAreaMarginBottomProperty": "PlotAreaMarginBottomProperty", + "PlotAreaMarginLeft": "PlotAreaMarginLeft", + "PlotAreaMarginLeftProperty": "PlotAreaMarginLeftProperty", + "PlotAreaMarginRight": "PlotAreaMarginRight", + "PlotAreaMarginRightProperty": "PlotAreaMarginRightProperty", + "PlotAreaMarginTop": "PlotAreaMarginTop", + "PlotAreaMarginTopProperty": "PlotAreaMarginTopProperty", + "RecalculateAutoLabelsAngle()": "RecalculateAutoLabelsAngle()", + "RecalculateAutoLabelsAngle": "RecalculateAutoLabelsAngle()", + "RecalculateMarginAutoExpansion()": "RecalculateMarginAutoExpansion()", + "RecalculateMarginAutoExpansion": "RecalculateMarginAutoExpansion()", + "RefreshComputedPlotAreaMargin()": "RefreshComputedPlotAreaMargin()", + "RefreshComputedPlotAreaMargin": "RefreshComputedPlotAreaMargin()", + "SeriesPlotAreaMarginHorizontalMode": "SeriesPlotAreaMarginHorizontalMode", + "SeriesPlotAreaMarginHorizontalModeProperty": "SeriesPlotAreaMarginHorizontalModeProperty", + "SeriesPlotAreaMarginVerticalMode": "SeriesPlotAreaMarginVerticalMode", + "SeriesPlotAreaMarginVerticalModeProperty": "SeriesPlotAreaMarginVerticalModeProperty", + "ShouldAutoExpandMarginForInitialLabels": "ShouldAutoExpandMarginForInitialLabels", + "ShouldAutoExpandMarginForInitialLabelsProperty": "ShouldAutoExpandMarginForInitialLabelsProperty", + "ShouldConsiderAutoRotationForInitialLabels": "ShouldConsiderAutoRotationForInitialLabels", + "ShouldConsiderAutoRotationForInitialLabelsProperty": "ShouldConsiderAutoRotationForInitialLabelsProperty", + "ShouldSuppressAxisLabelTruncation": "ShouldSuppressAxisLabelTruncation", + "ShouldSuppressAxisLabelTruncationProperty": "ShouldSuppressAxisLabelTruncationProperty", + "SuppressAutoMarginAndAngleRecalculation": "SuppressAutoMarginAndAngleRecalculation", + "SuppressAutoMarginAndAngleRecalculationProperty": "SuppressAutoMarginAndAngleRecalculationProperty", + "WindowScaleHorizontal": "WindowScaleHorizontal", + "WindowScaleHorizontalProperty": "WindowScaleHorizontalProperty", + "WindowScaleVertical": "WindowScaleVertical", + "WindowScaleVerticalProperty": "WindowScaleVerticalProperty" + } + } + ], + "XamDataGrid": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/XamDataGrid", + "k": "class", + "s": "classes", + "m": { + "XamDataGrid()": "XamDataGrid()", + "XamDataGrid": "XamDataGrid()", + "AcceptCommit(int)": "AcceptCommit(int)", + "AcceptCommit": "AcceptCommit(int)", + "AcceptEdit(int)": "AcceptEdit(int)", + "AcceptEdit": "AcceptEdit(int)", + "ActivationMode": "ActivationMode", + "ActivationModeProperty": "ActivationModeProperty", + "ActiveCell": "ActiveCell", + "ActiveCellProperty": "ActiveCellProperty", + "ActualBackground": "ActualBackground", + "ActualBackgroundProperty": "ActualBackgroundProperty", + "ActualBorder": "ActualBorder", + "ActualBorderProperty": "ActualBorderProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualColumns": "ActualColumns", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ActualHeaderHeight": "ActualHeaderHeight", + "ActualHeaderHeightProperty": "ActualHeaderHeightProperty", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualPrimaryKeyProperty": "ActualPrimaryKeyProperty", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "ActualVisibleRegion": "ActualVisibleRegion", + "ActualVisibleRegionProperty": "ActualVisibleRegionProperty", + "AllowCopyOperation": "AllowCopyOperation", + "AllowCopyOperationProperty": "AllowCopyOperationProperty", + "AnimationSettings": "AnimationSettings", + "AnimationSettingsProperty": "AnimationSettingsProperty", + "AutoAcceptEdits": "AutoAcceptEdits", + "AutoAcceptEditsProperty": "AutoAcceptEditsProperty", + "AutoGenerateColumns": "AutoGenerateColumns", + "AutoGenerateColumnsProperty": "AutoGenerateColumnsProperty", + "AutoGenerateDesiredProperties": "AutoGenerateDesiredProperties", + "AutoGenerateDesiredPropertiesProperty": "AutoGenerateDesiredPropertiesProperty", + "Background": "Background", + "BackgroundProperty": "BackgroundProperty", + "Border": "Border", + "BorderProperty": "BorderProperty", + "BorderWidthBottom": "BorderWidthBottom", + "BorderWidthBottomProperty": "BorderWidthBottomProperty", + "BorderWidthLeft": "BorderWidthLeft", + "BorderWidthLeftProperty": "BorderWidthLeftProperty", + "BorderWidthRight": "BorderWidthRight", + "BorderWidthRightProperty": "BorderWidthRightProperty", + "BorderWidthTop": "BorderWidthTop", + "BorderWidthTopProperty": "BorderWidthTopProperty", + "CanCommit": "CanCommit", + "CanCommitProperty": "CanCommitProperty", + "CanMoveColumnLeft(int)": "CanMoveColumnLeft(int)", + "CanMoveColumnLeft": "CanMoveColumnLeft(int)", + "CanMoveColumnRight(int)": "CanMoveColumnRight(int)", + "CanMoveColumnRight": "CanMoveColumnRight(int)", + "CanRedo": "CanRedo", + "CanRedoProperty": "CanRedoProperty", + "CanUndo": "CanUndo", + "CanUndoProperty": "CanUndoProperty", + "CancelEdits()": "CancelEdits()", + "CancelEdits": "CancelEdits()", + "CellBackground": "CellBackground", + "CellBackgroundProperty": "CellBackgroundProperty", + "CellDataLoadedAnimationMode": "CellDataLoadedAnimationMode", + "CellDataLoadedAnimationModeProperty": "CellDataLoadedAnimationModeProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CellSelectedBackground": "CellSelectedBackground", + "CellSelectedBackgroundProperty": "CellSelectedBackgroundProperty", + "CellSelectedTextColor": "CellSelectedTextColor", + "CellSelectedTextColorProperty": "CellSelectedTextColorProperty", + "CellSelectionAnimationMode": "CellSelectionAnimationMode", + "CellSelectionAnimationModeProperty": "CellSelectionAnimationModeProperty", + "CellTextColor": "CellTextColor", + "CellTextColorProperty": "CellTextColorProperty", + "ClearSelectionOnEscape": "ClearSelectionOnEscape", + "ClearSelectionOnEscapeProperty": "ClearSelectionOnEscapeProperty", + "ColumnAddingAnimationMode": "ColumnAddingAnimationMode", + "ColumnAddingAnimationModeProperty": "ColumnAddingAnimationModeProperty", + "ColumnAnimationSettings": "ColumnAnimationSettings", + "ColumnAnimationSettingsProperty": "ColumnAnimationSettingsProperty", + "ColumnExchangingAnimationMode": "ColumnExchangingAnimationMode", + "ColumnExchangingAnimationModeProperty": "ColumnExchangingAnimationModeProperty", + "ColumnHidingAnimationMode": "ColumnHidingAnimationMode", + "ColumnHidingAnimationModeProperty": "ColumnHidingAnimationModeProperty", + "ColumnMovingAnimationMode": "ColumnMovingAnimationMode", + "ColumnMovingAnimationModeProperty": "ColumnMovingAnimationModeProperty", + "ColumnMovingMode": "ColumnMovingMode", + "ColumnMovingModeProperty": "ColumnMovingModeProperty", + "ColumnMovingSeparator": "ColumnMovingSeparator", + "ColumnMovingSeparatorBackground": "ColumnMovingSeparatorBackground", + "ColumnMovingSeparatorBackgroundProperty": "ColumnMovingSeparatorBackgroundProperty", + "ColumnMovingSeparatorOpacity": "ColumnMovingSeparatorOpacity", + "ColumnMovingSeparatorOpacityProperty": "ColumnMovingSeparatorOpacityProperty", + "ColumnMovingSeparatorProperty": "ColumnMovingSeparatorProperty", + "ColumnMovingSeparatorWidth": "ColumnMovingSeparatorWidth", + "ColumnMovingSeparatorWidthProperty": "ColumnMovingSeparatorWidthProperty", + "ColumnOptionsAccentColor": "ColumnOptionsAccentColor", + "ColumnOptionsAccentColorProperty": "ColumnOptionsAccentColorProperty", + "ColumnOptionsBackground": "ColumnOptionsBackground", + "ColumnOptionsBackgroundProperty": "ColumnOptionsBackgroundProperty", + "ColumnOptionsFontFamily": "ColumnOptionsFontFamily", + "ColumnOptionsFontFamilyProperty": "ColumnOptionsFontFamilyProperty", + "ColumnOptionsFontSize": "ColumnOptionsFontSize", + "ColumnOptionsFontSizeProperty": "ColumnOptionsFontSizeProperty", + "ColumnOptionsFontStyle": "ColumnOptionsFontStyle", + "ColumnOptionsFontStyleProperty": "ColumnOptionsFontStyleProperty", + "ColumnOptionsFontWeight": "ColumnOptionsFontWeight", + "ColumnOptionsFontWeightProperty": "ColumnOptionsFontWeightProperty", + "ColumnOptionsGroupHeaderBackground": "ColumnOptionsGroupHeaderBackground", + "ColumnOptionsGroupHeaderBackgroundProperty": "ColumnOptionsGroupHeaderBackgroundProperty", + "ColumnOptionsGroupHeaderFontFamily": "ColumnOptionsGroupHeaderFontFamily", + "ColumnOptionsGroupHeaderFontFamilyProperty": "ColumnOptionsGroupHeaderFontFamilyProperty", + "ColumnOptionsGroupHeaderFontSize": "ColumnOptionsGroupHeaderFontSize", + "ColumnOptionsGroupHeaderFontSizeProperty": "ColumnOptionsGroupHeaderFontSizeProperty", + "ColumnOptionsGroupHeaderFontStyle": "ColumnOptionsGroupHeaderFontStyle", + "ColumnOptionsGroupHeaderFontStyleProperty": "ColumnOptionsGroupHeaderFontStyleProperty", + "ColumnOptionsGroupHeaderFontWeight": "ColumnOptionsGroupHeaderFontWeight", + "ColumnOptionsGroupHeaderFontWeightProperty": "ColumnOptionsGroupHeaderFontWeightProperty", + "ColumnOptionsGroupHeaderTextColor": "ColumnOptionsGroupHeaderTextColor", + "ColumnOptionsGroupHeaderTextColorProperty": "ColumnOptionsGroupHeaderTextColorProperty", + "ColumnOptionsHighlightColor": "ColumnOptionsHighlightColor", + "ColumnOptionsHighlightColorProperty": "ColumnOptionsHighlightColorProperty", + "ColumnOptionsHoverBackgroundColor": "ColumnOptionsHoverBackgroundColor", + "ColumnOptionsHoverBackgroundColorProperty": "ColumnOptionsHoverBackgroundColorProperty", + "ColumnOptionsIconAlignment": "ColumnOptionsIconAlignment", + "ColumnOptionsIconAlignmentProperty": "ColumnOptionsIconAlignmentProperty", + "ColumnOptionsIconBehavior": "ColumnOptionsIconBehavior", + "ColumnOptionsIconBehaviorProperty": "ColumnOptionsIconBehaviorProperty", + "ColumnOptionsIconColor": "ColumnOptionsIconColor", + "ColumnOptionsIconColorProperty": "ColumnOptionsIconColorProperty", + "ColumnOptionsRowHeight": "ColumnOptionsRowHeight", + "ColumnOptionsRowHeightProperty": "ColumnOptionsRowHeightProperty", + "ColumnOptionsScrollbarActiveBackground": "ColumnOptionsScrollbarActiveBackground", + "ColumnOptionsScrollbarActiveBackgroundProperty": "ColumnOptionsScrollbarActiveBackgroundProperty", + "ColumnOptionsScrollbarBackground": "ColumnOptionsScrollbarBackground", + "ColumnOptionsScrollbarBackgroundProperty": "ColumnOptionsScrollbarBackgroundProperty", + "ColumnOptionsScrollbarHoverBackground": "ColumnOptionsScrollbarHoverBackground", + "ColumnOptionsScrollbarHoverBackgroundProperty": "ColumnOptionsScrollbarHoverBackgroundProperty", + "ColumnOptionsSeparatorColor": "ColumnOptionsSeparatorColor", + "ColumnOptionsSeparatorColorProperty": "ColumnOptionsSeparatorColorProperty", + "ColumnOptionsTextColor": "ColumnOptionsTextColor", + "ColumnOptionsTextColorProperty": "ColumnOptionsTextColorProperty", + "ColumnOptionsToolTipBackgroundColor": "ColumnOptionsToolTipBackgroundColor", + "ColumnOptionsToolTipBackgroundColorProperty": "ColumnOptionsToolTipBackgroundColorProperty", + "ColumnOptionsToolTipTextColor": "ColumnOptionsToolTipTextColor", + "ColumnOptionsToolTipTextColorProperty": "ColumnOptionsToolTipTextColorProperty", + "ColumnPropertyUpdatingAnimationMode": "ColumnPropertyUpdatingAnimationMode", + "ColumnPropertyUpdatingAnimationModeProperty": "ColumnPropertyUpdatingAnimationModeProperty", + "ColumnResizingAnimationMode": "ColumnResizingAnimationMode", + "ColumnResizingAnimationModeProperty": "ColumnResizingAnimationModeProperty", + "ColumnResizingMode": "ColumnResizingMode", + "ColumnResizingModeProperty": "ColumnResizingModeProperty", + "ColumnResizingSeparator": "ColumnResizingSeparator", + "ColumnResizingSeparatorBackground": "ColumnResizingSeparatorBackground", + "ColumnResizingSeparatorBackgroundProperty": "ColumnResizingSeparatorBackgroundProperty", + "ColumnResizingSeparatorOpacity": "ColumnResizingSeparatorOpacity", + "ColumnResizingSeparatorOpacityProperty": "ColumnResizingSeparatorOpacityProperty", + "ColumnResizingSeparatorProperty": "ColumnResizingSeparatorProperty", + "ColumnResizingSeparatorWidth": "ColumnResizingSeparatorWidth", + "ColumnResizingSeparatorWidthProperty": "ColumnResizingSeparatorWidthProperty", + "ColumnShowingAnimationMode": "ColumnShowingAnimationMode", + "ColumnShowingAnimationModeProperty": "ColumnShowingAnimationModeProperty", + "Columns": "Columns", + "CommitEdits()": "CommitEdits()", + "CommitEdits": "CommitEdits()", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "DataIndexOfItem(object)": "DataIndexOfItem(object)", + "DataIndexOfItem": "DataIndexOfItem(object)", + "DataIndexOfPrimaryKey(object[])": "DataIndexOfPrimaryKey(object[])", + "DataIndexOfPrimaryKey": "DataIndexOfPrimaryKey(object[])", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceDesiredPropertiesProperty": "DataSourceDesiredPropertiesProperty", + "DefaultColumnMinWidth": "DefaultColumnMinWidth", + "DefaultColumnMinWidthProperty": "DefaultColumnMinWidthProperty", + "DefaultColumnWidth": "DefaultColumnWidth", + "DefaultColumnWidthProperty": "DefaultColumnWidthProperty", + "DeferEventForRowDragSelection": "DeferEventForRowDragSelection", + "DeferEventForRowDragSelectionProperty": "DeferEventForRowDragSelectionProperty", + "DeletedTextColor": "DeletedTextColor", + "DeletedTextColorProperty": "DeletedTextColorProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DeselectAllRows()": "DeselectAllRows()", + "DeselectAllRows": "DeselectAllRows()", + "DoActionAsync(Action)": "DoActionAsync(Action)", + "DoActionAsync": "DoActionAsync(Action)", + "EditFontFamily": "EditFontFamily", + "EditFontFamilyProperty": "EditFontFamilyProperty", + "EditFontSize": "EditFontSize", + "EditFontSizeProperty": "EditFontSizeProperty", + "EditFontStyle": "EditFontStyle", + "EditFontStyleProperty": "EditFontStyleProperty", + "EditFontWeight": "EditFontWeight", + "EditFontWeightProperty": "EditFontWeightProperty", + "EditMode": "EditMode", + "EditModeClickAction": "EditModeClickAction", + "EditModeClickActionProperty": "EditModeClickActionProperty", + "EditModeProperty": "EditModeProperty", + "EditOnKeyPress": "EditOnKeyPress", + "EditOnKeyPressProperty": "EditOnKeyPressProperty", + "EditOpacity": "EditOpacity", + "EditOpacityProperty": "EditOpacityProperty", + "EditRowBorder": "EditRowBorder", + "EditRowBorderProperty": "EditRowBorderProperty", + "EditRowBorderWidthBottom": "EditRowBorderWidthBottom", + "EditRowBorderWidthBottomProperty": "EditRowBorderWidthBottomProperty", + "EditRowBorderWidthLeft": "EditRowBorderWidthLeft", + "EditRowBorderWidthLeftProperty": "EditRowBorderWidthLeftProperty", + "EditRowBorderWidthRight": "EditRowBorderWidthRight", + "EditRowBorderWidthRightProperty": "EditRowBorderWidthRightProperty", + "EditRowBorderWidthTop": "EditRowBorderWidthTop", + "EditRowBorderWidthTopProperty": "EditRowBorderWidthTopProperty", + "EndEditMode(bool)": "EndEditMode(bool)", + "EndEditMode": "EndEditMode(bool)", + "EnterBehavior": "EnterBehavior", + "EnterBehaviorAfterEdit": "EnterBehaviorAfterEdit", + "EnterBehaviorAfterEditProperty": "EnterBehaviorAfterEditProperty", + "EnterBehaviorProperty": "EnterBehaviorProperty", + "ExchangeColumn(DataGridColumn, DataGridColumn)": "ExchangeColumn(DataGridColumn, DataGridColumn)", + "ExchangeColumn": "ExchangeColumn(DataGridColumn, DataGridColumn)", + "ExpandCollapseOnSectionHeaderClick": "ExpandCollapseOnSectionHeaderClick", + "ExpandCollapseOnSectionHeaderClickProperty": "ExpandCollapseOnSectionHeaderClickProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FilterComparisonType": "FilterComparisonType", + "FilterComparisonTypeProperty": "FilterComparisonTypeProperty", + "FilterExpressions": "FilterExpressions", + "FilterLogicalOperator": "FilterLogicalOperator", + "FilterLogicalOperatorProperty": "FilterLogicalOperatorProperty", + "FilterUIType": "FilterUIType", + "FilterUITypeProperty": "FilterUITypeProperty", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FocusScroller()": "FocusScroller()", + "FocusScroller": "FocusScroller()", + "GetColumnAtRenderedIndex(int)": "GetColumnAtRenderedIndex(int)", + "GetColumnAtRenderedIndex": "GetColumnAtRenderedIndex(int)", + "GetDataURLFromCache(string, string)": "GetDataURLFromCache(string, string)", + "GetDataURLFromCache": "GetDataURLFromCache(string, string)", + "GetFirstVisibleIndex()": "GetFirstVisibleIndex()", + "GetFirstVisibleIndex": "GetFirstVisibleIndex()", + "GetHitCell(double, double)": "GetHitCell(double, double)", + "GetHitCell": "GetHitCell(double, double)", + "GetIconFromCache(string, string)": "GetIconFromCache(string, string)", + "GetIconFromCache": "GetIconFromCache(string, string)", + "GetIconSource(string, string)": "GetIconSource(string, string)", + "GetIconSource": "GetIconSource(string, string)", + "GetLastVisibleIndex()": "GetLastVisibleIndex()", + "GetLastVisibleIndex": "GetLastVisibleIndex()", + "GetMultiPathSVGFromCache(string, string)": "GetMultiPathSVGFromCache(string, string)", + "GetMultiPathSVGFromCache": "GetMultiPathSVGFromCache(string, string)", + "GetRootSummaryResults()": "GetRootSummaryResults()", + "GetRootSummaryResults": "GetRootSummaryResults()", + "GetSectionSummaryResults(int)": "GetSectionSummaryResults(int)", + "GetSectionSummaryResults": "GetSectionSummaryResults(int)", + "GroupDescriptions": "GroupDescriptions", + "GroupHeaderDisplayMode": "GroupHeaderDisplayMode", + "GroupHeaderDisplayModeProperty": "GroupHeaderDisplayModeProperty", + "GroupSummaryDisplayMode": "GroupSummaryDisplayMode", + "GroupSummaryDisplayModeProperty": "GroupSummaryDisplayModeProperty", + "HeaderBackground": "HeaderBackground", + "HeaderBackgroundProperty": "HeaderBackgroundProperty", + "HeaderClickAction": "HeaderClickAction", + "HeaderClickActionProperty": "HeaderClickActionProperty", + "HeaderFontFamily": "HeaderFontFamily", + "HeaderFontFamilyProperty": "HeaderFontFamilyProperty", + "HeaderFontSize": "HeaderFontSize", + "HeaderFontSizeProperty": "HeaderFontSizeProperty", + "HeaderFontStyle": "HeaderFontStyle", + "HeaderFontStyleProperty": "HeaderFontStyleProperty", + "HeaderFontWeight": "HeaderFontWeight", + "HeaderFontWeightProperty": "HeaderFontWeightProperty", + "HeaderHeight": "HeaderHeight", + "HeaderHeightProperty": "HeaderHeightProperty", + "HeaderRowSeparator": "HeaderRowSeparator", + "HeaderRowSeparatorBackground": "HeaderRowSeparatorBackground", + "HeaderRowSeparatorBackgroundProperty": "HeaderRowSeparatorBackgroundProperty", + "HeaderRowSeparatorProperty": "HeaderRowSeparatorProperty", + "HeaderSeparator": "HeaderSeparator", + "HeaderSeparatorBackground": "HeaderSeparatorBackground", + "HeaderSeparatorBackgroundProperty": "HeaderSeparatorBackgroundProperty", + "HeaderSeparatorProperty": "HeaderSeparatorProperty", + "HeaderSeparatorWidth": "HeaderSeparatorWidth", + "HeaderSeparatorWidthProperty": "HeaderSeparatorWidthProperty", + "HeaderSortIndicatorColor": "HeaderSortIndicatorColor", + "HeaderSortIndicatorColorProperty": "HeaderSortIndicatorColorProperty", + "HeaderSortIndicatorStyle": "HeaderSortIndicatorStyle", + "HeaderSortIndicatorStyleProperty": "HeaderSortIndicatorStyleProperty", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HideThenRemoveColumn(DataGridColumn)": "HideThenRemoveColumn(DataGridColumn)", + "HideThenRemoveColumn": "HideThenRemoveColumn(DataGridColumn)", + "InitialGroupDescriptions": "InitialGroupDescriptions", + "InitialGroups": "InitialGroups", + "InitialGroupsProperty": "InitialGroupsProperty", + "InitialSortDescriptions": "InitialSortDescriptions", + "InitialSorts": "InitialSorts", + "InitialSortsProperty": "InitialSortsProperty", + "InitialSummaries": "InitialSummaries", + "InitialSummariesProperty": "InitialSummariesProperty", + "InitialSummaryDescriptions": "InitialSummaryDescriptions", + "InvalidateVisibleRows()": "InvalidateVisibleRows()", + "InvalidateVisibleRows": "InvalidateVisibleRows()", + "IsActiveCellStyleEnabled": "IsActiveCellStyleEnabled", + "IsActiveCellStyleEnabledProperty": "IsActiveCellStyleEnabledProperty", + "IsActiveCellStyleEnabledPropertyName": "IsActiveCellStyleEnabledPropertyName", + "IsCanvasModeDisabled": "IsCanvasModeDisabled", + "IsColumnOptionsEnabled": "IsColumnOptionsEnabled", + "IsColumnOptionsEnabledProperty": "IsColumnOptionsEnabledProperty", + "IsColumnOptionsGroupingEnabled": "IsColumnOptionsGroupingEnabled", + "IsColumnOptionsGroupingEnabledProperty": "IsColumnOptionsGroupingEnabledProperty", + "IsColumnOptionsSummariesEnabled": "IsColumnOptionsSummariesEnabled", + "IsColumnOptionsSummariesEnabledProperty": "IsColumnOptionsSummariesEnabledProperty", + "IsGroupByAreaVisible": "IsGroupByAreaVisible", + "IsGroupByAreaVisibleProperty": "IsGroupByAreaVisibleProperty", + "IsGroupCollapsable": "IsGroupCollapsable", + "IsGroupCollapsableProperty": "IsGroupCollapsableProperty", + "IsGroupExpandedDefault": "IsGroupExpandedDefault", + "IsGroupExpandedDefaultProperty": "IsGroupExpandedDefaultProperty", + "IsGroupRowSticky": "IsGroupRowSticky", + "IsGroupRowStickyProperty": "IsGroupRowStickyProperty", + "IsHeaderSeparatorVisible": "IsHeaderSeparatorVisible", + "IsHeaderSeparatorVisibleProperty": "IsHeaderSeparatorVisibleProperty", + "IsPagerVisible": "IsPagerVisible", + "IsPagerVisibleProperty": "IsPagerVisibleProperty", + "IsPlaceholderRenderingEnabled": "IsPlaceholderRenderingEnabled", + "IsPlaceholderRenderingEnabledProperty": "IsPlaceholderRenderingEnabledProperty", + "IsRowHoverEnabled": "IsRowHoverEnabled", + "IsRowHoverEnabledProperty": "IsRowHoverEnabledProperty", + "IsToolbarColumnChooserVisible": "IsToolbarColumnChooserVisible", + "IsToolbarColumnChooserVisibleProperty": "IsToolbarColumnChooserVisibleProperty", + "IsToolbarColumnPinningVisible": "IsToolbarColumnPinningVisible", + "IsToolbarColumnPinningVisibleProperty": "IsToolbarColumnPinningVisibleProperty", + "IsToolbarVisible": "IsToolbarVisible", + "IsToolbarVisibleProperty": "IsToolbarVisibleProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LastStickyRowBackground": "LastStickyRowBackground", + "LastStickyRowBackgroundProperty": "LastStickyRowBackgroundProperty", + "LoadLayout(string)": "LoadLayout(string)", + "LoadLayout": "LoadLayout(string)", + "MaxSelectedCellRanges": "MaxSelectedCellRanges", + "MaxSelectedCellRangesProperty": "MaxSelectedCellRangesProperty", + "MergedCellEvaluationCriteria": "MergedCellEvaluationCriteria", + "MergedCellEvaluationCriteriaProperty": "MergedCellEvaluationCriteriaProperty", + "MergedCellMode": "MergedCellMode", + "MergedCellModeProperty": "MergedCellModeProperty", + "MergedCellVerticalAlignment": "MergedCellVerticalAlignment", + "MergedCellVerticalAlignmentProperty": "MergedCellVerticalAlignmentProperty", + "MouseDragSelectionEnabled": "MouseDragSelectionEnabled", + "MouseDragSelectionEnabledProperty": "MouseDragSelectionEnabledProperty", + "MoveColumn(int, int)": "MoveColumn(int, int)", + "MoveColumn": "MoveColumn(int, int)", + "MoveColumnLeft(int)": "MoveColumnLeft(int)", + "MoveColumnLeft": "MoveColumnLeft(int)", + "MoveColumnRight(int)": "MoveColumnRight(int)", + "MoveColumnRight": "MoveColumnRight(int)", + "MoveFocusNext()": "MoveFocusNext()", + "MoveFocusNext": "MoveFocusNext()", + "MoveFocusPrevious()": "MoveFocusPrevious()", + "MoveFocusPrevious": "MoveFocusPrevious()", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyOnAllSelectionChanges": "NotifyOnAllSelectionChanges", + "NotifyOnAllSelectionChangesProperty": "NotifyOnAllSelectionChangesProperty", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifyScrollStart()": "NotifyScrollStart()", + "NotifyScrollStart": "NotifyScrollStart()", + "NotifyScrollStop()": "NotifyScrollStop()", + "NotifyScrollStop": "NotifyScrollStop()", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "OnActiveCellChanged(GridActiveCellChangedEventArgs)": "OnActiveCellChanged(GridActiveCellChangedEventArgs)", + "OnActiveCellChanged": "OnActiveCellChanged(GridActiveCellChangedEventArgs)", + "OnActualColumnsChanged(GridColumnsChangedEventArgs)": "OnActualColumnsChanged(GridColumnsChangedEventArgs)", + "OnActualColumnsChanged": "OnActualColumnsChanged(GridColumnsChangedEventArgs)", + "OnCellClicked(DataGridCellEventArgs)": "OnCellClicked(DataGridCellEventArgs)", + "OnCellClicked": "OnCellClicked(DataGridCellEventArgs)", + "OnCellEditEnded(GridCellEditEndedEventArgs)": "OnCellEditEnded(GridCellEditEndedEventArgs)", + "OnCellEditEnded": "OnCellEditEnded(GridCellEditEndedEventArgs)", + "OnCellEditStarted(GridCellEditStartedEventArgs)": "OnCellEditStarted(GridCellEditStartedEventArgs)", + "OnCellEditStarted": "OnCellEditStarted(GridCellEditStartedEventArgs)", + "OnCellValueChanging(GridCellValueChangingEventArgs)": "OnCellValueChanging(GridCellValueChangingEventArgs)", + "OnCellValueChanging": "OnCellValueChanging(GridCellValueChangingEventArgs)", + "OnColumnExchangingAnimationCanceled(EventArgs)": "OnColumnExchangingAnimationCanceled(EventArgs)", + "OnColumnExchangingAnimationCanceled": "OnColumnExchangingAnimationCanceled(EventArgs)", + "OnColumnExchangingAnimationCompleted(EventArgs)": "OnColumnExchangingAnimationCompleted(EventArgs)", + "OnColumnExchangingAnimationCompleted": "OnColumnExchangingAnimationCompleted(EventArgs)", + "OnColumnHiddenChanged(ColumnHiddenChangedEventArgs)": "OnColumnHiddenChanged(ColumnHiddenChangedEventArgs)", + "OnColumnHiddenChanged": "OnColumnHiddenChanged(ColumnHiddenChangedEventArgs)", + "OnColumnHidingAnimationCanceled(EventArgs)": "OnColumnHidingAnimationCanceled(EventArgs)", + "OnColumnHidingAnimationCanceled": "OnColumnHidingAnimationCanceled(EventArgs)", + "OnColumnHidingAnimationCompleted(EventArgs)": "OnColumnHidingAnimationCompleted(EventArgs)", + "OnColumnHidingAnimationCompleted": "OnColumnHidingAnimationCompleted(EventArgs)", + "OnColumnMovingAnimationCanceled(EventArgs)": "OnColumnMovingAnimationCanceled(EventArgs)", + "OnColumnMovingAnimationCanceled": "OnColumnMovingAnimationCanceled(EventArgs)", + "OnColumnMovingAnimationCompleted(EventArgs)": "OnColumnMovingAnimationCompleted(EventArgs)", + "OnColumnMovingAnimationCompleted": "OnColumnMovingAnimationCompleted(EventArgs)", + "OnColumnPinnedChanged(ColumnPinnedChangedEventArgs)": "OnColumnPinnedChanged(ColumnPinnedChangedEventArgs)", + "OnColumnPinnedChanged": "OnColumnPinnedChanged(ColumnPinnedChangedEventArgs)", + "OnColumnShowingAnimationCanceled(EventArgs)": "OnColumnShowingAnimationCanceled(EventArgs)", + "OnColumnShowingAnimationCanceled": "OnColumnShowingAnimationCanceled(EventArgs)", + "OnColumnShowingAnimationCompleted(EventArgs)": "OnColumnShowingAnimationCompleted(EventArgs)", + "OnColumnShowingAnimationCompleted": "OnColumnShowingAnimationCompleted(EventArgs)", + "OnColumnWidthChanged(GridColumnWidthChangedEventArgs)": "OnColumnWidthChanged(GridColumnWidthChangedEventArgs)", + "OnColumnWidthChanged": "OnColumnWidthChanged(GridColumnWidthChangedEventArgs)", + "OnColumnsAutoGenerated(GridColumnsAutoGeneratedEventArgs)": "OnColumnsAutoGenerated(GridColumnsAutoGeneratedEventArgs)", + "OnColumnsAutoGenerated": "OnColumnsAutoGenerated(GridColumnsAutoGeneratedEventArgs)", + "OnCustomFilterRequested(GridCustomFilterRequestedEventArgs)": "OnCustomFilterRequested(GridCustomFilterRequestedEventArgs)", + "OnCustomFilterRequested": "OnCustomFilterRequested(GridCustomFilterRequestedEventArgs)", + "OnDataCommitted(GridDataCommittedEventArgs)": "OnDataCommitted(GridDataCommittedEventArgs)", + "OnDataCommitted": "OnDataCommitted(GridDataCommittedEventArgs)", + "OnDataCommitting(GridDataCommittingEventArgs)": "OnDataCommitting(GridDataCommittingEventArgs)", + "OnDataCommitting": "OnDataCommitting(GridDataCommittingEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFilterExpressionsChanged(GridFilterExpressionsEventArgs)": "OnFilterExpressionsChanged(GridFilterExpressionsEventArgs)", + "OnFilterExpressionsChanged": "OnFilterExpressionsChanged(GridFilterExpressionsEventArgs)", + "OnFilterExpressionsChanging(GridFilterExpressionsEventArgs)": "OnFilterExpressionsChanging(GridFilterExpressionsEventArgs)", + "OnFilterExpressionsChanging": "OnFilterExpressionsChanging(GridFilterExpressionsEventArgs)", + "OnFilterRowDataBinding(DataBindingEventArgs)": "OnFilterRowDataBinding(DataBindingEventArgs)", + "OnFilterRowDataBinding": "OnFilterRowDataBinding(DataBindingEventArgs)", + "OnFilterRowDataBound(DataBindingEventArgs)": "OnFilterRowDataBound(DataBindingEventArgs)", + "OnFilterRowDataBound": "OnFilterRowDataBound(DataBindingEventArgs)", + "OnGroupDescriptionsChanged(GridGroupDescriptionsChangedEventArgs)": "OnGroupDescriptionsChanged(GridGroupDescriptionsChangedEventArgs)", + "OnGroupDescriptionsChanged": "OnGroupDescriptionsChanged(GridGroupDescriptionsChangedEventArgs)", + "OnHyperlinkNavigationRequested(GridHyperlinkNavigationRequestedEventArgs)": "OnHyperlinkNavigationRequested(GridHyperlinkNavigationRequestedEventArgs)", + "OnHyperlinkNavigationRequested": "OnHyperlinkNavigationRequested(GridHyperlinkNavigationRequestedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRootSummariesChanged(DataSourceRootSummariesChangedEventArgs)": "OnRootSummariesChanged(DataSourceRootSummariesChangedEventArgs)", + "OnRootSummariesChanged": "OnRootSummariesChanged(DataSourceRootSummariesChangedEventArgs)", + "OnRowEditEnded(GridRowEditEndedEventArgs)": "OnRowEditEnded(GridRowEditEndedEventArgs)", + "OnRowEditEnded": "OnRowEditEnded(GridRowEditEndedEventArgs)", + "OnRowEditStarted(GridRowEditStartedEventArgs)": "OnRowEditStarted(GridRowEditStartedEventArgs)", + "OnRowEditStarted": "OnRowEditStarted(GridRowEditStartedEventArgs)", + "OnSelectedCellRangesChanged(GridSelectedCellRangesChangedEventArgs)": "OnSelectedCellRangesChanged(GridSelectedCellRangesChangedEventArgs)", + "OnSelectedCellRangesChanged": "OnSelectedCellRangesChanged(GridSelectedCellRangesChangedEventArgs)", + "OnSelectedCellsChanged(GridSelectedCellsChangedEventArgs)": "OnSelectedCellsChanged(GridSelectedCellsChangedEventArgs)", + "OnSelectedCellsChanged": "OnSelectedCellsChanged(GridSelectedCellsChangedEventArgs)", + "OnSelectedItemsChanged(GridSelectedItemsChangedEventArgs)": "OnSelectedItemsChanged(GridSelectedItemsChangedEventArgs)", + "OnSelectedItemsChanged": "OnSelectedItemsChanged(GridSelectedItemsChangedEventArgs)", + "OnSelectedKeysChanged(GridSelectedKeysChangedEventArgs)": "OnSelectedKeysChanged(GridSelectedKeysChangedEventArgs)", + "OnSelectedKeysChanged": "OnSelectedKeysChanged(GridSelectedKeysChangedEventArgs)", + "OnSelectionChanged(GridSelectionChangedEventArgs)": "OnSelectionChanged(GridSelectionChangedEventArgs)", + "OnSelectionChanged": "OnSelectionChanged(GridSelectionChangedEventArgs)", + "OnSizeChanged(GridSizeChangedEventArgs)": "OnSizeChanged(GridSizeChangedEventArgs)", + "OnSizeChanged": "OnSizeChanged(GridSizeChangedEventArgs)", + "OnSortDescriptionsChanged(GridSortDescriptionsChangedEventArgs)": "OnSortDescriptionsChanged(GridSortDescriptionsChangedEventArgs)", + "OnSortDescriptionsChanged": "OnSortDescriptionsChanged(GridSortDescriptionsChangedEventArgs)", + "OnSummaryDescriptionsChanged(GridSummaryDescriptionsChangedEventArgs)": "OnSummaryDescriptionsChanged(GridSummaryDescriptionsChangedEventArgs)", + "OnSummaryDescriptionsChanged": "OnSummaryDescriptionsChanged(GridSummaryDescriptionsChangedEventArgs)", + "PageSize": "PageSize", + "PageSizeProperty": "PageSizeProperty", + "PinColumn(DataGridColumn, PinnedPositions)": "PinColumn(DataGridColumn, PinnedPositions)", + "PinColumn": "PinColumn(DataGridColumn, PinnedPositions)", + "PinnedAreaSeparator": "PinnedAreaSeparator", + "PinnedAreaSeparatorProperty": "PinnedAreaSeparatorProperty", + "PinnedAreaSeparatorWidth": "PinnedAreaSeparatorWidth", + "PinnedAreaSeparatorWidthProperty": "PinnedAreaSeparatorWidthProperty", + "PinnedItems": "PinnedItems", + "PinnedKeys": "PinnedKeys", + "PinnedRowBackground": "PinnedRowBackground", + "PinnedRowBackgroundProperty": "PinnedRowBackgroundProperty", + "PinnedRowOpacity": "PinnedRowOpacity", + "PinnedRowOpacityProperty": "PinnedRowOpacityProperty", + "PreventDefaultNavigationColumnList": "PreventDefaultNavigationColumnList", + "PreventDefaultNavigationColumnListProperty": "PreventDefaultNavigationColumnListProperty", + "PrimaryKey": "PrimaryKey", + "PrimaryKeyProperty": "PrimaryKeyProperty", + "ReactsToFilterChanges": "ReactsToFilterChanges", + "ReactsToFilterChangesProperty": "ReactsToFilterChangesProperty", + "ReactsToGroupChanges": "ReactsToGroupChanges", + "ReactsToGroupChangesProperty": "ReactsToGroupChangesProperty", + "ReactsToSortChanges": "ReactsToSortChanges", + "ReactsToSortChangesProperty": "ReactsToSortChangesProperty", + "Redo()": "Redo()", + "Redo": "Redo()", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RegisterIconFromDataURL(string, string, string)": "RegisterIconFromDataURL(string, string, string)", + "RegisterIconFromDataURL": "RegisterIconFromDataURL(string, string, string)", + "RegisterIconFromText(string, string, string)": "RegisterIconFromText(string, string, string)", + "RegisterIconFromText": "RegisterIconFromText(string, string, string)", + "RegisterIconSource(string, string, object)": "RegisterIconSource(string, string, object)", + "RegisterIconSource": "RegisterIconSource(string, string, object)", + "RegisterMultiPathSVG(string, string, string[])": "RegisterMultiPathSVG(string, string, string[])", + "RegisterMultiPathSVG": "RegisterMultiPathSVG(string, string, string[])", + "RejectCommit(int)": "RejectCommit(int)", + "RejectCommit": "RejectCommit(int)", + "RejectEdit(int)": "RejectEdit(int)", + "RejectEdit": "RejectEdit(int)", + "RemoveItem(object)": "RemoveItem(object)", + "RemoveItem": "RemoveItem(object)", + "RemoveItemByKey(object[])": "RemoveItemByKey(object[])", + "RemoveItemByKey": "RemoveItemByKey(object[])", + "ResolveCellValue(CellKey)": "ResolveCellValue(CellKey)", + "ResolveCellValue": "ResolveCellValue(CellKey)", + "ResolveCellValueFromPosition(int, int)": "ResolveCellValueFromPosition(int, int)", + "ResolveCellValueFromPosition": "ResolveCellValueFromPosition(int, int)", + "ResponsiveStates": "ResponsiveStates", + "ResponsiveStatesProperty": "ResponsiveStatesProperty", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "RowHoverAnimationMode": "RowHoverAnimationMode", + "RowHoverAnimationModeProperty": "RowHoverAnimationModeProperty", + "RowHoverBackground": "RowHoverBackground", + "RowHoverBackgroundProperty": "RowHoverBackgroundProperty", + "RowHoverTextColor": "RowHoverTextColor", + "RowHoverTextColorProperty": "RowHoverTextColorProperty", + "RowSelectionAnimationMode": "RowSelectionAnimationMode", + "RowSelectionAnimationModeProperty": "RowSelectionAnimationModeProperty", + "RowSeparator": "RowSeparator", + "RowSeparatorBackground": "RowSeparatorBackground", + "RowSeparatorBackgroundProperty": "RowSeparatorBackgroundProperty", + "RowSeparatorHeight": "RowSeparatorHeight", + "RowSeparatorHeightProperty": "RowSeparatorHeightProperty", + "RowSeparatorLastStickyRowBackground": "RowSeparatorLastStickyRowBackground", + "RowSeparatorLastStickyRowBackgroundProperty": "RowSeparatorLastStickyRowBackgroundProperty", + "RowSeparatorPinnedRowBackground": "RowSeparatorPinnedRowBackground", + "RowSeparatorPinnedRowBackgroundProperty": "RowSeparatorPinnedRowBackgroundProperty", + "RowSeparatorProperty": "RowSeparatorProperty", + "RowSeparatorStickyRowBackground": "RowSeparatorStickyRowBackground", + "RowSeparatorStickyRowBackgroundProperty": "RowSeparatorStickyRowBackgroundProperty", + "SaveLayout()": "SaveLayout()", + "SaveLayout": "SaveLayout()", + "ScrollToColumnByIndex(double)": "ScrollToColumnByIndex(double)", + "ScrollToColumnByIndex": "ScrollToColumnByIndex(double)", + "ScrollToItem(object)": "ScrollToItem(object)", + "ScrollToItem": "ScrollToItem(object)", + "ScrollToLastRowByIndex(double)": "ScrollToLastRowByIndex(double)", + "ScrollToLastRowByIndex": "ScrollToLastRowByIndex(double)", + "ScrollToPrimaryKey(object[])": "ScrollToPrimaryKey(object[])", + "ScrollToPrimaryKey": "ScrollToPrimaryKey(object[])", + "ScrollToRowByIndex(double)": "ScrollToRowByIndex(double)", + "ScrollToRowByIndex": "ScrollToRowByIndex(double)", + "ScrollbarActiveBackground": "ScrollbarActiveBackground", + "ScrollbarActiveBackgroundProperty": "ScrollbarActiveBackgroundProperty", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarBackgroundProperty": "ScrollbarBackgroundProperty", + "ScrollbarHoverBackground": "ScrollbarHoverBackground", + "ScrollbarHoverBackgroundProperty": "ScrollbarHoverBackgroundProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SectionHeader": "SectionHeader", + "SectionHeaderBackground": "SectionHeaderBackground", + "SectionHeaderBackgroundProperty": "SectionHeaderBackgroundProperty", + "SectionHeaderExpansionIndicatorIconColor": "SectionHeaderExpansionIndicatorIconColor", + "SectionHeaderExpansionIndicatorIconColorProperty": "SectionHeaderExpansionIndicatorIconColorProperty", + "SectionHeaderFontFamily": "SectionHeaderFontFamily", + "SectionHeaderFontFamilyProperty": "SectionHeaderFontFamilyProperty", + "SectionHeaderFontSize": "SectionHeaderFontSize", + "SectionHeaderFontSizeProperty": "SectionHeaderFontSizeProperty", + "SectionHeaderFontStyle": "SectionHeaderFontStyle", + "SectionHeaderFontStyleProperty": "SectionHeaderFontStyleProperty", + "SectionHeaderFontWeight": "SectionHeaderFontWeight", + "SectionHeaderFontWeightProperty": "SectionHeaderFontWeightProperty", + "SectionHeaderProperty": "SectionHeaderProperty", + "SectionHeaderSelectedBackground": "SectionHeaderSelectedBackground", + "SectionHeaderSelectedBackgroundProperty": "SectionHeaderSelectedBackgroundProperty", + "SectionHeaderTextColor": "SectionHeaderTextColor", + "SectionHeaderTextColorProperty": "SectionHeaderTextColorProperty", + "SelectAllRows()": "SelectAllRows()", + "SelectAllRows": "SelectAllRows()", + "SelectedCellRanges": "SelectedCellRanges", + "SelectedCells": "SelectedCells", + "SelectedItems": "SelectedItems", + "SelectedKeys": "SelectedKeys", + "SelectionBehavior": "SelectionBehavior", + "SelectionBehaviorProperty": "SelectionBehaviorProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "SetActiveResponsiveState(string)": "SetActiveResponsiveState(string)", + "SetActiveResponsiveState": "SetActiveResponsiveState(string)", + "SetClipboardText(string)": "SetClipboardText(string)", + "SetClipboardText": "SetClipboardText(string)", + "SetDefaultCursor()": "SetDefaultCursor()", + "SetDefaultCursor": "SetDefaultCursor()", + "SetEditError(int, string)": "SetEditError(int, string)", + "SetEditError": "SetEditError(int, string)", + "SetHandCursor()": "SetHandCursor()", + "SetHandCursor": "SetHandCursor()", + "SetResizeCursor()": "SetResizeCursor()", + "SetResizeCursor": "SetResizeCursor()", + "SetScrollerVerticalTrackInset(int)": "SetScrollerVerticalTrackInset(int)", + "SetScrollerVerticalTrackInset": "SetScrollerVerticalTrackInset(int)", + "ShiftSectionContent": "ShiftSectionContent", + "ShiftSectionContentProperty": "ShiftSectionContentProperty", + "SortDescriptions": "SortDescriptions", + "StartEditMode()": "StartEditMode()", + "StartEditMode": "StartEditMode()", + "StickyRowBackground": "StickyRowBackground", + "StickyRowBackgroundProperty": "StickyRowBackgroundProperty", + "StopPropagation": "StopPropagation", + "StopPropagationProperty": "StopPropagationProperty", + "SummaryDescriptions": "SummaryDescriptions", + "SummaryRootBackground": "SummaryRootBackground", + "SummaryRootBackgroundProperty": "SummaryRootBackgroundProperty", + "SummaryRootLabelFontFamily": "SummaryRootLabelFontFamily", + "SummaryRootLabelFontFamilyProperty": "SummaryRootLabelFontFamilyProperty", + "SummaryRootLabelFontSize": "SummaryRootLabelFontSize", + "SummaryRootLabelFontSizeProperty": "SummaryRootLabelFontSizeProperty", + "SummaryRootLabelFontStyle": "SummaryRootLabelFontStyle", + "SummaryRootLabelFontStyleProperty": "SummaryRootLabelFontStyleProperty", + "SummaryRootLabelFontWeight": "SummaryRootLabelFontWeight", + "SummaryRootLabelFontWeightProperty": "SummaryRootLabelFontWeightProperty", + "SummaryRootLabelTextColor": "SummaryRootLabelTextColor", + "SummaryRootLabelTextColorProperty": "SummaryRootLabelTextColorProperty", + "SummaryRootSelectedBackground": "SummaryRootSelectedBackground", + "SummaryRootSelectedBackgroundProperty": "SummaryRootSelectedBackgroundProperty", + "SummaryRootValueFontFamily": "SummaryRootValueFontFamily", + "SummaryRootValueFontFamilyProperty": "SummaryRootValueFontFamilyProperty", + "SummaryRootValueFontSize": "SummaryRootValueFontSize", + "SummaryRootValueFontSizeProperty": "SummaryRootValueFontSizeProperty", + "SummaryRootValueFontStyle": "SummaryRootValueFontStyle", + "SummaryRootValueFontStyleProperty": "SummaryRootValueFontStyleProperty", + "SummaryRootValueFontWeight": "SummaryRootValueFontWeight", + "SummaryRootValueFontWeightProperty": "SummaryRootValueFontWeightProperty", + "SummaryRootValueTextColor": "SummaryRootValueTextColor", + "SummaryRootValueTextColorProperty": "SummaryRootValueTextColorProperty", + "SummaryRowRoot": "SummaryRowRoot", + "SummaryRowRootProperty": "SummaryRowRootProperty", + "SummaryRowSection": "SummaryRowSection", + "SummaryRowSectionProperty": "SummaryRowSectionProperty", + "SummaryScope": "SummaryScope", + "SummaryScopeProperty": "SummaryScopeProperty", + "SummarySectionBackground": "SummarySectionBackground", + "SummarySectionBackgroundProperty": "SummarySectionBackgroundProperty", + "SummarySectionLabelFontFamily": "SummarySectionLabelFontFamily", + "SummarySectionLabelFontFamilyProperty": "SummarySectionLabelFontFamilyProperty", + "SummarySectionLabelFontSize": "SummarySectionLabelFontSize", + "SummarySectionLabelFontSizeProperty": "SummarySectionLabelFontSizeProperty", + "SummarySectionLabelFontStyle": "SummarySectionLabelFontStyle", + "SummarySectionLabelFontStyleProperty": "SummarySectionLabelFontStyleProperty", + "SummarySectionLabelFontWeight": "SummarySectionLabelFontWeight", + "SummarySectionLabelFontWeightProperty": "SummarySectionLabelFontWeightProperty", + "SummarySectionLabelTextColor": "SummarySectionLabelTextColor", + "SummarySectionLabelTextColorProperty": "SummarySectionLabelTextColorProperty", + "SummarySectionSelectedBackground": "SummarySectionSelectedBackground", + "SummarySectionSelectedBackgroundProperty": "SummarySectionSelectedBackgroundProperty", + "SummarySectionValueFontFamily": "SummarySectionValueFontFamily", + "SummarySectionValueFontFamilyProperty": "SummarySectionValueFontFamilyProperty", + "SummarySectionValueFontSize": "SummarySectionValueFontSize", + "SummarySectionValueFontSizeProperty": "SummarySectionValueFontSizeProperty", + "SummarySectionValueFontStyle": "SummarySectionValueFontStyle", + "SummarySectionValueFontStyleProperty": "SummarySectionValueFontStyleProperty", + "SummarySectionValueFontWeight": "SummarySectionValueFontWeight", + "SummarySectionValueFontWeightProperty": "SummarySectionValueFontWeightProperty", + "SummarySectionValueTextColor": "SummarySectionValueTextColor", + "SummarySectionValueTextColorProperty": "SummarySectionValueTextColorProperty", + "Theme": "Theme", + "ThemeProperty": "ThemeProperty", + "TodayOverride": "TodayOverride", + "TodayOverrideProperty": "TodayOverrideProperty", + "ToolbarColumnChooserText": "ToolbarColumnChooserText", + "ToolbarColumnChooserTextProperty": "ToolbarColumnChooserTextProperty", + "ToolbarColumnChooserTitle": "ToolbarColumnChooserTitle", + "ToolbarColumnChooserTitleProperty": "ToolbarColumnChooserTitleProperty", + "ToolbarColumnPinningText": "ToolbarColumnPinningText", + "ToolbarColumnPinningTextProperty": "ToolbarColumnPinningTextProperty", + "ToolbarColumnPinningTitle": "ToolbarColumnPinningTitle", + "ToolbarColumnPinningTitleProperty": "ToolbarColumnPinningTitleProperty", + "ToolbarTitle": "ToolbarTitle", + "ToolbarTitleProperty": "ToolbarTitleProperty", + "Undo()": "Undo()", + "Undo": "Undo()", + "UpdatePropertyAtKey(object[], string, object)": "UpdatePropertyAtKey(object[], string, object)", + "UpdatePropertyAtKey": "UpdatePropertyAtKey(object[], string, object)", + "UseNewerColumnOptionsMenu": "UseNewerColumnOptionsMenu", + "UseNewerColumnOptionsMenuProperty": "UseNewerColumnOptionsMenuProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamDataLegend": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/XamDataLegend", + "k": "class", + "s": "classes", + "m": { + "XamDataLegend()": "XamDataLegend()", + "XamDataLegend": "XamDataLegend()", + "ActualBackground": "ActualBackground", + "ActualBackgroundProperty": "ActualBackgroundProperty", + "ActualBadgesVisible": "ActualBadgesVisible", + "ActualBadgesVisibleProperty": "ActualBadgesVisibleProperty", + "ActualBorderBrush": "ActualBorderBrush", + "ActualBorderBrushProperty": "ActualBorderBrushProperty", + "ActualBorderThicknessBottom": "ActualBorderThicknessBottom", + "ActualBorderThicknessBottomProperty": "ActualBorderThicknessBottomProperty", + "ActualBorderThicknessLeft": "ActualBorderThicknessLeft", + "ActualBorderThicknessLeftProperty": "ActualBorderThicknessLeftProperty", + "ActualBorderThicknessRight": "ActualBorderThicknessRight", + "ActualBorderThicknessRightProperty": "ActualBorderThicknessRightProperty", + "ActualBorderThicknessTop": "ActualBorderThicknessTop", + "ActualBorderThicknessTopProperty": "ActualBorderThicknessTopProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "BadgeMarginBottom": "BadgeMarginBottom", + "BadgeMarginBottomProperty": "BadgeMarginBottomProperty", + "BadgeMarginLeft": "BadgeMarginLeft", + "BadgeMarginLeftProperty": "BadgeMarginLeftProperty", + "BadgeMarginRight": "BadgeMarginRight", + "BadgeMarginRightProperty": "BadgeMarginRightProperty", + "BadgeMarginTop": "BadgeMarginTop", + "BadgeMarginTopProperty": "BadgeMarginTopProperty", + "BadgeShape": "BadgeShape", + "BadgeShapeProperty": "BadgeShapeProperty", + "ContentBackground": "ContentBackground", + "ContentBackgroundProperty": "ContentBackgroundProperty", + "ContentBorderBrush": "ContentBorderBrush", + "ContentBorderBrushProperty": "ContentBorderBrushProperty", + "ContentBorderThickness": "ContentBorderThickness", + "ContentBorderThicknessProperty": "ContentBorderThicknessProperty", + "ExcludedColumns": "ExcludedColumns", + "ExcludedColumnsProperty": "ExcludedColumnsProperty", + "ExcludedSeries": "ExcludedSeries", + "ExcludedSeriesProperty": "ExcludedSeriesProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)": "GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedNumber": "GetAbbreviatedNumber(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedString(double, DataAbbreviationMode, int, int)": "GetAbbreviatedString(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedString": "GetAbbreviatedString(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)": "GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)", + "GetAbbreviatedSymbol": "GetAbbreviatedSymbol(double, DataAbbreviationMode, int, int)", + "GroupRowMarginBottom": "GroupRowMarginBottom", + "GroupRowMarginBottomProperty": "GroupRowMarginBottomProperty", + "GroupRowMarginLeft": "GroupRowMarginLeft", + "GroupRowMarginLeftProperty": "GroupRowMarginLeftProperty", + "GroupRowMarginRight": "GroupRowMarginRight", + "GroupRowMarginRightProperty": "GroupRowMarginRightProperty", + "GroupRowMarginTop": "GroupRowMarginTop", + "GroupRowMarginTopProperty": "GroupRowMarginTopProperty", + "GroupRowVisible": "GroupRowVisible", + "GroupRowVisibleProperty": "GroupRowVisibleProperty", + "GroupTextColor": "GroupTextColor", + "GroupTextColorProperty": "GroupTextColorProperty", + "GroupTextFontFamily": "GroupTextFontFamily", + "GroupTextFontFamilyProperty": "GroupTextFontFamilyProperty", + "GroupTextFontSize": "GroupTextFontSize", + "GroupTextFontSizeProperty": "GroupTextFontSizeProperty", + "GroupTextFontStyle": "GroupTextFontStyle", + "GroupTextFontStyleProperty": "GroupTextFontStyleProperty", + "GroupTextFontWeight": "GroupTextFontWeight", + "GroupTextFontWeightProperty": "GroupTextFontWeightProperty", + "GroupTextMarginBottom": "GroupTextMarginBottom", + "GroupTextMarginBottomProperty": "GroupTextMarginBottomProperty", + "GroupTextMarginLeft": "GroupTextMarginLeft", + "GroupTextMarginLeftProperty": "GroupTextMarginLeftProperty", + "GroupTextMarginRight": "GroupTextMarginRight", + "GroupTextMarginRightProperty": "GroupTextMarginRightProperty", + "GroupTextMarginTop": "GroupTextMarginTop", + "GroupTextMarginTopProperty": "GroupTextMarginTopProperty", + "HeaderFormatCulture": "HeaderFormatCulture", + "HeaderFormatCultureProperty": "HeaderFormatCultureProperty", + "HeaderFormatDate": "HeaderFormatDate", + "HeaderFormatDateProperty": "HeaderFormatDateProperty", + "HeaderFormatSpecifiers": "HeaderFormatSpecifiers", + "HeaderFormatSpecifiersProperty": "HeaderFormatSpecifiersProperty", + "HeaderFormatString": "HeaderFormatString", + "HeaderFormatStringProperty": "HeaderFormatStringProperty", + "HeaderFormatTime": "HeaderFormatTime", + "HeaderFormatTimeProperty": "HeaderFormatTimeProperty", + "HeaderRowMarginBottom": "HeaderRowMarginBottom", + "HeaderRowMarginBottomProperty": "HeaderRowMarginBottomProperty", + "HeaderRowMarginLeft": "HeaderRowMarginLeft", + "HeaderRowMarginLeftProperty": "HeaderRowMarginLeftProperty", + "HeaderRowMarginRight": "HeaderRowMarginRight", + "HeaderRowMarginRightProperty": "HeaderRowMarginRightProperty", + "HeaderRowMarginTop": "HeaderRowMarginTop", + "HeaderRowMarginTopProperty": "HeaderRowMarginTopProperty", + "HeaderRowVisible": "HeaderRowVisible", + "HeaderRowVisibleProperty": "HeaderRowVisibleProperty", + "HeaderText": "HeaderText", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HeaderTextFontFamily": "HeaderTextFontFamily", + "HeaderTextFontFamilyProperty": "HeaderTextFontFamilyProperty", + "HeaderTextFontSize": "HeaderTextFontSize", + "HeaderTextFontSizeProperty": "HeaderTextFontSizeProperty", + "HeaderTextFontStyle": "HeaderTextFontStyle", + "HeaderTextFontStyleProperty": "HeaderTextFontStyleProperty", + "HeaderTextFontWeight": "HeaderTextFontWeight", + "HeaderTextFontWeightProperty": "HeaderTextFontWeightProperty", + "HeaderTextMarginBottom": "HeaderTextMarginBottom", + "HeaderTextMarginBottomProperty": "HeaderTextMarginBottomProperty", + "HeaderTextMarginLeft": "HeaderTextMarginLeft", + "HeaderTextMarginLeftProperty": "HeaderTextMarginLeftProperty", + "HeaderTextMarginRight": "HeaderTextMarginRight", + "HeaderTextMarginRightProperty": "HeaderTextMarginRightProperty", + "HeaderTextMarginTop": "HeaderTextMarginTop", + "HeaderTextMarginTopProperty": "HeaderTextMarginTopProperty", + "HeaderTextProperty": "HeaderTextProperty", + "IncludedColumns": "IncludedColumns", + "IncludedColumnsProperty": "IncludedColumnsProperty", + "IncludedSeries": "IncludedSeries", + "IncludedSeriesProperty": "IncludedSeriesProperty", + "IsEmbeddedInDataTooltip": "IsEmbeddedInDataTooltip", + "IsEmbeddedInDataTooltipProperty": "IsEmbeddedInDataTooltipProperty", + "LabelDisplayMode": "LabelDisplayMode", + "LabelDisplayModeProperty": "LabelDisplayModeProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "LabelTextFontFamily": "LabelTextFontFamily", + "LabelTextFontFamilyProperty": "LabelTextFontFamilyProperty", + "LabelTextFontSize": "LabelTextFontSize", + "LabelTextFontSizeProperty": "LabelTextFontSizeProperty", + "LabelTextFontStyle": "LabelTextFontStyle", + "LabelTextFontStyleProperty": "LabelTextFontStyleProperty", + "LabelTextFontWeight": "LabelTextFontWeight", + "LabelTextFontWeightProperty": "LabelTextFontWeightProperty", + "LabelTextMarginBottom": "LabelTextMarginBottom", + "LabelTextMarginBottomProperty": "LabelTextMarginBottomProperty", + "LabelTextMarginLeft": "LabelTextMarginLeft", + "LabelTextMarginLeftProperty": "LabelTextMarginLeftProperty", + "LabelTextMarginRight": "LabelTextMarginRight", + "LabelTextMarginRightProperty": "LabelTextMarginRightProperty", + "LabelTextMarginTop": "LabelTextMarginTop", + "LabelTextMarginTopProperty": "LabelTextMarginTopProperty", + "LayoutMode": "LayoutMode", + "LayoutModeProperty": "LayoutModeProperty", + "MeasureOverride(Size)": "MeasureOverride(Size)", + "MeasureOverride": "MeasureOverride(Size)", + "NotifySizeChanged()": "NotifySizeChanged()", + "NotifySizeChanged": "NotifySizeChanged()", + "OnCalculateColumnSummary(DataLegendSummaryEventArgs)": "OnCalculateColumnSummary(DataLegendSummaryEventArgs)", + "OnCalculateColumnSummary": "OnCalculateColumnSummary(DataLegendSummaryEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnStyleGroupRow(DataLegendStylingRowEventArgs)": "OnStyleGroupRow(DataLegendStylingRowEventArgs)", + "OnStyleGroupRow": "OnStyleGroupRow(DataLegendStylingRowEventArgs)", + "OnStyleHeaderRow(DataLegendStylingRowEventArgs)": "OnStyleHeaderRow(DataLegendStylingRowEventArgs)", + "OnStyleHeaderRow": "OnStyleHeaderRow(DataLegendStylingRowEventArgs)", + "OnStyleSeriesColumn(DataLegendStylingColumnEventArgs)": "OnStyleSeriesColumn(DataLegendStylingColumnEventArgs)", + "OnStyleSeriesColumn": "OnStyleSeriesColumn(DataLegendStylingColumnEventArgs)", + "OnStyleSeriesRow(DataLegendStylingRowEventArgs)": "OnStyleSeriesRow(DataLegendStylingRowEventArgs)", + "OnStyleSeriesRow": "OnStyleSeriesRow(DataLegendStylingRowEventArgs)", + "OnStyleSummaryColumn(DataLegendStylingColumnEventArgs)": "OnStyleSummaryColumn(DataLegendStylingColumnEventArgs)", + "OnStyleSummaryColumn": "OnStyleSummaryColumn(DataLegendStylingColumnEventArgs)", + "OnStyleSummaryRow(DataLegendStylingRowEventArgs)": "OnStyleSummaryRow(DataLegendStylingRowEventArgs)", + "OnStyleSummaryRow": "OnStyleSummaryRow(DataLegendStylingRowEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "ShouldUpdateWhenSeriesDataChanges": "ShouldUpdateWhenSeriesDataChanges", + "ShouldUpdateWhenSeriesDataChangesProperty": "ShouldUpdateWhenSeriesDataChangesProperty", + "SummaryLabelText": "SummaryLabelText", + "SummaryLabelTextColor": "SummaryLabelTextColor", + "SummaryLabelTextColorProperty": "SummaryLabelTextColorProperty", + "SummaryLabelTextFontFamily": "SummaryLabelTextFontFamily", + "SummaryLabelTextFontFamilyProperty": "SummaryLabelTextFontFamilyProperty", + "SummaryLabelTextFontSize": "SummaryLabelTextFontSize", + "SummaryLabelTextFontSizeProperty": "SummaryLabelTextFontSizeProperty", + "SummaryLabelTextFontStyle": "SummaryLabelTextFontStyle", + "SummaryLabelTextFontStyleProperty": "SummaryLabelTextFontStyleProperty", + "SummaryLabelTextFontWeight": "SummaryLabelTextFontWeight", + "SummaryLabelTextFontWeightProperty": "SummaryLabelTextFontWeightProperty", + "SummaryLabelTextProperty": "SummaryLabelTextProperty", + "SummaryRowMarginBottom": "SummaryRowMarginBottom", + "SummaryRowMarginBottomProperty": "SummaryRowMarginBottomProperty", + "SummaryRowMarginLeft": "SummaryRowMarginLeft", + "SummaryRowMarginLeftProperty": "SummaryRowMarginLeftProperty", + "SummaryRowMarginRight": "SummaryRowMarginRight", + "SummaryRowMarginRightProperty": "SummaryRowMarginRightProperty", + "SummaryRowMarginTop": "SummaryRowMarginTop", + "SummaryRowMarginTopProperty": "SummaryRowMarginTopProperty", + "SummaryTitleText": "SummaryTitleText", + "SummaryTitleTextColor": "SummaryTitleTextColor", + "SummaryTitleTextColorProperty": "SummaryTitleTextColorProperty", + "SummaryTitleTextFontFamily": "SummaryTitleTextFontFamily", + "SummaryTitleTextFontFamilyProperty": "SummaryTitleTextFontFamilyProperty", + "SummaryTitleTextFontSize": "SummaryTitleTextFontSize", + "SummaryTitleTextFontSizeProperty": "SummaryTitleTextFontSizeProperty", + "SummaryTitleTextFontStyle": "SummaryTitleTextFontStyle", + "SummaryTitleTextFontStyleProperty": "SummaryTitleTextFontStyleProperty", + "SummaryTitleTextFontWeight": "SummaryTitleTextFontWeight", + "SummaryTitleTextFontWeightProperty": "SummaryTitleTextFontWeightProperty", + "SummaryTitleTextMarginBottom": "SummaryTitleTextMarginBottom", + "SummaryTitleTextMarginBottomProperty": "SummaryTitleTextMarginBottomProperty", + "SummaryTitleTextMarginLeft": "SummaryTitleTextMarginLeft", + "SummaryTitleTextMarginLeftProperty": "SummaryTitleTextMarginLeftProperty", + "SummaryTitleTextMarginRight": "SummaryTitleTextMarginRight", + "SummaryTitleTextMarginRightProperty": "SummaryTitleTextMarginRightProperty", + "SummaryTitleTextMarginTop": "SummaryTitleTextMarginTop", + "SummaryTitleTextMarginTopProperty": "SummaryTitleTextMarginTopProperty", + "SummaryTitleTextProperty": "SummaryTitleTextProperty", + "SummaryType": "SummaryType", + "SummaryTypeProperty": "SummaryTypeProperty", + "SummaryUnitsText": "SummaryUnitsText", + "SummaryUnitsTextColor": "SummaryUnitsTextColor", + "SummaryUnitsTextColorProperty": "SummaryUnitsTextColorProperty", + "SummaryUnitsTextFontFamily": "SummaryUnitsTextFontFamily", + "SummaryUnitsTextFontFamilyProperty": "SummaryUnitsTextFontFamilyProperty", + "SummaryUnitsTextFontSize": "SummaryUnitsTextFontSize", + "SummaryUnitsTextFontSizeProperty": "SummaryUnitsTextFontSizeProperty", + "SummaryUnitsTextFontStyle": "SummaryUnitsTextFontStyle", + "SummaryUnitsTextFontStyleProperty": "SummaryUnitsTextFontStyleProperty", + "SummaryUnitsTextFontWeight": "SummaryUnitsTextFontWeight", + "SummaryUnitsTextFontWeightProperty": "SummaryUnitsTextFontWeightProperty", + "SummaryUnitsTextProperty": "SummaryUnitsTextProperty", + "SummaryValueTextColor": "SummaryValueTextColor", + "SummaryValueTextColorProperty": "SummaryValueTextColorProperty", + "SummaryValueTextFontFamily": "SummaryValueTextFontFamily", + "SummaryValueTextFontFamilyProperty": "SummaryValueTextFontFamilyProperty", + "SummaryValueTextFontSize": "SummaryValueTextFontSize", + "SummaryValueTextFontSizeProperty": "SummaryValueTextFontSizeProperty", + "SummaryValueTextFontStyle": "SummaryValueTextFontStyle", + "SummaryValueTextFontStyleProperty": "SummaryValueTextFontStyleProperty", + "SummaryValueTextFontWeight": "SummaryValueTextFontWeight", + "SummaryValueTextFontWeightProperty": "SummaryValueTextFontWeightProperty", + "Target": "Target", + "TargetCursorPositionX": "TargetCursorPositionX", + "TargetCursorPositionXProperty": "TargetCursorPositionXProperty", + "TargetCursorPositionY": "TargetCursorPositionY", + "TargetCursorPositionYProperty": "TargetCursorPositionYProperty", + "TargetProperty": "TargetProperty", + "TitleTextColor": "TitleTextColor", + "TitleTextColorProperty": "TitleTextColorProperty", + "TitleTextFontFamily": "TitleTextFontFamily", + "TitleTextFontFamilyProperty": "TitleTextFontFamilyProperty", + "TitleTextFontSize": "TitleTextFontSize", + "TitleTextFontSizeProperty": "TitleTextFontSizeProperty", + "TitleTextFontStyle": "TitleTextFontStyle", + "TitleTextFontStyleProperty": "TitleTextFontStyleProperty", + "TitleTextFontWeight": "TitleTextFontWeight", + "TitleTextFontWeightProperty": "TitleTextFontWeightProperty", + "TitleTextMarginBottom": "TitleTextMarginBottom", + "TitleTextMarginBottomProperty": "TitleTextMarginBottomProperty", + "TitleTextMarginLeft": "TitleTextMarginLeft", + "TitleTextMarginLeftProperty": "TitleTextMarginLeftProperty", + "TitleTextMarginRight": "TitleTextMarginRight", + "TitleTextMarginRightProperty": "TitleTextMarginRightProperty", + "TitleTextMarginTop": "TitleTextMarginTop", + "TitleTextMarginTopProperty": "TitleTextMarginTopProperty", + "UnitsDisplayMode": "UnitsDisplayMode", + "UnitsDisplayModeProperty": "UnitsDisplayModeProperty", + "UnitsText": "UnitsText", + "UnitsTextColor": "UnitsTextColor", + "UnitsTextColorProperty": "UnitsTextColorProperty", + "UnitsTextFontFamily": "UnitsTextFontFamily", + "UnitsTextFontFamilyProperty": "UnitsTextFontFamilyProperty", + "UnitsTextFontSize": "UnitsTextFontSize", + "UnitsTextFontSizeProperty": "UnitsTextFontSizeProperty", + "UnitsTextFontStyle": "UnitsTextFontStyle", + "UnitsTextFontStyleProperty": "UnitsTextFontStyleProperty", + "UnitsTextFontWeight": "UnitsTextFontWeight", + "UnitsTextFontWeightProperty": "UnitsTextFontWeightProperty", + "UnitsTextMarginBottom": "UnitsTextMarginBottom", + "UnitsTextMarginBottomProperty": "UnitsTextMarginBottomProperty", + "UnitsTextMarginLeft": "UnitsTextMarginLeft", + "UnitsTextMarginLeftProperty": "UnitsTextMarginLeftProperty", + "UnitsTextMarginRight": "UnitsTextMarginRight", + "UnitsTextMarginRightProperty": "UnitsTextMarginRightProperty", + "UnitsTextMarginTop": "UnitsTextMarginTop", + "UnitsTextMarginTopProperty": "UnitsTextMarginTopProperty", + "UnitsTextProperty": "UnitsTextProperty", + "ValueFormatAbbreviation": "ValueFormatAbbreviation", + "ValueFormatAbbreviationProperty": "ValueFormatAbbreviationProperty", + "ValueFormatCulture": "ValueFormatCulture", + "ValueFormatCultureProperty": "ValueFormatCultureProperty", + "ValueFormatMaxFractions": "ValueFormatMaxFractions", + "ValueFormatMaxFractionsProperty": "ValueFormatMaxFractionsProperty", + "ValueFormatMinFractions": "ValueFormatMinFractions", + "ValueFormatMinFractionsProperty": "ValueFormatMinFractionsProperty", + "ValueFormatMode": "ValueFormatMode", + "ValueFormatModeProperty": "ValueFormatModeProperty", + "ValueFormatSpecifiers": "ValueFormatSpecifiers", + "ValueFormatSpecifiersProperty": "ValueFormatSpecifiersProperty", + "ValueFormatString": "ValueFormatString", + "ValueFormatStringProperty": "ValueFormatStringProperty", + "ValueFormatUseGrouping": "ValueFormatUseGrouping", + "ValueFormatUseGroupingProperty": "ValueFormatUseGroupingProperty", + "ValueRowMarginBottom": "ValueRowMarginBottom", + "ValueRowMarginBottomProperty": "ValueRowMarginBottomProperty", + "ValueRowMarginLeft": "ValueRowMarginLeft", + "ValueRowMarginLeftProperty": "ValueRowMarginLeftProperty", + "ValueRowMarginRight": "ValueRowMarginRight", + "ValueRowMarginRightProperty": "ValueRowMarginRightProperty", + "ValueRowMarginTop": "ValueRowMarginTop", + "ValueRowMarginTopProperty": "ValueRowMarginTopProperty", + "ValueRowVisible": "ValueRowVisible", + "ValueRowVisibleProperty": "ValueRowVisibleProperty", + "ValueTextColor": "ValueTextColor", + "ValueTextColorProperty": "ValueTextColorProperty", + "ValueTextFontFamily": "ValueTextFontFamily", + "ValueTextFontFamilyProperty": "ValueTextFontFamilyProperty", + "ValueTextFontSize": "ValueTextFontSize", + "ValueTextFontSizeProperty": "ValueTextFontSizeProperty", + "ValueTextFontStyle": "ValueTextFontStyle", + "ValueTextFontStyleProperty": "ValueTextFontStyleProperty", + "ValueTextFontWeight": "ValueTextFontWeight", + "ValueTextFontWeightProperty": "ValueTextFontWeightProperty", + "ValueTextMarginBottom": "ValueTextMarginBottom", + "ValueTextMarginBottomProperty": "ValueTextMarginBottomProperty", + "ValueTextMarginLeft": "ValueTextMarginLeft", + "ValueTextMarginLeftProperty": "ValueTextMarginLeftProperty", + "ValueTextMarginRight": "ValueTextMarginRight", + "ValueTextMarginRightProperty": "ValueTextMarginRightProperty", + "ValueTextMarginTop": "ValueTextMarginTop", + "ValueTextMarginTopProperty": "ValueTextMarginTopProperty", + "ValueTextUseSeriesColors": "ValueTextUseSeriesColors", + "ValueTextUseSeriesColorsProperty": "ValueTextUseSeriesColorsProperty", + "ValueTextWhenMissingData": "ValueTextWhenMissingData", + "ValueTextWhenMissingDataProperty": "ValueTextWhenMissingDataProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamDataPieChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/XamDataPieChart", + "k": "class", + "s": "classes", + "m": { + "XamDataPieChart()": "XamDataPieChart()", + "XamDataPieChart": "XamDataPieChart()", + "ChartType": "ChartType", + "ChartTypeProperty": "ChartTypeProperty", + "IsTransitionInEnabled": "IsTransitionInEnabled", + "IsTransitionInEnabledProperty": "IsTransitionInEnabledProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipBorderColor": "ToolTipBorderColor", + "ToolTipBorderColorProperty": "ToolTipBorderColorProperty", + "ToolTipBorderThickness": "ToolTipBorderThickness", + "ToolTipBorderThicknessProperty": "ToolTipBorderThicknessProperty", + "TransitionInDuration": "TransitionInDuration", + "TransitionInDurationProperty": "TransitionInDurationProperty", + "TransitionInEasingFunction": "TransitionInEasingFunction", + "TransitionInEasingFunctionProperty": "TransitionInEasingFunctionProperty", + "TransitionInMode": "TransitionInMode", + "TransitionInModeProperty": "TransitionInModeProperty", + "TransitionInSpeedType": "TransitionInSpeedType", + "TransitionInSpeedTypeProperty": "TransitionInSpeedTypeProperty", + "TransitionOutDuration": "TransitionOutDuration", + "TransitionOutDurationProperty": "TransitionOutDurationProperty", + "TransitionOutEasingFunction": "TransitionOutEasingFunction", + "TransitionOutEasingFunctionProperty": "TransitionOutEasingFunctionProperty" + } + } + ], + "XamDoughnutChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/XamDoughnutChart", + "k": "class", + "s": "classes", + "m": { + "XamDoughnutChart()": "XamDoughnutChart()", + "XamDoughnutChart": "XamDoughnutChart()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "AllowSliceExplosion": "AllowSliceExplosion", + "AllowSliceExplosionProperty": "AllowSliceExplosionProperty", + "AllowSliceSelection": "AllowSliceSelection", + "AllowSliceSelectionProperty": "AllowSliceSelectionProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "GetCenterCoordinates()": "GetCenterCoordinates()", + "GetCenterCoordinates": "GetCenterCoordinates()", + "GetHoleRadius()": "GetHoleRadius()", + "GetHoleRadius": "GetHoleRadius()", + "InnerExtent": "InnerExtent", + "InnerExtentProperty": "InnerExtentProperty", + "IsSurfaceInteractionDisabled": "IsSurfaceInteractionDisabled", + "IsSurfaceInteractionDisabledProperty": "IsSurfaceInteractionDisabledProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnHoleDimensionsChanged(HoleDimensionsChangedEventArgs)": "OnHoleDimensionsChanged(HoleDimensionsChangedEventArgs)", + "OnHoleDimensionsChanged": "OnHoleDimensionsChanged(HoleDimensionsChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSliceClick(SliceClickEventArgs)": "OnSliceClick(SliceClickEventArgs)", + "OnSliceClick": "OnSliceClick(SliceClickEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceFillProperty": "SelectedSliceFillProperty", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceOpacityProperty": "SelectedSliceOpacityProperty", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeProperty": "SelectedSliceStrokeProperty", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectedSliceStrokeThicknessProperty": "SelectedSliceStrokeThicknessProperty", + "Series": "Series", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamExpansionPanel": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/XamExpansionPanel", + "k": "class", + "s": "classes", + "m": { + "XamExpansionPanel()": "XamExpansionPanel()", + "XamExpansionPanel": "XamExpansionPanel()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualAmbientShadowColorProperty": "ActualAmbientShadowColorProperty", + "ActualCaptionTextColor": "ActualCaptionTextColor", + "ActualCaptionTextColorProperty": "ActualCaptionTextColorProperty", + "ActualDescriptionTextColor": "ActualDescriptionTextColor", + "ActualDescriptionTextColorProperty": "ActualDescriptionTextColorProperty", + "ActualElevation": "ActualElevation", + "ActualElevationProperty": "ActualElevationProperty", + "ActualHeaderBackgroundColor": "ActualHeaderBackgroundColor", + "ActualHeaderBackgroundColorProperty": "ActualHeaderBackgroundColorProperty", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualPenumbraShadowColorProperty": "ActualPenumbraShadowColorProperty", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "ActualUmbraShadowColorProperty": "ActualUmbraShadowColorProperty", + "Caption": "Caption", + "CaptionCollapsedTextColor": "CaptionCollapsedTextColor", + "CaptionCollapsedTextColorProperty": "CaptionCollapsedTextColorProperty", + "CaptionExpandedTextColor": "CaptionExpandedTextColor", + "CaptionExpandedTextColorProperty": "CaptionExpandedTextColorProperty", + "CaptionProperty": "CaptionProperty", + "CaptionTextColor": "CaptionTextColor", + "CaptionTextColorProperty": "CaptionTextColorProperty", + "Collapse()": "Collapse()", + "Collapse": "Collapse()", + "DescriptionCollapsedTextColor": "DescriptionCollapsedTextColor", + "DescriptionCollapsedTextColorProperty": "DescriptionCollapsedTextColorProperty", + "DescriptionExpandedTextColor": "DescriptionExpandedTextColor", + "DescriptionExpandedTextColorProperty": "DescriptionExpandedTextColorProperty", + "DescriptionText": "DescriptionText", + "DescriptionTextColor": "DescriptionTextColor", + "DescriptionTextColorProperty": "DescriptionTextColorProperty", + "DescriptionTextProperty": "DescriptionTextProperty", + "Elevation": "Elevation", + "ElevationProperty": "ElevationProperty", + "Expand()": "Expand()", + "Expand": "Expand()", + "Expanded": "Expanded", + "ExpandedProperty": "ExpandedProperty", + "HeaderBackgroundColor": "HeaderBackgroundColor", + "HeaderBackgroundColorProperty": "HeaderBackgroundColorProperty", + "HeaderCollapsedBackgroundColor": "HeaderCollapsedBackgroundColor", + "HeaderCollapsedBackgroundColorProperty": "HeaderCollapsedBackgroundColorProperty", + "HeaderExpandedBackgroundColor": "HeaderExpandedBackgroundColor", + "HeaderExpandedBackgroundColorProperty": "HeaderExpandedBackgroundColorProperty", + "OnOnCollapsed(OnCollapsedEventArgs)": "OnOnCollapsed(OnCollapsedEventArgs)", + "OnOnCollapsed": "OnOnCollapsed(OnCollapsedEventArgs)", + "OnOnExpanded(OnExpandedEventArgs)": "OnOnExpanded(OnExpandedEventArgs)", + "OnOnExpanded": "OnOnExpanded(OnExpandedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Toggle()": "Toggle()", + "Toggle": "Toggle()", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamFunnelChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/XamFunnelChart", + "k": "class", + "s": "classes", + "m": { + "XamFunnelChart()": "XamFunnelChart()", + "XamFunnelChart": "XamFunnelChart()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueDisplayModeProperty": "ActualHighlightValueDisplayModeProperty", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualHighlightValueOpacityProperty": "ActualHighlightValueOpacityProperty", + "AllowSliceSelection": "AllowSliceSelection", + "AllowSliceSelectionProperty": "AllowSliceSelectionProperty", + "BottomEdgeWidth": "BottomEdgeWidth", + "BottomEdgeWidthProperty": "BottomEdgeWidthProperty", + "Brushes": "Brushes", + "BrushesProperty": "BrushesProperty", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "FormatInnerLabel": "FormatInnerLabel", + "FormatInnerLabelProperty": "FormatInnerLabelProperty", + "FormatOuterLabel": "FormatOuterLabel", + "FormatOuterLabelProperty": "FormatOuterLabelProperty", + "FunnelSliceDisplay": "FunnelSliceDisplay", + "FunnelSliceDisplayProperty": "FunnelSliceDisplayProperty", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueDisplayModeProperty": "HighlightValueDisplayModeProperty", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightValueOpacityProperty": "HighlightValueOpacityProperty", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "HighlightedValueMemberPathProperty": "HighlightedValueMemberPathProperty", + "InnerLabelMemberPath": "InnerLabelMemberPath", + "InnerLabelMemberPathProperty": "InnerLabelMemberPathProperty", + "InnerLabelVisibility": "InnerLabelVisibility", + "InnerLabelVisibilityProperty": "InnerLabelVisibilityProperty", + "IsInverted": "IsInverted", + "IsInvertedProperty": "IsInvertedProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Legend": "Legend", + "LegendProperty": "LegendProperty", + "LowerBezierControlPoint": "LowerBezierControlPoint", + "LowerBezierControlPointProperty": "LowerBezierControlPointProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnSelectedItemsChanged(FunnelChartSelectedItemsChangedEventArgs)": "OnSelectedItemsChanged(FunnelChartSelectedItemsChangedEventArgs)", + "OnSelectedItemsChanged": "OnSelectedItemsChanged(FunnelChartSelectedItemsChangedEventArgs)", + "OnSliceClicked(FunnelSliceClickedEventArgs)": "OnSliceClicked(FunnelSliceClickedEventArgs)", + "OnSliceClicked": "OnSliceClicked(FunnelSliceClickedEventArgs)", + "OnSliceEnter(FunnelSliceEventArgs)": "OnSliceEnter(FunnelSliceEventArgs)", + "OnSliceEnter": "OnSliceEnter(FunnelSliceEventArgs)", + "OnSliceHover(FunnelSliceEventArgs)": "OnSliceHover(FunnelSliceEventArgs)", + "OnSliceHover": "OnSliceHover(FunnelSliceEventArgs)", + "OnSliceLeave(FunnelSliceEventArgs)": "OnSliceLeave(FunnelSliceEventArgs)", + "OnSliceLeave": "OnSliceLeave(FunnelSliceEventArgs)", + "OuterLabelAlignment": "OuterLabelAlignment", + "OuterLabelAlignmentProperty": "OuterLabelAlignmentProperty", + "OuterLabelFontFamily": "OuterLabelFontFamily", + "OuterLabelFontFamilyProperty": "OuterLabelFontFamilyProperty", + "OuterLabelFontSize": "OuterLabelFontSize", + "OuterLabelFontSizeProperty": "OuterLabelFontSizeProperty", + "OuterLabelFontStyle": "OuterLabelFontStyle", + "OuterLabelFontStyleProperty": "OuterLabelFontStyleProperty", + "OuterLabelFontWeight": "OuterLabelFontWeight", + "OuterLabelFontWeightProperty": "OuterLabelFontWeightProperty", + "OuterLabelMemberPath": "OuterLabelMemberPath", + "OuterLabelMemberPathProperty": "OuterLabelMemberPathProperty", + "OuterLabelTextColor": "OuterLabelTextColor", + "OuterLabelTextColorProperty": "OuterLabelTextColorProperty", + "OuterLabelVisibility": "OuterLabelVisibility", + "OuterLabelVisibilityProperty": "OuterLabelVisibilityProperty", + "OutlineThickness": "OutlineThickness", + "OutlineThicknessProperty": "OutlineThicknessProperty", + "Outlines": "Outlines", + "OutlinesProperty": "OutlinesProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "SelectedItems": "SelectedItems", + "SelectedSliceFill": "SelectedSliceFill", + "SelectedSliceFillProperty": "SelectedSliceFillProperty", + "SelectedSliceOpacity": "SelectedSliceOpacity", + "SelectedSliceOpacityProperty": "SelectedSliceOpacityProperty", + "SelectedSliceStroke": "SelectedSliceStroke", + "SelectedSliceStrokeProperty": "SelectedSliceStrokeProperty", + "SelectedSliceStrokeThickness": "SelectedSliceStrokeThickness", + "SelectedSliceStrokeThicknessProperty": "SelectedSliceStrokeThicknessProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ToggleSelection(int)": "ToggleSelection(int)", + "ToggleSelection": "ToggleSelection(int)", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "UnselectedSliceFill": "UnselectedSliceFill", + "UnselectedSliceFillProperty": "UnselectedSliceFillProperty", + "UnselectedSliceOpacity": "UnselectedSliceOpacity", + "UnselectedSliceOpacityProperty": "UnselectedSliceOpacityProperty", + "UnselectedSliceStroke": "UnselectedSliceStroke", + "UnselectedSliceStrokeProperty": "UnselectedSliceStrokeProperty", + "UnselectedSliceStrokeThickness": "UnselectedSliceStrokeThickness", + "UnselectedSliceStrokeThicknessProperty": "UnselectedSliceStrokeThicknessProperty", + "UpperBezierControlPoint": "UpperBezierControlPoint", + "UpperBezierControlPointProperty": "UpperBezierControlPointProperty", + "UseBezierCurve": "UseBezierCurve", + "UseBezierCurveProperty": "UseBezierCurveProperty", + "UseOuterLabelsForLegend": "UseOuterLabelsForLegend", + "UseOuterLabelsForLegendProperty": "UseOuterLabelsForLegendProperty", + "UseUnselectedStyle": "UseUnselectedStyle", + "UseUnselectedStyleProperty": "UseUnselectedStyleProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamGeographicMap": [ + { + "p": "Infragistics.WinUI.Maps", + "u": "/api/winui/Infragistics.WinUI.Maps/latest/classes/XamGeographicMap", + "k": "class", + "s": "classes", + "m": { + "XamGeographicMap()": "XamGeographicMap()", + "XamGeographicMap": "XamGeographicMap()", + "ActualWindowScale": "ActualWindowScale", + "ActualWindowScaleProperty": "ActualWindowScaleProperty", + "ActualWorldRect": "ActualWorldRect", + "ActualWorldRectProperty": "ActualWorldRectProperty", + "BackgroundContent": "BackgroundContent", + "BackgroundContentProperty": "BackgroundContentProperty", + "BackgroundTilingMode": "BackgroundTilingMode", + "BackgroundTilingModeProperty": "BackgroundTilingModeProperty", + "ClearTileCache()": "ClearTileCache()", + "ClearTileCache": "ClearTileCache()", + "ConvertGeographicToZoom(Rect, double)": "ConvertGeographicToZoom(Rect, double)", + "ConvertGeographicToZoom": "ConvertGeographicToZoom(Rect, double)", + "DeferredRefresh()": "DeferredRefresh()", + "DeferredRefresh": "DeferredRefresh()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "GetCurrentActualWorldRect()": "GetCurrentActualWorldRect()", + "GetCurrentActualWorldRect": "GetCurrentActualWorldRect()", + "GetGeographicFromZoom(Rect)": "GetGeographicFromZoom(Rect)", + "GetGeographicFromZoom": "GetGeographicFromZoom(Rect)", + "GetGeographicPoint(Point)": "GetGeographicPoint(Point)", + "GetGeographicPoint": "GetGeographicPoint(Point)", + "GetPixelPoint(Point)": "GetPixelPoint(Point)", + "GetPixelPoint": "GetPixelPoint(Point)", + "GetZoomFromGeographic(Point, Point)": "GetZoomFromGeographic(Point, Point)", + "GetZoomFromGeographic": "GetZoomFromGeographic(Point, Point)", + "GetZoomFromGeographic(Rect)": "GetZoomFromGeographic(Rect)", + "GetZoomRectFromGeoRect(Rect)": "GetZoomRectFromGeoRect(Rect)", + "GetZoomRectFromGeoRect": "GetZoomRectFromGeoRect(Rect)", + "IsHorizontalWrappingEnabled": "IsHorizontalWrappingEnabled", + "IsHorizontalWrappingEnabledProperty": "IsHorizontalWrappingEnabledProperty", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnImageTilesReady(EventArgs)": "OnImageTilesReady(EventArgs)", + "OnImageTilesReady": "OnImageTilesReady(EventArgs)", + "Register(object, Action)": "Register(object, Action)", + "Register": "Register(object, Action)", + "ResizeBehavior": "ResizeBehavior", + "ResizeBehaviorProperty": "ResizeBehaviorProperty", + "StyleUpdated()": "StyleUpdated()", + "StyleUpdated": "StyleUpdated()", + "SuppressZoomResetOnWorldRectChange": "SuppressZoomResetOnWorldRectChange", + "SuppressZoomResetOnWorldRectChangeProperty": "SuppressZoomResetOnWorldRectChangeProperty", + "UnRegister(object)": "UnRegister(object)", + "UnRegister": "UnRegister(object)", + "UpdateWorldRect(Rect)": "UpdateWorldRect(Rect)", + "UpdateWorldRect": "UpdateWorldRect(Rect)", + "UpdateZoomWindow(Rect)": "UpdateZoomWindow(Rect)", + "UpdateZoomWindow": "UpdateZoomWindow(Rect)", + "UseWorldRectForZoomBounds": "UseWorldRectForZoomBounds", + "UseWorldRectForZoomBoundsProperty": "UseWorldRectForZoomBoundsProperty", + "WindowScale": "WindowScale", + "WindowScaleProperty": "WindowScaleProperty", + "WorldRect": "WorldRect", + "WorldRectProperty": "WorldRectProperty", + "XAxis": "XAxis", + "XAxisProperty": "XAxisProperty", + "YAxis": "YAxis", + "YAxisProperty": "YAxisProperty", + "ZoomIsReady": "ZoomIsReady", + "ZoomIsReadyProperty": "ZoomIsReadyProperty", + "ZoomToGeographic(Rect)": "ZoomToGeographic(Rect)", + "ZoomToGeographic": "ZoomToGeographic(Rect)", + "Zoomable": "Zoomable", + "ZoomableProperty": "ZoomableProperty" + } + } + ], + "XamIcon": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamIcon", + "k": "class", + "s": "classes", + "m": { + "XamIcon()": "XamIcon()", + "XamIcon": "XamIcon()", + "ActualFill": "ActualFill", + "ActualFillProperty": "ActualFillProperty", + "ActualStroke": "ActualStroke", + "ActualStrokeProperty": "ActualStrokeProperty", + "ActualStrokeWidth": "ActualStrokeWidth", + "ActualStrokeWidthProperty": "ActualStrokeWidthProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualViewBoxHeight": "ActualViewBoxHeight", + "ActualViewBoxHeightProperty": "ActualViewBoxHeightProperty", + "ActualViewBoxLeft": "ActualViewBoxLeft", + "ActualViewBoxLeftProperty": "ActualViewBoxLeftProperty", + "ActualViewBoxTop": "ActualViewBoxTop", + "ActualViewBoxTopProperty": "ActualViewBoxTopProperty", + "ActualViewBoxWidth": "ActualViewBoxWidth", + "ActualViewBoxWidthProperty": "ActualViewBoxWidthProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "DataURL": "DataURL", + "DataURLProperty": "DataURLProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "Fill": "Fill", + "FillColors": "FillColors", + "FillColorsProperty": "FillColorsProperty", + "FillProperty": "FillProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "Height": "Height", + "HeightProperty": "HeightProperty", + "HoverFill": "HoverFill", + "HoverFillProperty": "HoverFillProperty", + "HoverStroke": "HoverStroke", + "HoverStrokeProperty": "HoverStrokeProperty", + "HoverStrokeThickness": "HoverStrokeThickness", + "HoverStrokeThicknessProperty": "HoverStrokeThicknessProperty", + "HoverTextColor": "HoverTextColor", + "HoverTextColorProperty": "HoverTextColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Opacity": "Opacity", + "OpacityProperty": "OpacityProperty", + "PrimaryFillColor": "PrimaryFillColor", + "PrimaryFillColorProperty": "PrimaryFillColorProperty", + "PrimaryStrokeColor": "PrimaryStrokeColor", + "PrimaryStrokeColorProperty": "PrimaryStrokeColorProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "SVG": "SVG", + "SVGPath": "SVGPath", + "SVGPathProperty": "SVGPathProperty", + "SVGPaths": "SVGPaths", + "SVGPathsProperty": "SVGPathsProperty", + "SVGProperty": "SVGProperty", + "SecondaryFillColor": "SecondaryFillColor", + "SecondaryFillColorProperty": "SecondaryFillColorProperty", + "SecondaryStrokeColor": "SecondaryStrokeColor", + "SecondaryStrokeColorProperty": "SecondaryStrokeColorProperty", + "Source": "Source", + "SourceProperty": "SourceProperty", + "Stroke": "Stroke", + "StrokeColors": "StrokeColors", + "StrokeColorsProperty": "StrokeColorsProperty", + "StrokeProperty": "StrokeProperty", + "StrokeWidth": "StrokeWidth", + "StrokeWidthProperty": "StrokeWidthProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ViewBoxHeight": "ViewBoxHeight", + "ViewBoxHeightProperty": "ViewBoxHeightProperty", + "ViewBoxLeft": "ViewBoxLeft", + "ViewBoxLeftProperty": "ViewBoxLeftProperty", + "ViewBoxTop": "ViewBoxTop", + "ViewBoxTopProperty": "ViewBoxTopProperty", + "ViewBoxWidth": "ViewBoxWidth", + "ViewBoxWidthProperty": "ViewBoxWidthProperty", + "Width": "Width", + "WidthProperty": "WidthProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamInput": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamInput", + "k": "class", + "s": "classes", + "m": { + "XamInput()": "XamInput()", + "XamInput": "XamInput()", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualHoverTextColorProperty": "ActualHoverTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Blur()": "Blur()", + "Blur": "Blur()", + "Density": "Density", + "DensityProperty": "DensityProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HasValue": "HasValue", + "HasValueProperty": "HasValueProperty", + "HoverTextColor": "HoverTextColor", + "HoverTextColorProperty": "HoverTextColorProperty", + "IncludeLiterals": "IncludeLiterals", + "IncludeLiteralsProperty": "IncludeLiteralsProperty", + "InputType": "InputType", + "InputTypeProperty": "InputTypeProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "IsReadOnly": "IsReadOnly", + "IsReadOnlyProperty": "IsReadOnlyProperty", + "Mask": "Mask", + "MaskProperty": "MaskProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnChange(InputChangeEventArgs)": "OnChange(InputChangeEventArgs)", + "OnChange": "OnChange(InputChangeEventArgs)", + "OnChanging(InputChangeEventArgs)": "OnChanging(InputChangeEventArgs)", + "OnChanging": "OnChanging(InputChangeEventArgs)", + "OnCompositionEnd(InputChangeEventArgs)": "OnCompositionEnd(InputChangeEventArgs)", + "OnCompositionEnd": "OnCompositionEnd(InputChangeEventArgs)", + "OnCompositionStart(EventArgs)": "OnCompositionStart(EventArgs)", + "OnCompositionStart": "OnCompositionStart(EventArgs)", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnGotFocus(EventArgs)": "OnGotFocus(EventArgs)", + "OnGotFocus": "OnGotFocus(EventArgs)", + "OnKeyDown(KeyEventArgs)": "OnKeyDown(KeyEventArgs)", + "OnKeyDown": "OnKeyDown(KeyEventArgs)", + "OnKeyPress(KeyEventArgs)": "OnKeyPress(KeyEventArgs)", + "OnKeyPress": "OnKeyPress(KeyEventArgs)", + "OnKeyUp(KeyEventArgs)": "OnKeyUp(KeyEventArgs)", + "OnKeyUp": "OnKeyUp(KeyEventArgs)", + "OnLostFocus(EventArgs)": "OnLostFocus(EventArgs)", + "OnLostFocus": "OnLostFocus(EventArgs)", + "Placeholder": "Placeholder", + "PlaceholderProperty": "PlaceholderProperty", + "PromptChar": "PromptChar", + "PromptCharProperty": "PromptCharProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "Select()": "Select()", + "Select": "Select()", + "SelectionEnd": "SelectionEnd", + "SelectionEndProperty": "SelectionEndProperty", + "SelectionStart": "SelectionStart", + "SelectionStartProperty": "SelectionStartProperty", + "SetSelectionRange(int, int)": "SetSelectionRange(int, int)", + "SetSelectionRange": "SetSelectionRange(int, int)", + "ShowSpinner": "ShowSpinner", + "ShowSpinnerProperty": "ShowSpinnerProperty", + "TextAlignment": "TextAlignment", + "TextAlignmentProperty": "TextAlignmentProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "XamInputGroup": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamInputGroup", + "k": "class", + "s": "classes", + "m": { + "XamInputGroup()": "XamInputGroup()", + "XamInputGroup": "XamInputGroup()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderColorProperty": "ActualBorderColorProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingBottomProperty": "ActualContentPaddingBottomProperty", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingLeftProperty": "ActualContentPaddingLeftProperty", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingRightProperty": "ActualContentPaddingRightProperty", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualContentPaddingTopProperty": "ActualContentPaddingTopProperty", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderColorProperty": "ActualFocusBorderColorProperty", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusBorderWidthProperty": "ActualFocusBorderWidthProperty", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineColorProperty": "ActualFocusUnderlineColorProperty", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineOpacityProperty": "ActualFocusUnderlineOpacityProperty", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualFocusUnderlineRippleOpacityProperty": "ActualFocusUnderlineRippleOpacityProperty", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineColorProperty": "ActualHoverUnderlineColorProperty", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineOpacityProperty": "ActualHoverUnderlineOpacityProperty", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualHoverUnderlineWidthProperty": "ActualHoverUnderlineWidthProperty", + "ActualIsExpanded": "ActualIsExpanded", + "ActualIsExpandedProperty": "ActualIsExpandedProperty", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineColorProperty": "ActualUnderlineColorProperty", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineOpacityProperty": "ActualUnderlineOpacityProperty", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleColorProperty": "ActualUnderlineRippleColorProperty", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleOpacityProperty": "ActualUnderlineRippleOpacityProperty", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineRippleWidthProperty": "ActualUnderlineRippleWidthProperty", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualUnderlineWidthProperty": "ActualUnderlineWidthProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderColor": "BorderColor", + "BorderColorProperty": "BorderColorProperty", + "BorderTypeBackgroundColor": "BorderTypeBackgroundColor", + "BorderTypeBackgroundColorProperty": "BorderTypeBackgroundColorProperty", + "BorderTypeBorderColor": "BorderTypeBorderColor", + "BorderTypeBorderColorProperty": "BorderTypeBorderColorProperty", + "BorderTypeBorderWidth": "BorderTypeBorderWidth", + "BorderTypeBorderWidthProperty": "BorderTypeBorderWidthProperty", + "BorderTypeContentPaddingBottom": "BorderTypeContentPaddingBottom", + "BorderTypeContentPaddingBottomProperty": "BorderTypeContentPaddingBottomProperty", + "BorderTypeContentPaddingLeft": "BorderTypeContentPaddingLeft", + "BorderTypeContentPaddingLeftProperty": "BorderTypeContentPaddingLeftProperty", + "BorderTypeContentPaddingRight": "BorderTypeContentPaddingRight", + "BorderTypeContentPaddingRightProperty": "BorderTypeContentPaddingRightProperty", + "BorderTypeContentPaddingTop": "BorderTypeContentPaddingTop", + "BorderTypeContentPaddingTopProperty": "BorderTypeContentPaddingTopProperty", + "BorderTypeCornerRadiusBottomLeft": "BorderTypeCornerRadiusBottomLeft", + "BorderTypeCornerRadiusBottomLeftProperty": "BorderTypeCornerRadiusBottomLeftProperty", + "BorderTypeCornerRadiusBottomRight": "BorderTypeCornerRadiusBottomRight", + "BorderTypeCornerRadiusBottomRightProperty": "BorderTypeCornerRadiusBottomRightProperty", + "BorderTypeCornerRadiusTopLeft": "BorderTypeCornerRadiusTopLeft", + "BorderTypeCornerRadiusTopLeftProperty": "BorderTypeCornerRadiusTopLeftProperty", + "BorderTypeCornerRadiusTopRight": "BorderTypeCornerRadiusTopRight", + "BorderTypeCornerRadiusTopRightProperty": "BorderTypeCornerRadiusTopRightProperty", + "BorderTypeFocusBorderColor": "BorderTypeFocusBorderColor", + "BorderTypeFocusBorderColorProperty": "BorderTypeFocusBorderColorProperty", + "BorderTypeFocusBorderWidth": "BorderTypeFocusBorderWidth", + "BorderTypeFocusBorderWidthProperty": "BorderTypeFocusBorderWidthProperty", + "BorderTypeFocusUnderlineColor": "BorderTypeFocusUnderlineColor", + "BorderTypeFocusUnderlineColorProperty": "BorderTypeFocusUnderlineColorProperty", + "BorderTypeFocusUnderlineOpacity": "BorderTypeFocusUnderlineOpacity", + "BorderTypeFocusUnderlineOpacityProperty": "BorderTypeFocusUnderlineOpacityProperty", + "BorderTypeFocusUnderlineRippleOpacity": "BorderTypeFocusUnderlineRippleOpacity", + "BorderTypeFocusUnderlineRippleOpacityProperty": "BorderTypeFocusUnderlineRippleOpacityProperty", + "BorderTypeHoverUnderlineColor": "BorderTypeHoverUnderlineColor", + "BorderTypeHoverUnderlineColorProperty": "BorderTypeHoverUnderlineColorProperty", + "BorderTypeHoverUnderlineOpacity": "BorderTypeHoverUnderlineOpacity", + "BorderTypeHoverUnderlineOpacityProperty": "BorderTypeHoverUnderlineOpacityProperty", + "BorderTypeHoverUnderlineWidth": "BorderTypeHoverUnderlineWidth", + "BorderTypeHoverUnderlineWidthProperty": "BorderTypeHoverUnderlineWidthProperty", + "BorderTypeUnderlineColor": "BorderTypeUnderlineColor", + "BorderTypeUnderlineColorProperty": "BorderTypeUnderlineColorProperty", + "BorderTypeUnderlineOpacity": "BorderTypeUnderlineOpacity", + "BorderTypeUnderlineOpacityProperty": "BorderTypeUnderlineOpacityProperty", + "BorderTypeUnderlineRippleColor": "BorderTypeUnderlineRippleColor", + "BorderTypeUnderlineRippleColorProperty": "BorderTypeUnderlineRippleColorProperty", + "BorderTypeUnderlineRippleOpacity": "BorderTypeUnderlineRippleOpacity", + "BorderTypeUnderlineRippleOpacityProperty": "BorderTypeUnderlineRippleOpacityProperty", + "BorderTypeUnderlineRippleWidth": "BorderTypeUnderlineRippleWidth", + "BorderTypeUnderlineRippleWidthProperty": "BorderTypeUnderlineRippleWidthProperty", + "BorderTypeUnderlineWidth": "BorderTypeUnderlineWidth", + "BorderTypeUnderlineWidthProperty": "BorderTypeUnderlineWidthProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "BoxTypeBackgroundColor": "BoxTypeBackgroundColor", + "BoxTypeBackgroundColorProperty": "BoxTypeBackgroundColorProperty", + "BoxTypeBorderColor": "BoxTypeBorderColor", + "BoxTypeBorderColorProperty": "BoxTypeBorderColorProperty", + "BoxTypeBorderWidth": "BoxTypeBorderWidth", + "BoxTypeBorderWidthProperty": "BoxTypeBorderWidthProperty", + "BoxTypeContentPaddingBottom": "BoxTypeContentPaddingBottom", + "BoxTypeContentPaddingBottomProperty": "BoxTypeContentPaddingBottomProperty", + "BoxTypeContentPaddingLeft": "BoxTypeContentPaddingLeft", + "BoxTypeContentPaddingLeftProperty": "BoxTypeContentPaddingLeftProperty", + "BoxTypeContentPaddingRight": "BoxTypeContentPaddingRight", + "BoxTypeContentPaddingRightProperty": "BoxTypeContentPaddingRightProperty", + "BoxTypeContentPaddingTop": "BoxTypeContentPaddingTop", + "BoxTypeContentPaddingTopProperty": "BoxTypeContentPaddingTopProperty", + "BoxTypeCornerRadiusBottomLeft": "BoxTypeCornerRadiusBottomLeft", + "BoxTypeCornerRadiusBottomLeftProperty": "BoxTypeCornerRadiusBottomLeftProperty", + "BoxTypeCornerRadiusBottomRight": "BoxTypeCornerRadiusBottomRight", + "BoxTypeCornerRadiusBottomRightProperty": "BoxTypeCornerRadiusBottomRightProperty", + "BoxTypeCornerRadiusTopLeft": "BoxTypeCornerRadiusTopLeft", + "BoxTypeCornerRadiusTopLeftProperty": "BoxTypeCornerRadiusTopLeftProperty", + "BoxTypeCornerRadiusTopRight": "BoxTypeCornerRadiusTopRight", + "BoxTypeCornerRadiusTopRightProperty": "BoxTypeCornerRadiusTopRightProperty", + "BoxTypeFocusBorderColor": "BoxTypeFocusBorderColor", + "BoxTypeFocusBorderColorProperty": "BoxTypeFocusBorderColorProperty", + "BoxTypeFocusBorderWidth": "BoxTypeFocusBorderWidth", + "BoxTypeFocusBorderWidthProperty": "BoxTypeFocusBorderWidthProperty", + "BoxTypeFocusUnderlineColor": "BoxTypeFocusUnderlineColor", + "BoxTypeFocusUnderlineColorProperty": "BoxTypeFocusUnderlineColorProperty", + "BoxTypeFocusUnderlineOpacity": "BoxTypeFocusUnderlineOpacity", + "BoxTypeFocusUnderlineOpacityProperty": "BoxTypeFocusUnderlineOpacityProperty", + "BoxTypeFocusUnderlineRippleOpacity": "BoxTypeFocusUnderlineRippleOpacity", + "BoxTypeFocusUnderlineRippleOpacityProperty": "BoxTypeFocusUnderlineRippleOpacityProperty", + "BoxTypeHoverUnderlineColor": "BoxTypeHoverUnderlineColor", + "BoxTypeHoverUnderlineColorProperty": "BoxTypeHoverUnderlineColorProperty", + "BoxTypeHoverUnderlineOpacity": "BoxTypeHoverUnderlineOpacity", + "BoxTypeHoverUnderlineOpacityProperty": "BoxTypeHoverUnderlineOpacityProperty", + "BoxTypeHoverUnderlineWidth": "BoxTypeHoverUnderlineWidth", + "BoxTypeHoverUnderlineWidthProperty": "BoxTypeHoverUnderlineWidthProperty", + "BoxTypeUnderlineColor": "BoxTypeUnderlineColor", + "BoxTypeUnderlineColorProperty": "BoxTypeUnderlineColorProperty", + "BoxTypeUnderlineOpacity": "BoxTypeUnderlineOpacity", + "BoxTypeUnderlineOpacityProperty": "BoxTypeUnderlineOpacityProperty", + "BoxTypeUnderlineRippleColor": "BoxTypeUnderlineRippleColor", + "BoxTypeUnderlineRippleColorProperty": "BoxTypeUnderlineRippleColorProperty", + "BoxTypeUnderlineRippleOpacity": "BoxTypeUnderlineRippleOpacity", + "BoxTypeUnderlineRippleOpacityProperty": "BoxTypeUnderlineRippleOpacityProperty", + "BoxTypeUnderlineRippleWidth": "BoxTypeUnderlineRippleWidth", + "BoxTypeUnderlineRippleWidthProperty": "BoxTypeUnderlineRippleWidthProperty", + "BoxTypeUnderlineWidth": "BoxTypeUnderlineWidth", + "BoxTypeUnderlineWidthProperty": "BoxTypeUnderlineWidthProperty", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderColorProperty": "FocusBorderColorProperty", + "FocusBorderWidth": "FocusBorderWidth", + "FocusBorderWidthProperty": "FocusBorderWidthProperty", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineColorProperty": "FocusUnderlineColorProperty", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineOpacityProperty": "FocusUnderlineOpacityProperty", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FocusUnderlineRippleOpacityProperty": "FocusUnderlineRippleOpacityProperty", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineColorProperty": "HoverUnderlineColorProperty", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineOpacityProperty": "HoverUnderlineOpacityProperty", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "HoverUnderlineWidthProperty": "HoverUnderlineWidthProperty", + "InputHasValue": "InputHasValue", + "InputHasValueProperty": "InputHasValueProperty", + "Inputs": "Inputs", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsExpanded": "IsExpanded", + "IsExpandedProperty": "IsExpandedProperty", + "IsFocused": "IsFocused", + "IsFocusedProperty": "IsFocusedProperty", + "IsHovered": "IsHovered", + "IsHoveredProperty": "IsHoveredProperty", + "LineTypeBackgroundColor": "LineTypeBackgroundColor", + "LineTypeBackgroundColorProperty": "LineTypeBackgroundColorProperty", + "LineTypeBorderColor": "LineTypeBorderColor", + "LineTypeBorderColorProperty": "LineTypeBorderColorProperty", + "LineTypeBorderWidth": "LineTypeBorderWidth", + "LineTypeBorderWidthProperty": "LineTypeBorderWidthProperty", + "LineTypeContentPaddingBottom": "LineTypeContentPaddingBottom", + "LineTypeContentPaddingBottomProperty": "LineTypeContentPaddingBottomProperty", + "LineTypeContentPaddingLeft": "LineTypeContentPaddingLeft", + "LineTypeContentPaddingLeftProperty": "LineTypeContentPaddingLeftProperty", + "LineTypeContentPaddingRight": "LineTypeContentPaddingRight", + "LineTypeContentPaddingRightProperty": "LineTypeContentPaddingRightProperty", + "LineTypeContentPaddingTop": "LineTypeContentPaddingTop", + "LineTypeContentPaddingTopProperty": "LineTypeContentPaddingTopProperty", + "LineTypeCornerRadiusBottomLeft": "LineTypeCornerRadiusBottomLeft", + "LineTypeCornerRadiusBottomLeftProperty": "LineTypeCornerRadiusBottomLeftProperty", + "LineTypeCornerRadiusBottomRight": "LineTypeCornerRadiusBottomRight", + "LineTypeCornerRadiusBottomRightProperty": "LineTypeCornerRadiusBottomRightProperty", + "LineTypeCornerRadiusTopLeft": "LineTypeCornerRadiusTopLeft", + "LineTypeCornerRadiusTopLeftProperty": "LineTypeCornerRadiusTopLeftProperty", + "LineTypeCornerRadiusTopRight": "LineTypeCornerRadiusTopRight", + "LineTypeCornerRadiusTopRightProperty": "LineTypeCornerRadiusTopRightProperty", + "LineTypeFocusBorderColor": "LineTypeFocusBorderColor", + "LineTypeFocusBorderColorProperty": "LineTypeFocusBorderColorProperty", + "LineTypeFocusBorderWidth": "LineTypeFocusBorderWidth", + "LineTypeFocusBorderWidthProperty": "LineTypeFocusBorderWidthProperty", + "LineTypeFocusUnderlineColor": "LineTypeFocusUnderlineColor", + "LineTypeFocusUnderlineColorProperty": "LineTypeFocusUnderlineColorProperty", + "LineTypeFocusUnderlineOpacity": "LineTypeFocusUnderlineOpacity", + "LineTypeFocusUnderlineOpacityProperty": "LineTypeFocusUnderlineOpacityProperty", + "LineTypeFocusUnderlineRippleOpacity": "LineTypeFocusUnderlineRippleOpacity", + "LineTypeFocusUnderlineRippleOpacityProperty": "LineTypeFocusUnderlineRippleOpacityProperty", + "LineTypeHoverUnderlineColor": "LineTypeHoverUnderlineColor", + "LineTypeHoverUnderlineColorProperty": "LineTypeHoverUnderlineColorProperty", + "LineTypeHoverUnderlineOpacity": "LineTypeHoverUnderlineOpacity", + "LineTypeHoverUnderlineOpacityProperty": "LineTypeHoverUnderlineOpacityProperty", + "LineTypeHoverUnderlineWidth": "LineTypeHoverUnderlineWidth", + "LineTypeHoverUnderlineWidthProperty": "LineTypeHoverUnderlineWidthProperty", + "LineTypeUnderlineColor": "LineTypeUnderlineColor", + "LineTypeUnderlineColorProperty": "LineTypeUnderlineColorProperty", + "LineTypeUnderlineOpacity": "LineTypeUnderlineOpacity", + "LineTypeUnderlineOpacityProperty": "LineTypeUnderlineOpacityProperty", + "LineTypeUnderlineRippleColor": "LineTypeUnderlineRippleColor", + "LineTypeUnderlineRippleColorProperty": "LineTypeUnderlineRippleColorProperty", + "LineTypeUnderlineRippleOpacity": "LineTypeUnderlineRippleOpacity", + "LineTypeUnderlineRippleOpacityProperty": "LineTypeUnderlineRippleOpacityProperty", + "LineTypeUnderlineRippleWidth": "LineTypeUnderlineRippleWidth", + "LineTypeUnderlineRippleWidthProperty": "LineTypeUnderlineRippleWidthProperty", + "LineTypeUnderlineWidth": "LineTypeUnderlineWidth", + "LineTypeUnderlineWidthProperty": "LineTypeUnderlineWidthProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnGotFocus(EventArgs)": "OnGotFocus(EventArgs)", + "OnGotFocus": "OnGotFocus(EventArgs)", + "OnLostFocus(EventArgs)": "OnLostFocus(EventArgs)", + "OnLostFocus": "OnLostFocus(EventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "SearchTypeBackgroundColor": "SearchTypeBackgroundColor", + "SearchTypeBackgroundColorProperty": "SearchTypeBackgroundColorProperty", + "SearchTypeBorderColor": "SearchTypeBorderColor", + "SearchTypeBorderColorProperty": "SearchTypeBorderColorProperty", + "SearchTypeBorderWidth": "SearchTypeBorderWidth", + "SearchTypeBorderWidthProperty": "SearchTypeBorderWidthProperty", + "SearchTypeContentPaddingBottom": "SearchTypeContentPaddingBottom", + "SearchTypeContentPaddingBottomProperty": "SearchTypeContentPaddingBottomProperty", + "SearchTypeContentPaddingLeft": "SearchTypeContentPaddingLeft", + "SearchTypeContentPaddingLeftProperty": "SearchTypeContentPaddingLeftProperty", + "SearchTypeContentPaddingRight": "SearchTypeContentPaddingRight", + "SearchTypeContentPaddingRightProperty": "SearchTypeContentPaddingRightProperty", + "SearchTypeContentPaddingTop": "SearchTypeContentPaddingTop", + "SearchTypeContentPaddingTopProperty": "SearchTypeContentPaddingTopProperty", + "SearchTypeCornerRadiusBottomLeft": "SearchTypeCornerRadiusBottomLeft", + "SearchTypeCornerRadiusBottomLeftProperty": "SearchTypeCornerRadiusBottomLeftProperty", + "SearchTypeCornerRadiusBottomRight": "SearchTypeCornerRadiusBottomRight", + "SearchTypeCornerRadiusBottomRightProperty": "SearchTypeCornerRadiusBottomRightProperty", + "SearchTypeCornerRadiusTopLeft": "SearchTypeCornerRadiusTopLeft", + "SearchTypeCornerRadiusTopLeftProperty": "SearchTypeCornerRadiusTopLeftProperty", + "SearchTypeCornerRadiusTopRight": "SearchTypeCornerRadiusTopRight", + "SearchTypeCornerRadiusTopRightProperty": "SearchTypeCornerRadiusTopRightProperty", + "SearchTypeFocusBorderColor": "SearchTypeFocusBorderColor", + "SearchTypeFocusBorderColorProperty": "SearchTypeFocusBorderColorProperty", + "SearchTypeFocusBorderWidth": "SearchTypeFocusBorderWidth", + "SearchTypeFocusBorderWidthProperty": "SearchTypeFocusBorderWidthProperty", + "SearchTypeFocusUnderlineColor": "SearchTypeFocusUnderlineColor", + "SearchTypeFocusUnderlineColorProperty": "SearchTypeFocusUnderlineColorProperty", + "SearchTypeFocusUnderlineOpacity": "SearchTypeFocusUnderlineOpacity", + "SearchTypeFocusUnderlineOpacityProperty": "SearchTypeFocusUnderlineOpacityProperty", + "SearchTypeFocusUnderlineRippleOpacity": "SearchTypeFocusUnderlineRippleOpacity", + "SearchTypeFocusUnderlineRippleOpacityProperty": "SearchTypeFocusUnderlineRippleOpacityProperty", + "SearchTypeHoverUnderlineColor": "SearchTypeHoverUnderlineColor", + "SearchTypeHoverUnderlineColorProperty": "SearchTypeHoverUnderlineColorProperty", + "SearchTypeHoverUnderlineOpacity": "SearchTypeHoverUnderlineOpacity", + "SearchTypeHoverUnderlineOpacityProperty": "SearchTypeHoverUnderlineOpacityProperty", + "SearchTypeHoverUnderlineWidth": "SearchTypeHoverUnderlineWidth", + "SearchTypeHoverUnderlineWidthProperty": "SearchTypeHoverUnderlineWidthProperty", + "SearchTypeUnderlineColor": "SearchTypeUnderlineColor", + "SearchTypeUnderlineColorProperty": "SearchTypeUnderlineColorProperty", + "SearchTypeUnderlineOpacity": "SearchTypeUnderlineOpacity", + "SearchTypeUnderlineOpacityProperty": "SearchTypeUnderlineOpacityProperty", + "SearchTypeUnderlineRippleColor": "SearchTypeUnderlineRippleColor", + "SearchTypeUnderlineRippleColorProperty": "SearchTypeUnderlineRippleColorProperty", + "SearchTypeUnderlineRippleOpacity": "SearchTypeUnderlineRippleOpacity", + "SearchTypeUnderlineRippleOpacityProperty": "SearchTypeUnderlineRippleOpacityProperty", + "SearchTypeUnderlineRippleWidth": "SearchTypeUnderlineRippleWidth", + "SearchTypeUnderlineRippleWidthProperty": "SearchTypeUnderlineRippleWidthProperty", + "SearchTypeUnderlineWidth": "SearchTypeUnderlineWidth", + "SearchTypeUnderlineWidthProperty": "SearchTypeUnderlineWidthProperty", + "UnderlineColor": "UnderlineColor", + "UnderlineColorProperty": "UnderlineColorProperty", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineOpacityProperty": "UnderlineOpacityProperty", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleColorProperty": "UnderlineRippleColorProperty", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleOpacityProperty": "UnderlineRippleOpacityProperty", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineRippleWidthProperty": "UnderlineRippleWidthProperty", + "UnderlineWidth": "UnderlineWidth", + "UnderlineWidthProperty": "UnderlineWidthProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamInputGroupItem": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamInputGroupItem", + "k": "class", + "s": "classes", + "m": { + "Name": "Name", + "NameProperty": "NameProperty", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamLabel": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamLabel", + "k": "class", + "s": "classes", + "m": { + "XamLabel()": "XamLabel()", + "XamLabel": "XamLabel()", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualHighlightTextColor": "ActualHighlightTextColor", + "ActualHighlightTextColorProperty": "ActualHighlightTextColorProperty", + "ActualHoverHighlightTextColor": "ActualHoverHighlightTextColor", + "ActualHoverHighlightTextColorProperty": "ActualHoverHighlightTextColorProperty", + "ActualHoverTextColor": "ActualHoverTextColor", + "ActualHoverTextColorProperty": "ActualHoverTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HighlightTextColor": "HighlightTextColor", + "HighlightTextColorProperty": "HighlightTextColorProperty", + "HoverHighlightTextColor": "HoverHighlightTextColor", + "HoverHighlightTextColorProperty": "HoverHighlightTextColorProperty", + "HoverTextColor": "HoverTextColor", + "HoverTextColorProperty": "HoverTextColorProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "Text": "Text", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TextProperty": "TextProperty", + "Value": "Value", + "ValueProperty": "ValueProperty" + } + } + ], + "XamLinearGauge": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/XamLinearGauge", + "k": "class", + "s": "classes", + "m": { + "XamLinearGauge()": "XamLinearGauge()", + "XamLinearGauge": "XamLinearGauge()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueDisplayModeProperty": "ActualHighlightValueDisplayModeProperty", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualHighlightValueOpacityProperty": "ActualHighlightValueOpacityProperty", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Animating": "Animating", + "AnimatingProperty": "AnimatingProperty", + "BackingBrush": "BackingBrush", + "BackingBrushProperty": "BackingBrushProperty", + "BackingInnerExtent": "BackingInnerExtent", + "BackingInnerExtentProperty": "BackingInnerExtentProperty", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOuterExtentProperty": "BackingOuterExtentProperty", + "BackingOutline": "BackingOutline", + "BackingOutlineProperty": "BackingOutlineProperty", + "BackingStrokeThickness": "BackingStrokeThickness", + "BackingStrokeThicknessProperty": "BackingStrokeThicknessProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontBrush": "FontBrush", + "FontBrushProperty": "FontBrushProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetValueForPoint(Point)": "GetValueForPoint(Point)", + "GetValueForPoint": "GetValueForPoint(Point)", + "HighlightNeedleContainsPoint(Point)": "HighlightNeedleContainsPoint(Point)", + "HighlightNeedleContainsPoint": "HighlightNeedleContainsPoint(Point)", + "HighlightNeedleContainsPoint(Point, bool)": "HighlightNeedleContainsPoint(Point, bool)", + "HighlightValue": "HighlightValue", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueDisplayModeProperty": "HighlightValueDisplayModeProperty", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightValueOpacityProperty": "HighlightValueOpacityProperty", + "HighlightValueProperty": "HighlightValueProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "IsHighlightNeedleDraggingEnabled": "IsHighlightNeedleDraggingEnabled", + "IsHighlightNeedleDraggingEnabledProperty": "IsHighlightNeedleDraggingEnabledProperty", + "IsNeedleDraggingEnabled": "IsNeedleDraggingEnabled", + "IsNeedleDraggingEnabledProperty": "IsNeedleDraggingEnabledProperty", + "IsScaleInverted": "IsScaleInverted", + "IsScaleInvertedProperty": "IsScaleInvertedProperty", + "LabelExtent": "LabelExtent", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInterval": "LabelInterval", + "LabelIntervalProperty": "LabelIntervalProperty", + "LabelsPostInitial": "LabelsPostInitial", + "LabelsPostInitialProperty": "LabelsPostInitialProperty", + "LabelsPreTerminal": "LabelsPreTerminal", + "LabelsPreTerminalProperty": "LabelsPreTerminalProperty", + "LabelsVisible": "LabelsVisible", + "LabelsVisibleProperty": "LabelsVisibleProperty", + "MaximumValue": "MaximumValue", + "MaximumValueProperty": "MaximumValueProperty", + "MergeViewports": "MergeViewports", + "MergeViewportsProperty": "MergeViewportsProperty", + "MinimumValue": "MinimumValue", + "MinimumValueProperty": "MinimumValueProperty", + "MinorTickBrush": "MinorTickBrush", + "MinorTickBrushProperty": "MinorTickBrushProperty", + "MinorTickCount": "MinorTickCount", + "MinorTickCountProperty": "MinorTickCountProperty", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickEndExtentProperty": "MinorTickEndExtentProperty", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStartExtentProperty": "MinorTickStartExtentProperty", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "MinorTickStrokeThicknessProperty": "MinorTickStrokeThicknessProperty", + "NeedleBreadth": "NeedleBreadth", + "NeedleBreadthProperty": "NeedleBreadthProperty", + "NeedleBrush": "NeedleBrush", + "NeedleBrushProperty": "NeedleBrushProperty", + "NeedleContainsPoint(Point)": "NeedleContainsPoint(Point)", + "NeedleContainsPoint": "NeedleContainsPoint(Point)", + "NeedleContainsPoint(Point, bool)": "NeedleContainsPoint(Point, bool)", + "NeedleInnerBaseWidth": "NeedleInnerBaseWidth", + "NeedleInnerBaseWidthProperty": "NeedleInnerBaseWidthProperty", + "NeedleInnerExtent": "NeedleInnerExtent", + "NeedleInnerExtentProperty": "NeedleInnerExtentProperty", + "NeedleInnerPointExtent": "NeedleInnerPointExtent", + "NeedleInnerPointExtentProperty": "NeedleInnerPointExtentProperty", + "NeedleInnerPointWidth": "NeedleInnerPointWidth", + "NeedleInnerPointWidthProperty": "NeedleInnerPointWidthProperty", + "NeedleName": "NeedleName", + "NeedleNameProperty": "NeedleNameProperty", + "NeedleOuterBaseWidth": "NeedleOuterBaseWidth", + "NeedleOuterBaseWidthProperty": "NeedleOuterBaseWidthProperty", + "NeedleOuterExtent": "NeedleOuterExtent", + "NeedleOuterExtentProperty": "NeedleOuterExtentProperty", + "NeedleOuterPointExtent": "NeedleOuterPointExtent", + "NeedleOuterPointExtentProperty": "NeedleOuterPointExtentProperty", + "NeedleOuterPointWidth": "NeedleOuterPointWidth", + "NeedleOuterPointWidthProperty": "NeedleOuterPointWidthProperty", + "NeedleOutline": "NeedleOutline", + "NeedleOutlineProperty": "NeedleOutlineProperty", + "NeedleShape": "NeedleShape", + "NeedleShapeProperty": "NeedleShapeProperty", + "NeedleStrokeThickness": "NeedleStrokeThickness", + "NeedleStrokeThicknessProperty": "NeedleStrokeThicknessProperty", + "OnAlignLabel(AlignLinearGraphLabelEventArgs)": "OnAlignLabel(AlignLinearGraphLabelEventArgs)", + "OnAlignLabel": "OnAlignLabel(AlignLinearGraphLabelEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFormatLabel(FormatLinearGraphLabelEventArgs)": "OnFormatLabel(FormatLinearGraphLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(FormatLinearGraphLabelEventArgs)", + "OnHighlightValueChanged(DoubleValueChangedEventArgs)": "OnHighlightValueChanged(DoubleValueChangedEventArgs)", + "OnHighlightValueChanged": "OnHighlightValueChanged(DoubleValueChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(DoubleValueChangedEventArgs)": "OnValueChanged(DoubleValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(DoubleValueChangedEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RangeBrushes": "RangeBrushes", + "RangeBrushesProperty": "RangeBrushesProperty", + "RangeInnerExtent": "RangeInnerExtent", + "RangeInnerExtentProperty": "RangeInnerExtentProperty", + "RangeOuterExtent": "RangeOuterExtent", + "RangeOuterExtentProperty": "RangeOuterExtentProperty", + "RangeOutlines": "RangeOutlines", + "RangeOutlinesProperty": "RangeOutlinesProperty", + "Ranges": "Ranges", + "ScaleBrush": "ScaleBrush", + "ScaleBrushProperty": "ScaleBrushProperty", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleEndExtentProperty": "ScaleEndExtentProperty", + "ScaleInnerExtent": "ScaleInnerExtent", + "ScaleInnerExtentProperty": "ScaleInnerExtentProperty", + "ScaleOuterExtent": "ScaleOuterExtent", + "ScaleOuterExtentProperty": "ScaleOuterExtentProperty", + "ScaleOutline": "ScaleOutline", + "ScaleOutlineProperty": "ScaleOutlineProperty", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleStartExtentProperty": "ScaleStartExtentProperty", + "ScaleStrokeThickness": "ScaleStrokeThickness", + "ScaleStrokeThicknessProperty": "ScaleStrokeThicknessProperty", + "TickBrush": "TickBrush", + "TickBrushProperty": "TickBrushProperty", + "TickEndExtent": "TickEndExtent", + "TickEndExtentProperty": "TickEndExtentProperty", + "TickStartExtent": "TickStartExtent", + "TickStartExtentProperty": "TickStartExtentProperty", + "TickStrokeThickness": "TickStrokeThickness", + "TickStrokeThicknessProperty": "TickStrokeThicknessProperty", + "TicksPostInitial": "TicksPostInitial", + "TicksPostInitialProperty": "TicksPostInitialProperty", + "TicksPreTerminal": "TicksPreTerminal", + "TicksPreTerminalProperty": "TicksPreTerminalProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionProgress": "TransitionProgress", + "TransitionProgressProperty": "TransitionProgressProperty", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamListPanel": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/XamListPanel", + "k": "class", + "s": "classes", + "m": { + "XamListPanel()": "XamListPanel()", + "XamListPanel": "XamListPanel()", + "ActivationBorder": "ActivationBorder", + "ActivationBorderBottomWidth": "ActivationBorderBottomWidth", + "ActivationBorderBottomWidthProperty": "ActivationBorderBottomWidthProperty", + "ActivationBorderLeftWidth": "ActivationBorderLeftWidth", + "ActivationBorderLeftWidthProperty": "ActivationBorderLeftWidthProperty", + "ActivationBorderProperty": "ActivationBorderProperty", + "ActivationBorderRightWidth": "ActivationBorderRightWidth", + "ActivationBorderRightWidthProperty": "ActivationBorderRightWidthProperty", + "ActivationBorderTopWidth": "ActivationBorderTopWidth", + "ActivationBorderTopWidthProperty": "ActivationBorderTopWidthProperty", + "ActivationMode": "ActivationMode", + "ActivationModeProperty": "ActivationModeProperty", + "ActiveRow": "ActiveRow", + "ActiveRowProperty": "ActiveRowProperty", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ActualPrimaryKey": "ActualPrimaryKey", + "ActualPrimaryKeyProperty": "ActualPrimaryKeyProperty", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CreateLocalDataSource(object, string[])": "CreateLocalDataSource(object, string[])", + "CreateLocalDataSource": "CreateLocalDataSource(object, string[])", + "DataIndexOfItem(object)": "DataIndexOfItem(object)", + "DataIndexOfItem": "DataIndexOfItem(object)", + "DataIndexOfPrimaryKey(object[])": "DataIndexOfPrimaryKey(object[])", + "DataIndexOfPrimaryKey": "DataIndexOfPrimaryKey(object[])", + "DeselectAllRows()": "DeselectAllRows()", + "DeselectAllRows": "DeselectAllRows()", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "GetFirstVisibleIndex()": "GetFirstVisibleIndex()", + "GetFirstVisibleIndex": "GetFirstVisibleIndex()", + "GetItemKey(string[], object)": "GetItemKey(string[], object)", + "GetItemKey": "GetItemKey(string[], object)", + "GetLastVisibleIndex()": "GetLastVisibleIndex()", + "GetLastVisibleIndex": "GetLastVisibleIndex()", + "GetRowKey(string[], int)": "GetRowKey(string[], int)", + "GetRowKey": "GetRowKey(string[], int)", + "HasUnevenSizes": "HasUnevenSizes", + "HasUnevenSizesProperty": "HasUnevenSizesProperty", + "InvalidateVisibleItems()": "InvalidateVisibleItems()", + "InvalidateVisibleItems": "InvalidateVisibleItems()", + "IsActiveRowStyleEnabled": "IsActiveRowStyleEnabled", + "IsActiveRowStyleEnabledProperty": "IsActiveRowStyleEnabledProperty", + "IsActiveRowStyleEnabledPropertyName": "IsActiveRowStyleEnabledPropertyName", + "IsCustomRowHeightEnabled": "IsCustomRowHeightEnabled", + "IsCustomRowHeightEnabledProperty": "IsCustomRowHeightEnabledProperty", + "ItemSpacing": "ItemSpacing", + "ItemSpacingProperty": "ItemSpacingProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "MoveViewportTo(int, int)": "MoveViewportTo(int, int)", + "MoveViewportTo": "MoveViewportTo(int, int)", + "NormalBackground": "NormalBackground", + "NormalBackgroundProperty": "NormalBackgroundProperty", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyOnAllSelectionChanges": "NotifyOnAllSelectionChanges", + "NotifyOnAllSelectionChangesProperty": "NotifyOnAllSelectionChangesProperty", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "OnActiveRowChanged(ListPanelActiveRowChangedEventArgs)": "OnActiveRowChanged(ListPanelActiveRowChangedEventArgs)", + "OnActiveRowChanged": "OnActiveRowChanged(ListPanelActiveRowChangedEventArgs)", + "OnContentRefreshed(ListPanelContentRefreshedEventArgs)": "OnContentRefreshed(ListPanelContentRefreshedEventArgs)", + "OnContentRefreshed": "OnContentRefreshed(ListPanelContentRefreshedEventArgs)", + "OnContentSizeChanged()": "OnContentSizeChanged()", + "OnContentSizeChanged": "OnContentSizeChanged()", + "OnItemClicked(ListPanelItemEventArgs)": "OnItemClicked(ListPanelItemEventArgs)", + "OnItemClicked": "OnItemClicked(ListPanelItemEventArgs)", + "OnItemHeightRequested(ListPanelTemplateHeightRequestedEventArgs)": "OnItemHeightRequested(ListPanelTemplateHeightRequestedEventArgs)", + "OnItemHeightRequested": "OnItemHeightRequested(ListPanelTemplateHeightRequestedEventArgs)", + "OnItemRebind(ListPanelContentRebindEventArgs)": "OnItemRebind(ListPanelContentRebindEventArgs)", + "OnItemRebind": "OnItemRebind(ListPanelContentRebindEventArgs)", + "OnItemRecycled(ListPanelContentRecycledEventArgs)": "OnItemRecycled(ListPanelContentRecycledEventArgs)", + "OnItemRecycled": "OnItemRecycled(ListPanelContentRecycledEventArgs)", + "OnItemWidthRequested(ListPanelTemplateWidthRequestedEventArgs)": "OnItemWidthRequested(ListPanelTemplateWidthRequestedEventArgs)", + "OnItemWidthRequested": "OnItemWidthRequested(ListPanelTemplateWidthRequestedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnRowUpdating(ListPanelTemplateItemUpdatingEventArgs)": "OnRowUpdating(ListPanelTemplateItemUpdatingEventArgs)", + "OnRowUpdating": "OnRowUpdating(ListPanelTemplateItemUpdatingEventArgs)", + "OnSelectedItemsChanged(ListPanelSelectedItemsChangedEventArgs)": "OnSelectedItemsChanged(ListPanelSelectedItemsChangedEventArgs)", + "OnSelectedItemsChanged": "OnSelectedItemsChanged(ListPanelSelectedItemsChangedEventArgs)", + "OnSelectedKeysChanged(ListPanelSelectedKeysChangedEventArgs)": "OnSelectedKeysChanged(ListPanelSelectedKeysChangedEventArgs)", + "OnSelectedKeysChanged": "OnSelectedKeysChanged(ListPanelSelectedKeysChangedEventArgs)", + "OnSelectionChanged(ListPanelSelectionChangedEventArgs)": "OnSelectionChanged(ListPanelSelectionChangedEventArgs)", + "OnSelectionChanged": "OnSelectionChanged(ListPanelSelectionChangedEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "PrimaryKey": "PrimaryKey", + "PrimaryKeyProperty": "PrimaryKeyProperty", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "SchemaIncludedProperties": "SchemaIncludedProperties", + "SchemaIncludedPropertiesProperty": "SchemaIncludedPropertiesProperty", + "ScrollToLastRowByIndex(double)": "ScrollToLastRowByIndex(double)", + "ScrollToLastRowByIndex": "ScrollToLastRowByIndex(double)", + "ScrollToRowByIndex(double)": "ScrollToRowByIndex(double)", + "ScrollToRowByIndex": "ScrollToRowByIndex(double)", + "ScrollbarBackground": "ScrollbarBackground", + "ScrollbarBackgroundProperty": "ScrollbarBackgroundProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SelectAllRows()": "SelectAllRows()", + "SelectAllRows": "SelectAllRows()", + "SelectedBackground": "SelectedBackground", + "SelectedBackgroundProperty": "SelectedBackgroundProperty", + "SelectedItems": "SelectedItems", + "SelectedKeys": "SelectedKeys", + "SelectionBehavior": "SelectionBehavior", + "SelectionBehaviorProperty": "SelectionBehaviorProperty", + "SelectionMode": "SelectionMode", + "SelectionModeProperty": "SelectionModeProperty", + "SetScrollbarStyle(ScrollbarStyle)": "SetScrollbarStyle(ScrollbarStyle)", + "SetScrollbarStyle": "SetScrollbarStyle(ScrollbarStyle)", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamMultiColumnComboBox": [ + { + "p": "Infragistics.WinUI.DataGrid", + "u": "/api/winui/Infragistics.WinUI.DataGrid/latest/classes/XamMultiColumnComboBox", + "k": "class", + "s": "classes", + "m": { + "XamMultiColumnComboBox()": "XamMultiColumnComboBox()", + "XamMultiColumnComboBox": "XamMultiColumnComboBox()", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualBaseTheme": "ActualBaseTheme", + "ActualBaseThemeProperty": "ActualBaseThemeProperty", + "ActualBorderColor": "ActualBorderColor", + "ActualBorderColorProperty": "ActualBorderColorProperty", + "ActualBorderWidth": "ActualBorderWidth", + "ActualBorderWidthProperty": "ActualBorderWidthProperty", + "ActualContentPaddingBottom": "ActualContentPaddingBottom", + "ActualContentPaddingBottomProperty": "ActualContentPaddingBottomProperty", + "ActualContentPaddingLeft": "ActualContentPaddingLeft", + "ActualContentPaddingLeftProperty": "ActualContentPaddingLeftProperty", + "ActualContentPaddingRight": "ActualContentPaddingRight", + "ActualContentPaddingRightProperty": "ActualContentPaddingRightProperty", + "ActualContentPaddingTop": "ActualContentPaddingTop", + "ActualContentPaddingTopProperty": "ActualContentPaddingTopProperty", + "ActualCornerRadiusBottomLeft": "ActualCornerRadiusBottomLeft", + "ActualCornerRadiusBottomLeftProperty": "ActualCornerRadiusBottomLeftProperty", + "ActualCornerRadiusBottomRight": "ActualCornerRadiusBottomRight", + "ActualCornerRadiusBottomRightProperty": "ActualCornerRadiusBottomRightProperty", + "ActualCornerRadiusTopLeft": "ActualCornerRadiusTopLeft", + "ActualCornerRadiusTopLeftProperty": "ActualCornerRadiusTopLeftProperty", + "ActualCornerRadiusTopRight": "ActualCornerRadiusTopRight", + "ActualCornerRadiusTopRightProperty": "ActualCornerRadiusTopRightProperty", + "ActualDataSource": "ActualDataSource", + "ActualDataSourceProperty": "ActualDataSourceProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualFocusBorderColor": "ActualFocusBorderColor", + "ActualFocusBorderColorProperty": "ActualFocusBorderColorProperty", + "ActualFocusBorderWidth": "ActualFocusBorderWidth", + "ActualFocusBorderWidthProperty": "ActualFocusBorderWidthProperty", + "ActualFocusUnderlineColor": "ActualFocusUnderlineColor", + "ActualFocusUnderlineColorProperty": "ActualFocusUnderlineColorProperty", + "ActualFocusUnderlineOpacity": "ActualFocusUnderlineOpacity", + "ActualFocusUnderlineOpacityProperty": "ActualFocusUnderlineOpacityProperty", + "ActualFocusUnderlineRippleOpacity": "ActualFocusUnderlineRippleOpacity", + "ActualFocusUnderlineRippleOpacityProperty": "ActualFocusUnderlineRippleOpacityProperty", + "ActualHoverUnderlineColor": "ActualHoverUnderlineColor", + "ActualHoverUnderlineColorProperty": "ActualHoverUnderlineColorProperty", + "ActualHoverUnderlineOpacity": "ActualHoverUnderlineOpacity", + "ActualHoverUnderlineOpacityProperty": "ActualHoverUnderlineOpacityProperty", + "ActualHoverUnderlineWidth": "ActualHoverUnderlineWidth", + "ActualHoverUnderlineWidthProperty": "ActualHoverUnderlineWidthProperty", + "ActualLabelTextColor": "ActualLabelTextColor", + "ActualLabelTextColorProperty": "ActualLabelTextColorProperty", + "ActualLabelVisible": "ActualLabelVisible", + "ActualLabelVisibleProperty": "ActualLabelVisibleProperty", + "ActualNoMatchesFoundLabel": "ActualNoMatchesFoundLabel", + "ActualNoMatchesFoundLabelBackgroundColor": "ActualNoMatchesFoundLabelBackgroundColor", + "ActualNoMatchesFoundLabelBackgroundColorProperty": "ActualNoMatchesFoundLabelBackgroundColorProperty", + "ActualNoMatchesFoundLabelProperty": "ActualNoMatchesFoundLabelProperty", + "ActualNoMatchesFoundLabelTextColor": "ActualNoMatchesFoundLabelTextColor", + "ActualNoMatchesFoundLabelTextColorProperty": "ActualNoMatchesFoundLabelTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualUnderlineColor": "ActualUnderlineColor", + "ActualUnderlineColorProperty": "ActualUnderlineColorProperty", + "ActualUnderlineOpacity": "ActualUnderlineOpacity", + "ActualUnderlineOpacityProperty": "ActualUnderlineOpacityProperty", + "ActualUnderlineRippleColor": "ActualUnderlineRippleColor", + "ActualUnderlineRippleColorProperty": "ActualUnderlineRippleColorProperty", + "ActualUnderlineRippleOpacity": "ActualUnderlineRippleOpacity", + "ActualUnderlineRippleOpacityProperty": "ActualUnderlineRippleOpacityProperty", + "ActualUnderlineRippleWidth": "ActualUnderlineRippleWidth", + "ActualUnderlineRippleWidthProperty": "ActualUnderlineRippleWidthProperty", + "ActualUnderlineWidth": "ActualUnderlineWidth", + "ActualUnderlineWidthProperty": "ActualUnderlineWidthProperty", + "ActualValueField": "ActualValueField", + "ActualValueFieldProperty": "ActualValueFieldProperty", + "AllowFilter": "AllowFilter", + "AllowFilterProperty": "AllowFilterProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "BorderColor": "BorderColor", + "BorderColorProperty": "BorderColorProperty", + "BorderWidth": "BorderWidth", + "BorderWidthProperty": "BorderWidthProperty", + "CloseUp()": "CloseUp()", + "CloseUp": "CloseUp()", + "ColumnHeadersVisible": "ColumnHeadersVisible", + "ColumnHeadersVisibleProperty": "ColumnHeadersVisibleProperty", + "ContentPaddingBottom": "ContentPaddingBottom", + "ContentPaddingBottomProperty": "ContentPaddingBottomProperty", + "ContentPaddingLeft": "ContentPaddingLeft", + "ContentPaddingLeftProperty": "ContentPaddingLeftProperty", + "ContentPaddingRight": "ContentPaddingRight", + "ContentPaddingRightProperty": "ContentPaddingRightProperty", + "ContentPaddingTop": "ContentPaddingTop", + "ContentPaddingTopProperty": "ContentPaddingTopProperty", + "CornerRadiusBottomLeft": "CornerRadiusBottomLeft", + "CornerRadiusBottomLeftProperty": "CornerRadiusBottomLeftProperty", + "CornerRadiusBottomRight": "CornerRadiusBottomRight", + "CornerRadiusBottomRightProperty": "CornerRadiusBottomRightProperty", + "CornerRadiusTopLeft": "CornerRadiusTopLeft", + "CornerRadiusTopLeftProperty": "CornerRadiusTopLeftProperty", + "CornerRadiusTopRight": "CornerRadiusTopRight", + "CornerRadiusTopRightProperty": "CornerRadiusTopRightProperty", + "DataSourceDesiredProperties": "DataSourceDesiredProperties", + "DataSourceDesiredPropertiesProperty": "DataSourceDesiredPropertiesProperty", + "DefaultColumnWidth": "DefaultColumnWidth", + "DefaultColumnWidthProperty": "DefaultColumnWidthProperty", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DropDown()": "DropDown()", + "DropDown": "DropDown()", + "DropDownButtonVisible": "DropDownButtonVisible", + "DropDownButtonVisibleProperty": "DropDownButtonVisibleProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "Fields": "Fields", + "FieldsProperty": "FieldsProperty", + "FocusBorderColor": "FocusBorderColor", + "FocusBorderColorProperty": "FocusBorderColorProperty", + "FocusBorderWidth": "FocusBorderWidth", + "FocusBorderWidthProperty": "FocusBorderWidthProperty", + "FocusUnderlineColor": "FocusUnderlineColor", + "FocusUnderlineColorProperty": "FocusUnderlineColorProperty", + "FocusUnderlineOpacity": "FocusUnderlineOpacity", + "FocusUnderlineOpacityProperty": "FocusUnderlineOpacityProperty", + "FocusUnderlineRippleOpacity": "FocusUnderlineRippleOpacity", + "FocusUnderlineRippleOpacityProperty": "FocusUnderlineRippleOpacityProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HoverUnderlineColor": "HoverUnderlineColor", + "HoverUnderlineColorProperty": "HoverUnderlineColorProperty", + "HoverUnderlineOpacity": "HoverUnderlineOpacity", + "HoverUnderlineOpacityProperty": "HoverUnderlineOpacityProperty", + "HoverUnderlineWidth": "HoverUnderlineWidth", + "HoverUnderlineWidthProperty": "HoverUnderlineWidthProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "Label": "Label", + "LabelFontFamily": "LabelFontFamily", + "LabelFontFamilyProperty": "LabelFontFamilyProperty", + "LabelFontSize": "LabelFontSize", + "LabelFontSizeProperty": "LabelFontSizeProperty", + "LabelFontStyle": "LabelFontStyle", + "LabelFontStyleProperty": "LabelFontStyleProperty", + "LabelFontWeight": "LabelFontWeight", + "LabelFontWeightProperty": "LabelFontWeightProperty", + "LabelProperty": "LabelProperty", + "LabelTextColor": "LabelTextColor", + "LabelTextColorProperty": "LabelTextColorProperty", + "NoMatchesFoundLabel": "NoMatchesFoundLabel", + "NoMatchesFoundLabelBackgroundColor": "NoMatchesFoundLabelBackgroundColor", + "NoMatchesFoundLabelBackgroundColorProperty": "NoMatchesFoundLabelBackgroundColorProperty", + "NoMatchesFoundLabelFontFamily": "NoMatchesFoundLabelFontFamily", + "NoMatchesFoundLabelFontFamilyProperty": "NoMatchesFoundLabelFontFamilyProperty", + "NoMatchesFoundLabelFontSize": "NoMatchesFoundLabelFontSize", + "NoMatchesFoundLabelFontSizeProperty": "NoMatchesFoundLabelFontSizeProperty", + "NoMatchesFoundLabelFontStyle": "NoMatchesFoundLabelFontStyle", + "NoMatchesFoundLabelFontStyleProperty": "NoMatchesFoundLabelFontStyleProperty", + "NoMatchesFoundLabelFontWeight": "NoMatchesFoundLabelFontWeight", + "NoMatchesFoundLabelFontWeightProperty": "NoMatchesFoundLabelFontWeightProperty", + "NoMatchesFoundLabelProperty": "NoMatchesFoundLabelProperty", + "NoMatchesFoundLabelTextColor": "NoMatchesFoundLabelTextColor", + "NoMatchesFoundLabelTextColorProperty": "NoMatchesFoundLabelTextColorProperty", + "OnApplyTemplate()": "OnApplyTemplate()", + "OnApplyTemplate": "OnApplyTemplate()", + "OnChange(InputChangeEventArgs)": "OnChange(InputChangeEventArgs)", + "OnChange": "OnChange(InputChangeEventArgs)", + "OnChanging(InputChangeEventArgs)": "OnChanging(InputChangeEventArgs)", + "OnChanging": "OnChanging(InputChangeEventArgs)", + "OnGotFocus(GotFocusEventArgs)": "OnGotFocus(GotFocusEventArgs)", + "OnGotFocus": "OnGotFocus(GotFocusEventArgs)", + "OnKeyDown(KeyEventArgs)": "OnKeyDown(KeyEventArgs)", + "OnKeyDown": "OnKeyDown(KeyEventArgs)", + "OnLostFocus(LostFocusEventArgs)": "OnLostFocus(LostFocusEventArgs)", + "OnLostFocus": "OnLostFocus(LostFocusEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSelectedValueChanged(MultiColumnComboBoxValueChangedEventArgs)": "OnSelectedValueChanged(MultiColumnComboBoxValueChangedEventArgs)", + "OnSelectedValueChanged": "OnSelectedValueChanged(MultiColumnComboBoxValueChangedEventArgs)", + "OnTextValueChanged(MultiColumnComboBoxTextChangedEventArgs)": "OnTextValueChanged(MultiColumnComboBoxTextChangedEventArgs)", + "OnTextValueChanged": "OnTextValueChanged(MultiColumnComboBoxTextChangedEventArgs)", + "Placeholder": "Placeholder", + "PlaceholderProperty": "PlaceholderProperty", + "RowSeparatorsVisible": "RowSeparatorsVisible", + "RowSeparatorsVisibleProperty": "RowSeparatorsVisibleProperty", + "Select()": "Select()", + "Select": "Select()", + "ShowClearButton": "ShowClearButton", + "ShowClearButtonProperty": "ShowClearButtonProperty", + "SortMode": "SortMode", + "SortModeProperty": "SortModeProperty", + "Text": "Text", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TextField": "TextField", + "TextFieldProperty": "TextFieldProperty", + "TextProperty": "TextProperty", + "UnderlineColor": "UnderlineColor", + "UnderlineColorProperty": "UnderlineColorProperty", + "UnderlineOpacity": "UnderlineOpacity", + "UnderlineOpacityProperty": "UnderlineOpacityProperty", + "UnderlineRippleColor": "UnderlineRippleColor", + "UnderlineRippleColorProperty": "UnderlineRippleColorProperty", + "UnderlineRippleOpacity": "UnderlineRippleOpacity", + "UnderlineRippleOpacityProperty": "UnderlineRippleOpacityProperty", + "UnderlineRippleWidth": "UnderlineRippleWidth", + "UnderlineRippleWidthProperty": "UnderlineRippleWidthProperty", + "UnderlineWidth": "UnderlineWidth", + "UnderlineWidthProperty": "UnderlineWidthProperty", + "Value": "Value", + "ValueField": "ValueField", + "ValueFieldProperty": "ValueFieldProperty", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamMultiSlider": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamMultiSlider", + "k": "class", + "s": "classes", + "m": { + "XamMultiSlider()": "XamMultiSlider()", + "XamMultiSlider": "XamMultiSlider()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "AreThumbCalloutsEnabled": "AreThumbCalloutsEnabled", + "AreThumbCalloutsEnabledProperty": "AreThumbCalloutsEnabledProperty", + "BarBrush": "BarBrush", + "BarBrushProperty": "BarBrushProperty", + "BarExtent": "BarExtent", + "BarExtentProperty": "BarExtentProperty", + "BarOutline": "BarOutline", + "BarOutlineProperty": "BarOutlineProperty", + "BarStrokeThickness": "BarStrokeThickness", + "BarStrokeThicknessProperty": "BarStrokeThicknessProperty", + "CalloutBrush": "CalloutBrush", + "CalloutBrushProperty": "CalloutBrushProperty", + "CalloutOutline": "CalloutOutline", + "CalloutOutlineProperty": "CalloutOutlineProperty", + "CalloutStrokeThickness": "CalloutStrokeThickness", + "CalloutStrokeThicknessProperty": "CalloutStrokeThicknessProperty", + "CalloutTextColor": "CalloutTextColor", + "CalloutTextColorProperty": "CalloutTextColorProperty", + "EndInset": "EndInset", + "EndInsetProperty": "EndInsetProperty", + "Flush()": "Flush()", + "Flush": "Flush()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "IsCustomBarProvided": "IsCustomBarProvided", + "IsCustomBarProvidedProperty": "IsCustomBarProvidedProperty", + "IsCustomRangeThumbProvided": "IsCustomRangeThumbProvided", + "IsCustomRangeThumbProvidedProperty": "IsCustomRangeThumbProvidedProperty", + "IsCustomShadeProvided": "IsCustomShadeProvided", + "IsCustomShadeProvidedProperty": "IsCustomShadeProvidedProperty", + "IsCustomThumbProvided": "IsCustomThumbProvided", + "IsCustomThumbProvidedProperty": "IsCustomThumbProvidedProperty", + "Max": "Max", + "MaxProperty": "MaxProperty", + "MeasureOverride(Size)": "MeasureOverride(Size)", + "MeasureOverride": "MeasureOverride(Size)", + "Min": "Min", + "MinProperty": "MinProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnResolvingToolTipValue(MultiSliderResolvingToolTipValueEventArgs)": "OnResolvingToolTipValue(MultiSliderResolvingToolTipValueEventArgs)", + "OnResolvingToolTipValue": "OnResolvingToolTipValue(MultiSliderResolvingToolTipValueEventArgs)", + "OnThumbValueChanged(MultiSliderThumbValueChangingEventArgs)": "OnThumbValueChanged(MultiSliderThumbValueChangingEventArgs)", + "OnThumbValueChanged": "OnThumbValueChanged(MultiSliderThumbValueChangingEventArgs)", + "OnThumbValueChanging(MultiSliderThumbValueChangingEventArgs)": "OnThumbValueChanging(MultiSliderThumbValueChangingEventArgs)", + "OnThumbValueChanging": "OnThumbValueChanging(MultiSliderThumbValueChangingEventArgs)", + "OnYValueChanged(MultiSliderYValueChangingEventArgs)": "OnYValueChanged(MultiSliderYValueChangingEventArgs)", + "OnYValueChanged": "OnYValueChanged(MultiSliderYValueChangingEventArgs)", + "OnYValueChanging(MultiSliderYValueChangingEventArgs)": "OnYValueChanging(MultiSliderYValueChangingEventArgs)", + "OnYValueChanging": "OnYValueChanging(MultiSliderYValueChangingEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "RangeThumbBrush": "RangeThumbBrush", + "RangeThumbBrushProperty": "RangeThumbBrushProperty", + "RangeThumbOutline": "RangeThumbOutline", + "RangeThumbOutlineProperty": "RangeThumbOutlineProperty", + "RangeThumbRidgesBrush": "RangeThumbRidgesBrush", + "RangeThumbRidgesBrushProperty": "RangeThumbRidgesBrushProperty", + "RangeThumbStrokeThickness": "RangeThumbStrokeThickness", + "RangeThumbStrokeThicknessProperty": "RangeThumbStrokeThicknessProperty", + "StartInset": "StartInset", + "StartInsetProperty": "StartInsetProperty", + "Step": "Step", + "StepProperty": "StepProperty", + "ThumbBrush": "ThumbBrush", + "ThumbBrushProperty": "ThumbBrushProperty", + "ThumbCalloutFontFamily": "ThumbCalloutFontFamily", + "ThumbCalloutFontFamilyProperty": "ThumbCalloutFontFamilyProperty", + "ThumbCalloutFontSize": "ThumbCalloutFontSize", + "ThumbCalloutFontSizeProperty": "ThumbCalloutFontSizeProperty", + "ThumbCalloutFontStyle": "ThumbCalloutFontStyle", + "ThumbCalloutFontStyleProperty": "ThumbCalloutFontStyleProperty", + "ThumbCalloutFontWeight": "ThumbCalloutFontWeight", + "ThumbCalloutFontWeightProperty": "ThumbCalloutFontWeightProperty", + "ThumbHeight": "ThumbHeight", + "ThumbHeightProperty": "ThumbHeightProperty", + "ThumbOutline": "ThumbOutline", + "ThumbOutlineProperty": "ThumbOutlineProperty", + "ThumbRidgesBrush": "ThumbRidgesBrush", + "ThumbRidgesBrushProperty": "ThumbRidgesBrushProperty", + "ThumbStrokeThickness": "ThumbStrokeThickness", + "ThumbStrokeThicknessProperty": "ThumbStrokeThicknessProperty", + "ThumbWidth": "ThumbWidth", + "ThumbWidthProperty": "ThumbWidthProperty", + "Thumbs": "Thumbs", + "TrackDirty()": "TrackDirty()", + "TrackDirty": "TrackDirty()", + "TrackEndInset": "TrackEndInset", + "TrackEndInsetProperty": "TrackEndInsetProperty", + "TrackStartInset": "TrackStartInset", + "TrackStartInsetProperty": "TrackStartInsetProperty", + "WindowRect": "WindowRect", + "WindowRectProperty": "WindowRectProperty", + "YMax": "YMax", + "YMaxProperty": "YMaxProperty", + "YMin": "YMin", + "YMinProperty": "YMinProperty", + "YStep": "YStep", + "YStepProperty": "YStepProperty", + "YTrackEndInset": "YTrackEndInset", + "YTrackEndInsetProperty": "YTrackEndInsetProperty", + "YTrackStartInset": "YTrackStartInset", + "YTrackStartInsetProperty": "YTrackStartInsetProperty", + "YValue": "YValue", + "YValueProperty": "YValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamPieChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/XamPieChart", + "k": "class", + "s": "classes", + "m": { + "XamPieChart()": "XamPieChart()", + "XamPieChart": "XamPieChart()", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)" + } + } + ], + "XamPopup": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/XamPopup", + "k": "class", + "s": "classes", + "m": { + "XamPopup()": "XamPopup()", + "XamPopup": "XamPopup()", + "ActualAmbientShadowColor": "ActualAmbientShadowColor", + "ActualAmbientShadowColorProperty": "ActualAmbientShadowColorProperty", + "ActualElevation": "ActualElevation", + "ActualElevationProperty": "ActualElevationProperty", + "ActualPenumbraShadowColor": "ActualPenumbraShadowColor", + "ActualPenumbraShadowColorProperty": "ActualPenumbraShadowColorProperty", + "ActualUmbraShadowColor": "ActualUmbraShadowColor", + "ActualUmbraShadowColorProperty": "ActualUmbraShadowColorProperty", + "AnimationDuration": "AnimationDuration", + "AnimationDurationProperty": "AnimationDurationProperty", + "AnimationEnabled": "AnimationEnabled", + "AnimationEnabledProperty": "AnimationEnabledProperty", + "AnimationType": "AnimationType", + "AnimationTypeProperty": "AnimationTypeProperty", + "Background": "Background", + "BackgroundProperty": "BackgroundProperty", + "Close()": "Close()", + "Close": "Close()", + "CornerRadius": "CornerRadius", + "CornerRadiusProperty": "CornerRadiusProperty", + "DisableHitTestDuringAnimation": "DisableHitTestDuringAnimation", + "DisableHitTestDuringAnimationProperty": "DisableHitTestDuringAnimationProperty", + "Elevation": "Elevation", + "ElevationProperty": "ElevationProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IsClosing": "IsClosing", + "IsClosingProperty": "IsClosingProperty", + "IsFocusable": "IsFocusable", + "IsFocusableProperty": "IsFocusableProperty", + "IsHitTestVisible": "IsHitTestVisible", + "IsHitTestVisibleProperty": "IsHitTestVisibleProperty", + "IsPointerEnabled": "IsPointerEnabled", + "IsPointerEnabledProperty": "IsPointerEnabledProperty", + "IsShowing": "IsShowing", + "IsShowingProperty": "IsShowingProperty", + "IsShown": "IsShown", + "IsShownProperty": "IsShownProperty", + "OnMeasuringContentSize(PopupMeasuringContentSizeEventArgs)": "OnMeasuringContentSize(PopupMeasuringContentSizeEventArgs)", + "OnMeasuringContentSize": "OnMeasuringContentSize(PopupMeasuringContentSizeEventArgs)", + "OnOnClosed(OnClosedEventArgs)": "OnOnClosed(OnClosedEventArgs)", + "OnOnClosed": "OnOnClosed(OnClosedEventArgs)", + "OnOnPopup(OnPopupEventArgs)": "OnOnPopup(OnPopupEventArgs)", + "OnOnPopup": "OnOnPopup(OnPopupEventArgs)", + "OnPopupGotFocus(FocusEventArgs)": "OnPopupGotFocus(FocusEventArgs)", + "OnPopupGotFocus": "OnPopupGotFocus(FocusEventArgs)", + "OnPopupLostFocus(FocusEventArgs)": "OnPopupLostFocus(FocusEventArgs)", + "OnPopupLostFocus": "OnPopupLostFocus(FocusEventArgs)", + "OnPopupMouseEnter(MouseEventArgs)": "OnPopupMouseEnter(MouseEventArgs)", + "OnPopupMouseEnter": "OnPopupMouseEnter(MouseEventArgs)", + "OnPopupMouseLeave(MouseEventArgs)": "OnPopupMouseLeave(MouseEventArgs)", + "OnPopupMouseLeave": "OnPopupMouseLeave(MouseEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "PointerBackground": "PointerBackground", + "PointerBackgroundProperty": "PointerBackgroundProperty", + "PointerPosition": "PointerPosition", + "PointerPositionProperty": "PointerPositionProperty", + "PointerSize": "PointerSize", + "PointerSizeProperty": "PointerSizeProperty", + "ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)": "ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)", + "ShowRelativeToExclusionRect": "ShowRelativeToExclusionRect(Rect, PopupDirection, PopupAlignment)", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamPrefix": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamPrefix", + "k": "class", + "s": "classes", + "m": { + "XamPrefix()": "XamPrefix()", + "XamPrefix": "XamPrefix()", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)" + } + } + ], + "XamPropertyEditorPanel": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/XamPropertyEditorPanel", + "k": "class", + "s": "classes", + "m": { + "XamPropertyEditorPanel()": "XamPropertyEditorPanel()", + "XamPropertyEditorPanel": "XamPropertyEditorPanel()", + "ActualDescriptionContext": "ActualDescriptionContext", + "ActualDescriptionContextProperty": "ActualDescriptionContextProperty", + "ActualProperties": "ActualProperties", + "ActualPropertiesProperty": "ActualPropertiesProperty", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "ComponentRenderer": "ComponentRenderer", + "ComponentRendererProperty": "ComponentRendererProperty", + "DescriptionContext": "DescriptionContext", + "DescriptionContextProperty": "DescriptionContextProperty", + "DescriptionType": "DescriptionType", + "DescriptionTypeProperty": "DescriptionTypeProperty", + "IsHorizontal": "IsHorizontal", + "IsHorizontalProperty": "IsHorizontalProperty", + "IsIndirectModeEnabled": "IsIndirectModeEnabled", + "IsIndirectModeEnabledProperty": "IsIndirectModeEnabledProperty", + "IsWrappingEnabled": "IsWrappingEnabled", + "IsWrappingEnabledProperty": "IsWrappingEnabledProperty", + "MeasureOverride(Size)": "MeasureOverride(Size)", + "MeasureOverride": "MeasureOverride(Size)", + "NotifyClearItems()": "NotifyClearItems()", + "NotifyClearItems": "NotifyClearItems()", + "NotifyInsertItem(int, object)": "NotifyInsertItem(int, object)", + "NotifyInsertItem": "NotifyInsertItem(int, object)", + "NotifyRemoveItem(int, object)": "NotifyRemoveItem(int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(int, object)", + "NotifySetItem(int, object, object)": "NotifySetItem(int, object, object)", + "NotifySetItem": "NotifySetItem(int, object, object)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Properties": "Properties", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "Target": "Target", + "TargetProperty": "TargetProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "UpdateMode": "UpdateMode", + "UpdateModeProperty": "UpdateModeProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamRadialGauge": [ + { + "p": "Infragistics.WinUI.Gauges", + "u": "/api/winui/Infragistics.WinUI.Gauges/latest/classes/XamRadialGauge", + "k": "class", + "s": "classes", + "m": { + "XamRadialGauge()": "XamRadialGauge()", + "XamRadialGauge": "XamRadialGauge()", + "ActualHighlightValueDisplayMode": "ActualHighlightValueDisplayMode", + "ActualHighlightValueDisplayModeProperty": "ActualHighlightValueDisplayModeProperty", + "ActualHighlightValueOpacity": "ActualHighlightValueOpacity", + "ActualHighlightValueOpacityProperty": "ActualHighlightValueOpacityProperty", + "ActualMaximumValue": "ActualMaximumValue", + "ActualMaximumValueProperty": "ActualMaximumValueProperty", + "ActualMinimumValue": "ActualMinimumValue", + "ActualMinimumValueProperty": "ActualMinimumValueProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Animating": "Animating", + "AnimatingProperty": "AnimatingProperty", + "BackingBrush": "BackingBrush", + "BackingBrushProperty": "BackingBrushProperty", + "BackingCornerRadius": "BackingCornerRadius", + "BackingCornerRadiusDefaultValue": "BackingCornerRadiusDefaultValue", + "BackingCornerRadiusProperty": "BackingCornerRadiusProperty", + "BackingInnerExtent": "BackingInnerExtent", + "BackingInnerExtentDefaultValue": "BackingInnerExtentDefaultValue", + "BackingInnerExtentProperty": "BackingInnerExtentProperty", + "BackingOuterExtent": "BackingOuterExtent", + "BackingOuterExtentDefaultValue": "BackingOuterExtentDefaultValue", + "BackingOuterExtentProperty": "BackingOuterExtentProperty", + "BackingOutline": "BackingOutline", + "BackingOutlineProperty": "BackingOutlineProperty", + "BackingOversweep": "BackingOversweep", + "BackingOversweepProperty": "BackingOversweepProperty", + "BackingShape": "BackingShape", + "BackingShapeProperty": "BackingShapeProperty", + "BackingStrokeThickness": "BackingStrokeThickness", + "BackingStrokeThicknessProperty": "BackingStrokeThicknessProperty", + "CenterX": "CenterX", + "CenterXProperty": "CenterXProperty", + "CenterY": "CenterY", + "CenterYProperty": "CenterYProperty", + "DuplicateLabelOmissionStrategy": "DuplicateLabelOmissionStrategy", + "DuplicateLabelOmissionStrategyProperty": "DuplicateLabelOmissionStrategyProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontBrush": "FontBrush", + "FontBrushProperty": "FontBrushProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "GetPointForValue(double, double)": "GetPointForValue(double, double)", + "GetPointForValue": "GetPointForValue(double, double)", + "GetValueForPoint(Point)": "GetValueForPoint(Point)", + "GetValueForPoint": "GetValueForPoint(Point)", + "HighlightLabelAngle": "HighlightLabelAngle", + "HighlightLabelAngleProperty": "HighlightLabelAngleProperty", + "HighlightLabelBrush": "HighlightLabelBrush", + "HighlightLabelBrushProperty": "HighlightLabelBrushProperty", + "HighlightLabelDisplaysValue": "HighlightLabelDisplaysValue", + "HighlightLabelDisplaysValueProperty": "HighlightLabelDisplaysValueProperty", + "HighlightLabelExtent": "HighlightLabelExtent", + "HighlightLabelExtentProperty": "HighlightLabelExtentProperty", + "HighlightLabelFontFamily": "HighlightLabelFontFamily", + "HighlightLabelFontFamilyProperty": "HighlightLabelFontFamilyProperty", + "HighlightLabelFontSize": "HighlightLabelFontSize", + "HighlightLabelFontSizeProperty": "HighlightLabelFontSizeProperty", + "HighlightLabelFontStyle": "HighlightLabelFontStyle", + "HighlightLabelFontStyleProperty": "HighlightLabelFontStyleProperty", + "HighlightLabelFontWeight": "HighlightLabelFontWeight", + "HighlightLabelFontWeightProperty": "HighlightLabelFontWeightProperty", + "HighlightLabelFormat": "HighlightLabelFormat", + "HighlightLabelFormatProperty": "HighlightLabelFormatProperty", + "HighlightLabelFormatSpecifiers": "HighlightLabelFormatSpecifiers", + "HighlightLabelFormatSpecifiersProperty": "HighlightLabelFormatSpecifiersProperty", + "HighlightLabelSnapsToNeedlePivot": "HighlightLabelSnapsToNeedlePivot", + "HighlightLabelSnapsToNeedlePivotProperty": "HighlightLabelSnapsToNeedlePivotProperty", + "HighlightLabelText": "HighlightLabelText", + "HighlightLabelTextProperty": "HighlightLabelTextProperty", + "HighlightNeedleContainsPoint(Point)": "HighlightNeedleContainsPoint(Point)", + "HighlightNeedleContainsPoint": "HighlightNeedleContainsPoint(Point)", + "HighlightNeedleContainsPoint(Point, bool)": "HighlightNeedleContainsPoint(Point, bool)", + "HighlightValue": "HighlightValue", + "HighlightValueDisplayMode": "HighlightValueDisplayMode", + "HighlightValueDisplayModeProperty": "HighlightValueDisplayModeProperty", + "HighlightValueOpacity": "HighlightValueOpacity", + "HighlightValueOpacityProperty": "HighlightValueOpacityProperty", + "HighlightValueProperty": "HighlightValueProperty", + "Interval": "Interval", + "IntervalProperty": "IntervalProperty", + "IsHighlightNeedleDraggingConstrained": "IsHighlightNeedleDraggingConstrained", + "IsHighlightNeedleDraggingConstrainedProperty": "IsHighlightNeedleDraggingConstrainedProperty", + "IsHighlightNeedleDraggingEnabled": "IsHighlightNeedleDraggingEnabled", + "IsHighlightNeedleDraggingEnabledProperty": "IsHighlightNeedleDraggingEnabledProperty", + "IsNeedleDraggingConstrained": "IsNeedleDraggingConstrained", + "IsNeedleDraggingConstrainedProperty": "IsNeedleDraggingConstrainedProperty", + "IsNeedleDraggingEnabled": "IsNeedleDraggingEnabled", + "IsNeedleDraggingEnabledProperty": "IsNeedleDraggingEnabledProperty", + "LabelExtent": "LabelExtent", + "LabelExtentDefaultValue": "LabelExtentDefaultValue", + "LabelExtentProperty": "LabelExtentProperty", + "LabelFormat": "LabelFormat", + "LabelFormatProperty": "LabelFormatProperty", + "LabelFormatSpecifiers": "LabelFormatSpecifiers", + "LabelFormatSpecifiersProperty": "LabelFormatSpecifiersProperty", + "LabelInterval": "LabelInterval", + "LabelIntervalProperty": "LabelIntervalProperty", + "MaximumValue": "MaximumValue", + "MaximumValueDefaultValue": "MaximumValueDefaultValue", + "MaximumValueProperty": "MaximumValueProperty", + "MinimumValue": "MinimumValue", + "MinimumValueDefaultValue": "MinimumValueDefaultValue", + "MinimumValueProperty": "MinimumValueProperty", + "MinorTickBrush": "MinorTickBrush", + "MinorTickBrushProperty": "MinorTickBrushProperty", + "MinorTickCount": "MinorTickCount", + "MinorTickCountProperty": "MinorTickCountProperty", + "MinorTickEndExtent": "MinorTickEndExtent", + "MinorTickEndExtentDefaultValue": "MinorTickEndExtentDefaultValue", + "MinorTickEndExtentProperty": "MinorTickEndExtentProperty", + "MinorTickStartExtent": "MinorTickStartExtent", + "MinorTickStartExtentDefaultValue": "MinorTickStartExtentDefaultValue", + "MinorTickStartExtentProperty": "MinorTickStartExtentProperty", + "MinorTickStrokeThickness": "MinorTickStrokeThickness", + "MinorTickStrokeThicknessProperty": "MinorTickStrokeThicknessProperty", + "NeedleBaseFeatureExtent": "NeedleBaseFeatureExtent", + "NeedleBaseFeatureExtentProperty": "NeedleBaseFeatureExtentProperty", + "NeedleBaseFeatureWidthRatio": "NeedleBaseFeatureWidthRatio", + "NeedleBaseFeatureWidthRatioProperty": "NeedleBaseFeatureWidthRatioProperty", + "NeedleBrush": "NeedleBrush", + "NeedleBrushProperty": "NeedleBrushProperty", + "NeedleContainsPoint(Point)": "NeedleContainsPoint(Point)", + "NeedleContainsPoint": "NeedleContainsPoint(Point)", + "NeedleContainsPoint(Point, bool)": "NeedleContainsPoint(Point, bool)", + "NeedleEndExtent": "NeedleEndExtent", + "NeedleEndExtentProperty": "NeedleEndExtentProperty", + "NeedleEndWidthRatio": "NeedleEndWidthRatio", + "NeedleEndWidthRatioProperty": "NeedleEndWidthRatioProperty", + "NeedleOutline": "NeedleOutline", + "NeedleOutlineProperty": "NeedleOutlineProperty", + "NeedlePivotBrush": "NeedlePivotBrush", + "NeedlePivotBrushProperty": "NeedlePivotBrushProperty", + "NeedlePivotInnerWidthRatio": "NeedlePivotInnerWidthRatio", + "NeedlePivotInnerWidthRatioProperty": "NeedlePivotInnerWidthRatioProperty", + "NeedlePivotOutline": "NeedlePivotOutline", + "NeedlePivotOutlineProperty": "NeedlePivotOutlineProperty", + "NeedlePivotShape": "NeedlePivotShape", + "NeedlePivotShapeProperty": "NeedlePivotShapeProperty", + "NeedlePivotStrokeThickness": "NeedlePivotStrokeThickness", + "NeedlePivotStrokeThicknessProperty": "NeedlePivotStrokeThicknessProperty", + "NeedlePivotWidthRatio": "NeedlePivotWidthRatio", + "NeedlePivotWidthRatioProperty": "NeedlePivotWidthRatioProperty", + "NeedlePointFeatureExtent": "NeedlePointFeatureExtent", + "NeedlePointFeatureExtentProperty": "NeedlePointFeatureExtentProperty", + "NeedlePointFeatureWidthRatio": "NeedlePointFeatureWidthRatio", + "NeedlePointFeatureWidthRatioProperty": "NeedlePointFeatureWidthRatioProperty", + "NeedleShape": "NeedleShape", + "NeedleShapeProperty": "NeedleShapeProperty", + "NeedleStartExtent": "NeedleStartExtent", + "NeedleStartExtentProperty": "NeedleStartExtentProperty", + "NeedleStartWidthRatio": "NeedleStartWidthRatio", + "NeedleStartWidthRatioProperty": "NeedleStartWidthRatioProperty", + "NeedleStrokeThickness": "NeedleStrokeThickness", + "NeedleStrokeThicknessProperty": "NeedleStrokeThicknessProperty", + "OnAlignHighlightLabel(AlignRadialGaugeLabelEventArgs)": "OnAlignHighlightLabel(AlignRadialGaugeLabelEventArgs)", + "OnAlignHighlightLabel": "OnAlignHighlightLabel(AlignRadialGaugeLabelEventArgs)", + "OnAlignLabel(AlignRadialGaugeLabelEventArgs)": "OnAlignLabel(AlignRadialGaugeLabelEventArgs)", + "OnAlignLabel": "OnAlignLabel(AlignRadialGaugeLabelEventArgs)", + "OnAlignSubtitle(AlignRadialGaugeLabelEventArgs)": "OnAlignSubtitle(AlignRadialGaugeLabelEventArgs)", + "OnAlignSubtitle": "OnAlignSubtitle(AlignRadialGaugeLabelEventArgs)", + "OnAlignTitle(AlignRadialGaugeLabelEventArgs)": "OnAlignTitle(AlignRadialGaugeLabelEventArgs)", + "OnAlignTitle": "OnAlignTitle(AlignRadialGaugeLabelEventArgs)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFormatHighlightLabel(FormatRadialGaugeLabelEventArgs)": "OnFormatHighlightLabel(FormatRadialGaugeLabelEventArgs)", + "OnFormatHighlightLabel": "OnFormatHighlightLabel(FormatRadialGaugeLabelEventArgs)", + "OnFormatLabel(FormatRadialGaugeLabelEventArgs)": "OnFormatLabel(FormatRadialGaugeLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(FormatRadialGaugeLabelEventArgs)", + "OnFormatSubtitle(FormatRadialGaugeLabelEventArgs)": "OnFormatSubtitle(FormatRadialGaugeLabelEventArgs)", + "OnFormatSubtitle": "OnFormatSubtitle(FormatRadialGaugeLabelEventArgs)", + "OnFormatTitle(FormatRadialGaugeLabelEventArgs)": "OnFormatTitle(FormatRadialGaugeLabelEventArgs)", + "OnFormatTitle": "OnFormatTitle(FormatRadialGaugeLabelEventArgs)", + "OnHighlightValueChanged(DoubleValueChangedEventArgs)": "OnHighlightValueChanged(DoubleValueChangedEventArgs)", + "OnHighlightValueChanged": "OnHighlightValueChanged(DoubleValueChangedEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnValueChanged(DoubleValueChangedEventArgs)": "OnValueChanged(DoubleValueChangedEventArgs)", + "OnValueChanged": "OnValueChanged(DoubleValueChangedEventArgs)", + "OpticalScalingEnabled": "OpticalScalingEnabled", + "OpticalScalingEnabledProperty": "OpticalScalingEnabledProperty", + "OpticalScalingRatio": "OpticalScalingRatio", + "OpticalScalingRatioProperty": "OpticalScalingRatioProperty", + "OpticalScalingSize": "OpticalScalingSize", + "OpticalScalingSizeProperty": "OpticalScalingSizeProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RadiusMultiplier": "RadiusMultiplier", + "RadiusMultiplierProperty": "RadiusMultiplierProperty", + "RangeBrushes": "RangeBrushes", + "RangeBrushesProperty": "RangeBrushesProperty", + "RangeOutlines": "RangeOutlines", + "RangeOutlinesProperty": "RangeOutlinesProperty", + "Ranges": "Ranges", + "ScaleBrush": "ScaleBrush", + "ScaleBrushProperty": "ScaleBrushProperty", + "ScaleEndAngle": "ScaleEndAngle", + "ScaleEndAngleProperty": "ScaleEndAngleProperty", + "ScaleEndExtent": "ScaleEndExtent", + "ScaleEndExtentDefaultValue": "ScaleEndExtentDefaultValue", + "ScaleEndExtentProperty": "ScaleEndExtentProperty", + "ScaleOversweep": "ScaleOversweep", + "ScaleOversweepProperty": "ScaleOversweepProperty", + "ScaleOversweepShape": "ScaleOversweepShape", + "ScaleOversweepShapeProperty": "ScaleOversweepShapeProperty", + "ScaleStartAngle": "ScaleStartAngle", + "ScaleStartAngleProperty": "ScaleStartAngleProperty", + "ScaleStartExtent": "ScaleStartExtent", + "ScaleStartExtentDefaultValue": "ScaleStartExtentDefaultValue", + "ScaleStartExtentProperty": "ScaleStartExtentProperty", + "ScaleSweepDirection": "ScaleSweepDirection", + "ScaleSweepDirectionProperty": "ScaleSweepDirectionProperty", + "ScaleValue(double)": "ScaleValue(double)", + "ScaleValue": "ScaleValue(double)", + "SubtitleAngle": "SubtitleAngle", + "SubtitleAngleProperty": "SubtitleAngleProperty", + "SubtitleBrush": "SubtitleBrush", + "SubtitleBrushProperty": "SubtitleBrushProperty", + "SubtitleDisplaysValue": "SubtitleDisplaysValue", + "SubtitleDisplaysValueProperty": "SubtitleDisplaysValueProperty", + "SubtitleExtent": "SubtitleExtent", + "SubtitleExtentProperty": "SubtitleExtentProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleFormat": "SubtitleFormat", + "SubtitleFormatProperty": "SubtitleFormatProperty", + "SubtitleFormatSpecifiers": "SubtitleFormatSpecifiers", + "SubtitleFormatSpecifiersProperty": "SubtitleFormatSpecifiersProperty", + "SubtitleSnapsToNeedlePivot": "SubtitleSnapsToNeedlePivot", + "SubtitleSnapsToNeedlePivotProperty": "SubtitleSnapsToNeedlePivotProperty", + "SubtitleText": "SubtitleText", + "SubtitleTextProperty": "SubtitleTextProperty", + "TickBrush": "TickBrush", + "TickBrushProperty": "TickBrushProperty", + "TickEndExtent": "TickEndExtent", + "TickEndExtentDefaultValue": "TickEndExtentDefaultValue", + "TickEndExtentProperty": "TickEndExtentProperty", + "TickStartExtent": "TickStartExtent", + "TickStartExtentDefaultValue": "TickStartExtentDefaultValue", + "TickStartExtentProperty": "TickStartExtentProperty", + "TickStrokeThickness": "TickStrokeThickness", + "TickStrokeThicknessProperty": "TickStrokeThicknessProperty", + "TitleAngle": "TitleAngle", + "TitleAngleProperty": "TitleAngleProperty", + "TitleBrush": "TitleBrush", + "TitleBrushProperty": "TitleBrushProperty", + "TitleDisplaysValue": "TitleDisplaysValue", + "TitleDisplaysValueProperty": "TitleDisplaysValueProperty", + "TitleExtent": "TitleExtent", + "TitleExtentProperty": "TitleExtentProperty", + "TitleFontFamily": "TitleFontFamily", + "TitleFontFamilyProperty": "TitleFontFamilyProperty", + "TitleFontSize": "TitleFontSize", + "TitleFontSizeProperty": "TitleFontSizeProperty", + "TitleFontStyle": "TitleFontStyle", + "TitleFontStyleProperty": "TitleFontStyleProperty", + "TitleFontWeight": "TitleFontWeight", + "TitleFontWeightProperty": "TitleFontWeightProperty", + "TitleFormat": "TitleFormat", + "TitleFormatProperty": "TitleFormatProperty", + "TitleFormatSpecifiers": "TitleFormatSpecifiers", + "TitleFormatSpecifiersProperty": "TitleFormatSpecifiersProperty", + "TitleSnapsToNeedlePivot": "TitleSnapsToNeedlePivot", + "TitleSnapsToNeedlePivotProperty": "TitleSnapsToNeedlePivotProperty", + "TitleText": "TitleText", + "TitleTextProperty": "TitleTextProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "TransitionProgress": "TransitionProgress", + "TransitionProgressProperty": "TransitionProgressProperty", + "UnscaleValue(double)": "UnscaleValue(double)", + "UnscaleValue": "UnscaleValue(double)", + "Value": "Value", + "ValueProperty": "ValueProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamRipple": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamRipple", + "k": "class", + "s": "classes", + "m": { + "XamRipple()": "XamRipple()", + "XamRipple": "XamRipple()", + "ActualHoverColor": "ActualHoverColor", + "ActualHoverColorProperty": "ActualHoverColorProperty", + "ActualRippleColor": "ActualRippleColor", + "ActualRippleColorProperty": "ActualRippleColorProperty", + "EventSource": "EventSource", + "EventSourceProperty": "EventSourceProperty", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "HoverColor": "HoverColor", + "HoverColorProperty": "HoverColorProperty", + "IsCentered": "IsCentered", + "IsCenteredProperty": "IsCenteredProperty", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHoverEnabled": "IsHoverEnabled", + "IsHoverEnabledProperty": "IsHoverEnabledProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "RippleColor": "RippleColor", + "RippleColorProperty": "RippleColorProperty", + "RippleDuration": "RippleDuration", + "RippleDurationProperty": "RippleDurationProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamSparkline": [ + { + "p": "Infragistics.WinUI.Sparkline", + "u": "/api/winui/Infragistics.WinUI.Sparkline/latest/classes/XamSparkline", + "k": "class", + "s": "classes", + "m": { + "XamSparkline()": "XamSparkline()", + "XamSparkline": "XamSparkline()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Brush": "Brush", + "BrushProperty": "BrushProperty", + "Destroy()": "Destroy()", + "Destroy": "Destroy()", + "DisplayType": "DisplayType", + "DisplayTypeProperty": "DisplayTypeProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FirstMarkerBrush": "FirstMarkerBrush", + "FirstMarkerBrushProperty": "FirstMarkerBrushProperty", + "FirstMarkerSize": "FirstMarkerSize", + "FirstMarkerSizeProperty": "FirstMarkerSizeProperty", + "FirstMarkerVisibility": "FirstMarkerVisibility", + "FirstMarkerVisibilityProperty": "FirstMarkerVisibilityProperty", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HighMarkerBrush": "HighMarkerBrush", + "HighMarkerBrushProperty": "HighMarkerBrushProperty", + "HighMarkerSize": "HighMarkerSize", + "HighMarkerSizeProperty": "HighMarkerSizeProperty", + "HighMarkerVisibility": "HighMarkerVisibility", + "HighMarkerVisibilityProperty": "HighMarkerVisibilityProperty", + "HorizontalAxisBrush": "HorizontalAxisBrush", + "HorizontalAxisBrushProperty": "HorizontalAxisBrushProperty", + "HorizontalAxisVisibility": "HorizontalAxisVisibility", + "HorizontalAxisVisibilityProperty": "HorizontalAxisVisibilityProperty", + "HorizontalLabelFormat": "HorizontalLabelFormat", + "HorizontalLabelFormatProperty": "HorizontalLabelFormatProperty", + "HorizontalLabelFormatSpecifiers": "HorizontalLabelFormatSpecifiers", + "HorizontalLabelFormatSpecifiersProperty": "HorizontalLabelFormatSpecifiersProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LastMarkerBrush": "LastMarkerBrush", + "LastMarkerBrushProperty": "LastMarkerBrushProperty", + "LastMarkerSize": "LastMarkerSize", + "LastMarkerSizeProperty": "LastMarkerSizeProperty", + "LastMarkerVisibility": "LastMarkerVisibility", + "LastMarkerVisibilityProperty": "LastMarkerVisibilityProperty", + "LineThickness": "LineThickness", + "LineThicknessProperty": "LineThicknessProperty", + "LowMarkerBrush": "LowMarkerBrush", + "LowMarkerBrushProperty": "LowMarkerBrushProperty", + "LowMarkerSize": "LowMarkerSize", + "LowMarkerSizeProperty": "LowMarkerSizeProperty", + "LowMarkerVisibility": "LowMarkerVisibility", + "LowMarkerVisibilityProperty": "LowMarkerVisibilityProperty", + "MarkerBrush": "MarkerBrush", + "MarkerBrushProperty": "MarkerBrushProperty", + "MarkerSize": "MarkerSize", + "MarkerSizeProperty": "MarkerSizeProperty", + "MarkerVisibility": "MarkerVisibility", + "MarkerVisibilityProperty": "MarkerVisibilityProperty", + "Maximum": "Maximum", + "MaximumProperty": "MaximumProperty", + "Minimum": "Minimum", + "MinimumProperty": "MinimumProperty", + "NegativeBrush": "NegativeBrush", + "NegativeBrushProperty": "NegativeBrushProperty", + "NegativeMarkerBrush": "NegativeMarkerBrush", + "NegativeMarkerBrushProperty": "NegativeMarkerBrushProperty", + "NegativeMarkerSize": "NegativeMarkerSize", + "NegativeMarkerSizeProperty": "NegativeMarkerSizeProperty", + "NegativeMarkerVisibility": "NegativeMarkerVisibility", + "NegativeMarkerVisibilityProperty": "NegativeMarkerVisibilityProperty", + "NormalRangeFill": "NormalRangeFill", + "NormalRangeFillProperty": "NormalRangeFillProperty", + "NormalRangeMaximum": "NormalRangeMaximum", + "NormalRangeMaximumProperty": "NormalRangeMaximumProperty", + "NormalRangeMinimum": "NormalRangeMinimum", + "NormalRangeMinimumProperty": "NormalRangeMinimumProperty", + "NormalRangeVisibility": "NormalRangeVisibility", + "NormalRangeVisibilityProperty": "NormalRangeVisibilityProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifyResized()": "NotifyResized()", + "NotifyResized": "NotifyResized()", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnFormatLabel(SparklineFormatLabelEventArgs)": "OnFormatLabel(SparklineFormatLabelEventArgs)", + "OnFormatLabel": "OnFormatLabel(SparklineFormatLabelEventArgs)", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TrendLineBrush": "TrendLineBrush", + "TrendLineBrushProperty": "TrendLineBrushProperty", + "TrendLinePeriod": "TrendLinePeriod", + "TrendLinePeriodProperty": "TrendLinePeriodProperty", + "TrendLineThickness": "TrendLineThickness", + "TrendLineThicknessProperty": "TrendLineThicknessProperty", + "TrendLineType": "TrendLineType", + "TrendLineTypeProperty": "TrendLineTypeProperty", + "UnknownValuePlotting": "UnknownValuePlotting", + "UnknownValuePlottingProperty": "UnknownValuePlottingProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "VerticalAxisBrush": "VerticalAxisBrush", + "VerticalAxisBrushProperty": "VerticalAxisBrushProperty", + "VerticalAxisVisibility": "VerticalAxisVisibility", + "VerticalAxisVisibilityProperty": "VerticalAxisVisibilityProperty", + "VerticalLabelFormat": "VerticalLabelFormat", + "VerticalLabelFormatProperty": "VerticalLabelFormatProperty", + "VerticalLabelFormatSpecifiers": "VerticalLabelFormatSpecifiers", + "VerticalLabelFormatSpecifiersProperty": "VerticalLabelFormatSpecifiersProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamSuffix": [ + { + "p": "Infragistics.WinUI.Inputs", + "u": "/api/winui/Infragistics.WinUI.Inputs/latest/classes/XamSuffix", + "k": "class", + "s": "classes", + "m": { + "XamSuffix()": "XamSuffix()", + "XamSuffix": "XamSuffix()", + "ExportSerializedVisualModel()": "ExportSerializedVisualModel()", + "ExportSerializedVisualModel": "ExportSerializedVisualModel()", + "ExportVisualModel()": "ExportVisualModel()", + "ExportVisualModel": "ExportVisualModel()", + "IsDisabled": "IsDisabled", + "IsDisabledProperty": "IsDisabledProperty", + "IsHover": "IsHover", + "IsHoverProperty": "IsHoverProperty", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "ProvideContainer(object)": "ProvideContainer(object)", + "ProvideContainer": "ProvideContainer(object)" + } + } + ], + "XamToolbar": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/XamToolbar", + "k": "class", + "s": "classes", + "m": { + "XamToolbar()": "XamToolbar()", + "XamToolbar": "XamToolbar()", + "AccentColor": "AccentColor", + "AccentColorProperty": "AccentColorProperty", + "Actions": "Actions", + "ActualActions": "ActualActions", + "AutoGeneratedActions": "AutoGeneratedActions", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CheckboxListScrollbarActiveBackground": "CheckboxListScrollbarActiveBackground", + "CheckboxListScrollbarActiveBackgroundProperty": "CheckboxListScrollbarActiveBackgroundProperty", + "CheckboxListScrollbarBackground": "CheckboxListScrollbarBackground", + "CheckboxListScrollbarBackgroundProperty": "CheckboxListScrollbarBackgroundProperty", + "CheckboxListScrollbarHoverBackground": "CheckboxListScrollbarHoverBackground", + "CheckboxListScrollbarHoverBackgroundProperty": "CheckboxListScrollbarHoverBackgroundProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "CloseSubmenus()": "CloseSubmenus()", + "CloseSubmenus": "CloseSubmenus()", + "CreateLocalDataSource(object)": "CreateLocalDataSource(object)", + "CreateLocalDataSource": "CreateLocalDataSource(object)", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisabledTextColor": "DisabledTextColor", + "DisabledTextColorProperty": "DisabledTextColorProperty", + "DropdownClickBuffer": "DropdownClickBuffer", + "DropdownClickBufferProperty": "DropdownClickBufferProperty", + "DropdownDelay": "DropdownDelay", + "DropdownDelayProperty": "DropdownDelayProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushRefresh()": "FlushRefresh()", + "FlushRefresh": "FlushRefresh()", + "GetBoolContextItem(string)": "GetBoolContextItem(string)", + "GetBoolContextItem": "GetBoolContextItem(string)", + "GetBrushCollectionContextItem(string)": "GetBrushCollectionContextItem(string)", + "GetBrushCollectionContextItem": "GetBrushCollectionContextItem(string)", + "GetBrushContextItem(string)": "GetBrushContextItem(string)", + "GetBrushContextItem": "GetBrushContextItem(string)", + "GetColorContextItem(string)": "GetColorContextItem(string)", + "GetColorContextItem": "GetColorContextItem(string)", + "GetDataContextItem(string)": "GetDataContextItem(string)", + "GetDataContextItem": "GetDataContextItem(string)", + "GetDataURLFromCache(string, string)": "GetDataURLFromCache(string, string)", + "GetDataURLFromCache": "GetDataURLFromCache(string, string)", + "GetDoubleContextItem(string)": "GetDoubleContextItem(string)", + "GetDoubleContextItem": "GetDoubleContextItem(string)", + "GetExternalDataContextItem(string)": "GetExternalDataContextItem(string)", + "GetExternalDataContextItem": "GetExternalDataContextItem(string)", + "GetExternalDoubleContextItem(string)": "GetExternalDoubleContextItem(string)", + "GetExternalDoubleContextItem": "GetExternalDoubleContextItem(string)", + "GetExternalIntContextItem(string)": "GetExternalIntContextItem(string)", + "GetExternalIntContextItem": "GetExternalIntContextItem(string)", + "GetIconFromCache(string, string)": "GetIconFromCache(string, string)", + "GetIconFromCache": "GetIconFromCache(string, string)", + "GetIconSource(string, string)": "GetIconSource(string, string)", + "GetIconSource": "GetIconSource(string, string)", + "GetIntContextItem(string)": "GetIntContextItem(string)", + "GetIntContextItem": "GetIntContextItem(string)", + "GetMultiPathSVGFromCache(string, string)": "GetMultiPathSVGFromCache(string, string)", + "GetMultiPathSVGFromCache": "GetMultiPathSVGFromCache(string, string)", + "GetStringContextItem(string)": "GetStringContextItem(string)", + "GetStringContextItem": "GetStringContextItem(string)", + "GroupHeaderBackgroundColor": "GroupHeaderBackgroundColor", + "GroupHeaderBackgroundColorProperty": "GroupHeaderBackgroundColorProperty", + "GroupHeaderFontFamily": "GroupHeaderFontFamily", + "GroupHeaderFontFamilyProperty": "GroupHeaderFontFamilyProperty", + "GroupHeaderFontSize": "GroupHeaderFontSize", + "GroupHeaderFontSizeProperty": "GroupHeaderFontSizeProperty", + "GroupHeaderFontStyle": "GroupHeaderFontStyle", + "GroupHeaderFontStyleProperty": "GroupHeaderFontStyleProperty", + "GroupHeaderFontWeight": "GroupHeaderFontWeight", + "GroupHeaderFontWeightProperty": "GroupHeaderFontWeightProperty", + "GroupHeaderSubtitleTextColor": "GroupHeaderSubtitleTextColor", + "GroupHeaderSubtitleTextColorProperty": "GroupHeaderSubtitleTextColorProperty", + "GroupHeaderTextColor": "GroupHeaderTextColor", + "GroupHeaderTextColorProperty": "GroupHeaderTextColorProperty", + "HighlightColor": "HighlightColor", + "HighlightColorProperty": "HighlightColorProperty", + "HighlightRadius": "HighlightRadius", + "HighlightRadiusProperty": "HighlightRadiusProperty", + "HighlightWidth": "HighlightWidth", + "HighlightWidthProperty": "HighlightWidthProperty", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverBackgroundColorProperty": "HoverBackgroundColorProperty", + "IconFill": "IconFill", + "IconFillProperty": "IconFillProperty", + "IconStroke": "IconStroke", + "IconStrokeProperty": "IconStrokeProperty", + "IsOpen()": "IsOpen()", + "IsOpen": "IsOpen()", + "MenuArrowStroke": "MenuArrowStroke", + "MenuArrowStrokeProperty": "MenuArrowStrokeProperty", + "OnCommandStateChanged(string, ToolCommandStateType, object)": "OnCommandStateChanged(string, ToolCommandStateType, object)", + "OnCommandStateChanged": "OnCommandStateChanged(string, ToolCommandStateType, object)", + "OnContentSizeChanged()": "OnContentSizeChanged()", + "OnContentSizeChanged": "OnContentSizeChanged()", + "OnOnCommand(ToolCommandEventArgs)": "OnOnCommand(ToolCommandEventArgs)", + "OnOnCommand": "OnOnCommand(ToolCommandEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "OnSubMenuClosing(ToolbarSubMenuClosingEventArgs)": "OnSubMenuClosing(ToolbarSubMenuClosingEventArgs)", + "OnSubMenuClosing": "OnSubMenuClosing(ToolbarSubMenuClosingEventArgs)", + "OnSubMenuOpening(ToolbarSubMenuOpeningEventArgs)": "OnSubMenuOpening(ToolbarSubMenuOpeningEventArgs)", + "OnSubMenuOpening": "OnSubMenuOpening(ToolbarSubMenuOpeningEventArgs)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "RegisterIconFromDataURL(string, string, string)": "RegisterIconFromDataURL(string, string, string)", + "RegisterIconFromDataURL": "RegisterIconFromDataURL(string, string, string)", + "RegisterIconFromText(string, string, string)": "RegisterIconFromText(string, string, string)", + "RegisterIconFromText": "RegisterIconFromText(string, string, string)", + "RegisterIconSource(string, string, object)": "RegisterIconSource(string, string, object)", + "RegisterIconSource": "RegisterIconSource(string, string, object)", + "RegisterMultiPathSVG(string, string, string[])": "RegisterMultiPathSVG(string, string, string[])", + "RegisterMultiPathSVG": "RegisterMultiPathSVG(string, string, string[])", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SeparatorBackgroundColor": "SeparatorBackgroundColor", + "SeparatorBackgroundColorProperty": "SeparatorBackgroundColorProperty", + "SeparatorHorizontalPaddingBottom": "SeparatorHorizontalPaddingBottom", + "SeparatorHorizontalPaddingBottomProperty": "SeparatorHorizontalPaddingBottomProperty", + "SeparatorHorizontalPaddingLeft": "SeparatorHorizontalPaddingLeft", + "SeparatorHorizontalPaddingLeftProperty": "SeparatorHorizontalPaddingLeftProperty", + "SeparatorHorizontalPaddingRight": "SeparatorHorizontalPaddingRight", + "SeparatorHorizontalPaddingRightProperty": "SeparatorHorizontalPaddingRightProperty", + "SeparatorHorizontalPaddingTop": "SeparatorHorizontalPaddingTop", + "SeparatorHorizontalPaddingTopProperty": "SeparatorHorizontalPaddingTopProperty", + "SeparatorVerticalPaddingBottom": "SeparatorVerticalPaddingBottom", + "SeparatorVerticalPaddingBottomProperty": "SeparatorVerticalPaddingBottomProperty", + "SeparatorVerticalPaddingLeft": "SeparatorVerticalPaddingLeft", + "SeparatorVerticalPaddingLeftProperty": "SeparatorVerticalPaddingLeftProperty", + "SeparatorVerticalPaddingRight": "SeparatorVerticalPaddingRight", + "SeparatorVerticalPaddingRightProperty": "SeparatorVerticalPaddingRightProperty", + "SeparatorVerticalPaddingTop": "SeparatorVerticalPaddingTop", + "SeparatorVerticalPaddingTopProperty": "SeparatorVerticalPaddingTopProperty", + "SetBoolContextItem(string, bool)": "SetBoolContextItem(string, bool)", + "SetBoolContextItem": "SetBoolContextItem(string, bool)", + "SetBrushCollectionContextItem(string, BrushCollection)": "SetBrushCollectionContextItem(string, BrushCollection)", + "SetBrushCollectionContextItem": "SetBrushCollectionContextItem(string, BrushCollection)", + "SetBrushContextItem(string, Brush)": "SetBrushContextItem(string, Brush)", + "SetBrushContextItem": "SetBrushContextItem(string, Brush)", + "SetColorContextItem(string, Color)": "SetColorContextItem(string, Color)", + "SetColorContextItem": "SetColorContextItem(string, Color)", + "SetDataContextItem(string, object)": "SetDataContextItem(string, object)", + "SetDataContextItem": "SetDataContextItem(string, object)", + "SetDoubleContextItem(string, double)": "SetDoubleContextItem(string, double)", + "SetDoubleContextItem": "SetDoubleContextItem(string, double)", + "SetExternalDataContextItem(string, object)": "SetExternalDataContextItem(string, object)", + "SetExternalDataContextItem": "SetExternalDataContextItem(string, object)", + "SetExternalDoubleContextItem(string, object)": "SetExternalDoubleContextItem(string, object)", + "SetExternalDoubleContextItem": "SetExternalDoubleContextItem(string, object)", + "SetExternalIntContextItem(string, object)": "SetExternalIntContextItem(string, object)", + "SetExternalIntContextItem": "SetExternalIntContextItem(string, object)", + "SetIntContextItem(string, int)": "SetIntContextItem(string, int)", + "SetIntContextItem": "SetIntContextItem(string, int)", + "SetStringContextItem(string, string)": "SetStringContextItem(string, string)", + "SetStringContextItem": "SetStringContextItem(string, string)", + "ShowOnHover": "ShowOnHover", + "ShowOnHoverProperty": "ShowOnHoverProperty", + "ShowTooltipOnHover": "ShowTooltipOnHover", + "ShowTooltipOnHoverProperty": "ShowTooltipOnHoverProperty", + "StopPropagation": "StopPropagation", + "StopPropagationProperty": "StopPropagationProperty", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubPanelRowHeightProperty": "SubPanelRowHeightProperty", + "SubmenuBackgroundColor": "SubmenuBackgroundColor", + "SubmenuBackgroundColorProperty": "SubmenuBackgroundColorProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "Target": "Target", + "TargetProperty": "TargetProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipCornerRadius": "ToolTipCornerRadius", + "ToolTipCornerRadiusProperty": "ToolTipCornerRadiusProperty", + "ToolTipElevation": "ToolTipElevation", + "ToolTipElevationProperty": "ToolTipElevationProperty", + "ToolTipTextColor": "ToolTipTextColor", + "ToolTipTextColorProperty": "ToolTipTextColorProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamToolPanel": [ + { + "p": "Infragistics.WinUI.Layouts", + "u": "/api/winui/Infragistics.WinUI.Layouts/latest/classes/XamToolPanel", + "k": "class", + "s": "classes", + "m": { + "XamToolPanel()": "XamToolPanel()", + "XamToolPanel": "XamToolPanel()", + "AccentColor": "AccentColor", + "AccentColorProperty": "AccentColorProperty", + "Actions": "Actions", + "ActualAccentColor": "ActualAccentColor", + "ActualAccentColorProperty": "ActualAccentColorProperty", + "ActualBackgroundColor": "ActualBackgroundColor", + "ActualBackgroundColorProperty": "ActualBackgroundColorProperty", + "ActualCheckedBackgroundColor": "ActualCheckedBackgroundColor", + "ActualCheckedBackgroundColorProperty": "ActualCheckedBackgroundColorProperty", + "ActualCheckedBorderColor": "ActualCheckedBorderColor", + "ActualCheckedBorderColorProperty": "ActualCheckedBorderColorProperty", + "ActualDensity": "ActualDensity", + "ActualDensityProperty": "ActualDensityProperty", + "ActualDisabledTextColor": "ActualDisabledTextColor", + "ActualDisabledTextColorProperty": "ActualDisabledTextColorProperty", + "ActualDropdownDelay": "ActualDropdownDelay", + "ActualDropdownDelayProperty": "ActualDropdownDelayProperty", + "ActualGroupHeaderBackgroundColor": "ActualGroupHeaderBackgroundColor", + "ActualGroupHeaderBackgroundColorProperty": "ActualGroupHeaderBackgroundColorProperty", + "ActualGroupHeaderSeparatorBackgroundColor": "ActualGroupHeaderSeparatorBackgroundColor", + "ActualGroupHeaderSeparatorBackgroundColorProperty": "ActualGroupHeaderSeparatorBackgroundColorProperty", + "ActualGroupHeaderSubtitleTextColor": "ActualGroupHeaderSubtitleTextColor", + "ActualGroupHeaderSubtitleTextColorProperty": "ActualGroupHeaderSubtitleTextColorProperty", + "ActualGroupHeaderTextColor": "ActualGroupHeaderTextColor", + "ActualGroupHeaderTextColorProperty": "ActualGroupHeaderTextColorProperty", + "ActualHighlightColor": "ActualHighlightColor", + "ActualHighlightColorProperty": "ActualHighlightColorProperty", + "ActualHighlightRadius": "ActualHighlightRadius", + "ActualHighlightRadiusProperty": "ActualHighlightRadiusProperty", + "ActualHighlightWidth": "ActualHighlightWidth", + "ActualHighlightWidthProperty": "ActualHighlightWidthProperty", + "ActualHoverBackgroundColor": "ActualHoverBackgroundColor", + "ActualHoverBackgroundColorProperty": "ActualHoverBackgroundColorProperty", + "ActualIconFill": "ActualIconFill", + "ActualIconFillProperty": "ActualIconFillProperty", + "ActualIconStroke": "ActualIconStroke", + "ActualIconStrokeProperty": "ActualIconStrokeProperty", + "ActualMenuArrowStroke": "ActualMenuArrowStroke", + "ActualMenuArrowStrokeProperty": "ActualMenuArrowStrokeProperty", + "ActualRowHeight": "ActualRowHeight", + "ActualRowHeightProperty": "ActualRowHeightProperty", + "ActualSeparatorBackgroundColor": "ActualSeparatorBackgroundColor", + "ActualSeparatorBackgroundColorProperty": "ActualSeparatorBackgroundColorProperty", + "ActualSeparatorHorizontalPaddingBottom": "ActualSeparatorHorizontalPaddingBottom", + "ActualSeparatorHorizontalPaddingBottomProperty": "ActualSeparatorHorizontalPaddingBottomProperty", + "ActualSeparatorHorizontalPaddingLeft": "ActualSeparatorHorizontalPaddingLeft", + "ActualSeparatorHorizontalPaddingLeftProperty": "ActualSeparatorHorizontalPaddingLeftProperty", + "ActualSeparatorHorizontalPaddingRight": "ActualSeparatorHorizontalPaddingRight", + "ActualSeparatorHorizontalPaddingRightProperty": "ActualSeparatorHorizontalPaddingRightProperty", + "ActualSeparatorHorizontalPaddingTop": "ActualSeparatorHorizontalPaddingTop", + "ActualSeparatorHorizontalPaddingTopProperty": "ActualSeparatorHorizontalPaddingTopProperty", + "ActualSeparatorVerticalPaddingBottom": "ActualSeparatorVerticalPaddingBottom", + "ActualSeparatorVerticalPaddingBottomProperty": "ActualSeparatorVerticalPaddingBottomProperty", + "ActualSeparatorVerticalPaddingLeft": "ActualSeparatorVerticalPaddingLeft", + "ActualSeparatorVerticalPaddingLeftProperty": "ActualSeparatorVerticalPaddingLeftProperty", + "ActualSeparatorVerticalPaddingRight": "ActualSeparatorVerticalPaddingRight", + "ActualSeparatorVerticalPaddingRightProperty": "ActualSeparatorVerticalPaddingRightProperty", + "ActualSeparatorVerticalPaddingTop": "ActualSeparatorVerticalPaddingTop", + "ActualSeparatorVerticalPaddingTopProperty": "ActualSeparatorVerticalPaddingTopProperty", + "ActualSubmenuBackgroundColor": "ActualSubmenuBackgroundColor", + "ActualSubmenuBackgroundColorProperty": "ActualSubmenuBackgroundColorProperty", + "ActualSubtitleTextColor": "ActualSubtitleTextColor", + "ActualSubtitleTextColorProperty": "ActualSubtitleTextColorProperty", + "ActualTextColor": "ActualTextColor", + "ActualTextColorProperty": "ActualTextColorProperty", + "ActualToolTipBackgroundColor": "ActualToolTipBackgroundColor", + "ActualToolTipBackgroundColorProperty": "ActualToolTipBackgroundColorProperty", + "ActualToolTipCornerRadius": "ActualToolTipCornerRadius", + "ActualToolTipCornerRadiusProperty": "ActualToolTipCornerRadiusProperty", + "ActualToolTipElevation": "ActualToolTipElevation", + "ActualToolTipElevationProperty": "ActualToolTipElevationProperty", + "ActualToolTipTextColor": "ActualToolTipTextColor", + "ActualToolTipTextColorProperty": "ActualToolTipTextColorProperty", + "ActualUncheckedBackgroundColor": "ActualUncheckedBackgroundColor", + "ActualUncheckedBackgroundColorProperty": "ActualUncheckedBackgroundColorProperty", + "ActualUncheckedBorderColor": "ActualUncheckedBorderColor", + "ActualUncheckedBorderColorProperty": "ActualUncheckedBorderColorProperty", + "BackgroundColor": "BackgroundColor", + "BackgroundColorProperty": "BackgroundColorProperty", + "BaseTheme": "BaseTheme", + "BaseThemeProperty": "BaseThemeProperty", + "CellFontFamily": "CellFontFamily", + "CellFontFamilyProperty": "CellFontFamilyProperty", + "CellFontSize": "CellFontSize", + "CellFontSizeProperty": "CellFontSizeProperty", + "CellFontStyle": "CellFontStyle", + "CellFontStyleProperty": "CellFontStyleProperty", + "CellFontWeight": "CellFontWeight", + "CellFontWeightProperty": "CellFontWeightProperty", + "CheckboxListScrollbarActiveBackground": "CheckboxListScrollbarActiveBackground", + "CheckboxListScrollbarActiveBackgroundProperty": "CheckboxListScrollbarActiveBackgroundProperty", + "CheckboxListScrollbarBackground": "CheckboxListScrollbarBackground", + "CheckboxListScrollbarBackgroundProperty": "CheckboxListScrollbarBackgroundProperty", + "CheckboxListScrollbarHoverBackground": "CheckboxListScrollbarHoverBackground", + "CheckboxListScrollbarHoverBackgroundProperty": "CheckboxListScrollbarHoverBackgroundProperty", + "CheckedBackgroundColor": "CheckedBackgroundColor", + "CheckedBackgroundColorProperty": "CheckedBackgroundColorProperty", + "CheckedBorderColor": "CheckedBorderColor", + "CheckedBorderColorProperty": "CheckedBorderColorProperty", + "CloseSubmenus()": "CloseSubmenus()", + "CloseSubmenus": "CloseSubmenus()", + "CreateLocalDataSource(object)": "CreateLocalDataSource(object)", + "CreateLocalDataSource": "CreateLocalDataSource(object)", + "Density": "Density", + "DensityProperty": "DensityProperty", + "DisabledTextColor": "DisabledTextColor", + "DisabledTextColorProperty": "DisabledTextColorProperty", + "DropdownClickBuffer": "DropdownClickBuffer", + "DropdownClickBufferProperty": "DropdownClickBufferProperty", + "DropdownDelay": "DropdownDelay", + "DropdownDelayProperty": "DropdownDelayProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FlushRefresh()": "FlushRefresh()", + "FlushRefresh": "FlushRefresh()", + "GetBoolContextItem(string)": "GetBoolContextItem(string)", + "GetBoolContextItem": "GetBoolContextItem(string)", + "GetBrushCollectionContextItem(string)": "GetBrushCollectionContextItem(string)", + "GetBrushCollectionContextItem": "GetBrushCollectionContextItem(string)", + "GetBrushContextItem(string)": "GetBrushContextItem(string)", + "GetBrushContextItem": "GetBrushContextItem(string)", + "GetColorContextItem(string)": "GetColorContextItem(string)", + "GetColorContextItem": "GetColorContextItem(string)", + "GetDataContextItem(string)": "GetDataContextItem(string)", + "GetDataContextItem": "GetDataContextItem(string)", + "GetDoubleContextItem(string)": "GetDoubleContextItem(string)", + "GetDoubleContextItem": "GetDoubleContextItem(string)", + "GetIntContextItem(string)": "GetIntContextItem(string)", + "GetIntContextItem": "GetIntContextItem(string)", + "GetStringContextItem(string)": "GetStringContextItem(string)", + "GetStringContextItem": "GetStringContextItem(string)", + "GroupHeaderBackgroundColor": "GroupHeaderBackgroundColor", + "GroupHeaderBackgroundColorProperty": "GroupHeaderBackgroundColorProperty", + "GroupHeaderFontFamily": "GroupHeaderFontFamily", + "GroupHeaderFontFamilyProperty": "GroupHeaderFontFamilyProperty", + "GroupHeaderFontSize": "GroupHeaderFontSize", + "GroupHeaderFontSizeProperty": "GroupHeaderFontSizeProperty", + "GroupHeaderFontStyle": "GroupHeaderFontStyle", + "GroupHeaderFontStyleProperty": "GroupHeaderFontStyleProperty", + "GroupHeaderFontWeight": "GroupHeaderFontWeight", + "GroupHeaderFontWeightProperty": "GroupHeaderFontWeightProperty", + "GroupHeaderSeparatorBackgroundColor": "GroupHeaderSeparatorBackgroundColor", + "GroupHeaderSeparatorBackgroundColorProperty": "GroupHeaderSeparatorBackgroundColorProperty", + "GroupHeaderSubtitleTextColor": "GroupHeaderSubtitleTextColor", + "GroupHeaderSubtitleTextColorProperty": "GroupHeaderSubtitleTextColorProperty", + "GroupHeaderTextColor": "GroupHeaderTextColor", + "GroupHeaderTextColorProperty": "GroupHeaderTextColorProperty", + "HighlightColor": "HighlightColor", + "HighlightColorProperty": "HighlightColorProperty", + "HighlightRadius": "HighlightRadius", + "HighlightRadiusProperty": "HighlightRadiusProperty", + "HighlightWidth": "HighlightWidth", + "HighlightWidthProperty": "HighlightWidthProperty", + "HoverBackgroundColor": "HoverBackgroundColor", + "HoverBackgroundColorProperty": "HoverBackgroundColorProperty", + "IconFill": "IconFill", + "IconFillProperty": "IconFillProperty", + "IconStroke": "IconStroke", + "IconStrokeProperty": "IconStrokeProperty", + "IsOpen": "IsOpen", + "IsOpenProperty": "IsOpenProperty", + "ItemSpacing": "ItemSpacing", + "ItemSpacingProperty": "ItemSpacingProperty", + "MenuArrowStroke": "MenuArrowStroke", + "MenuArrowStrokeProperty": "MenuArrowStrokeProperty", + "NestedActionMode": "NestedActionMode", + "NestedActionModeProperty": "NestedActionModeProperty", + "OnContentRefreshed(ToolPanelContentRefreshedEventArgs)": "OnContentRefreshed(ToolPanelContentRefreshedEventArgs)", + "OnContentRefreshed": "OnContentRefreshed(ToolPanelContentRefreshedEventArgs)", + "OnContentSizeChanged()": "OnContentSizeChanged()", + "OnContentSizeChanged": "OnContentSizeChanged()", + "OnOnCommand(ToolCommandEventArgs)": "OnOnCommand(ToolCommandEventArgs)", + "OnOnCommand": "OnOnCommand(ToolCommandEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Orientation": "Orientation", + "OrientationProperty": "OrientationProperty", + "Refresh()": "Refresh()", + "Refresh": "Refresh()", + "RowHeight": "RowHeight", + "RowHeightProperty": "RowHeightProperty", + "ScrollbarStyle": "ScrollbarStyle", + "ScrollbarStyleProperty": "ScrollbarStyleProperty", + "SeparatorBackgroundColor": "SeparatorBackgroundColor", + "SeparatorBackgroundColorProperty": "SeparatorBackgroundColorProperty", + "SeparatorHorizontalPaddingBottom": "SeparatorHorizontalPaddingBottom", + "SeparatorHorizontalPaddingBottomProperty": "SeparatorHorizontalPaddingBottomProperty", + "SeparatorHorizontalPaddingLeft": "SeparatorHorizontalPaddingLeft", + "SeparatorHorizontalPaddingLeftProperty": "SeparatorHorizontalPaddingLeftProperty", + "SeparatorHorizontalPaddingRight": "SeparatorHorizontalPaddingRight", + "SeparatorHorizontalPaddingRightProperty": "SeparatorHorizontalPaddingRightProperty", + "SeparatorHorizontalPaddingTop": "SeparatorHorizontalPaddingTop", + "SeparatorHorizontalPaddingTopProperty": "SeparatorHorizontalPaddingTopProperty", + "SeparatorVerticalPaddingBottom": "SeparatorVerticalPaddingBottom", + "SeparatorVerticalPaddingBottomProperty": "SeparatorVerticalPaddingBottomProperty", + "SeparatorVerticalPaddingLeft": "SeparatorVerticalPaddingLeft", + "SeparatorVerticalPaddingLeftProperty": "SeparatorVerticalPaddingLeftProperty", + "SeparatorVerticalPaddingRight": "SeparatorVerticalPaddingRight", + "SeparatorVerticalPaddingRightProperty": "SeparatorVerticalPaddingRightProperty", + "SeparatorVerticalPaddingTop": "SeparatorVerticalPaddingTop", + "SeparatorVerticalPaddingTopProperty": "SeparatorVerticalPaddingTopProperty", + "SetBoolContextItem(string, bool)": "SetBoolContextItem(string, bool)", + "SetBoolContextItem": "SetBoolContextItem(string, bool)", + "SetBrushCollectionContextItem(string, BrushCollection)": "SetBrushCollectionContextItem(string, BrushCollection)", + "SetBrushCollectionContextItem": "SetBrushCollectionContextItem(string, BrushCollection)", + "SetBrushContextItem(string, Brush)": "SetBrushContextItem(string, Brush)", + "SetBrushContextItem": "SetBrushContextItem(string, Brush)", + "SetColorContextItem(string, Color)": "SetColorContextItem(string, Color)", + "SetColorContextItem": "SetColorContextItem(string, Color)", + "SetDataContextItem(string, object)": "SetDataContextItem(string, object)", + "SetDataContextItem": "SetDataContextItem(string, object)", + "SetDoubleContextItem(string, double)": "SetDoubleContextItem(string, double)", + "SetDoubleContextItem": "SetDoubleContextItem(string, double)", + "SetIntContextItem(string, int)": "SetIntContextItem(string, int)", + "SetIntContextItem": "SetIntContextItem(string, int)", + "SetStringContextItem(string, string)": "SetStringContextItem(string, string)", + "SetStringContextItem": "SetStringContextItem(string, string)", + "ShowOnHover": "ShowOnHover", + "ShowOnHoverProperty": "ShowOnHoverProperty", + "ShowTooltipOnHover": "ShowTooltipOnHover", + "ShowTooltipOnHoverProperty": "ShowTooltipOnHoverProperty", + "StopPropagation": "StopPropagation", + "StopPropagationProperty": "StopPropagationProperty", + "SubPanelRowHeight": "SubPanelRowHeight", + "SubPanelRowHeightProperty": "SubPanelRowHeightProperty", + "SubmenuBackgroundColor": "SubmenuBackgroundColor", + "SubmenuBackgroundColorProperty": "SubmenuBackgroundColorProperty", + "SubtitleFontFamily": "SubtitleFontFamily", + "SubtitleFontFamilyProperty": "SubtitleFontFamilyProperty", + "SubtitleFontSize": "SubtitleFontSize", + "SubtitleFontSizeProperty": "SubtitleFontSizeProperty", + "SubtitleFontStyle": "SubtitleFontStyle", + "SubtitleFontStyleProperty": "SubtitleFontStyleProperty", + "SubtitleFontWeight": "SubtitleFontWeight", + "SubtitleFontWeightProperty": "SubtitleFontWeightProperty", + "SubtitleTextColor": "SubtitleTextColor", + "SubtitleTextColorProperty": "SubtitleTextColorProperty", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "ToolTipBackgroundColor": "ToolTipBackgroundColor", + "ToolTipBackgroundColorProperty": "ToolTipBackgroundColorProperty", + "ToolTipCornerRadius": "ToolTipCornerRadius", + "ToolTipCornerRadiusProperty": "ToolTipCornerRadiusProperty", + "ToolTipElevation": "ToolTipElevation", + "ToolTipElevationProperty": "ToolTipElevationProperty", + "ToolTipTextColor": "ToolTipTextColor", + "ToolTipTextColorProperty": "ToolTipTextColorProperty", + "UncheckedBackgroundColor": "UncheckedBackgroundColor", + "UncheckedBackgroundColorProperty": "UncheckedBackgroundColorProperty", + "UncheckedBorderColor": "UncheckedBorderColor", + "UncheckedBorderColorProperty": "UncheckedBorderColorProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XamTreemap": [ + { + "p": "Infragistics.WinUI.TreeMap", + "u": "/api/winui/Infragistics.WinUI.TreeMap/latest/classes/XamTreemap", + "k": "class", + "s": "classes", + "m": { + "XamTreemap()": "XamTreemap()", + "XamTreemap": "XamTreemap()", + "ActualHighlightingMode": "ActualHighlightingMode", + "ActualHighlightingModeProperty": "ActualHighlightingModeProperty", + "ActualInteractionPixelScalingRatio": "ActualInteractionPixelScalingRatio", + "ActualInteractionPixelScalingRatioProperty": "ActualInteractionPixelScalingRatioProperty", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "ActualPixelScalingRatioProperty": "ActualPixelScalingRatioProperty", + "Animating": "Animating", + "AnimatingProperty": "AnimatingProperty", + "BreadcrumbSequence": "BreadcrumbSequence", + "BreadcrumbSequenceProperty": "BreadcrumbSequenceProperty", + "CustomValueMemberPath": "CustomValueMemberPath", + "CustomValueMemberPathProperty": "CustomValueMemberPathProperty", + "DarkTextColor": "DarkTextColor", + "DarkTextColorProperty": "DarkTextColorProperty", + "ExportSerializedVisualData()": "ExportSerializedVisualData()", + "ExportSerializedVisualData": "ExportSerializedVisualData()", + "ExportVisualData()": "ExportVisualData()", + "ExportVisualData": "ExportVisualData()", + "FillBrushes": "FillBrushes", + "FillBrushesProperty": "FillBrushesProperty", + "FillScaleLogarithmBase": "FillScaleLogarithmBase", + "FillScaleLogarithmBaseProperty": "FillScaleLogarithmBaseProperty", + "FillScaleMaximumValue": "FillScaleMaximumValue", + "FillScaleMaximumValueProperty": "FillScaleMaximumValueProperty", + "FillScaleMinimumValue": "FillScaleMinimumValue", + "FillScaleMinimumValueProperty": "FillScaleMinimumValueProperty", + "FillScaleMode": "FillScaleMode", + "FillScaleModeProperty": "FillScaleModeProperty", + "Flush()": "Flush()", + "Flush": "Flush()", + "FlushAsync()": "FlushAsync()", + "FlushAsync": "FlushAsync()", + "FocusItem": "FocusItem", + "FocusItemProperty": "FocusItemProperty", + "FontFamily": "FontFamily", + "FontFamilyProperty": "FontFamilyProperty", + "FontSize": "FontSize", + "FontSizeProperty": "FontSizeProperty", + "FontStyle": "FontStyle", + "FontStyleProperty": "FontStyleProperty", + "FontWeight": "FontWeight", + "FontWeightProperty": "FontWeightProperty", + "HeaderBackground": "HeaderBackground", + "HeaderBackgroundProperty": "HeaderBackgroundProperty", + "HeaderDarkTextColor": "HeaderDarkTextColor", + "HeaderDarkTextColorProperty": "HeaderDarkTextColorProperty", + "HeaderDisplayMode": "HeaderDisplayMode", + "HeaderDisplayModeProperty": "HeaderDisplayModeProperty", + "HeaderFontFamily": "HeaderFontFamily", + "HeaderFontFamilyProperty": "HeaderFontFamilyProperty", + "HeaderFontSize": "HeaderFontSize", + "HeaderFontSizeProperty": "HeaderFontSizeProperty", + "HeaderFontStyle": "HeaderFontStyle", + "HeaderFontStyleProperty": "HeaderFontStyleProperty", + "HeaderFontWeight": "HeaderFontWeight", + "HeaderFontWeightProperty": "HeaderFontWeightProperty", + "HeaderHeight": "HeaderHeight", + "HeaderHeightProperty": "HeaderHeightProperty", + "HeaderHoverBackground": "HeaderHoverBackground", + "HeaderHoverBackgroundProperty": "HeaderHoverBackgroundProperty", + "HeaderHoverDarkTextColor": "HeaderHoverDarkTextColor", + "HeaderHoverDarkTextColorProperty": "HeaderHoverDarkTextColorProperty", + "HeaderHoverTextColor": "HeaderHoverTextColor", + "HeaderHoverTextColorProperty": "HeaderHoverTextColorProperty", + "HeaderLabelBottomMargin": "HeaderLabelBottomMargin", + "HeaderLabelBottomMarginProperty": "HeaderLabelBottomMarginProperty", + "HeaderLabelLeftMargin": "HeaderLabelLeftMargin", + "HeaderLabelLeftMarginProperty": "HeaderLabelLeftMarginProperty", + "HeaderLabelRightMargin": "HeaderLabelRightMargin", + "HeaderLabelRightMarginProperty": "HeaderLabelRightMarginProperty", + "HeaderLabelTopMargin": "HeaderLabelTopMargin", + "HeaderLabelTopMarginProperty": "HeaderLabelTopMarginProperty", + "HeaderTextColor": "HeaderTextColor", + "HeaderTextColorProperty": "HeaderTextColorProperty", + "HighlightedItemsSource": "HighlightedItemsSource", + "HighlightedItemsSourceProperty": "HighlightedItemsSourceProperty", + "HighlightedValueMemberPath": "HighlightedValueMemberPath", + "HighlightedValueMemberPathProperty": "HighlightedValueMemberPathProperty", + "HighlightedValueOpacity": "HighlightedValueOpacity", + "HighlightedValueOpacityProperty": "HighlightedValueOpacityProperty", + "HighlightedValuesDisplayMode": "HighlightedValuesDisplayMode", + "HighlightedValuesDisplayModeProperty": "HighlightedValuesDisplayModeProperty", + "HighlightingFadeOpacity": "HighlightingFadeOpacity", + "HighlightingFadeOpacityProperty": "HighlightingFadeOpacityProperty", + "HighlightingMode": "HighlightingMode", + "HighlightingModeProperty": "HighlightingModeProperty", + "HighlightingTransitionDuration": "HighlightingTransitionDuration", + "HighlightingTransitionDurationProperty": "HighlightingTransitionDurationProperty", + "IdMemberPath": "IdMemberPath", + "IdMemberPathProperty": "IdMemberPathProperty", + "InteractionPixelScalingRatio": "InteractionPixelScalingRatio", + "InteractionPixelScalingRatioProperty": "InteractionPixelScalingRatioProperty", + "IsFillScaleLogarithmic": "IsFillScaleLogarithmic", + "IsFillScaleLogarithmicProperty": "IsFillScaleLogarithmicProperty", + "ItemsSource": "ItemsSource", + "ItemsSourceProperty": "ItemsSourceProperty", + "LabelBottomMargin": "LabelBottomMargin", + "LabelBottomMarginProperty": "LabelBottomMarginProperty", + "LabelHorizontalAlignment": "LabelHorizontalAlignment", + "LabelHorizontalAlignmentProperty": "LabelHorizontalAlignmentProperty", + "LabelHorizontalFitMode": "LabelHorizontalFitMode", + "LabelHorizontalFitModeProperty": "LabelHorizontalFitModeProperty", + "LabelLeftMargin": "LabelLeftMargin", + "LabelLeftMarginProperty": "LabelLeftMarginProperty", + "LabelMemberPath": "LabelMemberPath", + "LabelMemberPathProperty": "LabelMemberPathProperty", + "LabelRightMargin": "LabelRightMargin", + "LabelRightMarginProperty": "LabelRightMarginProperty", + "LabelTopMargin": "LabelTopMargin", + "LabelTopMarginProperty": "LabelTopMarginProperty", + "LabelVerticalAlignment": "LabelVerticalAlignment", + "LabelVerticalAlignmentProperty": "LabelVerticalAlignmentProperty", + "LabelVerticalFitMode": "LabelVerticalFitMode", + "LabelVerticalFitModeProperty": "LabelVerticalFitModeProperty", + "LayoutOrientation": "LayoutOrientation", + "LayoutOrientationProperty": "LayoutOrientationProperty", + "LayoutType": "LayoutType", + "LayoutTypeProperty": "LayoutTypeProperty", + "MarkDirty()": "MarkDirty()", + "MarkDirty": "MarkDirty()", + "MinimumDisplaySize": "MinimumDisplaySize", + "MinimumDisplaySizeProperty": "MinimumDisplaySizeProperty", + "NodeOpacity": "NodeOpacity", + "NodeOpacityProperty": "NodeOpacityProperty", + "NotifyClearItems(object)": "NotifyClearItems(object)", + "NotifyClearItems": "NotifyClearItems(object)", + "NotifyInsertItem(object, int, object)": "NotifyInsertItem(object, int, object)", + "NotifyInsertItem": "NotifyInsertItem(object, int, object)", + "NotifyRemoveItem(object, int, object)": "NotifyRemoveItem(object, int, object)", + "NotifyRemoveItem": "NotifyRemoveItem(object, int, object)", + "NotifySetItem(object, int, object, object)": "NotifySetItem(object, int, object, object)", + "NotifySetItem": "NotifySetItem(object, int, object, object)", + "NotifySizeChanged()": "NotifySizeChanged()", + "NotifySizeChanged": "NotifySizeChanged()", + "OnAttachedToUI()": "OnAttachedToUI()", + "OnAttachedToUI": "OnAttachedToUI()", + "OnDetachedFromUI()": "OnDetachedFromUI()", + "OnDetachedFromUI": "OnDetachedFromUI()", + "OnDpiChanged(float)": "OnDpiChanged(float)", + "OnDpiChanged": "OnDpiChanged(float)", + "OnNodePointerEnter(TreemapNodePointerEventArgs)": "OnNodePointerEnter(TreemapNodePointerEventArgs)", + "OnNodePointerEnter": "OnNodePointerEnter(TreemapNodePointerEventArgs)", + "OnNodePointerLeave(TreemapNodePointerEventArgs)": "OnNodePointerLeave(TreemapNodePointerEventArgs)", + "OnNodePointerLeave": "OnNodePointerLeave(TreemapNodePointerEventArgs)", + "OnNodePointerOver(TreemapNodePointerEventArgs)": "OnNodePointerOver(TreemapNodePointerEventArgs)", + "OnNodePointerOver": "OnNodePointerOver(TreemapNodePointerEventArgs)", + "OnNodePointerPressed(TreemapNodePointerEventArgs)": "OnNodePointerPressed(TreemapNodePointerEventArgs)", + "OnNodePointerPressed": "OnNodePointerPressed(TreemapNodePointerEventArgs)", + "OnNodePointerReleased(TreemapNodePointerEventArgs)": "OnNodePointerReleased(TreemapNodePointerEventArgs)", + "OnNodePointerReleased": "OnNodePointerReleased(TreemapNodePointerEventArgs)", + "OnNodeRenderStyling(TreemapNodeStylingEventArgs)": "OnNodeRenderStyling(TreemapNodeStylingEventArgs)", + "OnNodeRenderStyling": "OnNodeRenderStyling(TreemapNodeStylingEventArgs)", + "OnNodeStyling(TreemapNodeStylingEventArgs)": "OnNodeStyling(TreemapNodeStylingEventArgs)", + "OnNodeStyling": "OnNodeStyling(TreemapNodeStylingEventArgs)", + "OnPropertyChanged(string)": "OnPropertyChanged(string)", + "OnPropertyChanged": "OnPropertyChanged(string)", + "Outline": "Outline", + "OutlineProperty": "OutlineProperty", + "OverlayHeaderBackground": "OverlayHeaderBackground", + "OverlayHeaderBackgroundProperty": "OverlayHeaderBackgroundProperty", + "OverlayHeaderHoverBackground": "OverlayHeaderHoverBackground", + "OverlayHeaderHoverBackgroundProperty": "OverlayHeaderHoverBackgroundProperty", + "OverlayHeaderLabelBottomMargin": "OverlayHeaderLabelBottomMargin", + "OverlayHeaderLabelBottomMarginProperty": "OverlayHeaderLabelBottomMarginProperty", + "OverlayHeaderLabelLeftMargin": "OverlayHeaderLabelLeftMargin", + "OverlayHeaderLabelLeftMarginProperty": "OverlayHeaderLabelLeftMarginProperty", + "OverlayHeaderLabelRightMargin": "OverlayHeaderLabelRightMargin", + "OverlayHeaderLabelRightMarginProperty": "OverlayHeaderLabelRightMarginProperty", + "OverlayHeaderLabelTopMargin": "OverlayHeaderLabelTopMargin", + "OverlayHeaderLabelTopMarginProperty": "OverlayHeaderLabelTopMarginProperty", + "ParentIdMemberPath": "ParentIdMemberPath", + "ParentIdMemberPathProperty": "ParentIdMemberPathProperty", + "ParentNodeBottomMargin": "ParentNodeBottomMargin", + "ParentNodeBottomMarginProperty": "ParentNodeBottomMarginProperty", + "ParentNodeBottomPadding": "ParentNodeBottomPadding", + "ParentNodeBottomPaddingProperty": "ParentNodeBottomPaddingProperty", + "ParentNodeLeftMargin": "ParentNodeLeftMargin", + "ParentNodeLeftMarginProperty": "ParentNodeLeftMarginProperty", + "ParentNodeLeftPadding": "ParentNodeLeftPadding", + "ParentNodeLeftPaddingProperty": "ParentNodeLeftPaddingProperty", + "ParentNodeRightMargin": "ParentNodeRightMargin", + "ParentNodeRightMarginProperty": "ParentNodeRightMarginProperty", + "ParentNodeRightPadding": "ParentNodeRightPadding", + "ParentNodeRightPaddingProperty": "ParentNodeRightPaddingProperty", + "ParentNodeTopMargin": "ParentNodeTopMargin", + "ParentNodeTopMarginProperty": "ParentNodeTopMarginProperty", + "ParentNodeTopPadding": "ParentNodeTopPadding", + "ParentNodeTopPaddingProperty": "ParentNodeTopPaddingProperty", + "PixelScalingRatio": "PixelScalingRatio", + "PixelScalingRatioProperty": "PixelScalingRatioProperty", + "RootTitle": "RootTitle", + "RootTitleProperty": "RootTitleProperty", + "SimulateHover(Point)": "SimulateHover(Point)", + "SimulateHover": "SimulateHover(Point)", + "StrokeThickness": "StrokeThickness", + "StrokeThicknessProperty": "StrokeThicknessProperty", + "StyleMappings": "StyleMappings", + "TextColor": "TextColor", + "TextColorProperty": "TextColorProperty", + "TransitionDuration": "TransitionDuration", + "TransitionDurationProperty": "TransitionDurationProperty", + "ValueMemberPath": "ValueMemberPath", + "ValueMemberPathProperty": "ValueMemberPathProperty", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XAxisLabelLocation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/XAxisLabelLocation", + "k": "enum", + "s": "enums" + } + ], + "XBaseDataType": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/enums/XBaseDataType", + "k": "enum", + "s": "enums" + } + ], + "XBaseField": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/XBaseField", + "k": "class", + "s": "classes", + "m": { + "XBaseField()": "XBaseField()", + "XBaseField": "XBaseField()", + "Length": "Length", + "Name": "Name", + "Type": "Type", + "_innerPropertyBeingSet": "_innerPropertyBeingSet" + } + } + ], + "XYChart": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/classes/XYChart", + "k": "class", + "s": "classes", + "m": { + "ActualXAxisLabelTextColor": "ActualXAxisLabelTextColor", + "ActualXAxisLabelTextColorProperty": "ActualXAxisLabelTextColorProperty", + "ActualYAxisLabelTextColor": "ActualYAxisLabelTextColor", + "ActualYAxisLabelTextColorProperty": "ActualYAxisLabelTextColorProperty", + "GetScaledValueX(double)": "GetScaledValueX(double)", + "GetScaledValueX": "GetScaledValueX(double)", + "GetScaledValueY(double)": "GetScaledValueY(double)", + "GetScaledValueY": "GetScaledValueY(double)", + "GetUnscaledValueX(double)": "GetUnscaledValueX(double)", + "GetUnscaledValueX": "GetUnscaledValueX(double)", + "GetUnscaledValueY(double)": "GetUnscaledValueY(double)", + "GetUnscaledValueY": "GetUnscaledValueY(double)", + "OnXAxisFormatLabel(AxisFormatLabelEventArgs)": "OnXAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnXAxisFormatLabel": "OnXAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisFormatLabel(AxisFormatLabelEventArgs)": "OnYAxisFormatLabel(AxisFormatLabelEventArgs)", + "OnYAxisFormatLabel": "OnYAxisFormatLabel(AxisFormatLabelEventArgs)", + "XAxisAreAnnotationsVisible": "XAxisAreAnnotationsVisible", + "XAxisAreAnnotationsVisibleProperty": "XAxisAreAnnotationsVisibleProperty", + "XAxisAreLabelsVisible": "XAxisAreLabelsVisible", + "XAxisAreLabelsVisibleProperty": "XAxisAreLabelsVisibleProperty", + "XAxisAreTickMarksVisible": "XAxisAreTickMarksVisible", + "XAxisAreTickMarksVisibleProperty": "XAxisAreTickMarksVisibleProperty", + "XAxisExtent": "XAxisExtent", + "XAxisExtentProperty": "XAxisExtentProperty", + "XAxisInverted": "XAxisInverted", + "XAxisInvertedProperty": "XAxisInvertedProperty", + "XAxisIsLabelPanelVisible": "XAxisIsLabelPanelVisible", + "XAxisIsLabelPanelVisibleProperty": "XAxisIsLabelPanelVisibleProperty", + "XAxisLabel": "XAxisLabel", + "XAxisLabelAngle": "XAxisLabelAngle", + "XAxisLabelAngleProperty": "XAxisLabelAngleProperty", + "XAxisLabelBottomMargin": "XAxisLabelBottomMargin", + "XAxisLabelBottomMarginProperty": "XAxisLabelBottomMarginProperty", + "XAxisLabelFontFamily": "XAxisLabelFontFamily", + "XAxisLabelFontFamilyProperty": "XAxisLabelFontFamilyProperty", + "XAxisLabelFontSize": "XAxisLabelFontSize", + "XAxisLabelFontSizeProperty": "XAxisLabelFontSizeProperty", + "XAxisLabelFontStyle": "XAxisLabelFontStyle", + "XAxisLabelFontStyleProperty": "XAxisLabelFontStyleProperty", + "XAxisLabelFontWeight": "XAxisLabelFontWeight", + "XAxisLabelFontWeightProperty": "XAxisLabelFontWeightProperty", + "XAxisLabelFormat": "XAxisLabelFormat", + "XAxisLabelFormatProperty": "XAxisLabelFormatProperty", + "XAxisLabelFormatSpecifiers": "XAxisLabelFormatSpecifiers", + "XAxisLabelFormatSpecifiersProperty": "XAxisLabelFormatSpecifiersProperty", + "XAxisLabelHorizontalAlignment": "XAxisLabelHorizontalAlignment", + "XAxisLabelHorizontalAlignmentProperty": "XAxisLabelHorizontalAlignmentProperty", + "XAxisLabelLeftMargin": "XAxisLabelLeftMargin", + "XAxisLabelLeftMarginProperty": "XAxisLabelLeftMarginProperty", + "XAxisLabelLocation": "XAxisLabelLocation", + "XAxisLabelLocationProperty": "XAxisLabelLocationProperty", + "XAxisLabelProperty": "XAxisLabelProperty", + "XAxisLabelRightMargin": "XAxisLabelRightMargin", + "XAxisLabelRightMarginProperty": "XAxisLabelRightMarginProperty", + "XAxisLabelTextColor": "XAxisLabelTextColor", + "XAxisLabelTextColorProperty": "XAxisLabelTextColorProperty", + "XAxisLabelTopMargin": "XAxisLabelTopMargin", + "XAxisLabelTopMarginProperty": "XAxisLabelTopMarginProperty", + "XAxisLabelVerticalAlignment": "XAxisLabelVerticalAlignment", + "XAxisLabelVerticalAlignmentProperty": "XAxisLabelVerticalAlignmentProperty", + "XAxisLabelVisibility": "XAxisLabelVisibility", + "XAxisLabelVisibilityProperty": "XAxisLabelVisibilityProperty", + "XAxisMajorStroke": "XAxisMajorStroke", + "XAxisMajorStrokeProperty": "XAxisMajorStrokeProperty", + "XAxisMajorStrokeThickness": "XAxisMajorStrokeThickness", + "XAxisMajorStrokeThicknessProperty": "XAxisMajorStrokeThicknessProperty", + "XAxisMaximumExtent": "XAxisMaximumExtent", + "XAxisMaximumExtentPercentage": "XAxisMaximumExtentPercentage", + "XAxisMaximumExtentPercentageProperty": "XAxisMaximumExtentPercentageProperty", + "XAxisMaximumExtentProperty": "XAxisMaximumExtentProperty", + "XAxisMinorStroke": "XAxisMinorStroke", + "XAxisMinorStrokeProperty": "XAxisMinorStrokeProperty", + "XAxisMinorStrokeThickness": "XAxisMinorStrokeThickness", + "XAxisMinorStrokeThicknessProperty": "XAxisMinorStrokeThicknessProperty", + "XAxisStrip": "XAxisStrip", + "XAxisStripProperty": "XAxisStripProperty", + "XAxisStroke": "XAxisStroke", + "XAxisStrokeProperty": "XAxisStrokeProperty", + "XAxisStrokeThickness": "XAxisStrokeThickness", + "XAxisStrokeThicknessProperty": "XAxisStrokeThicknessProperty", + "XAxisTickLength": "XAxisTickLength", + "XAxisTickLengthProperty": "XAxisTickLengthProperty", + "XAxisTickStroke": "XAxisTickStroke", + "XAxisTickStrokeProperty": "XAxisTickStrokeProperty", + "XAxisTickStrokeThickness": "XAxisTickStrokeThickness", + "XAxisTickStrokeThicknessProperty": "XAxisTickStrokeThicknessProperty", + "XAxisTitle": "XAxisTitle", + "XAxisTitleAlignment": "XAxisTitleAlignment", + "XAxisTitleAlignmentProperty": "XAxisTitleAlignmentProperty", + "XAxisTitleAngle": "XAxisTitleAngle", + "XAxisTitleAngleProperty": "XAxisTitleAngleProperty", + "XAxisTitleBottomMargin": "XAxisTitleBottomMargin", + "XAxisTitleBottomMarginProperty": "XAxisTitleBottomMarginProperty", + "XAxisTitleFontFamily": "XAxisTitleFontFamily", + "XAxisTitleFontFamilyProperty": "XAxisTitleFontFamilyProperty", + "XAxisTitleFontSize": "XAxisTitleFontSize", + "XAxisTitleFontSizeProperty": "XAxisTitleFontSizeProperty", + "XAxisTitleFontStyle": "XAxisTitleFontStyle", + "XAxisTitleFontStyleProperty": "XAxisTitleFontStyleProperty", + "XAxisTitleFontWeight": "XAxisTitleFontWeight", + "XAxisTitleFontWeightProperty": "XAxisTitleFontWeightProperty", + "XAxisTitleLeftMargin": "XAxisTitleLeftMargin", + "XAxisTitleLeftMarginProperty": "XAxisTitleLeftMarginProperty", + "XAxisTitleMargin": "XAxisTitleMargin", + "XAxisTitleMarginProperty": "XAxisTitleMarginProperty", + "XAxisTitleProperty": "XAxisTitleProperty", + "XAxisTitleRightMargin": "XAxisTitleRightMargin", + "XAxisTitleRightMarginProperty": "XAxisTitleRightMarginProperty", + "XAxisTitleTextColor": "XAxisTitleTextColor", + "XAxisTitleTextColorProperty": "XAxisTitleTextColorProperty", + "XAxisTitleTopMargin": "XAxisTitleTopMargin", + "XAxisTitleTopMarginProperty": "XAxisTitleTopMarginProperty", + "YAxisAreAnnotationsVisible": "YAxisAreAnnotationsVisible", + "YAxisAreAnnotationsVisibleProperty": "YAxisAreAnnotationsVisibleProperty", + "YAxisAreLabelsVisible": "YAxisAreLabelsVisible", + "YAxisAreLabelsVisibleProperty": "YAxisAreLabelsVisibleProperty", + "YAxisAreTickMarksVisible": "YAxisAreTickMarksVisible", + "YAxisAreTickMarksVisibleProperty": "YAxisAreTickMarksVisibleProperty", + "YAxisExtent": "YAxisExtent", + "YAxisExtentProperty": "YAxisExtentProperty", + "YAxisInverted": "YAxisInverted", + "YAxisInvertedProperty": "YAxisInvertedProperty", + "YAxisIsLabelPanelVisible": "YAxisIsLabelPanelVisible", + "YAxisIsLabelPanelVisibleProperty": "YAxisIsLabelPanelVisibleProperty", + "YAxisLabel": "YAxisLabel", + "YAxisLabelAngle": "YAxisLabelAngle", + "YAxisLabelAngleProperty": "YAxisLabelAngleProperty", + "YAxisLabelBottomMargin": "YAxisLabelBottomMargin", + "YAxisLabelBottomMarginProperty": "YAxisLabelBottomMarginProperty", + "YAxisLabelFontFamily": "YAxisLabelFontFamily", + "YAxisLabelFontFamilyProperty": "YAxisLabelFontFamilyProperty", + "YAxisLabelFontSize": "YAxisLabelFontSize", + "YAxisLabelFontSizeProperty": "YAxisLabelFontSizeProperty", + "YAxisLabelFontStyle": "YAxisLabelFontStyle", + "YAxisLabelFontStyleProperty": "YAxisLabelFontStyleProperty", + "YAxisLabelFontWeight": "YAxisLabelFontWeight", + "YAxisLabelFontWeightProperty": "YAxisLabelFontWeightProperty", + "YAxisLabelFormat": "YAxisLabelFormat", + "YAxisLabelFormatProperty": "YAxisLabelFormatProperty", + "YAxisLabelFormatSpecifiers": "YAxisLabelFormatSpecifiers", + "YAxisLabelFormatSpecifiersProperty": "YAxisLabelFormatSpecifiersProperty", + "YAxisLabelHorizontalAlignment": "YAxisLabelHorizontalAlignment", + "YAxisLabelHorizontalAlignmentProperty": "YAxisLabelHorizontalAlignmentProperty", + "YAxisLabelLeftMargin": "YAxisLabelLeftMargin", + "YAxisLabelLeftMarginProperty": "YAxisLabelLeftMarginProperty", + "YAxisLabelLocation": "YAxisLabelLocation", + "YAxisLabelLocationProperty": "YAxisLabelLocationProperty", + "YAxisLabelProperty": "YAxisLabelProperty", + "YAxisLabelRightMargin": "YAxisLabelRightMargin", + "YAxisLabelRightMarginProperty": "YAxisLabelRightMarginProperty", + "YAxisLabelTextColor": "YAxisLabelTextColor", + "YAxisLabelTextColorProperty": "YAxisLabelTextColorProperty", + "YAxisLabelTopMargin": "YAxisLabelTopMargin", + "YAxisLabelTopMarginProperty": "YAxisLabelTopMarginProperty", + "YAxisLabelVerticalAlignment": "YAxisLabelVerticalAlignment", + "YAxisLabelVerticalAlignmentProperty": "YAxisLabelVerticalAlignmentProperty", + "YAxisLabelVisibility": "YAxisLabelVisibility", + "YAxisLabelVisibilityProperty": "YAxisLabelVisibilityProperty", + "YAxisMajorStroke": "YAxisMajorStroke", + "YAxisMajorStrokeProperty": "YAxisMajorStrokeProperty", + "YAxisMajorStrokeThickness": "YAxisMajorStrokeThickness", + "YAxisMajorStrokeThicknessProperty": "YAxisMajorStrokeThicknessProperty", + "YAxisMaximumExtent": "YAxisMaximumExtent", + "YAxisMaximumExtentPercentage": "YAxisMaximumExtentPercentage", + "YAxisMaximumExtentPercentageProperty": "YAxisMaximumExtentPercentageProperty", + "YAxisMaximumExtentProperty": "YAxisMaximumExtentProperty", + "YAxisMinorStroke": "YAxisMinorStroke", + "YAxisMinorStrokeProperty": "YAxisMinorStrokeProperty", + "YAxisMinorStrokeThickness": "YAxisMinorStrokeThickness", + "YAxisMinorStrokeThicknessProperty": "YAxisMinorStrokeThicknessProperty", + "YAxisStrip": "YAxisStrip", + "YAxisStripProperty": "YAxisStripProperty", + "YAxisStroke": "YAxisStroke", + "YAxisStrokeProperty": "YAxisStrokeProperty", + "YAxisStrokeThickness": "YAxisStrokeThickness", + "YAxisStrokeThicknessProperty": "YAxisStrokeThicknessProperty", + "YAxisTickLength": "YAxisTickLength", + "YAxisTickLengthProperty": "YAxisTickLengthProperty", + "YAxisTickStroke": "YAxisTickStroke", + "YAxisTickStrokeProperty": "YAxisTickStrokeProperty", + "YAxisTickStrokeThickness": "YAxisTickStrokeThickness", + "YAxisTickStrokeThicknessProperty": "YAxisTickStrokeThicknessProperty", + "YAxisTitle": "YAxisTitle", + "YAxisTitleAlignment": "YAxisTitleAlignment", + "YAxisTitleAlignmentProperty": "YAxisTitleAlignmentProperty", + "YAxisTitleAngle": "YAxisTitleAngle", + "YAxisTitleAngleProperty": "YAxisTitleAngleProperty", + "YAxisTitleBottomMargin": "YAxisTitleBottomMargin", + "YAxisTitleBottomMarginProperty": "YAxisTitleBottomMarginProperty", + "YAxisTitleFontFamily": "YAxisTitleFontFamily", + "YAxisTitleFontFamilyProperty": "YAxisTitleFontFamilyProperty", + "YAxisTitleFontSize": "YAxisTitleFontSize", + "YAxisTitleFontSizeProperty": "YAxisTitleFontSizeProperty", + "YAxisTitleFontStyle": "YAxisTitleFontStyle", + "YAxisTitleFontStyleProperty": "YAxisTitleFontStyleProperty", + "YAxisTitleFontWeight": "YAxisTitleFontWeight", + "YAxisTitleFontWeightProperty": "YAxisTitleFontWeightProperty", + "YAxisTitleLeftMargin": "YAxisTitleLeftMargin", + "YAxisTitleLeftMarginProperty": "YAxisTitleLeftMarginProperty", + "YAxisTitleMargin": "YAxisTitleMargin", + "YAxisTitleMarginProperty": "YAxisTitleMarginProperty", + "YAxisTitleProperty": "YAxisTitleProperty", + "YAxisTitleRightMargin": "YAxisTitleRightMargin", + "YAxisTitleRightMarginProperty": "YAxisTitleRightMarginProperty", + "YAxisTitleTextColor": "YAxisTitleTextColor", + "YAxisTitleTextColorProperty": "YAxisTitleTextColorProperty", + "YAxisTitleTopMargin": "YAxisTitleTopMargin", + "YAxisTitleTopMarginProperty": "YAxisTitleTopMarginProperty" + } + } + ], + "XYChartDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/XYChartDescription", + "k": "class", + "s": "classes", + "m": { + "XYChartDescription()": "XYChartDescription()", + "XYChartDescription": "XYChartDescription()", + "ActualXAxisLabelTextColor": "ActualXAxisLabelTextColor", + "ActualYAxisLabelTextColor": "ActualYAxisLabelTextColor", + "Type": "Type", + "XAxisAreAnnotationsVisible": "XAxisAreAnnotationsVisible", + "XAxisAreLabelsVisible": "XAxisAreLabelsVisible", + "XAxisAreTickMarksVisible": "XAxisAreTickMarksVisible", + "XAxisExtent": "XAxisExtent", + "XAxisFormatLabelRef": "XAxisFormatLabelRef", + "XAxisInverted": "XAxisInverted", + "XAxisIsLabelPanelVisible": "XAxisIsLabelPanelVisible", + "XAxisLabelAngle": "XAxisLabelAngle", + "XAxisLabelBottomMargin": "XAxisLabelBottomMargin", + "XAxisLabelFormat": "XAxisLabelFormat", + "XAxisLabelFormatSpecifiers": "XAxisLabelFormatSpecifiers", + "XAxisLabelHorizontalAlignment": "XAxisLabelHorizontalAlignment", + "XAxisLabelLeftMargin": "XAxisLabelLeftMargin", + "XAxisLabelLocation": "XAxisLabelLocation", + "XAxisLabelRef": "XAxisLabelRef", + "XAxisLabelRightMargin": "XAxisLabelRightMargin", + "XAxisLabelTextColor": "XAxisLabelTextColor", + "XAxisLabelTextStyle": "XAxisLabelTextStyle", + "XAxisLabelTopMargin": "XAxisLabelTopMargin", + "XAxisLabelVerticalAlignment": "XAxisLabelVerticalAlignment", + "XAxisLabelVisibility": "XAxisLabelVisibility", + "XAxisMajorStroke": "XAxisMajorStroke", + "XAxisMajorStrokeThickness": "XAxisMajorStrokeThickness", + "XAxisMaximumExtent": "XAxisMaximumExtent", + "XAxisMaximumExtentPercentage": "XAxisMaximumExtentPercentage", + "XAxisMinorStroke": "XAxisMinorStroke", + "XAxisMinorStrokeThickness": "XAxisMinorStrokeThickness", + "XAxisStrip": "XAxisStrip", + "XAxisStroke": "XAxisStroke", + "XAxisStrokeThickness": "XAxisStrokeThickness", + "XAxisTickLength": "XAxisTickLength", + "XAxisTickStroke": "XAxisTickStroke", + "XAxisTickStrokeThickness": "XAxisTickStrokeThickness", + "XAxisTitle": "XAxisTitle", + "XAxisTitleAlignment": "XAxisTitleAlignment", + "XAxisTitleAngle": "XAxisTitleAngle", + "XAxisTitleBottomMargin": "XAxisTitleBottomMargin", + "XAxisTitleLeftMargin": "XAxisTitleLeftMargin", + "XAxisTitleMargin": "XAxisTitleMargin", + "XAxisTitleRightMargin": "XAxisTitleRightMargin", + "XAxisTitleTextColor": "XAxisTitleTextColor", + "XAxisTitleTextStyle": "XAxisTitleTextStyle", + "XAxisTitleTopMargin": "XAxisTitleTopMargin", + "YAxisAreAnnotationsVisible": "YAxisAreAnnotationsVisible", + "YAxisAreLabelsVisible": "YAxisAreLabelsVisible", + "YAxisAreTickMarksVisible": "YAxisAreTickMarksVisible", + "YAxisExtent": "YAxisExtent", + "YAxisFormatLabelRef": "YAxisFormatLabelRef", + "YAxisInverted": "YAxisInverted", + "YAxisIsLabelPanelVisible": "YAxisIsLabelPanelVisible", + "YAxisLabelAngle": "YAxisLabelAngle", + "YAxisLabelBottomMargin": "YAxisLabelBottomMargin", + "YAxisLabelFormat": "YAxisLabelFormat", + "YAxisLabelFormatSpecifiers": "YAxisLabelFormatSpecifiers", + "YAxisLabelHorizontalAlignment": "YAxisLabelHorizontalAlignment", + "YAxisLabelLeftMargin": "YAxisLabelLeftMargin", + "YAxisLabelLocation": "YAxisLabelLocation", + "YAxisLabelRef": "YAxisLabelRef", + "YAxisLabelRightMargin": "YAxisLabelRightMargin", + "YAxisLabelTextColor": "YAxisLabelTextColor", + "YAxisLabelTextStyle": "YAxisLabelTextStyle", + "YAxisLabelTopMargin": "YAxisLabelTopMargin", + "YAxisLabelVerticalAlignment": "YAxisLabelVerticalAlignment", + "YAxisLabelVisibility": "YAxisLabelVisibility", + "YAxisMajorStroke": "YAxisMajorStroke", + "YAxisMajorStrokeThickness": "YAxisMajorStrokeThickness", + "YAxisMaximumExtent": "YAxisMaximumExtent", + "YAxisMaximumExtentPercentage": "YAxisMaximumExtentPercentage", + "YAxisMinorStroke": "YAxisMinorStroke", + "YAxisMinorStrokeThickness": "YAxisMinorStrokeThickness", + "YAxisStrip": "YAxisStrip", + "YAxisStroke": "YAxisStroke", + "YAxisStrokeThickness": "YAxisStrokeThickness", + "YAxisTickLength": "YAxisTickLength", + "YAxisTickStroke": "YAxisTickStroke", + "YAxisTickStrokeThickness": "YAxisTickStrokeThickness", + "YAxisTitle": "YAxisTitle", + "YAxisTitleAlignment": "YAxisTitleAlignment", + "YAxisTitleAngle": "YAxisTitleAngle", + "YAxisTitleBottomMargin": "YAxisTitleBottomMargin", + "YAxisTitleLeftMargin": "YAxisTitleLeftMargin", + "YAxisTitleMargin": "YAxisTitleMargin", + "YAxisTitleRightMargin": "YAxisTitleRightMargin", + "YAxisTitleTextColor": "YAxisTitleTextColor", + "YAxisTitleTextStyle": "YAxisTitleTextStyle", + "YAxisTitleTopMargin": "YAxisTitleTopMargin" + } + } + ], + "XYChartDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/XYChartDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "XYChartDescriptionMetadata()": "XYChartDescriptionMetadata()", + "XYChartDescriptionMetadata": "XYChartDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "YAxisLabelLocation": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/YAxisLabelLocation", + "k": "enum", + "s": "enums" + } + ], + "YearToDateExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/YearToDateExpression", + "k": "class", + "s": "classes", + "m": { + "YearToDateExpression(FilterExpression)": "YearToDateExpression(FilterExpression)", + "YearToDateExpression": "YearToDateExpression(FilterExpression)", + "YearToDateExpression(string)": "YearToDateExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "YearToDateExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/YearToDateExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "YearToDateExpressionDescription()": "YearToDateExpressionDescription()", + "YearToDateExpressionDescription": "YearToDateExpressionDescription()", + "Type": "Type" + } + } + ], + "YearToDateExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/YearToDateExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "YearToDateExpressionDescriptionMetadata()": "YearToDateExpressionDescriptionMetadata()", + "YearToDateExpressionDescriptionMetadata": "YearToDateExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "YesterdayExpression": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/YesterdayExpression", + "k": "class", + "s": "classes", + "m": { + "YesterdayExpression(FilterExpression)": "YesterdayExpression(FilterExpression)", + "YesterdayExpression": "YesterdayExpression(FilterExpression)", + "YesterdayExpression(string)": "YesterdayExpression(string)", + "Build()": "Build()", + "Build": "Build()", + "GetWrapperType()": "GetWrapperType()", + "GetWrapperType": "GetWrapperType()" + } + } + ], + "YesterdayExpressionDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/YesterdayExpressionDescription", + "k": "class", + "s": "classes", + "m": { + "YesterdayExpressionDescription()": "YesterdayExpressionDescription()", + "YesterdayExpressionDescription": "YesterdayExpressionDescription()", + "Type": "Type" + } + } + ], + "YesterdayExpressionDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/YesterdayExpressionDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "YesterdayExpressionDescriptionMetadata()": "YesterdayExpressionDescriptionMetadata()", + "YesterdayExpressionDescriptionMetadata": "YesterdayExpressionDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ZoomCoercionMode": [ + { + "p": "Infragistics.WinUI.Charts", + "u": "/api/winui/Infragistics.WinUI.Charts/latest/enums/ZoomCoercionMode", + "k": "enum", + "s": "enums" + } + ], + "ZoomSliderDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ZoomSliderDescription", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderDescription()": "ZoomSliderDescription()", + "ZoomSliderDescription": "ZoomSliderDescription()", + "ActualPixelScalingRatio": "ActualPixelScalingRatio", + "AreThumbCalloutsEnabled": "AreThumbCalloutsEnabled", + "Background": "Background", + "BarBrush": "BarBrush", + "BarExtent": "BarExtent", + "BarOutline": "BarOutline", + "BarStrokeThickness": "BarStrokeThickness", + "EndInset": "EndInset", + "Height": "Height", + "HigherCalloutBrush": "HigherCalloutBrush", + "HigherCalloutOutline": "HigherCalloutOutline", + "HigherCalloutStrokeThickness": "HigherCalloutStrokeThickness", + "HigherCalloutTextColor": "HigherCalloutTextColor", + "HigherShadeBrush": "HigherShadeBrush", + "HigherShadeOutline": "HigherShadeOutline", + "HigherShadeStrokeThickness": "HigherShadeStrokeThickness", + "HigherThumbBrush": "HigherThumbBrush", + "HigherThumbHeight": "HigherThumbHeight", + "HigherThumbOutline": "HigherThumbOutline", + "HigherThumbRidgesBrush": "HigherThumbRidgesBrush", + "HigherThumbStrokeThickness": "HigherThumbStrokeThickness", + "HigherThumbWidth": "HigherThumbWidth", + "LowerCalloutBrush": "LowerCalloutBrush", + "LowerCalloutOutline": "LowerCalloutOutline", + "LowerCalloutStrokeThickness": "LowerCalloutStrokeThickness", + "LowerCalloutTextColor": "LowerCalloutTextColor", + "LowerShadeBrush": "LowerShadeBrush", + "LowerShadeOutline": "LowerShadeOutline", + "LowerShadeStrokeThickness": "LowerShadeStrokeThickness", + "LowerThumbBrush": "LowerThumbBrush", + "LowerThumbHeight": "LowerThumbHeight", + "LowerThumbOutline": "LowerThumbOutline", + "LowerThumbRidgesBrush": "LowerThumbRidgesBrush", + "LowerThumbStrokeThickness": "LowerThumbStrokeThickness", + "LowerThumbWidth": "LowerThumbWidth", + "MaxZoomWidth": "MaxZoomWidth", + "MinZoomWidth": "MinZoomWidth", + "Orientation": "Orientation", + "PanTransitionDuration": "PanTransitionDuration", + "PixelScalingRatio": "PixelScalingRatio", + "RangeThumbBrush": "RangeThumbBrush", + "RangeThumbOutline": "RangeThumbOutline", + "RangeThumbRidgesBrush": "RangeThumbRidgesBrush", + "RangeThumbStrokeThickness": "RangeThumbStrokeThickness", + "ResolvingAxisValueRef": "ResolvingAxisValueRef", + "StartInset": "StartInset", + "ThumbCalloutFontFamily": "ThumbCalloutFontFamily", + "ThumbCalloutFontSize": "ThumbCalloutFontSize", + "ThumbCalloutFontStyle": "ThumbCalloutFontStyle", + "ThumbCalloutFontWeight": "ThumbCalloutFontWeight", + "TrackEndInset": "TrackEndInset", + "TrackStartInset": "TrackStartInset", + "Type": "Type", + "Width": "Width", + "WindowRect": "WindowRect", + "WindowRectChangedRef": "WindowRectChangedRef" + } + } + ], + "ZoomSliderDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ZoomSliderDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderDescriptionMetadata()": "ZoomSliderDescriptionMetadata()", + "ZoomSliderDescriptionMetadata": "ZoomSliderDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ZoomSliderDescriptionModule": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ZoomSliderDescriptionModule", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderDescriptionModule()": "ZoomSliderDescriptionModule()", + "ZoomSliderDescriptionModule": "ZoomSliderDescriptionModule()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ], + "ZoomSliderResolvingAxisValueEventArgsDescription": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ZoomSliderResolvingAxisValueEventArgsDescription", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderResolvingAxisValueEventArgsDescription()": "ZoomSliderResolvingAxisValueEventArgsDescription()", + "ZoomSliderResolvingAxisValueEventArgsDescription": "ZoomSliderResolvingAxisValueEventArgsDescription()", + "Position": "Position", + "Type": "Type", + "ValueRef": "ValueRef" + } + } + ], + "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata": [ + { + "p": "Infragistics.WinUI.DataVisualization", + "u": "/api/winui/Infragistics.WinUI.DataVisualization/latest/classes/ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata", + "k": "class", + "s": "classes", + "m": { + "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata()": "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata()", + "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata": "ZoomSliderResolvingAxisValueEventArgsDescriptionMetadata()", + "Register(TypeDescriptionContext)": "Register(TypeDescriptionContext)", + "Register": "Register(TypeDescriptionContext)" + } + } + ] + } +} diff --git a/src/integration.ts b/src/integration.ts index df10fef576..4221e3d1f6 100644 --- a/src/integration.ts +++ b/src/integration.ts @@ -189,7 +189,7 @@ async function mapConcurrent( return results; } -// Drives the `api//llms.txt` URL advertised per platform. WinUI and Uno +// Drives the `api//llms.txt` URL advertised per platform. WinUI and Uno Platform // are listed on the assumption that api-docs will publish these folders; if that // pipeline does not land, remove them so no unreachable URL is advertised. // See WINUI-UNO-PLAN.md §6.2. @@ -199,7 +199,7 @@ const API_DOCS_FOLDER_BY_PLATFORM: Partial> = { 'web-components': 'webcomponents', blazor: 'blazor', winui: 'winui', - uno: 'uno', + uno: 'uno-platform', }; function resolveApiDocsLlmsUrl(siteUrl: string, platform: PlatformKey | null): string | undefined { diff --git a/src/lib/api-platform-config.ts b/src/lib/api-platform-config.ts index 09b436c139..faa7750f7c 100644 --- a/src/lib/api-platform-config.ts +++ b/src/lib/api-platform-config.ts @@ -13,7 +13,10 @@ export type ApiPackageRuntimeConfig = ApiPackageDefinition & { }; export type ApiPlatformDefinition = { + /** Internal folder used to store the checked-in ApiLink registry. */ folder: string; + /** Public path segment used by the hosted API documentation site. */ + publicPath?: string; prefix: string; pascalCaseMembers?: boolean; apiPackages: Record; @@ -127,17 +130,14 @@ export const API_PLATFORM_CONFIGS: Record = // and the bare form and takes whichever the registry contains, so both // shapes resolve. See WINUI-UNO-PLAN.md §6.3. // - // The `packageId`s below are the assembly names referenced by - // winui-samples/**/Sample.csproj. They are provisional until the API link - // registry exists (WINUI-UNO-PLAN.md §6.2) — only `core`, `inputs`, - // `geo-core` and `charts` are referenced by any `pkg` prop today. + // The package IDs below match the generated api-docs registry. // ----------------------------------------------------------------------- WinUI: { folder: 'winui', prefix: 'Xam', pascalCaseMembers: true, apiPackages: { - core: { packageId: 'Infragistics.Core', pascalCaseMembers: true }, + core: { packageId: 'Infragistics.WinUI.Core', pascalCaseMembers: true }, charts: { packageId: 'Infragistics.WinUI.Charts', pascalCaseMembers: true }, grids: { packageId: 'Infragistics.WinUI.DataGrid', pascalCaseMembers: true }, 'data-grids': { packageId: 'Infragistics.WinUI.DataGrid', pascalCaseMembers: true }, @@ -145,19 +145,19 @@ export const API_PLATFORM_CONFIGS: Record = maps: { packageId: 'Infragistics.WinUI.Maps', pascalCaseMembers: true }, inputs: { packageId: 'Infragistics.WinUI.Inputs', pascalCaseMembers: true }, layouts: { packageId: 'Infragistics.WinUI.Layouts', pascalCaseMembers: true }, - dashboards: { packageId: 'Infragistics.WinUI.DataVisualization', pascalCaseMembers: true }, - datasources: { packageId: 'Infragistics.Core', pascalCaseMembers: true }, - 'geo-core': { packageId: 'Infragistics.Core', pascalCaseMembers: true }, + dashboards: { packageId: 'Infragistics.WinUI.Dashboards', pascalCaseMembers: true }, + datasources: { packageId: 'Infragistics.WinUI.DataVisualization', pascalCaseMembers: true }, + 'geo-core': { packageId: 'Infragistics.WinUI.DataVisualization', pascalCaseMembers: true }, }, }, - // Uno shares the WinUI XAML surface; assembly names are provisional pending - // confirmation of the Uno package identity (WINUI-UNO-PLAN.md §8 Q5). + // Uno Platform shares the WinUI XAML surface with Uno-specific package IDs. Uno: { folder: 'uno', + publicPath: 'uno-platform', prefix: 'Xam', pascalCaseMembers: true, apiPackages: { - core: { packageId: 'Infragistics.Core', pascalCaseMembers: true }, + core: { packageId: 'Infragistics.Uno.Core', pascalCaseMembers: true }, charts: { packageId: 'Infragistics.Uno.Charts', pascalCaseMembers: true }, grids: { packageId: 'Infragistics.Uno.DataGrid', pascalCaseMembers: true }, 'data-grids': { packageId: 'Infragistics.Uno.DataGrid', pascalCaseMembers: true }, @@ -165,15 +165,16 @@ export const API_PLATFORM_CONFIGS: Record = maps: { packageId: 'Infragistics.Uno.Maps', pascalCaseMembers: true }, inputs: { packageId: 'Infragistics.Uno.Inputs', pascalCaseMembers: true }, layouts: { packageId: 'Infragistics.Uno.Layouts', pascalCaseMembers: true }, - dashboards: { packageId: 'Infragistics.Uno.DataVisualization', pascalCaseMembers: true }, - datasources: { packageId: 'Infragistics.Core', pascalCaseMembers: true }, - 'geo-core': { packageId: 'Infragistics.Core', pascalCaseMembers: true }, + dashboards: { packageId: 'Infragistics.Uno.Dashboards', pascalCaseMembers: true }, + datasources: { packageId: 'Infragistics.Uno.DataVisualization', pascalCaseMembers: true }, + 'geo-core': { packageId: 'Infragistics.Uno.DataVisualization', pascalCaseMembers: true }, }, }, }; export function apiDocsPlatformPath(platform: PlatformName): string { - return API_PLATFORM_CONFIGS[platform].folder; + const config = API_PLATFORM_CONFIGS[platform]; + return config.publicPath ?? config.folder; } export function apiDocRoot(apiDocsBaseUrl: string, platform: PlatformName, packageId: string): string { diff --git a/src/lib/platform-context.ts b/src/lib/platform-context.ts index d9ecab2d11..ef8b71a302 100644 --- a/src/lib/platform-context.ts +++ b/src/lib/platform-context.ts @@ -1,7 +1,7 @@ /** * Platform configuration implementation — the single source of truth for * IgniteUI platform metadata used across the Angular, React, WebComponents, - * Blazor, WinUI, and Uno docs. + * Blazor, WinUI, and Uno Platform docs. * * Types are defined in igniteui-astro-components/lib/types so components can * remain agnostic (reading context from Astro.locals set by middleware). @@ -110,7 +110,7 @@ const PLATFORMS: Record = { repoSamples: 'https://github.com/IgniteUI/igniteui-blazor-examples/tree/master/samples', }, }, - // WinUI and Uno share the XAML control surface. `packages` values are the + // WinUI and Uno Platform share the XAML control surface. `packages` values are the // assembly/NuGet identities; see WINUI-UNO-PLAN.md §8 Q1/Q5 for the naming // decisions still outstanding. WinUI: { @@ -135,10 +135,10 @@ const PLATFORMS: Record = { }, Uno: { name: 'Uno', - lower: API_PLATFORM_CONFIGS.Uno.folder, + lower: API_PLATFORM_CONFIGS.Uno.publicPath!, prefix: API_PLATFORM_CONFIGS.Uno.prefix, productName: 'Infragistics Ultimate UI for Uno Platform', - productSpinal: 'ultimate-ui-uno', + productSpinal: 'ultimate-ui-uno-platform', apiPackages: createApiPackages(DEFAULT_API_DOCS_BASE_URL, 'Uno'), packages: { common: 'Infragistics.Core', @@ -200,7 +200,7 @@ function buildContext(name: PlatformName): PlatformContext { const base = PLATFORMS[name]; return { ...base, - apiLinkIndex: loadApiLinkIndex(base.lower), + apiLinkIndex: loadApiLinkIndex(API_PLATFORM_CONFIGS[name].folder), apiPackages: Object.fromEntries( Object.entries(base.apiPackages).map(([key, pkg]) => [ key, diff --git a/src/platform.ts b/src/platform.ts index e42e382614..80170adeef 100644 --- a/src/platform.ts +++ b/src/platform.ts @@ -224,7 +224,7 @@ export const IGDOCS_PLATFORMS: Record = { }, Uno: { lang: 'en', label: 'Uno Platform', key: 'uno', devPort: 4336, - base: '/products/ultimate-ui-uno/uno/components', + base: '/products/ultimate-ui-uno-platform/uno-platform/components', root: '/general-getting-started', title: 'Infragistics Ultimate UI for Uno Platform', description: 'Component documentation for Infragistics Ultimate UI for Uno Platform.', From bd07d0193ecef77dbabed5c48edd43b75be6d67c Mon Sep 17 00:00:00 2001 From: gmurray81 Date: Sat, 5 Sep 2026 08:24:37 -0400 Subject: [PATCH 155/155] fix: scope accessibility topics to web platforms --- .../en/components/interactivity/accessibility-compliance.mdx | 1 + .../xplat/src/content/en/components/themes/accessibility.mdx | 1 + docs/xplat/src/content/en/toc.json | 5 ++++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/xplat/src/content/en/components/interactivity/accessibility-compliance.mdx b/docs/xplat/src/content/en/components/interactivity/accessibility-compliance.mdx index 83ad478c46..41cc478d99 100644 --- a/docs/xplat/src/content/en/components/interactivity/accessibility-compliance.mdx +++ b/docs/xplat/src/content/en/components/interactivity/accessibility-compliance.mdx @@ -5,6 +5,7 @@ keywords: "{ProductName}, Infragistics, Accessibility, WCAG, Section 508, EN 301 license: MIT last_updated: "2026-08-27" mentionedTypes: [] +platformType: web-only llms: description: "Accessibility support in {ProductName}: the conformance standards targeted, the per-component keyboard and screen-reader documentation index, required configuration, and the channel for reporting accessibility issues." --- diff --git a/docs/xplat/src/content/en/components/themes/accessibility.mdx b/docs/xplat/src/content/en/components/themes/accessibility.mdx index 70109bbd96..989612ce13 100644 --- a/docs/xplat/src/content/en/components/themes/accessibility.mdx +++ b/docs/xplat/src/content/en/components/themes/accessibility.mdx @@ -5,6 +5,7 @@ keywords: "{ProductName}, Infragistics, Accessibility, Contrast, WCAG, Styling, license: MIT last_updated: "2026-08-31" mentionedTypes: [] +platformType: web-only llms: description: "{ProductName} calculates text colors against a WCAG contrast threshold at runtime, keeps every type scale relative, and ships an opt-in color-vision-deficiency chart palette." --- diff --git a/docs/xplat/src/content/en/toc.json b/docs/xplat/src/content/en/toc.json index d32c7be7ce..807f013eea 100644 --- a/docs/xplat/src/content/en/toc.json +++ b/docs/xplat/src/content/en/toc.json @@ -3768,7 +3768,10 @@ { "name": "Accessibility", "href": "themes/accessibility.mdx", - "new": true + "new": true, + "include": [ + "Web" + ] }, { "name": "Custom Tailwind Classes",